123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574 |
- package com.persagy.proxy.adm.handler;
- import java.util.ArrayList;
- import java.util.HashMap;
- import java.util.HashSet;
- import java.util.List;
- import java.util.Map;
- import java.util.Set;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.stereotype.Component;
- import com.alibaba.fastjson.JSONObject;
- import com.fasterxml.jackson.databind.node.ObjectNode;
- import com.google.common.collect.Lists;
- import com.google.common.collect.Sets;
- import com.persagy.dmp.define.entity.ObjectInfoDefine;
- import com.persagy.dmp.define.entity.ObjectTypeDefine;
- import com.persagy.dmp.digital.entity.ObjectDigital;
- import com.persagy.dmp.digital.entity.ObjectRelation;
- import com.persagy.proxy.adm.constant.AdmCommonConstant;
- import com.persagy.proxy.adm.constant.AdmObjectType;
- import com.persagy.proxy.adm.constant.GraphCodeEnum;
- import com.persagy.proxy.adm.constant.RelCodeEnum;
- import com.persagy.proxy.adm.model.EquipmentBindPointExcel;
- import com.persagy.proxy.adm.model.EquipmentCountExcel;
- import com.persagy.proxy.adm.model.EquipmentExcel;
- import com.persagy.proxy.adm.service.IRelationReportService;
- import com.persagy.proxy.adm.strategy.RelationObjectContext;
- import cn.hutool.core.collection.CollectionUtil;
- import cn.hutool.core.util.StrUtil;
- import lombok.RequiredArgsConstructor;
- /**
- *
- * @version 1.0.0
- * @company persagy
- * @author zhangqiankun
- * @date 2021年10月15日 下午3:09:10
- */
- @Component
- @RequiredArgsConstructor
- public class RelationReportHandler {
-
- @Value("${middleware.group.code}")
- private String defaultCode;
- private final RelationObjectContext relationObjectContext;
-
- private final IRelationReportService relationReportService;
- /**
- * 查询出不在空间内的设备数据
- *
- * @param groupCode
- * @param projectId
- */
- public List<EquipmentExcel> findEquipByNotSpace(String groupCode, String projectId) {
- groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
- String equipment = AdmObjectType.EQUIPMENT.getIndex();
-
- // 1.获取所有的设备对象数据
- List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, equipment, "classCode");
- if (CollectionUtil.isEmpty(equipList)) {
- return Lists.newArrayList();
- }
-
- // 2.获取所有的设备类定义的className
- List<ObjectTypeDefine> classList = this.relationReportService.queryClassList(groupCode, projectId, null, Sets.newHashSet(equipment), null);
- /** key-classCode, value-className */
- Map<String, String> classDefine = new HashMap<String, String>();
- for (ObjectTypeDefine objectTypeDefine : classList) {
- classDefine.put(objectTypeDefine.getCode(), objectTypeDefine.getName());
- }
-
- // 3.查询出所有的边类型为 Eq2Sp 的关系数据
- List<ObjectRelation> relationObjects = this.relationReportService.findRelationObjects(groupCode, projectId, null, RelCodeEnum.Eq2Sp.name());
- Set<String> excludeIds = new HashSet<String>();
- if (CollectionUtil.isNotEmpty(relationObjects)) {
- for (ObjectRelation relationInfo : relationObjects) {
- excludeIds.add(relationInfo.getObjFrom());
- }
- }
-
- return this.exportEquipmentExcel(equipList, classDefine, excludeIds, groupCode, projectId);
- }
-
- /**
- * 统计项目下已有的设备,信息点,每个设备
- *
- * @param groupCode
- * @param projectId
- */
- public List<EquipmentBindPointExcel> queryProjectBindPoint(String groupCode, String projectId) {
- groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
- String equipment = AdmObjectType.EQUIPMENT.getIndex();
-
- // 1.获取项目名称
- List<ObjectNode> projects = this.relationReportService.queryObjects(groupCode, projectId, projectId, AdmObjectType.PROJECT.getIndex(), null, null);
- if (CollectionUtil.isEmpty(projects)) {
- return Lists.newArrayList();
- }
- String projectName = projects.get(0).has("localName") ? projects.get(0).get("localName").asText() : null;
-
- // 2.获取所有的设备对象数据
- List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, equipment, "classCode");
- if (CollectionUtil.isEmpty(equipList)) {
- return Lists.newArrayList();
- }
-
- // 3.获取所有的设备、系统类定义信息
- List<ObjectTypeDefine> classInfo = this.relationReportService.queryClassList(groupCode, projectId, null, Sets.newHashSet(equipment, AdmObjectType.SYSTEM.getIndex()), null);
- /** key-equipCode, value-equipName */
- Map<String, String> equipTemp = new HashMap<String, String>();
- /** key-systemCode, value-systemName */
- Map<String, String> systemTemp = new HashMap<String, String>();
- for (ObjectTypeDefine info : classInfo) {
- if (info.getCode().length() > 5) {
- equipTemp.put(info.getCode(), info.getName());
- } else {
- systemTemp.put(info.getCode(), info.getName());
- }
- }
-
- // 4.获取所有的信息点
- Set<String> equipCodes = equipTemp.keySet();
- List<ObjectInfoDefine> funidList = this.relationReportService.queryFunidList(groupCode, projectId, equipCodes, null, null);
- return this.exportEquipmentBindPointExcel(equipList, equipTemp, systemTemp, funidList, groupCode, projectId, projectName);
- }
-
- /**
- * 下载报告-统计项目下已有的设备,以及静态和iot 信息点使用情况,以classCode为维度
- *
- * @param groupCode
- * @param projectId
- */
- public List<EquipmentCountExcel> countClassCodeEquip(String groupCode, String projectId) {
- groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
- String equipment = AdmObjectType.EQUIPMENT.getIndex();
-
- // 1.获取项目名称
- List<ObjectNode> projects = this.relationReportService.queryObjects(groupCode, projectId, projectId, AdmObjectType.PROJECT.getIndex(), null, null);
- if (CollectionUtil.isEmpty(projects)) {
- return Lists.newArrayList();
- }
- String projectName = projects.get(0).has("localName") ? projects.get(0).get("localName").asText() : null;
-
- // 2.获取所有的设备对象数据
- List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, equipment, "classCode");
- if (CollectionUtil.isEmpty(equipList)) {
- return Lists.newArrayList();
- }
-
- // 3.获取所有的设备、系统类定义信息
- List<ObjectTypeDefine> classInfo = this.relationReportService.queryClassList(groupCode, projectId, null, Sets.newHashSet(equipment, AdmObjectType.SYSTEM.getIndex()), null);
- /** key-equipCode, value-equipName */
- Map<String, String> equipTemp = new HashMap<String, String>();
- /** key-systemCode, value-systemName */
- Map<String, String> systemTemp = new HashMap<String, String>();
- for (ObjectTypeDefine info : classInfo) {
- if (info.getCode().length() > 5) {
- equipTemp.put(info.getCode(), info.getName());
- } else {
- systemTemp.put(info.getCode(), info.getName());
- }
- }
-
- // 4.获取所有的信息点
- Set<String> equipCodes = equipTemp.keySet();
- List<ObjectInfoDefine> funidList = this.relationReportService.queryFunidList(groupCode, projectId, equipCodes, null, null);
-
- // 5.导出结果汇总返回
- return this.exportClassEquipExcel(equipList, equipTemp, systemTemp, funidList, groupCode, projectId, projectName);
- }
-
- /**
- * 构造 excel 设备数据--不在空间内的设备数据
- *
- * @param equipList 设备数据集合
- * @param classDefine 类定义信息
- * @param excludeIds 需要剔除的设备ID集合
- * @param groupCode
- * @param projectId
- * @return
- */
- private List<EquipmentExcel> exportEquipmentExcel(List<ObjectNode> equipList, Map<String, String> classDefine, Set<String> excludeIds, String groupCode, String projectId) {
- /** key: 设备ID,value: 楼层名称 */
- Map<String, String> floorNameTemp = new HashMap<String, String>();
- this.findFloorName(floorNameTemp, groupCode, projectId);
-
- /** key: 设备ID,value: 建筑名称 */
- Map<String, String> buildNameTemp = new HashMap<String, String>();
- this.findBuildingName(buildNameTemp, groupCode, projectId);
-
- // 结果封装
- List<EquipmentExcel> excelList = new ArrayList<EquipmentExcel>();
- for (ObjectNode equip : equipList) {
- String id = equip.get("id") == null ? null : equip.get("id").asText();
- if (id != null && !excludeIds.contains(id)) {
- EquipmentExcel excel = new EquipmentExcel();
- excel.setId(id);
- excel.setName(equip.get("name") == null ? null : equip.get("name").asText());
- excel.setLocalId(equip.get("localId") == null ? null : equip.get("localId").asText());
- excel.setLocalName(equip.get("localName") == null ? null : equip.get("localName").asText());
-
- String infos = equip.get("infos") == null ? null : equip.get("infos").asText();
- if (StrUtil.isNotBlank(infos)) {
- JSONObject parseObject = JSONObject.parseObject(infos);
- excel.setBimId(parseObject.getString("bimId"));
- }
-
- String classCode = equip.get("classCode") == null ? null : equip.get("classCode").asText();
- excel.setClassCodeName(classCode == null ? null : classDefine.get(classCode));
-
- excel.setBuildName(buildNameTemp.get(id));
- excel.setFloorName(floorNameTemp.get(id));
- excel.setModelFileName("T1F10模型文件v18.rvt"); // 这里写死是不对的,需要后续再补充改变
- excelList.add(excel);
- }
- }
- return excelList;
- }
- /**
- * 构造 excel 设备数据--统计项目下已有的设备,信息点,每个设备
- *
- * @param equipList
- * @param equipTemp
- * @param systemTemp
- * @param groupCode
- * @param projectId
- * @param projectName
- * @return
- */
- private List<EquipmentBindPointExcel> exportEquipmentBindPointExcel(List<ObjectNode> equipList, Map<String, String> equipTemp,
- Map<String, String> systemTemp, List<ObjectInfoDefine> funidList, String groupCode, String projectId, String projectName) {
- /** key: 设备ID,value: 楼层名称 */
- Map<String, String> floorNameTemp = new HashMap<String, String>();
- this.findFloorName(floorNameTemp, groupCode, projectId);
-
- /** key: 设备ID,value: 建筑名称 */
- Map<String, String> buildNameTemp = new HashMap<String, String>();
- this.findBuildingName(buildNameTemp, groupCode, projectId);
-
- // 信息点分类信息统计
- /** key: classCode, value: 信息点 */
- Map<String, Set<String>> infoCodes = new HashMap<String, Set<String>>();
- /** key: classCode, value: 静态信息点的数量 */
- Map<String, Integer> staticCount = new HashMap<String, Integer>();
- /** key: classCode, value: 动态信息点的数量 */
- Map<String, Integer> dynamicCount = new HashMap<String, Integer>();
- /** key: classCode_infoCode, value: 动静态 */
- Map<String, String> codeAttrbut = new HashMap<String, String>();
- for (ObjectInfoDefine infoDefine : funidList) {
- String classCode = infoDefine.getClassCode();
- String category = infoDefine.getCategory();
- if ("STATIC".equals(category)) {
- int count = (staticCount.get(classCode) == null ? 0 : staticCount.get(classCode)) + 1;
- staticCount.put(classCode, count);
- } else {
- int count = (dynamicCount.get(classCode) == null ? 0 : dynamicCount.get(classCode)) + 1;
- dynamicCount.put(classCode, count);
- }
-
- codeAttrbut.put(classCode + AdmCommonConstant.UNDERLINE + infoDefine.getCode(), category);
- if (infoCodes.containsKey(classCode)) {
- infoCodes.get(classCode).add(infoDefine.getCode());
- } else {
- infoCodes.put(classCode, Sets.newHashSet(infoDefine.getCode()));
- }
- }
-
- // 结果封装
- List<EquipmentBindPointExcel> excelList = new ArrayList<EquipmentBindPointExcel>();
- for (int i = 0; i < equipList.size(); i++) {
- ObjectNode equip = equipList.get(i);
- String id = equip.get("id") == null ? null : equip.get("id").asText();
- String equipCode = equip.get("classCode") == null ? null : equip.get("classCode").asText();
- String systemCode = (equipCode == null || equipCode.length() < 5) ? null : equipCode.substring(0, 4);
-
- EquipmentBindPointExcel excel = new EquipmentBindPointExcel();
- excel.setIndex(i + 1);
- excel.setProjectName(projectName);
- excel.setBuildName(buildNameTemp.get(id));
- excel.setFloorName(floorNameTemp.get(id));
- excel.setSystemCode(systemCode);
- excel.setSystemName(systemTemp.get(systemCode));
- excel.setEquipCode(equipCode);
- excel.setEquipName(equipTemp.get(equipCode));
- excel.setEquipId(id);
- excel.setLocalId(equip.get("localId") == null ? null : equip.get("localId").asText());
- excel.setLocalName(equip.get("localName") == null ? null : equip.get("localName").asText());
-
- // 获取此classCode下有多少信息点、静态信息点、动态信息点
-
- // 静态的默认存在4个已绑信息点,ID、name、localId、localName
- int nowStatic = 4;
- int nowDynamic = 0;
- int staticNum = staticCount.get(equipCode) == null ? nowStatic : staticCount.get(equipCode);
- int dynamicNum = dynamicCount.get(equipCode) == null ? 0 : dynamicCount.get(equipCode);
- excel.setNeedBindPointCount(staticNum + dynamicNum);
- excel.setNeedStaticPointCount(staticNum);
- excel.setNeedDynamicPointCount(dynamicNum);
-
- Set<String> needCodes = infoCodes.get(equipCode);
- String infos = equip.get("infos") == null ? null : equip.get("infos").asText();
- if (StrUtil.isNotBlank(infos)) {
- JSONObject parseObject = JSONObject.parseObject(infos);
- excel.setBimId(parseObject.getString("bimId"));
-
- // 判断已绑定多少信息点
- Set<String> nowCodes = parseObject.keySet();
- for (String key : nowCodes) {
- if (needCodes.contains(key)) {
- if ("STATIC".equals(codeAttrbut.get(equipCode + AdmCommonConstant.UNDERLINE + key))) {
- nowStatic++;
- } else {
- nowDynamic++;
- }
- }
- }
- }
- excel.setNowBindPointCount(nowStatic + nowDynamic);
- excel.setNowStaticPointCount(nowStatic);
- excel.setNowDynamicPointCount(nowDynamic);
- excelList.add(excel);
- }
- return excelList;
- }
-
- /**
- * 大概率不对,后续观察
- *
- * @param equipList
- * @param equipTemp
- * @param systemTemp
- * @param funidList
- * @param groupCode
- * @param projectId
- * @param projectName
- * @return
- */
- private List<EquipmentCountExcel> exportClassEquipExcel(List<ObjectNode> equipList, Map<String, String> equipTemp,
- Map<String, String> systemTemp, List<ObjectInfoDefine> funidList, String groupCode, String projectId, String projectName) {
-
- /** key: classCode, value: 信息点 */
- Map<String, Set<String>> infoCodes = new HashMap<String, Set<String>>();
- /** key: classCode, value: 静态信息点的数量 */
- Map<String, Integer> staticCount = new HashMap<String, Integer>();
- /** key: classCode, value: 动态信息点的数量 */
- Map<String, Integer> dynamicCount = new HashMap<String, Integer>();
- /** key: classCode_infoCode, value: 动静态 */
- Map<String, String> codeAttrbut = new HashMap<String, String>();
- // 信息点数据汇总
- for (ObjectInfoDefine infoDefine : funidList) {
- String classCode = infoDefine.getClassCode();
- String category = infoDefine.getCategory();
- if ("STATIC".equals(category)) {
- int count = (staticCount.get(classCode) == null ? 0 : staticCount.get(classCode)) + 1;
- staticCount.put(classCode, count);
- } else {
- int count = (dynamicCount.get(classCode) == null ? 0 : dynamicCount.get(classCode)) + 1;
- dynamicCount.put(classCode, count);
- }
-
- codeAttrbut.put(classCode + AdmCommonConstant.UNDERLINE + infoDefine.getCode(), category);
- if (infoCodes.containsKey(classCode)) {
- infoCodes.get(classCode).add(infoDefine.getCode());
- } else {
- infoCodes.put(classCode, Sets.newHashSet(infoDefine.getCode()));
- }
- }
- funidList.clear(); //即时清空
-
- /** key: 设备ID,value: 建筑Id */
- Map<String, String> equipId2BuildId = new HashMap<String, String>();
- /** key: 建筑ID,value: 建筑名称 */
- Map<String, String> buildNameTemp = new HashMap<String, String>();
- String graphAndRelKey = GraphCodeEnum.MechInArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Eq2Bd.name();
- List<ObjectDigital> buildDigitals = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey);
- if (CollectionUtil.isNotEmpty(buildDigitals)) {
- for (ObjectDigital master : buildDigitals) {
- List<ObjectDigital> slaveDigitals = master.getRelObjs();
- ObjectDigital slave = CollectionUtil.isEmpty(slaveDigitals) ? null : slaveDigitals.get(0);
- if (slave != null) {
- equipId2BuildId.put(master.getId(), slave.getId());
- buildNameTemp.put(slave.getId(), slave.getLocalName());
- }
- }
- }
- buildDigitals.clear(); // 即时清空
-
- /** key: classCode, value: 当BIMID不为空时,建筑ID不为空时,值+1 */
- Map<String, Integer> equipBimIdByBuild = new HashMap<String, Integer>();
- /** key: classCode, value: 当BIMID不为空时,建筑ID为空时,值+1 */
- Map<String, Integer> equipBimIdByBuildNull = new HashMap<String, Integer>();
- /** key: classCode, value: 当BIMID为空时,建筑ID不为空时,值+1 */
- Map<String, Integer> equipBimIdNullByBuild = new HashMap<String, Integer>();
- /** key: classCode, value: 当BIMID为空时,建筑ID为空时,值+1 */
- Map<String, Integer> equipBimIdNullByBuildNull = new HashMap<String, Integer>();
-
- /** key: classCode, value: 已绑定的静态信息点数量 */
- Map<String, Integer> equipStaticInfoTemp = new HashMap<String, Integer>();
- /** key: classCode, value: 已绑定的动态信息点数量 */
- Map<String, Integer> equipDynamicInfoTemp = new HashMap<String, Integer>();
-
- /** key: classCode, value: 建筑ID */
- Map<String, String> classBuildId = new HashMap<String, String>();
- /** key: classCode_建筑ID, value: infos字段包含信息点的设备数量 */
- Map<String, Integer> classInfosByBuild = new HashMap<String, Integer>();
- /** key: classCode, value: infos字段包含信息点且建筑ID为空的设备数量 */
- Map<String, Integer> classInfosNotBuild = new HashMap<String, Integer>();
- /** key: classCode, value: 存在建筑的设备数量 */
- Map<String, Integer> classByBuild = new HashMap<String, Integer>();
- /** key: classCode, value: 不存在建筑的设备数量 */
- Map<String, Integer> classNotBuild = new HashMap<String, Integer>();
- // 总结出如上map所需数据
- for (int i = 0; i < equipList.size(); i++) {
- ObjectNode equip = equipList.get(i);
- String id = equip.get("id") == null ? null : equip.get("id").asText();
- String classCode = equip.get("classCode") == null ? null : equip.get("classCode").asText();
- String buildingId = equipId2BuildId.get(id); // 获取建筑ID
- if (StrUtil.isBlank(buildingId)) {
- classNotBuild.put(classCode, (classNotBuild.get(classCode) == null ? 0 : (classNotBuild.get(classCode) + 1)));
- } else {
- classByBuild.put(classCode, (classByBuild.get(classCode) == null ? 0 : (classByBuild.get(classCode) + 1)));
- classBuildId.put(classCode, buildingId);
- }
-
- int nowStatic = 0;
- int nowDynamic = 0;
- Set<String> needCodes = infoCodes.get(classCode);
- String infos = equip.get("infos") == null ? null : equip.get("infos").asText();
- if (StrUtil.isNotBlank(infos)) {
- JSONObject parseObject = JSONObject.parseObject(infos);
- String bimId = parseObject.getString("bimId");
- if (StrUtil.isBlank(bimId)) {
- if (StrUtil.isBlank(buildingId)) {
- equipBimIdNullByBuildNull.put(id, (equipBimIdNullByBuildNull.get(id) == null ? 1 : (equipBimIdNullByBuildNull.get(id) + 1)));
- } else {
- equipBimIdNullByBuild.put(id, (equipBimIdNullByBuild.get(id) == null ? 1 : (equipBimIdNullByBuild.get(id) + 1)));
- }
- } else {
- if (StrUtil.isBlank(buildingId)) {
- equipBimIdByBuildNull.put(id, (equipBimIdByBuildNull.get(id) == null ? 1 : (equipBimIdByBuildNull.get(id) + 1)));
- } else {
- equipBimIdByBuild.put(id, (equipBimIdByBuild.get(id) == null ? 1 : (equipBimIdByBuild.get(id) + 1)));
- }
- }
-
- if (StrUtil.isBlank(buildingId)) {
- classInfosNotBuild.put(classCode, (classInfosNotBuild.get(classCode) == null ? 1 : (classInfosNotBuild.get(classCode) + 1)));
- } else {
- String key = classCode + AdmCommonConstant.UNDERLINE + buildingId;
- classInfosByBuild.put(key, (classInfosByBuild.get(key) == null ? 1 : (classInfosByBuild.get(key) + 1)));
- }
- // 判断已绑定多少信息点
- Set<String> nowCodes = parseObject.keySet();
- for (String key : nowCodes) {
- if (needCodes.contains(key)) {
- if ("STATIC".equals(codeAttrbut.get(classCode + AdmCommonConstant.UNDERLINE + key))) {
- nowStatic++;
- } else {
- nowDynamic++;
- }
- }
- }
- }
-
- equipStaticInfoTemp.put(classCode, (equipStaticInfoTemp.get(classCode) == null ? nowStatic : (equipStaticInfoTemp.get(classCode) + nowStatic)));
- equipDynamicInfoTemp.put(classCode, (equipDynamicInfoTemp.get(classCode) == null ? nowDynamic : (equipDynamicInfoTemp.get(classCode) + nowDynamic)));
- }
- equipList.clear(); //即时清空
-
- Set<String> classCodes = classByBuild.keySet();
- Set<String> keySet = classNotBuild.keySet();
- classCodes.addAll(keySet);
-
- // 结果封装
- int count = 0;
- List<EquipmentCountExcel> excelList = new ArrayList<EquipmentCountExcel>();
- for (String classCode : classCodes) {
- String systemCode = (classCode == null || classCode.length() < 5) ? null : classCode.substring(0, 4);
- String buildingId = classBuildId.get(classCode);
- EquipmentCountExcel excel = new EquipmentCountExcel();
- excel.setIndex(++count);
- excel.setProjectName(projectName);
- excel.setBuildName(buildingId == null ? null : (buildNameTemp.get(buildingId) == null ? null : buildNameTemp.get(buildingId)));
- excel.setSystemCode(systemCode);
- excel.setSystemName(systemTemp.get(systemCode));
- excel.setEquipCode(classCode);
- excel.setEquipName(equipTemp.get(classCode));
-
- if (StrUtil.isBlank(buildingId)) {
- // 第7列,bimId为空的设备数量
- excel.setEquipBimIdNullCount(equipBimIdNullByBuildNull.get(classCode) == null ? 0 : equipBimIdNullByBuildNull.get(classCode));
- // 第8列,bimId不为空的数量
- excel.setEquipBimIdCount(equipBimIdByBuildNull.get(classCode) == null ? 0 : equipBimIdByBuildNull.get(classCode));
- // 第9列,当前classCode下,建筑为空的设备
- excel.setEquipCountByBuild(classNotBuild.get(classCode) == null ? 0 : classNotBuild.get(classCode));
- // 第10列,当前classCode下,建筑为空且信息点不为空的设备
- excel.setEquipBindPointCount(classInfosNotBuild.get(classCode) == null ? 0 : classInfosNotBuild.get(classCode));
- } else {
- // 第7列,bimId为空的设备数量
- excel.setEquipBimIdNullCount(equipBimIdNullByBuild.get(classCode) == null ? 0 : equipBimIdNullByBuild.get(classCode));
- // 第8列,bimId不为空的数量
- excel.setEquipBimIdCount(equipBimIdByBuild.get(classCode) == null ? 0 : equipBimIdByBuild.get(classCode));
- // 第9列,当前建筑下的设备数量
- excel.setEquipCountByBuild(classByBuild.get(classCode) == null ? 0 : classByBuild.get(classCode));
- // 第10列,当前建筑下的设备且信息点不为空的数量
- String key = classCode + AdmCommonConstant.UNDERLINE + buildingId;
- excel.setEquipBindPointCount(classInfosByBuild.get(key) == null ? 0 : classInfosByBuild.get(key));
- }
-
- // 静态的默认存在4个已绑信息点,ID、name、localId、localName
- int staticNum = (staticCount.get(classCode) == null ? 0 : staticCount.get(classCode)) + 4;
- int dynamicNum = dynamicCount.get(classCode) == null ? 0 : dynamicCount.get(classCode);
- excel.setNeedStaticPointCount(staticNum);
- excel.setNeedDynamicPointCount(dynamicNum);
- excel.setNowStaticPointCount(equipStaticInfoTemp.get(classCode));
- excel.setNowDynamicPointCount(equipDynamicInfoTemp.get(classCode));
- excelList.add(excel);
- }
-
- return excelList;
- }
-
- /**
- * 获取建筑的名称
- *
- * @param buildNameTemp key: 设备ID,value: 建筑名称
- * @param buildIdTemp key: 设备ID,value: 建筑ID
- * @param groupCode
- * @param projectId
- */
- private void findBuildingName(Map<String, String> buildNameTemp, String groupCode, String projectId) {
- // 获取建筑名称
- String graphAndRelKey = GraphCodeEnum.MechInArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Eq2Bd.name();
- List<ObjectDigital> buildDigitals = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey);
- if (CollectionUtil.isNotEmpty(buildDigitals)) {
- for (ObjectDigital master : buildDigitals) {
- List<ObjectDigital> slaveDigitals = master.getRelObjs();
- ObjectDigital slave = CollectionUtil.isEmpty(slaveDigitals) ? null : slaveDigitals.get(0);
- if (slave != null) {
- buildNameTemp.put(master.getId(), slave.getLocalName());
- }
- }
- }
- }
-
- /**
- * 获取楼层的名称
- *
- * @param floorNameTemp key: 设备ID,value: 楼层名称
- * @param groupCode
- * @param projectId
- */
- private void findFloorName(Map<String, String> floorNameTemp, String groupCode, String projectId) {
- // 获取楼层名称
- String graphAndRelKey = GraphCodeEnum.MechInArch.name() + AdmCommonConstant.UNDERLINE + RelCodeEnum.Eq2Fl.name();
- List<ObjectDigital> floorDigitals = this.relationObjectContext.queryAllRelations(groupCode, projectId, graphAndRelKey);
- if (CollectionUtil.isNotEmpty(floorDigitals)) {
- for (ObjectDigital master : floorDigitals) {
- List<ObjectDigital> slaveDigitals = master.getRelObjs();
- ObjectDigital slave = CollectionUtil.isEmpty(slaveDigitals) ? null : slaveDigitals.get(0);
- if (slave != null) {
- floorNameTemp.put(master.getId(), slave.getLocalName());
- }
- }
- }
- }
-
- }
|