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 alarmTags=new CopyOnWriteArrayList<>(); private List alarmInTags=new CopyOnWriteArrayList<>(); @Resource @Qualifier(value = "taskExecutor") private Executor executor; @Value("${runWindpowerstation}") private String runWindpowerstation; private Map 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 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 tags) { StringBuilder sb = new StringBuilder(); List 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 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 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 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("报警排查完成!"); } } }