blob: f8bec7c2cec2dea497cdfa3837f431772fd42e12 [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 /**
Bharat saraswalb1170bd2016-07-14 13:26:18 +0530202 * Uses resolution list.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530203 */
204 private List<YangResolutionInfo> usesResolutionList;
Gaurav Agrawal56527662016-04-20 15:49:17 +0530205
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530206 /**
Bharat saraswalb1170bd2016-07-14 13:26:18 +0530207 * If-feature resolution list.
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530208 */
209 private List<YangResolutionInfo> ifFeatureResolutionList;
210
211 /**
Bharat saraswalb1170bd2016-07-14 13:26:18 +0530212 * Leafref resolution list.
janani be18b5342016-07-13 21:06:41 +0530213 */
214 private List<YangResolutionInfo> leafrefResolutionList;
215
216 /**
Bharat saraswalb1170bd2016-07-14 13:26:18 +0530217 * Base resolution list.
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +0530218 */
219 private List<YangResolutionInfo> baseResolutionList;
220
221 /**
Bharat saraswalb1170bd2016-07-14 13:26:18 +0530222 * Identityref resolution list.
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +0530223 */
224 private List<YangResolutionInfo> identityrefResolutionList;
225
226 /**
Vidyashree Rama36f2fab2016-07-15 14:06:56 +0530227 * extension list.
228 */
229 private List<YangExtension> extensionList;
230
231 /**
Bharat saraswalb1170bd2016-07-14 13:26:18 +0530232 * Augment resolution list.
233 */
234 private List<YangResolutionInfo> augmentResolutionList;
235
236 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530237 * Creates a sub module node.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530238 */
239 public YangSubModule() {
240 super(YangNodeType.SUB_MODULE_NODE);
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530241 derivedTypeResolutionList = new LinkedList<>();
Bharat saraswalb1170bd2016-07-14 13:26:18 +0530242 augmentResolutionList = new LinkedList<>();
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530243 usesResolutionList = new LinkedList<>();
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530244 ifFeatureResolutionList = new LinkedList<>();
janani be18b5342016-07-13 21:06:41 +0530245 leafrefResolutionList = new LinkedList<>();
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +0530246 baseResolutionList = new LinkedList<>();
247 identityrefResolutionList = new LinkedList<>();
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530248 importList = new LinkedList<YangImport>();
249 includeList = new LinkedList<YangInclude>();
250 listOfLeaf = new LinkedList<YangLeaf>();
251 listOfLeafList = new LinkedList<YangLeafList>();
Vidyashree Rama36f2fab2016-07-15 14:06:56 +0530252 extensionList = new LinkedList<YangExtension>();
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530253 }
254
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530255 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530256 * Returns the YANG name of the sub module.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530257 *
258 * @return YANG name of the sub module
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530259 */
260 @Override
261 public String getName() {
262 return name;
263 }
264
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530265 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530266 * Sets YANG name of the sub module.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530267 *
268 * @param subModuleName YANG name of the sub module
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530269 */
270 @Override
271 public void setName(String subModuleName) {
272 name = subModuleName;
273 }
274
275 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530276 * Returns the module info.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530277 *
278 * @return the belongs to info
279 */
280 public YangBelongsTo getBelongsTo() {
281 return belongsTo;
282 }
283
284 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530285 * Sets the module info.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530286 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530287 * @param belongsTo module info to set
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530288 */
289 public void setBelongsTo(YangBelongsTo belongsTo) {
290 this.belongsTo = belongsTo;
291 }
292
293 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530294 * Returns the contact.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530295 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530296 * @return the contact
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530297 */
298 public String getContact() {
299 return contact;
300 }
301
302 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530303 * Sets the contact.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530304 *
305 * @param contact the contact to set
306 */
307 public void setContact(String contact) {
308 this.contact = contact;
309 }
310
311 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530312 * Returns the description.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530313 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530314 * @return the description
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530315 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530316 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530317 public String getDescription() {
318 return description;
319 }
320
321 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530322 * Sets the description.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530323 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530324 * @param description set the description
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530325 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530326 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530327 public void setDescription(String description) {
328 this.description = description;
329 }
330
331 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530332 * Returns the list of imported modules.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530333 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530334 * @return the list of imported modules
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530335 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530336 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530337 public List<YangImport> getImportList() {
338 return importList;
339 }
340
341 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530342 * Adds the imported module information to the import list.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530343 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530344 * @param importedModule module being imported
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530345 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530346 @Override
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530347 public void addToImportList(YangImport importedModule) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530348 getImportList().add(importedModule);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530349 }
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530350
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530351 @Override
352 public void setImportList(List<YangImport> importList) {
353 this.importList = importList;
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530354 }
355
356 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530357 * Returns the list of included sub modules.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530358 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530359 * @return the included list of sub modules
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530360 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530361 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530362 public List<YangInclude> getIncludeList() {
363 return includeList;
364 }
365
366 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530367 * Returns the included sub module information to the include list.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530368 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530369 * @param includeModule submodule being included
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530370 */
Bharat saraswalcad0e652016-05-26 23:48:38 +0530371 @Override
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530372 public void addToIncludeList(YangInclude includeModule) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530373 getIncludeList().add(includeModule);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530374 }
375
376 @Override
377 public void setIncludeList(List<YangInclude> includeList) {
378 this.includeList = includeList;
379 }
380
381 @Override
382 public String getPrefix() {
383 return prefix;
384 }
385
386 @Override
387 public void setPrefix(String prefix) {
388 this.prefix = prefix;
389 }
390
391 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530392 public void resolveSelfFileLinking(ResolvableType type)
393 throws DataModelException {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530394 // Get the list to be resolved.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530395 List<YangResolutionInfo> resolutionList = getUnresolvedResolutionList(type);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530396 // Resolve linking for a resolution list.
397 resolveLinkingForResolutionList(resolutionList, this);
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530398 }
399
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530400 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530401 public void resolveInterFileLinking(ResolvableType type)
402 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530403 // Get the list to be resolved.
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530404 List<YangResolutionInfo> resolutionList = getUnresolvedResolutionList(type);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530405 // Resolve linking for a resolution list.
406 linkInterFileReferences(resolutionList, this);
407 }
408
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530409 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530410 * Returns the list of leaves.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530411 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530412 * @return the list of leaves
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530413 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530414 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530415 public List<YangLeaf> getListOfLeaf() {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530416 return listOfLeaf;
417 }
418
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530419 @Override
420 public void setListOfLeaf(List<YangLeaf> leafsList) {
421 listOfLeaf = leafsList;
422 }
423
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530424 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530425 * Adds a leaf.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530426 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530427 * @param leaf the leaf to be added
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530428 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530429 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530430 public void addLeaf(YangLeaf leaf) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530431 getListOfLeaf().add(leaf);
432 }
433
434 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530435 * Returns the list of leaf-list.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530436 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530437 * @return the list of leaf-list
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530438 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530439 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530440 public List<YangLeafList> getListOfLeafList() {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530441 return listOfLeafList;
442 }
443
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530444 @Override
445 public void setListOfLeafList(List<YangLeafList> listOfLeafList) {
446 this.listOfLeafList = listOfLeafList;
447 }
448
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530449 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530450 * Adds a leaf-list.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530451 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530452 * @param leafList the leaf-list to be added
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530453 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530454 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530455 public void addLeafList(YangLeafList leafList) {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530456 getListOfLeafList().add(leafList);
457 }
458
459 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530460 * Returns the sub-modules organization.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530461 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530462 * @return the organization
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530463 */
464 public String getOrganization() {
465 return organization;
466 }
467
468 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530469 * Sets the sub-modules organization.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530470 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530471 * @param org the organization to set
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530472 */
473 public void setOrganization(String org) {
474 organization = org;
475 }
476
477 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530478 * Returns the textual reference.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530479 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530480 * @return the reference
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530481 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530482 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530483 public String getReference() {
484 return reference;
485 }
486
487 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530488 * Sets the textual reference.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530489 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530490 * @param reference the reference to set
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530491 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530492 @Override
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530493 public void setReference(String reference) {
494 this.reference = reference;
495 }
496
497 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530498 * Returns the revision.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530499 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530500 * @return the revision
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530501 */
502 public YangRevision getRevision() {
503 return revision;
504 }
505
506 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530507 * Sets the revision.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530508 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530509 * @param revision the revision to set
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530510 */
511 public void setRevision(YangRevision revision) {
512 this.revision = revision;
513 }
514
515 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530516 * Returns the version.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530517 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530518 * @return the version
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530519 */
520 public byte getVersion() {
521 return version;
522 }
523
524 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530525 * Sets the version.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530526 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530527 * @param version the version to set
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530528 */
529 public void setVersion(byte version) {
530 this.version = version;
531 }
532
533 /**
534 * Returns the type of the parsed data.
535 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530536 * @return returns SUB_MODULE_DATA
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530537 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530538 @Override
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530539 public YangConstructType getYangConstructType() {
540 return YangConstructType.SUB_MODULE_DATA;
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530541 }
542
543 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530544 * Validates the data on entering the corresponding parse tree node.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530545 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530546 * @throws DataModelException a violation of data model rules
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530547 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530548 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530549 public void validateDataOnEntry()
550 throws DataModelException {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530551 // TODO auto-generated method stub, to be implemented by parser
552 }
553
554 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530555 * Validates the data on exiting the corresponding parse tree node.
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530556 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530557 * @throws DataModelException a violation of data model rules
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530558 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530559 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530560 public void validateDataOnExit()
561 throws DataModelException {
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530562 // TODO auto-generated method stub, to be implemented by parser
563 }
564
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530565 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530566 public void detectCollidingChild(String identifierName, YangConstructType dataType)
567 throws DataModelException {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530568 // Asks helper to detect colliding child.
569 detectCollidingChildUtil(identifierName, dataType, this);
570 }
571
572 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530573 public void detectSelfCollision(String identifierName, YangConstructType dataType)
574 throws DataModelException {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530575 // Not required as module doesn't have any parent.
576 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530577
578 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530579 public List<YangResolutionInfo> getUnresolvedResolutionList(ResolvableType type) {
580 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
581 return derivedTypeResolutionList;
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530582 } else if (type == ResolvableType.YANG_USES) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530583 return usesResolutionList;
Bharat saraswalb1170bd2016-07-14 13:26:18 +0530584 } else if (type == ResolvableType.YANG_AUGMENT) {
585 return augmentResolutionList;
janani be18b5342016-07-13 21:06:41 +0530586 } else if (type == ResolvableType.YANG_IF_FEATURE) {
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530587 return ifFeatureResolutionList;
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +0530588 } else if (type == ResolvableType.YANG_LEAFREF) {
janani be18b5342016-07-13 21:06:41 +0530589 return leafrefResolutionList;
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +0530590 } else if (type == ResolvableType.YANG_BASE) {
591 return baseResolutionList;
592 } else {
593 return identityrefResolutionList;
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);
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +0530606 } else if (type == ResolvableType.YANG_LEAFREF) {
janani be18b5342016-07-13 21:06:41 +0530607 leafrefResolutionList.add(resolutionInfo);
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +0530608 } else if (type == ResolvableType.YANG_BASE) {
609 baseResolutionList.add(resolutionInfo);
Vidyashree Rama36f2fab2016-07-15 14:06:56 +0530610 } else if (type == ResolvableType.YANG_AUGMENT) {
Bharat saraswalb1170bd2016-07-14 13:26:18 +0530611 augmentResolutionList.add(resolutionInfo);
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +0530612 } else if (type == ResolvableType.YANG_IDENTITYREF) {
613 identityrefResolutionList.add(resolutionInfo);
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530614 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530615 }
616
617 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530618 public void setResolutionList(List<YangResolutionInfo> resolutionList,
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530619 ResolvableType type) {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530620 if (type == ResolvableType.YANG_DERIVED_DATA_TYPE) {
621 derivedTypeResolutionList = resolutionList;
622 } else if (type == ResolvableType.YANG_USES) {
623 usesResolutionList = resolutionList;
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530624 } else if (type == ResolvableType.YANG_IF_FEATURE) {
janani be18b5342016-07-13 21:06:41 +0530625 ifFeatureResolutionList.add((YangResolutionInfo) resolutionList);
626 } else if (type == ResolvableType.YANG_LEAFREF) {
627 leafrefResolutionList = resolutionList;
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +0530628 } else if (type == ResolvableType.YANG_BASE) {
629 baseResolutionList = resolutionList;
Vidyashree Rama36f2fab2016-07-15 14:06:56 +0530630 } else if (type == ResolvableType.YANG_AUGMENT) {
Bharat saraswalb1170bd2016-07-14 13:26:18 +0530631 augmentResolutionList = resolutionList;
Shankara-Huaweidf7b9ca2016-07-14 11:35:34 +0530632 } else if (type == ResolvableType.YANG_IDENTITYREF) {
633 identityrefResolutionList = resolutionList;
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530634 }
635
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530636 }
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530637
638 /**
639 * Links the sub-module with module.
640 *
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530641 * @param yangNodeSet YANG file information set
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530642 * @throws DataModelException a violation in data model rule
643 */
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530644 public void linkWithModule(Set<YangNode> yangNodeSet)
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530645 throws DataModelException {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530646 getBelongsTo().linkWithModule(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530647 }
648
649 @Override
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530650 public void addReferencesToIncludeList(Set<YangNode> yangNodeSet)
651 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530652 Iterator<YangInclude> includeInfoIterator = getIncludeList().iterator();
653 // Run through the included list to add references.
654 while (includeInfoIterator.hasNext()) {
655 YangInclude yangInclude = includeInfoIterator.next();
656 YangSubModule subModule = null;
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530657 subModule = yangInclude.addReferenceToInclude(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530658 // Check if the referred sub-modules parent is self
659 if (!(subModule.getBelongsTo().getModuleNode() == getBelongsTo().getModuleNode())) {
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530660 yangInclude.reportIncludeError();
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530661 }
662 }
663 }
664
665 @Override
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530666 public void addReferencesToImportList(Set<YangNode> yangNodeSet)
667 throws DataModelException {
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530668 Iterator<YangImport> importInfoIterator = getImportList().iterator();
669 // Run through the imported list to add references.
670 while (importInfoIterator.hasNext()) {
671 YangImport yangImport = importInfoIterator.next();
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530672 yangImport.addReferenceToImport(yangNodeSet);
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530673 }
674 }
Vidyashree Ramadeac28b2016-06-20 15:12:43 +0530675
676 @Override
677 public List<YangFeature> getFeatureList() {
678 return listOfFeature;
679 }
680
681 @Override
682 public void addFeatureList(YangFeature feature) {
683 if (getFeatureList() == null) {
684 setListOfFeature(new LinkedList<>());
685 }
686 getFeatureList().add(feature);
687 }
688
689 @Override
690 public void setListOfFeature(List<YangFeature> listOfFeature) {
691 this.listOfFeature = listOfFeature;
692 }
Vidyashree Rama36f2fab2016-07-15 14:06:56 +0530693
694 /**
695 * Adds extension in extension list.
696 *
697 * @param extension the extension to be added
698 */
699 public void addExtension(YangExtension extension) {
700 getExtensionList().add(extension);
701 }
702
703 /**
704 * Returns the extension list.
705 *
706 * @return the extension list
707 */
708 public List<YangExtension> getExtensionList() {
709 return extensionList;
710 }
711
712 /**
713 * Sets the extension list.
714 *
715 * @param extensionList the list of extension
716 */
717 public void setExtensionList(List<YangExtension> extensionList) {
718 this.extensionList = extensionList;
719 }
Vinod Kumar S67e7be62016-02-11 20:13:28 +0530720}