use of org.kie.server.services.taskassigning.runtime.command.DeletePlanningItemCommand 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;
}
use of org.kie.server.services.taskassigning.runtime.command.DeletePlanningItemCommand 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);
}
use of org.kie.server.services.taskassigning.runtime.command.DeletePlanningItemCommand in project droolsjbpm-integration by kiegroup.
the class TaskAssigningRuntimeServiceBaseTest method assertDeletePlanningItemCommand.
private void assertDeletePlanningItemCommand(List<TaskCommand> commands, int index, Long taskId) {
assertTrue("DeletePlanningItemCommand is expected at index: " + index, commands.get(index) instanceof DeletePlanningItemCommand);
DeletePlanningItemCommand deletePlanningItemCommand = (DeletePlanningItemCommand) commands.get(index);
assertEquals("DeletePlanningItemCommand for taskId: " + taskId + " is expected at index: ", taskId, deletePlanningItemCommand.getItemId(), 0);
}
Aggregations