blob: 4043a8e4c44a057dbccd33ef28b9d16a94d92684 [file] [log] [blame]
Vidyashree Rama92fc5562016-02-12 18:44:12 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vidyashree Rama92fc5562016-02-12 18:44:12 +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 */
16
17package org.onosproject.yangutils.parser.impl.listeners;
18
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053019import org.onosproject.yangutils.datamodel.YangDerivedInfo;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053020import org.onosproject.yangutils.datamodel.YangLeaf;
21import org.onosproject.yangutils.datamodel.YangLeafList;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053022import org.onosproject.yangutils.datamodel.YangNode;
23import org.onosproject.yangutils.datamodel.YangNodeIdentifier;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053024import org.onosproject.yangutils.datamodel.YangType;
Vinod Kumar S71cba682016-02-25 15:52:16 +053025import org.onosproject.yangutils.datamodel.YangTypeDef;
Gaurav Agrawalbd804472016-03-25 11:25:36 +053026import org.onosproject.yangutils.datamodel.YangUnion;
27import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
Bharat saraswal96dfef02016-06-16 00:29:12 +053028import org.onosproject.yangutils.datamodel.utils.Parsable;
Vidyashree Rama528ef302016-06-30 14:31:18 +053029import org.onosproject.yangutils.datamodel.utils.builtindatatype.YangDataTypes;
Gaurav Agrawal95b416c2016-06-07 14:00:26 +053030import org.onosproject.yangutils.linker.impl.YangResolutionInfoImpl;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053031import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053032import org.onosproject.yangutils.parser.exceptions.ParserException;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053033import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Vinod Kumar S71cba682016-02-25 15:52:16 +053034
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053035import static org.onosproject.yangutils.datamodel.utils.DataModelUtils.addResolutionInfo;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053036import static org.onosproject.yangutils.datamodel.utils.GeneratedLanguage.JAVA_GENERATION;
Bharat saraswal96dfef02016-06-16 00:29:12 +053037import static org.onosproject.yangutils.datamodel.utils.ResolvableStatus.UNRESOLVED;
38import static org.onosproject.yangutils.datamodel.utils.YangConstructType.TYPE_DATA;
Vidyashree Rama59071f32016-02-20 19:27:56 +053039import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053040import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.EXIT;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053041import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructExtendedListenerErrorMessage;
42import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
Vidyashree Rama59071f32016-02-20 19:27:56 +053043import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053044import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_CURRENT_HOLDER;
Vidyashree Rama59071f32016-02-20 19:27:56 +053045import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053046import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.UNHANDLED_PARSED_DATA;
47import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.getValidNodeIdentifier;
Vidyashree Rama59071f32016-02-20 19:27:56 +053048import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Bharat saraswal96dfef02016-06-16 00:29:12 +053049import static org.onosproject.yangutils.translator.tojava.YangDataModelFactory.getYangType;
Vidyashree Rama59071f32016-02-20 19:27:56 +053050
Vidyashree Rama92fc5562016-02-12 18:44:12 +053051/*
52 * Reference: RFC6020 and YANG ANTLR Grammar
53 *
54 * ABNF grammar as per RFC6020
55 * type-stmt = type-keyword sep identifier-ref-arg-str optsep
56 * (";" /
57 * "{" stmtsep
58 * type-body-stmts
59 * "}")
60 *
61 * ANTLR grammar rule
62 * typeStatement : TYPE_KEYWORD string (STMTEND | LEFT_CURLY_BRACE typeBodyStatements RIGHT_CURLY_BRACE);
63 */
64
65/**
Bharat saraswald9822e92016-04-05 15:13:44 +053066 * Represents listener based call back function corresponding to the "type" rule
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053067 * defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
Vidyashree Rama92fc5562016-02-12 18:44:12 +053068 */
69public final class TypeListener {
70
71 /**
72 * Creates a new type listener.
73 */
74 private TypeListener() {
75 }
76
77 /**
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053078 * It is called when parser receives an input matching the grammar rule
79 * (type), performs validation and updates the data model tree.
Vidyashree Rama92fc5562016-02-12 18:44:12 +053080 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053081 * @param listener listener's object
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053082 * @param ctx context object of the grammar rule
Vidyashree Rama92fc5562016-02-12 18:44:12 +053083 */
84 public static void processTypeEntry(TreeWalkListener listener,
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053085 GeneratedYangParser.TypeStatementContext ctx) {
Vidyashree Rama92fc5562016-02-12 18:44:12 +053086
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053087 // Check for stack to be non empty.
Vidyashree Rama59071f32016-02-20 19:27:56 +053088 checkStackIsNotEmpty(listener, MISSING_HOLDER, TYPE_DATA, ctx.string().getText(), ENTRY);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053089
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053090 // Validate node identifier.
Vidyashree Rama7142d9c2016-04-26 15:06:06 +053091 YangNodeIdentifier nodeIdentifier = getValidNodeIdentifier(ctx.string().getText(), TYPE_DATA,
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053092 ctx);
Vinod Kumar S71cba682016-02-25 15:52:16 +053093
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053094 // Obtain the YANG data type.
95 YangDataTypes yangDataTypes = YangDataTypes.getType(ctx.string().getText());
96
Vidyashree Rama528ef302016-06-30 14:31:18 +053097 validateTypeSubStatementCardinality(ctx, yangDataTypes);
98
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053099 // Create YANG type object and fill the values.
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530100 YangType<?> type = getYangType(JAVA_GENERATION);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530101 type.setNodeIdentifier(nodeIdentifier);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530102 type.setDataType(yangDataTypes);
103
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530104 int errorLine = ctx.getStart().getLine();
105 int errorPosition = ctx.getStart().getCharPositionInLine();
106
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530107 Parsable tmpData = listener.getParsedDataStack().peek();
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530108 switch (tmpData.getYangConstructType()) {
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530109 case LEAF_DATA:
110 YangLeaf leaf = (YangLeaf) tmpData;
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530111 leaf.setDataType(type);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530112
113 /*
114 * If data type is derived, resolution information to be added
115 * in resolution list.
116 */
117 if (yangDataTypes == YangDataTypes.DERIVED) {
118 // Parent YANG node of leaf to be added in resolution information.
119 Parsable leafData = listener.getParsedDataStack().pop();
120 Parsable parentNodeOfLeaf = listener.getParsedDataStack().peek();
121 listener.getParsedDataStack().push(leafData);
122
123 // Verify parent node of leaf
124 if (!(parentNodeOfLeaf instanceof YangNode)) {
125 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, TYPE_DATA,
126 ctx.string().getText(), EXIT));
127 }
128
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530129 // Create empty derived info and attach it to type extended info.
130 YangDerivedInfo<?> yangDerivedInfo = new YangDerivedInfo<>();
131 ((YangType<YangDerivedInfo>) type).setDataTypeExtendedInfo(yangDerivedInfo);
132
Vinod Kumar Sd4deb062016-04-15 18:08:57 +0530133 type.setResolvableStatus(UNRESOLVED);
134
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530135 // Add resolution information to the list
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530136 YangResolutionInfoImpl resolutionInfo = new YangResolutionInfoImpl<YangType>(type,
Vinod Kumar Sd4deb062016-04-15 18:08:57 +0530137 (YangNode) parentNodeOfLeaf, errorLine, errorPosition);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530138 addToResolutionList(resolutionInfo, ctx);
139 }
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530140 break;
141 case LEAF_LIST_DATA:
142 YangLeafList leafList = (YangLeafList) tmpData;
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530143 leafList.setDataType(type);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530144
145 /*
146 * If data type is derived, resolution information to be added
147 * in resolution list.
148 */
149 if (yangDataTypes == YangDataTypes.DERIVED) {
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530150 // Parent YANG node of leaf list to be added in resolution information.
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530151 Parsable leafListData = listener.getParsedDataStack().pop();
152 Parsable parentNodeOfLeafList = listener.getParsedDataStack().peek();
153 listener.getParsedDataStack().push(leafListData);
154
155 // Verify parent node of leaf
156 if (!(parentNodeOfLeafList instanceof YangNode)) {
157 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, TYPE_DATA,
158 ctx.string().getText(), EXIT));
159 }
160
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530161 // Create empty derived info and attach it to type extended info.
162 YangDerivedInfo<?> yangDerivedInfo = new YangDerivedInfo<>();
163 ((YangType<YangDerivedInfo>) type).setDataTypeExtendedInfo(yangDerivedInfo);
164
165 // Add resolution information to the list
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530166 YangResolutionInfoImpl resolutionInfo =
167 new YangResolutionInfoImpl<YangType>(type, (YangNode) parentNodeOfLeafList, errorLine,
Vinod Kumar Sd4deb062016-04-15 18:08:57 +0530168 errorPosition);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530169 addToResolutionList(resolutionInfo, ctx);
170 }
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530171 break;
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530172 case UNION_DATA:
173 YangUnion unionNode = (YangUnion) tmpData;
174 try {
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530175 unionNode.addType(type);
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530176 } catch (DataModelException e) {
177 ParserException parserException = new ParserException(e.getMessage());
178 parserException.setLine(ctx.getStart().getLine());
179 parserException.setCharPosition(ctx.getStart().getCharPositionInLine());
180 throw parserException;
181 }
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530182
183 /*
184 * If data type is derived, resolution information to be added
185 * in resolution list.
186 */
187 if (yangDataTypes == YangDataTypes.DERIVED) {
188
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530189 // Create empty derived info and attach it to type extended info.
190 YangDerivedInfo<?> yangDerivedInfo = new YangDerivedInfo<>();
191 ((YangType<YangDerivedInfo>) type).setDataTypeExtendedInfo(yangDerivedInfo);
192
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530193 type.setResolvableStatus(UNRESOLVED);
194
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530195 // Add resolution information to the list
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530196 YangResolutionInfoImpl resolutionInfo =
197 new YangResolutionInfoImpl<YangType>(type, unionNode, errorLine, errorPosition);
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530198 addToResolutionList(resolutionInfo, ctx);
199 }
200
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530201 break;
Vinod Kumar S71cba682016-02-25 15:52:16 +0530202 case TYPEDEF_DATA:
Vinod Kumar S71cba682016-02-25 15:52:16 +0530203 /* Prepare the base type info and set in derived type */
204 YangTypeDef typeDef = (YangTypeDef) tmpData;
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530205 typeDef.setDataType(type);
Vinod Kumar S71cba682016-02-25 15:52:16 +0530206
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530207 /*
208 * If data type is derived, resolution information to be added
209 * in resolution list.
210 */
211 if (yangDataTypes == YangDataTypes.DERIVED) {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530212 // Create empty derived info and attach it to type extended info.
213 YangDerivedInfo<?> yangDerivedInfo = new YangDerivedInfo<>();
214 ((YangType<YangDerivedInfo>) type).setDataTypeExtendedInfo(yangDerivedInfo);
215
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530216 type.setResolvableStatus(UNRESOLVED);
217
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530218 // Add resolution information to the list
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530219 YangResolutionInfoImpl resolutionInfo =
220 new YangResolutionInfoImpl<YangType>(type, typeDef, errorLine, errorPosition);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530221 addToResolutionList(resolutionInfo, ctx);
222 }
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530223 break;
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530224 //TODO: deviate replacement statement.
Vinod Kumar S71cba682016-02-25 15:52:16 +0530225
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530226 default:
Vidyashree Rama59071f32016-02-20 19:27:56 +0530227 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, TYPE_DATA,
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530228 ctx.string().getText(), EXIT));
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530229 }
Vidyashree Ramaa2f73982016-04-12 23:33:33 +0530230
231 // Push the type to the stack.
232 listener.getParsedDataStack().push(type);
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530233 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530234
235 /**
Vidyashree Ramaa2f73982016-04-12 23:33:33 +0530236 * It is called when parser exits from grammar rule (type), it perform
237 * validations and update the data model tree.
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530238 *
Vidyashree Ramaa2f73982016-04-12 23:33:33 +0530239 * @param listener Listener's object
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530240 * @param ctx context object of the grammar rule
Vidyashree Ramaa2f73982016-04-12 23:33:33 +0530241 */
242 public static void processTypeExit(TreeWalkListener listener,
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530243 GeneratedYangParser.TypeStatementContext ctx) {
Vidyashree Ramaa2f73982016-04-12 23:33:33 +0530244
245 // Check for stack to be non empty.
246 checkStackIsNotEmpty(listener, MISSING_CURRENT_HOLDER, TYPE_DATA, ctx.string().getText(), EXIT);
247
248 Parsable parsableType = listener.getParsedDataStack().pop();
249 if (!(parsableType instanceof YangType)) {
250 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, TYPE_DATA,
251 ctx.string().getText(), EXIT));
252 }
253 }
254
255 /**
256 * Adds to resolution list.
257 *
258 * @param resolutionInfo resolution information
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530259 * @param ctx context object of the grammar rule
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530260 */
Gaurav Agrawal95b416c2016-06-07 14:00:26 +0530261 private static void addToResolutionList(YangResolutionInfoImpl<YangType> resolutionInfo,
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530262 GeneratedYangParser.TypeStatementContext ctx) {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530263 try {
264 addResolutionInfo(resolutionInfo);
265 } catch (DataModelException e) {
266 throw new ParserException(constructExtendedListenerErrorMessage(UNHANDLED_PARSED_DATA,
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +0530267 TYPE_DATA, ctx.string().getText(), ENTRY, e.getMessage()));
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530268 }
269 }
Vidyashree Rama528ef302016-06-30 14:31:18 +0530270
271 /**
272 * Validates type body statements cardinality.
273 *
274 * @param ctx context object of the grammar rule
275 * @param yangDataType yang data type
276 */
277 private static void validateTypeSubStatementCardinality(GeneratedYangParser.TypeStatementContext ctx,
278 YangDataTypes yangDataType) {
279 if (ctx.typeBodyStatements() == null || ctx.typeBodyStatements().isEmpty()) {
280 ParserException parserException;
281 switch (yangDataType) {
282 case UNION:
283 parserException = new ParserException("YANG file error : a type union" +
284 " must have atleast one type statement.");
285 break;
286 case ENUMERATION:
287 parserException = new ParserException("YANG file error : a type enumeration" +
288 " must have atleast one enum statement.");
289 break;
290 case BITS:
291 parserException = new ParserException("YANG file error : a type bits" +
292 " must have atleast one bit statement.");
293 break;
294 // TODO : decimal64, identity ref, leafref
295 default:
296 return;
297 }
298 parserException.setLine(ctx.getStart().getLine());
299 parserException.setCharPosition(ctx.getStart().getCharPositionInLine());
300 throw parserException;
301 }
302 }
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530303}