Deprecate StmtContext.getSchemaPath()
[yangtools.git] / yang / yang-parser-reactor / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / reactor / RootStatementContext.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 static com.google.common.base.Preconditions.checkArgument;
11 import static com.google.common.base.Preconditions.checkState;
12 import static com.google.common.base.Verify.verify;
13 import static java.util.Objects.requireNonNull;
14
15 import com.google.common.collect.ImmutableList;
16 import com.google.common.collect.ImmutableSet;
17 import java.util.ArrayList;
18 import java.util.Collection;
19 import java.util.HashSet;
20 import java.util.List;
21 import java.util.Map;
22 import java.util.Optional;
23 import java.util.Set;
24 import org.eclipse.jdt.annotation.NonNull;
25 import org.eclipse.jdt.annotation.Nullable;
26 import org.opendaylight.yangtools.yang.common.YangVersion;
27 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
28 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
29 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
30 import org.opendaylight.yangtools.yang.model.api.meta.IdentifierNamespace;
31 import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
32 import org.opendaylight.yangtools.yang.parser.spi.meta.ModelProcessingPhase;
33 import org.opendaylight.yangtools.yang.parser.spi.meta.MutableStatement;
34 import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour.NamespaceStorageNode;
35 import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour.Registry;
36 import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour.StorageNodeType;
37 import org.opendaylight.yangtools.yang.parser.spi.source.IncludedModuleContext;
38 import org.opendaylight.yangtools.yang.parser.spi.source.StatementSourceReference;
39
40 /**
41  * Root statement class for a YANG source. All statements defined in that YANG source are mapped underneath an instance
42  * of this class, hence recursive lookups from them cross this class.
43  */
44 public class RootStatementContext<A, D extends DeclaredStatement<A>, E extends EffectiveStatement<A, D>> extends
45         AbstractResumedStatement<A, D, E> {
46
47     public static final YangVersion DEFAULT_VERSION = YangVersion.VERSION_1;
48
49     private final @NonNull SourceSpecificContext sourceContext;
50     private final A argument;
51
52     private YangVersion rootVersion;
53     private Set<SourceIdentifier> requiredSources = ImmutableSet.of();
54     private SourceIdentifier rootIdentifier;
55
56     /**
57      * References to RootStatementContext of submodules which are included in this source.
58      */
59     private List<RootStatementContext<?, ?, ?>> includedContexts = ImmutableList.of();
60
61     RootStatementContext(final SourceSpecificContext sourceContext, final StatementDefinitionContext<A, D, E> def,
62         final StatementSourceReference ref, final String rawArgument) {
63         super(def, ref, rawArgument);
64         this.sourceContext = requireNonNull(sourceContext);
65         this.argument = def.parseArgumentValue(this, rawStatementArgument());
66     }
67
68     RootStatementContext(final SourceSpecificContext sourceContext, final StatementDefinitionContext<A, D, E> def,
69             final StatementSourceReference ref, final String rawArgument, final YangVersion version,
70             final SourceIdentifier identifier) {
71         this(sourceContext, def, ref, rawArgument);
72         this.setRootVersion(version);
73         this.setRootIdentifier(identifier);
74     }
75
76     @Override
77     public StatementContextBase<?, ?, ?> getParentContext() {
78         // null as root cannot have parent
79         return null;
80     }
81
82     @Override
83     public NamespaceStorageNode getParentNamespaceStorage() {
84         // namespace storage of source context
85         return sourceContext;
86     }
87
88     @Override
89     public StorageNodeType getStorageNodeType() {
90         return StorageNodeType.ROOT_STATEMENT_LOCAL;
91     }
92
93     @Override
94     public RootStatementContext<?, ?, ?> getRoot() {
95         // this as its own root
96         return this;
97     }
98
99     SourceSpecificContext getSourceContext() {
100         return sourceContext;
101     }
102
103     @Override
104     public A getStatementArgument() {
105         return argument;
106     }
107
108     @Override
109     @Deprecated
110     public Optional<SchemaPath> getSchemaPath() {
111         return Optional.of(SchemaPath.ROOT);
112     }
113
114     @Override
115     public boolean isConfiguration() {
116         return true;
117     }
118
119     @Override
120     public <K, V, N extends IdentifierNamespace<K, V>> V putToLocalStorage(final Class<N> type, final K key,
121             final V value) {
122         if (IncludedModuleContext.class.isAssignableFrom(type)) {
123             if (includedContexts.isEmpty()) {
124                 includedContexts = new ArrayList<>(1);
125             }
126             verify(value instanceof RootStatementContext);
127             includedContexts.add((RootStatementContext<?, ?, ?>) value);
128         }
129         return super.putToLocalStorage(type, key, value);
130     }
131
132     @Override
133     public <K, V, N extends IdentifierNamespace<K, V>> V getFromLocalStorage(final Class<N> type, final K key) {
134         return getFromLocalStorage(type, key, new HashSet<>());
135     }
136
137     /*
138      * We need to track already checked RootStatementContexts due to possible
139      * circular chains of includes between submodules
140      */
141     private <K, V, N extends IdentifierNamespace<K, V>> @Nullable V getFromLocalStorage(final Class<N> type,
142             final K key, final HashSet<RootStatementContext<?, ?, ?>> alreadyChecked) {
143         final V potentialLocal = super.getFromLocalStorage(type, key);
144         if (potentialLocal != null) {
145             return potentialLocal;
146         }
147
148         alreadyChecked.add(this);
149         for (final RootStatementContext<?, ?, ?> includedSource : includedContexts) {
150             if (alreadyChecked.contains(includedSource)) {
151                 continue;
152             }
153             final V potential = includedSource.getFromLocalStorage(type, key, alreadyChecked);
154             if (potential != null) {
155                 return potential;
156             }
157         }
158         return null;
159     }
160
161     @Override
162     public <K, V, N extends IdentifierNamespace<K, V>> Map<K, V> getAllFromLocalStorage(final Class<N> type) {
163         return getAllFromLocalStorage(type, new HashSet<>());
164     }
165
166     /*
167      * We need to track already checked RootStatementContexts due to possible
168      * circular chains of includes between submodules
169      */
170     private <K, V, N extends IdentifierNamespace<K, V>> @Nullable Map<K, V> getAllFromLocalStorage(final Class<N> type,
171             final HashSet<RootStatementContext<?, ?, ?>> alreadyChecked) {
172         final Map<K, V> potentialLocal = super.getAllFromLocalStorage(type);
173         if (potentialLocal != null) {
174             return potentialLocal;
175         }
176
177         alreadyChecked.add(this);
178         for (final RootStatementContext<?, ?, ?> includedSource : includedContexts) {
179             if (alreadyChecked.contains(includedSource)) {
180                 continue;
181             }
182             final Map<K, V> potential = includedSource.getAllFromLocalStorage(type, alreadyChecked);
183             if (potential != null) {
184                 return potential;
185             }
186         }
187         return null;
188     }
189
190     /**
191      * Return the set of required sources.
192      *
193      * @return Required sources.
194      */
195     Collection<SourceIdentifier> getRequiredSources() {
196         return ImmutableSet.copyOf(requiredSources);
197     }
198
199     SourceIdentifier getRootIdentifier() {
200         return rootIdentifier;
201     }
202
203     @Override
204     protected boolean isIgnoringIfFeatures() {
205         return false;
206     }
207
208     @Override
209     protected boolean isIgnoringConfig() {
210         return false;
211     }
212
213     @Override
214     protected boolean isParentSupportedByFeatures() {
215         return true;
216     }
217
218     void setRootIdentifierImpl(final SourceIdentifier identifier) {
219         this.rootIdentifier = requireNonNull(identifier);
220     }
221
222     @NonNull Registry getBehaviourRegistryImpl() {
223         return sourceContext;
224     }
225
226     boolean isEnabledSemanticVersioningImpl() {
227         return sourceContext.globalContext().isEnabledSemanticVersioning();
228     }
229
230     @NonNull YangVersion getRootVersionImpl() {
231         return rootVersion == null ? DEFAULT_VERSION : rootVersion;
232     }
233
234     void setRootVersionImpl(final YangVersion version) {
235         checkArgument(sourceContext.globalContext().getSupportedVersions().contains(version),
236                 "Unsupported yang version %s in %s", version, getStatementSourceReference());
237         checkState(this.rootVersion == null, "Version of root %s has been already set to %s", argument,
238                 this.rootVersion);
239         this.rootVersion = requireNonNull(version);
240     }
241
242     void addMutableStmtToSealImpl(final MutableStatement mutableStatement) {
243         sourceContext.globalContext().addMutableStmtToSeal(mutableStatement);
244     }
245
246     void addRequiredSourceImpl(final SourceIdentifier dependency) {
247         checkState(sourceContext.getInProgressPhase() == ModelProcessingPhase.SOURCE_PRE_LINKAGE,
248                 "Add required module is allowed only in ModelProcessingPhase.SOURCE_PRE_LINKAGE phase");
249         if (requiredSources.isEmpty()) {
250             requiredSources = new HashSet<>();
251         }
252         requiredSources.add(dependency);
253     }
254
255     @Override
256     StatementContextBase<A, D, E> reparent(final StatementContextBase<?, ?, ?> newParent) {
257         throw new UnsupportedOperationException("Root statement cannot be reparented to" + newParent);
258     }
259 }