org.bonitasoft.engine.execution.ProcessInstanceInterruptor Maven / Gradle / Ivy
The newest version!
/**
* Copyright (C) 2019 Bonitasoft S.A.
* Bonitasoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation
* version 2.1 of the License.
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301, USA.
**/
package org.bonitasoft.engine.execution;
import java.util.List;
import java.util.stream.Collectors;
import lombok.extern.slf4j.Slf4j;
import org.bonitasoft.engine.commons.exceptions.SBonitaException;
import org.bonitasoft.engine.core.process.definition.model.SFlowNodeType;
import org.bonitasoft.engine.core.process.instance.api.FlowNodeInstanceService;
import org.bonitasoft.engine.core.process.instance.api.ProcessInstanceService;
import org.bonitasoft.engine.core.process.instance.model.SFlowNodeInstance;
import org.bonitasoft.engine.core.process.instance.model.SStateCategory;
import org.bonitasoft.engine.work.SWorkRegisterException;
/**
* @author Elias Ricken de Medeiros
* @author Matthieu Chaffotte
*/
@Slf4j
public class ProcessInstanceInterruptor {
private final ProcessInstanceService processInstanceService;
private final FlowNodeInstanceService flowNodeInstanceService;
private final ContainerRegistry containerRegistry;
public ProcessInstanceInterruptor(ProcessInstanceService processInstanceService,
FlowNodeInstanceService flowNodeInstanceService,
ContainerRegistry containerRegistry) {
this.processInstanceService = processInstanceService;
this.flowNodeInstanceService = flowNodeInstanceService;
this.containerRegistry = containerRegistry;
}
/**
* Interrupt the given process instance AND its children
*
* @param processInstanceId the process instance
* @param stateCategory the state category
* @return true if some children were interrupted
*/
public boolean interruptProcessInstance(final long processInstanceId, final SStateCategory stateCategory)
throws SBonitaException {
processInstanceService.setStateCategory(processInstanceService.getProcessInstance(processInstanceId),
stateCategory);
List flowNodeInstances = flowNodeInstanceService
.getDirectChildrenOfProcessInstance(processInstanceId, 0, Integer.MAX_VALUE);
if (flowNodeInstances.isEmpty()) {
log.info("Process instance {} with no children was {}", processInstanceId,
getInterruptionType(stateCategory));
return false;
}
interruptFlowNodeInstances(flowNodeInstances, stateCategory);
log.info("Process instance {} and its children were {}", processInstanceId,
getInterruptionType(stateCategory));
return true;
}
private String getInterruptionType(SStateCategory stateCategory) {
return stateCategory.equals(SStateCategory.ABORTING) ? "aborted" : "cancelled";
}
private void executeFlowNode(SFlowNodeInstance child) throws SWorkRegisterException {
if (child.isTerminal()) {
containerRegistry.notifyChildFinished(child);
} else {
//should not try to execute these because its the children that should be aborted
if (child.getType() != SFlowNodeType.MULTI_INSTANCE_ACTIVITY
|| child.getType() != SFlowNodeType.LOOP_ACTIVITY) {
containerRegistry.executeFlowNode(child);
}
}
}
/**
* Interrupt the given process instant AND its children, excluding the exceptionChildId
*
* @param processInstanceId the process instance
* @param stateCategory the state category
* @param exceptionChildId the element to exclude
*/
public void interruptProcessInstance(final long processInstanceId, final SStateCategory stateCategory,
final long exceptionChildId)
throws SBonitaException {
processInstanceService.setStateCategory(processInstanceService.getProcessInstance(processInstanceId),
stateCategory);
interruptChildrenOfProcessInstance(processInstanceId, stateCategory, exceptionChildId);
}
/**
* Interrupt children of given process instance excluding notToInterruptFlownodeId
*
* @param processInstanceId the process instance
* @param stateCategory the state category in which children must be set
* @param notToInterruptFlownodeId the element to exclude
*/
public void interruptChildrenOfProcessInstance(final long processInstanceId, final SStateCategory stateCategory,
final long notToInterruptFlownodeId)
throws SBonitaException {
List flowNodeInstances = flowNodeInstanceService
.getDirectChildrenOfProcessInstance(processInstanceId, 0, Integer.MAX_VALUE).stream()
.filter(f -> f.getId() != notToInterruptFlownodeId)
.collect(Collectors.toList());
if (flowNodeInstances.isEmpty()) {
log.warn("Process instance {} with no children was {} by flownode {}", processInstanceId,
getInterruptionType(stateCategory), notToInterruptFlownodeId);
return;
}
interruptFlowNodeInstances(flowNodeInstances, stateCategory);
log.info("Process instance {} and its children were {} by flownode {}", processInstanceId,
getInterruptionType(stateCategory), notToInterruptFlownodeId);
}
/**
* Interrupt children of given flow node instance
*
* @param flowNodeInstance the flow node instance
* @param stateCategory the state category in which children must be set
*/
public void interruptChildrenOfFlowNodeInstance(SFlowNodeInstance flowNodeInstance, SStateCategory stateCategory)
throws SBonitaException {
List flowNodeInstances = flowNodeInstanceService
.getDirectChildrenOfActivityInstance(flowNodeInstance.getId(), 0, Integer.MAX_VALUE);
if (flowNodeInstances.isEmpty()) {
log.warn("No children of flownode {} to {} found", flowNodeInstance.getId(),
getInterruptionType(stateCategory));
return;
}
interruptFlowNodeInstances(flowNodeInstances, stateCategory);
}
private void interruptFlowNodeInstances(final List children, final SStateCategory stateCategory)
throws SBonitaException {
for (final SFlowNodeInstance child : children) {
log.debug("Put element in {}, element: {}, {}, {}", stateCategory, child.getId(), child.getStateName(),
child.getType());
flowNodeInstanceService.setStateCategory(child, stateCategory);
log.debug("Resume child in stateCategory {}: {}, {}, {}", stateCategory, child.getId(),
child.getStateName(), child.getStateCategory());
executeFlowNode(child);
}
}
}