RelationObjectContext.java 4.1 KB

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