AlarmInService.java 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  1. package com.gyee.alarm.service;
  2. import com.gyee.alarm.init.CacheContext;
  3. import com.gyee.alarm.model.auto.*;
  4. import com.gyee.alarm.model.vo.*;
  5. import com.gyee.alarm.service.auto.IAlarmTsService;
  6. import com.gyee.alarm.service.auto.IProEconAlarmInfoService;
  7. import com.gyee.alarm.util.DateUtils;
  8. import com.gyee.alarm.util.StringUtils;
  9. import com.gyee.alarm.util.realtimesource.IEdosUtil;
  10. import com.gyee.alarm.websocket.PushParams;
  11. import com.gyee.alarm.websocket.WebSocket;
  12. import com.gyee.common.model.PointData;
  13. import org.slf4j.Logger;
  14. import org.slf4j.LoggerFactory;
  15. import org.springframework.beans.factory.annotation.Value;
  16. import org.springframework.stereotype.Service;
  17. import javax.annotation.Resource;
  18. import javax.websocket.EncodeException;
  19. import java.io.IOException;
  20. import java.sql.SQLException;
  21. import java.sql.Timestamp;
  22. import java.util.*;
  23. import java.util.concurrent.ConcurrentHashMap;
  24. @Service
  25. public class AlarmInService {
  26. @Resource
  27. private IAlarmTsService alarmTsService;
  28. @Resource
  29. private IProEconAlarmInfoService proEconAlarmInfoService;
  30. @Value("${initialcode}")
  31. private String initialcode;
  32. @Value("${pushinterval}")
  33. private Double pushinterval;
  34. @Resource
  35. private WebSocket webSocket;
  36. @Resource
  37. private PushDataSevice pushDataSevice;
  38. @Value("${read-rows}")
  39. private Integer readRows;
  40. @Resource
  41. private IEdosUtil edosUtil;
  42. private static Logger logger = LoggerFactory.getLogger(AlarmWtService.class);
  43. public void dropSuperTable()
  44. {
  45. alarmTsService.dropSuperTable(AlarmSuperTalbeType.WT.getCode());
  46. }
  47. public void createSuperTable()
  48. {
  49. alarmTsService.createSuperTable(AlarmSuperTalbeType.WT.getCode());
  50. }
  51. public void initalInAlarm() throws Exception {
  52. List<AlarmVo> alarmVoList=CacheContext.alarmInList;
  53. List<AlarmTag> alarmTags=new ArrayList<>();
  54. if(!alarmVoList.isEmpty())
  55. {
  56. for(AlarmVo vo: alarmVoList)
  57. {
  58. alarmTsService.createTable(vo.getTbName(), vo.getAlarmid(), vo.getAlarmtype(),
  59. vo.getCharacteristic(), vo.getComponents(),
  60. vo.getDescription(),
  61. vo.getDeviceid(), vo.getDevicename(),
  62. vo.getDevicetype(), vo.getEnabled(),
  63. vo.getLineid(), vo.getLinename(),
  64. vo.getModelId(), vo.getProjectid(),
  65. vo.getProjectname(), vo.getRank(),
  66. vo.getResettable(), vo.getStationid(),
  67. vo.getStationname(), vo.getSubcomponents(),
  68. vo.getSuffix(), vo.getTagid(),
  69. vo.getTriggertype(), vo.getUniformcode(),vo.getSuperTableName(),
  70. vo.getName(),
  71. vo.getNemCode(),vo.getFaultCause(),vo.getResolvent(),vo.getFaultType(),vo.getAname());
  72. alarmTsService.updateTable(vo.getTbName(), vo.getAlarmid(), vo.getAlarmtype(),
  73. vo.getCharacteristic(), vo.getComponents(),
  74. vo.getDescription(),
  75. vo.getDeviceid(), vo.getDevicename(),
  76. vo.getDevicetype(), vo.getEnabled(),
  77. vo.getLineid(), vo.getLinename(),
  78. vo.getModelId(), vo.getProjectid(),
  79. vo.getProjectname(), vo.getRank(),
  80. vo.getResettable(), vo.getStationid(),
  81. vo.getStationname(), vo.getSubcomponents(),
  82. vo.getSuffix(), vo.getTagid(),
  83. vo.getTriggertype(), vo.getUniformcode(), vo.getSuperTableName(),
  84. vo.getName(),
  85. vo.getNemCode(),vo.getFaultCause(),vo.getResolvent(),vo.getFaultType(),vo.getAname());
  86. }
  87. }
  88. // alarmTsService.insertList(alarmTags);
  89. }
  90. public List<AlarmVo> initalAlarmVo() throws Exception {
  91. List<AlarmVo> alarmVoList=new ArrayList<>();
  92. Map<String, List<ProEconAlarmConfiguration>> wtAlarmMap = CacheContext.inAlarmMap;
  93. Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
  94. for (ProBasicEquipment wt : CacheContext.wtls) {
  95. if(wt.getId().contains("_F_"))
  96. {
  97. continue;
  98. }
  99. if (wtpAimap.containsKey(wt.getId())) {
  100. Map<String, ProBasicEquipmentPoint> pointMap = wtpAimap.get(wt.getId());
  101. StringBuilder sb = new StringBuilder();
  102. sb.append(wt.getWindpowerstationId() + wt.getModelId());
  103. if (StringUtils.notEmp(pointMap) && wtAlarmMap.containsKey(String.valueOf(sb))) {
  104. List<ProEconAlarmConfiguration> alarmls = wtAlarmMap.get(String.valueOf(sb));
  105. if (!alarmls.isEmpty()) {
  106. // System.out.println(wt.getId());
  107. for (ProEconAlarmConfiguration alarm : alarmls) {
  108. if (pointMap.containsKey(alarm.getUniformCode())) {
  109. ProBasicEquipmentPoint equipmentPoint = pointMap.get(alarm.getUniformCode());
  110. if(StringUtils.notEmp(initialcode) &&
  111. StringUtils.notEmp(equipmentPoint.getNemCode()) &&
  112. !equipmentPoint.getNemCode().equals(initialcode) &&
  113. alarm.getAlarmType().equals(AlarmTypeValue.IN.getCode())
  114. )
  115. {
  116. // System.out.println("ok");
  117. AlarmVo vo=new AlarmVo();
  118. StringBuilder tbName = new StringBuilder();
  119. tbName.append(wt.getId()).append("_").append(alarm.getId());
  120. vo.setTbName(String.valueOf(tbName));
  121. vo.setAlarmid(alarm.getId());
  122. vo.setTagid(equipmentPoint.getNemCode());
  123. vo.setAlarmtype(alarm.getAlarmType());
  124. vo.setCharacteristic(alarm.getCharacteristic());
  125. vo.setComponents(alarm.getComponents());
  126. vo.setDescription(alarm.getDescription());
  127. vo.setDeviceid(wt.getId());
  128. vo.setDevicename(wt.getName());
  129. vo.setDevicetype(alarm.getDeviceType());
  130. vo.setEnabled(alarm.getEnable());
  131. vo.setLineid(wt.getLineId());
  132. if(CacheContext.lnmap.containsKey(wt.getLineId()))
  133. {
  134. ProBasicLine ln=CacheContext.lnmap.get(wt.getLineId());
  135. vo.setLinename(ln.getName());
  136. }
  137. vo.setModelId(wt.getModelId());
  138. vo.setProjectid(wt.getProjectId());
  139. if(CacheContext.pjmap.containsKey(wt.getProjectId()))
  140. {
  141. ProBasicProject pj=CacheContext.pjmap.get(wt.getProjectId());
  142. vo.setProjectname(pj.getName());
  143. }
  144. vo.setRank(alarm.getRank());
  145. vo.setResettable(alarm.getResetTable());
  146. vo.setStationid(wt.getWindpowerstationId());
  147. if(CacheContext.wpmap.containsKey(wt.getWindpowerstationId()))
  148. {
  149. ProBasicPowerstation wp=CacheContext.wpmap.get(wt.getWindpowerstationId());
  150. vo.setStationname(wp.getName());
  151. }
  152. vo.setSubcomponents(alarm.getSubcomponents());
  153. vo.setSuffix(alarm.getSuffix());
  154. vo.setTriggertype(alarm.getTriggerType());
  155. vo.setUniformcode(alarm.getUniformCode());
  156. vo.setSuperTableName(AlarmSuperTalbeType.WT.getCode());
  157. vo.setFaultType(alarm.getDeviceId());
  158. vo.setAname(alarm.getSuffix());
  159. // PointData temp=edosUtil.getRealData(equipmentPoint.getNemCode());
  160. // vo.setVal((int)temp.getPointValueInDouble());
  161. // vo.setOval((int)temp.getPointValueInDouble());
  162. vo.setVal(null);
  163. vo.setOval(null);
  164. vo.setName(alarm.getName());
  165. vo.setNemCode(alarm.getNemCode());
  166. vo.setFaultCause(alarm.getFaultCause());
  167. vo.setResolvent(alarm.getResolvent());
  168. alarmVoList.add(vo);
  169. }
  170. }
  171. }
  172. }
  173. }
  174. }
  175. }
  176. return alarmVoList;
  177. }
  178. public List<AlarmTag> findTags()
  179. {
  180. List<AlarmTag> ls=new ArrayList<>();
  181. if(!CacheContext.alarmInList.isEmpty())
  182. {
  183. for(AlarmVo vo:CacheContext.alarmInList)
  184. {
  185. AlarmTag po=new AlarmTag();
  186. po.setId(vo.getTbName());
  187. po.setOval(null);
  188. po.setTriggerType(vo.getTriggertype());
  189. po.setTagId(vo.getTagid());
  190. po.setVal(null);
  191. po.setRank(vo.getRank());
  192. po.setAlarmType(vo.getAlarmtype());
  193. po.setUniformCode(vo.getUniformcode());
  194. po.setWpId(vo.getStationid());
  195. ls.add(po);
  196. }
  197. }
  198. return ls;
  199. }
  200. public synchronized void saveAlarms(List<AlarmTag> ls) throws EncodeException, IOException, InterruptedException {
  201. if(StringUtils.notEmp(ls) && !ls.isEmpty()) {
  202. for (AlarmTag alarm : ls) {
  203. alarm.setConfirmed(false);
  204. }
  205. alarmTsService.insertList(ls);
  206. Map<String,ProEconAlarmInfo> tempmap=new HashMap<>();
  207. if (StringUtils.notEmp(ls) && !ls.isEmpty()) {
  208. List<ProEconAlarmInfo> valuels = new ArrayList<>();
  209. for (AlarmTag alarm : ls) {
  210. if (CacheContext.alarmInMap.containsKey(alarm.getId())) {
  211. AlarmVo vo = CacheContext.alarmInMap.get(alarm.getId());
  212. ProEconAlarmInfo po = new ProEconAlarmInfo();
  213. po.setTbname(vo.getTbName());
  214. po.setLastUpdateTime(new Date(alarm.getTs()));
  215. po.setUpdateTime(new Date(alarm.getTs()));
  216. po.setTagId(alarm.getTagId());
  217. po.setTriggerType(alarm.getTriggerType());
  218. po.setAlarmId(vo.getAlarmid());
  219. po.setDeviceId(vo.getDeviceid());
  220. po.setSubcomponents(vo.getSuffix());
  221. po.setRank(vo.getRank());
  222. po.setConfirmed(false);
  223. po.setUniformCode(vo.getUniformcode());
  224. po.setAlarmType(vo.getAlarmtype());
  225. po.setDeviceType(vo.getDevicetype());
  226. po.setComponents(vo.getComponents());
  227. po.setSubcomponents(vo.getSubcomponents());
  228. po.setDescription(vo.getDescription());
  229. po.setModelId(vo.getModelId());
  230. po.setResetTable(vo.getResettable());
  231. po.setEnable(vo.getEnabled());
  232. po.setCharacteristic(vo.getCharacteristic());
  233. po.setStationId(vo.getStationid());
  234. po.setProjectId(vo.getProjectid());
  235. po.setLineId(vo.getLineid());
  236. po.setStationName(vo.getStationname());
  237. po.setProjectiName(vo.getProjectname());
  238. po.setLineidName(vo.getLinename());
  239. po.setDeviceName(vo.getDevicename());
  240. po.setOval(alarm.getOval().intValue());
  241. po.setIsOpen(1);
  242. po.setVal(alarm.getVal().intValue());
  243. alarm.setRank(vo.getRank());
  244. alarm.setDescription(vo.getDescription());
  245. alarm.setAlarmType(vo.getAlarmtype());
  246. alarm.setDeviceType(vo.getDevicetype());
  247. alarm.setCharacteristic(vo.getCharacteristic());
  248. alarm.setFaultCause(vo.getFaultCause());
  249. alarm.setResolvent(vo.getResolvent());
  250. alarm.setIsClose(false);
  251. alarm.setDeviceId(vo.getDeviceid());
  252. alarm.setAlarmId(vo.getAlarmid());
  253. if(StringUtils.notEmp(vo.getDeviceid()) && CacheContext.wtmap.containsKey(vo.getDeviceid()))
  254. {
  255. alarm.setCode(CacheContext.wtmap.get(vo.getDeviceid()).getNemCode());
  256. }
  257. if(CacheContext.wpmap.containsKey(vo.getStationid()))
  258. {
  259. alarm.setWpName(CacheContext.wpmap.get(vo.getStationid()).getName());
  260. }
  261. alarm.setWpId(vo.getStationid());
  262. try {
  263. pushDataSevice.pushBtData(alarm);
  264. }catch (Exception e)
  265. {
  266. System.out.println(e.getMessage());
  267. }
  268. tempmap.put(po.getTbname(),po);
  269. }
  270. }
  271. for (Map.Entry<String, ProEconAlarmInfo> entry : tempmap.entrySet()) {
  272. valuels.add(entry.getValue());
  273. }
  274. List<String> idls = new ArrayList<>();
  275. for (ProEconAlarmInfo vo : valuels) {
  276. idls.add(vo.getTbname());
  277. }
  278. // Map<String,ProEconAlarmInfo> infoMap=new HashMap<>();
  279. if (!idls.isEmpty()) {
  280. // List<ProEconAlarmInfo> templs= proEconAlarmInfoService.listByIds(idls);
  281. // if(!templs.isEmpty())
  282. // {
  283. // for(ProEconAlarmInfo info:templs)
  284. // {
  285. // infoMap.put(info.getTbname().toLowerCase(),info);
  286. // }
  287. // }
  288. proEconAlarmInfoService.removeByIds(idls);
  289. }
  290. List<ProEconAlarmInfo> templs = new ArrayList<>();
  291. for (ProEconAlarmInfo vo : valuels) {
  292. // if(infoMap.containsKey(vo.getTbname().toLowerCase()))
  293. // {
  294. // ProEconAlarmInfo in=infoMap.get(vo.getTbname().toLowerCase());
  295. // vo.setUpdateTime(in.getLastUpdateTime());
  296. // }
  297. templs.add(vo);
  298. if (templs.size() == 900) {
  299. proEconAlarmInfoService.saveBatch(templs);
  300. templs = new ArrayList<>();
  301. }
  302. }
  303. if (!templs.isEmpty()) {
  304. proEconAlarmInfoService.saveBatch(templs);
  305. }
  306. }
  307. if (StringUtils.notEmp(ls) && !ls.isEmpty()) {
  308. for (AlarmTag alarm : ls) {
  309. if (CacheContext.alarmInMap.containsKey(alarm.getId())) {
  310. AlarmVo vo = CacheContext.alarmInMap.get(alarm.getId());
  311. alarm.setRank(vo.getRank());
  312. alarm.setDescription(vo.getDescription());
  313. alarm.setAlarmType(vo.getAlarmtype());
  314. alarm.setDeviceType(vo.getDevicetype());
  315. alarm.setCharacteristic(vo.getCharacteristic());
  316. alarm.setFaultCause(vo.getFaultCause());
  317. alarm.setResolvent(vo.getResolvent());
  318. alarm.setIsClose(false);
  319. alarm.setDeviceId(vo.getDeviceid());
  320. alarm.setAlarmId(vo.getAlarmid());
  321. if(StringUtils.notEmp(vo.getDeviceid()) && CacheContext.wtmap.containsKey(vo.getDeviceid()))
  322. {
  323. alarm.setCode(CacheContext.wtmap.get(vo.getDeviceid()).getNemCode());
  324. }
  325. if(CacheContext.wpmap.containsKey(vo.getStationid()))
  326. {
  327. alarm.setWpName(CacheContext.wpmap.get(vo.getStationid()).getName());
  328. }
  329. alarm.setWpId(vo.getStationid());
  330. pushDataSevice.pushWtData(alarm);
  331. }
  332. }
  333. // Thread.sleep(300);
  334. Thread.sleep(pushinterval.intValue());
  335. }
  336. }
  337. }
  338. public synchronized void updateAlarms(List<AlarmTag> ls) throws EncodeException, IOException, InterruptedException {
  339. if (StringUtils.notEmp(ls) && !ls.isEmpty()) {
  340. StringBuilder sb=new StringBuilder();
  341. Map<String, AlarmSimpleVo> map=new HashMap<>();
  342. for (AlarmTag alarm : ls) {
  343. if (CacheContext.alarmInMap.containsKey(alarm.getId())) {
  344. AlarmVo vo = CacheContext.alarmInMap.get(alarm.getId());
  345. if(vo.getAlarmtype().equals(AlarmTypeValue.IN.getCode()) )
  346. {
  347. sb.append("'").append(alarm.getId().toLowerCase()).append("',");
  348. }
  349. }
  350. }
  351. String ids=null;
  352. if(sb.length()>0)
  353. {
  354. ids=sb.substring(0,sb.length()-1);
  355. }
  356. List<AlarmSimpleVo> alarmls=new ArrayList<>();
  357. if( null !=ids)
  358. {
  359. alarmls=alarmTsService.selectLastRowByTbname(AlarmSuperTalbeType.WT.getCode(),ids);
  360. }
  361. if(!alarmls.isEmpty())
  362. {
  363. for(AlarmSimpleVo vo:alarmls)
  364. {
  365. map.put(vo.getTbName().toLowerCase(),vo);
  366. }
  367. }
  368. List<AlarmTag> alarmTagls=new ArrayList<>();
  369. for (AlarmTag alarm : ls) {
  370. if(map.containsKey(alarm.getId().toLowerCase()))
  371. {
  372. AlarmSimpleVo tag=map.get(alarm.getId().toLowerCase());
  373. if(null !=tag.getTs())
  374. {
  375. alarm.setTs(tag.getTs());
  376. Date begin = new Date(alarm.getEndts());
  377. Date end = new Date(alarm.getTs());
  378. double value= DateUtils.secondsDiff(begin,end);
  379. alarm.setTimeLong(value);
  380. alarm.setConfirmed(tag.getConfirmed());
  381. alarm.setSuperTalbe(AlarmSuperTalbeType.WT.getCode());
  382. alarmTagls.add(alarm);
  383. }
  384. }
  385. }
  386. if (StringUtils.notEmp(alarmTagls) && !alarmTagls.isEmpty()) {
  387. alarmTsService.insertList(alarmTagls);
  388. }
  389. Map<String,ProEconAlarmInfo> tempmap=new HashMap<>();
  390. if (StringUtils.notEmp(alarmTagls) && !alarmTagls.isEmpty()) {
  391. List<ProEconAlarmInfo> valuels = new ArrayList<>();
  392. for (AlarmTag alarm : alarmTagls) {
  393. if (CacheContext.alarmInMap.containsKey(alarm.getId())) {
  394. AlarmVo vo = CacheContext.alarmInMap.get(alarm.getId());
  395. ProEconAlarmInfo po = new ProEconAlarmInfo();
  396. po.setTbname(vo.getTbName());
  397. po.setLastUpdateTime(new Date(alarm.getEndts()));
  398. po.setUpdateTime(new Date(alarm.getTs()));
  399. po.setTagId(alarm.getTagId());
  400. po.setTriggerType(alarm.getTriggerType());
  401. po.setAlarmId(vo.getAlarmid());
  402. po.setDeviceId(vo.getDeviceid());
  403. po.setSubcomponents(vo.getSuffix());
  404. po.setRank(vo.getRank());
  405. po.setConfirmed(alarm.getConfirmed());
  406. po.setUniformCode(vo.getUniformcode());
  407. po.setAlarmType(vo.getAlarmtype());
  408. po.setDeviceType(vo.getDevicetype());
  409. po.setComponents(vo.getComponents());
  410. po.setSubcomponents(vo.getSubcomponents());
  411. po.setDescription(vo.getDescription());
  412. po.setModelId(vo.getModelId());
  413. po.setResetTable(vo.getResettable());
  414. po.setEnable(vo.getEnabled());
  415. po.setCharacteristic(vo.getCharacteristic());
  416. po.setStationId(vo.getStationid());
  417. po.setProjectId(vo.getProjectid());
  418. po.setLineId(vo.getLineid());
  419. po.setStationName(vo.getStationname());
  420. po.setProjectiName(vo.getProjectname());
  421. po.setLineidName(vo.getLinename());
  422. po.setDeviceName(vo.getDevicename());
  423. po.setOval(alarm.getOval().intValue());
  424. po.setCloseTime(new Date(alarm.getEndts()));
  425. po.setIsOpen(0);
  426. po.setVal(alarm.getVal().intValue());
  427. alarm.setRank(vo.getRank());
  428. alarm.setDescription(vo.getDescription());
  429. alarm.setAlarmType(vo.getAlarmtype());
  430. alarm.setDeviceType(vo.getDevicetype());
  431. alarm.setCharacteristic(vo.getCharacteristic());
  432. alarm.setFaultCause(vo.getFaultCause());
  433. alarm.setResolvent(vo.getResolvent());
  434. alarm.setDeviceId(vo.getDeviceid());
  435. alarm.setAlarmId(vo.getAlarmid());
  436. alarm.setIsClose(true);
  437. if(CacheContext.wtmap.containsKey(vo.getDeviceid()))
  438. {
  439. alarm.setCode(CacheContext.wtmap.get(vo.getDeviceid()).getNemCode());
  440. }
  441. if(CacheContext.wpmap.containsKey(vo.getStationid()))
  442. {
  443. alarm.setWpName(CacheContext.wpmap.get(vo.getStationid()).getName());
  444. }
  445. pushDataSevice.pushBtData(alarm);
  446. tempmap.put(po.getTbname(),po);
  447. }
  448. }
  449. for (Map.Entry<String, ProEconAlarmInfo> entry : tempmap.entrySet()) {
  450. valuels.add(entry.getValue());
  451. }
  452. List<String> idls = new ArrayList<>();
  453. for (ProEconAlarmInfo vo : valuels) {
  454. idls.add(vo.getTbname());
  455. }
  456. // Map<String,ProEconAlarmInfo> infoMap=new HashMap<>();
  457. if (!idls.isEmpty()) {
  458. // List<ProEconAlarmInfo> templs= proEconAlarmInfoService.listByIds(idls);
  459. // if(!templs.isEmpty())
  460. // {
  461. // for(ProEconAlarmInfo info:templs)
  462. // {
  463. // infoMap.put(info.getTbname().toLowerCase(),info);
  464. // }
  465. // }
  466. proEconAlarmInfoService.removeByIds(idls);
  467. }
  468. List<ProEconAlarmInfo> templs = new ArrayList<>();
  469. for (ProEconAlarmInfo vo : valuels) {
  470. // if(infoMap.containsKey(vo.getTbname().toLowerCase()))
  471. // {
  472. // ProEconAlarmInfo in=infoMap.get(vo.getTbname().toLowerCase());
  473. // vo.setUpdateTime(in.getLastUpdateTime());
  474. // }
  475. templs.add(vo);
  476. if (templs.size() == 900) {
  477. proEconAlarmInfoService.saveBatch(templs);
  478. templs = new ArrayList<>();
  479. }
  480. }
  481. if (!templs.isEmpty()) {
  482. proEconAlarmInfoService.saveBatch(templs);
  483. }
  484. }
  485. if (StringUtils.notEmp(alarmTagls) && !alarmTagls.isEmpty()) {
  486. for (AlarmTag alarm : alarmTagls) {
  487. if (CacheContext.alarmInMap.containsKey(alarm.getId())) {
  488. AlarmVo vo = CacheContext.alarmInMap.get(alarm.getId());
  489. alarm.setRank(vo.getRank());
  490. alarm.setDescription(vo.getDescription());
  491. alarm.setAlarmType(vo.getAlarmtype());
  492. alarm.setDeviceType(vo.getDevicetype());
  493. alarm.setCharacteristic(vo.getCharacteristic());
  494. alarm.setFaultCause(vo.getFaultCause());
  495. alarm.setResolvent(vo.getResolvent());
  496. alarm.setDeviceId(vo.getDeviceid());
  497. alarm.setAlarmId(vo.getAlarmid());
  498. alarm.setIsClose(true);
  499. if(CacheContext.wtmap.containsKey(vo.getDeviceid()))
  500. {
  501. alarm.setCode(CacheContext.wtmap.get(vo.getDeviceid()).getNemCode());
  502. }
  503. if(CacheContext.wpmap.containsKey(vo.getStationid()))
  504. {
  505. alarm.setWpName(CacheContext.wpmap.get(vo.getStationid()).getName());
  506. }
  507. pushDataSevice.pushWtData(alarm);
  508. }
  509. // Thread.sleep(300);
  510. Thread.sleep(pushinterval.intValue());
  511. }
  512. }
  513. }
  514. }
  515. }