org.drools.rule.builder.dialect.mvel.MVELEnabledBuilder Maven / Gradle / Ivy
package org.drools.rule.builder.dialect.mvel;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.drools.base.mvel.MVELCompilationUnit;
import org.drools.base.mvel.MVELEnabledExpression;
import org.drools.compiler.AnalysisResult;
import org.drools.compiler.BoundIdentifiers;
import org.drools.compiler.DescrBuildError;
import org.drools.reteoo.RuleTerminalNode.SortDeclarations;
import org.drools.rule.Declaration;
import org.drools.rule.MVELDialectRuntimeData;
import org.drools.rule.builder.EnabledBuilder;
import org.drools.rule.builder.RuleBuildContext;
import org.drools.spi.KnowledgeHelper;
import static org.drools.rule.builder.dialect.DialectUtil.copyErrorLocation;
public class MVELEnabledBuilder
implements
EnabledBuilder {
public void build(RuleBuildContext context) {
// pushing consequence LHS into the stack for variable resolution
context.getBuildStack().push( context.getRule().getLhs() );
try {
// This builder is re-usable in other dialects, so specify by name
MVELDialect dialect = (MVELDialect) context.getDialect( "mvel" );
Map> otherVars = new HashMap>();
otherVars.put( "rule",
org.drools.rule.Rule.class );
Map declrs = context.getDeclarationResolver().getDeclarations( context.getRule() );
AnalysisResult analysis = dialect.analyzeExpression( context,
context.getRuleDescr(),
(String) context.getRuleDescr().getEnabled(),
new BoundIdentifiers( context.getDeclarationResolver().getDeclarationClasses( declrs ),
context.getPackageBuilder().getGlobals() ),
otherVars );
final BoundIdentifiers usedIdentifiers = analysis.getBoundIdentifiers();
int i = usedIdentifiers.getDeclrClasses().keySet().size();
Declaration[] previousDeclarations = new Declaration[i];
i = 0;
for ( String id : usedIdentifiers.getDeclrClasses().keySet() ) {
previousDeclarations[i++] = declrs.get( id );
}
Arrays.sort( previousDeclarations, SortDeclarations.instance );
String exprStr = (String) context.getRuleDescr().getEnabled();
exprStr = exprStr.substring( 1,
exprStr.length() - 1 ) + " ";
MVELCompilationUnit unit = dialect.getMVELCompilationUnit( exprStr,
analysis,
previousDeclarations,
null,
otherVars,
context,
"drools",
KnowledgeHelper.class,
false );
MVELEnabledExpression expr = new MVELEnabledExpression( unit,
dialect.getId() );
context.getRule().setEnabled( expr );
MVELDialectRuntimeData data = (MVELDialectRuntimeData) context.getPkg().getDialectRuntimeRegistry().getDialectData( "mvel" );
data.addCompileable( context.getRule(),
expr );
expr.compile( data );
} catch ( final Exception e ) {
copyErrorLocation(e, context.getRuleDescr());
context.addError( new DescrBuildError( context.getParentDescr(),
context.getRuleDescr(),
null,
"Unable to build expression for 'enabled' : " + e.getMessage() + " '" + context.getRuleDescr().getEnabled() + "'" ) );
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy