org.activiti.engine.impl.persistence.entity.DeploymentEntityManagerImpl Maven / Gradle / Ivy
/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.activiti.engine.impl.persistence.entity;
import java.util.List;
import java.util.Map;
import org.activiti.bpmn.model.EventDefinition;
import org.activiti.bpmn.model.StartEvent;
import org.activiti.bpmn.model.TimerEventDefinition;
import org.activiti.engine.ProcessEngineConfiguration;
import org.activiti.engine.delegate.event.ActivitiEventType;
import org.activiti.engine.delegate.event.impl.ActivitiEventBuilder;
import org.activiti.engine.impl.DeploymentQueryImpl;
import org.activiti.engine.impl.ModelQueryImpl;
import org.activiti.engine.impl.Page;
import org.activiti.engine.impl.ProcessDefinitionQueryImpl;
import org.activiti.engine.impl.cfg.ProcessEngineConfigurationImpl;
import org.activiti.engine.impl.jobexecutor.TimerEventHandler;
import org.activiti.engine.impl.jobexecutor.TimerStartEventJobHandler;
import org.activiti.engine.impl.persistence.entity.data.DataManager;
import org.activiti.engine.impl.persistence.entity.data.DeploymentDataManager;
import org.activiti.engine.impl.util.CollectionUtil;
import org.activiti.engine.impl.util.ProcessDefinitionUtil;
import org.activiti.engine.impl.util.TimerUtil;
import org.activiti.engine.repository.Deployment;
import org.activiti.engine.repository.Model;
import org.activiti.engine.repository.ProcessDefinition;
import org.activiti.engine.runtime.Job;
/**
* @author Tom Baeyens
* @author Joram Barrez
*/
public class DeploymentEntityManagerImpl extends AbstractEntityManager implements DeploymentEntityManager {
protected DeploymentDataManager deploymentDataManager;
public DeploymentEntityManagerImpl(ProcessEngineConfigurationImpl processEngineConfiguration, DeploymentDataManager deploymentDataManager) {
super(processEngineConfiguration);
this.deploymentDataManager = deploymentDataManager;
}
@Override
protected DataManager getDataManager() {
return deploymentDataManager;
}
@Override
public void insert(DeploymentEntity deployment) {
insert(deployment, false);
for (ResourceEntity resource : deployment.getResources().values()) {
resource.setDeploymentId(deployment.getId());
getResourceEntityManager().insert(resource);
}
}
@Override
public void deleteDeployment(String deploymentId, boolean cascade) {
List processDefinitions = new ProcessDefinitionQueryImpl().deploymentId(deploymentId).list();
// Remove the deployment link from any model.
// The model will still exists, as a model is a source for a deployment
// model and has a different lifecycle
List models = new ModelQueryImpl().deploymentId(deploymentId).list();
for (Model model : models) {
ModelEntity modelEntity = (ModelEntity) model;
modelEntity.setDeploymentId(null);
getModelEntityManager().updateModel(modelEntity);
}
if (cascade) {
// delete process instances
for (ProcessDefinition processDefinition : processDefinitions) {
String processDefinitionId = processDefinition.getId();
getExecutionEntityManager().deleteProcessInstancesByProcessDefinition(processDefinitionId, "deleted deployment", cascade);
}
}
for (ProcessDefinition processDefinition : processDefinitions) {
String processDefinitionId = processDefinition.getId();
// remove related authorization parameters in IdentityLink table
getIdentityLinkEntityManager().deleteIdentityLinksByProcDef(processDefinitionId);
// event subscriptions
getEventSubscriptionEntityManager().deleteEventSubscriptionsForProcessDefinition(processDefinitionId);
getProcessDefinitionInfoEntityManager().deleteProcessDefinitionInfo(processDefinitionId);
}
// delete process definitions from db
getProcessDefinitionEntityManager().deleteProcessDefinitionsByDeploymentId(deploymentId);
for (ProcessDefinition processDefinition : processDefinitions) {
// remove timer start events for current process definition:
List timerStartJobs = getJobEntityManager()
.findJobsByTypeAndProcessDefinitionId(TimerStartEventJobHandler.TYPE, processDefinition.getId());
if (timerStartJobs != null && timerStartJobs.size() > 0) {
for (Job timerStartJob : timerStartJobs) {
if (getEventDispatcher().isEnabled()) {
getEventDispatcher().dispatchEvent(ActivitiEventBuilder.createEntityEvent(ActivitiEventType.JOB_CANCELED, timerStartJob, null, null, processDefinition.getId()));
}
getJobEntityManager().delete((JobEntity) timerStartJob);
}
}
// If previous process definition version has a timer start event, it must be added
ProcessDefinitionEntity latestProcessDefinition = null;
if (processDefinition.getTenantId() != null && !ProcessEngineConfiguration.NO_TENANT_ID.equals(processDefinition.getTenantId())) {
latestProcessDefinition = getProcessDefinitionEntityManager()
.findLatestProcessDefinitionByKeyAndTenantId(processDefinition.getKey(), processDefinition.getTenantId());
} else {
latestProcessDefinition = getProcessDefinitionEntityManager()
.findLatestProcessDefinitionByKey(processDefinition.getKey());
}
// Only if the currently deleted process definition is the latest version, we fall back to the previous timer start event
if (processDefinition.getId().equals(latestProcessDefinition.getId())) {
// Try to find a previous version (it could be some versions are missing due to deletions)
int previousVersion = processDefinition.getVersion() - 1;
ProcessDefinitionEntity previousProcessDefinition = null;
while (previousProcessDefinition == null && previousVersion > 0) {
ProcessDefinitionQueryImpl previousProcessDefinitionQuery = new ProcessDefinitionQueryImpl()
.processDefinitionVersion(previousVersion)
.processDefinitionKey(processDefinition.getKey());
if (processDefinition.getTenantId() != null && !ProcessEngineConfiguration.NO_TENANT_ID.equals(processDefinition.getTenantId())) {
previousProcessDefinitionQuery.processDefinitionTenantId(processDefinition.getTenantId());
} else {
previousProcessDefinitionQuery.processDefinitionWithoutTenantId();
}
previousProcessDefinition = (ProcessDefinitionEntity) previousProcessDefinitionQuery.singleResult();
previousVersion--;
}
// TODO: cleanup in a util or something like that
if (previousProcessDefinition != null) {
org.activiti.bpmn.model.Process previousProcess = ProcessDefinitionUtil.getProcess(previousProcessDefinition.getId());
if (CollectionUtil.isNotEmpty(previousProcess.getFlowElements())) {
List startEvents = previousProcess.findFlowElementsOfType(StartEvent.class);
if (CollectionUtil.isNotEmpty(startEvents)) {
for (StartEvent startEvent : startEvents) {
if (CollectionUtil.isNotEmpty(startEvent.getEventDefinitions())) {
EventDefinition eventDefinition = startEvent.getEventDefinitions().get(0);
if (eventDefinition instanceof TimerEventDefinition) {
TimerEventDefinition timerEventDefinition = (TimerEventDefinition) eventDefinition;
TimerEntity timer = TimerUtil.createTimerEntityForTimerEventDefinition((TimerEventDefinition) eventDefinition, false, null, TimerStartEventJobHandler.TYPE,
TimerEventHandler.createConfiguration(startEvent.getId(), timerEventDefinition.getEndDate()));
if (timer != null) {
timer.setProcessDefinitionId(previousProcessDefinition.getId());
if (previousProcessDefinition.getTenantId() != null) {
timer.setTenantId(previousProcessDefinition.getTenantId());
}
getJobEntityManager().schedule(timer);
}
}
}
}
}
}
}
}
}
getResourceEntityManager().deleteResourcesByDeploymentId(deploymentId);
delete(findById(deploymentId), false);
}
@Override
public DeploymentEntity findLatestDeploymentByName(String deploymentName) {
return deploymentDataManager.findLatestDeploymentByName(deploymentName);
}
@Override
public long findDeploymentCountByQueryCriteria(DeploymentQueryImpl deploymentQuery) {
return deploymentDataManager.findDeploymentCountByQueryCriteria(deploymentQuery);
}
@Override
public List findDeploymentsByQueryCriteria(DeploymentQueryImpl deploymentQuery, Page page) {
return deploymentDataManager.findDeploymentsByQueryCriteria(deploymentQuery, page);
}
@Override
public List getDeploymentResourceNames(String deploymentId) {
return deploymentDataManager.getDeploymentResourceNames(deploymentId);
}
@Override
public List findDeploymentsByNativeQuery(Map parameterMap, int firstResult, int maxResults) {
return deploymentDataManager.findDeploymentsByNativeQuery(parameterMap, firstResult, maxResults);
}
@Override
public long findDeploymentCountByNativeQuery(Map parameterMap) {
return deploymentDataManager.findDeploymentCountByNativeQuery(parameterMap);
}
public DeploymentDataManager getDeploymentDataManager() {
return deploymentDataManager;
}
public void setDeploymentDataManager(DeploymentDataManager deploymentDataManager) {
this.deploymentDataManager = deploymentDataManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy