blob: ec25d65aad80e9e00a89921e62c2be07f6d33383 [file] [log] [blame]
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +05303 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.yangutils.datamodel;
17
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053018import java.util.Iterator;
Bharat saraswal2f00b4b2016-03-04 20:08:09 +053019import java.util.LinkedList;
20import java.util.List;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053021import java.util.Set;
Bharat saraswal96dfef02016-06-16 00:29:12 +053022
Bharat saraswal2f00b4b2016-03-04 20:08:09 +053023import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
Bharat saraswal96dfef02016-06-16 00:29:12 +053024import org.onosproject.yangutils.datamodel.utils.Parsable;
25import org.onosproject.yangutils.datamodel.utils.YangConstructType;
Vinod Kumar S38046502016-03-23 15:30:27 +053026
27import static org.onosproject.yangutils.datamodel.utils.DataModelUtils.detectCollidingChildUtil;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053028import static org.onosproject.yangutils.datamodel.utils.DataModelUtils.linkInterFileReferences;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053029import static org.onosproject.yangutils.datamodel.utils.DataModelUtils.resolveLinkingForResolutionList;
Vinod Kumar S67e7be62016-02-11 20:13:28 +053030
31/*-
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +053032 * Reference:RFC 6020.
33 * The "module" statement defines the module's name,
34 * and groups all statements that belong to the module together. The "module"
35 * statement's argument is the name of the module, followed by a block of
36 * sub statements that hold detailed module information.
37 * The module's sub statements
38 *
39 * +--------------+---------+-------------+-----------------------+
40 * |sub statement | section | cardinality | data model mapping |
41 * +--------------+---------+-------------+-----------------------+
42 * | anyxml | 7.10 | 0..n | not supported |
43 * | augment | 7.15 | 0..n | child nodes |
44 * | choice | 7.9 | 0..n | child nodes |
45 * | contact | 7.1.8 | 0..1 | string |
46 * | container | 7.5 | 0..n | child nodes |
47 * | description | 7.19.3 | 0..1 | string |
48 * | deviation | 7.18.3 | 0..n | TODO |
49 * | extension | 7.17 | 0..n | TODO |
50 * | feature | 7.18.1 | 0..n | TODO |
51 * | grouping | 7.11 | 0..n | child nodes |
52 * | identity | 7.16 | 0..n | TODO |
53 * | import | 7.1.5 | 0..n | list of import info |
54 * | include | 7.1.6 | 0..n | list of include info |
55 * | leaf | 7.6 | 0..n | list of leaf info |
56 * | leaf-list | 7.7 | 0..n | list of leaf-list info|
57 * | list | 7.8 | 0..n | child nodes |
58 * | namespace | 7.1.3 | 1 | string/uri |
59 * | notification | 7.14 | 0..n | TODO |
60 * | organization | 7.1.7 | 0..1 | string |
61 * | prefix | 7.1.4 | 1 | string |
62 * | reference | 7.19.4 | 0..1 | string |
63 * | revision | 7.1.9 | 0..n | revision |
64 * | rpc | 7.13 | 0..n | TODO |
65 * | typedef | 7.3 | 0..n | child nodes |
66 * | uses | 7.12 | 0..n | child nodes |
67 * | YANG-version | 7.1.2 | 0..1 | int |
68 * +--------------+---------+-------------+-----------------------+
69 */
70
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +053071/**
Bharat saraswald9822e92016-04-05 15:13:44 +053072 * Represents data model node to maintain information defined in YANG module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +053073 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053074public class YangModule
75 extends YangNode
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053076 implements YangLeavesHolder, YangDesc, YangReference, Parsable, CollisionDetector, YangReferenceResolver,
Vidyashree Ramadeac28b2016-06-20 15:12:43 +053077 RpcNotificationContainer, YangFeatureHolder {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +053078
Bharat saraswal96dfef02016-06-16 00:29:12 +053079 private static final long serialVersionUID = 806201610L;
80
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +053081 /**
82 * Name of the module.
83 */
84 private String name;
85
86 /**
87 * Reference:RFC 6020.
Vidyashree Ramadeac28b2016-06-20 15:12:43 +053088 *
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +053089 * The "contact" statement provides contact information for the module. The
90 * argument is a string that is used to specify contact information for the
91 * person or persons to whom technical queries concerning this module should
92 * be sent, such as their name, postal address, telephone number, and
93 * electronic mail address.
94 */
95 private String contact;
96
97 /**
98 * Reference:RFC 6020.
Vidyashree Ramadeac28b2016-06-20 15:12:43 +053099 *
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530100 * The "description" statement takes as an argument a string that contains a
101 * human-readable textual description of this definition. The text is
102 * provided in a language (or languages) chosen by the module developer; for
103 * the sake of interoperability.
104 */
105 private String description;
106
107 /**
108 * List of YANG modules imported.
109 */
110 private List<YangImport> importList;
111
112 /**
113 * List of YANG sub-modules included.
114 */
115 private List<YangInclude> includeList;
116
117 /**
118 * List of leaves at root level in the module.
119 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530120 private List<YangLeaf> listOfLeaf;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530121
122 /**
123 * List of leaf-lists at root level in the module.
124 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530125 private List<YangLeafList> listOfLeafList;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530126
127 /**
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530128 * List of feature at root level in the module.
129 */
130 private List<YangFeature> listOfFeature;
131
132 /**
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530133 * Name space of the module.
134 */
135 private YangNameSpace nameSpace;
136
137 /**
138 * Reference:RFC 6020.
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530139 *
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530140 * The "organization" statement defines the party responsible for this
141 * module. The argument is a string that is used to specify a textual
142 * description of the organization(s) under whose auspices this module was
143 * developed.
144 */
145 private String organization;
146
147 /**
148 * Prefix to refer to the objects in module.
149 */
150 private String prefix;
151
152 /**
153 * Reference of the module.
154 */
155 private String reference;
156
157 /**
158 * Revision info of the module.
159 */
160 private YangRevision revision;
161
162 /**
163 * YANG version.
164 */
165 private byte version;
166
Vinod Kumar S71cba682016-02-25 15:52:16 +0530167 /*-
Vinod Kumar Sc4216002016-03-03 19:55:30 +0530168 * Reference RFC 6020.
169 *
Vinod Kumar S71cba682016-02-25 15:52:16 +0530170 * Nested typedefs and groupings.
171 * Typedefs and groupings may appear nested under many YANG statements,
172 * allowing these to be lexically scoped by the hierarchy under which
173 * they appear. This allows types and groupings to be defined near
174 * where they are used, rather than placing them at the top level of the
175 * hierarchy. The close proximity increases readability.
176 *
177 * Scoping also allows types to be defined without concern for naming
178 * conflicts between types in different submodules. Type names can be
179 * specified without adding leading strings designed to prevent name
180 * collisions within large modules.
181 *
182 * Finally, scoping allows the module author to keep types and groupings
183 * private to their module or submodule, preventing their reuse. Since
184 * only top-level types and groupings (i.e., those appearing as
185 * sub-statements to a module or submodule statement) can be used outside
186 * the module or submodule, the developer has more control over what
187 * pieces of their module are presented to the outside world, supporting
188 * the need to hide internal information and maintaining a boundary
189 * between what is shared with the outside world and what is kept
190 * private.
191 *
192 * Scoped definitions MUST NOT shadow definitions at a higher scope. A
193 * type or grouping cannot be defined if a higher level in the schema
194 * hierarchy has a definition with a matching identifier.
195 *
196 * A reference to an unprefixed type or grouping, or one which uses the
197 * prefix of the current module, is resolved by locating the closest
198 * matching "typedef" or "grouping" statement among the immediate
199 * sub-statements of each ancestor statement.
200 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530201 private List<YangResolutionInfo> derivedTypeResolutionList;
202
203 /**
204 * uses resolution list.
205 */
206 private List<YangResolutionInfo> usesResolutionList;
Vinod Kumar S71cba682016-02-25 15:52:16 +0530207
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530208 /**
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530209 * if-feature resolution list.
210 */
211 private List<YangResolutionInfo> ifFeatureResolutionList;
212
213 /**
janani be18b5342016-07-13 21:06:41 +0530214 * leafref resolution list.
215 */
216 private List<YangResolutionInfo> leafrefResolutionList;
217
218 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530219 * Creates a YANG node of module type.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530220 */
221 public YangModule() {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530222
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530223 super(YangNodeType.MODULE_NODE);
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530224 derivedTypeResolutionList = new LinkedList<>();
225 usesResolutionList = new LinkedList<>();
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530226 ifFeatureResolutionList = new LinkedList<>();
janani be18b5342016-07-13 21:06:41 +0530227 leafrefResolutionList = new LinkedList<>();
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530228 importList = new LinkedList<YangImport>();
229 includeList = new LinkedList<YangInclude>();
230 listOfLeaf = new LinkedList<YangLeaf>();
231 listOfLeafList = new LinkedList<YangLeafList>();
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530232 }
233
Vinod Kumar S71cba682016-02-25 15:52:16 +0530234 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530235 * Returns name of the module.
Vinod Kumar S71cba682016-02-25 15:52:16 +0530236 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530237 * @return module name
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530238 */
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530239 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530240 public String getName() {
241 return name;
242 }
243
Vinod Kumar S71cba682016-02-25 15:52:16 +0530244 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530245 * Sets module name.
Vinod Kumar S71cba682016-02-25 15:52:16 +0530246 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530247 * @param moduleName module name
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530248 */
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530249 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530250 public void setName(String moduleName) {
251 name = moduleName;
252 }
253
254 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530255 * Returns the contact details of the module owner.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530256 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530257 * @return the contact details of YANG owner
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530258 */
259 public String getContact() {
260 return contact;
261 }
262
263 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530264 * Sets the contact details of the module owner.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530265 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530266 * @param contact the contact details of YANG owner
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530267 */
268 public void setContact(String contact) {
269 this.contact = contact;
270 }
271
272 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530273 * Returns the description of module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530274 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530275 * @return the description of YANG module
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530276 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530277 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530278 public String getDescription() {
279 return description;
280 }
281
282 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530283 * Sets the description of module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530284 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530285 * @param description set the description of YANG module
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530286 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530287 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530288 public void setDescription(String description) {
289 this.description = description;
290 }
291
292 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530293 * Returns the list of imported modules.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530294 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530295 * @return the list of imported modules
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530296 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530297 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530298 public List<YangImport> getImportList() {
299 return importList;
300 }
301
302 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530303 * Adds the imported module information to the import list.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530304 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530305 * @param importedModule module being imported
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530306 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530307 @Override
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530308 public void addToImportList(YangImport importedModule) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530309 getImportList().add(importedModule);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530310 }
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530311
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530312 @Override
313 public void setImportList(List<YangImport> importList) {
314 this.importList = importList;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530315 }
316
317 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530318 * Returns the list of included sub modules.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530319 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530320 * @return the included list of sub modules
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530321 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530322 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530323 public List<YangInclude> getIncludeList() {
324 return includeList;
325 }
326
327 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530328 * Adds the included sub module information to the include list.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530329 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530330 * @param includeModule submodule being included
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530331 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530332 @Override
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530333 public void addToIncludeList(YangInclude includeModule) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530334 getIncludeList().add(includeModule);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530335 }
336
337 @Override
338 public void setIncludeList(List<YangInclude> includeList) {
339 this.includeList = includeList;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530340 }
341
342 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530343 * Returns the list of leaves in module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530344 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530345 * @return the list of leaves
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530346 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530347 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530348 public List<YangLeaf> getListOfLeaf() {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530349 return listOfLeaf;
350 }
351
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530352 @Override
353 public void setListOfLeaf(List<YangLeaf> leafsList) {
354 listOfLeaf = leafsList;
355 }
356
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530357 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530358 * Adds a leaf in module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530359 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530360 * @param leaf the leaf to be added
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530361 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530362 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530363 public void addLeaf(YangLeaf leaf) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530364 getListOfLeaf().add(leaf);
365 }
366
367 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530368 * Returns the list of leaf-list from module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530369 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530370 * @return the list of leaf-list
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530371 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530372 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530373 public List<YangLeafList> getListOfLeafList() {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530374 return listOfLeafList;
375 }
376
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530377 @Override
378 public void setListOfLeafList(List<YangLeafList> listOfLeafList) {
379 this.listOfLeafList = listOfLeafList;
380 }
381
382
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530383 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530384 * Adds a leaf-list in module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530385 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530386 * @param leafList the leaf-list to be added
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530387 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530388 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530389 public void addLeafList(YangLeafList leafList) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530390 getListOfLeafList().add(leafList);
391 }
392
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530393 @Override
394 public List<YangFeature> getFeatureList() {
395 return listOfFeature;
396 }
397
398 @Override
399 public void addFeatureList(YangFeature feature) {
400 if (getFeatureList() == null) {
401 setListOfFeature(new LinkedList<>());
402 }
403 getFeatureList().add(feature);
404 }
405
406 @Override
407 public void setListOfFeature(List<YangFeature> listOfFeature) {
408 this.listOfFeature = listOfFeature;
409 }
410
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530411 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530412 * Returns the name space of module elements.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530413 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530414 * @return the nameSpace
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530415 */
416 public YangNameSpace getNameSpace() {
417 return nameSpace;
418 }
419
420 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530421 * Sets the name space of module elements.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530422 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530423 * @param nameSpace the nameSpace to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530424 */
425 public void setNameSpace(YangNameSpace nameSpace) {
426 this.nameSpace = nameSpace;
427 }
428
429 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530430 * Returns the modules organization.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530431 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530432 * @return the organization
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530433 */
434 public String getOrganization() {
435 return organization;
436 }
437
438 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530439 * Sets the modules organization.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530440 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530441 * @param org the organization to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530442 */
443 public void setOrganization(String org) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530444 organization = org;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530445 }
446
447 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530448 * Returns the prefix.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530449 *
450 * @return the prefix
451 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530452 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530453 public String getPrefix() {
454 return prefix;
455 }
456
457 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530458 * Sets the prefix.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530459 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530460 * @param prefix the prefix to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530461 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530462 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530463 public void setPrefix(String prefix) {
464 this.prefix = prefix;
465 }
466
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530467 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530468 public void resolveSelfFileLinking(ResolvableType type)
469 throws DataModelException {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530470 // Get the list to be resolved.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530471 List<YangResolutionInfo> resolutionList = getUnresolvedResolutionList(type);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530472 // Resolve linking for a resolution list.
473 resolveLinkingForResolutionList(resolutionList, this);
474 }
475
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530476 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530477 public void resolveInterFileLinking(ResolvableType type)
478 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530479 // Get the list to be resolved.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530480 List<YangResolutionInfo> resolutionList = getUnresolvedResolutionList(type);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530481 // Resolve linking for a resolution list.
482 linkInterFileReferences(resolutionList, this);
483 }
484
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530485 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530486 * Returns the textual reference.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530487 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530488 * @return the reference
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530489 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530490 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530491 public String getReference() {
492 return reference;
493 }
494
495 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530496 * Sets the textual reference.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530497 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530498 * @param reference the reference to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530499 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530500 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530501 public void setReference(String reference) {
502 this.reference = reference;
503 }
504
505 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530506 * Returns the revision.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530507 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530508 * @return the revision
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530509 */
510 public YangRevision getRevision() {
511 return revision;
512 }
513
514 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530515 * Sets the revision.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530516 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530517 * @param revision the revision to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530518 */
519 public void setRevision(YangRevision revision) {
520 this.revision = revision;
521 }
522
523 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530524 * Returns the version.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530525 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530526 * @return the version
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530527 */
528 public byte getVersion() {
529 return version;
530 }
531
532 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530533 * Sets the version.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530534 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530535 * @param version the version to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530536 */
537 public void setVersion(byte version) {
538 this.version = version;
539 }
540
541 /**
542 * Returns the type of the parsed data.
543 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530544 * @return returns MODULE_DATA
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530545 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530546 @Override
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530547 public YangConstructType getYangConstructType() {
548 return YangConstructType.MODULE_DATA;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530549 }
550
551 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530552 * Validates the data on entering the corresponding parse tree node.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530553 *
554 * @throws DataModelException a violation of data model rules
555 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530556 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530557 public void validateDataOnEntry()
558 throws DataModelException {
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530559 /*
560 * Module is root in the data model tree, hence there is no entry
561 * validation
562 */
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530563 }
564
565 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530566 * Validates the data on exiting the corresponding parse tree node.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530567 *
568 * @throws DataModelException a violation of data model rules
569 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530570 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530571 public void validateDataOnExit()
572 throws DataModelException {
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530573 /*
574 * TODO: perform symbol linking for the imported or included YANG info.
575 * TODO: perform symbol resolution for referred YANG entities.
576 */
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530577 }
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530578
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530579 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530580 public void detectCollidingChild(String identifierName, YangConstructType dataType)
581 throws DataModelException {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530582 // Asks helper to detect colliding child.
583 detectCollidingChildUtil(identifierName, dataType, this);
584 }
585
586 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530587 public void detectSelfCollision(String identifierName, YangConstructType dataType)
588 throws DataModelException {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530589 // Not required as module doesn't have any parent.
590 }
Vinod Kumar S38046502016-03-23 15:30:27 +0530591
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530592 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530593 public List<YangResolutionInfo> getUnresolvedResolutionList(ResolvableType type) {
594 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
595 return derivedTypeResolutionList;
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530596 } else if (type == ResolvableType.YANG_USES) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530597 return usesResolutionList;
janani be18b5342016-07-13 21:06:41 +0530598 } else if (type == ResolvableType.YANG_IF_FEATURE) {
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530599 return ifFeatureResolutionList;
janani be18b5342016-07-13 21:06:41 +0530600 } else {
601 return leafrefResolutionList;
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530602 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530603 }
604
605 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530606 public void addToResolutionList(YangResolutionInfo resolutionInfo,
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530607 ResolvableType type) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530608 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
609 derivedTypeResolutionList.add(resolutionInfo);
610 } else if (type == ResolvableType.YANG_USES) {
611 usesResolutionList.add(resolutionInfo);
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530612 } else if (type == ResolvableType.YANG_IF_FEATURE) {
613 ifFeatureResolutionList.add(resolutionInfo);
janani be18b5342016-07-13 21:06:41 +0530614 } else {
615 leafrefResolutionList.add(resolutionInfo);
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530616 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530617 }
618
619 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530620 public void setResolutionList(List<YangResolutionInfo> resolutionList,
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530621 ResolvableType type) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530622 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
623 derivedTypeResolutionList = resolutionList;
624 } else if (type == ResolvableType.YANG_USES) {
625 usesResolutionList = resolutionList;
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530626 } else if (type == ResolvableType.YANG_IF_FEATURE) {
627 ifFeatureResolutionList.add((YangResolutionInfo) resolutionList);
janani be18b5342016-07-13 21:06:41 +0530628 } else if (type == ResolvableType.YANG_LEAFREF) {
629 leafrefResolutionList = resolutionList;
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530630 }
631
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530632 }
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530633
634 @Override
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530635 public void addReferencesToImportList(Set<YangNode> yangNodeSet)
636 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530637 Iterator<YangImport> importInfoIterator = getImportList().iterator();
638 // Run through the imported list to add references.
639 while (importInfoIterator.hasNext()) {
640 YangImport yangImport = importInfoIterator.next();
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530641 yangImport.addReferenceToImport(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530642 }
643 }
644
645 @Override
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530646 public void addReferencesToIncludeList(Set<YangNode> yangNodeSet)
647 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530648 Iterator<YangInclude> includeInfoIterator = getIncludeList().iterator();
649 // Run through the included list to add references.
650 while (includeInfoIterator.hasNext()) {
651 YangInclude yangInclude = includeInfoIterator.next();
652 YangSubModule subModule = null;
653 try {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530654 subModule = yangInclude.addReferenceToInclude(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530655 } catch (DataModelException e) {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530656 throw e;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530657 }
658 // Check if the referred sub-modules parent is self
659 if (!(subModule.getBelongsTo().getModuleNode() == this)) {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530660 yangInclude.reportIncludeError();
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530661 }
662 }
663 }
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530664}