public class EquivalentTransitionsMatcher extends BaseMatcher<EquivalentTransitionsMatch>
Use the pattern matcher on a given model via on(ViatraQueryEngine)
,
e.g. in conjunction with ViatraQueryEngine#on(Notifier)
.
Matches of the pattern will be represented as EquivalentTransitionsMatch
.
Original source:
pattern
equivalentTransitions(transition1 : TypedTransition, transition2 : TypedTransition, preState : State, postState : State) {
transition1 != transition2;
count find negativeTransition(transition1) ==
count find negativeTransition(transition2);
Transition.preState(transition1, preState);
Transition.preState(transition2, preState);
Transition.postState(transition1, postState);
Transition.postState(transition2, postState);
TypedTransition.guards(transition1, guard1);
TypedTransition.guards(transition2, guard2);
Guard.eventType.id(guard1, et1);
Guard.eventType.id(guard2, et2);
et1 == et2;
Automaton.states(automaton, preState);
Automaton.states(automaton, postState);
}
EquivalentTransitionsMatch
,
EquivalentTransitionsProcessor
,
EquivalentTransitionsQuerySpecification
engine, querySpecification
Modifier and Type | Method and Description |
---|---|
protected EquivalentTransitionsMatch |
arrayToMatch(java.lang.Object[] match)
Converts the array representation of a pattern match to an immutable Match object.
|
protected EquivalentTransitionsMatch |
arrayToMatchMutable(java.lang.Object[] match)
Converts the array representation of a pattern match to a mutable Match object.
|
int |
countMatches(TypedTransition pTransition1,
TypedTransition pTransition2,
State pPreState,
State pPostState)
Returns the number of all matches of the pattern that conform to the given fixed values of some parameters.
|
static EquivalentTransitionsMatcher |
create() |
void |
forEachMatch(TypedTransition pTransition1,
TypedTransition pTransition2,
State pPreState,
State pPostState,
IMatchProcessor<? super EquivalentTransitionsMatch> processor)
Executes the given processor on each match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
forOneArbitraryMatch(TypedTransition pTransition1,
TypedTransition pTransition2,
State pPreState,
State pPostState,
IMatchProcessor<? super EquivalentTransitionsMatch> processor)
Executes the given processor on an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
java.util.Collection<EquivalentTransitionsMatch> |
getAllMatches(TypedTransition pTransition1,
TypedTransition pTransition2,
State pPreState,
State pPostState)
Returns the set of all matches of the pattern that conform to the given fixed values of some parameters.
|
java.util.Set<State> |
getAllValuesOfpostState()
Retrieve the set of values that occur in matches for postState.
|
java.util.Set<State> |
getAllValuesOfpostState(EquivalentTransitionsMatch partialMatch)
Retrieve the set of values that occur in matches for postState.
|
java.util.Set<State> |
getAllValuesOfpostState(TypedTransition pTransition1,
TypedTransition pTransition2,
State pPreState)
Retrieve the set of values that occur in matches for postState.
|
java.util.Set<State> |
getAllValuesOfpreState()
Retrieve the set of values that occur in matches for preState.
|
java.util.Set<State> |
getAllValuesOfpreState(EquivalentTransitionsMatch partialMatch)
Retrieve the set of values that occur in matches for preState.
|
java.util.Set<State> |
getAllValuesOfpreState(TypedTransition pTransition1,
TypedTransition pTransition2,
State pPostState)
Retrieve the set of values that occur in matches for preState.
|
java.util.Set<TypedTransition> |
getAllValuesOftransition1()
Retrieve the set of values that occur in matches for transition1.
|
java.util.Set<TypedTransition> |
getAllValuesOftransition1(EquivalentTransitionsMatch partialMatch)
Retrieve the set of values that occur in matches for transition1.
|
java.util.Set<TypedTransition> |
getAllValuesOftransition1(TypedTransition pTransition2,
State pPreState,
State pPostState)
Retrieve the set of values that occur in matches for transition1.
|
java.util.Set<TypedTransition> |
getAllValuesOftransition2()
Retrieve the set of values that occur in matches for transition2.
|
java.util.Set<TypedTransition> |
getAllValuesOftransition2(EquivalentTransitionsMatch partialMatch)
Retrieve the set of values that occur in matches for transition2.
|
java.util.Set<TypedTransition> |
getAllValuesOftransition2(TypedTransition pTransition1,
State pPreState,
State pPostState)
Retrieve the set of values that occur in matches for transition2.
|
EquivalentTransitionsMatch |
getOneArbitraryMatch(TypedTransition pTransition1,
TypedTransition pTransition2,
State pPreState,
State pPostState)
Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
hasMatch(TypedTransition pTransition1,
TypedTransition pTransition2,
State pPreState,
State pPostState)
Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
under any possible substitution of the unspecified parameters (if any).
|
EquivalentTransitionsMatch |
newMatch(TypedTransition pTransition1,
TypedTransition pTransition2,
State pPreState,
State pPostState)
Returns a new (partial) match.
|
static EquivalentTransitionsMatcher |
on(ViatraQueryEngine engine)
Initializes the pattern matcher within an existing VIATRA Query engine.
|
static IQuerySpecification<EquivalentTransitionsMatcher> |
querySpecification() |
protected java.util.Set<State> |
rawAccumulateAllValuesOfpostState(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for postState.
|
protected java.util.Set<State> |
rawAccumulateAllValuesOfpreState(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for preState.
|
protected java.util.Set<TypedTransition> |
rawAccumulateAllValuesOftransition1(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for transition1.
|
protected java.util.Set<TypedTransition> |
rawAccumulateAllValuesOftransition2(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for transition2.
|
protected EquivalentTransitionsMatch |
tupleToMatch(Tuple t) |
countMatches, countMatches, emptyArray, forEachMatch, forEachMatch, forOneArbitraryMatch, forOneArbitraryMatch, getAllMatches, getAllMatches, getAllValues, getAllValues, getCapabilities, getEngine, getOneArbitraryMatch, getOneArbitraryMatch, getParameterNames, getPatternName, getPositionOfParameter, getSpecification, hasMatch, matchToArray, newEmptyMatch, newMatch, rawAccumulateAllValues, rawCountMatches, rawForEachMatch, rawForOneArbitraryMatch, rawGetAllMatches, rawGetAllValues, rawGetOneArbitraryMatch, rawHasMatch, setBackend
public static EquivalentTransitionsMatcher on(ViatraQueryEngine engine) throws ViatraQueryException
engine
- the existing VIATRA Query engine in which this matcher will be created.ViatraQueryException
- if an error occurs during pattern matcher creationpublic static EquivalentTransitionsMatcher create() throws ViatraQueryException
ViatraQueryException
- if an error occurs during pattern matcher creationpublic java.util.Collection<EquivalentTransitionsMatch> getAllMatches(TypedTransition pTransition1, TypedTransition pTransition2, State pPreState, State pPostState)
pTransition1
- the fixed value of pattern parameter transition1, or null if not bound.pTransition2
- the fixed value of pattern parameter transition2, or null if not bound.pPreState
- the fixed value of pattern parameter preState, or null if not bound.pPostState
- the fixed value of pattern parameter postState, or null if not bound.public EquivalentTransitionsMatch getOneArbitraryMatch(TypedTransition pTransition1, TypedTransition pTransition2, State pPreState, State pPostState)
pTransition1
- the fixed value of pattern parameter transition1, or null if not bound.pTransition2
- the fixed value of pattern parameter transition2, or null if not bound.pPreState
- the fixed value of pattern parameter preState, or null if not bound.pPostState
- the fixed value of pattern parameter postState, or null if not bound.public boolean hasMatch(TypedTransition pTransition1, TypedTransition pTransition2, State pPreState, State pPostState)
pTransition1
- the fixed value of pattern parameter transition1, or null if not bound.pTransition2
- the fixed value of pattern parameter transition2, or null if not bound.pPreState
- the fixed value of pattern parameter preState, or null if not bound.pPostState
- the fixed value of pattern parameter postState, or null if not bound.public int countMatches(TypedTransition pTransition1, TypedTransition pTransition2, State pPreState, State pPostState)
pTransition1
- the fixed value of pattern parameter transition1, or null if not bound.pTransition2
- the fixed value of pattern parameter transition2, or null if not bound.pPreState
- the fixed value of pattern parameter preState, or null if not bound.pPostState
- the fixed value of pattern parameter postState, or null if not bound.public void forEachMatch(TypedTransition pTransition1, TypedTransition pTransition2, State pPreState, State pPostState, IMatchProcessor<? super EquivalentTransitionsMatch> processor)
pTransition1
- the fixed value of pattern parameter transition1, or null if not bound.pTransition2
- the fixed value of pattern parameter transition2, or null if not bound.pPreState
- the fixed value of pattern parameter preState, or null if not bound.pPostState
- the fixed value of pattern parameter postState, or null if not bound.processor
- the action that will process each pattern match.public boolean forOneArbitraryMatch(TypedTransition pTransition1, TypedTransition pTransition2, State pPreState, State pPostState, IMatchProcessor<? super EquivalentTransitionsMatch> processor)
pTransition1
- the fixed value of pattern parameter transition1, or null if not bound.pTransition2
- the fixed value of pattern parameter transition2, or null if not bound.pPreState
- the fixed value of pattern parameter preState, or null if not bound.pPostState
- the fixed value of pattern parameter postState, or null if not bound.processor
- the action that will process the selected match.public EquivalentTransitionsMatch newMatch(TypedTransition pTransition1, TypedTransition pTransition2, State pPreState, State pPostState)
The returned match will be immutable. Use BaseMatcher.newEmptyMatch()
to obtain a mutable match object.
pTransition1
- the fixed value of pattern parameter transition1, or null if not bound.pTransition2
- the fixed value of pattern parameter transition2, or null if not bound.pPreState
- the fixed value of pattern parameter preState, or null if not bound.pPostState
- the fixed value of pattern parameter postState, or null if not bound.protected java.util.Set<TypedTransition> rawAccumulateAllValuesOftransition1(java.lang.Object[] parameters)
public java.util.Set<TypedTransition> getAllValuesOftransition1()
public java.util.Set<TypedTransition> getAllValuesOftransition1(EquivalentTransitionsMatch partialMatch)
public java.util.Set<TypedTransition> getAllValuesOftransition1(TypedTransition pTransition2, State pPreState, State pPostState)
protected java.util.Set<TypedTransition> rawAccumulateAllValuesOftransition2(java.lang.Object[] parameters)
public java.util.Set<TypedTransition> getAllValuesOftransition2()
public java.util.Set<TypedTransition> getAllValuesOftransition2(EquivalentTransitionsMatch partialMatch)
public java.util.Set<TypedTransition> getAllValuesOftransition2(TypedTransition pTransition1, State pPreState, State pPostState)
protected java.util.Set<State> rawAccumulateAllValuesOfpreState(java.lang.Object[] parameters)
public java.util.Set<State> getAllValuesOfpreState()
public java.util.Set<State> getAllValuesOfpreState(EquivalentTransitionsMatch partialMatch)
public java.util.Set<State> getAllValuesOfpreState(TypedTransition pTransition1, TypedTransition pTransition2, State pPostState)
protected java.util.Set<State> rawAccumulateAllValuesOfpostState(java.lang.Object[] parameters)
public java.util.Set<State> getAllValuesOfpostState()
public java.util.Set<State> getAllValuesOfpostState(EquivalentTransitionsMatch partialMatch)
public java.util.Set<State> getAllValuesOfpostState(TypedTransition pTransition1, TypedTransition pTransition2, State pPreState)
protected EquivalentTransitionsMatch tupleToMatch(Tuple t)
tupleToMatch
in class BaseMatcher<EquivalentTransitionsMatch>
protected EquivalentTransitionsMatch arrayToMatch(java.lang.Object[] match)
BaseMatcher
arrayToMatch
in class BaseMatcher<EquivalentTransitionsMatch>
protected EquivalentTransitionsMatch arrayToMatchMutable(java.lang.Object[] match)
BaseMatcher
arrayToMatchMutable
in class BaseMatcher<EquivalentTransitionsMatch>
public static IQuerySpecification<EquivalentTransitionsMatcher> querySpecification() throws ViatraQueryException
ViatraQueryException
- if the pattern definition could not be loaded