package hu.bme.mit.incquery.cep.runtime.evaluation.queries; import hu.bme.mit.incquery.cep.metamodels.cep.Event; import java.util.Arrays; import java.util.List; import org.eclipse.incquery.patternlanguage.patternLanguage.Pattern; import org.eclipse.incquery.runtime.api.IPatternMatch; import org.eclipse.incquery.runtime.api.impl.BasePatternMatch; import org.eclipse.incquery.runtime.exception.IncQueryException; /** * Pattern-specific match representation of the hu.bme.mit.incquery.cep.runtime.evaluation.queries.latestEvent pattern, * to be used in conjunction with {@link LatestEventMatcher}. * * <p>Class fields correspond to parameters of the pattern. Fields with value null are considered unassigned. * Each instance is a (possibly partial) substitution of pattern parameters, * usable to represent a match of the pattern in the result of a query, * or to specify the bound (fixed) input parameters when issuing a query. * * @see LatestEventMatcher * @see LatestEventProcessor * */ @SuppressWarnings("all") public abstract class LatestEventMatch extends BasePatternMatch { private Event fE; private static List<String> parameterNames = makeImmutableList("e"); private LatestEventMatch(final Event pE) { this.fE = pE; } @Override public Object get(final String parameterName) { if ("e".equals(parameterName)) return this.fE; return null; } public Event getE() { return this.fE; } @Override public boolean set(final String parameterName, final Object newValue) { if (!isMutable()) throw new java.lang.UnsupportedOperationException(); if ("e".equals(parameterName) ) { this.fE = (hu.bme.mit.incquery.cep.metamodels.cep.Event) newValue; return true; } return false; } public void setE(final Event pE) { if (!isMutable()) throw new java.lang.UnsupportedOperationException(); this.fE = pE; } @Override public String patternName() { return "hu.bme.mit.incquery.cep.runtime.evaluation.queries.latestEvent"; } @Override public List<String> parameterNames() { return LatestEventMatch.parameterNames; } @Override public Object[] toArray() { return new Object[]{fE}; } @Override public String prettyPrint() { StringBuilder result = new StringBuilder(); result.append("\"e\"=" + prettyPrintValue(fE)); return result.toString(); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((fE == null) ? 0 : fE.hashCode()); return result; } @Override public boolean equals(final Object obj) { if (this == obj) return true; if (!(obj instanceof LatestEventMatch)) { // this should be infrequent if (obj == null) return false; if (!(obj instanceof IPatternMatch)) return false; IPatternMatch otherSig = (IPatternMatch) obj; if (!pattern().equals(otherSig.pattern())) return false; return Arrays.deepEquals(toArray(), otherSig.toArray()); } LatestEventMatch other = (LatestEventMatch) obj; if (fE == null) {if (other.fE != null) return false;} else if (!fE.equals(other.fE)) return false; return true; } @Override public Pattern pattern() { try { return LatestEventMatcher.querySpecification().getPattern(); } catch (IncQueryException ex) { // This cannot happen, as the match object can only be instantiated if the query specification exists throw new IllegalStateException (ex); } } @SuppressWarnings("all") static final class Mutable extends LatestEventMatch { Mutable(final Event pE) { super(pE); } @Override public boolean isMutable() { return true; } } @SuppressWarnings("all") static final class Immutable extends LatestEventMatch { Immutable(final Event pE) { super(pE); } @Override public boolean isMutable() { return false; } } }