zhangqiankun 3 jaren geleden
bovenliggende
commit
cd47883264

+ 8 - 7
src/main/java/com/persagy/proxy/adm/handler/RelationReportHandler.java

@@ -59,15 +59,16 @@ public class RelationReportHandler {
 	public List<EquipmentExcel> findEquipByNotSpace(String groupCode, String projectId) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		String equipment = AdmObjectType.EQUIPMENT.getIndex();
+		HashSet<String> equipments = Sets.newHashSet(equipment);
 		
 		// 1.获取所有的设备对象数据
-		List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, equipment, "classCode");
+		List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, equipments, Sets.newHashSet("classCode"), null);
 		if (CollectionUtil.isEmpty(equipList)) {
 			return Lists.newArrayList();
 		}
 				
 		// 2.获取所有的设备类定义的className
-		List<ObjectTypeDefine> classList = this.relationReportService.queryClassList(groupCode, projectId, null, Sets.newHashSet(equipment), null);
+		List<ObjectTypeDefine> classList = this.relationReportService.queryClassList(groupCode, projectId, null, equipments, null);
 		/** key-classCode, value-className */
 		Map<String, String> classDefine = new HashMap<String, String>();
 		for (ObjectTypeDefine objectTypeDefine : classList) {
@@ -75,7 +76,7 @@ public class RelationReportHandler {
 		}
 		
 		// 3.查询出所有的边类型为 Eq2Sp 的关系数据
-		List<ObjectRelation> relationObjects = this.relationReportService.findRelationObjects(groupCode, projectId, null, RelCodeEnum.Eq2Sp.name());
+		List<ObjectRelation> relationObjects = this.relationReportService.findRelationObjects(groupCode, projectId, null, RelCodeEnum.Eq2Sp.name(), null, null);
 		Set<String> excludeIds = new HashSet<String>();
 		if (CollectionUtil.isNotEmpty(relationObjects)) {
 			for (ObjectRelation relationInfo : relationObjects) {
@@ -97,14 +98,14 @@ public class RelationReportHandler {
 		String equipment = AdmObjectType.EQUIPMENT.getIndex();
 		
 		// 1.获取项目名称
-		List<ObjectNode> projects = this.relationReportService.queryObjects(groupCode, projectId, projectId, AdmObjectType.PROJECT.getIndex(), null, null);
+		List<ObjectNode> projects = this.relationReportService.queryObjects(groupCode, projectId, Sets.newHashSet(projectId), Sets.newHashSet(AdmObjectType.PROJECT.getIndex()), null, 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");
+		List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, Sets.newHashSet(equipment), Sets.newHashSet("classCode"), null);
 		if (CollectionUtil.isEmpty(equipList)) {
 			return Lists.newArrayList();
 		}
@@ -140,14 +141,14 @@ public class RelationReportHandler {
 		String equipment = AdmObjectType.EQUIPMENT.getIndex();
 		
 		// 1.获取项目名称
-		List<ObjectNode> projects = this.relationReportService.queryObjects(groupCode, projectId, projectId, AdmObjectType.PROJECT.getIndex(), null, null);
+		List<ObjectNode> projects = this.relationReportService.queryObjects(groupCode, projectId, Sets.newHashSet(projectId), Sets.newHashSet(AdmObjectType.PROJECT.getIndex()), null, 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");
+		List<ObjectNode> equipList = this.relationReportService.queryObjects(groupCode, projectId, null, null, Sets.newHashSet(equipment), Sets.newHashSet("classCode"), null);
 		if (CollectionUtil.isEmpty(equipList)) {
 			return Lists.newArrayList();
 		}

+ 11 - 7
src/main/java/com/persagy/proxy/adm/service/IRelationReportService.java

@@ -134,10 +134,10 @@ public interface IRelationReportService {
 	 * 
 	 * @param groupCode
 	 * @param projectId
-	 * @param id
+	 * @param ids
 	 * @return 不会返回null
 	 */
-	ObjectNode getObjectNode(String groupCode, String projectId, String id);
+	List<ObjectNode> getObjectNode(String groupCode, String projectId, Set<String> ids);
 	
 	/**
 	 * 获取指定对象信息
@@ -170,13 +170,15 @@ public interface IRelationReportService {
 	 * 
 	 * @param groupCode
 	 * @param projectId
-	 * @param id
-	 * @param classCode
-	 * @param objType
+	 * @param ids
+	 * @param classCodes
+	 * @param objTypes
 	 * @param ascOrder
+	 * @param descOrder
 	 * @return
 	 */
-	List<ObjectNode> queryObjects(String groupCode, String projectId, String id, String classCode, String objType, String ascOrder);
+	List<ObjectNode> queryObjects(String groupCode, String projectId, Set<String> ids, Set<String> classCodes, Set<String> objTypes, 
+			Set<String> ascOrder, Set<String> descOrder);
 	
 	/**
 	 * 获取原始的对象关系数据
@@ -185,9 +187,11 @@ public interface IRelationReportService {
 	 * @param projectId
 	 * @param graphCode
 	 * @param relCode
+	 * @param objFroms
+	 * @param objTos
 	 * @return
 	 */
-	List<ObjectRelation> findRelationObjects(String groupCode, String projectId, String graphCode, String relCode);
+	List<ObjectRelation> findRelationObjects(String groupCode, String projectId, String graphCode, String relCode, Set<String> objFroms, Set<String> objTos);
 	
 	/**
 	 * 查询信息点定义

+ 73 - 20
src/main/java/com/persagy/proxy/adm/service/impl/RelationReportService.java

@@ -22,6 +22,7 @@ import com.fasterxml.jackson.core.JsonProcessingException;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import com.fasterxml.jackson.databind.node.ObjectNode;
 import com.google.common.collect.Lists;
+import com.google.common.collect.Sets;
 import com.persagy.dmp.basic.dto.GraphParentMes;
 import com.persagy.dmp.basic.dto.RequestData;
 import com.persagy.dmp.basic.model.QueryCriteria;
@@ -197,7 +198,7 @@ public class RelationReportService implements IRelationReportService {
 				String relCode = objectNode.get("relCode") == null ? null : objectNode.get("relCode").asText();
 				tempList.add(this.fillRelationProjectCal(objectNode, graphDefine.getCode(), relCode, graphRelTypeMap,relationDefineMap, groupCode, projectId));
 			}
-			graphObject.put("relationTypeProjectList", projectList);
+			graphObject.put("relationTypeProjectList", tempList);
 			resultList.add(graphObject);
 		}
 
@@ -280,16 +281,20 @@ public class RelationReportService implements IRelationReportService {
 	}
 	
 	@Override
-	public ObjectNode getObjectNode(String groupCode, String projectId, String id) {
+	public List<ObjectNode> getObjectNode(String groupCode, String projectId, Set<String> ids) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		
 		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
 		QueryCriteria queryCriteria = new QueryCriteria();
 		ObjectNode criteria = objectMapper.createObjectNode();
-		criteria.put("id", id);
+		if (CollectionUtil.isNotEmpty(ids)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", ids);
+			criteria.putPOJO("id", ids);
+		}
 		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); 
+		return objectNodes;
 	}
 	
 	@Override
@@ -329,8 +334,12 @@ public class RelationReportService implements IRelationReportService {
 		ObjectNode criteria = objectMapper.createObjectNode();
 		criteria.put("graphCode", graphCode);
 		criteria.put("relCode", relCode);
-		criteria.put("objFrom", objFrom);
-		criteria.put("objTo", objTo);
+		if (StrUtil.isNotBlank(objFrom)) {
+			criteria.put("objFrom", objFrom);
+		}
+		if (StrUtil.isNotBlank(objTo)) {
+			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)) {
@@ -340,30 +349,41 @@ public class RelationReportService implements IRelationReportService {
 		// 获取关联对象的本地名称
 		ObjectRelation objectRelation = objectRelations.get(0);
 		String relationId = StrUtil.isBlank(objFrom) ? objectRelation.getObjFrom() : objectRelation.getObjTo();
-		return this.getObjectNode(groupCode, projectId, relationId); 
+		List<ObjectNode> objectNodes = this.getObjectNode(groupCode, projectId, Sets.newHashSet(relationId));
+		return CollectionUtil.isEmpty(objectNodes) ? objectMapper.createObjectNode() : objectNodes.get(0);
 	}
 
 	@Override
-	public List<ObjectNode> queryObjects(String groupCode, String projectId, String id, String classCode, String objType, String ascOrder) {
+	public List<ObjectNode> queryObjects(String groupCode, String projectId, Set<String> ids, Set<String> classCodes, Set<String> objTypes, 
+			Set<String> ascOrder, Set<String> descOrder) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		
 		ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
 		QueryCriteria objectCriteria = new QueryCriteria();
 		ObjectNode object = objectMapper.createObjectNode();
-		if (StrUtil.isNotBlank(id)) {
-			object.put("id", id);
+		if (CollectionUtil.isNotEmpty(ids)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", ids);
+			object.putPOJO("id", ids);
 		}
-		if (StrUtil.isNotBlank(classCode)) {
-			object.put("classCode", classCode);
+		if (CollectionUtil.isNotEmpty(classCodes)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", classCodes);
+			object.putPOJO("classCode", classCodes);
 		}
-		if (StrUtil.isNotBlank(objType)) {
-			object.put("objType", objType);
+		if (CollectionUtil.isNotEmpty(objTypes)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", objTypes);
+			object.putPOJO("objType", objTypes);
 		}
 		objectCriteria.setPage(1L);
 		objectCriteria.setSize(500L);
 		objectCriteria.setCriteria(object);
-		if (StrUtil.isNotBlank(ascOrder)) {
-			objectCriteria.setOrders(Collections.singletonList(OrderItem.asc(ascOrder)));
+		if (CollectionUtil.isNotEmpty(ascOrder)) {
+			objectCriteria.setOrders(OrderItem.ascs(ascOrder.toArray(new String[ascOrder.size()])));
+		}
+		if (CollectionUtil.isNotEmpty(descOrder)) {
+			objectCriteria.setOrders(OrderItem.descs(descOrder.toArray(new String[descOrder.size()])));
 		}
 		List<ObjectNode> all = new ArrayList<ObjectNode>();
 		this.queryPageObjects(all, objectCriteria, groupCode, projectId);
@@ -371,7 +391,7 @@ public class RelationReportService implements IRelationReportService {
 	}
 	
 	@Override
-	public List<ObjectRelation> findRelationObjects(String groupCode, String projectId, String graphCode, String relCode) {
+	public List<ObjectRelation> findRelationObjects(String groupCode, String projectId, String graphCode, String relCode, Set<String> objFroms, Set<String> objTos) {
 		groupCode = StrUtil.isBlank(groupCode) ? defaultCode : groupCode;
 		
 		// 获取出关联对象
@@ -385,9 +405,24 @@ public class RelationReportService implements IRelationReportService {
 		if (StrUtil.isNotBlank(relCode)) {
 			criteria.put("relCode", relCode);
 		}
+		if (CollectionUtil.isNotEmpty(objFroms)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", objFroms);
+			criteria.putPOJO("objFrom", objFroms);
+		}
+		if (CollectionUtil.isNotEmpty(objTos)) {
+			JSONObject arrays = new JSONObject();
+			arrays.put("$in", objTos);
+			criteria.putPOJO("objTo", objTos);
+		}
+		
+		queryCriteria.setPage(1L);
+		queryCriteria.setSize(500L);
 		queryCriteria.setCriteria(criteria);
-		List<ObjectRelation> objectRelations = DigitalRelationFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
-		return CollectionUtil.isEmpty(objectRelations) ? Lists.newArrayList() : objectRelations;
+		
+		List<ObjectRelation> all = new ArrayList<ObjectRelation>();
+		this.queryPageRelations(all, queryCriteria, groupCode, projectId);
+		return all;
 	}
 	
 	@Override
@@ -779,12 +814,30 @@ public class RelationReportService implements IRelationReportService {
 		objectCriteria.setPage((objectCriteria.getPage() + 1));
 		this.queryPageObjects(all, objectCriteria, groupCode, projectId);
 	}
+
+	/**
+	 * 分页查询关系数据
+	 * 
+	 * @param all
+	 * @param queryCriteria
+	 * @param groupCode
+	 * @param projectId
+	 */
+	private void queryPageRelations(List<ObjectRelation> all, QueryCriteria queryCriteria, String groupCode, String projectId) {
+		List<ObjectRelation> objectRelations = DigitalRelationFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
+		if (CollectionUtil.isEmpty(objectRelations)) {
+			return;
+		}
+		all.addAll(objectRelations);
+		queryCriteria.setPage((queryCriteria.getPage() + 1));
+		this.queryPageRelations(all, queryCriteria, groupCode, projectId);
+	}
 	
 	/**
 	 * 分页查询信息点定义数据
 	 * 
 	 * @param all
-	 * @param classCriteria
+	 * @param queryCriteria
 	 * @param groupCode
 	 * @param projectId
 	 */