AbstractQueryRelationObject.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package com.persagy.proxy.adm.strategy.relationdata;
  2. import java.util.ArrayList;
  3. import java.util.HashMap;
  4. import java.util.List;
  5. import java.util.Map;
  6. import com.fasterxml.jackson.databind.node.ObjectNode;
  7. import com.persagy.dmp.basic.model.QueryCriteria;
  8. import com.persagy.dmp.digital.client.DigitalObjectFacade;
  9. import com.persagy.proxy.adm.constant.AdmCommonConstant;
  10. import com.persagy.proxy.adm.model.AdmRelationObject;
  11. import com.persagy.proxy.adm.service.IReportDownloadService;
  12. import cn.hutool.core.collection.CollectionUtil;
  13. /**
  14. *
  15. * @version 1.0.0
  16. * @company persagy
  17. * @author zhangqiankun
  18. * @date 2021年9月2日 下午11:00:26
  19. */
  20. public abstract class AbstractQueryRelationObject implements QueryRelationObjectStrategy {
  21. protected String groupCode;
  22. protected String projectId;
  23. protected IReportDownloadService reportDownloadService;
  24. public AbstractQueryRelationObject(IReportDownloadService reportDownloadService) {
  25. this.reportDownloadService = reportDownloadService;
  26. }
  27. @Override
  28. public List<AdmRelationObject> findRelationObject(String groupCode, String projectId, String relType) {
  29. this.groupCode = groupCode;
  30. this.projectId = projectId;
  31. return this.findRelationObject(relType);
  32. }
  33. /**
  34. * 查询出指定设备信息
  35. *
  36. * @param relType
  37. * @return 返回ADM所需要的数据
  38. */
  39. protected abstract List<AdmRelationObject> findRelationObject(String relType);
  40. /**
  41. * 根据项目ID,查询出所有的对象信息
  42. *
  43. * @param requestData
  44. * @param relType
  45. * @param extraMapping
  46. * @return
  47. */
  48. protected List<AdmRelationObject> queryAllObjectInfo(QueryCriteria queryCriteria, String relType) {
  49. List<ObjectNode> tempList = new ArrayList<ObjectNode>();
  50. // 获取数据
  51. this.queryPageObjectInfo(tempList, queryCriteria, queryCriteria.getPage());
  52. // 转换中台数据
  53. return this.handleObjectDigital(tempList, relType);
  54. }
  55. /**
  56. * 分页查询
  57. *
  58. * @param tempList
  59. * @param queryCriteria
  60. * @param groupCode
  61. * @param projectId
  62. * @param page
  63. * @param pageSize
  64. */
  65. protected void queryPageObjectInfo(List<ObjectNode> tempList, QueryCriteria queryCriteria, Long page) {
  66. queryCriteria.setPage(page);
  67. List<ObjectNode> objectNodes = DigitalObjectFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
  68. if (CollectionUtil.isEmpty(objectNodes)) {
  69. return;
  70. }
  71. tempList.addAll(objectNodes);
  72. this.queryPageObjectInfo(tempList, queryCriteria, ++page);
  73. }
  74. /**
  75. * 处理中台响应数据,转换为ADM所需要的数据
  76. *
  77. * @param tempList
  78. * @param groupCode
  79. * @param projectId
  80. * @param relType
  81. * @return
  82. */
  83. private List<AdmRelationObject> handleObjectDigital(List<ObjectNode> tempList, String relType) {
  84. // 第一次遍历
  85. // id -> object
  86. Map<String, ObjectNode> tempAllMap = new HashMap<String, ObjectNode>(tempList.size());
  87. for (ObjectNode objectNode : tempList) {
  88. String id = objectNode.get("id").asText();
  89. tempAllMap.put(id, objectNode);
  90. }
  91. return this.handleObjectDigital(tempAllMap, relType);
  92. }
  93. /**
  94. * 处理中台响应数据,转换为ADM所需要的数据
  95. *
  96. * @param tempAllMap 对象ID -> 对象
  97. * @param relType
  98. * @return 不允许返回null
  99. */
  100. protected abstract List<AdmRelationObject> handleObjectDigital(Map<String, ObjectNode> tempAllMap, String relType);
  101. /**
  102. * 封装响应数据,具体的传值,请仔细侦查,这里仅返回共有字段,特殊字段,自行赋值
  103. *
  104. * @param master
  105. * @param masterType
  106. * @param slave
  107. * @param slaveType
  108. * @return
  109. */
  110. protected AdmRelationObject convertObject(ObjectNode master, String masterType, ObjectNode slave, String slaveType) {
  111. AdmRelationObject relationObject = new AdmRelationObject();
  112. // ID
  113. String masterId = master.get("id") == null ? AdmCommonConstant.EMPTY : master.get("id").asText();
  114. relationObject.setMasterCode(masterId);
  115. relationObject.setMasterId(masterId);
  116. // 图纸编码
  117. relationObject.setMasterCadId(master.get("cADID") == null ? AdmCommonConstant.EMPTY : master.get("cADID").asText());
  118. // 名称
  119. relationObject.setMasterName(master.get("name") == null ? AdmCommonConstant.EMPTY : master.get("name").asText());
  120. // 本地ID
  121. relationObject.setMasterLocalId(master.get("localId") == null ? AdmCommonConstant.EMPTY : master.get("localId").asText());
  122. // 本地名称
  123. relationObject.setMasterLocalName(master.get("localName") == null ? AdmCommonConstant.EMPTY : master.get("localName").asText());
  124. // 类型
  125. relationObject.setMasterType(masterType);
  126. // ID
  127. String slaveId = slave.get("id") == null ? AdmCommonConstant.EMPTY : slave.get("id").asText();
  128. relationObject.setSlaveCode(slaveId);
  129. relationObject.setSlaveId(slaveId);
  130. // 图纸编码
  131. relationObject.setSlaveCadId(master.get("cADID") == null ? AdmCommonConstant.EMPTY : master.get("cADID").asText());
  132. // 名称
  133. relationObject.setSlaveName(slave.get("name") == null ? AdmCommonConstant.EMPTY : slave.get("name").asText());
  134. // 本地ID
  135. relationObject.setSlaveLocalId(slave.get("localId") == null ? AdmCommonConstant.EMPTY : slave.get("localId").asText());
  136. // 本地名称
  137. relationObject.setSlaveLocalName(slave.get("localName") == null ? AdmCommonConstant.EMPTY : slave.get("localName").asText());
  138. // 类型
  139. relationObject.setSlaveType(slaveType);
  140. return relationObject;
  141. }
  142. }