/** * * Copyright (c) 2010-2015, Andras Szabolcs Nagy, Abel Hegedus, Akos Horvath, Zoltan Ujhelyi and Daniel Varro * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * Contributors: * Andras Szabolcs Nagy - initial API and implementation * */ package org.eclipse.viatra.dse.examples.bpmn.patterns.util; import com.google.common.collect.Sets; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Set; import org.eclipse.emf.ecore.EClass; import org.eclipse.viatra.query.runtime.api.IPatternMatch; import org.eclipse.viatra.query.runtime.api.ViatraQueryEngine; import org.eclipse.viatra.query.runtime.api.ViatraQueryMatcher; import org.eclipse.viatra.query.runtime.api.impl.BaseGeneratedEMFPQuery; import org.eclipse.viatra.query.runtime.api.impl.BaseGeneratedEMFQuerySpecification; import org.eclipse.viatra.query.runtime.emf.types.EClassTransitiveInstancesKey; import org.eclipse.viatra.query.runtime.emf.types.EStructuralFeatureInstancesKey; import org.eclipse.viatra.query.runtime.exception.ViatraQueryException; import org.eclipse.viatra.query.runtime.matchers.backend.QueryEvaluationHint; import org.eclipse.viatra.query.runtime.matchers.psystem.PBody; import org.eclipse.viatra.query.runtime.matchers.psystem.PVariable; import org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.Equality; import org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.ExportedParameter; import org.eclipse.viatra.query.runtime.matchers.psystem.basicenumerables.TypeConstraint; import org.eclipse.viatra.query.runtime.matchers.psystem.queries.PParameter; import org.eclipse.viatra.query.runtime.matchers.psystem.queries.PParameterDirection; import org.eclipse.viatra.query.runtime.matchers.psystem.queries.QueryInitializationException; import org.eclipse.viatra.query.runtime.matchers.tuple.FlatTuple; /** * A pattern-specific query specification that can instantiate OutFlowMatcher in a type-safe way. * * @see OutFlowMatcher * @see OutFlowMatch * */ @SuppressWarnings("all") final class OutFlowQuerySpecification extends BaseGeneratedEMFQuerySpecification<ViatraQueryMatcher<IPatternMatch>> { private OutFlowQuerySpecification() { super(GeneratedPQuery.INSTANCE); } /** * @return the singleton instance of the query specification * @throws ViatraQueryException if the pattern definition could not be loaded * */ public static OutFlowQuerySpecification instance() throws ViatraQueryException { try{ return LazyHolder.INSTANCE; } catch (ExceptionInInitializerError err) { throw processInitializerError(err); } } @Override protected ViatraQueryMatcher instantiate(final ViatraQueryEngine engine) throws ViatraQueryException { throw new UnsupportedOperationException(); } @Override public ViatraQueryMatcher instantiate() throws ViatraQueryException { throw new UnsupportedOperationException(); } @Override public IPatternMatch newEmptyMatch() { throw new UnsupportedOperationException(); } @Override public IPatternMatch newMatch(final Object... parameters) { throw new UnsupportedOperationException(); } /** * Inner class allowing the singleton instance of {@link OutFlowQuerySpecification} to be created * <b>not</b> at the class load time of the outer class, * but rather at the first call to {@link OutFlowQuerySpecification#instance()}. * * <p> This workaround is required e.g. to support recursion. * */ private static class LazyHolder { private final static OutFlowQuerySpecification INSTANCE = new OutFlowQuerySpecification(); /** * Statically initializes the query specification <b>after</b> the field {@link #INSTANCE} is assigned. * This initialization order is required to support indirect recursion. * * <p> The static initializer is defined using a helper field to work around limitations of the code generator. * */ private final static Object STATIC_INITIALIZER = ensureInitialized(); public static Object ensureInitialized() { INSTANCE.ensureInitializedInternalSneaky(); return null; } } private static class GeneratedPQuery extends BaseGeneratedEMFPQuery { private final static OutFlowQuerySpecification.GeneratedPQuery INSTANCE = new GeneratedPQuery(); private final PParameter parameter_pElement = new PParameter("Element", "org.eclipse.viatra.dse.examples.simplifiedbpmn.BaseElement", new EClassTransitiveInstancesKey((EClass)getClassifierLiteralSafe("org.eclipse.viatra.dse.examples.bpmn", "BaseElement")), PParameterDirection.INOUT); private final PParameter parameter_pFlow = new PParameter("Flow", "org.eclipse.viatra.dse.examples.simplifiedbpmn.SequenceFlow", new EClassTransitiveInstancesKey((EClass)getClassifierLiteralSafe("org.eclipse.viatra.dse.examples.bpmn", "SequenceFlow")), PParameterDirection.INOUT); private final List<PParameter> parameters = Arrays.asList(parameter_pElement, parameter_pFlow); @Override public String getFullyQualifiedName() { return "org.eclipse.viatra.dse.examples.bpmn.patterns.outFlow"; } @Override public List<String> getParameterNames() { return Arrays.asList("Element","Flow"); } @Override public List<PParameter> getParameters() { return parameters; } @Override public Set<PBody> doGetContainedBodies() throws QueryInitializationException { setEvaluationHints(new QueryEvaluationHint(null, Collections.<String,Object>emptyMap())); Set<PBody> bodies = Sets.newLinkedHashSet(); try { { PBody body = new PBody(this); PVariable var_Element = body.getOrCreateVariableByName("Element"); PVariable var_Flow = body.getOrCreateVariableByName("Flow"); new TypeConstraint(body, new FlatTuple(var_Element), new EClassTransitiveInstancesKey((EClass)getClassifierLiteral("org.eclipse.viatra.dse.examples.bpmn", "BaseElement"))); new TypeConstraint(body, new FlatTuple(var_Flow), new EClassTransitiveInstancesKey((EClass)getClassifierLiteral("org.eclipse.viatra.dse.examples.bpmn", "SequenceFlow"))); body.setSymbolicParameters(Arrays.<ExportedParameter>asList( new ExportedParameter(body, var_Element, parameter_pElement), new ExportedParameter(body, var_Flow, parameter_pFlow) )); // BaseElement.outFlows(Element, Flow) new TypeConstraint(body, new FlatTuple(var_Element), new EClassTransitiveInstancesKey((EClass)getClassifierLiteral("org.eclipse.viatra.dse.examples.bpmn", "BaseElement"))); PVariable var__virtual_0_ = body.getOrCreateVariableByName(".virtual{0}"); new TypeConstraint(body, new FlatTuple(var_Element, var__virtual_0_), new EStructuralFeatureInstancesKey(getFeatureLiteral("org.eclipse.viatra.dse.examples.bpmn", "BaseElement", "outFlows"))); new Equality(body, var__virtual_0_, var_Flow); bodies.add(body); } // to silence compiler error if (false) throw new ViatraQueryException("Never", "happens"); } catch (ViatraQueryException ex) { throw processDependencyException(ex); } return bodies; } } }