Search in sources :

Example 1 with AbstractProcessContext

use of org.drools.core.process.AbstractProcessContext in project kogito-runtimes by kiegroup.

the class RuleSetNodeInstance method internalTrigger.

@Override
public void internalTrigger(KogitoNodeInstance from, String type) {
    try {
        super.internalTrigger(from, type);
        // if node instance was cancelled, abort
        if (getNodeInstanceContainer().getNodeInstance(getStringId()) == null) {
            return;
        }
        if (!Node.CONNECTION_DEFAULT_TYPE.equals(type)) {
            throw new IllegalArgumentException("A RuleSetNode only accepts default incoming connections!");
        }
        RuleSetNode ruleSetNode = getRuleSetNode();
        KieRuntime kruntime = Optional.ofNullable(getRuleSetNode().getKieRuntime()).orElse(() -> getProcessInstance().getKnowledgeRuntime()).get();
        Map<String, Object> inputs = NodeIoHelper.processInputs(this, varRef -> getVariable(varRef));
        RuleSetNode.RuleType ruleType = ruleSetNode.getRuleType();
        if (ruleType.isDecision()) {
            RuleSetNode.RuleType.Decision decisionModel = (RuleSetNode.RuleType.Decision) ruleType;
            String namespace = resolveExpression(decisionModel.getNamespace());
            String model = resolveExpression(decisionModel.getModel());
            DecisionModel modelInstance = Optional.ofNullable(getRuleSetNode().getDecisionModel()).orElse(() -> new DmnDecisionModel(((KieSession) kruntime).getKieRuntime(DMNRuntime.class), namespace, model)).get();
            // Input Binding
            DMNContext context = DMNJSONUtils.ctx(modelInstance, jsonResolver.resolveAll(inputs));
            DMNResult dmnResult = modelInstance.evaluateAll(context);
            if (dmnResult.hasErrors()) {
                String errors = dmnResult.getMessages(Severity.ERROR).stream().map(Object::toString).collect(Collectors.joining(", "));
                throw new RuntimeException("DMN result errors:: " + errors);
            }
            // Output Binding
            Map<String, Object> outputSet = dmnResult.getContext().getAll();
            NodeIoHelper.processOutputs(this, key -> outputSet.get(key), varName -> this.getVariable(varName));
            triggerCompleted();
        } else if (ruleType.isRuleFlowGroup()) {
            // first set rule flow group
            setRuleFlowGroup(resolveRuleFlowGroup(ruleType.getName()));
            // proceed
            for (Entry<String, Object> entry : inputs.entrySet()) {
                if (FIRE_RULE_LIMIT_PARAMETER.equals(entry.getKey())) {
                    // don't put control parameter for fire limit into working memory
                    continue;
                }
                String inputKey = getRuleFlowGroup() + "_" + getProcessInstance().getStringId() + "_" + entry.getKey();
                factHandles.put(inputKey, kruntime.insert(entry.getValue()));
            }
            if (actAsWaitState()) {
                addRuleSetListener();
                ((InternalAgenda) kruntime.getAgenda()).activateRuleFlowGroup(getRuleFlowGroup(), getProcessInstance().getStringId(), getUniqueId());
            } else {
                int fireLimit = DEFAULT_FIRE_RULE_LIMIT;
                WorkflowProcessInstance processInstance = getProcessInstance();
                if (inputs.containsKey(FIRE_RULE_LIMIT_PARAMETER)) {
                    fireLimit = Integer.parseInt(inputs.get(FIRE_RULE_LIMIT_PARAMETER).toString());
                }
                ((InternalAgenda) kruntime.getAgenda()).activateRuleFlowGroup(getRuleFlowGroup(), processInstance.getStringId(), getUniqueId());
                int fired = ((KieSession) kruntime).fireAllRules(processInstance.getAgendaFilter(), fireLimit);
                if (fired == fireLimit) {
                    throw new RuntimeException("Fire rule limit reached " + fireLimit + ", limit can be set via system property " + FIRE_RULE_LIMIT_PROPERTY + " or via data input of business rule task named " + FIRE_RULE_LIMIT_PARAMETER);
                }
                removeEventListeners();
                retractFacts(kruntime);
                triggerCompleted();
            }
        } else if (ruleType.isRuleUnit()) {
            RuleUnitFactory<RuleUnitData> factory = ruleSetNode.getRuleUnitFactory();
            AbstractProcessContext context = ContextFactory.fromNode(this);
            RuleUnitData model = factory.bind(context);
            RuleUnitInstance<RuleUnitData> instance = factory.unit().createInstance(model);
            instance.fire();
            factory.unbind(context, model);
            triggerCompleted();
        } else {
            throw new UnsupportedOperationException("Unsupported Rule Type: " + ruleType);
        }
    } catch (Exception e) {
        handleException(e);
    }
}
Also used : DMNResult(org.kie.dmn.api.core.DMNResult) AbstractProcessContext(org.drools.core.process.AbstractProcessContext) RuleUnitData(org.kie.kogito.rules.RuleUnitData) RuleSetNode(org.jbpm.workflow.core.node.RuleSetNode) KieRuntime(org.kie.api.runtime.KieRuntime) DMNContext(org.kie.dmn.api.core.DMNContext) DecisionModel(org.kie.kogito.decision.DecisionModel) DmnDecisionModel(org.kie.kogito.dmn.DmnDecisionModel) DMNRuntime(org.kie.dmn.api.core.DMNRuntime) WorkflowRuntimeException(org.jbpm.workflow.instance.WorkflowRuntimeException) Entry(java.util.Map.Entry) WorkflowRuntimeException(org.jbpm.workflow.instance.WorkflowRuntimeException) DmnDecisionModel(org.kie.kogito.dmn.DmnDecisionModel) WorkflowProcessInstance(org.jbpm.workflow.instance.WorkflowProcessInstance)

Aggregations

Entry (java.util.Map.Entry)1 AbstractProcessContext (org.drools.core.process.AbstractProcessContext)1 RuleSetNode (org.jbpm.workflow.core.node.RuleSetNode)1 WorkflowProcessInstance (org.jbpm.workflow.instance.WorkflowProcessInstance)1 WorkflowRuntimeException (org.jbpm.workflow.instance.WorkflowRuntimeException)1 KieRuntime (org.kie.api.runtime.KieRuntime)1 DMNContext (org.kie.dmn.api.core.DMNContext)1 DMNResult (org.kie.dmn.api.core.DMNResult)1 DMNRuntime (org.kie.dmn.api.core.DMNRuntime)1 DecisionModel (org.kie.kogito.decision.DecisionModel)1 DmnDecisionModel (org.kie.kogito.dmn.DmnDecisionModel)1 RuleUnitData (org.kie.kogito.rules.RuleUnitData)1