blob: 16348e5bbf5f2cf441a9266ccea111217cf2e58f [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 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530214 * Creates a YANG node of module type.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530215 */
216 public YangModule() {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530217
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530218 super(YangNodeType.MODULE_NODE);
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530219 derivedTypeResolutionList = new LinkedList<>();
220 usesResolutionList = new LinkedList<>();
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530221 ifFeatureResolutionList = new LinkedList<>();
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530222 importList = new LinkedList<YangImport>();
223 includeList = new LinkedList<YangInclude>();
224 listOfLeaf = new LinkedList<YangLeaf>();
225 listOfLeafList = new LinkedList<YangLeafList>();
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530226 }
227
Vinod Kumar S71cba682016-02-25 15:52:16 +0530228 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530229 * Returns name of the module.
Vinod Kumar S71cba682016-02-25 15:52:16 +0530230 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530231 * @return module name
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530232 */
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530233 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530234 public String getName() {
235 return name;
236 }
237
Vinod Kumar S71cba682016-02-25 15:52:16 +0530238 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530239 * Sets module name.
Vinod Kumar S71cba682016-02-25 15:52:16 +0530240 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530241 * @param moduleName module name
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530242 */
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530243 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530244 public void setName(String moduleName) {
245 name = moduleName;
246 }
247
248 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530249 * Returns the contact details of the module owner.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530250 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530251 * @return the contact details of YANG owner
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530252 */
253 public String getContact() {
254 return contact;
255 }
256
257 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530258 * Sets the contact details of the module owner.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530259 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530260 * @param contact the contact details of YANG owner
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530261 */
262 public void setContact(String contact) {
263 this.contact = contact;
264 }
265
266 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530267 * Returns the description of module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530268 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530269 * @return the description of YANG module
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530270 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530271 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530272 public String getDescription() {
273 return description;
274 }
275
276 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530277 * Sets the description of module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530278 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530279 * @param description set the description of YANG module
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530280 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530281 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530282 public void setDescription(String description) {
283 this.description = description;
284 }
285
286 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530287 * Returns the list of imported modules.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530288 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530289 * @return the list of imported modules
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530290 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530291 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530292 public List<YangImport> getImportList() {
293 return importList;
294 }
295
296 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530297 * Adds the imported module information to the import list.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530298 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530299 * @param importedModule module being imported
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530300 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530301 @Override
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530302 public void addToImportList(YangImport importedModule) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530303 getImportList().add(importedModule);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530304 }
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530305
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530306 @Override
307 public void setImportList(List<YangImport> importList) {
308 this.importList = importList;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530309 }
310
311 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530312 * Returns the list of included sub modules.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530313 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530314 * @return the included list of sub modules
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530315 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530316 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530317 public List<YangInclude> getIncludeList() {
318 return includeList;
319 }
320
321 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530322 * Adds the included sub module information to the include list.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530323 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530324 * @param includeModule submodule being included
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530325 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530326 @Override
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530327 public void addToIncludeList(YangInclude includeModule) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530328 getIncludeList().add(includeModule);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530329 }
330
331 @Override
332 public void setIncludeList(List<YangInclude> includeList) {
333 this.includeList = includeList;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530334 }
335
336 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530337 * Returns the list of leaves in module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530338 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530339 * @return the list of leaves
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530340 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530341 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530342 public List<YangLeaf> getListOfLeaf() {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530343 return listOfLeaf;
344 }
345
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530346 @Override
347 public void setListOfLeaf(List<YangLeaf> leafsList) {
348 listOfLeaf = leafsList;
349 }
350
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530351 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530352 * Adds a leaf in module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530353 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530354 * @param leaf the leaf to be added
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530355 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530356 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530357 public void addLeaf(YangLeaf leaf) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530358 getListOfLeaf().add(leaf);
359 }
360
361 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530362 * Returns the list of leaf-list from module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530363 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530364 * @return the list of leaf-list
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530365 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530366 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530367 public List<YangLeafList> getListOfLeafList() {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530368 return listOfLeafList;
369 }
370
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530371 @Override
372 public void setListOfLeafList(List<YangLeafList> listOfLeafList) {
373 this.listOfLeafList = listOfLeafList;
374 }
375
376
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530377 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530378 * Adds a leaf-list in module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530379 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530380 * @param leafList the leaf-list to be added
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530381 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530382 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530383 public void addLeafList(YangLeafList leafList) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530384 getListOfLeafList().add(leafList);
385 }
386
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530387 @Override
388 public List<YangFeature> getFeatureList() {
389 return listOfFeature;
390 }
391
392 @Override
393 public void addFeatureList(YangFeature feature) {
394 if (getFeatureList() == null) {
395 setListOfFeature(new LinkedList<>());
396 }
397 getFeatureList().add(feature);
398 }
399
400 @Override
401 public void setListOfFeature(List<YangFeature> listOfFeature) {
402 this.listOfFeature = listOfFeature;
403 }
404
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530405 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530406 * Returns the name space of module elements.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530407 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530408 * @return the nameSpace
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530409 */
410 public YangNameSpace getNameSpace() {
411 return nameSpace;
412 }
413
414 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530415 * Sets the name space of module elements.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530416 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530417 * @param nameSpace the nameSpace to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530418 */
419 public void setNameSpace(YangNameSpace nameSpace) {
420 this.nameSpace = nameSpace;
421 }
422
423 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530424 * Returns the modules organization.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530425 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530426 * @return the organization
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530427 */
428 public String getOrganization() {
429 return organization;
430 }
431
432 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530433 * Sets the modules organization.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530434 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530435 * @param org the organization to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530436 */
437 public void setOrganization(String org) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530438 organization = org;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530439 }
440
441 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530442 * Returns the prefix.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530443 *
444 * @return the prefix
445 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530446 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530447 public String getPrefix() {
448 return prefix;
449 }
450
451 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530452 * Sets the prefix.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530453 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530454 * @param prefix the prefix to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530455 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530456 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530457 public void setPrefix(String prefix) {
458 this.prefix = prefix;
459 }
460
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530461 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530462 public void resolveSelfFileLinking(ResolvableType type)
463 throws DataModelException {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530464 // Get the list to be resolved.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530465 List<YangResolutionInfo> resolutionList = getUnresolvedResolutionList(type);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530466 // Resolve linking for a resolution list.
467 resolveLinkingForResolutionList(resolutionList, this);
468 }
469
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530470 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530471 public void resolveInterFileLinking(ResolvableType type)
472 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530473 // Get the list to be resolved.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530474 List<YangResolutionInfo> resolutionList = getUnresolvedResolutionList(type);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530475 // Resolve linking for a resolution list.
476 linkInterFileReferences(resolutionList, this);
477 }
478
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530479 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530480 * Returns the textual reference.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530481 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530482 * @return the reference
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530483 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530484 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530485 public String getReference() {
486 return reference;
487 }
488
489 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530490 * Sets the textual reference.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530491 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530492 * @param reference the reference to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530493 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530494 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530495 public void setReference(String reference) {
496 this.reference = reference;
497 }
498
499 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530500 * Returns the revision.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530501 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530502 * @return the revision
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530503 */
504 public YangRevision getRevision() {
505 return revision;
506 }
507
508 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530509 * Sets the revision.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530510 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530511 * @param revision the revision to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530512 */
513 public void setRevision(YangRevision revision) {
514 this.revision = revision;
515 }
516
517 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530518 * Returns the version.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530519 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530520 * @return the version
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530521 */
522 public byte getVersion() {
523 return version;
524 }
525
526 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530527 * Sets the version.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530528 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530529 * @param version the version to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530530 */
531 public void setVersion(byte version) {
532 this.version = version;
533 }
534
535 /**
536 * Returns the type of the parsed data.
537 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530538 * @return returns MODULE_DATA
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530539 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530540 @Override
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530541 public YangConstructType getYangConstructType() {
542 return YangConstructType.MODULE_DATA;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530543 }
544
545 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530546 * Validates the data on entering the corresponding parse tree node.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530547 *
548 * @throws DataModelException a violation of data model rules
549 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530550 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530551 public void validateDataOnEntry()
552 throws DataModelException {
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530553 /*
554 * Module is root in the data model tree, hence there is no entry
555 * validation
556 */
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530557 }
558
559 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530560 * Validates the data on exiting the corresponding parse tree node.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530561 *
562 * @throws DataModelException a violation of data model rules
563 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530564 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530565 public void validateDataOnExit()
566 throws DataModelException {
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530567 /*
568 * TODO: perform symbol linking for the imported or included YANG info.
569 * TODO: perform symbol resolution for referred YANG entities.
570 */
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530571 }
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530572
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530573 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530574 public void detectCollidingChild(String identifierName, YangConstructType dataType)
575 throws DataModelException {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530576 // Asks helper to detect colliding child.
577 detectCollidingChildUtil(identifierName, dataType, this);
578 }
579
580 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530581 public void detectSelfCollision(String identifierName, YangConstructType dataType)
582 throws DataModelException {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530583 // Not required as module doesn't have any parent.
584 }
Vinod Kumar S38046502016-03-23 15:30:27 +0530585
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530586 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530587 public List<YangResolutionInfo> getUnresolvedResolutionList(ResolvableType type) {
588 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
589 return derivedTypeResolutionList;
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530590 } else if (type == ResolvableType.YANG_USES) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530591 return usesResolutionList;
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530592 } else {
593 return ifFeatureResolutionList;
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530594 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530595 }
596
597 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530598 public void addToResolutionList(YangResolutionInfo resolutionInfo,
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530599 ResolvableType type) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530600 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
601 derivedTypeResolutionList.add(resolutionInfo);
602 } else if (type == ResolvableType.YANG_USES) {
603 usesResolutionList.add(resolutionInfo);
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530604 } else if (type == ResolvableType.YANG_IF_FEATURE) {
605 ifFeatureResolutionList.add(resolutionInfo);
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530606 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530607 }
608
609 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530610 public void setResolutionList(List<YangResolutionInfo> resolutionList,
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530611 ResolvableType type) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530612 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
613 derivedTypeResolutionList = resolutionList;
614 } else if (type == ResolvableType.YANG_USES) {
615 usesResolutionList = resolutionList;
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530616 } else if (type == ResolvableType.YANG_IF_FEATURE) {
617 ifFeatureResolutionList.add((YangResolutionInfo) resolutionList);
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530618 }
619
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530620 }
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530621
622 @Override
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530623 public void addReferencesToImportList(Set<YangNode> yangNodeSet)
624 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530625 Iterator<YangImport> importInfoIterator = getImportList().iterator();
626 // Run through the imported list to add references.
627 while (importInfoIterator.hasNext()) {
628 YangImport yangImport = importInfoIterator.next();
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530629 yangImport.addReferenceToImport(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530630 }
631 }
632
633 @Override
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530634 public void addReferencesToIncludeList(Set<YangNode> yangNodeSet)
635 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530636 Iterator<YangInclude> includeInfoIterator = getIncludeList().iterator();
637 // Run through the included list to add references.
638 while (includeInfoIterator.hasNext()) {
639 YangInclude yangInclude = includeInfoIterator.next();
640 YangSubModule subModule = null;
641 try {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530642 subModule = yangInclude.addReferenceToInclude(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530643 } catch (DataModelException e) {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530644 throw e;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530645 }
646 // Check if the referred sub-modules parent is self
647 if (!(subModule.getBelongsTo().getModuleNode() == this)) {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530648 yangInclude.reportIncludeError();
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530649 }
650 }
651 }
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530652}