Search in sources :

Example 1 with LambdaConstraint

use of org.drools.modelcompiler.constraints.LambdaConstraint in project drools by kiegroup.

the class KieBuilderTest method testPatternModelBuild.

@Test
public void testPatternModelBuild() throws Exception {
    KieSession ksession = checkKieSession(ExecutableModelProject.class);
    assertTrue(getAlphaConstraint(ksession) instanceof LambdaConstraint);
}
Also used : LambdaConstraint(org.drools.modelcompiler.constraints.LambdaConstraint) KieSession(org.kie.api.runtime.KieSession) Test(org.junit.Test)

Example 2 with LambdaConstraint

use of org.drools.modelcompiler.constraints.LambdaConstraint in project drools by kiegroup.

the class KieBuilderTest method testFlowModelBuild.

@Test
public void testFlowModelBuild() throws Exception {
    KieSession ksession = checkKieSession(ExecutableModelFlowProject.class);
    assertTrue(getAlphaConstraint(ksession) instanceof LambdaConstraint);
}
Also used : LambdaConstraint(org.drools.modelcompiler.constraints.LambdaConstraint) KieSession(org.kie.api.runtime.KieSession) Test(org.junit.Test)

Example 3 with LambdaConstraint

use of org.drools.modelcompiler.constraints.LambdaConstraint in project drools by kiegroup.

the class KiePackagesBuilder method addConstraintsToPattern.

private void addConstraintsToPattern(RuleContext ctx, Pattern pattern, org.drools.model.Pattern modelPattern, Constraint constraint) {
    if (constraint.getType() == Constraint.Type.SINGLE) {
        SingleConstraint singleConstraint = (SingleConstraint) constraint;
        boolean isEqual = singleConstraint.getIndex() != null && singleConstraint.getIndex().getConstraintType() == Index.ConstraintType.EQUAL;
        if (singleConstraint.getVariables().length > 0) {
            Variable[] vars = singleConstraint.getVariables();
            Declaration[] declarations = new Declaration[vars.length];
            Declaration unificationDeclaration = null;
            for (int i = 0; i < vars.length; i++) {
                declarations[i] = ctx.getDeclaration(vars[i]);
                if (isEqual && declarations[i].getPattern().getObjectType().equals(ClassObjectType.DroolsQuery_ObjectType)) {
                    unificationDeclaration = declarations[i];
                } else if (pattern.getSource() instanceof MultiAccumulate) {
                    Declaration accDeclaration = pattern.getDeclarations().get(declarations[i].getBindingName());
                    if (accDeclaration != null) {
                        declarations[i].setReadAccessor(accDeclaration.getExtractor());
                    }
                }
            }
            ConstraintEvaluator constraintEvaluator = singleConstraint.isTemporal() ? new TemporalConstraintEvaluator(declarations, pattern, singleConstraint) : new ConstraintEvaluator(declarations, pattern, singleConstraint);
            org.drools.core.spi.Constraint droolsConstraint = unificationDeclaration != null ? new UnificationConstraint(unificationDeclaration, constraintEvaluator) : new LambdaConstraint(constraintEvaluator);
            pattern.addConstraint(droolsConstraint);
        }
    } else if (modelPattern.getConstraint().getType() == Constraint.Type.AND) {
        for (Constraint child : constraint.getChildren()) {
            addConstraintsToPattern(ctx, pattern, modelPattern, child);
        }
    }
}
Also used : PrototypeVariable(org.drools.model.PrototypeVariable) Variable(org.drools.model.Variable) SingleConstraint(org.drools.model.SingleConstraint) QueryNameConstraint(org.drools.core.rule.constraint.QueryNameConstraint) LambdaConstraint(org.drools.modelcompiler.constraints.LambdaConstraint) UnificationConstraint(org.drools.modelcompiler.constraints.UnificationConstraint) Constraint(org.drools.model.Constraint) MultiAccumulate(org.drools.core.rule.MultiAccumulate) LambdaConstraint(org.drools.modelcompiler.constraints.LambdaConstraint) TemporalConstraintEvaluator(org.drools.modelcompiler.constraints.TemporalConstraintEvaluator) ConstraintEvaluator(org.drools.modelcompiler.constraints.ConstraintEvaluator) UnificationConstraint(org.drools.modelcompiler.constraints.UnificationConstraint) SingleConstraint(org.drools.model.SingleConstraint) QueryNameConstraint(org.drools.core.rule.constraint.QueryNameConstraint) LambdaConstraint(org.drools.modelcompiler.constraints.LambdaConstraint) FlowDSL.entryPoint(org.drools.model.FlowDSL.entryPoint) UnificationConstraint(org.drools.modelcompiler.constraints.UnificationConstraint) EntryPoint(org.drools.model.EntryPoint) Constraint(org.drools.model.Constraint) TemporalConstraintEvaluator(org.drools.modelcompiler.constraints.TemporalConstraintEvaluator) SingleConstraint(org.drools.model.SingleConstraint) Declaration(org.drools.core.rule.Declaration) WindowDeclaration(org.drools.core.rule.WindowDeclaration) TypeDeclarationUtil.createTypeDeclaration(org.drools.modelcompiler.util.TypeDeclarationUtil.createTypeDeclaration) TypeDeclaration(org.drools.core.rule.TypeDeclaration)

Example 4 with LambdaConstraint

use of org.drools.modelcompiler.constraints.LambdaConstraint in project drools by kiegroup.

the class KiePackagesBuilder method createWindowReference.

private <T> void createWindowReference(RuleContext ctx, WindowReference<T> window) {
    WindowDeclaration windowDeclaration = new WindowDeclaration(window.getName(), ctx.getPkg().getName());
    Variable<T> variable = declarationOf(window.getPatternType());
    Pattern windowPattern = new Pattern(0, getClassObjectType(window.getPatternType()), variable.getName());
    windowDeclaration.setPattern(windowPattern);
    for (Predicate1<T> predicate : window.getPredicates()) {
        SingleConstraint singleConstraint = new SingleConstraint1<>(generateName("expr"), variable, predicate);
        ConstraintEvaluator constraintEvaluator = new ConstraintEvaluator(windowPattern, singleConstraint);
        windowPattern.addConstraint(new LambdaConstraint(constraintEvaluator));
    }
    windowPattern.addBehavior(createWindow(window));
    ctx.getPkg().addWindowDeclaration(windowDeclaration);
}
Also used : QueryCallPattern(org.drools.model.patterns.QueryCallPattern) AccumulatePattern(org.drools.model.AccumulatePattern) Pattern(org.drools.core.rule.Pattern) SingleConstraint1(org.drools.model.constraints.SingleConstraint1) SingleConstraint(org.drools.model.SingleConstraint) WindowDeclaration(org.drools.core.rule.WindowDeclaration) LambdaConstraint(org.drools.modelcompiler.constraints.LambdaConstraint) TemporalConstraintEvaluator(org.drools.modelcompiler.constraints.TemporalConstraintEvaluator) ConstraintEvaluator(org.drools.modelcompiler.constraints.ConstraintEvaluator)

Aggregations

LambdaConstraint (org.drools.modelcompiler.constraints.LambdaConstraint)4 WindowDeclaration (org.drools.core.rule.WindowDeclaration)2 SingleConstraint (org.drools.model.SingleConstraint)2 ConstraintEvaluator (org.drools.modelcompiler.constraints.ConstraintEvaluator)2 TemporalConstraintEvaluator (org.drools.modelcompiler.constraints.TemporalConstraintEvaluator)2 Test (org.junit.Test)2 KieSession (org.kie.api.runtime.KieSession)2 Declaration (org.drools.core.rule.Declaration)1 MultiAccumulate (org.drools.core.rule.MultiAccumulate)1 Pattern (org.drools.core.rule.Pattern)1 TypeDeclaration (org.drools.core.rule.TypeDeclaration)1 QueryNameConstraint (org.drools.core.rule.constraint.QueryNameConstraint)1 AccumulatePattern (org.drools.model.AccumulatePattern)1 Constraint (org.drools.model.Constraint)1 EntryPoint (org.drools.model.EntryPoint)1 FlowDSL.entryPoint (org.drools.model.FlowDSL.entryPoint)1 PrototypeVariable (org.drools.model.PrototypeVariable)1 Variable (org.drools.model.Variable)1 SingleConstraint1 (org.drools.model.constraints.SingleConstraint1)1 QueryCallPattern (org.drools.model.patterns.QueryCallPattern)1