blob: bd160d116685de6cda2afd82b4e3f04f3ded8bb9 [file] [log] [blame]
Vinod Kumar S2ff139c2016-02-16 01:37:16 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vinod Kumar S2ff139c2016-02-16 01:37:16 +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
18import java.util.LinkedList;
19import java.util.List;
20
21import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
22import org.onosproject.yangutils.parser.Parsable;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053023import org.onosproject.yangutils.utils.YangConstructType;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053024
Vidyashree Rama25bf4d02016-03-29 14:37:02 +053025import static org.onosproject.yangutils.datamodel.utils.DataModelUtils.detectCollidingChildUtil;
26
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053027/*-
28 * Reference RFC 6020.
29 *
30 * The "augment" statement allows a module or submodule to add to the
31 * schema tree defined in an external module, or the current module and
32 * its submodules, and to add to the nodes from a grouping in a "uses"
33 * statement. The argument is a string that identifies a node in the
34 * schema tree. This node is called the augment's target node. The
35 * target node MUST be either a container, list, choice, case, input,
36 * output, or notification node. It is augmented with the nodes defined
37 * in the sub-statements that follow the "augment" statement.
38 *
39 * The argument string is a schema node identifier.
40 * If the "augment" statement is on the top level in a module or
41 * submodule, the absolute form of a schema node identifier
42 * MUST be used. If the "augment" statement is a sub-statement to the
43 * "uses" statement, the descendant form MUST be used.
44 *
45 * If the target node is a container, list, case, input, output, or
46 * notification node, the "container", "leaf", "list", "leaf-list",
47 * "uses", and "choice" statements can be used within the "augment"
48 * statement.
49 *
50 * If the target node is a choice node, the "case" statement, or a case
51 * shorthand statement can be used within the "augment" statement.
52 *
53 * If the target node is in another module, then nodes added by the
54 * augmentation MUST NOT be mandatory nodes.
55 *
56 * The "augment" statement MUST NOT add multiple nodes with the same
57 * name from the same module to the target node.
58 * The augment's sub-statements
59 *
60 * +--------------+---------+-------------+------------------+
61 * | substatement | section | cardinality |data model mapping|
62 * +--------------+---------+-------------+------------------+
63 * | anyxml | 7.10 | 0..n |-not supported |
64 * | case | 7.9.2 | 0..n |-child nodes |
65 * | choice | 7.9 | 0..n |-child nodes |
66 * | container | 7.5 | 0..n |-child nodes |
67 * | description | 7.19.3 | 0..1 |-string |
68 * | if-feature | 7.18.2 | 0..n |-TODO |
69 * | leaf | 7.6 | 0..n |-YangLeaf |
70 * | leaf-list | 7.7 | 0..n |-YangLeafList |
71 * | list | 7.8 | 0..n |-child nodes |
72 * | reference | 7.19.4 | 0..1 |-String |
73 * | status | 7.19.2 | 0..1 |-YangStatus |
74 * | uses | 7.12 | 0..n |-child nodes |
75 * | when | 7.19.5 | 0..1 |-TODO |
76 * +--------------+---------+-------------+------------------+
77 */
Vinod Kumar Sd4deb062016-04-15 18:08:57 +053078
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053079/**
Bharat saraswald9822e92016-04-05 15:13:44 +053080 * Representation of data model node to maintain information defined in YANG augment.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053081 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053082public class YangAugment
83 extends YangNode
Vidyashree Rama25bf4d02016-03-29 14:37:02 +053084 implements YangLeavesHolder, YangCommonInfo, Parsable, CollisionDetector {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053085
86 /**
87 * Augment target node.
88 */
Vidyashree Rama25bf4d02016-03-29 14:37:02 +053089 private String name;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053090
91 /**
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053092 * Description of augment.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053093 */
94 private String description;
95
96 /**
97 * List of leaves.
98 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053099 private List<YangLeaf> listOfLeaf;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530100
101 /**
102 * List of leaf-lists.
103 */
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530104 private List<YangLeafList> listOfLeafList;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530105
106 /**
Vidyashree Rama25bf4d02016-03-29 14:37:02 +0530107 * List of node identifiers.
108 */
109 private List<YangNodeIdentifier> targetNode;
110
111 /**
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530112 * Reference of the YANG augment.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530113 */
114 private String reference;
115
116 /**
117 * Status of the node.
118 */
119 private YangStatusType status;
120
121 /**
122 * Create a YANG augment node.
123 */
124 public YangAugment() {
125 super(YangNodeType.AUGMENT_NODE);
126 }
127
128 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530129 * Returns the augmented node.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530130 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530131 * @return the augmented node
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530132 */
Vidyashree Rama25bf4d02016-03-29 14:37:02 +0530133 public List<YangNodeIdentifier> getTargetNode() {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530134 return targetNode;
135 }
136
137 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530138 * Sets the augmented node.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530139 *
Vidyashree Rama25bf4d02016-03-29 14:37:02 +0530140 * @param nodeIdentifiers the augmented node
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530141 */
Vidyashree Rama25bf4d02016-03-29 14:37:02 +0530142 public void setTargetNode(List<YangNodeIdentifier> nodeIdentifiers) {
143 this.targetNode = nodeIdentifiers;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530144 }
145
146 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530147 * Returns the description.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530148 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530149 * @return the description
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530150 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530151 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530152 public String getDescription() {
153 return description;
154 }
155
156 /**
157 * Set the description.
158 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530159 * @param description set the description
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530160 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530161 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530162 public void setDescription(String description) {
163 this.description = description;
164 }
165
Vidyashree Rama25bf4d02016-03-29 14:37:02 +0530166 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530167 public void detectCollidingChild(String identifierName, YangConstructType dataType)
168 throws DataModelException {
Vidyashree Rama25bf4d02016-03-29 14:37:02 +0530169 // Detect colliding child.
170 detectCollidingChildUtil(identifierName, dataType, this);
171 }
172
173 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530174 public void detectSelfCollision(String identifierName, YangConstructType dataType)
175 throws DataModelException {
Vidyashree Rama25bf4d02016-03-29 14:37:02 +0530176 if (this.getName().equals(identifierName)) {
177 throw new DataModelException("YANG file error: Duplicate input identifier detected, same as input \""
178 + this.getName() + "\"");
179 }
180 }
181
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530182 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530183 * Returns the list of leaves.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530184 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530185 * @return the list of leaves
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530186 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530187 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530188 public List<YangLeaf> getListOfLeaf() {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530189 return listOfLeaf;
190 }
191
192 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530193 * Sets the list of leaves.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530194 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530195 * @param leafsList the list of leaf to set
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530196 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530197 @Override
198 public void setListOfLeaf(List<YangLeaf> leafsList) {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530199 listOfLeaf = leafsList;
200 }
201
202 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530203 * Adds a leaf.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530204 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530205 * @param leaf the leaf to be added
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530206 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530207 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530208 public void addLeaf(YangLeaf leaf) {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530209 if (getListOfLeaf() == null) {
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530210 setListOfLeaf(new LinkedList<YangLeaf>());
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530211 }
212
213 getListOfLeaf().add(leaf);
214 }
215
216 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530217 * Returns the list of leaf-list.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530218 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530219 * @return the list of leaf-list
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530220 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530221 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530222 public List<YangLeafList> getListOfLeafList() {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530223 return listOfLeafList;
224 }
225
226 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530227 * Sets the list of leaf-list.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530228 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530229 * @param listOfLeafList the list of leaf-list to set
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530230 */
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530231 @Override
232 public void setListOfLeafList(List<YangLeafList> listOfLeafList) {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530233 this.listOfLeafList = listOfLeafList;
234 }
235
236 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530237 * Adds a leaf-list.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530238 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530239 * @param leafList the leaf-list to be added
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530240 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530241 @Override
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530242 public void addLeafList(YangLeafList leafList) {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530243 if (getListOfLeafList() == null) {
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530244 setListOfLeafList(new LinkedList<YangLeafList>());
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530245 }
246
247 getListOfLeafList().add(leafList);
248 }
249
250 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530251 * Returns the textual reference.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530252 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530253 * @return the reference
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530254 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530255 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530256 public String getReference() {
257 return reference;
258 }
259
260 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530261 * Sets the textual reference.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530262 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530263 * @param reference the reference to set
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530264 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530265 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530266 public void setReference(String reference) {
267 this.reference = reference;
268 }
269
270 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530271 * Returns the status.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530272 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530273 * @return the status
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530274 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530275 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530276 public YangStatusType getStatus() {
277 return status;
278 }
279
280 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530281 * Sets the status.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530282 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530283 * @param status the status to set
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530284 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530285 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530286 public void setStatus(YangStatusType status) {
287 this.status = status;
288 }
289
290 /**
291 * Returns the type of the data as belongs-to.
292 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530293 * @return returns AUGMENT_DATA
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530294 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530295 @Override
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530296 public YangConstructType getYangConstructType() {
297 return YangConstructType.AUGMENT_DATA;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530298 }
299
300 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530301 * Validates the data on entering the corresponding parse tree node.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530302 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530303 * @throws DataModelException a violation of data model rules
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530304 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530305 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530306 public void validateDataOnEntry()
307 throws DataModelException {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530308 // TODO auto-generated method stub, to be implemented by parser
309 }
310
311 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530312 * Validates the data on exiting the corresponding parse tree node.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530313 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530314 * @throws DataModelException a violation of data model rules
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530315 */
Bharat saraswal870c56f2016-02-20 21:57:16 +0530316 @Override
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530317 public void validateDataOnExit()
318 throws DataModelException {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530319 // TODO auto-generated method stub, to be implemented by parser
320 }
321
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530322 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530323 * Returns the target nodes name where the augmentation is being done.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530324 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530325 * @return target nodes name where the augmentation is being done
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530326 */
327 @Override
328 public String getName() {
Vidyashree Rama25bf4d02016-03-29 14:37:02 +0530329 return name;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530330 }
331
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530332 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530333 * Sets the target nodes name where the augmentation is being done.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530334 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530335 * @param name target nodes name where the augmentation is being done
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530336 */
337 @Override
338 public void setName(String name) {
Vidyashree Rama25bf4d02016-03-29 14:37:02 +0530339 this.name = name;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530340 }
341
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530342}