|
|
@ -1,11 +1,15 @@
|
|
|
|
package cn.hippo4j.starter.alarm;
|
|
|
|
package cn.hippo4j.starter.alarm;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hippo4j.common.constant.Constants;
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
import com.google.common.cache.Cache;
|
|
|
|
import com.google.common.cache.Cache;
|
|
|
|
|
|
|
|
import com.google.common.cache.CacheBuilder;
|
|
|
|
import com.google.common.collect.Maps;
|
|
|
|
import com.google.common.collect.Maps;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
|
|
import java.util.concurrent.locks.ReentrantLock;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 报警控制组件.
|
|
|
|
* 报警控制组件.
|
|
|
@ -15,7 +19,9 @@ import java.util.Map;
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public class AlarmControlHandler {
|
|
|
|
public class AlarmControlHandler {
|
|
|
|
|
|
|
|
|
|
|
|
public static Map<String, Cache<String, String>> THREAD_POOL_ALARM_CACHE = Maps.newConcurrentMap();
|
|
|
|
private final Map<String, ReentrantLock> threadPoolLock = Maps.newHashMap();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final Map<String, Cache<String, String>> threadPoolAlarmCache = Maps.newConcurrentMap();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 控制消息推送报警频率.
|
|
|
|
* 控制消息推送报警频率.
|
|
|
@ -24,17 +30,48 @@ public class AlarmControlHandler {
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public boolean isSendAlarm(AlarmControlDTO alarmControl) {
|
|
|
|
public boolean isSendAlarm(AlarmControlDTO alarmControl) {
|
|
|
|
Cache<String, String> cache = THREAD_POOL_ALARM_CACHE.get(alarmControl.buildPk());
|
|
|
|
String threadPoolKey = alarmControl.buildPk();
|
|
|
|
if (cache != null) {
|
|
|
|
Cache<String, String> cache = threadPoolAlarmCache.get(threadPoolKey);
|
|
|
|
|
|
|
|
if (cache == null) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
String pkId = cache.getIfPresent(alarmControl.getTypeEnum().name());
|
|
|
|
String pkId = cache.getIfPresent(alarmControl.getTypeEnum().name());
|
|
|
|
|
|
|
|
if (StrUtil.isBlank(pkId)) {
|
|
|
|
|
|
|
|
ReentrantLock lock = threadPoolLock.get(threadPoolKey);
|
|
|
|
|
|
|
|
lock.lock();
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
pkId = cache.getIfPresent(alarmControl.getTypeEnum().name());
|
|
|
|
if (StrUtil.isBlank(pkId)) {
|
|
|
|
if (StrUtil.isBlank(pkId)) {
|
|
|
|
// val 无意义
|
|
|
|
// val 无意义
|
|
|
|
cache.put(alarmControl.getTypeEnum().name(), IdUtil.simpleUUID());
|
|
|
|
cache.put(alarmControl.getTypeEnum().name(), IdUtil.simpleUUID());
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
|
|
lock.unlock();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Init cache and lock.
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param threadPoolId
|
|
|
|
|
|
|
|
* @param platform
|
|
|
|
|
|
|
|
* @param interval
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public void initCacheAndLock(String threadPoolId, String platform, Integer interval) {
|
|
|
|
|
|
|
|
String threadPoolKey = StrUtil.builder(threadPoolId, Constants.GROUP_KEY_DELIMITER, platform).toString();
|
|
|
|
|
|
|
|
Cache<String, String> cache = CacheBuilder.newBuilder()
|
|
|
|
|
|
|
|
.expireAfterWrite(interval, TimeUnit.MINUTES)
|
|
|
|
|
|
|
|
.build();
|
|
|
|
|
|
|
|
threadPoolAlarmCache.put(threadPoolKey, cache);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set the lock to prevent false sending of alarm information.
|
|
|
|
|
|
|
|
ReentrantLock reentrantLock = new ReentrantLock();
|
|
|
|
|
|
|
|
threadPoolLock.put(threadPoolKey, reentrantLock);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|