Bug 3670 (part 1/5): Use of new statement parser in yang-maven-plugin
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / reactor / StatementContextBase.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.stmt.reactor;
9
10 import java.util.LinkedList;
11
12 import java.util.List;
13 import com.google.common.base.Preconditions;
14 import com.google.common.base.Throwables;
15 import com.google.common.collect.HashMultimap;
16 import com.google.common.collect.Multimap;
17 import java.util.ArrayList;
18 import java.util.Collection;
19 import java.util.Collections;
20 import java.util.EventListener;
21 import java.util.Iterator;
22 import java.util.LinkedHashMap;
23 import java.util.Map;
24 import javax.annotation.Nonnull;
25 import org.opendaylight.yangtools.concepts.Identifiable;
26 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
27 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
28 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
29 import org.opendaylight.yangtools.yang.model.api.meta.IdentifierNamespace;
30 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
31 import org.opendaylight.yangtools.yang.model.api.meta.StatementSource;
32 import org.opendaylight.yangtools.yang.parser.spi.meta.ModelActionBuilder;
33 import org.opendaylight.yangtools.yang.parser.spi.meta.ModelProcessingPhase;
34 import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour;
35 import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour.StorageNodeType;
36 import org.opendaylight.yangtools.yang.parser.spi.meta.StatementNamespace;
37 import org.opendaylight.yangtools.yang.parser.spi.meta.StatementSupport;
38 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
39 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
40 import org.opendaylight.yangtools.yang.parser.spi.source.StatementSourceReference;
41 import org.opendaylight.yangtools.yang.parser.stmt.reactor.NamespaceBehaviourWithListeners.ValueAddedListener;
42
43 public abstract class StatementContextBase<A, D extends DeclaredStatement<A>, E extends EffectiveStatement<A, D>>
44         extends NamespaceStorageSupport implements StmtContext.Mutable<A, D, E>, Identifiable<StatementIdentifier> {
45
46     /**
47      * event listener when an item is added to model namespace
48      */
49     interface OnNamespaceItemAdded extends EventListener {
50
51         void namespaceItemAdded(StatementContextBase<?, ?, ?> context, Class<?> namespace, Object key, Object value)
52                 throws SourceException;
53
54     }
55
56     /**
57      * event listener when a parsing {@link ModelProcessingPhase} is completed
58      */
59     interface OnPhaseFinished extends EventListener {
60
61         boolean phaseFinished(StatementContextBase<?, ?, ?> context, ModelProcessingPhase phase) throws SourceException;
62
63     }
64
65     /**
66      * interface for all mutations within an {@link ModelActionBuilder.InferenceAction}
67      */
68     interface ContextMutation {
69
70         boolean isFinished();
71
72     }
73
74     private final StatementDefinitionContext<A, D, E> definition;
75     private final StatementIdentifier identifier;
76     private final StatementSourceReference statementDeclSource;
77     private int order = 0;
78
79     private Map<StatementIdentifier, StatementContextBase<?, ?, ?>> substatements = new LinkedHashMap<>();
80
81     private Collection<StatementContextBase<?, ?, ?>> declared = new ArrayList<>();
82     private Collection<StatementContextBase<?, ?, ?>> effective = new ArrayList<>();
83     private Collection<StatementContextBase<?, ?, ?>> effectOfStatement = new ArrayList<>();
84
85     public Collection<StatementContextBase<?, ?, ?>> getEffectOfStatement() {
86         return effectOfStatement;
87     }
88
89     public void addAsEffectOfStatement(StatementContextBase<?, ?, ?> ctx) {
90         effectOfStatement.add(ctx);
91     }
92
93     private ModelProcessingPhase completedPhase;
94
95     private Multimap<ModelProcessingPhase, OnPhaseFinished> phaseListeners = HashMultimap.create();
96     private Multimap<ModelProcessingPhase, ContextMutation> phaseMutation = HashMultimap.create();
97
98     private D declaredInstance;
99     private E effectiveInstance;
100
101     private StatementContextBase<?, ?, ?> originalCtx;
102     private List<TypeOfCopy> copyHistory;
103
104     private boolean isSupportedToBuildEffective = true;
105
106     @Override
107     public boolean isSupportedToBuildEffective() {
108         return isSupportedToBuildEffective;
109     }
110
111     @Override
112     public void setIsSupportedToBuildEffective(boolean isSupportedToBuildEffective) {
113         this.isSupportedToBuildEffective = isSupportedToBuildEffective;
114     }
115
116     @Override
117     public List<TypeOfCopy> getCopyHistory() {
118         return copyHistory;
119     }
120
121     @Override
122     public void addToCopyHistory(TypeOfCopy typeOfCopy) {
123         this.copyHistory.add(typeOfCopy);
124     }
125
126     @Override
127     public void addAllToCopyHistory(List<TypeOfCopy> typeOfCopyList) {
128         this.copyHistory.addAll(typeOfCopyList);
129     }
130
131     @Override
132     public StatementContextBase<?, ?, ?> getOriginalCtx() {
133         return originalCtx;
134     }
135
136     @Override
137     public void setOriginalCtx(StatementContextBase<?, ?, ?> originalCtx) {
138         this.originalCtx = originalCtx;
139     }
140
141     @Override
142     public void setOrder(int order) {
143         this.order = order;
144     }
145
146     @Override
147     public int getOrder() {
148         return order;
149     }
150
151     @Override
152     public ModelProcessingPhase getCompletedPhase() {
153         return completedPhase;
154     }
155
156     @Override
157     public void setCompletedPhase(ModelProcessingPhase completedPhase) {
158         this.completedPhase = completedPhase;
159     }
160
161     StatementContextBase(@Nonnull ContextBuilder<A, D, E> builder) throws SourceException {
162         this.definition = builder.getDefinition();
163         this.identifier = builder.createIdentifier();
164         this.statementDeclSource = builder.getStamementSource();
165         this.completedPhase = null;
166         initCopyHistory();
167     }
168
169     StatementContextBase(StatementContextBase<A, D, E> original) {
170         this.definition = Preconditions
171                 .checkNotNull(original.definition, "Statement context definition cannot be null");
172         this.identifier = Preconditions
173                 .checkNotNull(original.identifier, "Statement context identifier cannot be null");
174         this.statementDeclSource = Preconditions.checkNotNull(original.statementDeclSource,
175                 "Statement context statementDeclSource cannot be null");
176         this.completedPhase = null;
177         initCopyHistory();
178     }
179
180     private void initCopyHistory() {
181         this.copyHistory = new LinkedList<>();
182         this.copyHistory.add(TypeOfCopy.ORIGINAL);
183     }
184
185     /**
186      * @return context of parent of statement
187      */
188     @Override
189     public abstract StatementContextBase<?, ?, ?> getParentContext();
190
191     /**
192      * @return root context of statement
193      */
194     @Override
195     public abstract RootStatementContext<?, ?, ?> getRoot();
196
197     /**
198      * @return statement identifier
199      */
200     @Override
201     public StatementIdentifier getIdentifier() {
202         return identifier;
203     }
204
205     /**
206      * @return origin of statement
207      */
208     @Override
209     public StatementSource getStatementSource() {
210         return statementDeclSource.getStatementSource();
211     }
212
213     /**
214      * @return reference of statement source
215      */
216     @Override
217     public StatementSourceReference getStatementSourceReference() {
218         return statementDeclSource;
219     }
220
221     /**
222      * @return raw statement argument string
223      */
224     @Override
225     public String rawStatementArgument() {
226         return identifier.getArgument();
227     }
228
229     /**
230      * @return collection of declared substatements
231      */
232     @Override
233     public Collection<StatementContextBase<?, ?, ?>> declaredSubstatements() {
234         return Collections.unmodifiableCollection(declared);
235     }
236
237     /**
238      * @return collection of effective substatements
239      */
240     @Override
241     public Collection<StatementContextBase<?, ?, ?>> effectiveSubstatements() {
242         return Collections.unmodifiableCollection(effective);
243     }
244
245     public void removeStatementsFromEffectiveSubstatements(Collection<StatementContextBase<?, ?, ?>> substatements) {
246         effective.removeAll(substatements);
247     }
248
249     public void removeStatementFromEffectiveSubstatements(StatementDefinition refineSubstatementDef) {
250         Iterator<StatementContextBase<?, ?, ?>> iterator = effective.iterator();
251         while (iterator.hasNext()) {
252             StatementContextBase<?, ?, ?> next = iterator.next();
253             if (next.getPublicDefinition().equals(refineSubstatementDef)) {
254                 iterator.remove();
255             }
256         }
257     }
258
259     /**
260      * adds effective statement to collection of substatements
261      *
262      * @throws IllegalStateException
263      *             if added in declared phase
264      * @throws NullPointerException
265      *             if statement parameter is null
266      */
267     public void addEffectiveSubstatement(StatementContextBase<?, ?, ?> substatement) {
268
269         final ModelProcessingPhase inProgressPhase = getRoot().getSourceContext().getInProgressPhase();
270         Preconditions.checkState(inProgressPhase == ModelProcessingPhase.FULL_DECLARATION
271                 || inProgressPhase == ModelProcessingPhase.EFFECTIVE_MODEL,
272                 "Effective statement cannot be added in declared phase");
273
274         effective.add(Preconditions.checkNotNull(substatement,
275                 "StatementContextBase effective substatement cannot be null"));
276     }
277
278     /**
279      * adds declared statement to collection of substatements
280      *
281      * @throws IllegalStateException
282      *             if added in effective phase
283      * @throws NullPointerException
284      *             if statement parameter is null
285      */
286     public void addDeclaredSubstatement(StatementContextBase<?, ?, ?> substatement) {
287
288         final ModelProcessingPhase inProgressPhase = getRoot().getSourceContext().getInProgressPhase();
289         Preconditions.checkState(inProgressPhase != ModelProcessingPhase.EFFECTIVE_MODEL,
290                 "Declared statement cannot be added in effective phase");
291
292         declared.add(Preconditions.checkNotNull(substatement,
293                 "StatementContextBase declared substatement cannot be null"));
294     }
295
296     /**
297      * builds new substatement from statement definition context and statement source reference
298      */
299     @SuppressWarnings({ "rawtypes", "unchecked" })
300     public ContextBuilder<?, ?, ?> substatementBuilder(StatementDefinitionContext<?, ?, ?> def,
301             StatementSourceReference ref) {
302         return new ContextBuilder(def, ref) {
303
304             @Override
305             public StatementContextBase build() throws SourceException {
306                 StatementContextBase<?, ?, ?> potential = null;
307
308                 if (getDefinition().getPublicView() != Rfc6020Mapping.AUGMENT) {
309                     potential = substatements.get(createIdentifier());
310                 }
311                 if (potential == null) {
312                     potential = new SubstatementContext(StatementContextBase.this, this);
313                     substatements.put(createIdentifier(), potential);
314                 }
315                 potential.resetLists();
316                 switch (this.getStamementSource().getStatementSource()) {
317                 case DECLARATION:
318                     addDeclaredSubstatement(potential);
319                     break;
320                 case CONTEXT:
321                     addEffectiveSubstatement(potential);
322                     break;
323                 }
324                 return potential;
325             }
326         };
327     }
328
329     /**
330      * @return local namespace behaviour type {@link NamespaceBehaviour}
331      */
332     @Override
333     public StorageNodeType getStorageNodeType() {
334         return StorageNodeType.STATEMENT_LOCAL;
335     }
336
337     /**
338      * builds {@link DeclaredStatement} for statement context
339      */
340     @Override
341     public D buildDeclared() {
342         Preconditions.checkArgument(completedPhase == ModelProcessingPhase.FULL_DECLARATION
343                 || completedPhase == ModelProcessingPhase.EFFECTIVE_MODEL);
344         if (declaredInstance == null) {
345             declaredInstance = definition().getFactory().createDeclared(this);
346         }
347         return declaredInstance;
348     }
349
350     /**
351      * builds {@link EffectiveStatement} for statement context
352      */
353     @Override
354     public E buildEffective() {
355         if (effectiveInstance == null) {
356             effectiveInstance = definition().getFactory().createEffective(this);
357         }
358         return effectiveInstance;
359     }
360
361     /**
362      * clears collection of declared substatements
363      *
364      * @throws IllegalStateException
365      *             if invoked in effective build phase
366      */
367     void resetLists() {
368
369         final SourceSpecificContext sourceContext = getRoot().getSourceContext();
370         Preconditions.checkState(sourceContext.getInProgressPhase() != ModelProcessingPhase.EFFECTIVE_MODEL,
371                 "Declared statements list cannot be cleared in effective phase");
372
373         declared.clear();
374     }
375
376     /**
377      * tries to execute current {@link ModelProcessingPhase} of source parsing
378      *
379      * @param phase
380      *            to be executed (completed)
381      * @return if phase was successfully completed
382      * @throws SourceException
383      *             when an error occured in source parsing
384      */
385     boolean tryToCompletePhase(ModelProcessingPhase phase) throws SourceException {
386         Iterator<ContextMutation> openMutations = phaseMutation.get(phase).iterator();
387         boolean finished = true;
388         while (openMutations.hasNext()) {
389             ContextMutation current = openMutations.next();
390             if (current.isFinished()) {
391                 openMutations.remove();
392             } else {
393                 finished = false;
394             }
395         }
396         for (StatementContextBase<?, ?, ?> child : declared) {
397             finished &= child.tryToCompletePhase(phase);
398         }
399         for (StatementContextBase<?, ?, ?> child : effective) {
400             finished &= child.tryToCompletePhase(phase);
401         }
402
403         if (finished) {
404             onPhaseCompleted(phase);
405             return true;
406         }
407         return false;
408     }
409
410     /**
411      * occurs on end of {@link ModelProcessingPhase} of source parsing
412      *
413      * @param phase
414      *            that was to be completed (finished)
415      * @throws SourceException
416      *             when an error occured in source parsing
417      */
418     private void onPhaseCompleted(ModelProcessingPhase phase) throws SourceException {
419         completedPhase = phase;
420         Iterator<OnPhaseFinished> listener = phaseListeners.get(completedPhase).iterator();
421         while (listener.hasNext()) {
422             OnPhaseFinished next = listener.next();
423             if (next.phaseFinished(this, phase)) {
424                 listener.remove();
425             }
426         }
427     }
428
429     /**
430      * Ends declared section of current node.
431      *
432      * @param ref
433      * @throws SourceException
434      */
435     void endDeclared(StatementSourceReference ref, ModelProcessingPhase phase) throws SourceException {
436         definition().onDeclarationFinished(this, phase);
437     }
438
439     /**
440      * @return statement definition
441      */
442     protected final StatementDefinitionContext<A, D, E> definition() {
443         return definition;
444     }
445
446     @Override
447     protected void checkLocalNamespaceAllowed(Class<? extends IdentifierNamespace<?, ?>> type) {
448         definition().checkNamespaceAllowed(type);
449     }
450
451     /**
452      * occurs when an item is added to model namespace
453      *
454      * @throws SourceException
455      */
456     @Override
457     protected <K, V, N extends IdentifierNamespace<K, V>> void onNamespaceElementAdded(Class<N> type, K key, V value) {
458         // definition().onNamespaceElementAdded(this, type, key, value);
459     }
460
461     <K, V, N extends IdentifierNamespace<K, V>> void onNamespaceItemAddedAction(final Class<N> type, K key,
462             final OnNamespaceItemAdded listener) throws SourceException {
463         Object potential = getFromNamespace(type, key);
464         if (potential != null) {
465             listener.namespaceItemAdded(this, type, key, potential);
466             return;
467         }
468         NamespaceBehaviour<K, V, N> behaviour = getBehaviourRegistry().getNamespaceBehaviour(type);
469         if (behaviour instanceof NamespaceBehaviourWithListeners) {
470             NamespaceBehaviourWithListeners<K, V, N> casted = (NamespaceBehaviourWithListeners<K, V, N>) behaviour;
471             casted.addValueListener(key, new ValueAddedListener(this) {
472                 @Override
473                 void onValueAdded(Object key, Object value) {
474                     try {
475                         listener.namespaceItemAdded(StatementContextBase.this, type, key, value);
476                     } catch (SourceException e) {
477                         throw Throwables.propagate(e);
478                     }
479                 }
480             });
481         }
482     }
483
484     /**
485      * @see StatementSupport#getPublicView()
486      */
487     @Override
488     public StatementDefinition getPublicDefinition() {
489         return definition().getPublicView();
490     }
491
492     /**
493      * @return new {@link ModelActionBuilder} for the phase
494      */
495     @Override
496     public ModelActionBuilder newInferenceAction(ModelProcessingPhase phase) {
497         return getRoot().getSourceContext().newInferenceAction(phase);
498     }
499
500     /**
501      * adds {@link OnPhaseFinished} listener for a {@link ModelProcessingPhase} end
502      *
503      * @throws SourceException
504      */
505     void addPhaseCompletedListener(ModelProcessingPhase phase, OnPhaseFinished listener) throws SourceException {
506
507         Preconditions.checkNotNull(phase, "Statement context processing phase cannot be null");
508         Preconditions.checkNotNull(listener, "Statement context phase listener cannot be null");
509
510         ModelProcessingPhase finishedPhase = completedPhase;
511         while (finishedPhase != null) {
512             if (phase.equals(finishedPhase)) {
513                 listener.phaseFinished(this, finishedPhase);
514                 return;
515             }
516             finishedPhase = finishedPhase.getPreviousPhase();
517         }
518         phaseListeners.put(phase, listener);
519     }
520
521     /**
522      * adds {@link ContextMutation} to {@link ModelProcessingPhase}
523      *
524      * @throws IllegalStateException
525      *             when the mutation was registered after phase was completed
526      */
527     void addMutation(ModelProcessingPhase phase, ContextMutation mutation) {
528         ModelProcessingPhase finishedPhase = completedPhase;
529         while (finishedPhase != null) {
530             if (phase.equals(finishedPhase)) {
531                 throw new IllegalStateException("Mutation registered after phase was completed.");
532             }
533             finishedPhase = finishedPhase.getPreviousPhase();
534         }
535         phaseMutation.put(phase, mutation);
536     }
537
538     /**
539      * adds statement to namespace map with the key
540      *
541      * @param namespace
542      *            {@link StatementNamespace} child that determines namespace to be added to
543      * @param key
544      *            of type according to namespace class specification
545      * @param stmt
546      *            to be added to namespace map
547      */
548     @Override
549     public <K, KT extends K, N extends StatementNamespace<K, ?, ?>> void addContext(Class<N> namespace, KT key,
550             StmtContext<?, ?, ?> stmt) {
551         addContextToNamespace(namespace, (K) key, stmt);
552     }
553 }