zhangqiankun vor 3 Jahren
Ursprung
Commit
7adbf645bc

+ 3 - 0
src/main/java/com/persagy/proxy/adm/constant/AdmCommonConstant.java

@@ -49,6 +49,9 @@ public interface AdmCommonConstant {
     /** 连接符 - */
     String LINE_THROUGH = "-";
     
+    /** 连接符 → */
+    String RIGHT_ARROW = "→";
+    
     /** 有效标示*/
     String VALID = "valid";
 

+ 26 - 0
src/main/java/com/persagy/proxy/adm/constant/ObjTypeMapping.java

@@ -21,6 +21,12 @@ public class ObjTypeMapping {
 	/** example: space -> Sp */
 	public static final Map<String, String> FULLNAME_PREFIX = new HashMap<String, String>();
 	
+	/** example: space -> 空间 */
+	public static final Map<String, String> FULLNAME_NAME = new HashMap<String, String>();
+	
+	/** example: Sp -> 空间 */
+	public static final Map<String, String> PREFIX_NAME = new HashMap<String, String>();
+	
 	static {
 	    
 		PREFIX_FULLNAME.put("Pj", "project");
@@ -43,6 +49,26 @@ public class ObjTypeMapping {
 		FULLNAME_PREFIX.put("component", "Ec");
 		FULLNAME_PREFIX.put("property", "Pe");
 		
+		PREFIX_NAME.put("Pj", "项目");
+		PREFIX_NAME.put("Bd", "建筑");
+		PREFIX_NAME.put("Fl", "楼层");
+		PREFIX_NAME.put("Sp", "空间");
+		PREFIX_NAME.put("Sy", "系统");
+		PREFIX_NAME.put("Eq", "设备");
+		PREFIX_NAME.put("Sh", "竖井");
+		PREFIX_NAME.put("Ec", "部件");
+		PREFIX_NAME.put("Pe", "资产");
+		
+		FULLNAME_NAME.put("project", "项目");
+		FULLNAME_NAME.put("building", "建筑");
+		FULLNAME_NAME.put("floor", "楼层");
+		FULLNAME_NAME.put("space", "空间");
+		FULLNAME_NAME.put("system", "系统");
+		FULLNAME_NAME.put("equipment", "设备");
+		FULLNAME_NAME.put("shaft", "竖井");
+		FULLNAME_NAME.put("component", "部件");
+		FULLNAME_NAME.put("property", "资产");
+		
 	}
 	
 	/**

+ 10 - 36
src/main/java/com/persagy/proxy/adm/controller/ComponentStatisticsController.java

@@ -1,26 +1,18 @@
 package com.persagy.proxy.adm.controller;
 
-import java.util.List;
-
 import javax.servlet.http.HttpServletRequest;
 
+import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
 
 import com.alibaba.fastjson.JSONObject;
-import com.fasterxml.jackson.databind.ObjectMapper;
-import com.fasterxml.jackson.databind.node.ObjectNode;
-import com.persagy.dmp.basic.model.QueryCriteria;
-import com.persagy.dmp.common.helper.SpringHelper;
-import com.persagy.dmp.common.model.response.CommonResult;
-import com.persagy.dmp.digital.client.DigitalObjectFacade;
-import com.persagy.dmp.digital.client.DigitalRelationFacade;
-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.AdmRelationTypeEnum;
 import com.persagy.proxy.adm.request.AdmCountResponse;
+import com.persagy.proxy.adm.service.IRelationReportService;
 
 /**
  * 统计接口
@@ -34,6 +26,9 @@ import com.persagy.proxy.adm.request.AdmCountResponse;
 @RequestMapping("/statistics")
 public class ComponentStatisticsController {
 
+	@Autowired
+	private IRelationReportService relationReportService;
+	
 	/**
 	 * 台账中待删除的对象
 	 * <p>条件:"filters": "taskState = -1"</p>
@@ -92,14 +87,7 @@ public class ComponentStatisticsController {
 		String groupCode = request.getHeader(AdmCommonConstant.GROUP_CODE_HEADER);
 		String projectId = request.getHeader(AdmCommonConstant.PROJECT_ID_HEADER);
 		
-		QueryCriteria queryCriteria = new QueryCriteria();
-		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
-		ObjectNode objectNode = objectMapper.createObjectNode();
-		objectNode.put("classCode", AdmObjectType.EQUIPMENT.getIndex());
-		queryCriteria.setCriteria(objectNode);
-		queryCriteria.setOnlyCount(true);
-		CommonResult<List<ObjectNode>> result = DigitalObjectFacade.queryPrototype(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
-		long count = result == null ? 0 : (result.getCount() == null ? 0 : result.getCount());
+		long count = this.relationReportService.countObject(groupCode, projectId, AdmObjectType.EQUIPMENT.getIndex(), null);
 		return AdmCountResponse.success(count);
 	}
 	
@@ -140,15 +128,8 @@ public class ComponentStatisticsController {
 		String groupCode = request.getHeader(AdmCommonConstant.GROUP_CODE_HEADER);
 		String projectId = request.getHeader(AdmCommonConstant.PROJECT_ID_HEADER);
 		
-		QueryCriteria queryCriteria = new QueryCriteria();
-		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
-		ObjectNode objectNode = objectMapper.createObjectNode();
-		objectNode.put("graphCode", AdmRelationTypeEnum.TN2SP.getGraphCode());
-		objectNode.put("relCode", AdmRelationTypeEnum.TN2SP.getRelCode());
-		queryCriteria.setCriteria(objectNode);
-		queryCriteria.setOnlyCount(true);
-		CommonResult<List<ObjectRelation>> result = DigitalRelationFacade.queryPrototype(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
-		long count = result == null ? 0 : (result.getCount() == null ? 0 : result.getCount());
+		long count = this.relationReportService.countRelationObject(groupCode, projectId, AdmRelationTypeEnum.TN2SP.getGraphCode(), 
+				AdmRelationTypeEnum.TN2SP.getRelCode(), null);
 		return AdmCountResponse.success(count);
 	}
 	
@@ -163,15 +144,8 @@ public class ComponentStatisticsController {
 		String groupCode = request.getHeader(AdmCommonConstant.GROUP_CODE_HEADER);
 		String projectId = request.getHeader(AdmCommonConstant.PROJECT_ID_HEADER);
 		
-		QueryCriteria queryCriteria = new QueryCriteria();
-		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
-		ObjectNode objectNode = objectMapper.createObjectNode();
-		objectNode.put("graphCode", AdmRelationTypeEnum.SH2SP.getGraphCode());
-		objectNode.put("relCode", AdmRelationTypeEnum.SH2SP.getRelCode());
-		queryCriteria.setCriteria(objectNode);
-		queryCriteria.setOnlyCount(true);
-		CommonResult<List<ObjectRelation>> result = DigitalRelationFacade.queryPrototype(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
-		long count = result == null ? 0 : (result.getCount() == null ? 0 : result.getCount());
+		long count = this.relationReportService.countRelationObject(groupCode, projectId, AdmRelationTypeEnum.SH2SP.getGraphCode(), 
+				AdmRelationTypeEnum.SH2SP.getRelCode(), null);
 		return AdmCountResponse.success(count);
 	}
 	

+ 3 - 6
src/main/java/com/persagy/proxy/adm/controller/RelationReportController.java

@@ -72,7 +72,7 @@ public class RelationReportController {
 	public AdmResponse queryCount(HttpServletRequest request) {
 		String groupCode = request.getHeader(AdmCommonConstant.GROUP_CODE_HEADER);
 		String projectId = request.getHeader(AdmCommonConstant.PROJECT_ID_HEADER);
-		// 获取此项目下所有的图类型
+		// 获取所有的图类型
 		
 		JSONObject result = new JSONObject();
 		result.put("count", 0);
@@ -88,11 +88,8 @@ public class RelationReportController {
 	public AdmResponse countRelationObjects(@RequestParam String type, HttpServletRequest request) {
 		String groupCode = request.getHeader(AdmCommonConstant.GROUP_CODE_HEADER);
 		String projectId = request.getHeader(AdmCommonConstant.PROJECT_ID_HEADER);
-		long count = this.relationObjectContext.countRelationObjects(groupCode, projectId, type);
-		JSONObject result = new JSONObject();
-		result.put("count", count);
-		result.put("relationType", type);
-		return AdmResponse.success(Lists.newArrayList(result));
+		ObjectNode objectNode = this.relationReportService.getRelationProjectCal(groupCode, projectId, type);
+ 		return AdmResponse.success(Lists.newArrayList(objectNode));
 	}
 	
 	/**

+ 54 - 1
src/main/java/com/persagy/proxy/adm/service/IRelationReportService.java

@@ -17,6 +17,59 @@ import com.persagy.proxy.adm.model.AdmRelationObject;
 public interface IRelationReportService {
 
 	/**
+	 * 根据条件查询对应的边类型数据
+	 * 
+	 * @param groupCode
+	 * @param graphCode
+	 * @param relCode
+	 */
+	void getGraphRelDefine(String groupCode, String graphCode, String relCode);
+	
+	/**
+	 * 获取项目计算关系
+	 * 
+	 * @param groupCode
+	 * @param projectId
+	 * @param relType	ADM-类型
+	 * @return
+	 */
+	ObjectNode getRelationProjectCal(String groupCode, String projectId, String relType);
+	
+	/**
+	 * 获取项目计算关系
+	 * 
+	 * @param groupCode
+	 * @param projectId
+	 * @param graphCode
+	 * @param relCode
+	 * @param zoneType
+	 * @return
+	 */
+	ObjectNode getRelationProjectCal(String groupCode, String projectId, String graphCode, String relCode, String zoneType);
+	
+	/**
+	 * 统计某类型下的关系数量
+	 * 
+	 * @param groupCode
+	 * @param projectId
+	 * @param graphCode
+	 * @param relCode
+	 * @param zoneType 业务分区类型
+	 */
+	long countRelationObject(String groupCode, String projectId, String graphCode, String relCode, String zoneType);
+	
+	/**
+	 * 统计某类型下的对象数量
+	 * 
+	 * @param groupCode
+	 * @param projectId
+	 * @param classCode
+	 * @param objType
+	 * @return
+	 */
+	long countObject(String groupCode, String projectId, String classCode, String objType);
+	
+	/**
 	 * 获取指定对象信息
 	 * 
 	 * @param groupCode
@@ -75,5 +128,5 @@ public interface IRelationReportService {
 	 * @return 可以被直接导出的数据集
 	 */
 	List<AdmRelationObject> reportRelationObject(String groupCode, String projectId, String relType, String code, String zoneType);
-	
+
 }

+ 107 - 22
src/main/java/com/persagy/proxy/adm/service/impl/RelationReportService.java

@@ -11,12 +11,14 @@ import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.google.common.collect.Lists;
 import com.persagy.dmp.basic.model.QueryCriteria;
 import com.persagy.dmp.common.helper.SpringHelper;
+import com.persagy.dmp.common.model.response.CommonResult;
 import com.persagy.dmp.digital.client.DigitalObjectFacade;
 import com.persagy.dmp.digital.client.DigitalRelationFacade;
+import com.persagy.dmp.digital.client.DigitalRelationProjectCalFacade;
 import com.persagy.dmp.digital.entity.ObjectRelation;
 import com.persagy.proxy.adm.constant.AdmCommonConstant;
 import com.persagy.proxy.adm.constant.AdmRelationTypeEnum;
-import com.persagy.proxy.adm.constant.RelCodeEnum;
+import com.persagy.proxy.adm.constant.ObjTypeMapping;
 import com.persagy.proxy.adm.model.AdmRelationObject;
 import com.persagy.proxy.adm.service.IRelationReportService;
 import com.persagy.proxy.adm.strategy.RelationObjectContext;
@@ -38,11 +40,6 @@ import lombok.extern.slf4j.Slf4j;
 @Service
 public class RelationReportService implements IRelationReportService {
 
-	public static final String cADID = "cADID";
-	
-	public static final String pe2bd = "pe2bd";
-	public static final String pe2fl = "pe2fl";
-
 	@Value("${middleware.group.code}")
 	private String defaultCode;
 
@@ -50,12 +47,103 @@ public class RelationReportService implements IRelationReportService {
 	private RelationObjectContext relationObjectContext;
 	
 	@Override
+	public void getGraphRelDefine(String groupCode, String graphCode, String relCode) {
+		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
+		QueryCriteria queryCriteria = new QueryCriteria();
+		ObjectNode criteria = objectMapper.createObjectNode();
+		if (StrUtil.isNotBlank(graphCode)) {
+			criteria.put("graphCode", graphCode);
+		}
+		if (StrUtil.isNotBlank(relCode)) {
+			criteria.put("relCode", relCode);
+		}
+		queryCriteria.setCriteria(criteria);
+	}
+	
+	@Override
+	public ObjectNode getRelationProjectCal(String groupCode, String projectId, String relType) {
+		AdmRelationTypeEnum relationTypeEnum = AdmCommonConstant.RELATION_TYPE_MAP.get(relType);
+		if (relationTypeEnum == null) {
+			return null;
+		}
+		
+		ObjectNode objectNode = this.getRelationProjectCal(groupCode, projectId, relationTypeEnum.getGraphCode(), relationTypeEnum.getRelCode(), null);
+		if (objectNode != null) {
+			String zoneType = objectNode.get("zoneType") == null ? null : objectNode.get("zoneType").asText();
+			long count = this.countRelationObject(groupCode, projectId, relationTypeEnum.getGraphCode(), relationTypeEnum.getRelCode(), zoneType);
+			objectNode.put("count", count);
+			objectNode.put("relationType", relType);
+			
+			// 获取此图类型和边类型对应的数据记录
+			
+			String prefix = ObjTypeMapping.getRelCodePrefix(relationTypeEnum.getRelCode());
+			String suffix = ObjTypeMapping.getRelCodeSuffix(relationTypeEnum.getRelCode());
+			objectNode.put("mainObject", ObjTypeMapping.PREFIX_NAME.get(prefix));
+			objectNode.put("fromObject", ObjTypeMapping.PREFIX_NAME.get(suffix));
+			objectNode.put("relationTypeCode", relationTypeEnum.getRelCode());
+			boolean automatic = objectNode.get("automaticFlag") == null ? false : objectNode.get("automaticFlag").asBoolean(false);
+			objectNode.put("automatic", automatic);
+		}
+		
+		return objectNode;
+	}
+	
+	@Override
+	public ObjectNode getRelationProjectCal(String groupCode, String projectId, String graphCode, String relCode, String zoneType) {
+		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
+		QueryCriteria queryCriteria = new QueryCriteria();
+		ObjectNode criteria = objectMapper.createObjectNode();
+		criteria.put("graphCode", graphCode);
+		criteria.put("relCode", relCode);
+		if (StrUtil.isNotBlank(zoneType)) {
+			criteria.put("zoneType", zoneType);
+		}
+		queryCriteria.setCriteria(criteria);
+		List<ObjectNode> objectNodes = DigitalRelationProjectCalFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
+		if (CollectionUtil.isEmpty(objectNodes)) {
+			return null;
+		}
+		return objectNodes.get(0);
+	}
+	
+	@Override
+	public long countRelationObject(String groupCode, String projectId, String graphCode, String relCode, String zoneType) {
+		QueryCriteria queryCriteria = new QueryCriteria();
+		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
+		ObjectNode criteria = objectMapper.createObjectNode();
+		criteria.put("graphCode", graphCode);
+		criteria.put("relCode", relCode);
+		if (StrUtil.isNotBlank(zoneType)) {
+			criteria.put("relValue", zoneType);
+		}
+		queryCriteria.setCriteria(criteria);
+		queryCriteria.setOnlyCount(true);
+		CommonResult<List<ObjectRelation>> result = DigitalRelationFacade.queryPrototype(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
+		return result == null ? 0 : (result.getCount() == null ? 0 : result.getCount());
+	}
+	
+	@Override
+	public long countObject(String groupCode, String projectId, String classCode, String objType) {
+		QueryCriteria queryCriteria = new QueryCriteria();
+		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
+		ObjectNode criteria = objectMapper.createObjectNode();
+		criteria.put("classCode", classCode);
+		if (StrUtil.isNotBlank(objType)) {
+			criteria.put("objType", objType);
+		}
+		queryCriteria.setCriteria(criteria);
+		queryCriteria.setOnlyCount(true);
+		CommonResult<List<ObjectNode>> result = DigitalObjectFacade.queryPrototype(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
+		return result == null ? 0 : (result.getCount() == null ? 0 : result.getCount());
+	}
+	
+	@Override
 	public ObjectNode getObjectNode(String groupCode, String projectId, String id) {
 		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
 		QueryCriteria queryCriteria = new QueryCriteria();
-		ObjectNode objectNode = objectMapper.createObjectNode();
-		objectNode.put("id", id);
-		queryCriteria.setCriteria(objectNode);
+		ObjectNode criteria = objectMapper.createObjectNode();
+		criteria.put("id", id);
+		queryCriteria.setCriteria(criteria);
 		List<ObjectNode> objectNodes = DigitalObjectFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
 		return CollectionUtil.isEmpty(objectNodes) ? objectMapper.createObjectNode() : objectNodes.get(0); 
 	}
@@ -72,10 +160,10 @@ public class RelationReportService implements IRelationReportService {
 		
 		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
 		QueryCriteria queryCriteria = new QueryCriteria();
-		ObjectNode objectNode = objectMapper.createObjectNode();
-		objectNode.put(key, value);
-		objectNode.put("objType", objType);
-		queryCriteria.setCriteria(objectNode);
+		ObjectNode criteria = objectMapper.createObjectNode();
+		criteria.put(key, value);
+		criteria.put("objType", objType);
+		queryCriteria.setCriteria(criteria);
 		List<ObjectNode> objectNodes = DigitalObjectFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
 		return objectNodes;
 	}
@@ -88,12 +176,12 @@ public class RelationReportService implements IRelationReportService {
 		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
 		
 		QueryCriteria queryCriteria = new QueryCriteria();
-		ObjectNode objectNode = objectMapper.createObjectNode();
-		objectNode.put("graphCode", graphCode);
-		objectNode.put("relCode", relCode);
-		objectNode.put("objFrom", objFrom);
-		objectNode.put("objTo", objTo);
-		queryCriteria.setCriteria(objectNode);
+		ObjectNode criteria = objectMapper.createObjectNode();
+		criteria.put("graphCode", graphCode);
+		criteria.put("relCode", relCode);
+		criteria.put("objFrom", objFrom);
+		criteria.put("objTo", objTo);
+		queryCriteria.setCriteria(criteria);
 		List<ObjectRelation> objectRelations = DigitalRelationFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
 		if (CollectionUtil.isEmpty(objectRelations)) {
 			return objectMapper.createObjectNode();
@@ -125,9 +213,6 @@ public class RelationReportService implements IRelationReportService {
 	@Override
 	public List<AdmRelationObject> reportRelationObject(String groupCode, String projectId, String relType, String code, String zoneType) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
-		if (AdmRelationTypeEnum.EQ2SP_SENSORRELATIONSHIP_SS2SP.getRelationType().equals(relType)){
-			relType = RelCodeEnum.Eq2Sp.name();
-        }
 		log.info("下载报表: groupCode[{}], projectId[{}], relType[{}], code[{}]", groupCode, projectId, relType, code);
 		return this.relationObjectContext.findRelationObject(groupCode, projectId, relType);
 	}

+ 1 - 1
src/main/java/com/persagy/proxy/adm/strategy/relationdata/RelationObjectStrategy.java

@@ -26,7 +26,7 @@ public interface RelationObjectStrategy {
 	
 	ObjectMapper OBJECT_MAPPER = SpringHelper.getBean(ObjectMapper.class);
 	
-	Map<String, String> OBJNAME_2_TYPE = new HashMap<String,String>(){
+	static Map<String, String> OBJNAME_2_TYPE = new HashMap<String,String>(){
 		private static final long serialVersionUID = 1L;
 		{
             put("对象ID", "id");