com.alibaba.csp.sentinel.eagleeye.StatRollingData Maven / Gradle / Ivy
/*
* Copyright 1999-2018 Alibaba Group Holding Ltd.
*
* Licensed 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 com.alibaba.csp.sentinel.eagleeye;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.locks.ReentrantLock;
/**
* @author jifeng
*/
final class StatRollingData {
private final StatLogger statLogger;
private final long timeSlot;
private final long rollingTimeMillis;
private final ReentrantLock writeLock;
private final Map statMap;
StatRollingData(StatLogger statLogger, int initialCapacity, long timeSlot, long rollingTimeMillis) {
this(statLogger, timeSlot, rollingTimeMillis,
new ConcurrentHashMap(
Math.min(initialCapacity, statLogger.getMaxEntryCount())));
}
private StatRollingData(StatLogger statLogger, long timeSlot, long rollingTimeMillis,
Map statMap) {
this.statLogger = statLogger;
this.timeSlot = timeSlot;
this.rollingTimeMillis = rollingTimeMillis;
this.writeLock = new ReentrantLock();
this.statMap = statMap;
}
StatEntryFunc getStatEntryFunc(
final StatEntry statEntry, final StatEntryFuncFactory factory) {
StatEntryFunc func = statMap.get(statEntry);
if (func == null) {
StatRollingData clone = null;
writeLock.lock();
try {
int entryCount = statMap.size();
if (entryCount < statLogger.getMaxEntryCount()) {
func = statMap.get(statEntry);
if (func == null) {
func = factory.create();
statMap.put(statEntry, func);
}
} else {
Map cloneStatMap =
new HashMap(statMap);
statMap.clear();
func = factory.create();
statMap.put(statEntry, func);
clone = new StatRollingData(statLogger, timeSlot, rollingTimeMillis, cloneStatMap);
}
} finally {
writeLock.unlock();
}
if (clone != null) {
StatLogController.scheduleWriteTask(clone);
}
}
return func;
}
StatLogger getStatLogger() {
return statLogger;
}
long getRollingTimeMillis() {
return rollingTimeMillis;
}
long getTimeSlot() {
return timeSlot;
}
int getStatCount() {
return statMap.size();
}
Set> getStatEntrySet() {
return statMap.entrySet();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy