|
@@ -8,11 +8,16 @@ import java.util.Map;
|
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
import com.persagy.dmp.basic.model.QueryCriteria;
|
|
|
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.AdmRelationTypeEnum;
|
|
|
+import com.persagy.proxy.adm.constant.ObjTypeMapping;
|
|
|
import com.persagy.proxy.adm.model.AdmRelationObject;
|
|
|
-import com.persagy.proxy.adm.service.IReportDownloadService;
|
|
|
+import com.persagy.proxy.adm.service.IRelationReportService;
|
|
|
|
|
|
import cn.hutool.core.collection.CollectionUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
|
|
|
/**
|
|
|
*
|
|
@@ -23,47 +28,27 @@ import cn.hutool.core.collection.CollectionUtil;
|
|
|
*/
|
|
|
public abstract class AbstractQueryRelationObject implements QueryRelationObjectStrategy {
|
|
|
|
|
|
- protected String groupCode;
|
|
|
+ protected IRelationReportService relationReportService;
|
|
|
|
|
|
- protected String projectId;
|
|
|
-
|
|
|
- protected IReportDownloadService reportDownloadService;
|
|
|
-
|
|
|
- public AbstractQueryRelationObject(IReportDownloadService reportDownloadService) {
|
|
|
- this.reportDownloadService = reportDownloadService;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public List<AdmRelationObject> findRelationObject(String groupCode, String projectId, String relType) {
|
|
|
- this.groupCode = groupCode;
|
|
|
- this.projectId = projectId;
|
|
|
- return this.findRelationObject(relType);
|
|
|
+ public AbstractQueryRelationObject(IRelationReportService reportDownloadService) {
|
|
|
+ this.relationReportService = reportDownloadService;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 查询出指定设备信息
|
|
|
- *
|
|
|
- * @param relType
|
|
|
- * @return 返回ADM所需要的数据
|
|
|
- */
|
|
|
- protected abstract List<AdmRelationObject> findRelationObject(String relType);
|
|
|
-
|
|
|
- /**
|
|
|
* 根据项目ID,查询出所有的对象信息
|
|
|
*
|
|
|
* @param requestData
|
|
|
- * @param relType
|
|
|
* @param extraMapping
|
|
|
* @return
|
|
|
*/
|
|
|
- protected List<AdmRelationObject> queryAllObjectInfo(QueryCriteria queryCriteria, String relType) {
|
|
|
+ protected List<AdmRelationObject> queryAllObjectInfo(QueryCriteria queryCriteria, String groupCode, String projectId) {
|
|
|
List<ObjectNode> tempList = new ArrayList<ObjectNode>();
|
|
|
|
|
|
// 获取数据
|
|
|
- this.queryPageObjectInfo(tempList, queryCriteria, queryCriteria.getPage());
|
|
|
+ this.queryPageObjectInfo(tempList, queryCriteria, groupCode, projectId, queryCriteria.getPage());
|
|
|
|
|
|
// 转换中台数据
|
|
|
- return this.handleObjectDigital(tempList, relType);
|
|
|
+ return this.handleObjectDigital(tempList, groupCode, projectId);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -76,14 +61,14 @@ public abstract class AbstractQueryRelationObject implements QueryRelationObject
|
|
|
* @param page
|
|
|
* @param pageSize
|
|
|
*/
|
|
|
- protected void queryPageObjectInfo(List<ObjectNode> tempList, QueryCriteria queryCriteria, Long page) {
|
|
|
+ protected void queryPageObjectInfo(List<ObjectNode> tempList, QueryCriteria queryCriteria, String groupCode, String projectId, Long page) {
|
|
|
queryCriteria.setPage(page);
|
|
|
List<ObjectNode> objectNodes = DigitalObjectFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
|
|
|
if (CollectionUtil.isEmpty(objectNodes)) {
|
|
|
return;
|
|
|
}
|
|
|
tempList.addAll(objectNodes);
|
|
|
- this.queryPageObjectInfo(tempList, queryCriteria, ++page);
|
|
|
+ this.queryPageObjectInfo(tempList, queryCriteria, groupCode, projectId, ++page);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -92,10 +77,9 @@ public abstract class AbstractQueryRelationObject implements QueryRelationObject
|
|
|
* @param tempList
|
|
|
* @param groupCode
|
|
|
* @param projectId
|
|
|
- * @param relType
|
|
|
* @return
|
|
|
*/
|
|
|
- private List<AdmRelationObject> handleObjectDigital(List<ObjectNode> tempList, String relType) {
|
|
|
+ private List<AdmRelationObject> handleObjectDigital(List<ObjectNode> tempList, String groupCode, String projectId) {
|
|
|
// 第一次遍历
|
|
|
// id -> object
|
|
|
Map<String, ObjectNode> tempAllMap = new HashMap<String, ObjectNode>(tempList.size());
|
|
@@ -104,18 +88,19 @@ public abstract class AbstractQueryRelationObject implements QueryRelationObject
|
|
|
tempAllMap.put(id, objectNode);
|
|
|
}
|
|
|
|
|
|
- return this.handleObjectDigital(tempAllMap, relType);
|
|
|
+ return this.handleObjectDigital(tempAllMap, groupCode, projectId);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 处理中台响应数据,转换为ADM所需要的数据
|
|
|
*
|
|
|
+ * @param groupCode
|
|
|
+ * @param projectId
|
|
|
* @param tempAllMap 对象ID -> 对象
|
|
|
- * @param relType
|
|
|
* @return 不允许返回null
|
|
|
*/
|
|
|
- protected abstract List<AdmRelationObject> handleObjectDigital(Map<String, ObjectNode> tempAllMap, String relType);
|
|
|
+ protected abstract List<AdmRelationObject> handleObjectDigital(Map<String, ObjectNode> tempAllMap, String groupCode, String projectId);
|
|
|
|
|
|
/**
|
|
|
* 封装响应数据,具体的传值,请仔细侦查,这里仅返回共有字段,特殊字段,自行赋值
|
|
@@ -162,4 +147,87 @@ public abstract class AbstractQueryRelationObject implements QueryRelationObject
|
|
|
return relationObject;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean saveRelationObjects(List<ObjectNode> relationObjects, String groupCode, String projectId) {
|
|
|
+ List<ObjectRelation> create = DigitalRelationFacade.create(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, relationObjects);
|
|
|
+ return CollectionUtil.isEmpty(create) ? false : true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 检查关系对象数据的正确性,并完成额外字段的赋值功能
|
|
|
+ *
|
|
|
+ * @param relationObject
|
|
|
+ * @param relationTypeEnum AdmRelationTypeEnum枚举类
|
|
|
+ * @param code
|
|
|
+ * @return 当为null时,检查通过,否则失败,返回失败原因
|
|
|
+ */
|
|
|
+ protected String beforeSaveRelationObject(ObjectNode objectNode, AdmRelationObject relationObject, AdmRelationTypeEnum relationTypeEnum,
|
|
|
+ String groupCode, String projectId, String code) {
|
|
|
+ if (!StrUtil.isAllNotBlank(relationObject.getMasterCode(), relationObject.getSlaveCode())) {
|
|
|
+ return "主对象和从对象的识别编码为空";
|
|
|
+ }
|
|
|
+
|
|
|
+ String relCode = relationTypeEnum.getRelCode();
|
|
|
+ String relCodePrefix = ObjTypeMapping.getRelCodePrefix(relCode);
|
|
|
+ String masterObjType = ObjTypeMapping.PREFIX_FULLNAME.get(relCodePrefix);
|
|
|
+ if (StrUtil.isBlank(masterObjType)) {
|
|
|
+ return "边类型错误";
|
|
|
+ }
|
|
|
+ String slaveObjType = ObjTypeMapping.PREFIX_FULLNAME.get(ObjTypeMapping.getRelCodePrefix(relCode));
|
|
|
+ if (StrUtil.isBlank(slaveObjType)) {
|
|
|
+ return "边类型错误";
|
|
|
+ }
|
|
|
+ // 查询出对象信息
|
|
|
+ List<ObjectNode> masters = this.relationReportService.findObjectNodes(groupCode, projectId, masterObjType, code, relationObject.getMasterCode());
|
|
|
+ if (CollectionUtil.isEmpty(masters)) {
|
|
|
+ return "未找到主对象";
|
|
|
+ }
|
|
|
+ if (masters.size() > 1) {
|
|
|
+ return "匹配到多个主对象";
|
|
|
+ }
|
|
|
+ // 查询出从对象
|
|
|
+ List<ObjectNode> slaves = this.relationReportService.findObjectNodes(groupCode, projectId, slaveObjType, code, relationObject.getSlaveCode());
|
|
|
+ if (CollectionUtil.isEmpty(slaves)) {
|
|
|
+ return "未找到从对象";
|
|
|
+ }
|
|
|
+ if (masters.size() > 1) {
|
|
|
+ return "匹配到多个从对象";
|
|
|
+ }
|
|
|
+
|
|
|
+ // 添加关系数据
|
|
|
+ ObjectNode master = masters.get(0);
|
|
|
+ ObjectNode slave = slaves.get(0);
|
|
|
+ String masterClassCode = master.get("classCode") == null ? AdmCommonConstant.EMPTY : master.get("classCode").asText();
|
|
|
+ String slaveClassCode = slave.get("classCode") == null ? AdmCommonConstant.EMPTY : slave.get("classCode").asText();
|
|
|
+
|
|
|
+ if (objectNode != null) {
|
|
|
+ String graphCode = relationTypeEnum.getGraphCode();
|
|
|
+ objectNode.put("graphId", "Gt" + graphCode + "001");
|
|
|
+ objectNode.put("graphCode", graphCode);
|
|
|
+ objectNode.put("relCode", relCode);
|
|
|
+ if ("Sp".equals(relCodePrefix)) {
|
|
|
+ relationObject.setRelVaue(masterClassCode);
|
|
|
+ }
|
|
|
+ objectNode.put("objFrom", master.get("id").asText());
|
|
|
+ objectNode.put("objTo", slave.get("id").asText());
|
|
|
+ }
|
|
|
+
|
|
|
+ return this.checkRelationObject(master, masterClassCode, slave, slaveClassCode);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 检查关系对象数据的正确性,并可完成额外字段的赋值功能
|
|
|
+ * 默认不实现,由子类实现
|
|
|
+ *
|
|
|
+ * @param master
|
|
|
+ * @param masterClassCode
|
|
|
+ * @param slave
|
|
|
+ * @param slaveClassCode
|
|
|
+ * @return 当为null时,检查通过,否则失败,返回失败原因
|
|
|
+ */
|
|
|
+ protected String checkRelationObject(ObjectNode master, String masterClassCode, ObjectNode slave, String slaveClassCode) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
}
|