Fix code smells in yang-parser-spi
[yangtools.git] / yang / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / ModelActionBuilder.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 org.opendaylight.yangtools.yang.parser.spi.meta.ModelProcessingPhase.EFFECTIVE_MODEL;
11
12 import java.util.Collection;
13 import javax.annotation.Nonnull;
14 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
15 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
16 import org.opendaylight.yangtools.yang.model.api.meta.IdentifierNamespace;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext.Mutable;
18
19 /**
20  * Builder for effective model inference action. Model inference action is core principle of transforming
21  * declared model into effective model.
22  *
23  * <p>
24  * Since YANG allows forward references, some inference actions need to be taken at a later point, where reference is
25  * actually resolved. Referenced objects are not retrieved directly but are represented as {@link Prerequisite}
26  * (prerequisite) for inference action to be taken.
27  *
28  * <p>
29  * Some existing YANG statements are more complex and also object, for which effective model may be inferred is also
30  * represented as a {@link Prerequisite} which, when reference is available, will contain target context, which may be
31  * used for inference action.
32  *
33  * <h2>Implementing inference action</h2>
34  * Effective inference action could always be splitted into two separate tasks:
35  * <ol>
36  * <li>Declaration of inference action and its prerequisites</li>
37  * <li>Execution of inference action</li>
38  * </ol>
39  *
40  * <p>
41  * In order to declare inference action following steps needs
42  * to be taken:
43  * <ol>
44  * <li>Use {@link StmtContext.Mutable#newInferenceAction(ModelProcessingPhase)} to obtain
45  * {@link ModelActionBuilder}.
46  * <li>Use builder to specify concrete prerequisites of inference action
47  * (other statements, values from identifier namespaces)
48  * <li>Use builder to specify concrete set of nodes (or forward references to nodes)
49  * which will inference action mutate.
50  * <li>Use {@link #apply(InferenceAction)} with {@link InferenceAction} implementation
51  * to register inference action.
52  * </ol>
53  *
54  * <p>
55  * An action will be executed when:
56  * <ul>
57  * <li> {@link InferenceAction#apply(InferenceContext)} - all prerequisites (and declared forward references) are met,
58  * action could dereference them and start applying changes.
59  * </li>
60  * <li>{@link InferenceAction#prerequisiteFailed(Collection)} - semantic parser finished all other satisfied
61  * inference actions and some of declared prerequisites was still not met.
62  * </li>
63  * </ul>
64  *
65  * <p>
66  * TODO: Insert real word example
67  *
68  * <h2>Design notes</h2>
69  * {@link java.util.concurrent.Future} seems as viable and more standard alternative to {@link Prerequisite}, but
70  * Futures also carries promise that resolution of it is carried in other thread, which will actually put additional
71  * constraints on semantic parser.
72  *
73  * <p>
74  * Also listening on multiple futures is costly, so we opted out of future and designed API, which later may introduce
75  * futures.
76  */
77 public interface ModelActionBuilder {
78     interface InferenceContext {
79
80     }
81
82     @FunctionalInterface
83     interface Prerequisite<T> {
84         /**
85          * Returns associated prerequisite once it is resolved.
86          *
87          * @param ctx Inference context in which the prerequisite was satisfied
88          * @return associated prerequisite once it is resolved.
89          */
90         T resolve(InferenceContext ctx);
91     }
92
93     /**
94      * User-defined inference action.
95      */
96     interface InferenceAction {
97
98         /**
99          * Invoked once all prerequisites were met and forward references were resolved and inference action should be
100          * applied. Implementors may perform necessary changes to mutable objects which were declared.
101          *
102          * @throws InferenceException If inference action can not be processed. Note that this exception be used for
103          *         user to debug YANG sources, so should provide helpful context to fix issue in sources.
104          */
105         void apply(InferenceContext ctx);
106
107         /**
108          * Invoked once one of prerequisites was not met, even after all other satisfiable inference actions were
109          * processed.
110          *
111          * <p>
112          * Implementors MUST throw {@link InferenceException} if semantic processing of model should be stopped
113          * and failed.
114          *
115          * <p>
116          * List of failed prerequisites should be used to select right message / error type to debug problem in YANG
117          * sources.
118          *
119          * @param failed collection of prerequisites which were not met
120          * @throws InferenceException If inference action can not be processed. Note that this exception be used
121          *                            by user to debug YANG sources, hence it should provide helpful context to fix
122          *                            the issue in sources.
123          */
124         void prerequisiteFailed(Collection<? extends Prerequisite<?>> failed);
125     }
126
127     /**
128      * Action requires that the specified context transition to complete {@link ModelProcessingPhase#FULL_DECLARATION}
129      * phase and produce a declared statement.
130      *
131      * @param context Statement context which needs to complete the transition.
132      * @return A {@link Prerequisite} returning the declared statement of the requested context.
133      */
134     @Nonnull <D extends DeclaredStatement<?>> Prerequisite<D> requiresDeclared(StmtContext<?, ? extends D, ?> context);
135
136     /**
137      * Create a requirement on specified statement to be declared.
138      *
139      * @deprecated Undocumented method. Use at your own risk.
140      */
141     @Deprecated
142     @Nonnull <K, D extends DeclaredStatement<?>, N extends StatementNamespace<K, ? extends D, ?>>
143         Prerequisite<D> requiresDeclared(StmtContext<?, ?, ?> context, Class<N> namespace, K key);
144
145     /**
146      * Action requires that the specified context completes specified phase.
147      *
148      * @param context Statement context which needs to complete the transition.
149      * @param phase ModelProcessingPhase which must have completed
150      * @return A {@link Prerequisite} returning the requested context.
151      */
152     @Nonnull <A, D extends DeclaredStatement<A>, E extends EffectiveStatement<A, D>>
153         Prerequisite<StmtContext<A, D, E>> requiresCtx(StmtContext<A, D, E> context, ModelProcessingPhase phase);
154
155     @Nonnull <K, N extends StatementNamespace<K, ?, ?>> Prerequisite<StmtContext<?, ?, ?>> requiresCtx(
156         StmtContext<?, ?, ?> context, Class<N> namespace, K key, ModelProcessingPhase phase);
157
158     @Nonnull <K, N extends StatementNamespace<K, ?, ?>> Prerequisite<StmtContext<?, ?, ?>> requiresCtx(
159             StmtContext<?, ?, ?> context, Class<N> namespace, NamespaceKeyCriterion<K> criterion,
160             ModelProcessingPhase phase);
161
162     default @Nonnull <T extends Mutable<?, ?, ?>> Prerequisite<T> mutatesEffectiveCtx(final T stmt) {
163         return mutatesCtx(stmt, EFFECTIVE_MODEL);
164     }
165
166     @Nonnull <K, E extends EffectiveStatement<?, ?>, N extends IdentifierNamespace<K, ? extends StmtContext<?, ?, ?>>>
167         Prerequisite<Mutable<?, ?, E>> mutatesEffectiveCtx(StmtContext<?, ?, ?> context, Class<N> namespace, K key);
168
169     @Nonnull <C extends Mutable<?, ?, ?>, T extends C> Prerequisite<C> mutatesCtx(T root, ModelProcessingPhase phase);
170
171     /**
172      * Apply an {@link InferenceAction} when this action's prerequisites are resolved.
173      *
174      * @param action Inference action to apply
175      * @throws InferenceException if the action fails
176      * @throws NullPointerException if {@code action is null}
177      * @throws IllegalStateException if this action has an inference action already associated.
178      */
179     void apply(InferenceAction action);
180
181     /**
182      * Create a requirement on specified statement context to be declared.
183      *
184      * @deprecated Undocumented method. Use at your own risk.
185      */
186     @Deprecated
187     @Nonnull <K, D extends DeclaredStatement<?>, N extends StatementNamespace<K, ? extends D, ?>>
188         Prerequisite<StmtContext<?, D, ?>> requiresDeclaredCtx(StmtContext<?, ?, ?> context, Class<N> namespace, K key);
189
190     /**
191      * Create a requirement on specified statement to become effective.
192      *
193      * @deprecated Undocumented method. Use at your own risk.
194      */
195     @Deprecated
196     @Nonnull <E extends EffectiveStatement<?, ?>> Prerequisite<E> requiresEffective(
197             StmtContext<?, ?, ? extends E> stmt);
198
199     /**
200      * Create a requirement on specified statement to become effective.
201      *
202      * @deprecated Undocumented method. Use at your own risk.
203      */
204     @Deprecated
205     @Nonnull <K, E extends EffectiveStatement<?, ?>, N extends StatementNamespace<K, ?, ? extends E>>
206         Prerequisite<E> requiresEffective(StmtContext<?, ?, ?> context, Class<N> namespace, K key);
207
208     /**
209      * Create a requirement on specified statement context to become effective.
210      *
211      * @deprecated Undocumented method. Use at your own risk.
212      */
213     @Deprecated
214     @Nonnull <K, E extends EffectiveStatement<?, ?>, N extends StatementNamespace<K, ?, ? extends E>>
215     Prerequisite<StmtContext<?, ?, E>> requiresEffectiveCtx(StmtContext<?, ?, ?> context, Class<N> namespace,
216             K key);
217
218     /**
219      * Mark the fact that this action is mutating a namespace.
220      *
221      * @deprecated Undocumented method. Use at your own risk.
222      */
223     @Deprecated
224     @Nonnull <N extends IdentifierNamespace<?, ?>> Prerequisite<Mutable<?,?,?>> mutatesNs(
225             Mutable<?,?, ?> ctx, Class<N> namespace);
226 }