blob: de595f501f337cc475d4567dfceafae4e8cd9252 [file] [log] [blame]
Vidyashree Rama92fc5562016-02-12 18:44:12 +05301/*
2 * Copyright 2016 Open Networking Laboratory
3 *
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;
20import org.onosproject.yangutils.datamodel.YangLeaf;
21import org.onosproject.yangutils.datamodel.YangLeafList;
22import org.onosproject.yangutils.datamodel.YangType;
23import org.onosproject.yangutils.parser.Parsable;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053024import static org.onosproject.yangutils.parser.ParsableDataType.TYPE_DATA;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053025import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053026import org.onosproject.yangutils.parser.exceptions.ParserException;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053027import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Vidyashree Rama59071f32016-02-20 19:27:56 +053028import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053029import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.EXIT;
Vidyashree Rama59071f32016-02-20 19:27:56 +053030import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
31import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053032import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_CURRENT_HOLDER;
Vidyashree Rama59071f32016-02-20 19:27:56 +053033import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
34import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
35
Vidyashree Rama92fc5562016-02-12 18:44:12 +053036/*
37 * Reference: RFC6020 and YANG ANTLR Grammar
38 *
39 * ABNF grammar as per RFC6020
40 * type-stmt = type-keyword sep identifier-ref-arg-str optsep
41 * (";" /
42 * "{" stmtsep
43 * type-body-stmts
44 * "}")
45 *
46 * ANTLR grammar rule
47 * typeStatement : TYPE_KEYWORD string (STMTEND | LEFT_CURLY_BRACE typeBodyStatements RIGHT_CURLY_BRACE);
48 */
49
50/**
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053051 * Implements listener based call back function corresponding to the "type" rule
52 * defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
Vidyashree Rama92fc5562016-02-12 18:44:12 +053053 */
54public final class TypeListener {
55
56 /**
57 * Creates a new type listener.
58 */
59 private TypeListener() {
60 }
61
62 /**
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053063 * It is called when parser receives an input matching the grammar rule
64 * (type), performs validation and updates the data model tree.
Vidyashree Rama92fc5562016-02-12 18:44:12 +053065 *
66 * @param listener listener's object.
67 * @param ctx context object of the grammar rule.
68 */
69 public static void processTypeEntry(TreeWalkListener listener,
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053070 GeneratedYangParser.TypeStatementContext ctx) {
Vidyashree Rama92fc5562016-02-12 18:44:12 +053071
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053072 // Check for stack to be non empty.
Vidyashree Rama59071f32016-02-20 19:27:56 +053073 checkStackIsNotEmpty(listener, MISSING_HOLDER, TYPE_DATA, ctx.string().getText(), ENTRY);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053074
75 YangType type = new YangType();
76 YangDataTypes yangDataTypes = YangDataTypes.getType(ctx.string().getText());
77 type.setDataTypeName(ctx.string().getText());
78 type.setDataType(yangDataTypes);
79
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053080 listener.getParsedDataStack().push(type);
81 }
82
83 /**
84 * It is called when parser exits from grammar rule (type), it perform
85 * validations and update the data model tree.
86 *
87 * @param listener Listener's object.
88 * @param ctx context object of the grammar rule.
89 */
90 public static void processTypeExit(TreeWalkListener listener,
91 GeneratedYangParser.TypeStatementContext ctx) {
92
93 // Check for stack to be non empty.
94 checkStackIsNotEmpty(listener, MISSING_CURRENT_HOLDER, TYPE_DATA, ctx.string().getText(), EXIT);
95
96 Parsable type = listener.getParsedDataStack().pop();
97 if (!(type instanceof YangType)) {
98 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, TYPE_DATA,
99 ctx.string().getText(), EXIT));
100 }
101
102 // Check for stack to be non empty.
103 checkStackIsNotEmpty(listener, MISSING_HOLDER, TYPE_DATA, ctx.string().getText(), EXIT);
104
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530105 Parsable tmpData = listener.getParsedDataStack().peek();
106 switch (tmpData.getParsableDataType()) {
107 case LEAF_DATA:
108 YangLeaf leaf = (YangLeaf) tmpData;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530109 leaf.setDataType((YangType) type);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530110 break;
111 case LEAF_LIST_DATA:
112 YangLeafList leafList = (YangLeafList) tmpData;
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530113 leafList.setDataType((YangType) type);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530114 break;
115 case TYPEDEF_DATA: //TODO
116 break;
117 default:
Vidyashree Rama59071f32016-02-20 19:27:56 +0530118 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, TYPE_DATA,
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530119 ctx.string().getText(), EXIT));
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530120 }
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530121 }
Gaurav Agrawal9c512e02016-02-25 04:37:05 +0530122}