|
@@ -17,9 +17,7 @@
|
|
|
|
|
|
package org.apache.dolphinscheduler.api.service.impl;
|
|
|
|
|
|
-import static org.apache.dolphinscheduler.api.constants.ApiFuncIdentificationConstant.INSTANCE_DELETE;
|
|
|
-import static org.apache.dolphinscheduler.api.constants.ApiFuncIdentificationConstant.INSTANCE_UPDATE;
|
|
|
-import static org.apache.dolphinscheduler.api.constants.ApiFuncIdentificationConstant.WORKFLOW_INSTANCE;
|
|
|
+import static org.apache.dolphinscheduler.api.constants.ApiFuncIdentificationConstant.*;
|
|
|
import static org.apache.dolphinscheduler.api.enums.Status.PROCESS_INSTANCE_NOT_EXIST;
|
|
|
import static org.apache.dolphinscheduler.api.enums.Status.PROCESS_INSTANCE_STATE_OPERATION_ERROR;
|
|
|
import static org.apache.dolphinscheduler.common.constants.Constants.DATA_LIST;
|
|
@@ -33,6 +31,7 @@ import static org.apache.dolphinscheduler.plugin.task.api.TaskConstants.TASK_TYP
|
|
|
|
|
|
import org.apache.dolphinscheduler.api.dto.gantt.GanttDto;
|
|
|
import org.apache.dolphinscheduler.api.dto.gantt.Task;
|
|
|
+import org.apache.dolphinscheduler.api.dto.workflowInstance.WorkflowInstanceQueryRequest;
|
|
|
import org.apache.dolphinscheduler.api.enums.Status;
|
|
|
import org.apache.dolphinscheduler.api.exceptions.ServiceException;
|
|
|
import org.apache.dolphinscheduler.api.service.ExecutorService;
|
|
@@ -225,9 +224,9 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
/**
|
|
|
* query process instance by id
|
|
|
*
|
|
|
- * @param loginUser login user
|
|
|
+ * @param loginUser login user
|
|
|
* @param projectCode project code
|
|
|
- * @param processId process instance id
|
|
|
+ * @param processId process instance id
|
|
|
* @return process instance detail
|
|
|
*/
|
|
|
@Override
|
|
@@ -263,20 +262,36 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * query workflow instance by id
|
|
|
+ *
|
|
|
+ * @param loginUser login user
|
|
|
+ * @param workflowInstanceId workflow instance id
|
|
|
+ * @return workflow instance detail
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public Map<String, Object> queryProcessInstanceById(User loginUser, Integer workflowInstanceId) {
|
|
|
+ ProcessInstance processInstance = processInstanceMapper.selectById(workflowInstanceId);
|
|
|
+ ProcessDefinition processDefinition =
|
|
|
+ processDefineMapper.queryByCode(processInstance.getProcessDefinitionCode());
|
|
|
+
|
|
|
+ return queryProcessInstanceById(loginUser, processDefinition.getProjectCode(), workflowInstanceId);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* paging query process instance list, filtering according to project, process definition, time range, keyword, process status
|
|
|
*
|
|
|
- * @param loginUser login user
|
|
|
- * @param projectCode project code
|
|
|
+ * @param loginUser login user
|
|
|
+ * @param projectCode project code
|
|
|
* @param processDefineCode process definition code
|
|
|
- * @param pageNo page number
|
|
|
- * @param pageSize page size
|
|
|
- * @param searchVal search value
|
|
|
- * @param stateType state type
|
|
|
- * @param host host
|
|
|
- * @param startDate start time
|
|
|
- * @param endDate end time
|
|
|
- * @param otherParamsJson otherParamsJson handle other params
|
|
|
+ * @param pageNo page number
|
|
|
+ * @param pageSize page size
|
|
|
+ * @param searchVal search value
|
|
|
+ * @param stateType state type
|
|
|
+ * @param host host
|
|
|
+ * @param startDate start time
|
|
|
+ * @param endDate end time
|
|
|
+ * @param otherParamsJson otherParamsJson handle other params
|
|
|
* @return process instance list
|
|
|
*/
|
|
|
@Override
|
|
@@ -344,12 +359,68 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * paging query process instance list, filtering according to project, process definition, time range, keyword, process status
|
|
|
+ *
|
|
|
+ * @param loginUser login user
|
|
|
+ * @param workflowInstanceQueryRequest workflowInstanceQueryRequest
|
|
|
+ * @return process instance list
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public Result queryProcessInstanceList(User loginUser, WorkflowInstanceQueryRequest workflowInstanceQueryRequest) {
|
|
|
+ Result result = new Result();
|
|
|
+ ProcessInstance processInstance = workflowInstanceQueryRequest.convert2ProcessInstance();
|
|
|
+ String projectName = workflowInstanceQueryRequest.getProjectName();
|
|
|
+ if (!StringUtils.isBlank(projectName)) {
|
|
|
+ Project project = projectMapper.queryByName(projectName);
|
|
|
+ projectService.checkProjectAndAuthThrowException(loginUser, project, WORKFLOW_DEFINITION);
|
|
|
+ ProcessDefinition processDefinition =
|
|
|
+ processDefineMapper.queryByDefineName(project.getCode(), processInstance.getName());
|
|
|
+ processInstance.setProcessDefinitionCode(processDefinition.getCode());
|
|
|
+ }
|
|
|
+
|
|
|
+ Page<ProcessInstance> page =
|
|
|
+ new Page<>(workflowInstanceQueryRequest.getPageNo(), workflowInstanceQueryRequest.getPageSize());
|
|
|
+ PageInfo<ProcessInstance> pageInfo =
|
|
|
+ new PageInfo<>(workflowInstanceQueryRequest.getPageNo(), workflowInstanceQueryRequest.getPageSize());
|
|
|
+
|
|
|
+ IPage<ProcessInstance> processInstanceList = processInstanceMapper.queryProcessInstanceListV2Paging(page,
|
|
|
+ processInstance.getProcessDefinitionCode(), processInstance.getName(),
|
|
|
+ workflowInstanceQueryRequest.getStartTime(), workflowInstanceQueryRequest.getEndTime(),
|
|
|
+ workflowInstanceQueryRequest.getState(), processInstance.getHost());
|
|
|
+
|
|
|
+ List<ProcessInstance> processInstances = processInstanceList.getRecords();
|
|
|
+ List<Integer> userIds = Collections.emptyList();
|
|
|
+ if (CollectionUtils.isNotEmpty(processInstances)) {
|
|
|
+ userIds = processInstances.stream().map(ProcessInstance::getExecutorId).collect(Collectors.toList());
|
|
|
+ }
|
|
|
+ List<User> users = usersService.queryUser(userIds);
|
|
|
+ Map<Integer, User> idToUserMap = Collections.emptyMap();
|
|
|
+ if (CollectionUtils.isNotEmpty(users)) {
|
|
|
+ idToUserMap = users.stream().collect(Collectors.toMap(User::getId, Function.identity()));
|
|
|
+ }
|
|
|
+
|
|
|
+ for (ProcessInstance Instance : processInstances) {
|
|
|
+ Instance.setDuration(WorkflowUtils.getWorkflowInstanceDuration(Instance));
|
|
|
+ User executor = idToUserMap.get(Instance.getExecutorId());
|
|
|
+ if (null != executor) {
|
|
|
+ Instance.setExecutorName(executor.getUserName());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ pageInfo.setTotal((int) processInstanceList.getTotal());
|
|
|
+ pageInfo.setTotalList(processInstances);
|
|
|
+ result.setData(pageInfo);
|
|
|
+ putMsg(result, Status.SUCCESS);
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* query task list by process instance id
|
|
|
*
|
|
|
- * @param loginUser login user
|
|
|
+ * @param loginUser login user
|
|
|
* @param projectCode project code
|
|
|
- * @param processId process instance id
|
|
|
+ * @param processId process instance id
|
|
|
* @return task list for the process instance
|
|
|
* @throws IOException io exception
|
|
|
*/
|
|
@@ -437,9 +508,9 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
/**
|
|
|
* query sub process instance detail info by task id
|
|
|
*
|
|
|
- * @param loginUser login user
|
|
|
+ * @param loginUser login user
|
|
|
* @param projectCode project code
|
|
|
- * @param taskId task id
|
|
|
+ * @param taskId task id
|
|
|
* @return sub process instance detail
|
|
|
*/
|
|
|
@Override
|
|
@@ -492,17 +563,17 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
/**
|
|
|
* update process instance
|
|
|
*
|
|
|
- * @param loginUser login user
|
|
|
- * @param projectCode project code
|
|
|
- * @param taskRelationJson process task relation json
|
|
|
+ * @param loginUser login user
|
|
|
+ * @param projectCode project code
|
|
|
+ * @param taskRelationJson process task relation json
|
|
|
* @param taskDefinitionJson taskDefinitionJson
|
|
|
- * @param processInstanceId process instance id
|
|
|
- * @param scheduleTime schedule time
|
|
|
- * @param syncDefine sync define
|
|
|
- * @param globalParams global params
|
|
|
- * @param locations locations for nodes
|
|
|
- * @param timeout timeout
|
|
|
- * @param tenantCode tenantCode
|
|
|
+ * @param processInstanceId process instance id
|
|
|
+ * @param scheduleTime schedule time
|
|
|
+ * @param syncDefine sync define
|
|
|
+ * @param globalParams global params
|
|
|
+ * @param locations locations for nodes
|
|
|
+ * @param timeout timeout
|
|
|
+ * @param tenantCode tenantCode
|
|
|
* @return update result code
|
|
|
*/
|
|
|
@Transactional
|
|
@@ -659,9 +730,9 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
/**
|
|
|
* query parent process instance detail info by sub process instance id
|
|
|
*
|
|
|
- * @param loginUser login user
|
|
|
+ * @param loginUser login user
|
|
|
* @param projectCode project code
|
|
|
- * @param subId sub process id
|
|
|
+ * @param subId sub process id
|
|
|
* @return parent instance detail
|
|
|
*/
|
|
|
@Override
|
|
@@ -701,8 +772,8 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
/**
|
|
|
* delete process instance by id, at the same time,delete task instance and their mapping relation data
|
|
|
*
|
|
|
- * @param loginUser login user
|
|
|
- * @param projectCode project code
|
|
|
+ * @param loginUser login user
|
|
|
+ * @param projectCode project code
|
|
|
* @param processInstanceId process instance id
|
|
|
* @return delete result code
|
|
|
*/
|
|
@@ -766,10 +837,27 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * delete workflow instance by id, at the same time,delete task instance and their mapping relation data
|
|
|
+ *
|
|
|
+ * @param loginUser login user
|
|
|
+ * @param workflowInstanceId workflow instance id
|
|
|
+ * @return delete result code
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public Map<String, Object> deleteProcessInstanceById(User loginUser, Integer workflowInstanceId) {
|
|
|
+ ProcessInstance processInstance = processService.findProcessInstanceDetailById(workflowInstanceId)
|
|
|
+ .orElseThrow(() -> new ServiceException(PROCESS_INSTANCE_NOT_EXIST, workflowInstanceId));
|
|
|
+ ProcessDefinition processDefinition =
|
|
|
+ processDefineMapper.queryByCode(processInstance.getProcessDefinitionCode());
|
|
|
+
|
|
|
+ return deleteProcessInstanceById(loginUser, processDefinition.getProjectCode(), workflowInstanceId);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* view process instance variables
|
|
|
*
|
|
|
- * @param projectCode project code
|
|
|
+ * @param projectCode project code
|
|
|
* @param processInstanceId process instance id
|
|
|
* @return variables data
|
|
|
*/
|
|
@@ -863,7 +951,7 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
/**
|
|
|
* encapsulation gantt structure
|
|
|
*
|
|
|
- * @param projectCode project code
|
|
|
+ * @param projectCode project code
|
|
|
* @param processInstanceId process instance id
|
|
|
* @return gantt tree data
|
|
|
* @throws Exception exception when json parse
|
|
@@ -938,7 +1026,7 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
* query process instance by processDefinitionCode and stateArray
|
|
|
*
|
|
|
* @param processDefinitionCode processDefinitionCode
|
|
|
- * @param states states array
|
|
|
+ * @param states states array
|
|
|
* @return process instance list
|
|
|
*/
|
|
|
@Override
|
|
@@ -950,7 +1038,7 @@ public class ProcessInstanceServiceImpl extends BaseServiceImpl implements Proce
|
|
|
* query process instance by processDefinitionCode
|
|
|
*
|
|
|
* @param processDefinitionCode processDefinitionCode
|
|
|
- * @param size size
|
|
|
+ * @param size size
|
|
|
* @return process instance list
|
|
|
*/
|
|
|
@Override
|