/* 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.bpmn.parser.handler; import java.util.HashMap; import org.activiti.bpmn.model.BaseElement; import org.activiti.bpmn.model.Process; import org.activiti.engine.impl.bpmn.data.IOSpecification; import org.activiti.engine.impl.bpmn.parser.BpmnParse; import org.activiti.engine.impl.el.ExpressionManager; import org.activiti.engine.impl.persistence.entity.ProcessDefinitionEntity; import org.activiti.engine.impl.task.TaskDefinition; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @author Joram Barrez */ public class ProcessParseHandler extends AbstractBpmnParseHandler<Process> { private static final Logger LOGGER = LoggerFactory.getLogger(ProcessParseHandler.class); public static final String PROPERTYNAME_DOCUMENTATION = "documentation"; public Class< ? extends BaseElement> getHandledType() { return Process.class; } protected void executeParse(BpmnParse bpmnParse, Process process) { if (process.isExecutable() == false) { LOGGER.info("Ignoring non-executable process with id='" + process.getId() + "'. Set the attribute isExecutable=\"true\" to deploy this process."); } else { bpmnParse.getProcessDefinitions().add(transformProcess(bpmnParse, process)); } } protected ProcessDefinitionEntity transformProcess(BpmnParse bpmnParse, Process process) { ProcessDefinitionEntity currentProcessDefinition = new ProcessDefinitionEntity(); bpmnParse.setCurrentProcessDefinition(currentProcessDefinition); /* * Mapping object model - bpmn xml: processDefinition.id -> generated by * activiti engine processDefinition.key -> bpmn id (required) * processDefinition.name -> bpmn name (optional) */ currentProcessDefinition.setKey(process.getId()); currentProcessDefinition.setName(process.getName()); currentProcessDefinition.setCategory(bpmnParse.getBpmnModel().getTargetNamespace()); currentProcessDefinition.setDescription(process.getDocumentation()); currentProcessDefinition.setProperty(PROPERTYNAME_DOCUMENTATION, process.getDocumentation()); // Kept for backwards compatibility. See ACT-1020 currentProcessDefinition.setTaskDefinitions(new HashMap<String, TaskDefinition>()); currentProcessDefinition.setDeploymentId(bpmnParse.getDeployment().getId()); createExecutionListenersOnScope(bpmnParse, process.getExecutionListeners(), currentProcessDefinition); ExpressionManager expressionManager = bpmnParse.getExpressionManager(); for (String candidateUser : process.getCandidateStarterUsers()) { currentProcessDefinition.addCandidateStarterUserIdExpression(expressionManager.createExpression(candidateUser)); } for (String candidateGroup : process.getCandidateStarterGroups()) { currentProcessDefinition.addCandidateStarterGroupIdExpression(expressionManager.createExpression(candidateGroup)); } if (LOGGER.isDebugEnabled()) { LOGGER.debug("Parsing process {}", currentProcessDefinition.getKey()); } bpmnParse.setCurrentScope(currentProcessDefinition); bpmnParse.processFlowElements(process.getFlowElements()); processArtifacts(bpmnParse, process.getArtifacts(), currentProcessDefinition); bpmnParse.removeCurrentScope(); if (process.getIoSpecification() != null) { IOSpecification ioSpecification = createIOSpecification(bpmnParse, process.getIoSpecification()); currentProcessDefinition.setIoSpecification(ioSpecification); } return currentProcessDefinition; } }