com.tencent.polaris.client.pojo.DefaultInstanceLocalValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polaris-all Show documentation
Show all versions of polaris-all Show documentation
All in one project for polaris-java
/*
* Tencent is pleased to support the open source community by making Polaris available.
*
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the BSD 3-Clause License (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://opensource.org/licenses/BSD-3-Clause
*
* 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 com.tencent.polaris.client.pojo;
import com.tencent.polaris.api.pojo.CircuitBreakerStatus;
import com.tencent.polaris.api.pojo.DetectResult;
import com.tencent.polaris.api.pojo.InstanceLocalValue;
import com.tencent.polaris.api.pojo.StatusDimension;
import java.util.Collection;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.Function;
/**
* 客户端服务数据统计对象,包含熔断数据、动态权重等信息
*
* @author andrewshan
* @date 2019/8/27
*/
public class DefaultInstanceLocalValue implements InstanceLocalValue {
private final Map>
circuitBreakerStatus = new ConcurrentHashMap<>();
private final AtomicReference detectResult = new AtomicReference<>();
private final Map pluginValues = new ConcurrentHashMap<>();
@Override
public Collection getStatusDimensions() {
return circuitBreakerStatus.keySet();
}
@Override
public CircuitBreakerStatus getCircuitBreakerStatus(StatusDimension statusDimension) {
AtomicReference value = circuitBreakerStatus
.get(statusDimension);
if (null == value) {
return null;
}
return value.get();
}
@Override
public DetectResult getDetectResult() {
return detectResult.get();
}
@Override
public void setCircuitBreakerStatus(StatusDimension statusDimension, CircuitBreakerStatus status) {
AtomicReference value = circuitBreakerStatus
.computeIfAbsent(statusDimension,
new Function>() {
@Override
public AtomicReference apply(StatusDimension statusDimension) {
return new AtomicReference<>();
}
});
value.set(status);
}
public void setDetectResult(DetectResult detectResult) {
this.detectResult.set(detectResult);
}
@Override
public Object getPluginValue(int pluginId, Function create) {
if (null == create) {
return pluginValues.get(pluginId);
}
return pluginValues.computeIfAbsent(pluginId, create);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy