
org.bonitasoft.engine.execution.state.EndingCallActivityExceptionStateImpl Maven / Gradle / Ivy
/**
* Copyright (C) 2012 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.state;
import org.bonitasoft.engine.SArchivingException;
import org.bonitasoft.engine.archive.ArchiveService;
import org.bonitasoft.engine.commons.exceptions.SBonitaException;
import org.bonitasoft.engine.core.connector.ConnectorInstanceService;
import org.bonitasoft.engine.core.process.comment.api.SCommentService;
import org.bonitasoft.engine.core.process.comment.model.archive.builder.SACommentBuilder;
import org.bonitasoft.engine.core.process.definition.ProcessDefinitionService;
import org.bonitasoft.engine.core.process.definition.model.SProcessDefinition;
import org.bonitasoft.engine.core.process.document.mapping.DocumentMappingService;
import org.bonitasoft.engine.core.process.instance.api.ActivityInstanceService;
import org.bonitasoft.engine.core.process.instance.api.ProcessInstanceService;
import org.bonitasoft.engine.core.process.instance.api.exceptions.SActivityExecutionException;
import org.bonitasoft.engine.core.process.instance.api.exceptions.SActivityStateExecutionException;
import org.bonitasoft.engine.core.process.instance.api.exceptions.SProcessInstanceNotFoundException;
import org.bonitasoft.engine.core.process.instance.api.states.FlowNodeState;
import org.bonitasoft.engine.core.process.instance.api.states.StateCode;
import org.bonitasoft.engine.core.process.instance.model.SCallActivityInstance;
import org.bonitasoft.engine.core.process.instance.model.SFlowNodeInstance;
import org.bonitasoft.engine.core.process.instance.model.SProcessInstance;
import org.bonitasoft.engine.core.process.instance.model.builder.BPMInstanceBuilders;
import org.bonitasoft.engine.data.instance.api.DataInstanceService;
import org.bonitasoft.engine.data.instance.model.builder.SDataInstanceBuilders;
import org.bonitasoft.engine.execution.ContainerRegistry;
import org.bonitasoft.engine.execution.TransactionContainedProcessInstanceInterruptor;
import org.bonitasoft.engine.execution.archive.ProcessArchiver;
import org.bonitasoft.engine.lock.LockService;
import org.bonitasoft.engine.log.technical.TechnicalLoggerService;
import org.bonitasoft.engine.persistence.SBonitaSearchException;
/**
* @author Elias Ricken de Medeiros
*/
public abstract class EndingCallActivityExceptionStateImpl implements FlowNodeState {
private final BPMInstanceBuilders bpmInstanceBuilders;
private final ActivityInstanceService activityInstanceService;
private final ProcessInstanceService processInstanceService;
private final ContainerRegistry containerRegistry;
private final ArchiveService archiveService;
private final SCommentService commentService;
private final SACommentBuilder saCommentBuilder;
private final DataInstanceService dataInstanceService;
private final DocumentMappingService documentMappingService;
private final TechnicalLoggerService logger;
private final SDataInstanceBuilders dataInstanceBuilders;
private final LockService lockService;
private final ProcessDefinitionService processDefinitionService;
private final ConnectorInstanceService connectorInstanceService;
public EndingCallActivityExceptionStateImpl(final BPMInstanceBuilders bpmInstanceBuilders, final ActivityInstanceService activityInstanceService,
final ProcessInstanceService processInstanceService, final ContainerRegistry containerRegistry, final ArchiveService archiveService,
final SCommentService commentService, final SACommentBuilder saCommentBuilder, final DataInstanceService dataInstanceService,
final DocumentMappingService documentMappingService, final TechnicalLoggerService logger, final SDataInstanceBuilders dataInstanceBuilders,
final LockService lockService, final ProcessDefinitionService processDefinitionService, final ConnectorInstanceService connectorInstanceService) {
super();
this.bpmInstanceBuilders = bpmInstanceBuilders;
this.activityInstanceService = activityInstanceService;
this.processInstanceService = processInstanceService;
this.containerRegistry = containerRegistry;
this.archiveService = archiveService;
this.commentService = commentService;
this.saCommentBuilder = saCommentBuilder;
this.dataInstanceService = dataInstanceService;
this.documentMappingService = documentMappingService;
this.logger = logger;
this.dataInstanceBuilders = dataInstanceBuilders;
this.lockService = lockService;
this.processDefinitionService = processDefinitionService;
this.connectorInstanceService = connectorInstanceService;
}
@Override
public boolean shouldExecuteState(final SProcessDefinition processDefinition, final SFlowNodeInstance flowNodeInstance) throws SActivityExecutionException {
try {
final SCallActivityInstance callActivity = (SCallActivityInstance) flowNodeInstance;
final boolean hasActiveChild = callActivity.getTokenCount() > 0;
if (hasActiveChild) {
final SProcessInstance targetProcessInstance = processInstanceService.getChildOfActivity(flowNodeInstance.getId());
final TransactionContainedProcessInstanceInterruptor processInstanceInterruptor = new TransactionContainedProcessInstanceInterruptor(
bpmInstanceBuilders, processInstanceService, activityInstanceService, containerRegistry, lockService, logger);
processInstanceInterruptor.interruptProcessInstance(targetProcessInstance.getId(), getStateCategory(), -1);
} else {
archiveChildProcessInstance(flowNodeInstance);
}
return hasActiveChild;
} catch (final SBonitaException e) {
throw new SActivityExecutionException(e);
}
}
@Override
public StateCode execute(final SProcessDefinition processDefinition, final SFlowNodeInstance instance) throws SActivityStateExecutionException {
// archive process target process instance
try {
archiveChildProcessInstance(instance);
} catch (final SBonitaException e) {
throw new SActivityStateExecutionException("Unable to found the process instance called by call activity with id " + instance.getId(), e);
}
return StateCode.DONE;
}
protected void archiveChildProcessInstance(final SFlowNodeInstance instance) throws SProcessInstanceNotFoundException, SArchivingException,
SBonitaSearchException {
final SProcessInstance childProcInst = processInstanceService.getChildOfActivity(instance.getId());
ProcessArchiver.archiveProcessInstance(childProcInst, archiveService, processInstanceService, dataInstanceService, documentMappingService, logger,
bpmInstanceBuilders, dataInstanceBuilders, commentService, saCommentBuilder, processDefinitionService, connectorInstanceService);
}
@Override
public boolean hit(final SProcessDefinition processDefinition, final SFlowNodeInstance parentInstance, final SFlowNodeInstance childInstance)
throws SActivityStateExecutionException {
return true;
}
@Override
public boolean isInterrupting() {
return false;
}
@Override
public boolean isStable() {
return true;
}
@Override
public boolean isTerminal() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy