blob: 49a96d9df12c871acbabcb773f7c5379d036a809 [file] [log] [blame]
Vinod Kumar S5a39e012016-02-16 01:37:16 +05301/*
Brian O'Connor0f7908b2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vinod Kumar S5a39e012016-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 S5a39e012016-02-16 01:37:16 +053018import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
19import org.onosproject.yangutils.parser.Parsable;
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +053020import org.onosproject.yangutils.utils.YangConstructType;
Vinod Kumar S9f26ae52016-03-23 15:30:27 +053021
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +053022import static org.onosproject.yangutils.utils.YangConstructType.CHOICE_DATA;
Vinod Kumar S5a39e012016-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 saraswal63f26fb2016-04-05 15:13:44 +053060 * Represents data model node to maintain information defined in YANG choice.
Vinod Kumar S5a39e012016-02-16 01:37:16 +053061 */
Bharat saraswal4aaab4d2016-05-17 14:19:38 +053062public class YangChoice extends YangNode
63 implements YangCommonInfo, Parsable, CollisionDetector, YangAugmentationHolder {
Vinod Kumar S5a39e012016-02-16 01:37:16 +053064
65 /**
66 * Name of choice.
67 */
68 private String name;
69
70 /**
Vinod Kumar S5a39e012016-02-16 01:37:16 +053071 * If the choice represents config data.
72 */
73 private boolean isConfig;
74
75 /**
76 * Reference RFC 6020.
77 *
78 * The "default" statement indicates if a case should be considered as the
79 * default if no child nodes from any of the choice's cases exist. The
80 * argument is the identifier of the "case" statement. If the "default"
81 * statement is missing, there is no default case.
82 *
83 * The "default" statement MUST NOT be present on choices where "mandatory"
84 * is true.
85 *
86 * The default case is only important when considering the default values of
87 * nodes under the cases. The default values for nodes under the default
88 * case are used if none of the nodes under any of the cases are present.
89 *
90 * There MUST NOT be any mandatory nodes directly under the default case.
91 *
92 * Default values for child nodes under a case are only used if one of the
93 * nodes under that case is present, or if that case is the default case. If
94 * none of the nodes under a case are present and the case is not the
95 * default case, the default values of the cases' child nodes are ignored.
96 *
97 * the default case to be used if no case members is present.
98 */
99 private String defaultCase;
100
101 /**
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530102 * Description of choice.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530103 */
104 private String description;
105
106 /**
107 * Reference RFC 6020.
108 *
109 * The "mandatory" statement, which is optional, takes as an argument the
110 * string "true" or "false", and puts a constraint on valid data. If
111 * "mandatory" is "true", at least one node from exactly one of the choice's
112 * case branches MUST exist.
113 *
114 * If not specified, the default is "false".
115 *
116 * The behavior of the constraint depends on the type of the choice's
117 * closest ancestor node in the schema tree which is not a non-presence
118 * container:
119 *
120 * o If this ancestor is a case node, the constraint is enforced if any
121 * other node from the case exists.
122 *
123 * o Otherwise, it is enforced if the ancestor node exists.
124 */
125 private String mandatory;
126
127 /**
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530128 * Reference of the choice.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530129 */
130 private String reference;
131
132 /**
133 * Status of the node.
134 */
135 private YangStatusType status;
136
137 /**
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530138 * Create a choice node.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530139 */
140 public YangChoice() {
141 super(YangNodeType.CHOICE_NODE);
142 }
143
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530144 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530145 * Returns the choice name.
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530146 *
147 * @return choice name
148 */
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530149 @Override
150 public String getName() {
151 return name;
152 }
153
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530154 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530155 * Sets the choice name.
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530156 *
157 * @param name choice name
158 */
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530159 @Override
160 public void setName(String name) {
161 this.name = name;
162 }
163
164 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530165 * Returns config flag.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530166 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530167 * @return the config flag
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530168 */
169 public boolean isConfig() {
170 return isConfig;
171 }
172
173 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530174 * Sets config flag.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530175 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530176 * @param isCfg the config flag
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530177 */
178 public void setConfig(boolean isCfg) {
179 isConfig = isCfg;
180 }
181
182 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530183 * Returns the default case.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530184 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530185 * @return the default case
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530186 */
187 public String getDefaultCase() {
188 return defaultCase;
189 }
190
191 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530192 * Sets the default case.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530193 *
194 * @param defaultCase the default case to set
195 */
196 public void setDefaultCase(String defaultCase) {
197 this.defaultCase = defaultCase;
198 }
199
200 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530201 * Returns the mandatory status.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530202 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530203 * @return the mandatory status
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530204 */
205 public String getMandatory() {
206 return mandatory;
207 }
208
209 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530210 * Sets the mandatory status.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530211 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530212 * @param mandatory the mandatory status
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530213 */
214 public void setMandatory(String mandatory) {
215 this.mandatory = mandatory;
216 }
217
218 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530219 * Returns the description.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530220 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530221 * @return the description
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530222 */
Bharat saraswal5e3c45c2016-02-22 22:15:21 +0530223 @Override
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530224 public String getDescription() {
225 return description;
226 }
227
228 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530229 * Sets the description.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530230 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530231 * @param description set the description
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530232 */
Bharat saraswal5e3c45c2016-02-22 22:15:21 +0530233 @Override
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530234 public void setDescription(String description) {
235 this.description = description;
236 }
237
238 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530239 * Returns the textual reference.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530240 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530241 * @return the reference
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530242 */
Bharat saraswal5e3c45c2016-02-22 22:15:21 +0530243 @Override
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530244 public String getReference() {
245 return reference;
246 }
247
248 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530249 * Sets the textual reference.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530250 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530251 * @param reference the reference to set
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530252 */
Bharat saraswal5e3c45c2016-02-22 22:15:21 +0530253 @Override
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530254 public void setReference(String reference) {
255 this.reference = reference;
256 }
257
258 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530259 * Returns the status.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530260 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530261 * @return the status
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530262 */
Bharat saraswal5e3c45c2016-02-22 22:15:21 +0530263 @Override
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530264 public YangStatusType getStatus() {
265 return status;
266 }
267
268 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530269 * Sets the status.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530270 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530271 * @param status the status to set
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530272 */
Bharat saraswal5e3c45c2016-02-22 22:15:21 +0530273 @Override
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530274 public void setStatus(YangStatusType status) {
275 this.status = status;
276 }
277
278 /**
279 * Returns the type of the data.
280 *
Vidyashree Rama13960652016-04-26 15:06:06 +0530281 * @return choice data
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530282 */
Bharat saraswal5e3c45c2016-02-22 22:15:21 +0530283 @Override
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530284 public YangConstructType getYangConstructType() {
Vidyashree Rama13960652016-04-26 15:06:06 +0530285 return CHOICE_DATA;
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530286 }
287
288 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530289 * Validates the data on entering the corresponding parse tree node.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530290 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530291 * @throws DataModelException a violation of data model rules
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530292 */
Bharat saraswal5e3c45c2016-02-22 22:15:21 +0530293 @Override
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530294 public void validateDataOnEntry() throws DataModelException {
295 // TODO auto-generated method stub, to be implemented by parser
296 }
297
298 /**
Bharat saraswal63f26fb2016-04-05 15:13:44 +0530299 * Validates the data on exiting the corresponding parse tree node.
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530300 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530301 * @throws DataModelException a violation of data model rules
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530302 */
Bharat saraswal5e3c45c2016-02-22 22:15:21 +0530303 @Override
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530304 public void validateDataOnExit() throws DataModelException {
305 // TODO auto-generated method stub, to be implemented by parser
306 }
307
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530308 @Override
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530309 public void detectCollidingChild(String identifierName, YangConstructType dataType) throws DataModelException {
310
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530311 if (this.getParent() instanceof YangCase && dataType != YangConstructType.CASE_DATA) {
312 ((CollisionDetector) getParent()).detectCollidingChild(identifierName, dataType);
313 }
314 YangNode node = getChild();
315 while (node != null) {
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530316 if (node instanceof CollisionDetector) {
317 ((CollisionDetector) node).detectSelfCollision(identifierName, dataType);
318 }
319 node = node.getNextSibling();
320 }
321 }
322
323 @Override
324 public void detectSelfCollision(String identifierName, YangConstructType dataType) throws DataModelException {
325
326 if (dataType == CHOICE_DATA) {
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530327 if (getName().equals(identifierName)) {
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530328 throw new DataModelException("YANG file error: Identifier collision detected in choice \"" +
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530329 getName() + "\"");
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530330 }
331 return;
332 }
333
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530334 YangNode node = getChild();
335 while (node != null) {
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530336 if (node instanceof CollisionDetector) {
337 ((CollisionDetector) node).detectSelfCollision(identifierName, dataType);
338 }
339 node = node.getNextSibling();
340 }
341 }
Vinod Kumar S5a39e012016-02-16 01:37:16 +0530342}