package hu.bme.mit.incquery.ecorequeries.example; import hu.bme.mit.incquery.ecorequeries.example.IsEStringMatch; import hu.bme.mit.incquery.ecorequeries.example.util.IsEStringQuerySpecification; import java.util.Collection; import java.util.HashSet; import java.util.Set; import org.apache.log4j.Logger; import org.eclipse.emf.common.notify.Notifier; import org.eclipse.emf.ecore.EClassifier; import org.eclipse.incquery.runtime.api.IMatchProcessor; import org.eclipse.incquery.runtime.api.IQuerySpecification; import org.eclipse.incquery.runtime.api.IncQueryEngine; import org.eclipse.incquery.runtime.api.impl.BaseMatcher; import org.eclipse.incquery.runtime.exception.IncQueryException; import org.eclipse.incquery.runtime.matchers.tuple.Tuple; import org.eclipse.incquery.runtime.util.IncQueryLoggingUtil; /** * Generated pattern matcher API of the hu.bme.mit.incquery.ecorequeries.example.IsEString pattern, * providing pattern-specific query methods. * * <p>Use the pattern matcher on a given model via {@link #on(IncQueryEngine)}, * e.g. in conjunction with {@link IncQueryEngine#on(Notifier)}. * * <p>Matches of the pattern will be represented as {@link IsEStringMatch}. * * <p>Original source: * <code><pre> * helper patterns * * * * Element is "the" EString in the ECore package * * * pattern IsEString(Element) = { * find IsInECore(Element); * find ECoreNamedElement(Element,"EString"); * } * </pre></code> * * @see IsEStringMatch * @see IsEStringProcessor * @see IsEStringQuerySpecification * */ @SuppressWarnings("all") public class IsEStringMatcher extends BaseMatcher<IsEStringMatch> { /** * Initializes the pattern matcher within an existing EMF-IncQuery engine. * If the pattern matcher is already constructed in the engine, only a light-weight reference is returned. * The match set will be incrementally refreshed upon updates. * @param engine the existing EMF-IncQuery engine in which this matcher will be created. * @throws IncQueryException if an error occurs during pattern matcher creation * */ public static IsEStringMatcher on(final IncQueryEngine engine) throws IncQueryException { // check if matcher already exists IsEStringMatcher matcher = engine.getExistingMatcher(querySpecification()); if (matcher == null) { matcher = new IsEStringMatcher(engine); // do not have to "put" it into engine.matchers, reportMatcherInitialized() will take care of it } return matcher; } private final static int POSITION_ELEMENT = 0; private final static Logger LOGGER = IncQueryLoggingUtil.getLogger(IsEStringMatcher.class); /** * Initializes the pattern matcher over a given EMF model root (recommended: Resource or ResourceSet). * If a pattern matcher is already constructed with the same root, only a light-weight reference is returned. * The scope of pattern matching will be the given EMF model root and below (see FAQ for more precise definition). * The match set will be incrementally refreshed upon updates from this scope. * <p>The matcher will be created within the managed {@link IncQueryEngine} belonging to the EMF model root, so * multiple matchers will reuse the same engine and benefit from increased performance and reduced memory footprint. * @param emfRoot the root of the EMF containment hierarchy where the pattern matcher will operate. Recommended: Resource or ResourceSet. * @throws IncQueryException if an error occurs during pattern matcher creation * @deprecated use {@link #on(IncQueryEngine)} instead, e.g. in conjunction with {@link IncQueryEngine#on(Notifier)} * */ @Deprecated public IsEStringMatcher(final Notifier emfRoot) throws IncQueryException { this(IncQueryEngine.on(emfRoot)); } /** * Initializes the pattern matcher within an existing EMF-IncQuery engine. * If the pattern matcher is already constructed in the engine, only a light-weight reference is returned. * The match set will be incrementally refreshed upon updates. * @param engine the existing EMF-IncQuery engine in which this matcher will be created. * @throws IncQueryException if an error occurs during pattern matcher creation * @deprecated use {@link #on(IncQueryEngine)} instead * */ @Deprecated public IsEStringMatcher(final IncQueryEngine engine) throws IncQueryException { super(engine, querySpecification()); } /** * Returns the set of all matches of the pattern that conform to the given fixed values of some parameters. * @param pElement the fixed value of pattern parameter Element, or null if not bound. * @return matches represented as a IsEStringMatch object. * */ public Collection<IsEStringMatch> getAllMatches(final EClassifier pElement) { return rawGetAllMatches(new Object[]{pElement}); } /** * Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters. * Neither determinism nor randomness of selection is guaranteed. * @param pElement the fixed value of pattern parameter Element, or null if not bound. * @return a match represented as a IsEStringMatch object, or null if no match is found. * */ public IsEStringMatch getOneArbitraryMatch(final EClassifier pElement) { return rawGetOneArbitraryMatch(new Object[]{pElement}); } /** * Indicates whether the given combination of specified pattern parameters constitute a valid pattern match, * under any possible substitution of the unspecified parameters (if any). * @param pElement the fixed value of pattern parameter Element, or null if not bound. * @return true if the input is a valid (partial) match of the pattern. * */ public boolean hasMatch(final EClassifier pElement) { return rawHasMatch(new Object[]{pElement}); } /** * Returns the number of all matches of the pattern that conform to the given fixed values of some parameters. * @param pElement the fixed value of pattern parameter Element, or null if not bound. * @return the number of pattern matches found. * */ public int countMatches(final EClassifier pElement) { return rawCountMatches(new Object[]{pElement}); } /** * Executes the given processor on each match of the pattern that conforms to the given fixed values of some parameters. * @param pElement the fixed value of pattern parameter Element, or null if not bound. * @param processor the action that will process each pattern match. * */ public void forEachMatch(final EClassifier pElement, final IMatchProcessor<? super IsEStringMatch> processor) { rawForEachMatch(new Object[]{pElement}, processor); } /** * Executes the given processor on an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters. * Neither determinism nor randomness of selection is guaranteed. * @param pElement the fixed value of pattern parameter Element, or null if not bound. * @param processor the action that will process the selected match. * @return true if the pattern has at least one match with the given parameter values, false if the processor was not invoked * */ public boolean forOneArbitraryMatch(final EClassifier pElement, final IMatchProcessor<? super IsEStringMatch> processor) { return rawForOneArbitraryMatch(new Object[]{pElement}, processor); } /** * Returns a new (partial) match. * This can be used e.g. to call the matcher with a partial match. * <p>The returned match will be immutable. Use {@link #newEmptyMatch()} to obtain a mutable match object. * @param pElement the fixed value of pattern parameter Element, or null if not bound. * @return the (partial) match object. * */ public IsEStringMatch newMatch(final EClassifier pElement) { return IsEStringMatch.newMatch(pElement); } /** * Retrieve the set of values that occur in matches for Element. * @return the Set of all values, null if no parameter with the given name exists, empty set if there are no matches * */ protected Set<EClassifier> rawAccumulateAllValuesOfElement(final Object[] parameters) { Set<EClassifier> results = new HashSet<EClassifier>(); rawAccumulateAllValues(POSITION_ELEMENT, parameters, results); return results; } /** * Retrieve the set of values that occur in matches for Element. * @return the Set of all values, null if no parameter with the given name exists, empty set if there are no matches * */ public Set<EClassifier> getAllValuesOfElement() { return rawAccumulateAllValuesOfElement(emptyArray()); } @Override protected IsEStringMatch tupleToMatch(final Tuple t) { try { return IsEStringMatch.newMatch((org.eclipse.emf.ecore.EClassifier) t.get(POSITION_ELEMENT)); } catch(ClassCastException e) { LOGGER.error("Element(s) in tuple not properly typed!",e); return null; } } @Override protected IsEStringMatch arrayToMatch(final Object[] match) { try { return IsEStringMatch.newMatch((org.eclipse.emf.ecore.EClassifier) match[POSITION_ELEMENT]); } catch(ClassCastException e) { LOGGER.error("Element(s) in array not properly typed!",e); return null; } } @Override protected IsEStringMatch arrayToMatchMutable(final Object[] match) { try { return IsEStringMatch.newMutableMatch((org.eclipse.emf.ecore.EClassifier) match[POSITION_ELEMENT]); } catch(ClassCastException e) { LOGGER.error("Element(s) in array not properly typed!",e); return null; } } /** * @return the singleton instance of the query specification of this pattern * @throws IncQueryException if the pattern definition could not be loaded * */ public static IQuerySpecification<IsEStringMatcher> querySpecification() throws IncQueryException { return IsEStringQuerySpecification.instance(); } }