All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jbpm.workflow.instance.node.BoundaryEventNodeInstance Maven / Gradle / Ivy

There is a newer version: 7.74.1.Final
Show newest version
/*
 * Copyright 2017 Red Hat, Inc. and/or its affiliates.
 *
 * 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.jbpm.workflow.instance.node;

import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.jbpm.workflow.core.impl.ExtendedNodeImpl;
import org.jbpm.workflow.core.node.BoundaryEventNode;
import org.jbpm.workflow.core.node.DataAssociation;
import org.jbpm.workflow.instance.NodeInstanceContainer;
import org.jbpm.workflow.instance.impl.WorkflowProcessInstanceImpl;
import org.kie.api.runtime.process.NodeInstance;

public class BoundaryEventNodeInstance extends EventNodeInstance {

    private static final long serialVersionUID = -4958054074031174180L;

    @Override
    public void signalEvent(String type, Object event) {
        BoundaryEventNode boundaryNode = getEventNode();

        String attachedTo = boundaryNode.getAttachedToNodeId();
        Collection nodeInstances = ((NodeInstanceContainer) getNodeInstanceContainer()).getNodeInstances();
        if( type != null && type.startsWith("Compensation") ) { 
            // if not active && completed, signal
            if( ! isAttachedToNodeActive(nodeInstances, attachedTo, type, event) && isAttachedToNodeCompleted(attachedTo)) {
                super.signalEvent(type, event);
            } 
            else {
                cancel();
            }
        } else { 
            if (isAttachedToNodeActive(nodeInstances, attachedTo, type, event)) {
                super.signalEvent(type, event);
            } else {
                cancel();
            }
        }
    }
    
    @Override
    public BoundaryEventNode getEventNode() {
        return (BoundaryEventNode) super.getEventNode();
    }
    
    @Override
    public void triggerCompleted(String type, Object event) {
        Collection nodeInstances = ((NodeInstanceContainer) getNodeInstanceContainer()).getNodeInstances();
        String attachedTo = getEventNode().getAttachedToNodeId();
        NodeInstance nodeInstance = getAttachedToNodeActive(nodeInstances, attachedTo, type, event);
        
        List dataAssociation = getEventNode().getOutAssociations();
        if(!dataAssociation.isEmpty()) {
            
            Map outputData = new HashMap<>();
            // this is for backward compatibility
            outputData.put(dataAssociation.get(0).getSources().get(0), event);
            // added normalized data
            outputData.put("nodeInstance", nodeInstance);
            outputData.put("signal", type);
            outputData.put("event", event);
            if(nodeInstance instanceof WorkItemNodeInstance) {
                outputData.put("workItem", ((WorkItemNodeInstance) nodeInstance).getWorkItem());
            }

            mapOutputSetVariables(this, getEventNode().getOutAssociations(), outputData);
        }
        triggerEvent(ExtendedNodeImpl.EVENT_NODE_BOUNDARY);
        super.triggerCompleted();
    }

    private boolean isAttachedToNodeActive(Collection nodeInstances, String attachedTo, String type, Object event) {
        return getAttachedToNodeActive(nodeInstances, attachedTo, type, event) != null;
    }
    
    
    
    private NodeInstance getAttachedToNodeActive(Collection nodeInstances, String attachedTo, String type, Object event) {
        if (nodeInstances != null && !nodeInstances.isEmpty()) {
            for (NodeInstance nInstance : nodeInstances) {
                String nodeUniqueId = (String) nInstance.getNode().getMetaData().get("UniqueId");
                boolean isActivating = ((WorkflowProcessInstanceImpl)nInstance.getProcessInstance()).getActivatingNodeIds().contains(nodeUniqueId);
                if (attachedTo.equals(nodeUniqueId) && !isActivating) {
                    // in case this is timer event make sure it corresponds to the proper node instance
                    if (type.startsWith("Timer-")) {
                        if (Long.valueOf(nInstance.getId()).equals(event)) {
                            return nInstance;
                        }
                    } else {
                        return nInstance;
                    }
                }
                if (nInstance instanceof CompositeNodeInstance) {
                    NodeInstance nodeInstance = getAttachedToNodeActive(((CompositeNodeInstance) nInstance).getNodeInstances(), attachedTo, type, event);
                    if (nodeInstance != null) {
                        return nodeInstance;
                    }
                }
            }
        }
        return null;
    }
    
    private boolean isAttachedToNodeCompleted(String attachedTo) {
        WorkflowProcessInstanceImpl processInstance = (WorkflowProcessInstanceImpl) getProcessInstance();
        return processInstance.getCompletedNodeIds().contains(attachedTo);
    }

    @Override
    public void cancel(CancelType cancelType) {
        getProcessInstance().removeEventListener(getEventType(), getEventListener(), true);
        ((NodeInstanceContainer) getNodeInstanceContainer()).removeNodeInstance(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy