RelationReportHandler.java 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. package com.persagy.proxy.adm.handler;
  2. import java.util.ArrayList;
  3. import java.util.Arrays;
  4. import java.util.HashMap;
  5. import java.util.HashSet;
  6. import java.util.List;
  7. import java.util.Map;
  8. import java.util.Set;
  9. import org.springframework.beans.factory.annotation.Value;
  10. import org.springframework.stereotype.Component;
  11. import com.alibaba.fastjson.JSONObject;
  12. import com.baomidou.mybatisplus.core.metadata.OrderItem;
  13. import com.fasterxml.jackson.databind.node.ObjectNode;
  14. import com.google.common.collect.Lists;
  15. import com.google.common.collect.Sets;
  16. import com.persagy.dmp.define.entity.ObjectInfoDefine;
  17. import com.persagy.dmp.define.entity.ObjectTypeDefine;
  18. import com.persagy.dmp.digital.entity.ObjectDigital;
  19. import com.persagy.dmp.digital.entity.ObjectRelation;
  20. import com.persagy.proxy.adm.constant.AdmCommonConstant;
  21. import com.persagy.proxy.adm.constant.AdmObjectType;
  22. import com.persagy.proxy.adm.constant.GraphCodeEnum;
  23. import com.persagy.proxy.adm.constant.RelCodeEnum;
  24. import com.persagy.proxy.report.model.EquipmentBindPointExcel;
  25. import com.persagy.proxy.report.model.EquipmentCountExcel;
  26. import com.persagy.proxy.report.model.EquipmentExcel;
  27. import com.persagy.proxy.report.service.IRelationReportService;
  28. import com.persagy.proxy.adm.strategy.RelationObjectContext;
  29. import cn.hutool.core.collection.CollectionUtil;
  30. import cn.hutool.core.util.StrUtil;
  31. import lombok.RequiredArgsConstructor;
  32. /**
  33. *
  34. * @version 1.0.0
  35. * @company persagy
  36. * @author zhangqiankun
  37. * @date 2021年10月15日 下午3:09:10
  38. */
  39. @Component
  40. @RequiredArgsConstructor
  41. public class RelationReportHandler {
  42. @Value("${middleware.group.code}")
  43. private String defaultCode;
  44. private final RelationObjectContext relationObjectContext;
  45. private final IRelationReportService relationReportService;
  46. /**
  47. * 查询出不在空间内的设备数据
  48. *
  49. * @param groupCode
  50. * @param projectId
  51. */
  52. public List<EquipmentExcel> findEquipByNotSpace(String groupCode, String projectId) {
  53. groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
  54. String equipment = AdmObjectType.EQUIPMENT.getIndex();
  55. HashSet<String> equipments = Sets.newHashSet(equipment);
  56. // 1.获取所有的设备对象数据
  57. List<OrderItem> classCodeAsc = Arrays.asList(OrderItem.asc("classCode"));
  58. List<ObjectNode> equipList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null, equipments, classCodeAsc);
  59. if (CollectionUtil.isEmpty(equipList)) {
  60. return Lists.newArrayList();
  61. }
  62. // 2.获取所有的设备类定义的className
  63. List<ObjectTypeDefine> classList = this.relationReportService.queryClassList(groupCode, projectId, null, equipments, null);
  64. /** key-classCode, value-className */
  65. Map<String, String> classDefine = new HashMap<String, String>();
  66. for (ObjectTypeDefine objectTypeDefine : classList) {
  67. classDefine.put(objectTypeDefine.getCode(), objectTypeDefine.getName());
  68. }
  69. // 3.查询出所有的边类型为 Eq2Sp 的关系数据
  70. List<ObjectRelation> relationObjects = this.relationReportService.findRelationObjects(groupCode, projectId, null, RelCodeEnum.Eq2Sp.name(), null, null);
  71. Set<String> excludeIds = new HashSet<String>();
  72. if (CollectionUtil.isNotEmpty(relationObjects)) {
  73. for (ObjectRelation relationInfo : relationObjects) {
  74. excludeIds.add(relationInfo.getObjFrom());
  75. }
  76. }
  77. return this.exportEquipmentExcel(equipList, classDefine, excludeIds, groupCode, projectId);
  78. }
  79. /**
  80. * 统计项目下已有的设备,信息点,每个设备
  81. *
  82. * @param groupCode
  83. * @param projectId
  84. * @return
  85. */
  86. public List<EquipmentBindPointExcel> queryProjectBindPoint(String groupCode, String projectId) {
  87. groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
  88. String equipment = AdmObjectType.EQUIPMENT.getIndex();
  89. List<OrderItem> classCodeAsc = Arrays.asList(OrderItem.asc("classCode"));
  90. // 1.获取项目名称
  91. List<ObjectNode> projects = this.relationReportService.queryObjects(null, groupCode, projectId, Sets.newHashSet(projectId), Sets.newHashSet(AdmObjectType.PROJECT.getIndex()), null, null);
  92. if (CollectionUtil.isEmpty(projects)) {
  93. return Lists.newArrayList();
  94. }
  95. String projectName = projects.get(0).has("localName") ? projects.get(0).get("localName").asText() : null;
  96. // 2.获取所有的设备对象数据
  97. List<ObjectNode> equipList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null, Sets.newHashSet(equipment), classCodeAsc);
  98. if (CollectionUtil.isEmpty(equipList)) {
  99. return Lists.newArrayList();
  100. }
  101. // 3.获取所有的设备、系统类定义信息
  102. List<ObjectTypeDefine> classInfo = this.relationReportService.queryClassList(groupCode, projectId, null, Sets.newHashSet(equipment, AdmObjectType.SYSTEM.getIndex()), null);
  103. /** key-equipCode, value-equipName */
  104. Map<String, String> equipTemp = new HashMap<String, String>();
  105. /** key-systemCode, value-systemName */
  106. Map<String, String> systemTemp = new HashMap<String, String>();
  107. for (ObjectTypeDefine info : classInfo) {
  108. if (info.getCode().length() > 5) {
  109. equipTemp.put(info.getCode(), info.getName());
  110. } else {
  111. systemTemp.put(info.getCode(), info.getName());
  112. }
  113. }
  114. // 4.获取所有的信息点
  115. Set<String> equipCodes = equipTemp.keySet();
  116. List<ObjectInfoDefine> funidList = this.relationReportService.queryFunidList(groupCode, projectId, equipCodes, null, null);
  117. return this.exportEquipmentBindPointExcel(equipList, equipTemp, systemTemp, funidList, groupCode, projectId, projectName);
  118. }
  119. /**
  120. * 下载报告-统计项目下已有的设备,以及静态和iot 信息点使用情况,以classCode为维度
  121. *
  122. * @param groupCode
  123. * @param projectId
  124. * @return
  125. */
  126. public List<EquipmentCountExcel> countClassCodeEquip(String groupCode, String projectId) {
  127. groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
  128. String equipment = AdmObjectType.EQUIPMENT.getIndex();
  129. List<OrderItem> classCodeAsc = Arrays.asList(OrderItem.asc("classCode"));
  130. // 1.获取项目名称
  131. List<ObjectNode> projects = this.relationReportService.queryObjects(null, groupCode, projectId, Sets.newHashSet(projectId), Sets.newHashSet(AdmObjectType.PROJECT.getIndex()), null, null);
  132. if (CollectionUtil.isEmpty(projects)) {
  133. return Lists.newArrayList();
  134. }
  135. String projectName = projects.get(0).has("localName") ? projects.get(0).get("localName").asText() : null;
  136. // 2.获取所有的设备对象数据
  137. List<ObjectNode> equipList = this.relationReportService.queryObjects(null, groupCode, projectId, null, null, Sets.newHashSet(equipment), classCodeAsc);
  138. if (CollectionUtil.isEmpty(equipList)) {
  139. return Lists.newArrayList();
  140. }
  141. // 3.获取所有的设备、系统类定义信息
  142. List<ObjectTypeDefine> classInfo = this.relationReportService.queryClassList(groupCode, projectId, null, Sets.newHashSet(equipment, AdmObjectType.SYSTEM.getIndex()), null);
  143. /** key-equipCode, value-equipName */
  144. Map<String, String> equipTemp = new HashMap<String, String>();
  145. /** key-systemCode, value-systemName */
  146. Map<String, String> systemTemp = new HashMap<String, String>();
  147. for (ObjectTypeDefine info : classInfo) {
  148. if (info.getCode().length() > 5) {
  149. equipTemp.put(info.getCode(), info.getName());
  150. } else {
  151. systemTemp.put(info.getCode(), info.getName());
  152. }
  153. }
  154. // 4.获取所有的信息点
  155. Set<String> equipCodes = equipTemp.keySet();
  156. List<ObjectInfoDefine> funidList = this.relationReportService.queryFunidList(groupCode, projectId, equipCodes, null, null);
  157. // 5.导出结果汇总返回
  158. return this.exportClassEquipExcel(equipList, equipTemp, systemTemp, funidList, groupCode, projectId, projectName);
  159. }
  160. /**
  161. * 构造 excel 设备数据--不在空间内的设备数据
  162. *
  163. * @param equipList 设备数据集合
  164. * @param classDefine 类定义信息
  165. * @param excludeIds 需要剔除的设备ID集合
  166. * @param groupCode
  167. * @param projectId
  168. * @return
  169. */
  170. private List<EquipmentExcel> exportEquipmentExcel(List<ObjectNode> equipList, Map<String, String> classDefine, Set<String> excludeIds, String groupCode, String projectId) {
  171. /** key: 设备ID,value: 楼层名称 */
  172. Map<String, String> floorNameTemp = new HashMap<String, String>();
  173. this.findFloorName(floorNameTemp, groupCode, projectId);
  174. /** key: 设备ID,value: 建筑名称 */
  175. Map<String, String> buildNameTemp = new HashMap<String, String>();
  176. this.findBuildingName(buildNameTemp, groupCode, projectId);
  177. // 结果封装
  178. List<EquipmentExcel> excelList = new ArrayList<EquipmentExcel>();
  179. for (ObjectNode equip : equipList) {
  180. String id = equip.get("id") == null ? null : equip.get("id").asText();
  181. if (id != null && !excludeIds.contains(id)) {
  182. EquipmentExcel excel = new EquipmentExcel();
  183. excel.setId(id);
  184. excel.setName(equip.get("name") == null ? null : equip.get("name").asText());
  185. excel.setLocalId(equip.get("localId") == null ? null : equip.get("localId").asText());
  186. excel.setLocalName(equip.get("localName") == null ? null : equip.get("localName").asText());
  187. String infos = equip.get("infos") == null ? null : equip.get("infos").asText();
  188. if (StrUtil.isNotBlank(infos)) {
  189. JSONObject parseObject = JSONObject.parseObject(infos);
  190. excel.setBimId(parseObject.getString("bimId"));
  191. }
  192. String classCode = equip.get("classCode") == null ? null : equip.get("classCode").asText();
  193. excel.setClassCodeName(classCode == null ? null : classDefine.get(classCode));
  194. excel.setBuildName(buildNameTemp.get(id));
  195. excel.setFloorName(floorNameTemp.get(id));
  196. excel.setModelFileName("T1F10模型文件v18.rvt"); // 这里写死是不对的,需要后续再补充改变
  197. excelList.add(excel);
  198. }
  199. }
  200. return excelList;
  201. }
  202. /**
  203. * 构造 excel 设备数据--统计项目下已有的设备,信息点,每个设备
  204. *
  205. * @param equipList
  206. * @param equipTemp
  207. * @param systemTemp
  208. * @param groupCode
  209. * @param projectId
  210. * @param projectName
  211. * @return
  212. */
  213. private List<EquipmentBindPointExcel> exportEquipmentBindPointExcel(List<ObjectNode> equipList, Map<String, String> equipTemp,
  214. Map<String, String> systemTemp, List<ObjectInfoDefine> funidList, String groupCode, String projectId, String projectName) {
  215. /** key: 设备ID,value: 楼层名称 */
  216. Map<String, String> floorNameTemp = new HashMap<String, String>();
  217. this.findFloorName(floorNameTemp, groupCode, projectId);
  218. /** key: 设备ID,value: 建筑名称 */
  219. Map<String, String> buildNameTemp = new HashMap<String, String>();
  220. this.findBuildingName(buildNameTemp, groupCode, projectId);
  221. // 信息点分类信息统计
  222. /** key: classCode, value: 信息点 */
  223. Map<String, Set<String>> infoCodes = new HashMap<String, Set<String>>();
  224. /** key: classCode, value: 静态信息点的数量 */
  225. Map<String, Integer> staticCount = new HashMap<String, Integer>();
  226. /** key: classCode, value: 动态信息点的数量 */
  227. Map<String, Integer> dynamicCount = new HashMap<String, Integer>();
  228. /** key: classCode_infoCode, value: 动静态 */
  229. Map<String, String> codeAttrbut = new HashMap<String, String>();
  230. for (ObjectInfoDefine infoDefine : funidList) {
  231. String classCode = infoDefine.getClassCode();
  232. String category = infoDefine.getCategory();
  233. if ("STATIC".equals(category)) {
  234. int count = (staticCount.get(classCode) == null ? 0 : staticCount.get(classCode)) + 1;
  235. staticCount.put(classCode, count);
  236. } else {
  237. int count = (dynamicCount.get(classCode) == null ? 0 : dynamicCount.get(classCode)) + 1;
  238. dynamicCount.put(classCode, count);
  239. }
  240. codeAttrbut.put(classCode + AdmCommonConstant.UNDERLINE + infoDefine.getCode(), category);
  241. if (infoCodes.containsKey(classCode)) {
  242. infoCodes.get(classCode).add(infoDefine.getCode());
  243. } else {
  244. infoCodes.put(classCode, Sets.newHashSet(infoDefine.getCode()));
  245. }
  246. }
  247. // 结果封装
  248. List<EquipmentBindPointExcel> excelList = new ArrayList<EquipmentBindPointExcel>();
  249. for (int i = 0; i < equipList.size(); i++) {
  250. ObjectNode equip = equipList.get(i);
  251. String id = equip.get("id") == null ? null : equip.get("id").asText();
  252. String equipCode = equip.get("classCode") == null ? null : equip.get("classCode").asText();
  253. String systemCode = (equipCode == null || equipCode.length() < 5) ? null : equipCode.substring(0, 4);
  254. EquipmentBindPointExcel excel = new EquipmentBindPointExcel();
  255. excel.setIndex(i + 1);
  256. excel.setProjectName(projectName);
  257. excel.setBuildName(buildNameTemp.get(id));
  258. excel.setFloorName(floorNameTemp.get(id));
  259. excel.setSystemCode(systemCode);
  260. excel.setSystemName(systemTemp.get(systemCode));
  261. excel.setEquipCode(equipCode);
  262. excel.setEquipName(equipTemp.get(equipCode));
  263. excel.setEquipId(id);
  264. excel.setLocalId(equip.get("localId") == null ? null : equip.get("localId").asText());
  265. excel.setLocalName(equip.get("localName") == null ? null : equip.get("localName").asText());
  266. // 获取此classCode下有多少信息点、静态信息点、动态信息点
  267. // 静态的默认存在4个已绑信息点,ID、name、localId、localName
  268. int nowStatic = 4;
  269. int nowDynamic = 0;
  270. int staticNum = staticCount.get(equipCode) == null ? nowStatic : staticCount.get(equipCode);
  271. int dynamicNum = dynamicCount.get(equipCode) == null ? 0 : dynamicCount.get(equipCode);
  272. excel.setNeedBindPointCount(staticNum + dynamicNum);
  273. excel.setNeedStaticPointCount(staticNum);
  274. excel.setNeedDynamicPointCount(dynamicNum);
  275. Set<String> needCodes = infoCodes.get(equipCode);
  276. String infos = equip.get("infos") == null ? null : equip.get("infos").asText();
  277. if (StrUtil.isNotBlank(infos)) {
  278. JSONObject parseObject = JSONObject.parseObject(infos);
  279. excel.setBimId(parseObject.getString("bimId"));
  280. // 判断已绑定多少信息点
  281. Set<String> nowCodes = parseObject.keySet();
  282. for (String key : nowCodes) {
  283. if (needCodes.contains(key)) {
  284. if ("STATIC".equals(codeAttrbut.get(equipCode + AdmCommonConstant.UNDERLINE + key))) {
  285. nowStatic++;
  286. } else {
  287. nowDynamic++;
  288. }
  289. }
  290. }
  291. }
  292. excel.setNowBindPointCount(nowStatic + nowDynamic);
  293. excel.setNowStaticPointCount(nowStatic);
  294. excel.setNowDynamicPointCount(nowDynamic);
  295. excelList.add(excel);
  296. }
  297. return excelList;
  298. }
  299. /**
  300. * 大概率不对,后续观察
  301. *
  302. * @param equipList
  303. * @param equipTemp
  304. * @param systemTemp
  305. * @param funidList
  306. * @param groupCode
  307. * @param projectId
  308. * @param projectName
  309. * @return
  310. */
  311. private List<EquipmentCountExcel> exportClassEquipExcel(List<ObjectNode> equipList, Map<String, String> equipTemp,
  312. Map<String, String> systemTemp, List<ObjectInfoDefine> funidList, String groupCode, String projectId, String projectName) {
  313. /** key: classCode, value: 信息点 */
  314. Map<String, Set<String>> infoCodes = new HashMap<String, Set<String>>();
  315. /** key: classCode, value: 静态信息点的数量 */
  316. Map<String, Integer> staticCount = new HashMap<String, Integer>();
  317. /** key: classCode, value: 动态信息点的数量 */
  318. Map<String, Integer> dynamicCount = new HashMap<String, Integer>();
  319. /** key: classCode_infoCode, value: 动静态 */
  320. Map<String, String> codeAttrbut = new HashMap<String, String>();
  321. // 信息点数据汇总
  322. for (ObjectInfoDefine infoDefine : funidList) {
  323. String classCode = infoDefine.getClassCode();
  324. String category = infoDefine.getCategory();
  325. if ("STATIC".equals(category)) {
  326. int count = (staticCount.get(classCode) == null ? 0 : staticCount.get(classCode)) + 1;
  327. staticCount.put(classCode, count);
  328. } else {
  329. int count = (dynamicCount.get(classCode) == null ? 0 : dynamicCount.get(classCode)) + 1;
  330. dynamicCount.put(classCode, count);
  331. }
  332. codeAttrbut.put(classCode + AdmCommonConstant.UNDERLINE + infoDefine.getCode(), category);
  333. if (infoCodes.containsKey(classCode)) {
  334. infoCodes.get(classCode).add(infoDefine.getCode());
  335. } else {
  336. infoCodes.put(classCode, Sets.newHashSet(infoDefine.getCode()));
  337. }
  338. }
  339. funidList.clear(); //即时清空
  340. /** key: 设备ID,value: 建筑Id */
  341. Map<String, String> equipId2BuildId = new HashMap<String, String>();
  342. /** key: 建筑ID,value: 建筑名称 */
  343. Map<String, String> buildNameTemp = new HashMap<String, String>();
  344. String graphAndRelKey = GraphCodeEnum.MechInArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Eq2Bd.name();
  345. List<ObjectDigital> buildDigitals = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, null, null);
  346. if (CollectionUtil.isNotEmpty(buildDigitals)) {
  347. for (ObjectDigital master : buildDigitals) {
  348. List<ObjectDigital> slaveDigitals = master.getRelObjs();
  349. ObjectDigital slave = CollectionUtil.isEmpty(slaveDigitals) ? null : slaveDigitals.get(0);
  350. if (slave != null) {
  351. equipId2BuildId.put(master.getId(), slave.getId());
  352. buildNameTemp.put(slave.getId(), slave.getLocalName());
  353. }
  354. }
  355. }
  356. buildDigitals.clear(); // 即时清空
  357. /** key: classCode, value: 当BIMID不为空时,建筑ID不为空时,值+1 */
  358. Map<String, Integer> equipBimIdByBuild = new HashMap<String, Integer>();
  359. /** key: classCode, value: 当BIMID不为空时,建筑ID为空时,值+1 */
  360. Map<String, Integer> equipBimIdByBuildNull = new HashMap<String, Integer>();
  361. /** key: classCode, value: 当BIMID为空时,建筑ID不为空时,值+1 */
  362. Map<String, Integer> equipBimIdNullByBuild = new HashMap<String, Integer>();
  363. /** key: classCode, value: 当BIMID为空时,建筑ID为空时,值+1 */
  364. Map<String, Integer> equipBimIdNullByBuildNull = new HashMap<String, Integer>();
  365. /** key: classCode, value: 已绑定的静态信息点数量 */
  366. Map<String, Integer> equipStaticInfoTemp = new HashMap<String, Integer>();
  367. /** key: classCode, value: 已绑定的动态信息点数量 */
  368. Map<String, Integer> equipDynamicInfoTemp = new HashMap<String, Integer>();
  369. /** key: classCode, value: 建筑ID */
  370. Map<String, String> classBuildId = new HashMap<String, String>();
  371. /** key: classCode_建筑ID, value: infos字段包含信息点的设备数量 */
  372. Map<String, Integer> classInfosByBuild = new HashMap<String, Integer>();
  373. /** key: classCode, value: infos字段包含信息点且建筑ID为空的设备数量 */
  374. Map<String, Integer> classInfosNotBuild = new HashMap<String, Integer>();
  375. /** key: classCode, value: 存在建筑的设备数量 */
  376. Map<String, Integer> classByBuild = new HashMap<String, Integer>();
  377. /** key: classCode, value: 不存在建筑的设备数量 */
  378. Map<String, Integer> classNotBuild = new HashMap<String, Integer>();
  379. // 总结出如上map所需数据
  380. for (int i = 0; i < equipList.size(); i++) {
  381. ObjectNode equip = equipList.get(i);
  382. String id = equip.get("id") == null ? null : equip.get("id").asText();
  383. String classCode = equip.get("classCode") == null ? null : equip.get("classCode").asText();
  384. String buildingId = equipId2BuildId.get(id); // 获取建筑ID
  385. if (StrUtil.isBlank(buildingId)) {
  386. classNotBuild.put(classCode, (classNotBuild.get(classCode) == null ? 0 : (classNotBuild.get(classCode) + 1)));
  387. } else {
  388. classByBuild.put(classCode, (classByBuild.get(classCode) == null ? 0 : (classByBuild.get(classCode) + 1)));
  389. classBuildId.put(classCode, buildingId);
  390. }
  391. int nowStatic = 0;
  392. int nowDynamic = 0;
  393. Set<String> needCodes = infoCodes.get(classCode);
  394. String infos = equip.get("infos") == null ? null : equip.get("infos").asText();
  395. if (StrUtil.isNotBlank(infos)) {
  396. JSONObject parseObject = JSONObject.parseObject(infos);
  397. String bimId = parseObject.getString("bimId");
  398. if (StrUtil.isBlank(bimId)) {
  399. if (StrUtil.isBlank(buildingId)) {
  400. equipBimIdNullByBuildNull.put(id, (equipBimIdNullByBuildNull.get(id) == null ? 1 : (equipBimIdNullByBuildNull.get(id) + 1)));
  401. } else {
  402. equipBimIdNullByBuild.put(id, (equipBimIdNullByBuild.get(id) == null ? 1 : (equipBimIdNullByBuild.get(id) + 1)));
  403. }
  404. } else {
  405. if (StrUtil.isBlank(buildingId)) {
  406. equipBimIdByBuildNull.put(id, (equipBimIdByBuildNull.get(id) == null ? 1 : (equipBimIdByBuildNull.get(id) + 1)));
  407. } else {
  408. equipBimIdByBuild.put(id, (equipBimIdByBuild.get(id) == null ? 1 : (equipBimIdByBuild.get(id) + 1)));
  409. }
  410. }
  411. if (StrUtil.isBlank(buildingId)) {
  412. classInfosNotBuild.put(classCode, (classInfosNotBuild.get(classCode) == null ? 1 : (classInfosNotBuild.get(classCode) + 1)));
  413. } else {
  414. String key = classCode + AdmCommonConstant.UNDERLINE + buildingId;
  415. classInfosByBuild.put(key, (classInfosByBuild.get(key) == null ? 1 : (classInfosByBuild.get(key) + 1)));
  416. }
  417. // 判断已绑定多少信息点
  418. Set<String> nowCodes = parseObject.keySet();
  419. for (String key : nowCodes) {
  420. if (needCodes.contains(key)) {
  421. if ("STATIC".equals(codeAttrbut.get(classCode + AdmCommonConstant.UNDERLINE + key))) {
  422. nowStatic++;
  423. } else {
  424. nowDynamic++;
  425. }
  426. }
  427. }
  428. }
  429. equipStaticInfoTemp.put(classCode, (equipStaticInfoTemp.get(classCode) == null ? nowStatic : (equipStaticInfoTemp.get(classCode) + nowStatic)));
  430. equipDynamicInfoTemp.put(classCode, (equipDynamicInfoTemp.get(classCode) == null ? nowDynamic : (equipDynamicInfoTemp.get(classCode) + nowDynamic)));
  431. }
  432. equipList.clear(); //即时清空
  433. Set<String> classCodes = classByBuild.keySet();
  434. Set<String> keySet = classNotBuild.keySet();
  435. classCodes.addAll(keySet);
  436. // 结果封装
  437. int count = 0;
  438. List<EquipmentCountExcel> excelList = new ArrayList<EquipmentCountExcel>();
  439. for (String classCode : classCodes) {
  440. String systemCode = (classCode == null || classCode.length() < 5) ? null : classCode.substring(0, 4);
  441. String buildingId = classBuildId.get(classCode);
  442. EquipmentCountExcel excel = new EquipmentCountExcel();
  443. excel.setIndex(++count);
  444. excel.setProjectName(projectName);
  445. excel.setBuildName(buildingId == null ? null : (buildNameTemp.get(buildingId) == null ? null : buildNameTemp.get(buildingId)));
  446. excel.setSystemCode(systemCode);
  447. excel.setSystemName(systemTemp.get(systemCode));
  448. excel.setEquipCode(classCode);
  449. excel.setEquipName(equipTemp.get(classCode));
  450. if (StrUtil.isBlank(buildingId)) {
  451. // 第7列,bimId为空的设备数量
  452. excel.setEquipBimIdNullCount(equipBimIdNullByBuildNull.get(classCode) == null ? 0 : equipBimIdNullByBuildNull.get(classCode));
  453. // 第8列,bimId不为空的数量
  454. excel.setEquipBimIdCount(equipBimIdByBuildNull.get(classCode) == null ? 0 : equipBimIdByBuildNull.get(classCode));
  455. // 第9列,当前classCode下,建筑为空的设备
  456. excel.setEquipCountByBuild(classNotBuild.get(classCode) == null ? 0 : classNotBuild.get(classCode));
  457. // 第10列,当前classCode下,建筑为空且信息点不为空的设备
  458. excel.setEquipBindPointCount(classInfosNotBuild.get(classCode) == null ? 0 : classInfosNotBuild.get(classCode));
  459. } else {
  460. // 第7列,bimId为空的设备数量
  461. excel.setEquipBimIdNullCount(equipBimIdNullByBuild.get(classCode) == null ? 0 : equipBimIdNullByBuild.get(classCode));
  462. // 第8列,bimId不为空的数量
  463. excel.setEquipBimIdCount(equipBimIdByBuild.get(classCode) == null ? 0 : equipBimIdByBuild.get(classCode));
  464. // 第9列,当前建筑下的设备数量
  465. excel.setEquipCountByBuild(classByBuild.get(classCode) == null ? 0 : classByBuild.get(classCode));
  466. // 第10列,当前建筑下的设备且信息点不为空的数量
  467. String key = classCode + AdmCommonConstant.UNDERLINE + buildingId;
  468. excel.setEquipBindPointCount(classInfosByBuild.get(key) == null ? 0 : classInfosByBuild.get(key));
  469. }
  470. // 静态的默认存在4个已绑信息点,ID、name、localId、localName
  471. int staticNum = (staticCount.get(classCode) == null ? 0 : staticCount.get(classCode)) + 4;
  472. int dynamicNum = dynamicCount.get(classCode) == null ? 0 : dynamicCount.get(classCode);
  473. excel.setNeedStaticPointCount(staticNum);
  474. excel.setNeedDynamicPointCount(dynamicNum);
  475. excel.setNowStaticPointCount(equipStaticInfoTemp.get(classCode));
  476. excel.setNowDynamicPointCount(equipDynamicInfoTemp.get(classCode));
  477. excelList.add(excel);
  478. }
  479. return excelList;
  480. }
  481. /**
  482. * 获取建筑的名称
  483. *
  484. * @param buildNameTemp key: 设备ID,value: 建筑名称
  485. * @param buildIdTemp key: 设备ID,value: 建筑ID
  486. * @param groupCode
  487. * @param projectId
  488. */
  489. private void findBuildingName(Map<String, String> buildNameTemp, String groupCode, String projectId) {
  490. // 获取建筑名称
  491. String graphAndRelKey = GraphCodeEnum.MechInArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Eq2Bd.name();
  492. List<ObjectDigital> buildDigitals = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, null, null);
  493. if (CollectionUtil.isNotEmpty(buildDigitals)) {
  494. for (ObjectDigital master : buildDigitals) {
  495. List<ObjectDigital> slaveDigitals = master.getRelObjs();
  496. ObjectDigital slave = CollectionUtil.isEmpty(slaveDigitals) ? null : slaveDigitals.get(0);
  497. if (slave != null) {
  498. buildNameTemp.put(master.getId(), slave.getLocalName());
  499. }
  500. }
  501. }
  502. }
  503. /**
  504. * 获取楼层的名称
  505. *
  506. * @param floorNameTemp key: 设备ID,value: 楼层名称
  507. * @param groupCode
  508. * @param projectId
  509. */
  510. private void findFloorName(Map<String, String> floorNameTemp, String groupCode, String projectId) {
  511. // 获取楼层名称
  512. String graphAndRelKey = GraphCodeEnum.MechInArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Eq2Fl.name();
  513. List<ObjectDigital> floorDigitals = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey, null, null, null);
  514. if (CollectionUtil.isNotEmpty(floorDigitals)) {
  515. for (ObjectDigital master : floorDigitals) {
  516. List<ObjectDigital> slaveDigitals = master.getRelObjs();
  517. ObjectDigital slave = CollectionUtil.isEmpty(slaveDigitals) ? null : slaveDigitals.get(0);
  518. if (slave != null) {
  519. floorNameTemp.put(master.getId(), slave.getLocalName());
  520. }
  521. }
  522. }
  523. }
  524. }