blob: 76b8e94ba1d4c6e767340fcb2b98819747134a53 [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.faultinjection;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;
import com.google.common.annotations.VisibleForTesting;
import org.apache.servicecomb.foundation.common.concurrent.ConcurrentHashMapEx;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.netflix.config.DynamicIntProperty;
import com.netflix.config.DynamicPropertyFactory;
/**
* Handles the fault injection configuration read from micro service file/config
* center.
*/
public final class FaultInjectionConfig {
private static final Logger LOGGER = LoggerFactory.getLogger(FaultInjectionConfig.class);
// key is configuration parameter.
private static final Map<String, String> cfgCallback = new ConcurrentHashMapEx<>();
public static int getConfigVal(String config, int defaultValue) {
DynamicIntProperty dynamicIntProperty = DynamicPropertyFactory.getInstance().getIntProperty(config,
defaultValue);
cfgCallback.computeIfAbsent(config, key -> {
dynamicIntProperty.addCallback(() -> {
int newValue = dynamicIntProperty.get();
String cfgName = dynamicIntProperty.getName();
//store the value in config center map and check for next requests.
FaultInjectionUtil.setConfigCenterValue(cfgName, new AtomicInteger(newValue));
LOGGER.info("{} changed to {}", cfgName, newValue);
});
return config;
});
return dynamicIntProperty.get();
}
@VisibleForTesting
static Map<String, String> getCfgCallback() {
return cfgCallback;
}
}