AlarmScannerService.java 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. package com.gyee.alarm.service;
  2. import com.gyee.alarm.controller.feigns.IAlarmService;
  3. import com.gyee.alarm.model.vo.AlarmSimpleVo;
  4. import com.gyee.alarm.model.vo.AlarmSuperTalbeType;
  5. import com.gyee.alarm.model.vo.AlarmTag;
  6. import com.gyee.alarm.model.vo.AlarmTypeValue;
  7. import com.gyee.alarm.service.auto.IAlarmTsService;
  8. import com.gyee.alarm.task.thread.AlarmThread;
  9. import com.gyee.alarm.util.StringUtils;
  10. import com.gyee.alarm.util.realtimesource.IEdosUtil;
  11. import lombok.extern.slf4j.Slf4j;
  12. import org.springframework.beans.factory.annotation.Qualifier;
  13. import org.springframework.beans.factory.annotation.Value;
  14. import org.springframework.stereotype.Service;
  15. import javax.annotation.Resource;
  16. import java.util.ArrayList;
  17. import java.util.HashMap;
  18. import java.util.List;
  19. import java.util.Map;
  20. import java.util.concurrent.*;
  21. import java.util.concurrent.atomic.AtomicInteger;
  22. @Service
  23. @Slf4j
  24. public class AlarmScannerService {
  25. @Value("${task-count}")
  26. private Integer taskCount;
  27. @Value("${interval}")
  28. private Integer interval;
  29. @Value("${alarmType}")
  30. private String alarmType;
  31. @Value("${read-rows}")
  32. private Integer readRows;
  33. @Resource
  34. private IEdosUtil edosUtil;
  35. @Resource
  36. private IAlarmService alarmService;
  37. @Resource
  38. private IAlarmTsService alarmTsService;
  39. private List<AlarmTag> alarmTags=new CopyOnWriteArrayList<>();
  40. private List<AlarmTag> alarmInTags=new CopyOnWriteArrayList<>();
  41. @Resource
  42. @Qualifier(value = "taskExecutor")
  43. private Executor executor;
  44. @Value("${runWindpowerstation}")
  45. private String runWindpowerstation;
  46. private Map<String, Integer> historymap;
  47. /**
  48. * 初始化
  49. */
  50. public void init() {
  51. //#WT("wt_alarms", "设备报警超级表"),
  52. //#BT("bt_alarms", "升压站报警超级表"),
  53. //#IN("in_alarms", "逆变器报警超级表"),
  54. switch (alarmType){
  55. case "wt_alarms":
  56. alarmTags =alarmService.findTagsByWt(runWindpowerstation);
  57. history(alarmTags);
  58. break;
  59. case "bt_alarms":
  60. List<AlarmTag> templs =alarmService.findTagsByBt();
  61. if(!templs.isEmpty())
  62. {
  63. for(AlarmTag tag:templs)
  64. {
  65. if(StringUtils.notEmp(tag.getTagId()) )
  66. {
  67. if(tag.getTagId().startsWith("GF"))
  68. {
  69. // tag.setVal(-10000.0);
  70. // tag.setOval(-10000.0);
  71. alarmInTags.add(tag);
  72. }else
  73. {
  74. alarmTags.add(tag);
  75. }
  76. }
  77. }
  78. }
  79. history(templs);
  80. break;
  81. case "in_alarms":
  82. alarmTags =alarmService.findTagsByIn();
  83. history(alarmTags);
  84. break;
  85. }
  86. }
  87. public void history(List<AlarmTag> tags) {
  88. StringBuilder sb = new StringBuilder();
  89. List<AlarmSimpleVo> alarmvols = new CopyOnWriteArrayList<>();
  90. int times = 0;
  91. for (AlarmTag alarm : tags) {
  92. sb.append("'").append(alarm.getId().toLowerCase()).append("',");
  93. times++;
  94. if (times == 1000) {
  95. String ids = sb.substring(0, sb.length() - 1);
  96. List<AlarmSimpleVo> templs = new CopyOnWriteArrayList<>();
  97. if (alarm.getAlarmType().equals(AlarmTypeValue.BT.getCode())) {
  98. templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.BT.getCode(), ids);
  99. } else if (alarm.getAlarmType().equals(AlarmTypeValue.WT.getCode())) {
  100. templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.WT.getCode(), ids);
  101. } else if (alarm.getAlarmType().equals(AlarmTypeValue.IN.getCode())) {
  102. templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.WT.getCode(), ids);
  103. }
  104. alarmvols.addAll(templs);
  105. sb.setLength(0);
  106. times=0;
  107. }
  108. }
  109. if (sb.length() > 0) {
  110. String ids = sb.substring(0, sb.length() - 1);
  111. List<AlarmSimpleVo> templs = new CopyOnWriteArrayList<>();
  112. if (alarmTags.get(0).getAlarmType().equals(AlarmTypeValue.BT.getCode())) {
  113. templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.BT.getCode(), ids);
  114. } else if (alarmTags.get(0).getAlarmType().equals(AlarmTypeValue.WT.getCode())) {
  115. templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.WT.getCode(), ids);
  116. } else if (alarmTags.get(0).getAlarmType().equals(AlarmTypeValue.IN.getCode())) {
  117. templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.WT.getCode(), ids);
  118. }
  119. alarmvols.addAll(templs);
  120. }
  121. historymap= new ConcurrentHashMap<>();
  122. if (!alarmvols.isEmpty()) {
  123. for (AlarmSimpleVo vo : alarmvols) {
  124. if(StringUtils.empty(vo.getEndts()))
  125. {
  126. historymap.put(vo.getTbName().toLowerCase(), 0);
  127. }else
  128. {
  129. historymap.put(vo.getTbName().toLowerCase(), 1);
  130. }
  131. }
  132. }
  133. }
  134. /**
  135. * 分配任务
  136. */
  137. public synchronized void taskJobs(boolean start) throws InterruptedException {
  138. while (start) {
  139. if (alarmType.equals("bt_alarms")) {
  140. CountDownLatch countDownLatch = new CountDownLatch(2);
  141. // new Thread(new AlarmThread(executor, edosUtil, alarmService, alarmTags, interval, String.valueOf(1), readRows, alarmType, countDownLatch, alarmTsService, historymap)).start();
  142. // new Thread(new AlarmThread(executor, edosUtil, alarmService, alarmInTags, interval, String.valueOf(2), readRows, alarmType, countDownLatch, alarmTsService, historymap)).start();
  143. executor.execute(new AlarmThread(executor, edosUtil, alarmService, alarmTags, interval, String.valueOf(1), readRows, alarmType, countDownLatch, alarmTsService, historymap));
  144. executor.execute(new AlarmThread(executor, edosUtil, alarmService, alarmInTags, interval, String.valueOf(2), readRows, alarmType, countDownLatch, alarmTsService, historymap));
  145. countDownLatch.await(30, TimeUnit.SECONDS);
  146. // countDownLatch.await();
  147. } else {
  148. int len = 1;
  149. List<AlarmTag> alarmls = new ArrayList<>();
  150. int listNumber = alarmTags.size() / taskCount;
  151. int number = 0;
  152. if (alarmTags.size() % taskCount != 0) {
  153. listNumber = listNumber + 1;
  154. }
  155. CountDownLatch countDownLatch = new CountDownLatch(listNumber);
  156. StringBuilder str = new StringBuilder();
  157. str.append("总数:").append(alarmTags.size()).append(",线程数:").append(listNumber).append(",分块大小:").append(taskCount);
  158. log.info(String.valueOf(str));
  159. for (int i = 0; i < alarmTags.size(); i++) {
  160. alarmls.add(alarmTags.get(i));
  161. if (i != 0 && (i) % taskCount == 0) {
  162. // new Thread(new AlarmThread(executor, edosUtil, alarmService, alarmls, interval, String.valueOf(len), readRows, alarmType, countDownLatch, alarmTsService, historymap)).start();
  163. executor.execute(new AlarmThread(executor, edosUtil, alarmService, alarmls, interval, String.valueOf(len), readRows, alarmType, countDownLatch, alarmTsService, historymap));
  164. alarmls = new ArrayList<>();
  165. len++;
  166. }
  167. }
  168. if (!alarmls.isEmpty()) {
  169. executor.execute(new AlarmThread(executor, edosUtil, alarmService, alarmls, interval, String.valueOf(len), readRows, alarmType, countDownLatch, alarmTsService, historymap));
  170. // new Thread(new AlarmThread(executor, edosUtil, alarmService, alarmls, interval, String.valueOf(len), readRows, alarmType, countDownLatch, alarmTsService, historymap)).start();
  171. }
  172. countDownLatch.await(30, TimeUnit.SECONDS);
  173. // countDownLatch.await(30, TimeUnit.SECONDS);
  174. }
  175. log.info("报警排查完成!");
  176. }
  177. }
  178. }