blob: f14cfeb3a66a89fb1caf1986a3ddeae3b5bafdf7 [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,
77 RpcNotificationContainer {
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.
Gaurav Agrawal95b416c2016-06-07 14:00:26 +053088 * <p>
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.
Gaurav Agrawal95b416c2016-06-07 14:00:26 +053099 * <p>
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 /**
128 * Name space of the module.
129 */
130 private YangNameSpace nameSpace;
131
132 /**
133 * Reference:RFC 6020.
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530134 * <p>
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530135 * The "organization" statement defines the party responsible for this
136 * module. The argument is a string that is used to specify a textual
137 * description of the organization(s) under whose auspices this module was
138 * developed.
139 */
140 private String organization;
141
142 /**
143 * Prefix to refer to the objects in module.
144 */
145 private String prefix;
146
147 /**
148 * Reference of the module.
149 */
150 private String reference;
151
152 /**
153 * Revision info of the module.
154 */
155 private YangRevision revision;
156
157 /**
158 * YANG version.
159 */
160 private byte version;
161
Vinod Kumar S71cba682016-02-25 15:52:16 +0530162 /*-
Vinod Kumar Sc4216002016-03-03 19:55:30 +0530163 * Reference RFC 6020.
164 *
Vinod Kumar S71cba682016-02-25 15:52:16 +0530165 * Nested typedefs and groupings.
166 * Typedefs and groupings may appear nested under many YANG statements,
167 * allowing these to be lexically scoped by the hierarchy under which
168 * they appear. This allows types and groupings to be defined near
169 * where they are used, rather than placing them at the top level of the
170 * hierarchy. The close proximity increases readability.
171 *
172 * Scoping also allows types to be defined without concern for naming
173 * conflicts between types in different submodules. Type names can be
174 * specified without adding leading strings designed to prevent name
175 * collisions within large modules.
176 *
177 * Finally, scoping allows the module author to keep types and groupings
178 * private to their module or submodule, preventing their reuse. Since
179 * only top-level types and groupings (i.e., those appearing as
180 * sub-statements to a module or submodule statement) can be used outside
181 * the module or submodule, the developer has more control over what
182 * pieces of their module are presented to the outside world, supporting
183 * the need to hide internal information and maintaining a boundary
184 * between what is shared with the outside world and what is kept
185 * private.
186 *
187 * Scoped definitions MUST NOT shadow definitions at a higher scope. A
188 * type or grouping cannot be defined if a higher level in the schema
189 * hierarchy has a definition with a matching identifier.
190 *
191 * A reference to an unprefixed type or grouping, or one which uses the
192 * prefix of the current module, is resolved by locating the closest
193 * matching "typedef" or "grouping" statement among the immediate
194 * sub-statements of each ancestor statement.
195 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530196 private List<YangResolutionInfo> derivedTypeResolutionList;
197
198 /**
199 * uses resolution list.
200 */
201 private List<YangResolutionInfo> usesResolutionList;
Vinod Kumar S71cba682016-02-25 15:52:16 +0530202
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530203 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530204 * Creates a YANG node of module type.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530205 */
206 public YangModule() {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530207
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530208 super(YangNodeType.MODULE_NODE);
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530209 derivedTypeResolutionList = new LinkedList<>();
210 usesResolutionList = new LinkedList<>();
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530211 importList = new LinkedList<YangImport>();
212 includeList = new LinkedList<YangInclude>();
213 listOfLeaf = new LinkedList<YangLeaf>();
214 listOfLeafList = new LinkedList<YangLeafList>();
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530215 }
216
Vinod Kumar S71cba682016-02-25 15:52:16 +0530217 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530218 * Returns name of the module.
Vinod Kumar S71cba682016-02-25 15:52:16 +0530219 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530220 * @return module name
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530221 */
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530222 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530223 public String getName() {
224 return name;
225 }
226
Vinod Kumar S71cba682016-02-25 15:52:16 +0530227 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530228 * Sets module name.
Vinod Kumar S71cba682016-02-25 15:52:16 +0530229 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530230 * @param moduleName module name
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530231 */
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530232 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530233 public void setName(String moduleName) {
234 name = moduleName;
235 }
236
237 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530238 * Returns the contact details of the module owner.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530239 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530240 * @return the contact details of YANG owner
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530241 */
242 public String getContact() {
243 return contact;
244 }
245
246 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530247 * Sets the contact details of the module owner.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530248 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530249 * @param contact the contact details of YANG owner
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530250 */
251 public void setContact(String contact) {
252 this.contact = contact;
253 }
254
255 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530256 * Returns the description of module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530257 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530258 * @return the description of YANG module
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530259 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530260 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530261 public String getDescription() {
262 return description;
263 }
264
265 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530266 * Sets the description of module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530267 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530268 * @param description set the description of YANG module
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530269 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530270 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530271 public void setDescription(String description) {
272 this.description = description;
273 }
274
275 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530276 * Returns the list of imported modules.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530277 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530278 * @return the list of imported modules
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530279 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530280 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530281 public List<YangImport> getImportList() {
282 return importList;
283 }
284
285 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530286 * Adds the imported module information to the import list.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530287 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530288 * @param importedModule module being imported
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530289 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530290 @Override
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530291 public void addToImportList(YangImport importedModule) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530292 getImportList().add(importedModule);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530293 }
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530294
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530295 @Override
296 public void setImportList(List<YangImport> importList) {
297 this.importList = importList;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530298 }
299
300 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530301 * Returns the list of included sub modules.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530302 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530303 * @return the included list of sub modules
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530304 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530305 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530306 public List<YangInclude> getIncludeList() {
307 return includeList;
308 }
309
310 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530311 * Adds the included sub module information to the include list.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530312 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530313 * @param includeModule submodule being included
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530314 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530315 @Override
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530316 public void addToIncludeList(YangInclude includeModule) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530317 getIncludeList().add(includeModule);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530318 }
319
320 @Override
321 public void setIncludeList(List<YangInclude> includeList) {
322 this.includeList = includeList;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530323 }
324
325 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530326 * Returns the list of leaves in module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530327 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530328 * @return the list of leaves
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530329 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530330 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530331 public List<YangLeaf> getListOfLeaf() {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530332 return listOfLeaf;
333 }
334
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530335 @Override
336 public void setListOfLeaf(List<YangLeaf> leafsList) {
337 listOfLeaf = leafsList;
338 }
339
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530340 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530341 * Adds a leaf in module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530342 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530343 * @param leaf the leaf to be added
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530344 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530345 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530346 public void addLeaf(YangLeaf leaf) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530347 getListOfLeaf().add(leaf);
348 }
349
350 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530351 * Returns the list of leaf-list from module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530352 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530353 * @return the list of leaf-list
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530354 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530355 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530356 public List<YangLeafList> getListOfLeafList() {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530357 return listOfLeafList;
358 }
359
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530360 @Override
361 public void setListOfLeafList(List<YangLeafList> listOfLeafList) {
362 this.listOfLeafList = listOfLeafList;
363 }
364
365
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530366 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530367 * Adds a leaf-list in module.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530368 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530369 * @param leafList the leaf-list to be added
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530370 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530371 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530372 public void addLeafList(YangLeafList leafList) {
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530373 getListOfLeafList().add(leafList);
374 }
375
376 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530377 * Returns the name space of module elements.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530378 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530379 * @return the nameSpace
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530380 */
381 public YangNameSpace getNameSpace() {
382 return nameSpace;
383 }
384
385 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530386 * Sets the name space of module elements.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530387 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530388 * @param nameSpace the nameSpace to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530389 */
390 public void setNameSpace(YangNameSpace nameSpace) {
391 this.nameSpace = nameSpace;
392 }
393
394 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530395 * Returns the modules organization.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530396 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530397 * @return the organization
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530398 */
399 public String getOrganization() {
400 return organization;
401 }
402
403 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530404 * Sets the modules organization.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530405 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530406 * @param org the organization to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530407 */
408 public void setOrganization(String org) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530409 organization = org;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530410 }
411
412 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530413 * Returns the prefix.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530414 *
415 * @return the prefix
416 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530417 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530418 public String getPrefix() {
419 return prefix;
420 }
421
422 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530423 * Sets the prefix.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530424 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530425 * @param prefix the prefix to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530426 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530427 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530428 public void setPrefix(String prefix) {
429 this.prefix = prefix;
430 }
431
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530432 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530433 public void resolveSelfFileLinking(ResolvableType type)
434 throws DataModelException {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530435 // Get the list to be resolved.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530436 List<YangResolutionInfo> resolutionList = getUnresolvedResolutionList(type);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530437 // Resolve linking for a resolution list.
438 resolveLinkingForResolutionList(resolutionList, this);
439 }
440
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530441 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530442 public void resolveInterFileLinking(ResolvableType type)
443 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530444 // Get the list to be resolved.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530445 List<YangResolutionInfo> resolutionList = getUnresolvedResolutionList(type);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530446 // Resolve linking for a resolution list.
447 linkInterFileReferences(resolutionList, this);
448 }
449
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530450 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530451 * Returns the textual reference.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530452 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530453 * @return the reference
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530454 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530455 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530456 public String getReference() {
457 return reference;
458 }
459
460 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530461 * Sets the textual reference.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530462 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530463 * @param reference the reference to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530464 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530465 @Override
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530466 public void setReference(String reference) {
467 this.reference = reference;
468 }
469
470 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530471 * Returns the revision.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530472 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530473 * @return the revision
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530474 */
475 public YangRevision getRevision() {
476 return revision;
477 }
478
479 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530480 * Sets the revision.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530481 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530482 * @param revision the revision to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530483 */
484 public void setRevision(YangRevision revision) {
485 this.revision = revision;
486 }
487
488 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530489 * Returns the version.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530490 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530491 * @return the version
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530492 */
493 public byte getVersion() {
494 return version;
495 }
496
497 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530498 * Sets the version.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530499 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530500 * @param version the version to set
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530501 */
502 public void setVersion(byte version) {
503 this.version = version;
504 }
505
506 /**
507 * Returns the type of the parsed data.
508 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530509 * @return returns MODULE_DATA
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530510 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530511 @Override
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530512 public YangConstructType getYangConstructType() {
513 return YangConstructType.MODULE_DATA;
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530514 }
515
516 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530517 * Validates the data on entering the corresponding parse tree node.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530518 *
519 * @throws DataModelException a violation of data model rules
520 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530521 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530522 public void validateDataOnEntry()
523 throws DataModelException {
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530524 /*
525 * Module is root in the data model tree, hence there is no entry
526 * validation
527 */
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530528 }
529
530 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530531 * Validates the data on exiting the corresponding parse tree node.
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530532 *
533 * @throws DataModelException a violation of data model rules
534 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530535 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530536 public void validateDataOnExit()
537 throws DataModelException {
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530538 /*
539 * TODO: perform symbol linking for the imported or included YANG info.
540 * TODO: perform symbol resolution for referred YANG entities.
541 */
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530542 }
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530543
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530544 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530545 public void detectCollidingChild(String identifierName, YangConstructType dataType)
546 throws DataModelException {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530547 // Asks helper to detect colliding child.
548 detectCollidingChildUtil(identifierName, dataType, this);
549 }
550
551 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530552 public void detectSelfCollision(String identifierName, YangConstructType dataType)
553 throws DataModelException {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530554 // Not required as module doesn't have any parent.
555 }
Vinod Kumar S38046502016-03-23 15:30:27 +0530556
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530557 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530558 public List<YangResolutionInfo> getUnresolvedResolutionList(ResolvableType type) {
559 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
560 return derivedTypeResolutionList;
561 } else {
562 return usesResolutionList;
563 }
564
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530565 }
566
567 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530568 public void addToResolutionList(YangResolutionInfo resolutionInfo,
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530569 ResolvableType type) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530570 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
571 derivedTypeResolutionList.add(resolutionInfo);
572 } else if (type == ResolvableType.YANG_USES) {
573 usesResolutionList.add(resolutionInfo);
574 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530575 }
576
577 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530578 public void setResolutionList(List<YangResolutionInfo> resolutionList,
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530579 ResolvableType type) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530580 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
581 derivedTypeResolutionList = resolutionList;
582 } else if (type == ResolvableType.YANG_USES) {
583 usesResolutionList = resolutionList;
584 }
585
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530586 }
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530587
588 @Override
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530589 public void addReferencesToImportList(Set<YangNode> yangNodeSet)
590 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530591 Iterator<YangImport> importInfoIterator = getImportList().iterator();
592 // Run through the imported list to add references.
593 while (importInfoIterator.hasNext()) {
594 YangImport yangImport = importInfoIterator.next();
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530595 yangImport.addReferenceToImport(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530596 }
597 }
598
599 @Override
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530600 public void addReferencesToIncludeList(Set<YangNode> yangNodeSet)
601 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530602 Iterator<YangInclude> includeInfoIterator = getIncludeList().iterator();
603 // Run through the included list to add references.
604 while (includeInfoIterator.hasNext()) {
605 YangInclude yangInclude = includeInfoIterator.next();
606 YangSubModule subModule = null;
607 try {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530608 subModule = yangInclude.addReferenceToInclude(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530609 } catch (DataModelException e) {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530610 throw e;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530611 }
612 // Check if the referred sub-modules parent is self
613 if (!(subModule.getBelongsTo().getModuleNode() == this)) {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530614 yangInclude.reportIncludeError();
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530615 }
616 }
617 }
Vinod Kumar S1ede5ab2016-02-09 20:14:53 +0530618}