Search in sources :

Example 1 with SavePlanningItemCommand

use of org.kie.server.services.taskassigning.runtime.command.SavePlanningItemCommand in project droolsjbpm-integration by kiegroup.

the class TaskAssigningRuntimeServiceBase method calculatePlanningCommands.

private Map<String, List<PlanningCommand>> calculatePlanningCommands(PlanningItemList planningItemList, String userId) {
    final Map<String, List<PlanningCommand>> commandsByContainer = new HashMap<>();
    final Map<Long, TaskData> taskDataById = prepareTaskDataForExecutePlanning();
    for (PlanningItem planningItem : planningItemList.getItems()) {
        final TaskData taskData = taskDataById.remove(planningItem.getTaskId());
        if (taskData == null) {
            // and a new plan will arrive soon.
            throw new PlanningException(String.format(TASK_MODIFIED_ERROR_MSG_3, planningItem.getPlanningTask().getTaskId(), Arrays.toString(new Status[] { Ready, Reserved, InProgress, Suspended })), planningItem.getContainerId(), PlanningExecutionResult.ErrorCode.TASK_MODIFIED_SINCE_PLAN_CALCULATION_ERROR);
        }
        final String actualOwner = taskData.getActualOwner();
        final PlanningTask actualPlanningTask = taskData.getPlanningTask();
        final Status taskStatus = convertFromString(taskData.getStatus());
        if (isNotEmpty(actualOwner) && actualPlanningTask != null && actualOwner.equals(actualPlanningTask.getAssignedUser()) && actualPlanningTask.equals(planningItem.getPlanningTask())) {
            continue;
        }
        switch(taskStatus) {
            case Ready:
                addCommand(commandsByContainer, planningItem.getContainerId(), new DelegateAndSaveCommand(planningItem, userId));
                break;
            case Reserved:
                if (actualPlanningTask != null && !actualOwner.equals(actualPlanningTask.getAssignedUser()) && !actualOwner.equals(planningItem.getPlanningTask().getAssignedUser())) {
                    // and a new plan will arrive soon.
                    throw new PlanningException(String.format(TASK_MODIFIED_ERROR_MSG_1, planningItem.getPlanningTask().getTaskId(), actualOwner, actualPlanningTask.getAssignedUser()), planningItem.getContainerId(), PlanningExecutionResult.ErrorCode.TASK_MODIFIED_SINCE_PLAN_CALCULATION_ERROR);
                } else {
                    addCommand(commandsByContainer, planningItem.getContainerId(), new DelegateAndSaveCommand(planningItem, userId));
                }
                break;
            case InProgress:
            case Suspended:
                if (actualOwner == null || !actualOwner.equals(planningItem.getPlanningTask().getAssignedUser())) {
                    // and a new plan will arrive soon.
                    throw new PlanningException(String.format(TASK_MODIFIED_ERROR_MSG_2, planningItem.getPlanningTask().getTaskId(), actualOwner, planningItem.getPlanningTask().getAssignedUser()), planningItem.getContainerId(), PlanningExecutionResult.ErrorCode.TASK_MODIFIED_SINCE_PLAN_CALCULATION_ERROR);
                } else {
                    // task might have been created, assigned and started/suspended completely out of the task
                    // or the planning data might have changed. Just update the planning data.
                    addCommand(commandsByContainer, planningItem.getContainerId(), new SavePlanningItemCommand(planningItem));
                }
                break;
            default:
                // sonar required, no more cases are expected for this switch by construction.
                throw new IndexOutOfBoundsException("Value: " + taskData.getStatus() + " is out of range in current switch");
        }
    }
    for (TaskData taskData : taskDataById.values()) {
        final Status status = convertFromString(taskData.getStatus());
        if ((status == Ready || status == Reserved || status == Suspended) && taskData.getPlanningTask() != null) {
            commandsByContainer.computeIfAbsent(taskData.getContainerId(), k -> new ArrayList<>()).add(new DeletePlanningItemCommand(taskData.getTaskId()));
        }
    }
    return commandsByContainer;
}
Also used : KieContainerStatus(org.kie.server.api.model.KieContainerStatus) Status(org.kie.api.task.model.Status) KieServicesException(org.kie.server.api.exception.KieServicesException) Arrays(java.util.Arrays) PlanningExecutionResult(org.kie.server.api.model.taskassigning.PlanningExecutionResult) CompositeCommand(org.jbpm.services.task.commands.CompositeCommand) QueryService(org.jbpm.services.api.query.QueryService) SavePlanningItemCommand(org.kie.server.services.taskassigning.runtime.command.SavePlanningItemCommand) LoggerFactory(org.slf4j.LoggerFactory) Reserved(org.kie.api.task.model.Status.Reserved) HashMap(java.util.HashMap) Function(java.util.function.Function) KieContainerInstanceImpl(org.kie.server.services.impl.KieContainerInstanceImpl) InProgress(org.kie.api.task.model.Status.InProgress) ArrayList(java.util.ArrayList) TaskData(org.kie.server.api.model.taskassigning.TaskData) StringUtils.isNotEmpty(org.apache.commons.lang3.StringUtils.isNotEmpty) DeletePlanningItemCommand(org.kie.server.services.taskassigning.runtime.command.DeletePlanningItemCommand) PlanningCommand(org.kie.server.services.taskassigning.runtime.command.PlanningCommand) Map(java.util.Map) PlanningItem(org.kie.server.api.model.taskassigning.PlanningItem) UserTaskService(org.jbpm.services.api.UserTaskService) KieContainerStatus(org.kie.server.api.model.KieContainerStatus) Suspended(org.kie.api.task.model.Status.Suspended) Ready(org.kie.api.task.model.Status.Ready) Logger(org.slf4j.Logger) PlanningItemList(org.kie.server.api.model.taskassigning.PlanningItemList) PlanningTask(org.kie.server.api.model.taskassigning.PlanningTask) StopWatch(org.apache.commons.lang3.time.StopWatch) StatusConverter.convertFromString(org.kie.server.api.model.taskassigning.util.StatusConverter.convertFromString) StatusConverter.convertToStringList(org.kie.server.api.model.taskassigning.util.StatusConverter.convertToStringList) Collectors(java.util.stream.Collectors) KieServerRegistry(org.kie.server.services.api.KieServerRegistry) List(java.util.List) DelegateAndSaveCommand(org.kie.server.services.taskassigning.runtime.command.DelegateAndSaveCommand) PlanningException(org.kie.server.services.taskassigning.runtime.command.PlanningException) Context(org.kie.api.runtime.Context) TaskCommand(org.jbpm.services.task.commands.TaskCommand) KieServerImpl(org.kie.server.services.impl.KieServerImpl) Status(org.kie.api.task.model.Status) HashMap(java.util.HashMap) ArrayList(java.util.ArrayList) StatusConverter.convertFromString(org.kie.server.api.model.taskassigning.util.StatusConverter.convertFromString) DelegateAndSaveCommand(org.kie.server.services.taskassigning.runtime.command.DelegateAndSaveCommand) TaskData(org.kie.server.api.model.taskassigning.TaskData) SavePlanningItemCommand(org.kie.server.services.taskassigning.runtime.command.SavePlanningItemCommand) PlanningTask(org.kie.server.api.model.taskassigning.PlanningTask) DeletePlanningItemCommand(org.kie.server.services.taskassigning.runtime.command.DeletePlanningItemCommand) PlanningException(org.kie.server.services.taskassigning.runtime.command.PlanningException) ArrayList(java.util.ArrayList) PlanningItemList(org.kie.server.api.model.taskassigning.PlanningItemList) StatusConverter.convertToStringList(org.kie.server.api.model.taskassigning.util.StatusConverter.convertToStringList) List(java.util.List) PlanningItem(org.kie.server.api.model.taskassigning.PlanningItem)

Example 2 with SavePlanningItemCommand

use of org.kie.server.services.taskassigning.runtime.command.SavePlanningItemCommand in project droolsjbpm-integration by kiegroup.

the class TaskAssigningRuntimeServiceBase method executeContainerCommands.

private void executeContainerCommands(String containerId, List<PlanningCommand> commands) {
    LOGGER.debug("Executing planning commands for container: {}", containerId);
    List<DelegateAndSaveCommand> delegations = new ArrayList<>();
    List<SavePlanningItemCommand> saves = new ArrayList<>();
    List<DeletePlanningItemCommand> deletes = new ArrayList<>();
    validateContainer(containerId);
    for (PlanningCommand command : commands) {
        if (command instanceof DelegateAndSaveCommand) {
            delegations.add((DelegateAndSaveCommand) command);
        } else if (command instanceof SavePlanningItemCommand) {
            saves.add((SavePlanningItemCommand) command);
        } else if (command instanceof DeletePlanningItemCommand) {
            deletes.add((DeletePlanningItemCommand) command);
        }
    }
    bulkDelegate(containerId, delegations);
    List<PlanningCommand> onlyDBCommands = new ArrayList<>(saves);
    onlyDBCommands.addAll(deletes);
    if (!onlyDBCommands.isEmpty()) {
        CompositeCommand onlyDBCommand = new CompositeCommand<>(new TaskCommand<TaskCommand>() {

            @Override
            public TaskCommand execute(Context context) {
                return null;
            }
        }, onlyDBCommands.toArray(new TaskCommand[0]));
        userTaskService.execute(containerId, onlyDBCommand);
    }
    LOGGER.debug("Planning commands execution for container: {} finished successfully", containerId);
}
Also used : Context(org.kie.api.runtime.Context) ArrayList(java.util.ArrayList) DelegateAndSaveCommand(org.kie.server.services.taskassigning.runtime.command.DelegateAndSaveCommand) PlanningCommand(org.kie.server.services.taskassigning.runtime.command.PlanningCommand) SavePlanningItemCommand(org.kie.server.services.taskassigning.runtime.command.SavePlanningItemCommand) CompositeCommand(org.jbpm.services.task.commands.CompositeCommand) DeletePlanningItemCommand(org.kie.server.services.taskassigning.runtime.command.DeletePlanningItemCommand) TaskCommand(org.jbpm.services.task.commands.TaskCommand)

Example 3 with SavePlanningItemCommand

use of org.kie.server.services.taskassigning.runtime.command.SavePlanningItemCommand in project droolsjbpm-integration by kiegroup.

the class TaskAssigningRuntimeServiceBaseTest method assertSavePlanningItemCommand.

private void assertSavePlanningItemCommand(List<TaskCommand> commands, int index, PlanningItem planningItem) {
    assertTrue("SavePlanningItemCommand is expected at index: " + index, commands.get(index) instanceof SavePlanningItemCommand);
    SavePlanningItemCommand savePlanningItemCommand = (SavePlanningItemCommand) commands.get(index);
    assertEquals("SavePlanningItemCommand for planningItem: " + planningItem + " is expected at index: ", planningItem, savePlanningItemCommand.getPlanningItem());
}
Also used : SavePlanningItemCommand(org.kie.server.services.taskassigning.runtime.command.SavePlanningItemCommand)

Aggregations

SavePlanningItemCommand (org.kie.server.services.taskassigning.runtime.command.SavePlanningItemCommand)3 ArrayList (java.util.ArrayList)2 CompositeCommand (org.jbpm.services.task.commands.CompositeCommand)2 TaskCommand (org.jbpm.services.task.commands.TaskCommand)2 Context (org.kie.api.runtime.Context)2 DelegateAndSaveCommand (org.kie.server.services.taskassigning.runtime.command.DelegateAndSaveCommand)2 DeletePlanningItemCommand (org.kie.server.services.taskassigning.runtime.command.DeletePlanningItemCommand)2 PlanningCommand (org.kie.server.services.taskassigning.runtime.command.PlanningCommand)2 Arrays (java.util.Arrays)1 HashMap (java.util.HashMap)1 List (java.util.List)1 Map (java.util.Map)1 Function (java.util.function.Function)1 Collectors (java.util.stream.Collectors)1 StringUtils.isNotEmpty (org.apache.commons.lang3.StringUtils.isNotEmpty)1 StopWatch (org.apache.commons.lang3.time.StopWatch)1 UserTaskService (org.jbpm.services.api.UserTaskService)1 QueryService (org.jbpm.services.api.query.QueryService)1 Status (org.kie.api.task.model.Status)1 InProgress (org.kie.api.task.model.Status.InProgress)1