package hu.bme.mit.incquery.ecorequeries.example.util; import com.google.common.collect.Sets; import hu.bme.mit.incquery.ecorequeries.example.ECoreNamedElementMatch; import hu.bme.mit.incquery.ecorequeries.example.ECoreNamedElementMatcher; import java.util.Arrays; import java.util.List; import java.util.Set; import org.eclipse.incquery.runtime.api.IncQueryEngine; import org.eclipse.incquery.runtime.api.impl.BaseGeneratedEMFPQuery; import org.eclipse.incquery.runtime.api.impl.BaseGeneratedEMFQuerySpecification; import org.eclipse.incquery.runtime.exception.IncQueryException; import org.eclipse.incquery.runtime.matchers.psystem.PBody; import org.eclipse.incquery.runtime.matchers.psystem.PVariable; import org.eclipse.incquery.runtime.matchers.psystem.basicdeferred.ExportedParameter; import org.eclipse.incquery.runtime.matchers.psystem.basicenumerables.TypeBinary; import org.eclipse.incquery.runtime.matchers.psystem.queries.PParameter; import org.eclipse.incquery.runtime.matchers.psystem.queries.QueryInitializationException; /** * A pattern-specific query specification that can instantiate ECoreNamedElementMatcher in a type-safe way. * * @see ECoreNamedElementMatcher * @see ECoreNamedElementMatch * */ @SuppressWarnings("all") public final class ECoreNamedElementQuerySpecification extends BaseGeneratedEMFQuerySpecification<ECoreNamedElementMatcher> { private ECoreNamedElementQuerySpecification() { super(GeneratedPQuery.INSTANCE); } /** * @return the singleton instance of the query specification * @throws IncQueryException if the pattern definition could not be loaded * */ public static ECoreNamedElementQuerySpecification instance() throws IncQueryException { try{ return LazyHolder.INSTANCE; } catch (ExceptionInInitializerError err) { throw processInitializerError(err); } } @Override protected ECoreNamedElementMatcher instantiate(final IncQueryEngine engine) throws IncQueryException { return ECoreNamedElementMatcher.on(engine); } @Override public ECoreNamedElementMatch newEmptyMatch() { return ECoreNamedElementMatch.newEmptyMatch(); } @Override public ECoreNamedElementMatch newMatch(final Object... parameters) { return ECoreNamedElementMatch.newMatch((org.eclipse.emf.ecore.ENamedElement) parameters[0], (java.lang.String) parameters[1]); } private static class LazyHolder { private final static ECoreNamedElementQuerySpecification INSTANCE = make(); public static ECoreNamedElementQuerySpecification make() { return new ECoreNamedElementQuerySpecification(); } } private static class GeneratedPQuery extends BaseGeneratedEMFPQuery { private final static ECoreNamedElementQuerySpecification.GeneratedPQuery INSTANCE = new GeneratedPQuery(); @Override public String getFullyQualifiedName() { return "hu.bme.mit.incquery.ecorequeries.example.ECoreNamedElement"; } @Override public List<String> getParameterNames() { return Arrays.asList("Element","Name"); } @Override public List<PParameter> getParameters() { return Arrays.asList(new PParameter("Element", "org.eclipse.emf.ecore.ENamedElement"),new PParameter("Name", "java.lang.String")); } @Override public Set<PBody> doGetContainedBodies() throws QueryInitializationException { Set<PBody> bodies = Sets.newLinkedHashSet(); try { { PBody body = new PBody(this); PVariable var_Element = body.getOrCreateVariableByName("Element"); PVariable var_Name = body.getOrCreateVariableByName("Name"); body.setExportedParameters(Arrays.<ExportedParameter>asList( new ExportedParameter(body, var_Element, "Element"), new ExportedParameter(body, var_Name, "Name") )); new TypeBinary(body, CONTEXT, var_Element, var_Name, getFeatureLiteral("http://www.eclipse.org/emf/2002/Ecore", "ENamedElement", "name"), "http://www.eclipse.org/emf/2002/Ecore/ENamedElement.name"); bodies.add(body); } // to silence compiler error if (false) throw new IncQueryException("Never", "happens"); } catch (IncQueryException ex) { throw processDependencyException(ex); } return bodies; } } }