blob: 9dc040c1561f8752b07019d476ce746255ea9dcf [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.servicecomb.config.client;
import static org.apache.servicecomb.config.client.ConfigurationAction.CREATE;
import static org.apache.servicecomb.config.client.ConfigurationAction.DELETE;
import static org.apache.servicecomb.config.client.ConfigurationAction.SET;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
import com.google.common.annotations.VisibleForTesting;
import org.apache.servicecomb.config.archaius.sources.ApolloConfigurationSourceImpl.UpdateHandler;
import org.apache.servicecomb.foundation.common.utils.JsonUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.web.client.RestTemplate;
import com.fasterxml.jackson.core.type.TypeReference;
import io.netty.handler.codec.http.HttpResponseStatus;
public class ApolloClient {
private static final Logger LOGGER = LoggerFactory.getLogger(ApolloClient.class);
private static final ApolloConfig APOLLO_CONFIG = ApolloConfig.INSTANCE;
private static final Map<String, Object> originalConfigMap = new ConcurrentHashMap<>();
private static final ScheduledExecutorService EXECUTOR = Executors.newScheduledThreadPool(1);
private final int refreshInterval = APOLLO_CONFIG.getRefreshInterval();
private final int firstRefreshInterval = APOLLO_CONFIG.getFirstRefreshInterval();
private final String serviceUri = APOLLO_CONFIG.getServerUri();
private final String serviceName = APOLLO_CONFIG.getServiceName();
private final String token = APOLLO_CONFIG.getToken();
private final String env = APOLLO_CONFIG.getEnv();
private final String clusters = APOLLO_CONFIG.getServerClusters();
private final String namespace = APOLLO_CONFIG.getNamespace();
private final UpdateHandler updateHandler;
private static RestTemplate rest = new RestTemplate();
public ApolloClient(UpdateHandler updateHandler) {
this.updateHandler = updateHandler;
}
@VisibleForTesting
static Map<String, Object> getOriginalConfigMap() {
return originalConfigMap;
}
@VisibleForTesting
static void setRest(RestTemplate rest) {
ApolloClient.rest = rest;
}
public void refreshApolloConfig() {
EXECUTOR
.scheduleWithFixedDelay(new ConfigRefresh(serviceUri), firstRefreshInterval, refreshInterval, TimeUnit.SECONDS);
}
class ConfigRefresh implements Runnable {
private final String serviceUri;
ConfigRefresh(String serviceUris) {
this.serviceUri = serviceUris;
}
@Override
public void run() {
try {
refreshConfig();
} catch (Throwable e) {
LOGGER.error("client refresh thread exception ", e);
}
}
@SuppressWarnings("unchecked")
void refreshConfig() {
HttpHeaders headers = new HttpHeaders();
headers.add("Content-Type", "application/json;charset=UTF-8");
headers.add("Authorization", token);
HttpEntity<String> entity = new HttpEntity<>(headers);
ResponseEntity<String> exchange = rest.exchange(composeAPI(), HttpMethod.GET, entity, String.class);
if (HttpResponseStatus.OK.code() == exchange.getStatusCode().value()) {
try {
Map<String, Object> body = JsonUtils.OBJ_MAPPER.readValue(exchange.getBody(),
new TypeReference<Map<String, Object>>() {
});
refreshConfigItems((Map<String, Object>) body.get("configurations"));
} catch (IOException e) {
LOGGER.error("JsonObject parse config center response error: ", e);
}
} else {
LOGGER.error("fetch configuration failed, error code:{} for {}",
exchange.getStatusCodeValue(),
exchange.getBody());
}
}
private String composeAPI() {
String api = serviceUri + "/openapi/v1/envs/" + env +
"/apps/" + serviceName +
"/clusters/" + clusters +
"/namespaces/" + namespace +
"/releases/latest";
return api;
}
private void refreshConfigItems(Map<String, Object> map) {
compareChangedConfig(originalConfigMap, map);
originalConfigMap.clear();
originalConfigMap.putAll(map);
}
void compareChangedConfig(Map<String, Object> before, Map<String, Object> after) {
Map<String, Object> itemsCreated = new HashMap<>();
Map<String, Object> itemsDeleted = new HashMap<>();
Map<String, Object> itemsModified = new HashMap<>();
if (before == null || before.isEmpty()) {
updateHandler.handle(CREATE, after);
return;
}
if (after == null || after.isEmpty()) {
updateHandler.handle(DELETE, before);
return;
}
after.forEach((itemKey, itemValue) -> {
if (!before.containsKey(itemKey)) {
itemsCreated.put(itemKey, itemValue);
} else if (!itemValue.equals(before.get(itemKey))) {
itemsModified.put(itemKey, itemValue);
}
});
for (String itemKey : before.keySet()) {
if (!after.containsKey(itemKey)) {
itemsDeleted.put(itemKey, "");
}
}
updateHandler.handle(CREATE, itemsCreated);
updateHandler.handle(SET, itemsModified);
updateHandler.handle(DELETE, itemsDeleted);
}
}
}