340f3224e865eabd666f670517958a5c5070709c
[yangtools.git] / parser / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / StatementSupport.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.parser.spi.meta;
9
10 import static com.google.common.base.Preconditions.checkArgument;
11 import static java.util.Objects.requireNonNull;
12
13 import com.google.common.annotations.Beta;
14 import com.google.common.base.VerifyException;
15 import java.util.Collection;
16 import java.util.Optional;
17 import org.eclipse.jdt.annotation.NonNull;
18 import org.eclipse.jdt.annotation.Nullable;
19 import org.opendaylight.yangtools.concepts.Immutable;
20 import org.opendaylight.yangtools.yang.common.QName;
21 import org.opendaylight.yangtools.yang.common.QNameModule;
22 import org.opendaylight.yangtools.yang.model.api.meta.ArgumentDefinition;
23 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
24 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
25 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
26 import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current;
27 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext.Mutable;
28 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
29
30 /**
31  * Support for processing concrete YANG statement.
32  *
33  * <p>
34  * This interface is intended to be implemented by developers, which want to introduce support of statement to parser.
35  * Consider subclassing {@link AbstractStatementSupport} for easier implementation of this interface.
36  *
37  * @param <A> Argument type
38  * @param <D> Declared Statement representation
39  * @param <E> Effective Statement representation
40  */
41 public abstract class StatementSupport<A, D extends DeclaredStatement<A>, E extends EffectiveStatement<A, D>>
42         implements StatementDefinition, StatementFactory<A, D, E> {
43     /**
44      * A baseline class for implementing the {@link StatementFactory#canReuseCurrent(Current, Current, Collection)}
45      * contract in a manner which is consistent with a statement's {@link CopyPolicy}.
46      *
47      * @param <A> Argument type
48      * @param <D> Declared Statement representation
49      */
50     public abstract static class StatementPolicy<A, D extends DeclaredStatement<A>> implements Immutable {
51         final @NonNull CopyPolicy copyPolicy;
52
53         StatementPolicy(final CopyPolicy copyPolicy) {
54             this.copyPolicy = requireNonNull(copyPolicy);
55         }
56
57         /**
58          * Return a {@link StatementPolicy} for {@link CopyPolicy#CONTEXT_INDEPENDENT}.
59          *
60          * @param <A> Argument type
61          * @param <D> Declared Statement representation
62          * @return Context-independent policy
63          */
64         @SuppressWarnings("unchecked")
65         public static final <A, D extends DeclaredStatement<A>> @NonNull StatementPolicy<A, D> contextIndependent() {
66             return (StatementPolicy<A, D>) EqualSemantics.CONTEXT_INDEPENDENT;
67         }
68
69         /**
70          * Return a {@link StatementPolicy} for {@link CopyPolicy#EXACT_REPLICA}.
71          *
72          * @param <A> Argument type
73          * @param <D> Declared Statement representation
74          * @return Exact-replica policy
75          */
76         @SuppressWarnings("unchecked")
77         public static final <A, D extends DeclaredStatement<A>> @NonNull StatementPolicy<A, D> exactReplica() {
78             return (StatementPolicy<A, D>) EqualSemantics.EXACT_REPLICA;
79         }
80
81         /**
82          * Return a {@link StatementPolicy} for {@link CopyPolicy#IGNORE}.
83          *
84          * @param <A> Argument type
85          * @param <D> Declared Statement representation
86          * @return Ignoring policy
87          */
88         @SuppressWarnings("unchecked")
89         public static final <A, D extends DeclaredStatement<A>> @NonNull StatementPolicy<A, D> ignore() {
90             return (StatementPolicy<A, D>) AlwaysFail.IGNORE;
91         }
92
93         /**
94          * Return a {@link StatementPolicy} for {@link CopyPolicy#REJECT}.
95          *
96          * @param <A> Argument type
97          * @param <D> Declared Statement representation
98          * @return Rejecting statement policy
99          */
100         @SuppressWarnings("unchecked")
101         public static final <A, D extends DeclaredStatement<A>> @NonNull StatementPolicy<A, D> reject() {
102             return (StatementPolicy<A, D>) AlwaysFail.REJECT;
103         }
104
105         /**
106          * Return a {@link StatementPolicy} for {@link CopyPolicy#DECLARED_COPY}, deferring to a
107          * {@link StatementEquality} for individual decisions.
108          *
109          * @param <A> Argument type
110          * @param <D> Declared Statement representation
111          * @param equality {@link StatementEquality} to apply to effective statements
112          * @return Equality-based statement policy
113          */
114         public static final <A, D extends DeclaredStatement<A>> @NonNull StatementPolicy<A, D> copyDeclared(
115                 final @NonNull StatementEquality<A, D> equality) {
116             return new EqualSemantics<>(equality);
117         }
118
119         /**
120          * Return a {@link StatementPolicy} for {@link CopyPolicy#DECLARED_COPY}, always performing a copy operation.
121          *
122          * @param <A> Argument type
123          * @param <D> Declared Statement representation
124          * @return Rejecting statement policy
125          */
126         @SuppressWarnings("unchecked")
127         public static final <A, D extends DeclaredStatement<A>> @NonNull StatementPolicy<A, D> alwaysCopyDeclared() {
128             return (StatementPolicy<A, D>) EqualSemantics.ALWAYS_COPY;
129         }
130
131         abstract boolean canReuseCurrent(@NonNull Current<A, D> copy, @NonNull Current<A, D> current,
132             @NonNull Collection<? extends EffectiveStatement<?, ?>> substatements);
133
134         private static final class AlwaysFail<A, D extends DeclaredStatement<A>> extends StatementPolicy<A, D> {
135             static final @NonNull AlwaysFail<?, ?> IGNORE = new AlwaysFail<>(CopyPolicy.IGNORE);
136             static final @NonNull AlwaysFail<?, ?> REJECT = new AlwaysFail<>(CopyPolicy.REJECT);
137
138             private AlwaysFail(final CopyPolicy copyPolicy) {
139                 super(copyPolicy);
140             }
141
142             @Override
143             boolean canReuseCurrent(final Current<A, D> copy, final Current<A, D> current,
144                     final Collection<? extends EffectiveStatement<?, ?>> substatements) {
145                 throw new VerifyException("This implementation should never be invoked");
146             }
147         }
148
149         private static final class EqualSemantics<A, D extends DeclaredStatement<A>> extends StatementPolicy<A, D> {
150             static final @NonNull EqualSemantics<?, ?> ALWAYS_COPY =
151                 new EqualSemantics<>((copy, stmt, substatements) -> false);
152             static final @NonNull EqualSemantics<?, ?> CONTEXT_INDEPENDENT =
153                 new EqualSemantics<>(CopyPolicy.CONTEXT_INDEPENDENT, (copy, stmt, substatements) -> true);
154             static final @NonNull EqualSemantics<?, ?> EXACT_REPLICA =
155                 new EqualSemantics<>(CopyPolicy.EXACT_REPLICA, (copy, stmt, substatements) -> true);
156
157             private final @NonNull StatementEquality<A, D> equality;
158
159             private EqualSemantics(final CopyPolicy copyPolicy, final StatementEquality<A, D> equality) {
160                 super(copyPolicy);
161                 this.equality = requireNonNull(equality);
162             }
163
164             EqualSemantics(final StatementEquality<A, D> equality) {
165                 this(CopyPolicy.DECLARED_COPY, equality);
166             }
167
168             @Override
169             boolean canReuseCurrent(final Current<A, D> copy, final Current<A, D> current,
170                     final Collection<? extends EffectiveStatement<?, ?>> substatements) {
171                 return equality.canReuseCurrent(copy, current, substatements);
172             }
173         }
174     }
175
176     /**
177      * Abstract base class for comparators associated with statements with a {@link CopyPolicy#DECLARED_COPY} copy
178      * policy.
179      *
180      * @param <A> Argument type
181      * @param <D> Declared Statement representation
182      */
183     @FunctionalInterface
184     public interface StatementEquality<A, D extends DeclaredStatement<A>> {
185         /**
186          * Determine whether {@code current} statement has the same semantics as the provided copy. See the contract
187          * specification of {@link StatementFactory#canReuseCurrent(Current, Current, Collection)}.
188          *
189          * @param copy Copy of current effective context
190          * @param current Current effective context
191          * @param substatements Current effective substatements
192          * @return True if {@code current} can be reused in place of {@code copy}, false if the copy needs to be used.
193          */
194         boolean canReuseCurrent(@NonNull Current<A, D> copy, @NonNull Current<A, D> current,
195             @NonNull Collection<? extends EffectiveStatement<?, ?>> substatements);
196     }
197
198     private final @NonNull StatementPolicy<A, D> policy;
199     private final @NonNull StatementDefinition def;
200     private final @NonNull CopyPolicy copyPolicy;
201
202     @Beta
203     protected StatementSupport(final StatementSupport<A, D, E> delegate) {
204         checkArgument(delegate != this);
205         this.def = delegate.def;
206         this.policy = delegate.policy;
207         this.copyPolicy = delegate.copyPolicy;
208     }
209
210     @Beta
211     protected StatementSupport(final StatementDefinition publicDefinition, final StatementPolicy<A, D> policy) {
212         checkArgument(publicDefinition != this);
213         this.def = requireNonNull(publicDefinition);
214         this.policy = requireNonNull(policy);
215         this.copyPolicy = policy.copyPolicy;
216     }
217
218     /**
219      * Returns public statement definition, which will be present in built statements.
220      *
221      * <p>
222      * Public statement definition may be used to provide different implementation of statement definition,
223      * which will not retain any build specific data or context.
224      *
225      * @return public statement definition, which will be present in built statements.
226      */
227     public final @NonNull StatementDefinition getPublicView() {
228         return def;
229     }
230
231     /**
232      * Return this statement's {@link CopyPolicy}. This is a static value, reflecting how this statement reacts to being
233      * replicated to a different context, without reflecting on behaviour of potential substatements, which would come
234      * into play in something like:
235      *
236      * <pre>
237      *   <code>
238      *     module foo {
239      *       namespace foo;
240      *       prefix foo;
241      *
242      *       extension note {
243      *         argument string {
244      *           type string {
245      *             length 1..max;
246      *           }
247      *         }
248      *         description "Can be used in description/reference statements to attach additional notes";
249      *       }
250      *
251      *       description "A nice module extending description statement semantics" {
252      *         foo:note "We can now attach description/reference a note.";
253      *         foo:note "Also another note";
254      *       }
255      *     }
256      *   </code>
257      * </pre>
258      *
259      * <p>
260      * In this scenario, it is the reactor's job to figure out what to do (like talking to substatements).
261      *
262      * @return This statement's copy policy
263      */
264     public final @NonNull CopyPolicy copyPolicy() {
265         return copyPolicy;
266     }
267
268     @Override
269     public final boolean canReuseCurrent(final Current<A, D> copy, final Current<A, D> current,
270             final Collection<? extends EffectiveStatement<?, ?>> substatements) {
271         return policy.canReuseCurrent(copy, current, substatements);
272     }
273
274     @Override
275     public EffectiveStatementState extractEffectiveState(final E stmt) {
276         // Not implemented for most statements
277         return null;
278     }
279
280     /**
281      * Parses textual representation of argument in object representation.
282      *
283      * @param ctx Context, which may be used to access source-specific namespaces required for parsing.
284      * @param value String representation of value, as was present in text source.
285      * @return Parsed value
286      * @throws SourceException when an inconsistency is detected.
287      */
288     public abstract A parseArgumentValue(StmtContext<?, ?, ?> ctx, String value);
289
290     /**
291      * Adapts the argument value to match a new module. Default implementation returns original value stored in context,
292      * which is appropriate for most implementations.
293      *
294      * @param ctx Context, which may be used to access source-specific namespaces required for parsing.
295      * @param targetModule Target module, may not be null.
296      * @return Adapted argument value.
297      */
298     public A adaptArgumentValue(final @NonNull StmtContext<A, D, E> ctx, final @NonNull QNameModule targetModule) {
299         return ctx.argument();
300     }
301
302     /**
303      * Invoked when a statement supported by this instance is added to build context. This allows implementations
304      * of this interface to start tracking the statement and perform any modifications to the build context hierarchy,
305      * accessible via {@link StmtContext#getParentContext()}. One such use is populating the parent's namespaces to
306      * allow it to locate this child statement.
307      *
308      * @param stmt Context of added statement. No substatements are available.
309      */
310     public void onStatementAdded(final @NonNull Mutable<A, D, E> stmt) {
311         // NOOP for most implementations
312     }
313
314     /**
315      * Invoked when statement is closed during {@link ModelProcessingPhase#SOURCE_PRE_LINKAGE} phase, only substatements
316      * from this and previous phase are available.
317      *
318      * <p>
319      * Implementation may use method to perform actions on this event or register modification action using
320      * {@link Mutable#newInferenceAction(ModelProcessingPhase)}.
321      *
322      * @param stmt Context of added statement.
323      */
324     public void onPreLinkageDeclared(final @NonNull Mutable<A, D, E> stmt) {
325         // NOOP for most implementations
326     }
327
328     /**
329      * Invoked when statement is closed during {@link ModelProcessingPhase#SOURCE_LINKAGE} phase, only substatements
330      * from this and previous phase are available.
331      *
332      * <p>
333      * Implementation may use method to perform actions on this event or register modification action using
334      * {@link Mutable#newInferenceAction(ModelProcessingPhase)}.
335      *
336      * @param stmt Context of added statement.
337      * @throws SourceException when an inconsistency is detected.
338      */
339     public void onLinkageDeclared(final @NonNull Mutable<A, D, E> stmt) {
340         // NOOP for most implementations
341     }
342
343     /**
344      * Invoked when statement is closed during {@link ModelProcessingPhase#STATEMENT_DEFINITION} phase,
345      * only substatements from this phase are available.
346      *
347      * <p>
348      * Implementation may use method to perform actions on this event or register modification action using
349      * {@link Mutable#newInferenceAction(ModelProcessingPhase)}.
350      *
351      * @param stmt Context of added statement. Argument and statement parent is accessible.
352      * @throws SourceException when an inconsistency is detected.
353      */
354     public void onStatementDefinitionDeclared(final Mutable<A, D, E> stmt) {
355         // NOOP for most implementations
356     }
357
358     /**
359      * Invoked when statement is closed during {@link ModelProcessingPhase#FULL_DECLARATION} phase,
360      * only substatements from this phase are available.
361      *
362      * <p>
363      * Implementation may use method to perform actions on this event or register modification action using
364      * {@link Mutable#newInferenceAction(ModelProcessingPhase)}.
365      *
366      * @param stmt Context of added statement. Argument and statement parent is accessible.
367      * @throws SourceException when an inconsistency is detected.
368      */
369     public void onFullDefinitionDeclared(final Mutable<A, D, E> stmt) {
370         final SubstatementValidator validator = substatementValidator();
371         if (validator != null) {
372             validator.validate(stmt);
373         }
374     }
375
376     /**
377      * Returns corresponding substatement validator of a statement support.
378      *
379      * @return substatement validator or null, if substatement validator is not defined
380      */
381     protected abstract @Nullable SubstatementValidator substatementValidator();
382
383     /**
384      * Returns true if this support has argument specific supports.
385      *
386      * @return true if this support has argument specific supports.
387      */
388     public boolean hasArgumentSpecificSupports() {
389         // Most of statement supports don't have any argument specific supports, so return 'false'.
390         return false;
391     }
392
393     /**
394      * If this support has argument specific supports, the method returns support specific for given argument
395      * (e.g. type statement support need to be specialized based on its argument), otherwise returns null.
396      *
397      * @param argument argument of statement
398      * @return statement support specific for supplied argument or null
399      */
400     public @Nullable StatementSupport<?, ?, ?> getSupportSpecificForArgument(final String argument) {
401         // Most of statement supports don't have any argument specific supports, so return null.
402         return null;
403     }
404
405     /**
406      * Given a raw string representation of an argument, try to use a shared representation. Default implementation
407      * does nothing.
408      *
409      * @param rawArgument Argument string
410      * @return A potentially-shard instance
411      */
412     public String internArgument(final String rawArgument) {
413         return rawArgument;
414     }
415
416     /**
417      * Returns true if this statement support and all its substatements ignore if-feature statements (e.g. yang-data
418      * extension defined in <a href="https://tools.ietf.org/html/rfc8040#section-8">RFC 8040</a>). Default
419      * implementation returns false.
420      *
421      * @return true if this statement support ignores if-feature statements, otherwise false.
422      */
423     @Beta
424     public boolean isIgnoringIfFeatures() {
425         return false;
426     }
427
428     /**
429      * Returns true if this statement support and all its substatements ignore config statements (e.g. yang-data
430      * extension defined in <a href="https://tools.ietf.org/html/rfc8040#section-8">RFC 8040</a>). Default
431      * implementation returns false.
432      *
433      * @return true if this statement support ignores config statements,
434      *         otherwise false.
435      */
436     @Beta
437     public boolean isIgnoringConfig() {
438         return false;
439     }
440
441     @Override
442     public final QName getStatementName() {
443         return def.getStatementName();
444     }
445
446     @Override
447     public final Optional<ArgumentDefinition> getArgumentDefinition() {
448         return def.getArgumentDefinition();
449     }
450
451     @Override
452     // Non-final for compatible extensions
453     public Class<? extends DeclaredStatement<?>> getDeclaredRepresentationClass() {
454         return def.getDeclaredRepresentationClass();
455     }
456
457     @Override
458     // Non-final for compatible extensions
459     public Class<? extends EffectiveStatement<?,?>> getEffectiveRepresentationClass() {
460         return def.getEffectiveRepresentationClass();
461     }
462
463     /**
464      * Statement context copy policy, indicating how should reactor handle statement copy operations. Every statement
465      * copied by the reactor is subject to this policy.
466      */
467     public enum CopyPolicy {
468         /**
469          * Reuse the source statement context in the new place, as it cannot be affected by any further operations. This
470          * implies that the semantics of the effective statement are not affected by any of its substatements. Each
471          * of the substatements is free to make its own policy.
472          *
473          * <p>
474          * This policy is typically used by static constant statements such as {@code description} or {@code length},
475          * where the baseline RFC7950 does not allow any impact. A {@code description} could hold an extension statement
476          * in which case this interaction would come into play. Normal YANG will see empty substatements, so the reactor
477          * will be free to complete reuse the context.
478          *
479          * <p>
480          * In case any substatement is of stronger policy, it is up to the reactor to handle correct handling of
481          * resulting subobjects.
482          */
483         // TODO: does this mean source must have transitioned to ModelProcessingPhase.EFFECTIVE_MODEL?
484         CONTEXT_INDEPENDENT,
485         /**
486          * Reuse the source statement context in the new place completely. This policy is more stringent than
487          * {@link #CONTEXT_INDEPENDENT} in that the statement is dependent on circumstances of its original definition
488          * and any copy operation must replicate it exactly as is. This implies ignoring the usual policy of its
489          * substatements. A typical example of such a statement is {@code type}.
490          */
491         EXACT_REPLICA,
492         /**
493          * Create a copy sharing declared instance, but otherwise having a separate disconnected lifecycle.
494          */
495         // TODO: will the copy transition to ModelProcessingPhase.FULL_DECLARATION or which phase?
496         DECLARED_COPY,
497         /**
498          * Reject any attempt to copy this statement. This is useful for statements that are defined as top-level
499          * constructs, such as {@code contact}, {@code deviation} and similar.
500          */
501         REJECT,
502         /**
503          * Ignore this statement's existence for the purposes of the new place -- it is not impacted. This guidance
504          * is left here for completeness, as it can have justifiable uses (but I can't think of any). Any substatements
505          * need to be ignored, too.
506          */
507         IGNORE;
508     }
509 }