blob: e5b098bd72b1723123ed029b73c470e65803d671 [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
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053019import org.onosproject.yangutils.datamodel.YangDataTypes;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053020import org.onosproject.yangutils.datamodel.YangDerivedInfo;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053021import org.onosproject.yangutils.datamodel.YangLeaf;
22import org.onosproject.yangutils.datamodel.YangLeafList;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053023import org.onosproject.yangutils.datamodel.YangNode;
24import org.onosproject.yangutils.datamodel.YangNodeIdentifier;
25import org.onosproject.yangutils.datamodel.YangResolutionInfo;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053026import org.onosproject.yangutils.datamodel.YangType;
Vinod Kumar S71cba682016-02-25 15:52:16 +053027import org.onosproject.yangutils.datamodel.YangTypeDef;
Gaurav Agrawalbd804472016-03-25 11:25:36 +053028import org.onosproject.yangutils.datamodel.YangUnion;
29import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053030import org.onosproject.yangutils.parser.Parsable;
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
Vinod Kumar Sd4deb062016-04-15 18:08:57 +053035import static org.onosproject.yangutils.datamodel.ResolvableStatus.UNRESOLVED;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053036import static org.onosproject.yangutils.datamodel.utils.DataModelUtils.addResolutionInfo;
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053037import static org.onosproject.yangutils.datamodel.utils.GeneratedLanguage.JAVA_GENERATION;
38import static org.onosproject.yangutils.datamodel.utils.YangDataModelFactory.getYangType;
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;
Vinod Kumar Sd4deb062016-04-15 18:08:57 +053041import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction
42 .constructExtendedListenerErrorMessage;
43import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction
44 .constructListenerErrorMessage;
Vidyashree Rama59071f32016-02-20 19:27:56 +053045import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053046import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_CURRENT_HOLDER;
Vidyashree Rama59071f32016-02-20 19:27:56 +053047import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053048import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.UNHANDLED_PARSED_DATA;
49import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.getValidNodeIdentifier;
Vidyashree Rama59071f32016-02-20 19:27:56 +053050import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Vinod Kumar Sc4216002016-03-03 19:55:30 +053051import static org.onosproject.yangutils.utils.YangConstructType.TYPE_DATA;
Vidyashree Rama59071f32016-02-20 19:27:56 +053052
Vidyashree Rama92fc5562016-02-12 18:44:12 +053053/*
54 * Reference: RFC6020 and YANG ANTLR Grammar
55 *
56 * ABNF grammar as per RFC6020
57 * type-stmt = type-keyword sep identifier-ref-arg-str optsep
58 * (";" /
59 * "{" stmtsep
60 * type-body-stmts
61 * "}")
62 *
63 * ANTLR grammar rule
64 * typeStatement : TYPE_KEYWORD string (STMTEND | LEFT_CURLY_BRACE typeBodyStatements RIGHT_CURLY_BRACE);
65 */
66
67/**
Bharat saraswald9822e92016-04-05 15:13:44 +053068 * Represents listener based call back function corresponding to the "type" rule
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053069 * defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
Vidyashree Rama92fc5562016-02-12 18:44:12 +053070 */
71public final class TypeListener {
72
73 /**
74 * Creates a new type listener.
75 */
76 private TypeListener() {
77 }
78
79 /**
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053080 * It is called when parser receives an input matching the grammar rule
81 * (type), performs validation and updates the data model tree.
Vidyashree Rama92fc5562016-02-12 18:44:12 +053082 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053083 * @param listener listener's object
84 * @param ctx context object of the grammar rule
Vidyashree Rama92fc5562016-02-12 18:44:12 +053085 */
86 public static void processTypeEntry(TreeWalkListener listener,
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053087 GeneratedYangParser.TypeStatementContext ctx) {
Vidyashree Rama92fc5562016-02-12 18:44:12 +053088
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053089 // Check for stack to be non empty.
Vidyashree Rama59071f32016-02-20 19:27:56 +053090 checkStackIsNotEmpty(listener, MISSING_HOLDER, TYPE_DATA, ctx.string().getText(), ENTRY);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053091
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053092 // Validate node identifier.
Vidyashree Rama7142d9c2016-04-26 15:06:06 +053093 YangNodeIdentifier nodeIdentifier = getValidNodeIdentifier(ctx.string().getText(), TYPE_DATA,
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053094 ctx);
Vinod Kumar S71cba682016-02-25 15:52:16 +053095
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053096 // Obtain the YANG data type.
97 YangDataTypes yangDataTypes = YangDataTypes.getType(ctx.string().getText());
98
99 // 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
136 YangResolutionInfo resolutionInfo = new YangResolutionInfo<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
Vinod Kumar Sd4deb062016-04-15 18:08:57 +0530166 YangResolutionInfo resolutionInfo =
167 new YangResolutionInfo<YangType>(type, (YangNode) parentNodeOfLeafList, errorLine,
168 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
193 // Add resolution information to the list
194 YangResolutionInfo resolutionInfo =
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530195 new YangResolutionInfo<YangType>(type, unionNode, errorLine, errorPosition);
Gaurav Agrawal338735b2016-04-18 18:53:11 +0530196 addToResolutionList(resolutionInfo, ctx);
197 }
198
Gaurav Agrawalbd804472016-03-25 11:25:36 +0530199 break;
Vinod Kumar S71cba682016-02-25 15:52:16 +0530200 case TYPEDEF_DATA:
Vinod Kumar S71cba682016-02-25 15:52:16 +0530201 /* Prepare the base type info and set in derived type */
202 YangTypeDef typeDef = (YangTypeDef) tmpData;
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530203 typeDef.setDataType(type);
Vinod Kumar S71cba682016-02-25 15:52:16 +0530204
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530205 /*
206 * If data type is derived, resolution information to be added
207 * in resolution list.
208 */
209 if (yangDataTypes == YangDataTypes.DERIVED) {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530210 // Create empty derived info and attach it to type extended info.
211 YangDerivedInfo<?> yangDerivedInfo = new YangDerivedInfo<>();
212 ((YangType<YangDerivedInfo>) type).setDataTypeExtendedInfo(yangDerivedInfo);
213
214 // Add resolution information to the list
Vinod Kumar Sd4deb062016-04-15 18:08:57 +0530215 YangResolutionInfo resolutionInfo =
Vidyashree Rama7142d9c2016-04-26 15:06:06 +0530216 new YangResolutionInfo<YangType>(type, typeDef, errorLine, errorPosition);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530217 addToResolutionList(resolutionInfo, ctx);
218 }
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530219 break;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530220 //TODO: deviate replacement statement.case TYPEDEF_DATA: //TODO
Vinod Kumar S71cba682016-02-25 15:52:16 +0530221
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530222 default:
Vidyashree Rama59071f32016-02-20 19:27:56 +0530223 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, TYPE_DATA,
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530224 ctx.string().getText(), EXIT));
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530225 }
Vidyashree Ramaa2f73982016-04-12 23:33:33 +0530226
227 // Push the type to the stack.
228 listener.getParsedDataStack().push(type);
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530229 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530230
231 /**
Vidyashree Ramaa2f73982016-04-12 23:33:33 +0530232 * It is called when parser exits from grammar rule (type), it perform
233 * validations and update the data model tree.
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530234 *
Vidyashree Ramaa2f73982016-04-12 23:33:33 +0530235 * @param listener Listener's object
236 * @param ctx context object of the grammar rule
237 */
238 public static void processTypeExit(TreeWalkListener listener,
239 GeneratedYangParser.TypeStatementContext ctx) {
240
241 // Check for stack to be non empty.
242 checkStackIsNotEmpty(listener, MISSING_CURRENT_HOLDER, TYPE_DATA, ctx.string().getText(), EXIT);
243
244 Parsable parsableType = listener.getParsedDataStack().pop();
245 if (!(parsableType instanceof YangType)) {
246 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, TYPE_DATA,
247 ctx.string().getText(), EXIT));
248 }
249 }
250
251 /**
252 * Adds to resolution list.
253 *
254 * @param resolutionInfo resolution information
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530255 * @param ctx context object of the grammar rule
256 */
257 private static void addToResolutionList(YangResolutionInfo<YangType> resolutionInfo,
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530258 GeneratedYangParser.TypeStatementContext ctx) {
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530259 try {
260 addResolutionInfo(resolutionInfo);
261 } catch (DataModelException e) {
262 throw new ParserException(constructExtendedListenerErrorMessage(UNHANDLED_PARSED_DATA,
263 TYPE_DATA, ctx.string().getText(), EXIT, e.getMessage()));
264 }
265 }
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530266}