|
|
@ -384,17 +384,11 @@ public class ProcessService { |
|
|
|
* @param processInstanceId processInstanceId |
|
|
|
* @param processInstanceId processInstanceId |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public void removeTaskLogFile(Integer processInstanceId) { |
|
|
|
public void removeTaskLogFile(Integer processInstanceId) { |
|
|
|
|
|
|
|
List<TaskInstance> taskInstanceList = findValidTaskListByProcessId(processInstanceId); |
|
|
|
LogClientService logClient = null; |
|
|
|
if (CollectionUtils.isEmpty(taskInstanceList)) { |
|
|
|
|
|
|
|
return; |
|
|
|
try { |
|
|
|
} |
|
|
|
logClient = new LogClientService(); |
|
|
|
try (LogClientService logClient = new LogClientService()) { |
|
|
|
List<TaskInstance> taskInstanceList = findValidTaskListByProcessId(processInstanceId); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (CollectionUtils.isEmpty(taskInstanceList)) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (TaskInstance taskInstance : taskInstanceList) { |
|
|
|
for (TaskInstance taskInstance : taskInstanceList) { |
|
|
|
String taskLogPath = taskInstance.getLogPath(); |
|
|
|
String taskLogPath = taskInstance.getLogPath(); |
|
|
|
if (StringUtils.isEmpty(taskInstance.getHost())) { |
|
|
|
if (StringUtils.isEmpty(taskInstance.getHost())) { |
|
|
@ -408,14 +402,9 @@ public class ProcessService { |
|
|
|
// compatible old version
|
|
|
|
// compatible old version
|
|
|
|
ip = taskInstance.getHost(); |
|
|
|
ip = taskInstance.getHost(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// remove task log from loggerserver
|
|
|
|
// remove task log from loggerserver
|
|
|
|
logClient.removeTaskLog(ip, port, taskLogPath); |
|
|
|
logClient.removeTaskLog(ip, port, taskLogPath); |
|
|
|
} |
|
|
|
} |
|
|
|
} finally { |
|
|
|
|
|
|
|
if (logClient != null) { |
|
|
|
|
|
|
|
logClient.close(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -435,7 +424,7 @@ public class ProcessService { |
|
|
|
* recursive query sub process definition id by parent id. |
|
|
|
* recursive query sub process definition id by parent id. |
|
|
|
* |
|
|
|
* |
|
|
|
* @param parentId parentId |
|
|
|
* @param parentId parentId |
|
|
|
* @param ids ids |
|
|
|
* @param ids ids |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public void recurseFindSubProcessId(int parentId, List<Integer> ids) { |
|
|
|
public void recurseFindSubProcessId(int parentId, List<Integer> ids) { |
|
|
|
ProcessDefinition processDefinition = processDefineMapper.selectById(parentId); |
|
|
|
ProcessDefinition processDefinition = processDefineMapper.selectById(parentId); |
|
|
@ -466,7 +455,7 @@ public class ProcessService { |
|
|
|
* create recovery waiting thread command and delete origin command at the same time. |
|
|
|
* create recovery waiting thread command and delete origin command at the same time. |
|
|
|
* if the recovery command is exists, only update the field update_time |
|
|
|
* if the recovery command is exists, only update the field update_time |
|
|
|
* |
|
|
|
* |
|
|
|
* @param originCommand originCommand |
|
|
|
* @param originCommand originCommand |
|
|
|
* @param processInstance processInstance |
|
|
|
* @param processInstance processInstance |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public void createRecoveryWaitingThreadCommand(Command originCommand, ProcessInstance processInstance) { |
|
|
|
public void createRecoveryWaitingThreadCommand(Command originCommand, ProcessInstance processInstance) { |
|
|
@ -518,7 +507,7 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* get schedule time from command |
|
|
|
* get schedule time from command |
|
|
|
* |
|
|
|
* |
|
|
|
* @param command command |
|
|
|
* @param command command |
|
|
|
* @param cmdParam cmdParam map |
|
|
|
* @param cmdParam cmdParam map |
|
|
|
* @return date |
|
|
|
* @return date |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -534,8 +523,8 @@ public class ProcessService { |
|
|
|
* generate a new work process instance from command. |
|
|
|
* generate a new work process instance from command. |
|
|
|
* |
|
|
|
* |
|
|
|
* @param processDefinition processDefinition |
|
|
|
* @param processDefinition processDefinition |
|
|
|
* @param command command |
|
|
|
* @param command command |
|
|
|
* @param cmdParam cmdParam map |
|
|
|
* @param cmdParam cmdParam map |
|
|
|
* @return process instance |
|
|
|
* @return process instance |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private ProcessInstance generateNewProcessInstance(ProcessDefinition processDefinition, |
|
|
|
private ProcessInstance generateNewProcessInstance(ProcessDefinition processDefinition, |
|
|
@ -569,7 +558,7 @@ public class ProcessService { |
|
|
|
processInstance.setConnects(processDefinition.getConnects()); |
|
|
|
processInstance.setConnects(processDefinition.getConnects()); |
|
|
|
|
|
|
|
|
|
|
|
// reset global params while there are start parameters
|
|
|
|
// reset global params while there are start parameters
|
|
|
|
setGlobalParamIfCommanded(processDefinition,cmdParam); |
|
|
|
setGlobalParamIfCommanded(processDefinition, cmdParam); |
|
|
|
|
|
|
|
|
|
|
|
// curing global params
|
|
|
|
// curing global params
|
|
|
|
processInstance.setGlobalParams(ParameterUtils.curingGlobalParams( |
|
|
|
processInstance.setGlobalParams(ParameterUtils.curingGlobalParams( |
|
|
@ -621,7 +610,7 @@ public class ProcessService { |
|
|
|
* use definition creator's tenant. |
|
|
|
* use definition creator's tenant. |
|
|
|
* |
|
|
|
* |
|
|
|
* @param tenantId tenantId |
|
|
|
* @param tenantId tenantId |
|
|
|
* @param userId userId |
|
|
|
* @param userId userId |
|
|
|
* @return tenant |
|
|
|
* @return tenant |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public Tenant getTenantForProcess(int tenantId, int userId) { |
|
|
|
public Tenant getTenantForProcess(int tenantId, int userId) { |
|
|
@ -644,7 +633,7 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* check command parameters is valid |
|
|
|
* check command parameters is valid |
|
|
|
* |
|
|
|
* |
|
|
|
* @param command command |
|
|
|
* @param command command |
|
|
|
* @param cmdParam cmdParam map |
|
|
|
* @param cmdParam cmdParam map |
|
|
|
* @return whether command param is valid |
|
|
|
* @return whether command param is valid |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -664,7 +653,7 @@ public class ProcessService { |
|
|
|
* construct process instance according to one command. |
|
|
|
* construct process instance according to one command. |
|
|
|
* |
|
|
|
* |
|
|
|
* @param command command |
|
|
|
* @param command command |
|
|
|
* @param host host |
|
|
|
* @param host host |
|
|
|
* @return process instance |
|
|
|
* @return process instance |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private ProcessInstance constructProcessInstance(Command command, String host) { |
|
|
|
private ProcessInstance constructProcessInstance(Command command, String host) { |
|
|
@ -827,7 +816,7 @@ public class ProcessService { |
|
|
|
* return complement data if the process start with complement data |
|
|
|
* return complement data if the process start with complement data |
|
|
|
* |
|
|
|
* |
|
|
|
* @param processInstance processInstance |
|
|
|
* @param processInstance processInstance |
|
|
|
* @param command command |
|
|
|
* @param command command |
|
|
|
* @return command type |
|
|
|
* @return command type |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private CommandType getCommandTypeIfComplement(ProcessInstance processInstance, Command command) { |
|
|
|
private CommandType getCommandTypeIfComplement(ProcessInstance processInstance, Command command) { |
|
|
@ -842,8 +831,8 @@ public class ProcessService { |
|
|
|
* initialize complement data parameters |
|
|
|
* initialize complement data parameters |
|
|
|
* |
|
|
|
* |
|
|
|
* @param processDefinition processDefinition |
|
|
|
* @param processDefinition processDefinition |
|
|
|
* @param processInstance processInstance |
|
|
|
* @param processInstance processInstance |
|
|
|
* @param cmdParam cmdParam |
|
|
|
* @param cmdParam cmdParam |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private void initComplementDataParam(ProcessDefinition processDefinition, |
|
|
|
private void initComplementDataParam(ProcessDefinition processDefinition, |
|
|
|
ProcessInstance processInstance, |
|
|
|
ProcessInstance processInstance, |
|
|
@ -915,7 +904,7 @@ public class ProcessService { |
|
|
|
* only the keys doesn't in sub process global would be joined. |
|
|
|
* only the keys doesn't in sub process global would be joined. |
|
|
|
* |
|
|
|
* |
|
|
|
* @param parentGlobalParams parentGlobalParams |
|
|
|
* @param parentGlobalParams parentGlobalParams |
|
|
|
* @param subGlobalParams subGlobalParams |
|
|
|
* @param subGlobalParams subGlobalParams |
|
|
|
* @return global params join |
|
|
|
* @return global params join |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private String joinGlobalParams(String parentGlobalParams, String subGlobalParams) { |
|
|
|
private String joinGlobalParams(String parentGlobalParams, String subGlobalParams) { |
|
|
@ -985,7 +974,7 @@ public class ProcessService { |
|
|
|
* set map {parent instance id, task instance id, 0(child instance id)} |
|
|
|
* set map {parent instance id, task instance id, 0(child instance id)} |
|
|
|
* |
|
|
|
* |
|
|
|
* @param parentInstance parentInstance |
|
|
|
* @param parentInstance parentInstance |
|
|
|
* @param parentTask parentTask |
|
|
|
* @param parentTask parentTask |
|
|
|
* @return process instance map |
|
|
|
* @return process instance map |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private ProcessInstanceMap setProcessInstanceMap(ProcessInstance parentInstance, TaskInstance parentTask) { |
|
|
|
private ProcessInstanceMap setProcessInstanceMap(ProcessInstance parentInstance, TaskInstance parentTask) { |
|
|
@ -1014,7 +1003,7 @@ public class ProcessService { |
|
|
|
* find previous task work process map. |
|
|
|
* find previous task work process map. |
|
|
|
* |
|
|
|
* |
|
|
|
* @param parentProcessInstance parentProcessInstance |
|
|
|
* @param parentProcessInstance parentProcessInstance |
|
|
|
* @param parentTask parentTask |
|
|
|
* @param parentTask parentTask |
|
|
|
* @return process instance map |
|
|
|
* @return process instance map |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private ProcessInstanceMap findPreviousTaskProcessMap(ProcessInstance parentProcessInstance, |
|
|
|
private ProcessInstanceMap findPreviousTaskProcessMap(ProcessInstance parentProcessInstance, |
|
|
@ -1040,7 +1029,7 @@ public class ProcessService { |
|
|
|
* create sub work process command |
|
|
|
* create sub work process command |
|
|
|
* |
|
|
|
* |
|
|
|
* @param parentProcessInstance parentProcessInstance |
|
|
|
* @param parentProcessInstance parentProcessInstance |
|
|
|
* @param task task |
|
|
|
* @param task task |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public void createSubWorkProcess(ProcessInstance parentProcessInstance, TaskInstance task) { |
|
|
|
public void createSubWorkProcess(ProcessInstance parentProcessInstance, TaskInstance task) { |
|
|
|
if (!task.isSubProcess()) { |
|
|
|
if (!task.isSubProcess()) { |
|
|
@ -1067,7 +1056,7 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* complement data needs transform parent parameter to child. |
|
|
|
* complement data needs transform parent parameter to child. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private String getSubWorkFlowParam(ProcessInstanceMap instanceMap, ProcessInstance parentProcessInstance,Map<String,String> fatherParams) { |
|
|
|
private String getSubWorkFlowParam(ProcessInstanceMap instanceMap, ProcessInstance parentProcessInstance, Map<String, String> fatherParams) { |
|
|
|
// set sub work process command
|
|
|
|
// set sub work process command
|
|
|
|
String processMapStr = JSONUtils.toJsonString(instanceMap); |
|
|
|
String processMapStr = JSONUtils.toJsonString(instanceMap); |
|
|
|
Map<String, String> cmdParam = JSONUtils.toMap(processMapStr); |
|
|
|
Map<String, String> cmdParam = JSONUtils.toMap(processMapStr); |
|
|
@ -1111,13 +1100,13 @@ public class ProcessService { |
|
|
|
Object localParams = subProcessParam.get(Constants.LOCAL_PARAMS); |
|
|
|
Object localParams = subProcessParam.get(Constants.LOCAL_PARAMS); |
|
|
|
List<Property> allParam = JSONUtils.toList(JSONUtils.toJsonString(localParams), Property.class); |
|
|
|
List<Property> allParam = JSONUtils.toList(JSONUtils.toJsonString(localParams), Property.class); |
|
|
|
Map<String, String> globalMap = this.getGlobalParamMap(parentProcessInstance.getGlobalParams()); |
|
|
|
Map<String, String> globalMap = this.getGlobalParamMap(parentProcessInstance.getGlobalParams()); |
|
|
|
Map<String,String> fatherParams = new HashMap<>(); |
|
|
|
Map<String, String> fatherParams = new HashMap<>(); |
|
|
|
if (CollectionUtils.isNotEmpty(allParam)) { |
|
|
|
if (CollectionUtils.isNotEmpty(allParam)) { |
|
|
|
for (Property info : allParam) { |
|
|
|
for (Property info : allParam) { |
|
|
|
fatherParams.put(info.getProp(), globalMap.get(info.getProp())); |
|
|
|
fatherParams.put(info.getProp(), globalMap.get(info.getProp())); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
String processParam = getSubWorkFlowParam(instanceMap, parentProcessInstance,fatherParams); |
|
|
|
String processParam = getSubWorkFlowParam(instanceMap, parentProcessInstance, fatherParams); |
|
|
|
|
|
|
|
|
|
|
|
return new Command( |
|
|
|
return new Command( |
|
|
|
commandType, |
|
|
|
commandType, |
|
|
@ -1163,7 +1152,7 @@ public class ProcessService { |
|
|
|
* update sub process definition |
|
|
|
* update sub process definition |
|
|
|
* |
|
|
|
* |
|
|
|
* @param parentProcessInstance parentProcessInstance |
|
|
|
* @param parentProcessInstance parentProcessInstance |
|
|
|
* @param childDefinitionId childDefinitionId |
|
|
|
* @param childDefinitionId childDefinitionId |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private void updateSubProcessDefinitionByParent(ProcessInstance parentProcessInstance, int childDefinitionId) { |
|
|
|
private void updateSubProcessDefinitionByParent(ProcessInstance parentProcessInstance, int childDefinitionId) { |
|
|
|
ProcessDefinition fatherDefinition = this.findProcessDefineById(parentProcessInstance.getProcessDefinitionId()); |
|
|
|
ProcessDefinition fatherDefinition = this.findProcessDefineById(parentProcessInstance.getProcessDefinitionId()); |
|
|
@ -1177,7 +1166,7 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* submit task to mysql |
|
|
|
* submit task to mysql |
|
|
|
* |
|
|
|
* |
|
|
|
* @param taskInstance taskInstance |
|
|
|
* @param taskInstance taskInstance |
|
|
|
* @param processInstance processInstance |
|
|
|
* @param processInstance processInstance |
|
|
|
* @return task instance |
|
|
|
* @return task instance |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -1231,7 +1220,7 @@ public class ProcessService { |
|
|
|
* return stop if work process state is ready stop |
|
|
|
* return stop if work process state is ready stop |
|
|
|
* if all of above are not satisfied, return submit success |
|
|
|
* if all of above are not satisfied, return submit success |
|
|
|
* |
|
|
|
* |
|
|
|
* @param taskInstance taskInstance |
|
|
|
* @param taskInstance taskInstance |
|
|
|
* @param processInstanceState processInstanceState |
|
|
|
* @param processInstanceState processInstanceState |
|
|
|
* @return process instance state |
|
|
|
* @return process instance state |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -1407,7 +1396,7 @@ public class ProcessService { |
|
|
|
* get id list by task state |
|
|
|
* get id list by task state |
|
|
|
* |
|
|
|
* |
|
|
|
* @param instanceId instanceId |
|
|
|
* @param instanceId instanceId |
|
|
|
* @param state state |
|
|
|
* @param state state |
|
|
|
* @return task instance states |
|
|
|
* @return task instance states |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public List<Integer> findTaskIdByInstanceState(int instanceId, ExecutionStatus state) { |
|
|
|
public List<Integer> findTaskIdByInstanceState(int instanceId, ExecutionStatus state) { |
|
|
@ -1462,7 +1451,7 @@ public class ProcessService { |
|
|
|
* find work process map by parent process id and parent task id. |
|
|
|
* find work process map by parent process id and parent task id. |
|
|
|
* |
|
|
|
* |
|
|
|
* @param parentWorkProcessId parentWorkProcessId |
|
|
|
* @param parentWorkProcessId parentWorkProcessId |
|
|
|
* @param parentTaskId parentTaskId |
|
|
|
* @param parentTaskId parentTaskId |
|
|
|
* @return process instance map |
|
|
|
* @return process instance map |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public ProcessInstanceMap findWorkProcessMapByParent(Integer parentWorkProcessId, Integer parentTaskId) { |
|
|
|
public ProcessInstanceMap findWorkProcessMapByParent(Integer parentWorkProcessId, Integer parentTaskId) { |
|
|
@ -1484,7 +1473,7 @@ public class ProcessService { |
|
|
|
* find sub process instance |
|
|
|
* find sub process instance |
|
|
|
* |
|
|
|
* |
|
|
|
* @param parentProcessId parentProcessId |
|
|
|
* @param parentProcessId parentProcessId |
|
|
|
* @param parentTaskId parentTaskId |
|
|
|
* @param parentTaskId parentTaskId |
|
|
|
* @return process instance |
|
|
|
* @return process instance |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public ProcessInstance findSubProcessInstance(Integer parentProcessId, Integer parentTaskId) { |
|
|
|
public ProcessInstance findSubProcessInstance(Integer parentProcessId, Integer parentTaskId) { |
|
|
@ -1516,12 +1505,12 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* change task state |
|
|
|
* change task state |
|
|
|
* |
|
|
|
* |
|
|
|
* @param state state |
|
|
|
* @param state state |
|
|
|
* @param startTime startTime |
|
|
|
* @param startTime startTime |
|
|
|
* @param host host |
|
|
|
* @param host host |
|
|
|
* @param executePath executePath |
|
|
|
* @param executePath executePath |
|
|
|
* @param logPath logPath |
|
|
|
* @param logPath logPath |
|
|
|
* @param taskInstId taskInstId |
|
|
|
* @param taskInstId taskInstId |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public void changeTaskState(TaskInstance taskInstance, ExecutionStatus state, Date startTime, String host, |
|
|
|
public void changeTaskState(TaskInstance taskInstance, ExecutionStatus state, Date startTime, String host, |
|
|
|
String executePath, |
|
|
|
String executePath, |
|
|
@ -1549,12 +1538,12 @@ public class ProcessService { |
|
|
|
* update the process instance |
|
|
|
* update the process instance |
|
|
|
* |
|
|
|
* |
|
|
|
* @param processInstanceId processInstanceId |
|
|
|
* @param processInstanceId processInstanceId |
|
|
|
* @param processJson processJson |
|
|
|
* @param processJson processJson |
|
|
|
* @param globalParams globalParams |
|
|
|
* @param globalParams globalParams |
|
|
|
* @param scheduleTime scheduleTime |
|
|
|
* @param scheduleTime scheduleTime |
|
|
|
* @param flag flag |
|
|
|
* @param flag flag |
|
|
|
* @param locations locations |
|
|
|
* @param locations locations |
|
|
|
* @param connects connects |
|
|
|
* @param connects connects |
|
|
|
* @return update process instance result |
|
|
|
* @return update process instance result |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public int updateProcessInstance(Integer processInstanceId, String processJson, |
|
|
|
public int updateProcessInstance(Integer processInstanceId, String processJson, |
|
|
@ -1575,10 +1564,10 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* change task state |
|
|
|
* change task state |
|
|
|
* |
|
|
|
* |
|
|
|
* @param state state |
|
|
|
* @param state state |
|
|
|
* @param endTime endTime |
|
|
|
* @param endTime endTime |
|
|
|
* @param taskInstId taskInstId |
|
|
|
* @param taskInstId taskInstId |
|
|
|
* @param varPool varPool |
|
|
|
* @param varPool varPool |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public void changeTaskState(TaskInstance taskInstance, ExecutionStatus state, |
|
|
|
public void changeTaskState(TaskInstance taskInstance, ExecutionStatus state, |
|
|
|
Date endTime, |
|
|
|
Date endTime, |
|
|
@ -1746,7 +1735,7 @@ public class ProcessService { |
|
|
|
* update process instance state by id |
|
|
|
* update process instance state by id |
|
|
|
* |
|
|
|
* |
|
|
|
* @param processInstanceId processInstanceId |
|
|
|
* @param processInstanceId processInstanceId |
|
|
|
* @param executionStatus executionStatus |
|
|
|
* @param executionStatus executionStatus |
|
|
|
* @return update process result |
|
|
|
* @return update process result |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public int updateProcessInstanceState(Integer processInstanceId, ExecutionStatus executionStatus) { |
|
|
|
public int updateProcessInstanceState(Integer processInstanceId, ExecutionStatus executionStatus) { |
|
|
@ -1783,7 +1772,7 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* find tenant code by resource name |
|
|
|
* find tenant code by resource name |
|
|
|
* |
|
|
|
* |
|
|
|
* @param resName resource name |
|
|
|
* @param resName resource name |
|
|
|
* @param resourceType resource type |
|
|
|
* @param resourceType resource type |
|
|
|
* @return tenant code |
|
|
|
* @return tenant code |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -1821,9 +1810,9 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* get dependency cycle by work process define id and scheduler fire time |
|
|
|
* get dependency cycle by work process define id and scheduler fire time |
|
|
|
* |
|
|
|
* |
|
|
|
* @param masterId masterId |
|
|
|
* @param masterId masterId |
|
|
|
* @param processDefinitionId processDefinitionId |
|
|
|
* @param processDefinitionId processDefinitionId |
|
|
|
* @param scheduledFireTime the time the task schedule is expected to trigger |
|
|
|
* @param scheduledFireTime the time the task schedule is expected to trigger |
|
|
|
* @return CycleDependency |
|
|
|
* @return CycleDependency |
|
|
|
* @throws Exception if error throws Exception |
|
|
|
* @throws Exception if error throws Exception |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -1836,8 +1825,8 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* get dependency cycle list by work process define id list and scheduler fire time |
|
|
|
* get dependency cycle list by work process define id list and scheduler fire time |
|
|
|
* |
|
|
|
* |
|
|
|
* @param masterId masterId |
|
|
|
* @param masterId masterId |
|
|
|
* @param ids ids |
|
|
|
* @param ids ids |
|
|
|
* @param scheduledFireTime the time the task schedule is expected to trigger |
|
|
|
* @param scheduledFireTime the time the task schedule is expected to trigger |
|
|
|
* @return CycleDependency list |
|
|
|
* @return CycleDependency list |
|
|
|
* @throws Exception if error throws Exception |
|
|
|
* @throws Exception if error throws Exception |
|
|
@ -1932,8 +1921,8 @@ public class ProcessService { |
|
|
|
* find last running process instance |
|
|
|
* find last running process instance |
|
|
|
* |
|
|
|
* |
|
|
|
* @param definitionId process definition id |
|
|
|
* @param definitionId process definition id |
|
|
|
* @param startTime start time |
|
|
|
* @param startTime start time |
|
|
|
* @param endTime end time |
|
|
|
* @param endTime end time |
|
|
|
* @return process instance |
|
|
|
* @return process instance |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public ProcessInstance findLastRunningProcess(int definitionId, Date startTime, Date endTime) { |
|
|
|
public ProcessInstance findLastRunningProcess(int definitionId, Date startTime, Date endTime) { |
|
|
@ -2033,7 +2022,7 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* list unauthorized udf function |
|
|
|
* list unauthorized udf function |
|
|
|
* |
|
|
|
* |
|
|
|
* @param userId user id |
|
|
|
* @param userId user id |
|
|
|
* @param needChecks data source id array |
|
|
|
* @param needChecks data source id array |
|
|
|
* @return unauthorized udf function list |
|
|
|
* @return unauthorized udf function list |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -2124,8 +2113,6 @@ public class ProcessService { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* solve the branch rename bug |
|
|
|
* solve the branch rename bug |
|
|
|
* |
|
|
|
* |
|
|
|
* @param processData |
|
|
|
|
|
|
|
* @param oldJson |
|
|
|
|
|
|
|
* @return String |
|
|
|
* @return String |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public String changeJson(ProcessData processData, String oldJson) { |
|
|
|
public String changeJson(ProcessData processData, String oldJson) { |
|
|
@ -2180,6 +2167,7 @@ public class ProcessService { |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* add authorized resources |
|
|
|
* add authorized resources |
|
|
|
|
|
|
|
* |
|
|
|
* @param ownResources own resources |
|
|
|
* @param ownResources own resources |
|
|
|
* @param userId userId |
|
|
|
* @param userId userId |
|
|
|
*/ |
|
|
|
*/ |
|
|
|