|
@@ -2,6 +2,7 @@ package com.persagy.cache;
|
|
|
|
|
|
import java.util.Objects;
|
|
|
import java.util.Optional;
|
|
|
+import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
@@ -79,31 +80,67 @@ public class AlarmRedisCache implements RedisCache {
|
|
|
return alarmCondition;
|
|
|
}
|
|
|
|
|
|
- public ObjConditionInfo getAlarmConditionsByObjId(String meterId) {
|
|
|
- try {
|
|
|
- String str = alarmRedisTemplate.opsForHash().get(RedisConstant.METER_ID, meterId).toString();
|
|
|
- if (StringUtils.isNotBlank(str)) {
|
|
|
- JSONObject object = JSONObject.parseObject(str);
|
|
|
- ObjConditionInfo objConditionInfo = JSON.toJavaObject(object, ObjConditionInfo.class);
|
|
|
- return objConditionInfo;
|
|
|
- }
|
|
|
- } catch (Exception e) {
|
|
|
- log.warn("从redis获取设备的报警条件信息失败" + e);
|
|
|
- }
|
|
|
- return null;
|
|
|
- }
|
|
|
-
|
|
|
- public AlarmCondition getAlarmCondition(String conditionId) {
|
|
|
- try {
|
|
|
- String str = alarmRedisTemplate.opsForHash().get(RedisConstant.ALARMCONDITION_ID, conditionId).toString();
|
|
|
- if (StringUtils.isNotBlank(str)) {
|
|
|
- JSONObject object = JSONObject.parseObject(str);
|
|
|
- AlarmCondition alarmCondition = JSON.toJavaObject(object, AlarmCondition.class);
|
|
|
- return alarmCondition;
|
|
|
- }
|
|
|
- } catch (Exception e) {
|
|
|
- log.warn("从redis获取报警条件失败" + e);
|
|
|
- }
|
|
|
- return null;
|
|
|
- }
|
|
|
+ public ObjConditionInfo getAlarmConditionsByObjId(String meterId) {
|
|
|
+ try {
|
|
|
+ String str = alarmRedisTemplate.opsForHash().get(RedisConstant.METER_ID, meterId).toString();
|
|
|
+ if (StringUtils.isNotBlank(str)) {
|
|
|
+ JSONObject object = JSONObject.parseObject(str);
|
|
|
+ ObjConditionInfo objConditionInfo = JSON.toJavaObject(object, ObjConditionInfo.class);
|
|
|
+ return objConditionInfo;
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.warn("从redis获取设备的报警条件信息失败" + e);
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ public AlarmCondition getAlarmCondition(String conditionId) {
|
|
|
+ try {
|
|
|
+ String str = alarmRedisTemplate.opsForHash().get(RedisConstant.ALARMCONDITION_ID, conditionId).toString();
|
|
|
+ if (StringUtils.isNotBlank(str)) {
|
|
|
+ JSONObject object = JSONObject.parseObject(str);
|
|
|
+ AlarmCondition alarmCondition = JSON.toJavaObject(object, AlarmCondition.class);
|
|
|
+ return alarmCondition;
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.warn("从redis获取报警条件失败" + e);
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 释放锁
|
|
|
+ *
|
|
|
+ * @param key
|
|
|
+ */
|
|
|
+ public void releaseLock(String key) {
|
|
|
+ alarmRedisTemplate.delete(key);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 加锁
|
|
|
+ *
|
|
|
+ * @param key
|
|
|
+ * @param value
|
|
|
+ * @param timeout 过期时间
|
|
|
+ */
|
|
|
+ public boolean lock(String key, String value, Integer timeout) {
|
|
|
+ boolean bool;
|
|
|
+ while (true) {
|
|
|
+ Boolean b = alarmRedisTemplate.opsForValue().setIfAbsent(key, value, timeout, TimeUnit.SECONDS);
|
|
|
+ if (b) {
|
|
|
+ bool = b;
|
|
|
+ break;
|
|
|
+ } else {
|
|
|
+ try {
|
|
|
+ Thread.sleep(100);
|
|
|
+ } catch (InterruptedException e) {
|
|
|
+ Thread.currentThread().interrupt();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return bool;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|