aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query-viatra/src/main/java/org/eclipse/viatra/query/runtime/rete/network/RefineryConnectionFactory.java
blob: 241c5b58a5b6b7725af9be9f578e5796de3bb175 (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
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package org.eclipse.viatra.query.runtime.rete.network;

import org.eclipse.viatra.query.runtime.rete.traceability.RecipeTraceInfo;
import tools.refinery.store.query.viatra.internal.rete.network.RefineryConnectionFactoryExtensions;

/**
 * This class overrides some RETE connection types from {@link ConnectionFactory}.
 * <p>
 * Since {@link ConnectionFactory} is package-private, this class has to be in the
 * {@code org.eclipse.viatra.query.runtime.rete.network} package as well.
 * However, due to JAR signature verification errors, <b>this class cannot be loaded directly</b>
 * and has to be loaded at runtime as a byte array instead.
 */
@SuppressWarnings("unused")
public class RefineryConnectionFactory extends ConnectionFactory {
	private final RefineryConnectionFactoryExtensions extensions;

	public RefineryConnectionFactory(ReteContainer reteContainer) {
		super(reteContainer);
		extensions = new RefineryConnectionFactoryExtensions(reteContainer);
	}

	@Override
	public void connectToParents(RecipeTraceInfo recipeTrace, Node freshNode) {
		if (!extensions.connectToParents(recipeTrace, freshNode)) {
			super.connectToParents(recipeTrace, freshNode);
		}
	}
}