|
|
|
@ -279,7 +279,8 @@ public class ProcessDefinitionServiceImpl extends BaseServiceImpl implements Pro
|
|
|
|
|
return createDagDefine(loginUser, taskRelationList, processDefinition, taskDefinitionLogs, otherParamsJson); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private Map<String, Object> createDagDefine(User loginUser, |
|
|
|
|
@Override |
|
|
|
|
public Map<String, Object> createDagDefine(User loginUser, |
|
|
|
|
List<ProcessTaskRelationLog> taskRelationList, |
|
|
|
|
ProcessDefinition processDefinition, |
|
|
|
|
List<TaskDefinitionLog> taskDefinitionLogs, String otherParamsJson) { |
|
|
|
@ -310,7 +311,9 @@ public class ProcessDefinitionServiceImpl extends BaseServiceImpl implements Pro
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private Map<String, Object> checkTaskDefinitionList(List<TaskDefinitionLog> taskDefinitionLogs, String taskDefinitionJson) { |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public Map<String, Object> checkTaskDefinitionList(List<TaskDefinitionLog> taskDefinitionLogs, String taskDefinitionJson) { |
|
|
|
|
Map<String, Object> result = new HashMap<>(); |
|
|
|
|
try { |
|
|
|
|
if (taskDefinitionLogs.isEmpty()) { |
|
|
|
@ -338,7 +341,8 @@ public class ProcessDefinitionServiceImpl extends BaseServiceImpl implements Pro
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private Map<String, Object> checkTaskRelationList(List<ProcessTaskRelationLog> taskRelationList, String taskRelationJson, List<TaskDefinitionLog> taskDefinitionLogs) { |
|
|
|
|
@Override |
|
|
|
|
public Map<String, Object> checkTaskRelationList(List<ProcessTaskRelationLog> taskRelationList, String taskRelationJson, List<TaskDefinitionLog> taskDefinitionLogs) { |
|
|
|
|
Map<String, Object> result = new HashMap<>(); |
|
|
|
|
try { |
|
|
|
|
if (taskRelationList == null || taskRelationList.isEmpty()) { |
|
|
|
@ -614,7 +618,8 @@ public class ProcessDefinitionServiceImpl extends BaseServiceImpl implements Pro
|
|
|
|
|
return updateDagDefine(loginUser, taskRelationList, processDefinition, processDefinitionDeepCopy, taskDefinitionLogs, otherParamsJson); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private Map<String, Object> updateDagDefine(User loginUser, |
|
|
|
|
@Override |
|
|
|
|
public Map<String, Object> updateDagDefine(User loginUser, |
|
|
|
|
List<ProcessTaskRelationLog> taskRelationList, |
|
|
|
|
ProcessDefinition processDefinition, |
|
|
|
|
ProcessDefinition processDefinitionDeepCopy, |
|
|
|
@ -863,7 +868,7 @@ public class ProcessDefinitionServiceImpl extends BaseServiceImpl implements Pro
|
|
|
|
|
/** |
|
|
|
|
* download the process definition file |
|
|
|
|
*/ |
|
|
|
|
private void downloadProcessDefinitionFile(HttpServletResponse response, List<DagDataSchedule> dagDataSchedules) { |
|
|
|
|
public void downloadProcessDefinitionFile(HttpServletResponse response, List<DagDataSchedule> dagDataSchedules) { |
|
|
|
|
response.setContentType(MediaType.APPLICATION_JSON_UTF8_VALUE); |
|
|
|
|
BufferedOutputStream buff = null; |
|
|
|
|
ServletOutputStream out = null; |
|
|
|
@ -1143,7 +1148,7 @@ public class ProcessDefinitionServiceImpl extends BaseServiceImpl implements Pro
|
|
|
|
|
/** |
|
|
|
|
* check and import
|
|
|
|
|
*/ |
|
|
|
|
private boolean checkAndImport(User loginUser, long projectCode, Map<String, Object> result, DagDataSchedule dagDataSchedule, String otherParamsJson) { |
|
|
|
|
public boolean checkAndImport(User loginUser, long projectCode, Map<String, Object> result, DagDataSchedule dagDataSchedule, String otherParamsJson) { |
|
|
|
|
if (!checkImportanceParams(dagDataSchedule, result)) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
@ -1632,7 +1637,7 @@ public class ProcessDefinitionServiceImpl extends BaseServiceImpl implements Pro
|
|
|
|
|
* @param taskNodeResponseList task node response list |
|
|
|
|
* @return if graph has cycle flag |
|
|
|
|
*/ |
|
|
|
|
private boolean graphHasCycle(List<TaskNode> taskNodeResponseList) { |
|
|
|
|
public boolean graphHasCycle(List<TaskNode> taskNodeResponseList) { |
|
|
|
|
DAG<String, TaskNode, String> graph = new DAG<>(); |
|
|
|
|
// Fill the vertices
|
|
|
|
|
for (TaskNode taskNodeResponse : taskNodeResponseList) { |
|
|
|
@ -1733,7 +1738,8 @@ public class ProcessDefinitionServiceImpl extends BaseServiceImpl implements Pro
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void doBatchOperateProcessDefinition(User loginUser, |
|
|
|
|
@Override |
|
|
|
|
public void doBatchOperateProcessDefinition(User loginUser, |
|
|
|
|
long targetProjectCode, |
|
|
|
|
List<String> failedProcessList, |
|
|
|
|
String processDefinitionCodes, |
|
|
|
@ -2039,7 +2045,8 @@ public class ProcessDefinitionServiceImpl extends BaseServiceImpl implements Pro
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private Map<String, Object> createDagSchedule(User loginUser, ProcessDefinition processDefinition, String scheduleJson) { |
|
|
|
|
@Override |
|
|
|
|
public Map<String, Object> createDagSchedule(User loginUser, ProcessDefinition processDefinition, String scheduleJson) { |
|
|
|
|
Map<String, Object> result = new HashMap<>(); |
|
|
|
|
Schedule scheduleObj = JSONUtils.parseObject(scheduleJson, Schedule.class); |
|
|
|
|
if (scheduleObj == null) { |
|
|
|
@ -2162,7 +2169,8 @@ public class ProcessDefinitionServiceImpl extends BaseServiceImpl implements Pro
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private Map<String, Object> updateDagSchedule(User loginUser, |
|
|
|
|
|
|
|
|
|
public Map<String, Object> updateDagSchedule(User loginUser, |
|
|
|
|
long projectCode, |
|
|
|
|
long processDefinitionCode, |
|
|
|
|
String scheduleJson) { |
|
|
|
|