Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.process.builder.dialect.java;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import org.drools.compiler.compiler.AnalysisResult;
import org.drools.compiler.compiler.BoundIdentifiers;
import org.drools.compiler.lang.descr.ActionDescr;
import org.drools.compiler.rule.builder.PackageBuildContext;
import org.drools.mvel.java.JavaDialect;
import org.jbpm.process.builder.ActionBuilder;
import org.jbpm.process.builder.ProcessBuildContext;
import org.jbpm.process.core.ContextResolver;
import org.jbpm.workflow.core.DroolsAction;
public class JavaActionBuilder extends AbstractJavaProcessBuilder
implements
ActionBuilder {
public void build(final PackageBuildContext context,
final DroolsAction action,
final ActionDescr actionDescr,
final ContextResolver contextResolver) {
final String className = getClassName(context);
AnalysisResult analysis = getAnalysis(context, actionDescr);
if ( analysis == null ) {
// build is not possible without analysis results
return;
}
buildAction(context,
action,
actionDescr,
contextResolver,
className,
analysis);
}
protected String getClassName(PackageBuildContext context) {
return "action" + context.getNextId();
}
protected AnalysisResult getAnalysis(final PackageBuildContext context,
final ActionDescr actionDescr) {
JavaDialect dialect = (JavaDialect) context.getDialect( "java" );
Map> variables = new HashMap>();
BoundIdentifiers boundIdentifiers = new BoundIdentifiers(variables, context);
AnalysisResult analysis = dialect.analyzeBlock( context,
actionDescr,
actionDescr.getText(),
boundIdentifiers);
return analysis;
}
protected void buildAction(final PackageBuildContext context,
final DroolsAction action,
final ActionDescr actionDescr,
final ContextResolver contextResolver,
String className,
AnalysisResult analysis) {
Set identifiers = analysis.getBoundIdentifiers().getGlobals().keySet();
final Map map = createVariableContext( className,
actionDescr.getText(),
(ProcessBuildContext) context,
(String[]) identifiers.toArray( new String[identifiers.size()] ),
analysis.getNotBoundedIdentifiers(),
contextResolver);
map.put( "text",
ProcessKnowledgeHelperFixer.fix( actionDescr.getText() ));
generateTemplates( "actionMethod",
"actionInvoker",
(ProcessBuildContext)context,
className,
map,
action,
actionDescr );
collectTypes("JavaDialect", analysis, (ProcessBuildContext)context);
}
}