Propagate @Nonnull and @Nullable annotations
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / AbstractEffectiveModule.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.rfc6020.effective;
9
10 import com.google.common.collect.ImmutableList;
11 import com.google.common.collect.ImmutableMap;
12 import com.google.common.collect.ImmutableSet;
13 import java.net.URI;
14 import java.util.ArrayList;
15 import java.util.Collection;
16 import java.util.Date;
17 import java.util.HashSet;
18 import java.util.LinkedHashMap;
19 import java.util.LinkedHashSet;
20 import java.util.List;
21 import java.util.Map;
22 import java.util.Set;
23 import javax.annotation.Nonnull;
24 import org.opendaylight.yangtools.concepts.Immutable;
25 import org.opendaylight.yangtools.concepts.SemVer;
26 import org.opendaylight.yangtools.yang.common.QName;
27 import org.opendaylight.yangtools.yang.common.QNameModule;
28 import org.opendaylight.yangtools.yang.common.SimpleDateFormatUtil;
29 import org.opendaylight.yangtools.yang.model.api.AugmentationSchema;
30 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
31 import org.opendaylight.yangtools.yang.model.api.Deviation;
32 import org.opendaylight.yangtools.yang.model.api.ExtensionDefinition;
33 import org.opendaylight.yangtools.yang.model.api.FeatureDefinition;
34 import org.opendaylight.yangtools.yang.model.api.GroupingDefinition;
35 import org.opendaylight.yangtools.yang.model.api.IdentitySchemaNode;
36 import org.opendaylight.yangtools.yang.model.api.Module;
37 import org.opendaylight.yangtools.yang.model.api.ModuleIdentifier;
38 import org.opendaylight.yangtools.yang.model.api.ModuleImport;
39 import org.opendaylight.yangtools.yang.model.api.NotificationDefinition;
40 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
41 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
42 import org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode;
43 import org.opendaylight.yangtools.yang.model.api.UsesNode;
44 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
45 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
46 import org.opendaylight.yangtools.yang.model.api.stmt.SubmoduleStatement;
47 import org.opendaylight.yangtools.yang.parser.spi.SubmoduleNamespace;
48 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
49 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext.Mutable;
50 import org.opendaylight.yangtools.yang.parser.spi.source.DeclarationInTextSource;
51 import org.opendaylight.yangtools.yang.parser.spi.source.IncludedSubmoduleNameToIdentifier;
52 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.Utils;
53
54 abstract class AbstractEffectiveModule<D extends DeclaredStatement<String>> extends
55         AbstractEffectiveDocumentedNode<String, D> implements Module, Immutable {
56
57     private final String name;
58     private final String sourcePath;
59     private final String prefix;
60     private final String yangVersion;
61     private final String organization;
62     private final String contact;
63     private final Set<ModuleImport> imports;
64     private final Set<Module> submodules;
65     private final Set<FeatureDefinition> features;
66     private final Set<NotificationDefinition> notifications;
67     private final Set<AugmentationSchema> augmentations;
68     private final Set<RpcDefinition> rpcs;
69     private final Set<Deviation> deviations;
70     private final List<ExtensionDefinition> extensionNodes;
71     private final Set<IdentitySchemaNode> identities;
72     private final List<UnknownSchemaNode> unknownNodes;
73     private final Map<QName, DataSchemaNode> childNodes;
74     private final Set<GroupingDefinition> groupings;
75     private final Set<UsesNode> uses;
76     private final Set<TypeDefinition<?>> typeDefinitions;
77     private final Set<DataSchemaNode> publicChildNodes;
78     private final SemVer semanticVersion;
79
80     AbstractEffectiveModule(final StmtContext<String, D, ? extends EffectiveStatement<String, ?>> ctx) {
81         super(ctx);
82
83         this.name = argument();
84
85         PrefixEffectiveStatementImpl prefixStmt = firstEffective(PrefixEffectiveStatementImpl.class);
86         this.prefix = (prefixStmt == null) ? null : prefixStmt.argument();
87
88         YangVersionEffectiveStatementImpl yangVersionStmt = firstEffective(YangVersionEffectiveStatementImpl.class);
89         this.yangVersion = (yangVersionStmt == null) ? "1" : yangVersionStmt.argument();
90
91         SemanticVersionEffectiveStatementImpl semanticVersionStmt = firstEffective(SemanticVersionEffectiveStatementImpl.class);
92         this.semanticVersion = (semanticVersionStmt == null) ? DEFAULT_SEMANTIC_VERSION : semanticVersionStmt.argument();
93
94         OrganizationEffectiveStatementImpl organizationStmt = firstEffective(OrganizationEffectiveStatementImpl.class);
95         this.organization = (organizationStmt == null) ? null : organizationStmt.argument();
96
97         ContactEffectiveStatementImpl contactStmt = firstEffective(ContactEffectiveStatementImpl.class);
98         this.contact = (contactStmt == null) ? null : contactStmt.argument();
99
100         if (ctx.getStatementSourceReference() instanceof DeclarationInTextSource) {
101             this.sourcePath = ((DeclarationInTextSource) ctx.getStatementSourceReference()).getSourceName();
102         } else {
103             this.sourcePath = null;
104         }
105
106         // init submodules and substatements of submodules
107         final List<EffectiveStatement<?, ?>> substatementsOfSubmodules;
108         final Map<String, ModuleIdentifier> includedSubmodulesMap = ctx
109                 .getAllFromCurrentStmtCtxNamespace(IncludedSubmoduleNameToIdentifier.class);
110
111         if (includedSubmodulesMap == null || includedSubmodulesMap.isEmpty()) {
112             this.submodules = ImmutableSet.of();
113             substatementsOfSubmodules = ImmutableList.of();
114         } else {
115             Collection<ModuleIdentifier> includedSubmodules = includedSubmodulesMap.values();
116             Set<Module> submodulesInit = new HashSet<>();
117             List<EffectiveStatement<?, ?>> substatementsOfSubmodulesInit = new ArrayList<>();
118             for (ModuleIdentifier submoduleIdentifier : includedSubmodules) {
119                 @SuppressWarnings("unchecked")
120                 Mutable<String, SubmoduleStatement, EffectiveStatement<String, SubmoduleStatement>> submoduleCtx =
121                     (Mutable<String, SubmoduleStatement, EffectiveStatement<String, SubmoduleStatement>>)
122                         ctx.getFromNamespace(SubmoduleNamespace.class, submoduleIdentifier);
123                 SubmoduleEffectiveStatementImpl submodule = (SubmoduleEffectiveStatementImpl) submoduleCtx
124                         .buildEffective();
125                 submodulesInit.add(submodule);
126                 substatementsOfSubmodulesInit.addAll(submodule.effectiveSubstatements());
127             }
128
129             this.submodules = ImmutableSet.copyOf(submodulesInit);
130             substatementsOfSubmodules = ImmutableList.copyOf(substatementsOfSubmodulesInit);
131         }
132
133         // init substatements collections
134         List<EffectiveStatement<?, ?>> effectiveSubstatements = new ArrayList<>();
135         effectiveSubstatements.addAll(effectiveSubstatements());
136         effectiveSubstatements.addAll(substatementsOfSubmodules);
137
138         List<UnknownSchemaNode> unknownNodesInit = new ArrayList<>();
139         Set<AugmentationSchema> augmentationsInit = new LinkedHashSet<>();
140         Set<ModuleImport> importsInit = new HashSet<>();
141         Set<NotificationDefinition> notificationsInit = new HashSet<>();
142         Set<RpcDefinition> rpcsInit = new HashSet<>();
143         Set<Deviation> deviationsInit = new HashSet<>();
144         Set<IdentitySchemaNode> identitiesInit = new HashSet<>();
145         Set<FeatureDefinition> featuresInit = new HashSet<>();
146         List<ExtensionDefinition> extensionNodesInit = new ArrayList<>();
147
148         Map<QName, DataSchemaNode> mutableChildNodes = new LinkedHashMap<>();
149         Set<GroupingDefinition> mutableGroupings = new HashSet<>();
150         Set<UsesNode> mutableUses = new HashSet<>();
151         Set<TypeDefinition<?>> mutableTypeDefinitions = new LinkedHashSet<>();
152         Set<DataSchemaNode> mutablePublicChildNodes = new LinkedHashSet<>();
153
154         for (EffectiveStatement<?, ?> effectiveStatement : effectiveSubstatements) {
155             if (effectiveStatement instanceof UnknownSchemaNode) {
156                 unknownNodesInit.add((UnknownSchemaNode) effectiveStatement);
157             }
158             if (effectiveStatement instanceof AugmentationSchema) {
159                 augmentationsInit.add((AugmentationSchema) effectiveStatement);
160             }
161             if (effectiveStatement instanceof ModuleImport) {
162                 importsInit.add((ModuleImport) effectiveStatement);
163             }
164             if (effectiveStatement instanceof NotificationDefinition) {
165                 notificationsInit.add((NotificationDefinition) effectiveStatement);
166             }
167             if (effectiveStatement instanceof RpcDefinition) {
168                 rpcsInit.add((RpcDefinition) effectiveStatement);
169             }
170             if (effectiveStatement instanceof Deviation) {
171                 deviationsInit.add((Deviation) effectiveStatement);
172             }
173             if (effectiveStatement instanceof IdentitySchemaNode) {
174                 identitiesInit.add((IdentitySchemaNode) effectiveStatement);
175             }
176             if (effectiveStatement instanceof FeatureDefinition) {
177                 featuresInit.add((FeatureDefinition) effectiveStatement);
178             }
179             if (effectiveStatement instanceof ExtensionEffectiveStatementImpl) {
180                 extensionNodesInit.add((ExtensionEffectiveStatementImpl) effectiveStatement);
181             }
182             if (effectiveStatement instanceof DataSchemaNode) {
183                 DataSchemaNode dataSchemaNode = (DataSchemaNode) effectiveStatement;
184                 if (!mutableChildNodes.containsKey(dataSchemaNode.getQName())) {
185                     mutableChildNodes.put(dataSchemaNode.getQName(), dataSchemaNode);
186                     mutablePublicChildNodes.add(dataSchemaNode);
187                 } else {
188                     throw EffectiveStmtUtils.createNameCollisionSourceException(ctx, effectiveStatement);
189                 }
190             }
191             if (effectiveStatement instanceof UsesNode) {
192                 UsesNode usesNode = (UsesNode) effectiveStatement;
193                 if (!mutableUses.contains(usesNode)) {
194                     mutableUses.add(usesNode);
195                 } else {
196                     throw EffectiveStmtUtils.createNameCollisionSourceException(ctx, effectiveStatement);
197                 }
198             }
199             if (effectiveStatement instanceof TypeDefEffectiveStatementImpl) {
200                 TypeDefEffectiveStatementImpl typeDef = (TypeDefEffectiveStatementImpl) effectiveStatement;
201                 TypeDefinition<?> type = typeDef.getTypeDefinition();
202                 if (!mutableTypeDefinitions.contains(type)) {
203                     mutableTypeDefinitions.add(type);
204                 } else {
205                     throw EffectiveStmtUtils.createNameCollisionSourceException(ctx, effectiveStatement);
206                 }
207             }
208             if (effectiveStatement instanceof GroupingDefinition) {
209                 GroupingDefinition grp = (GroupingDefinition) effectiveStatement;
210                 if (!mutableGroupings.contains(grp)) {
211                     mutableGroupings.add(grp);
212                 } else {
213                     throw EffectiveStmtUtils.createNameCollisionSourceException(ctx, effectiveStatement);
214                 }
215             }
216         }
217
218         this.unknownNodes = ImmutableList.copyOf(unknownNodesInit);
219         this.augmentations = ImmutableSet.copyOf(augmentationsInit);
220         if (ctx.isEnabledSemanticVersioning()) {
221             this.imports = ImmutableSet.copyOf(importsInit);
222         } else {
223             this.imports = ImmutableSet.copyOf(resolveModuleImports(importsInit, ctx));
224         }
225         this.notifications = ImmutableSet.copyOf(notificationsInit);
226         this.rpcs = ImmutableSet.copyOf(rpcsInit);
227         this.deviations = ImmutableSet.copyOf(deviationsInit);
228         this.identities = ImmutableSet.copyOf(identitiesInit);
229         this.features = ImmutableSet.copyOf(featuresInit);
230         this.extensionNodes = ImmutableList.copyOf(extensionNodesInit);
231
232         this.childNodes = ImmutableMap.copyOf(mutableChildNodes);
233         this.groupings = ImmutableSet.copyOf(mutableGroupings);
234         this.publicChildNodes = ImmutableSet.copyOf(mutablePublicChildNodes);
235         this.typeDefinitions = ImmutableSet.copyOf(mutableTypeDefinitions);
236         this.uses = ImmutableSet.copyOf(mutableUses);
237
238     }
239
240     private static Set<ModuleImport> resolveModuleImports(final Set<ModuleImport> importsInit,
241             final StmtContext<String, ? extends DeclaredStatement<String>, ? extends EffectiveStatement<String, ?>> ctx) {
242         final Set<ModuleImport> resolvedModuleImports = new LinkedHashSet<>();
243         for (ModuleImport moduleImport : importsInit) {
244             if (moduleImport.getRevision().equals(SimpleDateFormatUtil.DEFAULT_DATE_IMP)) {
245                 final QNameModule impModuleQName = Utils.getModuleQNameByPrefix(ctx, moduleImport.getPrefix());
246                 final ModuleImport resolvedModuleImport = new ModuleImportImpl(moduleImport.getModuleName(),
247                         impModuleQName.getRevision(), moduleImport.getPrefix());
248                 resolvedModuleImports.add(resolvedModuleImport);
249             } else {
250                 resolvedModuleImports.add(moduleImport);
251             }
252         }
253         return resolvedModuleImports;
254     }
255
256     @Override
257     public String getModuleSourcePath() {
258         return sourcePath;
259     }
260
261     @Override
262     public String getSource() {
263         return null;
264     }
265
266     @Override
267     public URI getNamespace() {
268         return getQNameModule().getNamespace();
269     }
270
271     @Override
272     public String getName() {
273         return name;
274     }
275
276     @Override
277     public Date getRevision() {
278         return getQNameModule().getRevision();
279     }
280
281     @Override
282     public String getPrefix() {
283         return prefix;
284     }
285
286     @Override
287     public String getYangVersion() {
288         return yangVersion;
289     }
290
291     @Override
292     public String getOrganization() {
293         return organization;
294     }
295
296     @Override
297     public String getContact() {
298         return contact;
299     }
300
301     @Override
302     public Set<ModuleImport> getImports() {
303         return imports;
304     }
305
306     @Override
307     public Set<Module> getSubmodules() {
308         return submodules;
309     }
310
311     @Override
312     public Set<FeatureDefinition> getFeatures() {
313         return features;
314     }
315
316     @Override
317     public Set<NotificationDefinition> getNotifications() {
318         return notifications;
319     }
320
321     @Override
322     public Set<AugmentationSchema> getAugmentations() {
323         return augmentations;
324     }
325
326     @Override
327     public Set<RpcDefinition> getRpcs() {
328         return rpcs;
329     }
330
331     @Override
332     public Set<Deviation> getDeviations() {
333         return deviations;
334     }
335
336     @Override
337     public List<ExtensionDefinition> getExtensionSchemaNodes() {
338         return extensionNodes;
339     }
340
341     @Override
342     public Set<IdentitySchemaNode> getIdentities() {
343         return identities;
344     }
345
346     @Nonnull
347     @Override
348     public List<UnknownSchemaNode> getUnknownSchemaNodes() {
349         return unknownNodes;
350     }
351
352     @Override
353     public final Set<TypeDefinition<?>> getTypeDefinitions() {
354         return typeDefinitions;
355     }
356
357     @Override
358     public final Set<DataSchemaNode> getChildNodes() {
359         return publicChildNodes;
360     }
361
362     @Override
363     public final Set<GroupingDefinition> getGroupings() {
364         return groupings;
365     }
366
367     @Override
368     public final DataSchemaNode getDataChildByName(final QName name) {
369         // Child nodes are keyed by their container name, so we can do a direct
370         // lookup
371         return childNodes.get(name);
372     }
373
374     @Override
375     public Set<UsesNode> getUses() {
376         return uses;
377     }
378
379     @Override
380     public SemVer getSemanticVersion() {
381         return semanticVersion;
382     }
383
384     @Override
385     public String toString() {
386         return this.getClass().getSimpleName() + "[" +
387                 "name=" + name +
388                 ", namespace=" + getNamespace() +
389                 ", revision=" + getRevision() +
390                 ", prefix=" + prefix +
391                 ", yangVersion=" + yangVersion +
392                 "]";
393     }
394
395 }