X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-parser-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fparser%2Fstmt%2Freactor%2FStatementContextBase.java;h=d394e2715ed7d34146430c3235d33781c07efd5e;hb=refs%2Fchanges%2F10%2F58710%2F2;hp=4ce2f5b9f3bf3a2175eb5a086b63b31fd357864b;hpb=84df4e154123c967fa22ac10bf6edf6f0e7a4e64;p=yangtools.git diff --git a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/reactor/StatementContextBase.java b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/reactor/StatementContextBase.java index 4ce2f5b9f3..d394e2715e 100644 --- a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/reactor/StatementContextBase.java +++ b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/reactor/StatementContextBase.java @@ -7,146 +7,188 @@ */ package org.opendaylight.yangtools.yang.parser.stmt.reactor; +import com.google.common.base.MoreObjects; +import com.google.common.base.MoreObjects.ToStringHelper; import com.google.common.base.Preconditions; -import com.google.common.base.Throwables; -import com.google.common.collect.HashMultimap; +import com.google.common.collect.ImmutableCollection; +import com.google.common.collect.ImmutableList; +import com.google.common.collect.ImmutableMultimap; import com.google.common.collect.Multimap; +import com.google.common.collect.Multimaps; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; +import java.util.EnumMap; import java.util.EventListener; import java.util.Iterator; -import java.util.LinkedHashMap; -import java.util.Map; +import java.util.Optional; +import java.util.Set; import javax.annotation.Nonnull; -import org.opendaylight.yangtools.concepts.Identifiable; +import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement; import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; import org.opendaylight.yangtools.yang.model.api.meta.IdentifierNamespace; import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition; import org.opendaylight.yangtools.yang.model.api.meta.StatementSource; +import org.opendaylight.yangtools.yang.parser.spi.meta.CopyHistory; +import org.opendaylight.yangtools.yang.parser.spi.meta.CopyType; import org.opendaylight.yangtools.yang.parser.spi.meta.ModelActionBuilder; import org.opendaylight.yangtools.yang.parser.spi.meta.ModelProcessingPhase; import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour; -import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour.StorageNodeType; import org.opendaylight.yangtools.yang.parser.spi.meta.StatementNamespace; +import org.opendaylight.yangtools.yang.parser.spi.meta.StatementSupport; import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext; +import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContextUtils; import org.opendaylight.yangtools.yang.parser.spi.source.SourceException; import org.opendaylight.yangtools.yang.parser.spi.source.StatementSourceReference; +import org.opendaylight.yangtools.yang.parser.spi.source.SupportedFeaturesNamespace; +import org.opendaylight.yangtools.yang.parser.spi.source.SupportedFeaturesNamespace.SupportedFeatures; import org.opendaylight.yangtools.yang.parser.stmt.reactor.NamespaceBehaviourWithListeners.ValueAddedListener; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public abstract class StatementContextBase, E extends EffectiveStatement> - extends NamespaceStorageSupport implements - StmtContext.Mutable, Identifiable { - + extends NamespaceStorageSupport implements StmtContext.Mutable { + /** + * event listener when an item is added to model namespace. + */ interface OnNamespaceItemAdded extends EventListener { - - void namespaceItemAdded(StatementContextBase context, - Class namespace, Object key, Object value) - throws SourceException; - + /** + * @throws SourceException + */ + void namespaceItemAdded(StatementContextBase context, Class namespace, Object key, Object value); } + /** + * event listener when a parsing {@link ModelProcessingPhase} is completed. + */ interface OnPhaseFinished extends EventListener { - - boolean phaseFinished(StatementContextBase context, - ModelProcessingPhase phase) throws SourceException; - + /** + * @throws SourceException + */ + boolean phaseFinished(StatementContextBase context, ModelProcessingPhase phase); } + /** + * interface for all mutations within an {@link ModelActionBuilder.InferenceAction}. + */ interface ContextMutation { boolean isFinished(); - } - abstract static class ContextBuilder, E extends EffectiveStatement> { - - private final StatementDefinitionContext definition; - private final StatementSourceReference stmtRef; - private String rawArg; - private StatementSourceReference argRef; - - public ContextBuilder(StatementDefinitionContext def, - StatementSourceReference sourceRef) { - this.definition = def; - this.stmtRef = sourceRef; - } + private static final Logger LOG = LoggerFactory.getLogger(StatementContextBase.class); - public void setArgument(@Nonnull String argument, - @Nonnull StatementSourceReference argumentSource) { - Preconditions.checkArgument(definition.hasArgument(), - "Statement does not take argument."); - this.rawArg = Preconditions.checkNotNull(argument); - this.argRef = Preconditions.checkNotNull(argumentSource); + private final StatementDefinitionContext definition; + private final StatementSourceReference statementDeclSource; + private final StmtContext originalCtx; + private final CopyHistory copyHistory; + private final String rawArgument; + + private Multimap phaseListeners = ImmutableMultimap.of(); + private Multimap phaseMutation = ImmutableMultimap.of(); + private Collection> effective = ImmutableList.of(); + private Collection> effectOfStatement = ImmutableList.of(); + private StatementMap substatements = StatementMap.empty(); + + private Boolean supportedByFeatures = null; + private boolean isSupportedToBuildEffective = true; + private ModelProcessingPhase completedPhase = null; + private D declaredInstance; + private E effectiveInstance; + private int order = 0; + + StatementContextBase(final StatementDefinitionContext def, final StatementSourceReference ref, + final String rawArgument) { + this.definition = Preconditions.checkNotNull(def); + this.statementDeclSource = Preconditions.checkNotNull(ref); + this.rawArgument = def.internArgument(rawArgument); + this.copyHistory = CopyHistory.original(); + this.originalCtx = null; + } + + StatementContextBase(final StatementContextBase original, final CopyType copyType) { + this.definition = Preconditions.checkNotNull(original.definition, + "Statement context definition cannot be null copying from: %s", original.getStatementSourceReference()); + this.statementDeclSource = Preconditions.checkNotNull(original.statementDeclSource, + "Statement context statementDeclSource cannot be null copying from: %s", + original.getStatementSourceReference()); + this.rawArgument = original.rawArgument; + this.copyHistory = CopyHistory.of(copyType, original.getCopyHistory()); + + if (original.getOriginalCtx() != null) { + this.originalCtx = original.getOriginalCtx(); + } else { + this.originalCtx = original; } + } - public String getRawArgument() { - return rawArg; - } + @Override + public Collection> getEffectOfStatement() { + return effectOfStatement; + } - public StatementSourceReference getStamementSource() { - return stmtRef; + @Override + public void addAsEffectOfStatement(final StmtContext ctx) { + if (effectOfStatement.isEmpty()) { + effectOfStatement = new ArrayList<>(1); } + effectOfStatement.add(ctx); + } - public StatementSourceReference getArgumentSource() { - return argRef; + @Override + public void addAsEffectOfStatement(final Collection> ctxs) { + if (ctxs.isEmpty()) { + return; } - public StatementDefinitionContext getDefinition() { - return definition; + if (effectOfStatement.isEmpty()) { + effectOfStatement = new ArrayList<>(ctxs.size()); } + effectOfStatement.addAll(ctxs); + } - public StatementIdentifier getIdentifier() { - return new StatementIdentifier(definition.getStatementName(), - rawArg); + @Override + public boolean isSupportedByFeatures() { + if (supportedByFeatures == null) { + final Set supportedFeatures = getFromNamespace(SupportedFeaturesNamespace.class, + SupportedFeatures.SUPPORTED_FEATURES); + // If the set of supported features has not been provided, all features are supported by default. + supportedByFeatures = supportedFeatures == null ? Boolean.TRUE + : StmtContextUtils.checkFeatureSupport(this, supportedFeatures); } - public abstract StatementContextBase build() - throws SourceException; - + return supportedByFeatures.booleanValue(); } - private final StatementDefinitionContext definition; - private final StatementIdentifier identifier; - private final StatementSourceReference statementDeclSource; - - private Map> substatements = new LinkedHashMap<>(); - - private Collection> declared = new ArrayList<>(); - private Collection> effective = new ArrayList<>(); - - private ModelProcessingPhase completedPhase; - - private Multimap phaseListeners = HashMultimap - .create(); - private Multimap phaseMutation = HashMultimap - .create(); - - private D declaredInstance; - private E effectiveInstance; - - private StatementContextBase originalCtx; - private TypeOfCopy typeOfCopy = TypeOfCopy.ORIGINAL; + @Override + public boolean isSupportedToBuildEffective() { + return isSupportedToBuildEffective; + } @Override - public TypeOfCopy getTypeOfCopy() { - return typeOfCopy; + public void setIsSupportedToBuildEffective(final boolean isSupportedToBuildEffective) { + this.isSupportedToBuildEffective = isSupportedToBuildEffective; } @Override - public void setTypeOfCopy(TypeOfCopy typeOfCopy) { - this.typeOfCopy = typeOfCopy; + public CopyHistory getCopyHistory() { + return copyHistory; } @Override - public StatementContextBase getOriginalCtx() { + public StmtContext getOriginalCtx() { return originalCtx; } @Override - public void setOriginalCtx(StatementContextBase originalCtx) { - this.originalCtx = originalCtx; + public void setOrder(final int order) { + this.order = order; + } + + @Override + public int getOrder() { + return order; } @Override @@ -155,110 +197,218 @@ public abstract class StatementContextBase, E } @Override - public void setCompletedPhase(ModelProcessingPhase completedPhase) { + public void setCompletedPhase(final ModelProcessingPhase completedPhase) { this.completedPhase = completedPhase; } - StatementContextBase(@Nonnull ContextBuilder builder) - throws SourceException { - this.definition = builder.getDefinition(); - this.identifier = builder.getIdentifier(); - this.statementDeclSource = builder.getStamementSource(); - this.completedPhase = null; - } - - StatementContextBase(StatementContextBase original) { - this.definition = original.definition; - this.identifier = original.identifier; - this.statementDeclSource = original.statementDeclSource; - this.completedPhase = null; - } - @Override public abstract StatementContextBase getParentContext(); + /** + * @return root context of statement + */ + @Nonnull @Override public abstract RootStatementContext getRoot(); - @Override - public StatementIdentifier getIdentifier() { - return identifier; - } - + /** + * @return origin of statement + */ + @Nonnull @Override public StatementSource getStatementSource() { return statementDeclSource.getStatementSource(); } + /** + * @return reference of statement source + */ + @Nonnull @Override public StatementSourceReference getStatementSourceReference() { return statementDeclSource; } @Override - public String rawStatementArgument() { - return identifier.getArgument(); + public final String rawStatementArgument() { + return rawArgument; + } + + @Nonnull + @Override + public Collection> declaredSubstatements() { + return substatements.values(); } + @Nonnull @Override - public Collection> declaredSubstatements() { - return Collections.unmodifiableCollection(declared); + public Collection> mutableDeclaredSubstatements() { + return substatements.values(); } @Override - public Collection> effectiveSubstatements() { + public Collection> effectiveSubstatements() { + return mutableEffectiveSubstatements(); + } + + @Nonnull + @Override + public Collection> mutableEffectiveSubstatements() { + if (effective instanceof ImmutableCollection) { + return effective; + } + return Collections.unmodifiableCollection(effective); } - public void addEffectiveSubstatement( - StatementContextBase substatement) { - effective.add(substatement); + public void removeStatementsFromEffectiveSubstatements(final Collection> substatements) { + if (!effective.isEmpty()) { + effective.removeAll(substatements); + shrinkEffective(); + } } - public void addDeclaredSubstatement( - StatementContextBase substatement) { - declared.add(substatement); + private void shrinkEffective() { + if (effective.isEmpty()) { + effective = ImmutableList.of(); + } } - @SuppressWarnings({ "rawtypes", "unchecked" }) - public ContextBuilder substatementBuilder( - StatementDefinitionContext def, - StatementSourceReference ref) { - return new ContextBuilder(def, ref) { + public void removeStatementFromEffectiveSubstatements(final StatementDefinition statementDef) { + if (effective.isEmpty()) { + return; + } - @Override - public StatementContextBase build() throws SourceException { - StatementContextBase potential = substatements - .get(getIdentifier()); - if (potential == null) { - potential = new SubstatementContext( - StatementContextBase.this, this); - substatements.put(getIdentifier(), potential); - } - potential.resetLists(); - switch (this.getStamementSource().getStatementSource()) { - case DECLARATION: - declared.add(potential); - break; - case CONTEXT: - effective.add(potential); - break; - } - return potential; + final Iterator> iterator = effective.iterator(); + while (iterator.hasNext()) { + final StmtContext next = iterator.next(); + if (statementDef.equals(next.getPublicDefinition())) { + iterator.remove(); } - }; + } + + shrinkEffective(); } - @Override - public StorageNodeType getStorageNodeType() { - return StorageNodeType.STATEMENT_LOCAL; + /** + * Removes a statement context from the effective substatements + * based on its statement definition (i.e statement keyword) and raw (in String form) statement argument. + * The statement context is removed only if both statement definition and statement argument match with + * one of the effective substatements' statement definition and argument. + * + * If the statementArg parameter is null, the statement context is removed based only on its statement definition. + * + * @param statementDef statement definition of the statement context to remove + * @param statementArg statement argument of the statement context to remove + */ + public void removeStatementFromEffectiveSubstatements(final StatementDefinition statementDef, + final String statementArg) { + if (statementArg == null) { + removeStatementFromEffectiveSubstatements(statementDef); + } + + if (effective.isEmpty()) { + return; + } + + final Iterator> iterator = effective.iterator(); + while (iterator.hasNext()) { + final Mutable next = iterator.next(); + if (statementDef.equals(next.getPublicDefinition()) && statementArg.equals(next.rawStatementArgument())) { + iterator.remove(); + } + } + + shrinkEffective(); + } + + /** + * adds effective statement to collection of substatements + * + * @param substatement substatement + * @throws IllegalStateException + * if added in declared phase + * @throws NullPointerException + * if statement parameter is null + */ + public void addEffectiveSubstatement(final Mutable substatement) { + beforeAddEffectiveStatement(1); + effective.add(substatement); + } + + /** + * adds effective statement to collection of substatements + * + * @param substatements substatements + * @throws IllegalStateException + * if added in declared phase + * @throws NullPointerException + * if statement parameter is null + */ + public void addEffectiveSubstatements(final Collection> substatements) { + if (substatements.isEmpty()) { + return; + } + + substatements.forEach(Preconditions::checkNotNull); + beforeAddEffectiveStatement(substatements.size()); + effective.addAll(substatements); + } + + private void beforeAddEffectiveStatement(final int toAdd) { + final ModelProcessingPhase inProgressPhase = getRoot().getSourceContext().getInProgressPhase(); + Preconditions.checkState(inProgressPhase == ModelProcessingPhase.FULL_DECLARATION + || inProgressPhase == ModelProcessingPhase.EFFECTIVE_MODEL, + "Effective statement cannot be added in declared phase at: %s", getStatementSourceReference()); + + if (effective.isEmpty()) { + effective = new ArrayList<>(toAdd); + } + } + + /** + * Create a new substatement at the specified offset. + * + * @param offset Substatement offset + * @param def definition context + * @param ref source reference + * @param argument statement argument + * @return A new substatement + */ + public final , CE extends EffectiveStatement> StatementContextBase createSubstatement( + final int offset, final StatementDefinitionContext def, final StatementSourceReference ref, + final String argument) { + final ModelProcessingPhase inProgressPhase = getRoot().getSourceContext().getInProgressPhase(); + Preconditions.checkState(inProgressPhase != ModelProcessingPhase.EFFECTIVE_MODEL, + "Declared statement cannot be added in effective phase at: %s", getStatementSourceReference()); + + final Optional> implicitStatement = definition.beforeSubStatementCreated(this, + offset, def, ref, argument); + if(implicitStatement.isPresent()) { + final StatementContextBase presentImplicitStmt = implicitStatement.get(); + return presentImplicitStmt.createSubstatement(offset, def, ref, argument); + } + + final StatementContextBase ret = new SubstatementContext<>(this, def, ref, argument); + substatements = substatements.put(offset, ret); + def.onStatementAdded(ret); + return ret; + } + + /** + * Lookup substatement by its offset in this statement. + * + * @param offset Substatement offset + * @return Substatement, or null if substatement does not exist. + */ + final StatementContextBase lookupSubstatement(final int offset) { + return substatements.get(offset); } @Override public D buildDeclared() { - Preconditions - .checkArgument(completedPhase == ModelProcessingPhase.FULL_DECLARATION - || completedPhase == ModelProcessingPhase.EFFECTIVE_MODEL); + Preconditions.checkArgument(completedPhase == ModelProcessingPhase.FULL_DECLARATION + || completedPhase == ModelProcessingPhase.EFFECTIVE_MODEL); if (declaredInstance == null) { declaredInstance = definition().getFactory().createDeclared(this); } @@ -273,28 +423,45 @@ public abstract class StatementContextBase, E return effectiveInstance; } - void resetLists() { - declared.clear(); - } + /** + * tries to execute current {@link ModelProcessingPhase} of source parsing. + * + * @param phase + * to be executed (completed) + * @return if phase was successfully completed + * @throws SourceException + * when an error occured in source parsing + */ + boolean tryToCompletePhase(final ModelProcessingPhase phase) { - boolean tryToCompletePhase(ModelProcessingPhase phase) - throws SourceException { - Iterator openMutations = phaseMutation.get(phase) - .iterator(); boolean finished = true; - while (openMutations.hasNext()) { - ContextMutation current = openMutations.next(); - if (current.isFinished()) { - openMutations.remove(); - } else { - finished = false; + final Collection openMutations = phaseMutation.get(phase); + if (!openMutations.isEmpty()) { + final Iterator it = openMutations.iterator(); + while (it.hasNext()) { + final ContextMutation current = it.next(); + if (current.isFinished()) { + it.remove(); + } else { + finished = false; + } + } + + if (openMutations.isEmpty()) { + phaseMutation.removeAll(phase); + if (phaseMutation.isEmpty()) { + phaseMutation = ImmutableMultimap.of(); + } } } - for (StatementContextBase child : declared) { + + for (final StatementContextBase child : substatements.values()) { finished &= child.tryToCompletePhase(phase); } - for (StatementContextBase child : effective) { - finished &= child.tryToCompletePhase(phase); + for (final Mutable child : effective) { + if (child instanceof StatementContextBase) { + finished &= ((StatementContextBase) child).tryToCompletePhase(phase); + } } if (finished) { @@ -304,86 +471,118 @@ public abstract class StatementContextBase, E return false; } - private void onPhaseCompleted(ModelProcessingPhase phase) - throws SourceException { + /** + * Occurs on end of {@link ModelProcessingPhase} of source parsing. + * + * @param phase + * that was to be completed (finished) + * @throws SourceException + * when an error occurred in source parsing + */ + private void onPhaseCompleted(final ModelProcessingPhase phase) { completedPhase = phase; - Iterator listener = phaseListeners.get(completedPhase) - .iterator(); + + final Collection listeners = phaseListeners.get(phase); + if (listeners.isEmpty()) { + return; + } + + final Iterator listener = listeners.iterator(); while (listener.hasNext()) { - OnPhaseFinished next = listener.next(); - if(next.phaseFinished(this, phase)) { - listener.remove(); + final OnPhaseFinished next = listener.next(); + if (next.phaseFinished(this, phase)) { + listener.remove(); + } + } + + if (listeners.isEmpty()) { + phaseListeners.removeAll(phase); + if (phaseListeners.isEmpty()) { + phaseListeners = ImmutableMultimap.of(); } } } /** - * * Ends declared section of current node. * * @param ref * @throws SourceException - * */ - void endDeclared(StatementSourceReference ref, ModelProcessingPhase phase) - throws SourceException { + void endDeclared(final StatementSourceReference ref, final ModelProcessingPhase phase) { definition().onDeclarationFinished(this, phase); } + /** + * @return statement definition + */ protected final StatementDefinitionContext definition() { return definition; } @Override - protected void checkLocalNamespaceAllowed( - Class> type) { + protected void checkLocalNamespaceAllowed(final Class> type) { definition().checkNamespaceAllowed(type); } @Override - protected > void onNamespaceElementAdded( - Class type, K key, V value) { + protected > void onNamespaceElementAdded(final Class type, final K key, + final V value) { // definition().onNamespaceElementAdded(this, type, key, value); } - > void onNamespaceItemAddedAction( - final Class type, K key, final OnNamespaceItemAdded listener) - throws SourceException { - Object potential = getFromNamespace(type, key); + > void onNamespaceItemAddedAction(final Class type, final K key, + final OnNamespaceItemAdded listener) throws SourceException { + final Object potential = getFromNamespace(type, key); if (potential != null) { + LOG.trace("Listener on {} key {} satisfied immediately", type, key); listener.namespaceItemAdded(this, type, key, potential); return; } - NamespaceBehaviour behaviour = getBehaviourRegistry() - .getNamespaceBehaviour(type); - if (behaviour instanceof NamespaceBehaviourWithListeners) { - NamespaceBehaviourWithListeners casted = (NamespaceBehaviourWithListeners) behaviour; - casted.addValueListener(key, new ValueAddedListener(this) { - @Override - void onValueAdded(Object key, Object value) { - try { - listener.namespaceItemAdded(StatementContextBase.this, - type, key, value); - } catch (SourceException e) { - throw Throwables.propagate(e); - } - } - }); - } + + final NamespaceBehaviour behaviour = getBehaviourRegistry().getNamespaceBehaviour(type); + Preconditions.checkArgument(behaviour instanceof NamespaceBehaviourWithListeners, + "Namespace {} does not support listeners", type); + + final NamespaceBehaviourWithListeners casted = (NamespaceBehaviourWithListeners) behaviour; + casted.addValueListener(new ValueAddedListener(this, key) { + @Override + void onValueAdded(final Object key, final Object value) { + listener.namespaceItemAdded(StatementContextBase.this, type, key, value); + } + }); } + /** + * See {@link StatementSupport#getPublicView()}. + */ + @Nonnull @Override public StatementDefinition getPublicDefinition() { return definition().getPublicView(); } @Override - public ModelActionBuilder newInferenceAction(ModelProcessingPhase phase) { + public ModelActionBuilder newInferenceAction(final ModelProcessingPhase phase) { return getRoot().getSourceContext().newInferenceAction(phase); } - void addPhaseCompletedListener(ModelProcessingPhase phase, - OnPhaseFinished listener) throws SourceException { + private static Multimap newMultimap() { + return Multimaps.newListMultimap(new EnumMap<>(ModelProcessingPhase.class), () -> new ArrayList<>(1)); + } + + /** + * adds {@link OnPhaseFinished} listener for a {@link ModelProcessingPhase} end + * + * @throws SourceException + */ + void addPhaseCompletedListener(final ModelProcessingPhase phase, final OnPhaseFinished listener) { + + Preconditions.checkNotNull(phase, "Statement context processing phase cannot be null at: %s", + getStatementSourceReference()); + Preconditions.checkNotNull(listener, "Statement context phase listener cannot be null at: %s", + getStatementSourceReference()); + ModelProcessingPhase finishedPhase = completedPhase; while (finishedPhase != null) { if (phase.equals(finishedPhase)) { @@ -392,24 +591,47 @@ public abstract class StatementContextBase, E } finishedPhase = finishedPhase.getPreviousPhase(); } + if (phaseListeners.isEmpty()) { + phaseListeners = newMultimap(); + } + phaseListeners.put(phase, listener); } - void addMutation(ModelProcessingPhase phase, ContextMutation mutation) { + /** + * adds {@link ContextMutation} to {@link ModelProcessingPhase} + * + * @throws IllegalStateException + * when the mutation was registered after phase was completed + */ + void addMutation(final ModelProcessingPhase phase, final ContextMutation mutation) { ModelProcessingPhase finishedPhase = completedPhase; while (finishedPhase != null) { if (phase.equals(finishedPhase)) { - throw new IllegalStateException( - "Mutation registered after phase was completed."); + throw new IllegalStateException("Mutation registered after phase was completed at: " + + getStatementSourceReference()); } finishedPhase = finishedPhase.getPreviousPhase(); } + + if (phaseMutation.isEmpty()) { + phaseMutation = newMultimap(); + } phaseMutation.put(phase, mutation); } @Override - public > void addContext( - Class namespace, KT key, StmtContext stmt) { - addContextToNamespace(namespace, (K) key, stmt); + public > void addContext(final Class namespace, + final KT key,final StmtContext stmt) { + addContextToNamespace(namespace, key, stmt); + } + + @Override + public final String toString() { + return addToStringAttributes(MoreObjects.toStringHelper(this).omitNullValues()).toString(); + } + + protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) { + return toStringHelper.add("definition", definition).add("rawArgument", rawArgument); } }