123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- package com.gyee.alarm.service;
- import com.gyee.alarm.controller.feigns.IAlarmService;
- import com.gyee.alarm.model.vo.AlarmSimpleVo;
- import com.gyee.alarm.model.vo.AlarmSuperTalbeType;
- import com.gyee.alarm.model.vo.AlarmTag;
- import com.gyee.alarm.model.vo.AlarmTypeValue;
- import com.gyee.alarm.service.auto.IAlarmTsService;
- import com.gyee.alarm.task.thread.AlarmThread;
- import com.gyee.alarm.util.StringUtils;
- import com.gyee.alarm.util.realtimesource.IEdosUtil;
- import lombok.extern.slf4j.Slf4j;
- import org.springframework.beans.factory.annotation.Qualifier;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.stereotype.Service;
- import javax.annotation.Resource;
- import java.util.ArrayList;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import java.util.concurrent.*;
- import java.util.concurrent.atomic.AtomicInteger;
- @Service
- @Slf4j
- public class AlarmScannerService {
- @Value("${task-count}")
- private Integer taskCount;
- @Value("${interval}")
- private Integer interval;
- @Value("${alarmType}")
- private String alarmType;
- @Value("${read-rows}")
- private Integer readRows;
- @Resource
- private IEdosUtil edosUtil;
- @Resource
- private IAlarmService alarmService;
- @Resource
- private IAlarmTsService alarmTsService;
- private List<AlarmTag> alarmTags=new CopyOnWriteArrayList<>();
- private List<AlarmTag> alarmInTags=new CopyOnWriteArrayList<>();
- @Resource
- @Qualifier(value = "taskExecutor")
- private Executor executor;
- @Value("${runWindpowerstation}")
- private String runWindpowerstation;
- private Map<String, Integer> historymap;
- /**
- * 初始化
- */
- public void init() {
- //#WT("wt_alarms", "设备报警超级表"),
- //#BT("bt_alarms", "升压站报警超级表"),
- //#IN("in_alarms", "逆变器报警超级表"),
- switch (alarmType){
- case "wt_alarms":
- alarmTags =alarmService.findTagsByWt(runWindpowerstation);
- history(alarmTags);
- break;
- case "bt_alarms":
- List<AlarmTag> templs =alarmService.findTagsByBt();
- if(!templs.isEmpty())
- {
- for(AlarmTag tag:templs)
- {
- if(StringUtils.notEmp(tag.getTagId()) )
- {
- if(tag.getTagId().startsWith("GF"))
- {
- // tag.setVal(-10000.0);
- // tag.setOval(-10000.0);
- alarmInTags.add(tag);
- }else
- {
- alarmTags.add(tag);
- }
- }
- }
- }
- history(templs);
- break;
- case "in_alarms":
- alarmTags =alarmService.findTagsByIn();
- history(alarmTags);
- break;
- }
- }
- public void history(List<AlarmTag> tags) {
- StringBuilder sb = new StringBuilder();
- List<AlarmSimpleVo> alarmvols = new CopyOnWriteArrayList<>();
- int times = 0;
- for (AlarmTag alarm : tags) {
- sb.append("'").append(alarm.getId().toLowerCase()).append("',");
- times++;
- if (times == 1000) {
- String ids = sb.substring(0, sb.length() - 1);
- List<AlarmSimpleVo> templs = new CopyOnWriteArrayList<>();
- if (alarm.getAlarmType().equals(AlarmTypeValue.BT.getCode())) {
- templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.BT.getCode(), ids);
- } else if (alarm.getAlarmType().equals(AlarmTypeValue.WT.getCode())) {
- templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.WT.getCode(), ids);
- } else if (alarm.getAlarmType().equals(AlarmTypeValue.IN.getCode())) {
- templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.WT.getCode(), ids);
- }
- alarmvols.addAll(templs);
- sb.setLength(0);
- times=0;
- }
- }
- if (sb.length() > 0) {
- String ids = sb.substring(0, sb.length() - 1);
- List<AlarmSimpleVo> templs = new CopyOnWriteArrayList<>();
- if (alarmTags.get(0).getAlarmType().equals(AlarmTypeValue.BT.getCode())) {
- templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.BT.getCode(), ids);
- } else if (alarmTags.get(0).getAlarmType().equals(AlarmTypeValue.WT.getCode())) {
- templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.WT.getCode(), ids);
- } else if (alarmTags.get(0).getAlarmType().equals(AlarmTypeValue.IN.getCode())) {
- templs = alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.WT.getCode(), ids);
- }
- alarmvols.addAll(templs);
- }
- historymap= new ConcurrentHashMap<>();
- if (!alarmvols.isEmpty()) {
- for (AlarmSimpleVo vo : alarmvols) {
- if(StringUtils.empty(vo.getEndts()))
- {
- historymap.put(vo.getTbName().toLowerCase(), 0);
- }else
- {
- historymap.put(vo.getTbName().toLowerCase(), 1);
- }
- }
- }
- }
- /**
- * 分配任务
- */
- public synchronized void taskJobs(boolean start) throws InterruptedException {
- while (start) {
- if (alarmType.equals("bt_alarms")) {
- CountDownLatch countDownLatch = new CountDownLatch(2);
- // new Thread(new AlarmThread(executor, edosUtil, alarmService, alarmTags, interval, String.valueOf(1), readRows, alarmType, countDownLatch, alarmTsService, historymap)).start();
- // new Thread(new AlarmThread(executor, edosUtil, alarmService, alarmInTags, interval, String.valueOf(2), readRows, alarmType, countDownLatch, alarmTsService, historymap)).start();
- executor.execute(new AlarmThread(executor, edosUtil, alarmService, alarmTags, interval, String.valueOf(1), readRows, alarmType, countDownLatch, alarmTsService, historymap));
- executor.execute(new AlarmThread(executor, edosUtil, alarmService, alarmInTags, interval, String.valueOf(2), readRows, alarmType, countDownLatch, alarmTsService, historymap));
- countDownLatch.await(30, TimeUnit.SECONDS);
- // countDownLatch.await();
- } else {
- int len = 1;
- List<AlarmTag> alarmls = new ArrayList<>();
- int listNumber = alarmTags.size() / taskCount;
- int number = 0;
- if (alarmTags.size() % taskCount != 0) {
- listNumber = listNumber + 1;
- }
- CountDownLatch countDownLatch = new CountDownLatch(listNumber);
- StringBuilder str = new StringBuilder();
- str.append("总数:").append(alarmTags.size()).append(",线程数:").append(listNumber).append(",分块大小:").append(taskCount);
- log.info(String.valueOf(str));
- for (int i = 0; i < alarmTags.size(); i++) {
- alarmls.add(alarmTags.get(i));
- if (i != 0 && (i) % taskCount == 0) {
- // new Thread(new AlarmThread(executor, edosUtil, alarmService, alarmls, interval, String.valueOf(len), readRows, alarmType, countDownLatch, alarmTsService, historymap)).start();
- executor.execute(new AlarmThread(executor, edosUtil, alarmService, alarmls, interval, String.valueOf(len), readRows, alarmType, countDownLatch, alarmTsService, historymap));
- alarmls = new ArrayList<>();
- len++;
- }
- }
- if (!alarmls.isEmpty()) {
- executor.execute(new AlarmThread(executor, edosUtil, alarmService, alarmls, interval, String.valueOf(len), readRows, alarmType, countDownLatch, alarmTsService, historymap));
- // new Thread(new AlarmThread(executor, edosUtil, alarmService, alarmls, interval, String.valueOf(len), readRows, alarmType, countDownLatch, alarmTsService, historymap)).start();
- }
- countDownLatch.await(30, TimeUnit.SECONDS);
- // countDownLatch.await(30, TimeUnit.SECONDS);
- }
- log.info("报警排查完成!");
- }
- }
- }
|