aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-reasoning/src/main/java/tools/refinery/store/reasoning/rule/RuleExecutor.java
blob: 32cf13ea144de6b93fab0d0fdd27d86f27730f38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.reasoning.rule;

import tools.refinery.store.model.Model;
import tools.refinery.store.reasoning.MergeResult;
import tools.refinery.store.tuple.Tuple;

import java.util.List;

public final class RuleExecutor {
	private final Rule rule;
	private final Model model;
	private final List<RuleActionExecutor> actionExecutors;

	RuleExecutor(Rule rule, Model model, List<RuleActionExecutor> actionExecutors) {
		this.rule = rule;
		this.model = model;
		this.actionExecutors = actionExecutors;
	}

	public Rule getRule() {
		return rule;
	}

	public Model getModel() {
		return model;
	}

	public MergeResult execute(Tuple activationTuple) {
		MergeResult mergeResult = MergeResult.UNCHANGED;
		for (var actionExecutor : actionExecutors) {
			mergeResult = mergeResult.andAlso(actionExecutor.execute(activationTuple));
		}
		return mergeResult;
	}
}