blob: 5a5d52f2cdb042e44e2e72221babd4e01ea58ed7 [file] [log] [blame]
Vinod Kumar S67e7be62016-02-11 20:13:28 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vinod Kumar S67e7be62016-02-11 20:13:28 +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;
Vinod Kumar S67e7be62016-02-11 20:13:28 +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
Vinod Kumar S38046502016-03-23 15:30:27 +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 S38046502016-03-23 15:30:27 +053030
Vinod Kumar S67e7be62016-02-11 20:13:28 +053031/*
32 * Reference RFC 6020.
33 *
34 * While the primary unit in YANG is a module, a YANG module can itself
35 * be constructed out of several submodules. Submodules allow a module
36 * designer to split a complex model into several pieces where all the
37 * submodules contribute to a single namespace, which is defined by the
38 * module that includes the submodules.
39 *
40 * The "submodule" statement defines the submodule's name, and groups
41 * all statements that belong to the submodule together. The
42 * "submodule" statement's argument is the name of the submodule,
43 * followed by a block of sub-statements that hold detailed submodule
44 * information.
45 *
46 * The submodule's sub-statements
47 *
48 * +--------------+---------+-------------+------------------+
49 * | substatement | section | cardinality |data model mapping|
50 * +--------------+---------+-------------+------------------+
51 * | anyxml | 7.10 | 0..n | - not supported |
52 * | augment | 7.15 | 0..n | - child nodes |
53 * | belongs-to | 7.2.2 | 1 | - YangBelongsTo |
54 * | choice | 7.9 | 0..n | - child nodes |
55 * | contact | 7.1.8 | 0..1 | - string |
56 * | container | 7.5 | 0..n | - child nodes |
57 * | description | 7.19.3 | 0..1 | - string |
58 * | deviation | 7.18.3 | 0..n | - TODO |
59 * | extension | 7.17 | 0..n | - TODO |
Vidyashree Ramadeac28b2016-06-20 15:12:43 +053060 * | feature | 7.18.1 | 0..n | - YangFeature |
Vinod Kumar S67e7be62016-02-11 20:13:28 +053061 * | grouping | 7.11 | 0..n | - child nodes |
62 * | identity | 7.16 | 0..n | - TODO |
63 * | import | 7.1.5 | 0..n | - YangImport |
64 * | include | 7.1.6 | 0..n | - YangInclude |
65 * | leaf | 7.6 | 0..n | - YangLeaf |
66 * | leaf-list | 7.7 | 0..n | - YangLeafList |
67 * | list | 7.8 | 0..n | - child nodes |
68 * | notification | 7.14 | 0..n | - TODO |
69 * | organization | 7.1.7 | 0..1 | - string |
70 * | reference | 7.19.4 | 0..1 | - string |
71 * | revision | 7.1.9 | 0..n | - string |
72 * | rpc | 7.13 | 0..n | - TODO |
73 * | typedef | 7.3 | 0..n | - child nodes |
74 * | uses | 7.12 | 0..n | - child nodes |
75 * | YANG-version | 7.1.2 | 0..1 | - int |
76 * +--------------+---------+-------------+------------------+
77 */
Gaurav Agrawal56527662016-04-20 15:49:17 +053078
Vinod Kumar S67e7be62016-02-11 20:13:28 +053079/**
Bharat saraswald9822e92016-04-05 15:13:44 +053080 * Represents data model node to maintain information defined in YANG sub-module.
Vinod Kumar S67e7be62016-02-11 20:13:28 +053081 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053082public class YangSubModule
83 extends YangNode
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053084 implements YangLeavesHolder, YangDesc, YangReference, Parsable, CollisionDetector, YangReferenceResolver,
Vidyashree Ramadeac28b2016-06-20 15:12:43 +053085 RpcNotificationContainer, YangFeatureHolder {
Vinod Kumar S67e7be62016-02-11 20:13:28 +053086
Bharat saraswal96dfef02016-06-16 00:29:12 +053087 private static final long serialVersionUID = 806201614L;
88
Vinod Kumar S67e7be62016-02-11 20:13:28 +053089 /**
90 * Name of sub module.
91 */
92 private String name;
93
94 /**
95 * Module to which it belongs to.
96 */
97 private YangBelongsTo belongsTo;
98
99 /**
100 * Reference RFC 6020.
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530101 * <p>
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530102 * The "contact" statement provides contact information for the module. The
103 * argument is a string that is used to specify contact information for the
104 * person or persons to whom technical queries concerning this module should
105 * be sent, such as their name, postal address, telephone number, and
106 * electronic mail address.
107 */
108 private String contact;
109
110 /**
111 * Description.
112 */
113 private String description;
114
115 /**
116 * List of YANG modules imported.
117 */
118 private List<YangImport> importList;
119
120 /**
121 * List of YANG sub-modules included.
122 */
123 private List<YangInclude> includeList;
124
125 /**
126 * List of leaves at root level in the sub-module.
127 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530128 private List<YangLeaf> listOfLeaf;
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530129
130 /**
131 * List of leaf-lists at root level in the sub-module.
132 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530133 private List<YangLeafList> listOfLeafList;
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530134
135 /**
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530136 * List of feature at root level in the module.
137 */
138 private List<YangFeature> listOfFeature;
139
140 /**
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530141 * Organization owner of the sub-module.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530142 */
143 private String organization;
144
145 /**
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530146 * Reference of the sub-module.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530147 */
148 private String reference;
149
150 /**
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530151 * Revision info of the sub-module.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530152 */
153 private YangRevision revision;
154
155 /**
156 * YANG version.
157 */
158 private byte version;
159
160 /**
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530161 * Prefix of parent module.
162 */
163 private String prefix;
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530164
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530165 /*-
166 * Reference RFC 6020.
167 *
168 * Nested typedefs and groupings.
169 * Typedefs and groupings may appear nested under many YANG statements,
170 * allowing these to be lexically scoped by the hierarchy under which
171 * they appear. This allows types and groupings to be defined near
172 * where they are used, rather than placing them at the top level of the
173 * hierarchy. The close proximity increases readability.
174 *
175 * Scoping also allows types to be defined without concern for naming
176 * conflicts between types in different submodules. Type names can be
177 * specified without adding leading strings designed to prevent name
178 * collisions within large modules.
179 *
180 * Finally, scoping allows the module author to keep types and groupings
181 * private to their module or submodule, preventing their reuse. Since
182 * only top-level types and groupings (i.e., those appearing as
183 * sub-statements to a module or submodule statement) can be used outside
184 * the module or submodule, the developer has more control over what
185 * pieces of their module are presented to the outside world, supporting
186 * the need to hide internal information and maintaining a boundary
187 * between what is shared with the outside world and what is kept
188 * private.
189 *
190 * Scoped definitions MUST NOT shadow definitions at a higher scope. A
191 * type or grouping cannot be defined if a higher level in the schema
192 * hierarchy has a definition with a matching identifier.
193 *
194 * A reference to an unprefixed type or grouping, or one which uses the
195 * prefix of the current module, is resolved by locating the closest
196 * matching "typedef" or "grouping" statement among the immediate
197 * sub-statements of each ancestor statement.
198 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530199 private List<YangResolutionInfo> derivedTypeResolutionList;
200
201 /**
202 * uses resolution list.
203 */
204 private List<YangResolutionInfo> usesResolutionList;
Gaurav Agrawal56527662016-04-20 15:49:17 +0530205
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530206 /**
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530207 * if-feature resolution list.
208 */
209 private List<YangResolutionInfo> ifFeatureResolutionList;
210
211 /**
janani be18b5342016-07-13 21:06:41 +0530212 * leafref resolution list.
213 */
214 private List<YangResolutionInfo> leafrefResolutionList;
215
216 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530217 * Creates a sub module node.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530218 */
219 public YangSubModule() {
220 super(YangNodeType.SUB_MODULE_NODE);
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530221 derivedTypeResolutionList = new LinkedList<>();
222 usesResolutionList = new LinkedList<>();
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530223 ifFeatureResolutionList = new LinkedList<>();
janani be18b5342016-07-13 21:06:41 +0530224 leafrefResolutionList = new LinkedList<>();
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530225 importList = new LinkedList<YangImport>();
226 includeList = new LinkedList<YangInclude>();
227 listOfLeaf = new LinkedList<YangLeaf>();
228 listOfLeafList = new LinkedList<YangLeafList>();
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530229 }
230
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530231 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530232 * Returns the YANG name of the sub module.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530233 *
234 * @return YANG name of the sub module
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530235 */
236 @Override
237 public String getName() {
238 return name;
239 }
240
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530241 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530242 * Sets YANG name of the sub module.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530243 *
244 * @param subModuleName YANG name of the sub module
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530245 */
246 @Override
247 public void setName(String subModuleName) {
248 name = subModuleName;
249 }
250
251 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530252 * Returns the module info.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530253 *
254 * @return the belongs to info
255 */
256 public YangBelongsTo getBelongsTo() {
257 return belongsTo;
258 }
259
260 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530261 * Sets the module info.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530262 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530263 * @param belongsTo module info to set
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530264 */
265 public void setBelongsTo(YangBelongsTo belongsTo) {
266 this.belongsTo = belongsTo;
267 }
268
269 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530270 * Returns the contact.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530271 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530272 * @return the contact
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530273 */
274 public String getContact() {
275 return contact;
276 }
277
278 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530279 * Sets the contact.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530280 *
281 * @param contact the contact to set
282 */
283 public void setContact(String contact) {
284 this.contact = contact;
285 }
286
287 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530288 * Returns the description.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530289 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530290 * @return the description
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530291 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530292 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530293 public String getDescription() {
294 return description;
295 }
296
297 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530298 * Sets the description.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530299 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530300 * @param description set the description
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530301 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530302 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530303 public void setDescription(String description) {
304 this.description = description;
305 }
306
307 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530308 * Returns the list of imported modules.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530309 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530310 * @return the list of imported modules
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530311 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530312 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530313 public List<YangImport> getImportList() {
314 return importList;
315 }
316
317 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530318 * Adds the imported module information to the import list.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530319 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530320 * @param importedModule module being imported
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530321 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530322 @Override
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530323 public void addToImportList(YangImport importedModule) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530324 getImportList().add(importedModule);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530325 }
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530326
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530327 @Override
328 public void setImportList(List<YangImport> importList) {
329 this.importList = importList;
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530330 }
331
332 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530333 * Returns the list of included sub modules.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530334 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530335 * @return the included list of sub modules
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530336 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530337 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530338 public List<YangInclude> getIncludeList() {
339 return includeList;
340 }
341
342 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530343 * Returns the included sub module information to the include list.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530344 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530345 * @param includeModule submodule being included
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530346 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530347 @Override
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530348 public void addToIncludeList(YangInclude includeModule) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530349 getIncludeList().add(includeModule);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530350 }
351
352 @Override
353 public void setIncludeList(List<YangInclude> includeList) {
354 this.includeList = includeList;
355 }
356
357 @Override
358 public String getPrefix() {
359 return prefix;
360 }
361
362 @Override
363 public void setPrefix(String prefix) {
364 this.prefix = prefix;
365 }
366
367 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530368 public void resolveSelfFileLinking(ResolvableType type)
369 throws DataModelException {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530370 // Get the list to be resolved.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530371 List<YangResolutionInfo> resolutionList = getUnresolvedResolutionList(type);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530372 // Resolve linking for a resolution list.
373 resolveLinkingForResolutionList(resolutionList, this);
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530374 }
375
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530376 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530377 public void resolveInterFileLinking(ResolvableType type)
378 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530379 // Get the list to be resolved.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530380 List<YangResolutionInfo> resolutionList = getUnresolvedResolutionList(type);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530381 // Resolve linking for a resolution list.
382 linkInterFileReferences(resolutionList, this);
383 }
384
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530385 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530386 * Returns the list of leaves.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530387 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530388 * @return the list of leaves
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530389 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530390 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530391 public List<YangLeaf> getListOfLeaf() {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530392 return listOfLeaf;
393 }
394
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530395 @Override
396 public void setListOfLeaf(List<YangLeaf> leafsList) {
397 listOfLeaf = leafsList;
398 }
399
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530400 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530401 * Adds a leaf.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530402 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530403 * @param leaf the leaf to be added
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530404 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530405 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530406 public void addLeaf(YangLeaf leaf) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530407 getListOfLeaf().add(leaf);
408 }
409
410 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530411 * Returns the list of leaf-list.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530412 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530413 * @return the list of leaf-list
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530414 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530415 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530416 public List<YangLeafList> getListOfLeafList() {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530417 return listOfLeafList;
418 }
419
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530420 @Override
421 public void setListOfLeafList(List<YangLeafList> listOfLeafList) {
422 this.listOfLeafList = listOfLeafList;
423 }
424
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530425 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530426 * Adds a leaf-list.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530427 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530428 * @param leafList the leaf-list to be added
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530429 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530430 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530431 public void addLeafList(YangLeafList leafList) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530432 getListOfLeafList().add(leafList);
433 }
434
435 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530436 * Returns the sub-modules organization.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530437 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530438 * @return the organization
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530439 */
440 public String getOrganization() {
441 return organization;
442 }
443
444 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530445 * Sets the sub-modules organization.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530446 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530447 * @param org the organization to set
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530448 */
449 public void setOrganization(String org) {
450 organization = org;
451 }
452
453 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530454 * Returns the textual reference.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530455 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530456 * @return the reference
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530457 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530458 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530459 public String getReference() {
460 return reference;
461 }
462
463 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530464 * Sets the textual reference.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530465 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530466 * @param reference the reference to set
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530467 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530468 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530469 public void setReference(String reference) {
470 this.reference = reference;
471 }
472
473 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530474 * Returns the revision.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530475 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530476 * @return the revision
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530477 */
478 public YangRevision getRevision() {
479 return revision;
480 }
481
482 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530483 * Sets the revision.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530484 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530485 * @param revision the revision to set
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530486 */
487 public void setRevision(YangRevision revision) {
488 this.revision = revision;
489 }
490
491 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530492 * Returns the version.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530493 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530494 * @return the version
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530495 */
496 public byte getVersion() {
497 return version;
498 }
499
500 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530501 * Sets the version.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530502 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530503 * @param version the version to set
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530504 */
505 public void setVersion(byte version) {
506 this.version = version;
507 }
508
509 /**
510 * Returns the type of the parsed data.
511 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530512 * @return returns SUB_MODULE_DATA
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530513 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530514 @Override
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530515 public YangConstructType getYangConstructType() {
516 return YangConstructType.SUB_MODULE_DATA;
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530517 }
518
519 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530520 * Validates the data on entering the corresponding parse tree node.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530521 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530522 * @throws DataModelException a violation of data model rules
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530523 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530524 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530525 public void validateDataOnEntry()
526 throws DataModelException {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530527 // TODO auto-generated method stub, to be implemented by parser
528 }
529
530 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530531 * Validates the data on exiting the corresponding parse tree node.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530532 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530533 * @throws DataModelException a violation of data model rules
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530534 */
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 S67e7be62016-02-11 20:13:28 +0530538 // TODO auto-generated method stub, to be implemented by parser
539 }
540
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530541 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530542 public void detectCollidingChild(String identifierName, YangConstructType dataType)
543 throws DataModelException {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530544 // Asks helper to detect colliding child.
545 detectCollidingChildUtil(identifierName, dataType, this);
546 }
547
548 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530549 public void detectSelfCollision(String identifierName, YangConstructType dataType)
550 throws DataModelException {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530551 // Not required as module doesn't have any parent.
552 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530553
554 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530555 public List<YangResolutionInfo> getUnresolvedResolutionList(ResolvableType type) {
556 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
557 return derivedTypeResolutionList;
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530558 } else if (type == ResolvableType.YANG_USES) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530559 return usesResolutionList;
janani be18b5342016-07-13 21:06:41 +0530560 } else if (type == ResolvableType.YANG_IF_FEATURE) {
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530561 return ifFeatureResolutionList;
janani be18b5342016-07-13 21:06:41 +0530562 } else {
563 return leafrefResolutionList;
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530564 }
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);
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530574 } else if (type == ResolvableType.YANG_IF_FEATURE) {
575 ifFeatureResolutionList.add(resolutionInfo);
janani be18b5342016-07-13 21:06:41 +0530576 } else {
577 leafrefResolutionList.add(resolutionInfo);
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530578 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530579 }
580
581 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530582 public void setResolutionList(List<YangResolutionInfo> resolutionList,
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530583 ResolvableType type) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530584 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
585 derivedTypeResolutionList = resolutionList;
586 } else if (type == ResolvableType.YANG_USES) {
587 usesResolutionList = resolutionList;
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530588 } else if (type == ResolvableType.YANG_IF_FEATURE) {
janani be18b5342016-07-13 21:06:41 +0530589 ifFeatureResolutionList.add((YangResolutionInfo) resolutionList);
590 } else if (type == ResolvableType.YANG_LEAFREF) {
591 leafrefResolutionList = resolutionList;
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530592 }
593
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530594 }
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530595
596 /**
597 * Links the sub-module with module.
598 *
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530599 * @param yangNodeSet YANG file information set
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530600 * @throws DataModelException a violation in data model rule
601 */
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530602 public void linkWithModule(Set<YangNode> yangNodeSet)
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530603 throws DataModelException {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530604 getBelongsTo().linkWithModule(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530605 }
606
607 @Override
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530608 public void addReferencesToIncludeList(Set<YangNode> yangNodeSet)
609 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530610 Iterator<YangInclude> includeInfoIterator = getIncludeList().iterator();
611 // Run through the included list to add references.
612 while (includeInfoIterator.hasNext()) {
613 YangInclude yangInclude = includeInfoIterator.next();
614 YangSubModule subModule = null;
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530615 subModule = yangInclude.addReferenceToInclude(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530616 // Check if the referred sub-modules parent is self
617 if (!(subModule.getBelongsTo().getModuleNode() == getBelongsTo().getModuleNode())) {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530618 yangInclude.reportIncludeError();
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530619 }
620 }
621 }
622
623 @Override
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530624 public void addReferencesToImportList(Set<YangNode> yangNodeSet)
625 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530626 Iterator<YangImport> importInfoIterator = getImportList().iterator();
627 // Run through the imported list to add references.
628 while (importInfoIterator.hasNext()) {
629 YangImport yangImport = importInfoIterator.next();
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530630 yangImport.addReferenceToImport(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530631 }
632 }
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530633
634 @Override
635 public List<YangFeature> getFeatureList() {
636 return listOfFeature;
637 }
638
639 @Override
640 public void addFeatureList(YangFeature feature) {
641 if (getFeatureList() == null) {
642 setListOfFeature(new LinkedList<>());
643 }
644 getFeatureList().add(feature);
645 }
646
647 @Override
648 public void setListOfFeature(List<YangFeature> listOfFeature) {
649 this.listOfFeature = listOfFeature;
650 }
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530651}