/** * Copyright 2010 JBoss Inc * * 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.drools.bpel.core; import java.util.List; import javax.xml.namespace.NamespaceContext; import org.drools.process.core.context.exception.ExceptionScope; import org.drools.process.core.context.variable.VariableScope; import org.drools.workflow.core.Node; import org.drools.workflow.core.impl.ConnectionImpl; import org.drools.workflow.core.impl.WorkflowProcessImpl; import org.drools.workflow.core.node.EndNode; import org.drools.workflow.core.node.Join; import org.drools.workflow.core.node.Split; import org.drools.workflow.core.node.StartNode; /** * * @author <a href="mailto:kris_verlaenen@hotmail.com">Kris Verlaenen</a> */ public class BPELProcess extends WorkflowProcessImpl implements BPELFaultHandlerContainer { private static final long serialVersionUID = 510l; public static final String BPEL_TYPE = "BPEL"; private BPELActivity activity; private NamespaceContext namespaceContext; public BPELProcess() { setType(BPEL_TYPE); VariableScope variableScope = new VariableScope(); addContext(variableScope); setDefaultContext(variableScope); } public VariableScope getVariableScope() { return (VariableScope) getDefaultContext(VariableScope.VARIABLE_SCOPE); } public void setActivity(BPELActivity activity) { if (activity == null) { throw new IllegalArgumentException( "The activity of a BPEL process may not be null!"); } if (this.activity != null) { throw new IllegalArgumentException( "The activity of this BPEL process has already been set!"); } this.activity = activity; activity.setId(1); addNode(activity); StartNode start = new StartNode(); start.setMetaData("hidden", true); start.setId(2); addNode(start); new ConnectionImpl( start, Node.CONNECTION_DEFAULT_TYPE, activity, Node.CONNECTION_DEFAULT_TYPE); EndNode end = new EndNode(); end.setId(3); end.setMetaData("hidden", true); addNode(end); new ConnectionImpl( activity, Node.CONNECTION_DEFAULT_TYPE, end, Node.CONNECTION_DEFAULT_TYPE); } public BPELActivity getActivity() { return activity; } public void setFaultHandlers(List<BPELFaultHandler> faultHandlers) { ExceptionScope exceptionScope = new ExceptionScope(); addContext(exceptionScope); setDefaultContext(exceptionScope); int i = 4; Split split = new Split(); split.setId(i++); addNode(split); Join join = new Join(); join.setId(i++); join.setType(Join.TYPE_XOR); addNode(join); EndNode endNode = new EndNode(); endNode.setId(i++); addNode(endNode); new ConnectionImpl( join, Node.CONNECTION_DEFAULT_TYPE, endNode, Node.CONNECTION_DEFAULT_TYPE); for (BPELFaultHandler faultHandler: faultHandlers) { BPELFaultHandlerScope faultHandlerScope = new BPELFaultHandlerScope(); faultHandlerScope.setId(i++); addNode(faultHandlerScope); Node activity = faultHandler.getActivity(); faultHandlerScope.addNode(activity); faultHandlerScope.linkIncomingConnections( Node.CONNECTION_DEFAULT_TYPE, activity.getId(), Node.CONNECTION_DEFAULT_TYPE); faultHandlerScope.linkOutgoingConnections( activity.getId(), Node.CONNECTION_DEFAULT_TYPE, Node.CONNECTION_DEFAULT_TYPE); exceptionScope.setExceptionHandler(faultHandler.getFaultName(), faultHandler); new ConnectionImpl( split, Node.CONNECTION_DEFAULT_TYPE, faultHandlerScope, Node.CONNECTION_DEFAULT_TYPE); new ConnectionImpl( faultHandlerScope, Node.CONNECTION_DEFAULT_TYPE, join, Node.CONNECTION_DEFAULT_TYPE); } } public NamespaceContext getNamespaceContext() { return namespaceContext; } public void setNamespaceContext(NamespaceContext namespaceContext) { this.namespaceContext = namespaceContext; } }