AlarmRuleService.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. package com.gyee.alarm.service;
  2. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  3. import com.baomidou.mybatisplus.core.metadata.IPage;
  4. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  5. import com.gyee.alarm.init.CacheContext;
  6. import com.gyee.alarm.mapper.auto.AlarmTsMapper;
  7. import com.gyee.alarm.mapper.auto.ProEconAlarmRuleMapper;
  8. import com.gyee.alarm.model.auto.*;
  9. import com.gyee.alarm.model.vo.AlarmConfigurationVo;
  10. import com.gyee.alarm.model.vo.AlarmRuleVo;
  11. import com.gyee.alarm.service.auto.IProEconAlarmPlanService;
  12. import com.gyee.alarm.util.SnowflakeGenerator;
  13. import com.gyee.alarm.util.StringUtil;
  14. import com.gyee.alarm.util.StringUtils;
  15. import org.springframework.stereotype.Service;
  16. import javax.annotation.Resource;
  17. import java.util.*;
  18. @Service
  19. public class AlarmRuleService {
  20. @Resource
  21. private ProEconAlarmRuleMapper proEconAlarmRuleMapper;
  22. @Resource
  23. private RuleUpdateEventService ruleUpdateEventService;
  24. @Resource
  25. private IProEconAlarmPlanService proEconAlarmPlanService;
  26. /**
  27. * 查询报警信息接口
  28. * @param wpId 场站不编号
  29. * @param modelId 型号编号
  30. * @param components 部件编号
  31. * @return
  32. */
  33. public List<AlarmConfigurationVo> queryWtAlarmDescList(String wpId, String modelId, String components) {
  34. List<AlarmConfigurationVo> vos=new ArrayList<>();
  35. StringBuilder sb=new StringBuilder();
  36. sb.append(wpId).append(modelId);
  37. Map<String,String> map=new HashMap<>();
  38. if(com.gyee.common.model.StringUtils.notEmp(components))
  39. {
  40. String [] componentsStr=components.split(",");
  41. for(String c:componentsStr)
  42. {
  43. map.put(c,c);
  44. }
  45. }
  46. if(CacheContext.ctAlarmlsMap.containsKey(String.valueOf(sb)))
  47. {
  48. List<ProEconAlarmRule> ls=CacheContext.ctAlarmlsMap.get(String.valueOf(sb));
  49. if(!ls.isEmpty())
  50. {
  51. for(ProEconAlarmRule ac:ls)
  52. {
  53. if(map.containsKey(ac.getRelatedParts()))
  54. {
  55. AlarmConfigurationVo vo=new AlarmConfigurationVo();
  56. vo.setAlarmId(ac.getId());
  57. vo.setDescription(ac.getDescription());
  58. vos.add(vo);
  59. }
  60. }
  61. }
  62. }
  63. return vos;
  64. }
  65. /**
  66. * 查询报警信息接口
  67. * @param wpId 场站不编号
  68. * @param modelId 型号编号
  69. * @param components 部件编号
  70. * @return
  71. */
  72. public List<AlarmConfigurationVo> queryCtAlarmDescList(String wpId, String modelId, String components) {
  73. List<AlarmConfigurationVo> vos=new ArrayList<>();
  74. StringBuilder sb=new StringBuilder();
  75. sb.append(wpId).append(modelId);
  76. Map<String,String> map=new HashMap<>();
  77. if(com.gyee.common.model.StringUtils.notEmp(components))
  78. {
  79. String [] componentsStr=components.split(",");
  80. for(String c:componentsStr)
  81. {
  82. map.put(c,c);
  83. }
  84. }
  85. if(CacheContext.ctAlarmlsMap.containsKey(String.valueOf(sb)))
  86. {
  87. List<ProEconAlarmRule> ls=CacheContext.ctAlarmlsMap.get(String.valueOf(sb));
  88. if(!ls.isEmpty())
  89. {
  90. for(ProEconAlarmRule ac:ls)
  91. {
  92. if(map.containsKey(ac.getRelatedParts()))
  93. {
  94. AlarmConfigurationVo vo=new AlarmConfigurationVo();
  95. vo.setAlarmId(ac.getId());
  96. vo.setDescription(ac.getDescription());
  97. vos.add(vo);
  98. }
  99. }
  100. }
  101. }
  102. return vos;
  103. }
  104. private int saveAlertrule(ProEconAlarmRule alarmRule) throws Exception {
  105. int result = 0;
  106. if (StringUtils.notEmp(alarmRule)) {
  107. alarmRule.setCreateTime(new Date());
  108. alarmRule.setId(String.valueOf(SnowflakeGenerator.generateId()));
  109. alarmRule.setEnable(true);
  110. alarmRule.setUniformCode("");
  111. alarmRule.setRange("0");
  112. result= proEconAlarmRuleMapper.insert(alarmRule);
  113. }
  114. // if (result > 0) {
  115. // int i = eventService.saveEventAlertRule(alarmRule, oldRule2, userData.getUserName());
  116. return result;
  117. }
  118. public int saveAndUpdateAlertrule(ProEconAlarmRule alarmRule) throws Exception {
  119. int result = 0;
  120. if (StringUtils.notEmp(alarmRule)) {
  121. if(StringUtils.notEmp(alarmRule.getId()))
  122. {
  123. List<ProEconAlarmRule> oldRulels = proEconAlarmRuleMapper.queryObject(alarmRule.getName(),alarmRule.getStationId(),alarmRule.getModelId());
  124. if(!oldRulels.isEmpty())
  125. {
  126. ProEconAlarmRule oldRule2=oldRulels.get(0);
  127. alarmRule.setId(oldRule2.getId());
  128. result = proEconAlarmRuleMapper.updateByAlertruleId(alarmRule);
  129. ruleUpdateEventService.saveEventAlertRule(alarmRule,oldRule2);
  130. }else
  131. {
  132. result = proEconAlarmRuleMapper.updateByAlertruleId(alarmRule);
  133. }
  134. }else
  135. {
  136. alarmRule.setId(String.valueOf(SnowflakeGenerator.generateId()));
  137. alarmRule.setCreateTime(new Date());
  138. ruleUpdateEventService.saveEventAlertRule(alarmRule,null);
  139. result = saveAlertrule(alarmRule);
  140. }
  141. proEconAlarmPlanService.updatePlanlistById(alarmRule.getId(), alarmRule.getAlarmPlan());
  142. }
  143. return result;
  144. }
  145. public int deleteAlertrule(String id) {
  146. return proEconAlarmRuleMapper.deleteById(id);
  147. }
  148. public IPage<ProEconAlarmRule> pageQueryAll(Page page, String name, String station, String modelId, Integer rank, String category, Boolean enabled, String relatedparts) {
  149. if(StringUtils.notEmp(name))
  150. {
  151. name="%"+name+"%";
  152. }else
  153. {
  154. name=null;
  155. }
  156. if(StringUtils.empty(station))
  157. {
  158. station=null;
  159. }
  160. if(StringUtils.empty(modelId))
  161. {
  162. modelId=null;
  163. }
  164. if(StringUtils.empty(rank))
  165. {
  166. rank=null;
  167. }
  168. if(StringUtils.empty(category))
  169. {
  170. category=null;
  171. }
  172. if(StringUtils.empty(enabled))
  173. {
  174. enabled=null;
  175. }
  176. if(StringUtils.empty(relatedparts))
  177. {
  178. relatedparts=null;
  179. }
  180. IPage<ProEconAlarmRule> alertruleIPage = proEconAlarmRuleMapper.pageQueryAll(page, name, station, modelId, rank, category, enabled, relatedparts);
  181. if(!alertruleIPage.getRecords().isEmpty())
  182. {
  183. for(ProEconAlarmRule ar:alertruleIPage.getRecords())
  184. {
  185. if(CacheContext.wpmap.containsKey(ar.getStationId()))
  186. {
  187. ProBasicPowerstation wp=CacheContext.wpmap.get(ar.getStationId());
  188. ar.setStationName(wp.getName());
  189. }
  190. if(CacheContext.alarmTypeMap.containsKey(ar.getRelatedParts()))
  191. {
  192. ProEconAlarmType type=CacheContext.alarmTypeMap.get(ar.getRelatedParts());
  193. ar.setRelatedPartsName(type.getName());
  194. }
  195. if(CacheContext.subwpmap.containsKey(ar.getStationId()))
  196. {
  197. ProBasicSubStation type=CacheContext.subwpmap.get(ar.getStationId());
  198. ar.setStationName(type.getName());
  199. }
  200. }
  201. }
  202. return alertruleIPage;
  203. }
  204. public List<AlarmRuleVo> queryTree() {
  205. List<AlarmRuleVo> dsList = proEconAlarmRuleMapper.queryTree();
  206. return dsList;
  207. }
  208. //首页风机部件查询
  209. public Map<String, Integer> queryList(String station, String modelId) {
  210. Map<String, Integer> map2 = new HashMap<>();
  211. map2.put("CLX", 0);
  212. map2.put("YP", 0);
  213. map2.put("YY", 0);
  214. map2.put("BJXT", 0);
  215. map2.put("PHXT", 0);
  216. map2.put("BPXT", 0);
  217. map2.put("CFXT", 0);
  218. map2.put("ZZ", 0);
  219. map2.put("FDJ", 0);
  220. map2.put("QT", 0);
  221. List<ProEconAlarmRule> dslist = proEconAlarmRuleMapper.getAllByStationIdAndModelId(station, modelId);
  222. map2.put("SUM", dslist.size());
  223. for (ProEconAlarmRule ar : dslist) {
  224. int cnt = 0;
  225. switch (ar.getRelatedParts()) {
  226. case "CLX":
  227. cnt = map2.get("CLX").intValue();
  228. map2.put("CLX", ++cnt);
  229. break;
  230. case "YP":
  231. cnt = map2.get("YP").intValue();
  232. map2.put("YP", ++cnt);
  233. break;
  234. case "YY":
  235. cnt = map2.get("YY").intValue();
  236. map2.put("YY", ++cnt);
  237. break;
  238. case "BJXT":
  239. cnt = map2.get("BJXT").intValue();
  240. map2.put("BJXT", ++cnt);
  241. break;
  242. case "PHXT":
  243. cnt = map2.get("PHXT").intValue();
  244. map2.put("PHXT", ++cnt);
  245. break;
  246. case "BPXT":
  247. cnt = map2.get("BPXT").intValue();
  248. map2.put("BPXT", ++cnt);
  249. break;
  250. case "CFXT":
  251. cnt = map2.get("CFXT").intValue();
  252. map2.put("CFXT", ++cnt);
  253. break;
  254. case "ZZ":
  255. cnt = map2.get("ZZ").intValue();
  256. map2.put("ZZ", ++cnt);
  257. break;
  258. case "FDJ":
  259. cnt = map2.get("FDJ").intValue();
  260. map2.put("FDJ", ++cnt);
  261. break;
  262. default:
  263. cnt = map2.get("QT").intValue();
  264. map2.put("QT", ++cnt);
  265. break;
  266. }
  267. }
  268. return map2;
  269. }
  270. public List<String> getUniformCodeByNameAndStation(String name, String station, String modelid) {
  271. List<ProEconAlarmRule> rules = proEconAlarmRuleMapper.getUniformCodeByNameAndStation(name, station, modelid);
  272. if (rules == null || rules.size() == 0)
  273. {
  274. return null;
  275. }
  276. ProEconAlarmRule rule = rules.get(0);
  277. String expression = "(([A][I])|([D][I]))([0-9]+)";
  278. List<String> list = StringUtil.pattern(rule.getExpression(), expression);
  279. return list;
  280. }
  281. public ProEconAlarmRule selectByAlertruleId(String id) {
  282. return proEconAlarmRuleMapper.selectById(id);
  283. }
  284. }