Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2015 the original author or authors.
* @https://github.com/scouter-project/scouter
*
* 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 scouterx.webapp.framework.cache;
import lombok.extern.slf4j.Slf4j;
import scouter.lang.pack.XLogPack;
import scouter.util.IntSet;
import scouterx.webapp.framework.client.server.Server;
import scouterx.webapp.model.XLogPackWrapper;
import scouterx.webapp.framework.configure.ConfigureAdaptor;
import scouterx.webapp.framework.configure.ConfigureManager;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Consumer;
/**
* Cache of latest XLog data
*
* @author Gun Lee ([email protected]) on 2017. 9. 9.
*/
@Slf4j
public class XLogLoopCache {
private static final Map loopCacheMap = new HashMap<>();
private static ConfigureAdaptor conf = ConfigureManager.getConfigure();
private final int MAX_RETRIEVE_COUNT;
private final Server server;
private long loop = 0;
private int index = 0;
private final XLogPackWrapper[] queue;
public XLogLoopCache(Server server, int capacity) {
this.MAX_RETRIEVE_COUNT = capacity / 2;
this.server = server;
if (server == null) {
throw new RuntimeException("Not yet initialized!");
}
queue = new XLogPackWrapper[capacity];
loopCacheMap.put(server.getId(), this);
}
public static XLogLoopCache getOf(int serverId) {
return loopCacheMap.get(serverId);
}
public void add(XLogPack pack) {
if (conf.isTrace() && index % 10000 == 0) {
log.info("XLog added - {} {} {}", loop, index, pack);
}
synchronized (queue) {
queue[index] = new XLogPackWrapper(pack, this.loop, this.index);
index += 1;
if (index >= queue.length) {
loop += 1;
index = 0;
}
}
}
public void getAndHandleRealTimeXLog(long aLoop, int aIndex, int aMaxCount, long bufferTime, Consumer handlerConsumer) {
getAndHandleRealTimeXLog(null, aLoop, aIndex, aMaxCount, bufferTime, handlerConsumer);
}
/**
* get new xlog data revealed after the previous check point, and invoke the handler consumer
*
* @param aLoop - last loop retrieved
* @param aIndex - last index retrieved
* @param bufferTime - buffer time(milliseconds) for to prevent fetching data before dictionary data generation.
*/
public void getAndHandleRealTimeXLog(IntSet objHashIntSet, long aLoop, int aIndex, int aMaxCount, long bufferTime,
Consumer handlerConsumer) {
int maxCount = aMaxCount;
//Initial call
if(aLoop == 0 && aIndex == 0) {
} else if(++aIndex >= queue.length) {
aIndex = 0;
aLoop++;
}
long currentLoop;
int currentIndex;
synchronized (queue) {
currentLoop = this.loop;
currentIndex = this.index;
}
int loopStatus = (int) (currentLoop - aLoop);
switch (loopStatus) {
case 0:
int countToGet = currentIndex - aIndex;
if (aIndex < currentIndex) {
maxCount = Math.min(aMaxCount, countToGet);
} else {
return;
}
break;
case 1:
maxCount = Math.min(aMaxCount, queue.length - aIndex + currentIndex);
break;
default:
}
if (maxCount == 0 || maxCount > MAX_RETRIEVE_COUNT) {
maxCount = MAX_RETRIEVE_COUNT;
}
if (maxCount > currentIndex) {
handleInternal(objHashIntSet, queue.length - (maxCount - currentIndex), queue.length, bufferTime, handlerConsumer);
handleInternal(objHashIntSet, 0, currentIndex, bufferTime, handlerConsumer);
} else {
handleInternal(objHashIntSet, currentIndex - maxCount, currentIndex, bufferTime, handlerConsumer);
}
}
/**
* get xlog data and invoke consumer within the range
*
* @param from
* @param to
* @param bufferTime
* @param handlerConsumer
*/
private void handleInternal(IntSet objHashIntSet, int from, int to, long bufferTime, Consumer handlerConsumer) {
long now = server.getCurrentTime();
for (int i = from; i < to; i++) {
XLogPackWrapper packWrapper = queue[i];
//keep bufferTime to consider dictionary info delaying
if (now - bufferTime < packWrapper.getPack().endTime) {
break;
}
//filter objHash
if (objHashIntSet != null && objHashIntSet.size() > 0 && !objHashIntSet.contains(packWrapper.getPack().objHash)) {
continue;
}
handlerConsumer.accept(packWrapper);
}
}
}