aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/viatra-runtime/src/main/java/tools/refinery/viatra/runtime/matchers/planning/operations/PApply.java
blob: 2c285b5420b11025d156d92457f56d6774df72e3 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*******************************************************************************
 * Copyright (c) 2010-2014, Bergmann Gabor, Istvan Rath and Daniel Varro
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-v20.html.
 * 
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package tools.refinery.viatra.runtime.matchers.planning.operations;

import java.util.Collections;
import java.util.Set;

import tools.refinery.viatra.runtime.matchers.planning.SubPlan;
import tools.refinery.viatra.runtime.matchers.psystem.PConstraint;
import tools.refinery.viatra.runtime.matchers.util.Preconditions;

/**
 * Represents a constraint application on a single parent SubPlan. 
 * <p> Either a "selection" filter operation according to a deferred PConstraint (or transform in case of eval/aggregate), or
 * alternatively a shorthand for PJoin + a PEnumerate on the right input for an enumerable PConstraint.
 * 
 * <p> <b>WARNING</b>: if there are coinciding variables in the variable tuple of the enumerable constraint, 
 *   it is the responsibility of the compiler to check them for equality.
 * 
 * @author Bergmann Gabor
 *
 */
public class PApply extends POperation {
    
    private PConstraint pConstraint;

    public PApply(PConstraint pConstraint) {
        super();
        this.pConstraint = pConstraint;
    }
    public PConstraint getPConstraint() {
        return pConstraint;
    }

    @Override
    public String getShortName() {
        return String.format("APPLY_%s", pConstraint.toString());
    }
    
    @Override
    public Set<? extends PConstraint> getDeltaConstraints() {
        return Collections.singleton(pConstraint);
    }
    
    @Override
    public int numParentSubPlans() {
        return 1;
    }
    
    @Override
    public void checkConsistency(SubPlan subPlan) {
        super.checkConsistency(subPlan);
        for (SubPlan parentPlan : subPlan.getParentPlans())
            Preconditions.checkArgument(!parentPlan.getAllEnforcedConstraints().contains(pConstraint),
                    "Double-checking constraint %s", pConstraint);		
        // TODO obtain context?
        //if (pConstraint instanceof DeferredPConstraint)
        //	Preconditions.checkArgument(((DeferredPConstraint) pConstraint).isReadyAt(subPlan, context))
    }
    
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime
                * result
                + ((pConstraint == null) ? 0 : pConstraint
                        .hashCode());
        return result;
    }
    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (!(obj instanceof PApply))
            return false;
        PApply other = (PApply) obj;
        if (pConstraint == null) {
            if (other.pConstraint != null)
                return false;
        } else if (!pConstraint.equals(other.pConstraint))
            return false;
        return true;
    }

}