
org.jbpm.compiler.canonical.CompositeContextNodeVisitor Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.compiler.canonical;
import java.util.HashSet;
import java.util.stream.Stream;
import org.jbpm.compiler.canonical.node.NodeVisitorBuilderService;
import org.jbpm.process.core.context.variable.VariableScope;
import org.jbpm.ruleflow.core.factory.CompositeContextNodeFactory;
import org.jbpm.workflow.core.node.CompositeContextNode;
import com.github.javaparser.ast.expr.BooleanLiteralExpr;
import com.github.javaparser.ast.expr.MethodCallExpr;
import com.github.javaparser.ast.expr.StringLiteralExpr;
import com.github.javaparser.ast.stmt.BlockStmt;
public class CompositeContextNodeVisitor extends AbstractCompositeNodeVisitor {
public CompositeContextNodeVisitor(NodeVisitorBuilderService nodeVisitorService) {
super(nodeVisitorService);
}
@Override
protected String getNodeKey() {
return "compositeContextNode";
}
protected Class> factoryClass() {
return CompositeContextNodeFactory.class;
}
protected String factoryMethod() {
return getNodeKey();
}
protected String getDefaultName() {
return "Composite";
}
@Override
public void visitNode(String factoryField, T node, BlockStmt body, VariableScope variableScope, ProcessMetaData metadata) {
body.addStatement(getAssignedFactoryMethod(factoryField, factoryClass(), getNodeId(node), factoryMethod(), getWorkflowElementConstructor(node.getId())))
.addStatement(getNameMethod(node, getDefaultName()));
visitMetaData(node.getMetaData(), body, getNodeId(node));
VariableScope variableScopeNode = (VariableScope) node.getDefaultContext(VariableScope.VARIABLE_SCOPE);
if (variableScope != null) {
visitVariableScope(getNodeId(node), variableScopeNode, body, new HashSet<>(), node.getClass().getName());
}
visitCustomFields(node, variableScope).forEach(body::addStatement);
// composite context node might not have variable scope
// in that case inherit it from parent
VariableScope scope = variableScope;
if (node.getDefaultContext(VariableScope.VARIABLE_SCOPE) != null && !((VariableScope) node.getDefaultContext(VariableScope.VARIABLE_SCOPE)).getVariables().isEmpty()) {
scope = (VariableScope) node.getDefaultContext(VariableScope.VARIABLE_SCOPE);
}
visitCompensationScope(node, body);
body.addStatement(getFactoryMethod(getNodeId(node), CompositeContextNodeFactory.METHOD_AUTO_COMPLETE, new BooleanLiteralExpr(node.isAutoComplete())));
String timeout = node.getTimeout();
if (timeout != null) {
body.addStatement(getFactoryMethod(getNodeId(node), "timeout", new StringLiteralExpr(timeout)));
}
addNodeMappings(node, body, getNodeId(node));
visitNodes(getNodeId(node), node.getNodes(), body, scope, metadata);
visitConnections(getNodeId(node), node.getNodes(), body);
body.addStatement(getDoneMethod(getNodeId(node)));
}
protected Stream visitCustomFields(T compositeContextNode, VariableScope variableScope) {
return Stream.empty();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy