Remove ImplicitParentAwareStatementSupport inheritence
[yangtools.git] / yang / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / StmtContext.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.Verify.verifyNotNull;
11
12 import com.google.common.base.VerifyException;
13 import com.google.common.collect.Iterables;
14 import com.google.common.collect.Streams;
15 import java.util.Collection;
16 import java.util.Map;
17 import java.util.Optional;
18 import java.util.stream.Stream;
19 import org.eclipse.jdt.annotation.NonNull;
20 import org.eclipse.jdt.annotation.Nullable;
21 import org.opendaylight.yangtools.yang.common.QNameModule;
22 import org.opendaylight.yangtools.yang.common.YangVersion;
23 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
24 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
25 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
26 import org.opendaylight.yangtools.yang.model.api.meta.IdentifierNamespace;
27 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
28 import org.opendaylight.yangtools.yang.model.api.meta.StatementSource;
29 import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
30 import org.opendaylight.yangtools.yang.parser.spi.source.StatementSourceReference;
31
32 public interface StmtContext<A, D extends DeclaredStatement<A>, E extends EffectiveStatement<A, D>> {
33
34     @NonNull StatementSource getStatementSource();
35
36     @NonNull StatementSourceReference getStatementSourceReference();
37
38     @NonNull StatementDefinition getPublicDefinition();
39
40     /**
41      * Return the parent statement context, or null if this is the root statement.
42      *
43      * @return context of parent of statement, or null if this is the root statement.
44      */
45     @Nullable StmtContext<?, ?, ?> getParentContext();
46
47     /**
48      * Return the parent statement context, forcing a VerifyException if this is the root statement.
49      *
50      * @return context of parent of statement
51      * @throws VerifyException if this statement is the root statement
52      */
53     default @NonNull StmtContext<?, ?, ?> coerceParentContext() {
54         return verifyNotNull(getParentContext(), "Root context %s does not have a parent", this);
55     }
56
57     /**
58      * Return the statement argument in literal format.
59      *
60      * @return raw statement argument string, or null if this statement does not have an argument.
61      */
62     @Nullable String rawStatementArgument();
63
64     /**
65      * Return the statement argument in literal format.
66      *
67      * @return raw statement argument string
68      * @throws VerifyException if this statement does not have an argument
69      */
70     default @NonNull String coerceRawStatementArgument() {
71         return verifyNotNull(rawStatementArgument(), "Statement context %s does not have an argument", this);
72     }
73
74     /**
75      * Return the statement argument.
76      *
77      * @return statement argument, or null if this statement does not have an argument
78      */
79     @Nullable A getStatementArgument();
80
81     /**
82      * Return the statement argument in literal format.
83      *
84      * @return raw statement argument string
85      * @throws VerifyException if this statement does not have an argument
86      */
87     default @NonNull A coerceStatementArgument() {
88         return verifyNotNull(getStatementArgument(), "Statement context %s does not have an argument", this);
89     }
90
91     /**
92      * Return the {@link SchemaPath} of this statement. Not all statements have a SchemaPath, in which case
93      * {@link Optional#empty()} is returned.
94      *
95      * @return Optional SchemaPath
96      */
97     @NonNull Optional<SchemaPath> getSchemaPath();
98
99     boolean isConfiguration();
100
101     boolean isEnabledSemanticVersioning();
102
103     /**
104      * Return a value associated with specified key within a namespace.
105      *
106      * @param type Namespace type
107      * @param key Key
108      * @param <K> namespace key type
109      * @param <V> namespace value type
110      * @param <N> namespace type
111      * @param <T> key type
112      * @return Value, or null if there is no element
113      * @throws NamespaceNotAvailableException when the namespace is not available.
114      */
115     @NonNull <K, V, T extends K, N extends IdentifierNamespace<K, V>> V getFromNamespace(Class<N> type, T key);
116
117     <K, V, N extends IdentifierNamespace<K, V>> Map<K, V> getAllFromNamespace(Class<N> type);
118
119     <K, V, N extends IdentifierNamespace<K, V>> Map<K, V> getAllFromCurrentStmtCtxNamespace(Class<N> type);
120
121     @NonNull StmtContext<?, ?, ?> getRoot();
122
123     /**
124      * Return declared substatements. These are the statements which are explicitly written in the source model.
125      *
126      * @return Collection of declared substatements
127      */
128     @NonNull Collection<? extends StmtContext<?, ?, ?>> declaredSubstatements();
129
130     /**
131      * Return effective substatements. These are the statements which are added as this statement's substatements
132      * complete their effective model phase.
133      *
134      * @return Collection of declared substatements
135      */
136     @NonNull Collection<? extends StmtContext<?, ?, ?>> effectiveSubstatements();
137
138     default Iterable<? extends StmtContext<?, ?, ?>> allSubstatements() {
139         return Iterables.concat(declaredSubstatements(), effectiveSubstatements());
140     }
141
142     default Stream<? extends StmtContext<?, ?, ?>> allSubstatementsStream() {
143         return Streams.concat(declaredSubstatements().stream(), effectiveSubstatements().stream());
144     }
145
146     /**
147      * Builds {@link DeclaredStatement} for statement context.
148      */
149     D buildDeclared();
150
151     /**
152      * Builds {@link EffectiveStatement} for statement context.
153      */
154     E buildEffective();
155
156     boolean isSupportedToBuildEffective();
157
158     Collection<? extends StmtContext<?, ?, ?>> getEffectOfStatement();
159
160     CopyHistory getCopyHistory();
161
162     boolean isSupportedByFeatures();
163
164     Optional<StmtContext<?, ?, ?>> getOriginalCtx();
165
166     ModelProcessingPhase getCompletedPhase();
167
168     /**
169      * Return version of root statement context.
170      *
171      * @return version of root statement context
172      */
173     @NonNull YangVersion getRootVersion();
174
175     interface Mutable<A, D extends DeclaredStatement<A>, E extends EffectiveStatement<A, D>>
176             extends StmtContext<A, D, E> {
177
178         @Override
179         Mutable<?, ?, ?> getParentContext();
180
181         @Override
182         default Mutable<?, ?, ?> coerceParentContext() {
183             return verifyNotNull(getParentContext(), "Root context %s does not have a parent", this);
184         }
185
186         /**
187          * Associate a value with a key within a namespace.
188          *
189          * @param type Namespace type
190          * @param key Key
191          * @param value value
192          * @param <K> namespace key type
193          * @param <V> namespace value type
194          * @param <N> namespace type
195          * @param <T> key type
196          * @param <U> value type
197          * @throws NamespaceNotAvailableException when the namespace is not available.
198          */
199         <K, V, T extends K, U extends V, N extends IdentifierNamespace<K, V>> void addToNs(Class<N> type, T key,
200                 U value);
201
202         @Override
203         Mutable<?, ?, ?> getRoot();
204
205         /**
206          * Create a child sub-statement, which is a child of this statement, inheriting all attributes from specified
207          * child and recording copy type. Resulting object may only be added as a child of this statement.
208          *
209          * @param stmt Statement to be used as a template
210          * @param type Type of copy to record in history
211          * @param targetModule Optional new target module
212          * @return copy of statement considering {@link CopyType} (augment, uses)
213          *
214          * @throws IllegalArgumentException if stmt cannot be copied into this statement, for example because it comes
215          *                                  from an alien implementation.
216          * @throws org.opendaylight.yangtools.yang.parser.spi.source.SourceException instance of SourceException
217          */
218         <X, Y extends DeclaredStatement<X>, Z extends EffectiveStatement<X, Y>> Mutable<X, Y, Z> childCopyOf(
219                 StmtContext<X, Y, Z> stmt, CopyType type, @Nullable QNameModule targetModule);
220
221         /**
222          * Create a child sub-statement, which is a child of this statement, inheriting all attributes from specified
223          * child and recording copy type. Resulting object may only be added as a child of this statement.
224          *
225          * @param stmt Statement to be used as a template
226          * @param type Type of copy to record in history
227          * @return copy of statement considering {@link CopyType} (augment, uses)
228          *
229          * @throws IllegalArgumentException if stmt cannot be copied into this statement, for example because it comes
230          *                                  from an alien implementation.
231          * @throws org.opendaylight.yangtools.yang.parser.spi.source.SourceException instance of SourceException
232          */
233         default <X, Y extends DeclaredStatement<X>, Z extends EffectiveStatement<X, Y>> Mutable<X, Y, Z> childCopyOf(
234                 final StmtContext<X, Y, Z> stmt, final CopyType type) {
235             return childCopyOf(stmt, type, null);
236         }
237
238         @NonNull Collection<? extends Mutable<?, ?, ?>> mutableDeclaredSubstatements();
239
240         @NonNull Collection<? extends Mutable<?, ?, ?>> mutableEffectiveSubstatements();
241
242         /**
243          * Create a new inference action to be executed during specified phase. The action cannot be cancelled
244          * and will be executed even if its definition remains incomplete. The specified phase cannot complete until
245          * this action is resolved. If the action cannot be resolved, model processing will fail.
246          *
247          * @param phase Target phase in which the action will resolved.
248          * @return A new action builder.
249          * @throws NullPointerException if the specified phase is null
250          */
251         @NonNull ModelActionBuilder newInferenceAction(@NonNull ModelProcessingPhase phase);
252
253         /**
254          * Adds s statement to namespace map with a key.
255          *
256          * @param namespace
257          *            {@link StatementNamespace} child that determines namespace to be added to
258          * @param key
259          *            of type according to namespace class specification
260          * @param stmt
261          *            to be added to namespace map
262          */
263         <K, KT extends K, N extends StatementNamespace<K, ?, ?>> void addContext(Class<N> namespace, KT key,
264                 StmtContext<?, ?, ?> stmt);
265
266         /**
267          * Set version of root statement context.
268          *
269          * @param version
270          *            of root statement context
271          */
272         void setRootVersion(YangVersion version);
273
274         /**
275          * Add mutable statement to seal. Each mutable statement must be sealed
276          * as the last step of statement parser processing.
277          *
278          * @param mutableStatement
279          *            mutable statement which should be sealed
280          */
281         void addMutableStmtToSeal(MutableStatement mutableStatement);
282
283         /**
284          * Add required module. Based on these dependencies are collected required sources from library sources.
285          *
286          * @param dependency
287          *            SourceIdentifier of module required by current root
288          *            context
289          */
290         /*
291          * FIXME: this method is used solely during SOURCE_PRE_LINKAGE reactor phase and does not have a corresponding
292          *        getter -- which makes it rather strange. At some point this method needs to be deprecated and its
293          *        users migrated to use proper global namespace.
294          */
295         void addRequiredSource(SourceIdentifier dependency);
296
297         void addAsEffectOfStatement(StmtContext<?, ?, ?> ctx);
298
299         void addAsEffectOfStatement(Collection<? extends StmtContext<?, ?, ?>> ctxs);
300
301         /**
302          * Set identifier of current root context.
303          *
304          * @param identifier
305          *            of current root context, must not be null
306          */
307         void setRootIdentifier(SourceIdentifier identifier);
308
309         void setIsSupportedToBuildEffective(boolean isSupportedToBuild);
310
311         // FIXME: this seems to be unused, but looks useful.
312         void setCompletedPhase(ModelProcessingPhase completedPhase);
313     }
314 }