org.bonitasoft.engine.execution.handler.ArchiveProcessInstancesHandler Maven / Gradle / Ivy
/**
* 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.handler;
import java.util.UUID;
import org.bonitasoft.engine.bpm.process.ProcessInstanceState;
import org.bonitasoft.engine.commons.exceptions.SBonitaException;
import org.bonitasoft.engine.core.process.definition.model.SFlowNodeType;
import org.bonitasoft.engine.core.process.instance.api.ProcessInstanceService;
import org.bonitasoft.engine.core.process.instance.model.SProcessInstance;
import org.bonitasoft.engine.events.model.SHandlerExecutionException;
import org.bonitasoft.engine.events.model.SUpdateEvent;
import org.bonitasoft.engine.service.TenantServiceAccessor;
import org.bonitasoft.engine.service.impl.ServiceAccessorFactory;
/**
* @author Baptiste Mesta
* @author Elias Ricken de Medeiros
* @author Celine Souchet
*/
public class ArchiveProcessInstancesHandler implements SProcessInstanceHandler {
private static final long serialVersionUID = 1L;
private final long tenantId;
private final String identifier;
public ArchiveProcessInstancesHandler(final long tenantId) {
this(tenantId, UUID.randomUUID().toString());
}
public ArchiveProcessInstancesHandler(final long tenantId, final String identifier) {
this.tenantId = tenantId;
this.identifier = identifier;
}
@Override
public void execute(final SUpdateEvent event) throws SHandlerExecutionException {
final SProcessInstance processInstance = (SProcessInstance) event.getObject();
try {
getTenantServiceAccessor().getBPMArchiverService().archiveAndDeleteProcessInstance(processInstance);
} catch (SBonitaException e) {
throw new SHandlerExecutionException(e);
}
}
/**
* @return tenantServiceAccessor
* @throws SHandlerExecutionException
*/
private TenantServiceAccessor getTenantServiceAccessor() throws SHandlerExecutionException {
try {
ServiceAccessorFactory serviceAccessorFactory = ServiceAccessorFactory.getInstance();
return serviceAccessorFactory.createTenantServiceAccessor(tenantId);
} catch (Exception e) {
throw new SHandlerExecutionException(e.getMessage(), null);
}
}
@Override
public boolean isInterested(final SUpdateEvent event) {
boolean isInterested = ProcessInstanceService.PROCESSINSTANCE_STATE_UPDATED.equals(event.getType())
&& event.getObject() instanceof SProcessInstance;
if (isInterested) {
final SProcessInstance processInstance = (SProcessInstance) event.getObject();
// TODO add a method isInTerminalState in SProcessInstance
final boolean isTerminal = ProcessInstanceState.COMPLETED.getId() == processInstance.getStateId()
|| ProcessInstanceState.ABORTED.getId() == processInstance.getStateId()
|| ProcessInstanceState.CANCELLED.getId() == processInstance.getStateId();
// process instances called by an call activity are archive in the state CompletingCallActivity (wait data transfer from called process to caller).
// Sub-process can be archived directly
isInterested = isTerminal && (processInstance.getCallerId() <= 0
|| SFlowNodeType.SUB_PROCESS.equals(processInstance.getCallerType()));
}
return isInterested;
}
@Override
public String getIdentifier() {
return identifier;
}
}