AlarmWtService.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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 org.springframework.beans.factory.annotation.Value;
  10. import org.springframework.stereotype.Service;
  11. import org.springframework.web.context.request.RequestContextHolder;
  12. import org.springframework.web.context.request.ServletRequestAttributes;
  13. import javax.annotation.Resource;
  14. import javax.servlet.http.HttpServletRequest;
  15. import javax.websocket.EncodeException;
  16. import java.io.IOException;
  17. import java.sql.SQLException;
  18. import java.util.*;
  19. import java.util.concurrent.ConcurrentHashMap;
  20. @Service
  21. public class AlarmWtService {
  22. @Resource
  23. private IAlarmTsService alarmTsService;
  24. @Resource
  25. private IProEconAlarmInfoService proEconAlarmInfoService;
  26. @Value("${initialcode}")
  27. private String initialcode;
  28. @Resource
  29. private TokenService tokenService;
  30. public List<AlarmVo> initalAlarmVo() {
  31. List<AlarmVo> alarmVoList=new ArrayList<>();
  32. Map<String, List<ProEconAlarmConfiguration>> wtAlarmMap = CacheContext.wtAlarmMap;
  33. Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
  34. // HttpServletRequest request = ((ServletRequestAttributes) (RequestContextHolder.currentRequestAttributes())).getRequest();
  35. // List<ProBasicEquipment> wtls = CacheContext.wtls.getWtls(request);
  36. for (ProBasicEquipment wt : CacheContext.wtls) {
  37. // if(wt.getId().contains("SXJ_KGDL_DJY_F_WT_0001_EQ"))
  38. // {
  39. // System.out.println("");
  40. // }
  41. // if(wt.getId().contains("SXJ_KGDL_DJY_F_WT_0008_EQ"))
  42. // {
  43. // System.out.println("");
  44. // }
  45. if (wtpAimap.containsKey(wt.getId())) {
  46. Map<String, ProBasicEquipmentPoint> pointMap = wtpAimap.get(wt.getId());
  47. StringBuilder sb = new StringBuilder();
  48. sb.append(wt.getWindpowerstationId() + wt.getModelId());
  49. if (StringUtils.notEmp(pointMap) && wtAlarmMap.containsKey(String.valueOf(sb))) {
  50. List<ProEconAlarmConfiguration> alarmls = wtAlarmMap.get(String.valueOf(sb));
  51. if (!alarmls.isEmpty()) {
  52. for (ProEconAlarmConfiguration alarm : alarmls) {
  53. if (pointMap.containsKey(alarm.getUniformCode())) {
  54. ProBasicEquipmentPoint equipmentPoint = pointMap.get(alarm.getUniformCode());
  55. if(StringUtils.notEmp(initialcode) &&
  56. StringUtils.notEmp(equipmentPoint.getNemCode()) &&
  57. !equipmentPoint.getNemCode().equals(initialcode) &&
  58. alarm.getAlarmType().equals(AlarmTypeValue.WT.getCode())
  59. )
  60. {
  61. AlarmVo vo=new AlarmVo();
  62. StringBuilder tbName = new StringBuilder();
  63. tbName.append(wt.getId()).append("_").append(alarm.getId());
  64. // if(tbName.equals("SXJ_KGDL_DJY_F_WT_0008_EQ_UP_0859"))
  65. // {
  66. // System.out.println("");
  67. // }
  68. vo.setTbName(String.valueOf(tbName));
  69. vo.setAlarmId(alarm.getId());
  70. vo.setTagid(equipmentPoint.getNemCode());
  71. vo.setAlarmType(alarm.getAlarmType());
  72. vo.setCharacteristic(alarm.getCharacteristic());
  73. vo.setComponents(alarm.getComponents());
  74. vo.setDescription(alarm.getDescription());
  75. vo.setDeviceId(wt.getId());
  76. vo.setDevicename(wt.getName());
  77. vo.setDeviceType(alarm.getDeviceType());
  78. vo.setEnabled(alarm.getEnable());
  79. vo.setLineid(wt.getLineId());
  80. if(CacheContext.lnmap.containsKey(wt.getLineId()))
  81. {
  82. ProBasicLine ln=CacheContext.lnmap.get(wt.getLineId());
  83. vo.setLinename(ln.getName());
  84. }
  85. vo.setModelId(wt.getModelId());
  86. vo.setProjectid(wt.getProjectId());
  87. if(CacheContext.pjmap.containsKey(wt.getProjectId()))
  88. {
  89. ProBasicProject pj=CacheContext.pjmap.get(wt.getProjectId());
  90. vo.setProjectname(pj.getName());
  91. }
  92. vo.setRank(alarm.getRank());
  93. vo.setResettable(alarm.getResetTable());
  94. vo.setStationid(wt.getWindpowerstationId());
  95. if(CacheContext.wpmap.containsKey(wt.getWindpowerstationId()))
  96. {
  97. ProBasicPowerstation wp=CacheContext.wpmap.get(wt.getWindpowerstationId());
  98. vo.setStationname(wp.getName());
  99. }
  100. vo.setSubcomponents(alarm.getSubcomponents());
  101. vo.setSuffix(alarm.getSuffix());
  102. vo.setTriggertype(alarm.getTriggerType());
  103. vo.setUniformcode(alarm.getUniformCode());
  104. vo.setSuperTableName(AlarmSuperTalbeType.WT.getCode());
  105. vo.setVal(0);
  106. vo.setName(alarm.getName());
  107. vo.setNemCode(alarm.getNemCode());
  108. vo.setFaultCause(alarm.getFaultCause());
  109. vo.setResolvent(alarm.getResolvent());
  110. alarmVoList.add(vo);
  111. }
  112. }
  113. //
  114. }
  115. }
  116. }
  117. }
  118. }
  119. return alarmVoList;
  120. }
  121. public List<AlarmVo> initalAlarmVo(ProEconAlarmConfiguration alarm) {
  122. List<AlarmVo> alarmVoList=new ArrayList<>();
  123. Map<String, List<ProEconAlarmConfiguration>> wtAlarmMap = CacheContext.wtAlarmMap;
  124. Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
  125. for (ProBasicEquipment wt : CacheContext.wtls) {
  126. if (wtpAimap.containsKey(wt.getId())) {
  127. Map<String, ProBasicEquipmentPoint> pointMap = wtpAimap.get(wt.getId());
  128. if (StringUtils.notEmp(pointMap) ) {
  129. if (pointMap.containsKey(alarm.getUniformCode())) {
  130. ProBasicEquipmentPoint equipmentPoint = pointMap.get(alarm.getUniformCode());
  131. if(StringUtils.notEmp(initialcode) &&
  132. StringUtils.notEmp(equipmentPoint.getNemCode()) &&
  133. !equipmentPoint.getNemCode().equals(initialcode) &&
  134. alarm.getAlarmType().equals(AlarmTypeValue.WT.getCode())
  135. )
  136. {
  137. AlarmVo vo=new AlarmVo();
  138. StringBuilder tbName = new StringBuilder();
  139. tbName.append(wt.getId()).append("_").append(alarm.getId());
  140. //
  141. vo.setTbName(String.valueOf(tbName));
  142. vo.setAlarmId(alarm.getId());
  143. vo.setTagid(equipmentPoint.getNemCode());
  144. vo.setAlarmType(alarm.getAlarmType());
  145. vo.setCharacteristic(alarm.getCharacteristic());
  146. vo.setComponents(alarm.getComponents());
  147. vo.setDescription(alarm.getDescription());
  148. vo.setDeviceId(wt.getId());
  149. vo.setDevicename(wt.getName());
  150. vo.setDeviceType(alarm.getDeviceType());
  151. vo.setEnabled(alarm.getEnable());
  152. vo.setLineid(wt.getLineId());
  153. if(CacheContext.lnmap.containsKey(wt.getLineId()))
  154. {
  155. ProBasicLine ln=CacheContext.lnmap.get(wt.getLineId());
  156. vo.setLinename(ln.getName());
  157. }
  158. vo.setModelId(wt.getModelId());
  159. vo.setProjectid(wt.getProjectId());
  160. if(CacheContext.pjmap.containsKey(wt.getProjectId()))
  161. {
  162. ProBasicProject pj=CacheContext.pjmap.get(wt.getProjectId());
  163. vo.setProjectname(pj.getName());
  164. }
  165. vo.setRank(alarm.getRank());
  166. vo.setResettable(alarm.getResetTable());
  167. vo.setStationid(wt.getWindpowerstationId());
  168. if(CacheContext.wpmap.containsKey(wt.getWindpowerstationId()))
  169. {
  170. ProBasicPowerstation wp=CacheContext.wpmap.get(wt.getWindpowerstationId());
  171. vo.setStationname(wp.getName());
  172. }
  173. vo.setSubcomponents(alarm.getSubcomponents());
  174. vo.setSuffix(alarm.getSuffix());
  175. vo.setTriggertype(alarm.getTriggerType());
  176. vo.setUniformcode(alarm.getUniformCode());
  177. vo.setSuperTableName(AlarmSuperTalbeType.WT.getCode());
  178. vo.setVal(0);
  179. vo.setName(alarm.getName());
  180. vo.setNemCode(alarm.getNemCode());
  181. vo.setFaultCause(alarm.getFaultCause());
  182. vo.setResolvent(alarm.getResolvent());
  183. alarmVoList.add(vo);
  184. }
  185. }
  186. }
  187. }
  188. }
  189. return alarmVoList;
  190. }
  191. }