RelationObjectContext.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. package com.persagy.proxy.adm.strategy;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import java.util.Map;
  5. import java.util.Set;
  6. import javax.annotation.Resource;
  7. import org.springframework.stereotype.Component;
  8. import com.fasterxml.jackson.databind.node.ObjectNode;
  9. import com.google.common.collect.Lists;
  10. import com.persagy.dmp.basic.dto.RequestData;
  11. import com.persagy.dmp.digital.entity.ObjectDigital;
  12. import com.persagy.proxy.adm.constant.AdmRelationType;
  13. import com.persagy.proxy.adm.constant.AdmRelationTypeEnum;
  14. import com.persagy.proxy.adm.strategy.relationdata.RelationObjectStrategy;
  15. import com.persagy.proxy.report.model.AdmRelationObject;
  16. /**
  17. * 获取关系对象的上下文类
  18. *
  19. * @version 1.0.0
  20. * @company persagy
  21. * @author zhangqiankun
  22. * @date 2021年9月2日 下午10:44:32
  23. */
  24. @Component
  25. public class RelationObjectContext {
  26. /**
  27. * 策略执行类
  28. */
  29. private Map<String, RelationObjectStrategy> relationObjectStrategyMap;
  30. /**
  31. * @param relationObjectStrategyMap
  32. */
  33. @Resource
  34. public void relationObjectStrategyMap(Map<String, RelationObjectStrategy> relationObjectStrategyMap) {
  35. this.relationObjectStrategyMap = relationObjectStrategyMap;
  36. }
  37. /**
  38. * 获取关系对象数据
  39. *
  40. * @param groupCode
  41. * @param projectId
  42. * @param relType graphCode_relCode
  43. * @return
  44. */
  45. public List<AdmRelationObject> exportRelationObject(String groupCode, String projectId, String relType) {
  46. RelationObjectStrategy strategy = this.relationObjectStrategyMap.get(relType);
  47. return strategy == null ? Lists.newArrayList() : strategy.exportRelationObject(groupCode, projectId);
  48. }
  49. /**
  50. * 检查关联对象的合法性
  51. *
  52. * @param relationObject 当前需要校验的对象
  53. * @param groupCode
  54. * @param projectId
  55. * @param relType graphCode_relCode
  56. * @param code 获取对象的依据
  57. * @param admRelType ADM定义的类型
  58. * @return String - 校验失败的原因, ObjectNode -- BDTP接口的参数,不会返回null,请用instanceOf 判断返回值
  59. */
  60. public Object checkRelationObject(AdmRelationObject relationObject, String groupCode, String projectId, String relType, String code, AdmRelationTypeEnum typeEnum) {
  61. RelationObjectStrategy strategy = this.relationObjectStrategyMap.get(relType);
  62. if (strategy == null && typeEnum != null) {
  63. strategy = this.relationObjectStrategyMap.get(AdmRelationType.DEFAULT_RELATION_OBJECT);
  64. }
  65. return strategy == null ? "不存在此类型" : strategy.beforeSaveRelationObject(relationObject, groupCode, projectId, code, typeEnum);
  66. }
  67. /**
  68. * 批量保存对象之间的关系
  69. *
  70. * @param admRelationObject
  71. * @param groupCode
  72. * @param projectId
  73. * @param relType graphCode_relCode
  74. * @return
  75. */
  76. public boolean saveRelationObjects(List<ObjectNode> relationObjects, String groupCode, String projectId, String relType) {
  77. RelationObjectStrategy strategy = this.relationObjectStrategyMap.get(relType);
  78. if (strategy == null) {
  79. strategy = this.relationObjectStrategyMap.get(AdmRelationType.DEFAULT_RELATION_OBJECT);
  80. }
  81. return strategy == null ? false : strategy.saveRelationObjects(relationObjects, groupCode, projectId);
  82. }
  83. /**
  84. * 统计关系总数
  85. *
  86. * @param groupCode
  87. * @param projectId
  88. * @param relType graphCode_relCode
  89. * @return
  90. */
  91. public long countRelationObjects(String groupCode, String projectId, String relType, AdmRelationTypeEnum typeEnum) {
  92. RelationObjectStrategy strategy = this.relationObjectStrategyMap.get(relType);
  93. if (strategy == null && typeEnum != null) {
  94. strategy = this.relationObjectStrategyMap.get(AdmRelationType.DEFAULT_RELATION_OBJECT);
  95. }
  96. return strategy == null ? 0 : strategy.countRelationObjects(groupCode, projectId, typeEnum);
  97. }
  98. /**
  99. * 查询全部的关系对象数据
  100. *
  101. * @param masterObjs 查询的数据集存储地方
  102. * @param requestData 请求参数
  103. * @param groupCode 集团编码
  104. * @param projectId 项目ID
  105. * @param relType graphCode_relCode
  106. * @param mainContent 主对象的筛选关键字,筛选范围为id,name,local_id,local_name,cADID.为关系左侧对象
  107. * @param slaveContent 从对象的筛选关键字.objTo对应的对象,筛选范围为id,name,local_id,local_name.为关系右侧对象
  108. */
  109. public List<ObjectDigital> queryAllRelations(String groupCode, String projectId, String relType, String mainContent, Set<String> slaveContent, AdmRelationTypeEnum typeEnum) {
  110. RelationObjectStrategy strategy = this.relationObjectStrategyMap.get(relType);
  111. if (strategy == null && typeEnum != null) {
  112. strategy = this.relationObjectStrategyMap.get(AdmRelationType.DEFAULT_RELATION_OBJECT);
  113. }
  114. return strategy == null ? Lists.newArrayList() : strategy.queryAllRelations(groupCode, projectId, mainContent, slaveContent, typeEnum);
  115. }
  116. /**
  117. * 分页查询关系对象数据
  118. *
  119. * @param masterObjs 查询的数据集存储地方
  120. * @param requestData 请求参数
  121. * @param groupCode 集团编码
  122. * @param projectId 项目ID
  123. * @param relType graphCode_relCode
  124. */
  125. public List<ObjectDigital> queryPageRelations(RequestData requestData, String groupCode, String projectId, String relType) {
  126. List<ObjectDigital> masterObjs = new ArrayList<ObjectDigital>();
  127. RelationObjectStrategy strategy = this.relationObjectStrategyMap.get(relType);
  128. if (strategy == null) {
  129. return masterObjs;
  130. }
  131. strategy.queryPageRelations(masterObjs, requestData, groupCode, projectId);
  132. return masterObjs;
  133. }
  134. }