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

org.jbpm.bpmn2.xml.ForEachNodeHandler Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
/*
 * Copyright 2010 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.bpmn2.xml;

import java.util.ArrayList;
import java.util.List;

import org.jbpm.compiler.xml.compiler.XmlDumper;
import org.jbpm.workflow.core.Node;
import org.jbpm.workflow.core.node.CompositeNode;
import org.jbpm.workflow.core.node.ForEachNode;
import org.xml.sax.Attributes;

public class ForEachNodeHandler extends AbstractCompositeNodeHandler {

    protected Node createNode(Attributes attrs) {
        throw new IllegalArgumentException("Reading in should be handled by end event handler");
    }

    @SuppressWarnings("unchecked")
    public Class generateNodeFor() {
        return ForEachNode.class;
    }

    public void writeNode(Node node, StringBuilder xmlDump, int metaDataType) {
        ForEachNode forEachNode = (ForEachNode) node;
        writeNode("subProcess", forEachNode, xmlDump, metaDataType);
        xmlDump.append(" >" + EOL);
        writeExtensionElements(node, xmlDump);
        // ioSpecification and dataInputAssociation 
        xmlDump.append(
                "      " + EOL);
        String parameterName = forEachNode.getVariableName();
        if (parameterName != null) {
            xmlDump.append(
                    "        " + EOL);
        }
        xmlDump.append(
                "        " + EOL +
                        "        " + EOL +
                        "      " + EOL);
        String collectionExpression = forEachNode.getCollectionExpression();
        if (collectionExpression != null) {
            xmlDump.append(
                    "      " + EOL +
                            "        " + XmlDumper.replaceIllegalChars(collectionExpression) + "" + EOL +
                            "        " + XmlBPMNProcessDumper.getUniqueNodeId(forEachNode) + "_input" + EOL +
                            "      " + EOL);
        }
        // multiInstanceLoopCharacteristics
        xmlDump.append(
                "      " + EOL +
                        "        " + XmlBPMNProcessDumper.getUniqueNodeId(forEachNode) + "_input" + EOL);
        if (parameterName != null) {
            xmlDump.append("        " + EOL);
        }
        xmlDump.append("      " + EOL);
        // nodes
        List subNodes = getSubNodes(forEachNode);
        XmlBPMNProcessDumper.INSTANCE.visitNodes(subNodes, xmlDump, metaDataType);

        // connections
        visitConnectionsAndAssociations(forEachNode, xmlDump, metaDataType);

        endNode("subProcess", xmlDump);
    }

    protected List getSubNodes(ForEachNode forEachNode) {
        List subNodes =
                new ArrayList<>();
        for (org.kie.api.definition.process.Node subNode : forEachNode.getNodes()) {
            // filter out composite start and end nodes as they can be regenerated
            if ((!(subNode instanceof CompositeNode.CompositeNodeStart)) &&
                    (!(subNode instanceof CompositeNode.CompositeNodeEnd))) {
                subNodes.add((Node) subNode);
            }
        }
        return subNodes;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy