blob: 85ba10785fb05b52eb289c6d0f12d044c63886d1 [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
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053018import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
Bharat saraswal96dfef02016-06-16 00:29:12 +053019import org.onosproject.yangutils.datamodel.utils.Parsable;
20import org.onosproject.yangutils.datamodel.utils.YangConstructType;
Vinod Kumar S38046502016-03-23 15:30:27 +053021
Bharat saraswal96dfef02016-06-16 00:29:12 +053022import static org.onosproject.yangutils.datamodel.utils.YangConstructType.CHOICE_DATA;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053023
24/*-
25 * Reference RFC 6020.
26 *
27 * The "choice" statement defines a set of alternatives, only one of
28 * which may exist at any one time. The argument is an identifier,
29 * followed by a block of sub-statements that holds detailed choice
30 * information. The identifier is used to identify the choice node in
31 * the schema tree. A choice node does not exist in the data tree.
32 *
33 * A choice consists of a number of branches, defined with the "case"
34 * sub-statement. Each branch contains a number of child nodes. The
35 * nodes from at most one of the choice's branches exist at the same
36 * time.
37 *
38 * The choice's sub-statements
39 *
40 * +--------------+---------+-------------+------------------+
41 * | substatement | section | cardinality |data model mapping|
42 * +--------------+---------+-------------+------------------+
43 * | anyxml | 7.10 | 0..n |-not supported |
44 * | case | 7.9.2 | 0..n |-YangChoice |
45 * | config | 7.19.1 | 0..1 |-boolean |
46 * | container | 7.5 | 0..n |-child case nodes |
47 * | default | 7.9.3 | 0..1 |-string |
48 * | description | 7.19.3 | 0..1 |-string |
49 * | if-feature | 7.18.2 | 0..n |-TODO |
50 * | leaf | 7.6 | 0..n |-child case nodes |
51 * | leaf-list | 7.7 | 0..n |-child case nodes |
52 * | list | 7.8 | 0..n |-child case nodes |
53 * | mandatory | 7.9.4 | 0..1 |-string |
54 * | reference | 7.19.4 | 0..1 |-string |
55 * | status | 7.19.2 | 0..1 |-string |
56 * | when | 7.19.5 | 0..1 |-TODO |
57 * +--------------+---------+-------------+------------------+
58 */
59/**
Bharat saraswald9822e92016-04-05 15:13:44 +053060 * Represents data model node to maintain information defined in YANG choice.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053061 */
Bharat saraswalab4c6ba2016-05-17 14:19:38 +053062public class YangChoice extends YangNode
63 implements YangCommonInfo, Parsable, CollisionDetector, YangAugmentationHolder {
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053064
Bharat saraswal96dfef02016-06-16 00:29:12 +053065 private static final long serialVersionUID = 806201604L;
66
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053067 /**
68 * Name of choice.
69 */
70 private String name;
71
72 /**
Vinod Kumar S2ff139c2016-02-16 01:37:16 +053073 * If the choice represents config data.
74 */
75 private boolean isConfig;
76
77 /**
78 * Reference RFC 6020.
79 *
80 * The "default" statement indicates if a case should be considered as the
81 * default if no child nodes from any of the choice's cases exist. The
82 * argument is the identifier of the "case" statement. If the "default"
83 * statement is missing, there is no default case.
84 *
85 * The "default" statement MUST NOT be present on choices where "mandatory"
86 * is true.
87 *
88 * The default case is only important when considering the default values of
89 * nodes under the cases. The default values for nodes under the default
90 * case are used if none of the nodes under any of the cases are present.
91 *
92 * There MUST NOT be any mandatory nodes directly under the default case.
93 *
94 * Default values for child nodes under a case are only used if one of the
95 * nodes under that case is present, or if that case is the default case. If
96 * none of the nodes under a case are present and the case is not the
97 * default case, the default values of the cases' child nodes are ignored.
98 *
99 * the default case to be used if no case members is present.
100 */
101 private String defaultCase;
102
103 /**
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530104 * Description of choice.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530105 */
106 private String description;
107
108 /**
109 * Reference RFC 6020.
110 *
111 * The "mandatory" statement, which is optional, takes as an argument the
112 * string "true" or "false", and puts a constraint on valid data. If
113 * "mandatory" is "true", at least one node from exactly one of the choice's
114 * case branches MUST exist.
115 *
116 * If not specified, the default is "false".
117 *
118 * The behavior of the constraint depends on the type of the choice's
119 * closest ancestor node in the schema tree which is not a non-presence
120 * container:
121 *
122 * o If this ancestor is a case node, the constraint is enforced if any
123 * other node from the case exists.
124 *
125 * o Otherwise, it is enforced if the ancestor node exists.
126 */
127 private String mandatory;
128
129 /**
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530130 * Reference of the choice.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530131 */
132 private String reference;
133
134 /**
135 * Status of the node.
136 */
137 private YangStatusType status;
138
139 /**
Vidyashree Rama1db15562016-05-17 16:16:15 +0530140 * Default value in string, needs to be converted to the target object,
141 * based on the type.
142 */
143 private String defaultValueInString;
144
145 /**
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530146 * Create a choice node.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530147 */
148 public YangChoice() {
149 super(YangNodeType.CHOICE_NODE);
150 }
151
Vinod Kumar S38046502016-03-23 15:30:27 +0530152 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530153 * Returns the choice name.
Vinod Kumar S38046502016-03-23 15:30:27 +0530154 *
155 * @return choice name
156 */
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530157 @Override
158 public String getName() {
159 return name;
160 }
161
Vinod Kumar S38046502016-03-23 15:30:27 +0530162 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530163 * Sets the choice name.
Vinod Kumar S38046502016-03-23 15:30:27 +0530164 *
165 * @param name choice name
166 */
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530167 @Override
168 public void setName(String name) {
169 this.name = name;
170 }
171
172 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530173 * Returns config flag.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530174 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530175 * @return the config flag
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530176 */
177 public boolean isConfig() {
178 return isConfig;
179 }
180
181 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530182 * Sets config flag.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530183 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530184 * @param isCfg the config flag
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530185 */
186 public void setConfig(boolean isCfg) {
187 isConfig = isCfg;
188 }
189
190 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530191 * Returns the default case.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530192 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530193 * @return the default case
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530194 */
195 public String getDefaultCase() {
196 return defaultCase;
197 }
198
199 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530200 * Sets the default case.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530201 *
202 * @param defaultCase the default case to set
203 */
204 public void setDefaultCase(String defaultCase) {
205 this.defaultCase = defaultCase;
206 }
207
208 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530209 * Returns the mandatory status.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530210 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530211 * @return the mandatory status
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530212 */
213 public String getMandatory() {
214 return mandatory;
215 }
216
217 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530218 * Sets the mandatory status.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530219 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530220 * @param mandatory the mandatory status
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530221 */
222 public void setMandatory(String mandatory) {
223 this.mandatory = mandatory;
224 }
225
226 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530227 * Returns the description.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530228 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530229 * @return the description
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530230 */
Bharat saraswal594bc6d2016-02-22 22:15:21 +0530231 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530232 public String getDescription() {
233 return description;
234 }
235
236 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530237 * Sets the description.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530238 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530239 * @param description set the description
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530240 */
Bharat saraswal594bc6d2016-02-22 22:15:21 +0530241 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530242 public void setDescription(String description) {
243 this.description = description;
244 }
245
246 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530247 * Returns the textual reference.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530248 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530249 * @return the reference
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530250 */
Bharat saraswal594bc6d2016-02-22 22:15:21 +0530251 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530252 public String getReference() {
253 return reference;
254 }
255
256 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530257 * Sets the textual reference.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530258 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530259 * @param reference the reference to set
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530260 */
Bharat saraswal594bc6d2016-02-22 22:15:21 +0530261 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530262 public void setReference(String reference) {
263 this.reference = reference;
264 }
265
266 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530267 * Returns the status.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530268 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530269 * @return the status
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530270 */
Bharat saraswal594bc6d2016-02-22 22:15:21 +0530271 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530272 public YangStatusType getStatus() {
273 return status;
274 }
275
276 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530277 * Sets the status.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530278 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530279 * @param status the status to set
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530280 */
Bharat saraswal594bc6d2016-02-22 22:15:21 +0530281 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530282 public void setStatus(YangStatusType status) {
283 this.status = status;
284 }
285
286 /**
Vidyashree Rama1db15562016-05-17 16:16:15 +0530287 * Returns the default value.
288 *
289 * @return the default value
290 */
291 public String getDefaultValueInString() {
292 return defaultValueInString;
293 }
294
295 /**
296 * Sets the default value.
297 *
298 * @param defaultValueInString the default value
299 */
300 public void setDefaultValueInString(String defaultValueInString) {
301 this.defaultValueInString = defaultValueInString;
302 }
303
304 /**
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530305 * Returns the type of the data.
306 *
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530307 * @return choice data
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530308 */
Bharat saraswal594bc6d2016-02-22 22:15:21 +0530309 @Override
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530310 public YangConstructType getYangConstructType() {
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530311 return CHOICE_DATA;
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530312 }
313
314 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530315 * Validates the data on entering the corresponding parse tree node.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530316 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530317 * @throws DataModelException a violation of data model rules
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530318 */
Bharat saraswal594bc6d2016-02-22 22:15:21 +0530319 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530320 public void validateDataOnEntry() throws DataModelException {
321 // TODO auto-generated method stub, to be implemented by parser
322 }
323
324 /**
Bharat saraswald9822e92016-04-05 15:13:44 +0530325 * Validates the data on exiting the corresponding parse tree node.
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530326 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530327 * @throws DataModelException a violation of data model rules
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530328 */
Bharat saraswal594bc6d2016-02-22 22:15:21 +0530329 @Override
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530330 public void validateDataOnExit() throws DataModelException {
331 // TODO auto-generated method stub, to be implemented by parser
332 }
333
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530334 @Override
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530335 public void detectCollidingChild(String identifierName, YangConstructType dataType) throws DataModelException {
336
Bharat saraswal96dfef02016-06-16 00:29:12 +0530337 if (getParent() instanceof YangCase && dataType != YangConstructType.CASE_DATA) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530338 ((CollisionDetector) getParent()).detectCollidingChild(identifierName, dataType);
339 }
340 YangNode node = getChild();
341 while (node != null) {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530342 if (node instanceof CollisionDetector) {
343 ((CollisionDetector) node).detectSelfCollision(identifierName, dataType);
344 }
345 node = node.getNextSibling();
346 }
347 }
348
349 @Override
350 public void detectSelfCollision(String identifierName, YangConstructType dataType) throws DataModelException {
351
352 if (dataType == CHOICE_DATA) {
Vinod Kumar S38046502016-03-23 15:30:27 +0530353 if (getName().equals(identifierName)) {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530354 throw new DataModelException("YANG file error: Identifier collision detected in choice \"" +
Vinod Kumar S38046502016-03-23 15:30:27 +0530355 getName() + "\"");
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530356 }
357 return;
358 }
359
Vinod Kumar S38046502016-03-23 15:30:27 +0530360 YangNode node = getChild();
361 while (node != null) {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530362 if (node instanceof CollisionDetector) {
363 ((CollisionDetector) node).detectSelfCollision(identifierName, dataType);
364 }
365 node = node.getNextSibling();
366 }
367 }
Vinod Kumar S2ff139c2016-02-16 01:37:16 +0530368}