blob: 0a867ccef4952589c039d0a86e400478b7656cb7 [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.YangLeafList;
20import org.onosproject.yangutils.datamodel.YangLeavesHolder;
21import org.onosproject.yangutils.parser.Parsable;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053022import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053023import org.onosproject.yangutils.parser.exceptions.ParserException;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053024import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Vidyashree Rama468f8282016-03-04 19:08:35 +053025
26import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.getValidIdentifier;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053027import static org.onosproject.yangutils.parser.impl.parserutils.ListenerCollisionDetector.detectCollidingChildUtil;
Vidyashree Rama59071f32016-02-20 19:27:56 +053028import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
29import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.EXIT;
30import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
31import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
Vidyashree Rama59071f32016-02-20 19:27:56 +053032import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_CURRENT_HOLDER;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053033import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Vidyashree Rama59071f32016-02-20 19:27:56 +053034import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053035import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.validateCardinality;
36import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.validateCardinalityEqualsOne;
37import static org.onosproject.yangutils.utils.YangConstructType.CONFIG_DATA;
38import static org.onosproject.yangutils.utils.YangConstructType.DESCRIPTION_DATA;
39import static org.onosproject.yangutils.utils.YangConstructType.LEAF_LIST_DATA;
40import static org.onosproject.yangutils.utils.YangConstructType.MAX_ELEMENT_DATA;
41import static org.onosproject.yangutils.utils.YangConstructType.MIN_ELEMENT_DATA;
42import static org.onosproject.yangutils.utils.YangConstructType.REFERENCE_DATA;
43import static org.onosproject.yangutils.utils.YangConstructType.STATUS_DATA;
44import static org.onosproject.yangutils.utils.YangConstructType.TYPE_DATA;
45import static org.onosproject.yangutils.utils.YangConstructType.UNITS_DATA;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053046
47/*
48 * Reference: RFC6020 and YANG ANTLR Grammar
49 *
50 * ABNF grammar as per RFC6020
51 * leaf-list-stmt = leaf-list-keyword sep identifier-arg-str optsep
52 * "{" stmtsep
53 * ;; these stmts can appear in any order
54 * [when-stmt stmtsep]
55 * *(if-feature-stmt stmtsep)
56 * type-stmt stmtsep
57 * [units-stmt stmtsep]
58 * *(must-stmt stmtsep)
59 * [config-stmt stmtsep]
60 * [min-elements-stmt stmtsep]
61 * [max-elements-stmt stmtsep]
62 * [ordered-by-stmt stmtsep]
63 * [status-stmt stmtsep]
64 * [description-stmt stmtsep]
65 * [reference-stmt stmtsep]
66 * "}"
67 *
68 * ANTLR grammar rule
Vidyashree Rama468f8282016-03-04 19:08:35 +053069 * leafListStatement : LEAF_LIST_KEYWORD identifier LEFT_CURLY_BRACE (whenStatement | ifFeatureStatement |
Vidyashree Rama92fc5562016-02-12 18:44:12 +053070 * typeStatement | unitsStatement | mustStatement | configStatement | minElementsStatement | maxElementsStatement |
71 * orderedByStatement | statusStatement | descriptionStatement | referenceStatement)* RIGHT_CURLY_BRACE;
72 */
73
74/**
75 * Implements listener based call back function corresponding to the "leaf-list"
76 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
77 */
78public final class LeafListListener {
79
80 /**
81 * Creates a new leaf list listener.
82 */
83 private LeafListListener() {
84 }
85
86 /**
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053087 * It is called when parser receives an input matching the grammar rule
88 * (leaf-list), performs validation and updates the data model tree.
Vidyashree Rama92fc5562016-02-12 18:44:12 +053089 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053090 * @param listener listener's object
91 * @param ctx context object of the grammar rule
Vidyashree Rama92fc5562016-02-12 18:44:12 +053092 */
93 public static void processLeafListEntry(TreeWalkListener listener,
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053094 GeneratedYangParser.LeafListStatementContext ctx) {
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053095
96 // Check for stack to be non empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +053097 checkStackIsNotEmpty(listener, MISSING_HOLDER, LEAF_LIST_DATA, ctx.identifier().getText(), ENTRY);
98
99 String identifier = getValidIdentifier(ctx.identifier().getText(), LEAF_LIST_DATA, ctx);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530100
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530101 // Validate sub statement cardinality.
102 validateSubStatementsCardinality(ctx);
103
104 // Check for identifier collision
Vidyashree Rama468f8282016-03-04 19:08:35 +0530105 int line = ctx.getStart().getLine();
106 int charPositionInLine = ctx.getStart().getCharPositionInLine();
107 detectCollidingChildUtil(listener, line, charPositionInLine, identifier, LEAF_LIST_DATA);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530108
109 YangLeafList leafList = new YangLeafList();
Vidyashree Rama468f8282016-03-04 19:08:35 +0530110 leafList.setLeafName(identifier);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530111
112 Parsable tmpData = listener.getParsedDataStack().peek();
113 YangLeavesHolder leaves;
114
115 if (tmpData instanceof YangLeavesHolder) {
116 leaves = (YangLeavesHolder) tmpData;
117 leaves.addLeafList(leafList);
118 } else {
Vidyashree Rama59071f32016-02-20 19:27:56 +0530119 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, LEAF_LIST_DATA,
Vidyashree Rama468f8282016-03-04 19:08:35 +0530120 ctx.identifier().getText(), ENTRY));
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530121 }
122 listener.getParsedDataStack().push(leafList);
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530123 }
124
125 /**
126 * It is called when parser exits from grammar rule (leaf-list), it performs
127 * validation and updates the data model tree.
128 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530129 * @param listener listener's object
130 * @param ctx context object of the grammar rule
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530131 */
132 public static void processLeafListExit(TreeWalkListener listener,
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530133 GeneratedYangParser.LeafListStatementContext ctx) {
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530134
135 // Check for stack to be non empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +0530136 checkStackIsNotEmpty(listener, MISSING_HOLDER, LEAF_LIST_DATA, ctx.identifier().getText(), EXIT);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530137
138 if (listener.getParsedDataStack().peek() instanceof YangLeafList) {
139 listener.getParsedDataStack().pop();
140 } else {
Vidyashree Rama59071f32016-02-20 19:27:56 +0530141 throw new ParserException(constructListenerErrorMessage(MISSING_CURRENT_HOLDER, LEAF_LIST_DATA,
Vidyashree Rama468f8282016-03-04 19:08:35 +0530142 ctx.identifier().getText(), EXIT));
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530143 }
144 }
145
146 /**
147 * Validates the cardinality of leaf-list sub-statements as per grammar.
148 *
Vidyashree Rama468f8282016-03-04 19:08:35 +0530149 * @param ctx context object of the grammar rule
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530150 */
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530151 private static void validateSubStatementsCardinality(GeneratedYangParser.LeafListStatementContext ctx) {
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530152
Vidyashree Rama468f8282016-03-04 19:08:35 +0530153 validateCardinalityEqualsOne(ctx.typeStatement(), TYPE_DATA, LEAF_LIST_DATA, ctx.identifier().getText());
154 validateCardinality(ctx.unitsStatement(), UNITS_DATA, LEAF_LIST_DATA, ctx.identifier().getText());
155 validateCardinality(ctx.configStatement(), CONFIG_DATA, LEAF_LIST_DATA, ctx.identifier().getText());
156 validateCardinality(ctx.maxElementsStatement(), MAX_ELEMENT_DATA, LEAF_LIST_DATA, ctx.identifier().getText());
157 validateCardinality(ctx.minElementsStatement(), MIN_ELEMENT_DATA, LEAF_LIST_DATA, ctx.identifier().getText());
158 validateCardinality(ctx.descriptionStatement(), DESCRIPTION_DATA, LEAF_LIST_DATA, ctx.identifier().getText());
159 validateCardinality(ctx.referenceStatement(), REFERENCE_DATA, LEAF_LIST_DATA, ctx.identifier().getText());
160 validateCardinality(ctx.statusStatement(), STATUS_DATA, LEAF_LIST_DATA, ctx.identifier().getText());
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530161 //TODO ordered by
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530162 }
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530163}