AlarmRule.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. package com.gyee.generation.util.rule;//package com.gyee.alarm.rule;
  2. //
  3. //import com.gyee.alarm.model.auto.ProBasicEquipment;
  4. //import com.gyee.alarm.model.auto.ProEconAlarmRule;
  5. //import com.gyee.alarm.rule.expression.AlarmExpression;
  6. //import com.gyee.alarm.rule.expression.Analyzer;
  7. //
  8. //import com.gyee.alarm.service.initalcache.CacheService;
  9. //import com.gyee.alarm.util.StringUtils;
  10. //import lombok.Data;
  11. //import lombok.extern.slf4j.Slf4j;
  12. //
  13. //
  14. //import java.util.*;
  15. //import java.util.stream.Collectors;
  16. //
  17. //@Slf4j
  18. //@Data
  19. //public class AlarmRule {
  20. //
  21. // private ProEconAlarmRule proEconAlarmRule;
  22. //
  23. // private AlarmExpression alarmExpression;
  24. //
  25. // private List<AlarmFunction> funList;
  26. //
  27. //
  28. // public AlarmRule(ProEconAlarmRule ar) {
  29. // this.proEconAlarmRule = ar;
  30. // funList = new ArrayList<>();
  31. // try {
  32. // alarmExpression = Analyzer.getAlarmExpression(ar.getExpression());
  33. // alarmExpression.setRuleId(proEconAlarmRule.getId());
  34. // ArrayList<String> ucs = alarmExpression.getAllUniformCodes();
  35. // //1-风机 2-风场 5-升压站
  36. // if ("1".equals(ar.getCategory()) ) {
  37. // //获取规则所对应的风机
  38. // List<ProBasicEquipment> lst = new ArrayList<>();
  39. // cacheService.getWindturbineInfoMap().values().stream()
  40. // .filter((WindturbineInfo w) -> w.getWindturbine().getModelId().contains(ar.getModelId().trim())&&w.getWindturbine().getWindPowerStationId().equals(ar.getStation())).collect(Collectors.toList()).forEach(n -> lst.add(n.getWindturbine()));
  41. //
  42. // // String[] wtArray = ar.getWindturbine().split(",");
  43. // for (ProBasicEquipment wb : lst) {
  44. // Map<String, WindturbineInfo> wtMap = cacheService.getWindturbineInfoMap();
  45. // if (StringUtils.notEmp(wb.getId()) && wtMap.containsKey(wb.getId())) {
  46. // AlarmFunction alarmFunction = new AlarmFunction(alarmExpression, ThingType.WINDTURBINE, wb.getId());
  47. // if (funList.contains(alarmFunction)) {
  48. // log.warn("重复的设备:" + wb.getId());
  49. // continue;
  50. // }
  51. // funList.add(alarmFunction);
  52. // }
  53. // }
  54. // //填充ucWindturbinelist
  55. // if (ucs.size() > 0) {
  56. // for (String uc : ucs) {
  57. // ArrayList<String> wtList = cacheService.getUcWindturbinelist(uc);
  58. // for (ProBasicEquipment wb : lst) {
  59. // if (wtList.contains(wb.getId()) == false)
  60. // wtList.add(wb.getId());
  61. // }
  62. // }
  63. // }
  64. // }
  65. //
  66. //
  67. // if (("2".equals(ar.getCategory()) || "5".equals(ar.getCategory())) && ar.getStation() != null) {
  68. // String[] stArray = ar.getStation().split(",");
  69. // for (String stId : stArray) {
  70. // Map<String, StationInfo> wtMap = cacheService.getStationInfoMap();
  71. // if (StringUtil.isNotBlank(stId) && wtMap.containsKey(stId)) {
  72. // AlarmFunction alarmFunction = new AlarmFunction(alarmExpression, ThingType.STATION, stId);
  73. // if (funList.contains(alarmFunction)) {
  74. // log.warn("重复的设备:" + stId);
  75. // continue;
  76. // }
  77. // funList.add(alarmFunction);
  78. // }
  79. // }
  80. //
  81. // //填充ucStationlist
  82. // if (ucs.size() > 0) {
  83. // for (String uc : ucs) {
  84. // ArrayList<String> stList = cacheService.getUcStationlist(uc);
  85. // for (String stId : stArray) {
  86. // if (stList.contains(stId) == false)
  87. // stList.add(stId);
  88. // }
  89. // }
  90. // }
  91. // }
  92. // } catch (Exception ex) {
  93. // log.error("生成自定义报警规则失败!规则id:" + ar.getId());
  94. // }
  95. // }
  96. //
  97. // //缓存报警快照,减少数据库查询次数
  98. // //key: thingId
  99. // private HashMap<String, AlarmSnap> snapMap;
  100. //
  101. // //用于批量更新数据库
  102. // private List<AlarmSnap> snapChangedList;
  103. //
  104. // public void run() {
  105. // if (funList != null && funList.size() > 0) {
  106. //
  107. // if (snapChangedList == null)
  108. // snapChangedList = new ArrayList<>();
  109. // else
  110. // snapChangedList.clear();
  111. //
  112. // for (AlarmFunction fun : funList) {
  113. // try {
  114. //
  115. // Object obj = fun.explain();
  116. // if (obj instanceof Boolean) {
  117. // boolean writeHistory = true;
  118. // AlarmSnap snap = getAlertSnap(fun.getThingId());
  119. // if (true == (boolean) obj) {
  120. // double interval = 0;
  121. //// if (snap == null) {
  122. //// snap = AlertSnapFactory.createAlertsnap(this.proEconAlarmRule, fun.getThingId());
  123. //// if (snap.getStationName() == null &&
  124. //// snap.getStationId() != null &&
  125. //// cacheService.getStationInfoMap().containsKey(snap.getStationId())) {
  126. ////// StationInfo st = cacheService.getStationInfoMap().get(snap.getStationId());
  127. //// snap.setStationName(st.getStation().getStationName());
  128. //// }
  129. //// } else
  130. // if (snap.getIsOpened() != 0) {
  131. // long ts = (new Date()).getTime() - snap.getLastUpdateTime().getTime();
  132. // //TimeSpan ts = DateTime.Now.Subtract((DateTime)snap.LastUpdateTime);
  133. // interval = ts / (3600 * 1000);
  134. // }
  135. //
  136. // if (snap.getIsOpened() == 0 || interval > 1) {
  137. // snap.setIsOpened(1);
  138. // //snap.DataInfo = CommonMethod.StringCopy(ari.DataInfo, 2000);
  139. // //snap.setLastUpdatePerson("system");
  140. // snap.setLastUpdateTime(new Date());
  141. //// if (snap.getIsConfirmed() != 0 && interval > 8)
  142. //// snap.setIsConfirmed(0);
  143. //
  144. // //sqlService.saveAlertSnap(snap);
  145. // snapChangedList.add(snap);
  146. //
  147. //
  148. // //AlertSnapRepository.SaveAlertSnap(snap);
  149. // //写实时库
  150. //// string key = GetWindTurbineAlertPoint(windTurbine.Id);
  151. //// logger.InfoFormat("写报警测点,key={0}, value={1}", key, ari.ProEconAlarmRule.EdnaValue);
  152. //// eDos.SendSinglePoint(key, ari.ProEconAlarmRule.EdnaValue);
  153. // log.info(String.format("触发报警!%s,规则:%s", fun.getThingId(), proEconAlarmRule.getName()+"--"+proEconAlarmRule.getExpression()));
  154. // }
  155. // } else {
  156. // //解除报警
  157. // if (snap != null && snap.getIsOpened() != 0) {
  158. // snap.setIsOpened(0);
  159. // //snap.DataInfo = CommonMethod.StringCopy(ari.DataInfo, 2000);
  160. //// snap.setIsConfirmed(0);
  161. //// snap.setLastClosePerson("system");
  162. //// snap.setLastCloseTime(new Date());
  163. // snap.setLastUpdateTime(new Date());
  164. // //sqlService.saveAlertSnap(snap);
  165. // snapChangedList.add(snap);
  166. // log.info(String.format("解除报警!%s,规则:%s",
  167. // fun.getThingId(), proEconAlarmRule.getId()));
  168. // }
  169. // }
  170. // } else {
  171. // System.out.print(obj.toString());
  172. // }
  173. // } catch (Exception ex) {
  174. // // ex.printStackTrace();
  175. // log.error("自定义报警规则执行时出错!"+fun.getThingId()+"--"+this.proEconAlarmRule.getId()+"----"+this.proEconAlarmRule.getName()+"------" + ex.getMessage());
  176. // }
  177. // }
  178. //
  179. // if (snapChangedList.size() > 0)
  180. // sqlService.saveAlertSnaps(snapChangedList);
  181. // }
  182. // }
  183. //
  184. // private AlarmSnap getAlertSnap(String thingId) {
  185. // if (snapMap == null)
  186. // snapMap = new HashMap<>();
  187. // if (snapMap.containsKey(thingId)) {
  188. // return snapMap.get(thingId);
  189. // } else {
  190. // AlarmSnap alertsnap = findAlertSnap(thingId, this.proEconAlarmRule.getEdnaValue());
  191. // if (alertsnap == null) {
  192. // alertsnap = AlertSnapFactory.createAlertsnap(this.proEconAlarmRule, thingId);
  193. // if (alertsnap.getStationName() == null &&
  194. // alertsnap.getStationId() != null &&
  195. // cacheService.getStationInfoMap().containsKey(alertsnap.getStationId())) {
  196. // StationInfo st = cacheService.getStationInfoMap().get(alertsnap.getStationId());
  197. // alertsnap.setStationName(st.getStation().getStationName());
  198. // }
  199. // }
  200. // if (alertsnap.getId() != null)
  201. // snapMap.put(thingId, alertsnap);
  202. // if(StringUtils.isBlank(alertsnap.getCategory3()))
  203. // {
  204. // //如果风机报警的category3字段为空,则说明报警没有关联到相关部件,取报警规则中的Relatedparts进行赋值
  205. // if(StringUtils.isNotBlank(this.proEconAlarmRule.getRelatedParts())){
  206. // alertsnap.setCategory3(this.proEconAlarmRule.getRelatedParts());
  207. // }
  208. // }
  209. // return alertsnap;
  210. // }
  211. // }
  212. //
  213. // private AlarmSnap findAlertSnap(String thingId, int alertValue) {
  214. // try {
  215. // if ("1".equals(this.proEconAlarmRule.getCategory())) {
  216. // return sqlService.getAlertSnap(ThingType.WINDTURBINE, thingId, alertValue);
  217. // }
  218. //
  219. // return sqlService.getAlertSnap(ThingType.STATION, thingId, alertValue);
  220. // } catch (Exception ex) {
  221. // log.warn(String.format("thingId=%s, alertValue=%d", thingId, alertValue));
  222. // log.error(ex.getMessage(), ex);
  223. // return null;
  224. // }
  225. //
  226. // }
  227. //
  228. //
  229. //}