RelationReportHandler.java 25 KB

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