blob: 4573764f558dc8359dbb141083ffd298d86673ad [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
17/**
18 * Implements listener based call back function corresponding to the "leaf"
19 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
20 */
21package org.onosproject.yangutils.parser.impl.listeners;
22
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053023import org.onosproject.yangutils.datamodel.YangLeaf;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053024import org.onosproject.yangutils.datamodel.YangLeavesHolder;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053025import org.onosproject.yangutils.parser.Parsable;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053026import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053027import org.onosproject.yangutils.parser.exceptions.ParserException;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053028import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Vidyashree Rama468f8282016-03-04 19:08:35 +053029
30import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.getValidIdentifier;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053031import static org.onosproject.yangutils.parser.impl.parserutils.ListenerCollisionDetector.detectCollidingChildUtil;
Vidyashree Rama59071f32016-02-20 19:27:56 +053032import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
33import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.EXIT;
34import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
35import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
Vidyashree Rama59071f32016-02-20 19:27:56 +053036import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_CURRENT_HOLDER;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053037import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Vidyashree Rama59071f32016-02-20 19:27:56 +053038import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053039import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.validateCardinality;
40import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.validateCardinalityEqualsOne;
41import static org.onosproject.yangutils.utils.YangConstructType.CONFIG_DATA;
42import static org.onosproject.yangutils.utils.YangConstructType.DESCRIPTION_DATA;
43import static org.onosproject.yangutils.utils.YangConstructType.LEAF_DATA;
44import static org.onosproject.yangutils.utils.YangConstructType.MANDATORY_DATA;
45import static org.onosproject.yangutils.utils.YangConstructType.REFERENCE_DATA;
46import static org.onosproject.yangutils.utils.YangConstructType.STATUS_DATA;
47import static org.onosproject.yangutils.utils.YangConstructType.TYPE_DATA;
48import static org.onosproject.yangutils.utils.YangConstructType.UNITS_DATA;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053049
50/*
51 * Reference: RFC6020 and YANG ANTLR Grammar
52 *
53 * ABNF grammar as per RFC6020
54 * leaf-stmt = leaf-keyword sep identifier-arg-str optsep
55 * "{" stmtsep
56 * ;; these stmts can appear in any order
57 * [when-stmt stmtsep]
58 * *(if-feature-stmt stmtsep)
59 * type-stmt stmtsep
60 * [units-stmt stmtsep]
61 * *(must-stmt stmtsep)
62 * [default-stmt stmtsep]
63 * [config-stmt stmtsep]
64 * [mandatory-stmt stmtsep]
65 * [status-stmt stmtsep]
66 * [description-stmt stmtsep]
67 * [reference-stmt stmtsep]
68 * "}"
69 *
70 * ANTLR grammar rule
Vidyashree Rama468f8282016-03-04 19:08:35 +053071 * leafStatement : LEAF_KEYWORD identifier LEFT_CURLY_BRACE (whenStatement | ifFeatureStatement | typeStatement |
Vidyashree Rama92fc5562016-02-12 18:44:12 +053072 * unitsStatement | mustStatement | defaultStatement | configStatement | mandatoryStatement | statusStatement |
73 * descriptionStatement | referenceStatement)* RIGHT_CURLY_BRACE;
74 */
75
76/**
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053077 * Implements listener based call back function corresponding to the "leaf" rule
78 * defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
Vidyashree Rama92fc5562016-02-12 18:44:12 +053079 */
80public final class LeafListener {
81
82 /**
83 * Creates a new leaf listener.
84 */
85 private LeafListener() {
86 }
87
88 /**
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053089 * It is called when parser receives an input matching the grammar rule
90 * (leaf), performs validation and updates the data model tree.
Vidyashree Rama92fc5562016-02-12 18:44:12 +053091 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053092 * @param listener listener's object
93 * @param ctx context object of the grammar rule
Vidyashree Rama92fc5562016-02-12 18:44:12 +053094 */
95 public static void processLeafEntry(TreeWalkListener listener,
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053096 GeneratedYangParser.LeafStatementContext ctx) {
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053097
98 // Check for stack to be non empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +053099 checkStackIsNotEmpty(listener, MISSING_HOLDER, LEAF_DATA, ctx.identifier().getText(), ENTRY);
100
101 String identifier = getValidIdentifier(ctx.identifier().getText(), LEAF_DATA, ctx);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530102
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530103 // Validate sub statement cardinality.
104 validateSubStatementsCardinality(ctx);
105
106 // Check for identifier collision
Vidyashree Rama468f8282016-03-04 19:08:35 +0530107 int line = ctx.getStart().getLine();
108 int charPositionInLine = ctx.getStart().getCharPositionInLine();
109 detectCollidingChildUtil(listener, line, charPositionInLine, identifier, LEAF_DATA);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530110
111 YangLeaf leaf = new YangLeaf();
Vidyashree Rama468f8282016-03-04 19:08:35 +0530112 leaf.setLeafName(identifier);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530113
114 Parsable tmpData = listener.getParsedDataStack().peek();
115 YangLeavesHolder leaves;
116
117 if (tmpData instanceof YangLeavesHolder) {
118 leaves = (YangLeavesHolder) tmpData;
119 leaves.addLeaf(leaf);
120 } else {
Vidyashree Rama59071f32016-02-20 19:27:56 +0530121 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, LEAF_DATA,
Vidyashree Rama468f8282016-03-04 19:08:35 +0530122 ctx.identifier().getText(), ENTRY));
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530123 }
124
125 listener.getParsedDataStack().push(leaf);
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530126 }
127
128 /**
129 * It is called when parser exits from grammar rule (leaf), performs
130 * validation and updates the data model tree.
131 *
Vidyashree Rama468f8282016-03-04 19:08:35 +0530132 * @param listener listener's object
133 * @param ctx context object of the grammar rule
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530134 */
135 public static void processLeafExit(TreeWalkListener listener,
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530136 GeneratedYangParser.LeafStatementContext ctx) {
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530137
138 // Check for stack to be non empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +0530139 checkStackIsNotEmpty(listener, MISSING_HOLDER, LEAF_DATA, ctx.identifier().getText(), EXIT);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530140
141 if (listener.getParsedDataStack().peek() instanceof YangLeaf) {
142 listener.getParsedDataStack().pop();
143 } else {
Vidyashree Rama59071f32016-02-20 19:27:56 +0530144 throw new ParserException(constructListenerErrorMessage(MISSING_CURRENT_HOLDER, LEAF_DATA,
Vidyashree Rama468f8282016-03-04 19:08:35 +0530145 ctx.identifier().getText(), EXIT));
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530146 }
147 }
148
149 /**
150 * Validates the cardinality of leaf sub-statements as per grammar.
151 *
Vidyashree Rama468f8282016-03-04 19:08:35 +0530152 * @param ctx context object of the grammar rule
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530153 */
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530154 private static void validateSubStatementsCardinality(GeneratedYangParser.LeafStatementContext ctx) {
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +0530155
Vidyashree Rama468f8282016-03-04 19:08:35 +0530156 validateCardinalityEqualsOne(ctx.typeStatement(), TYPE_DATA, LEAF_DATA, ctx.identifier().getText());
157 validateCardinality(ctx.unitsStatement(), UNITS_DATA, LEAF_DATA, ctx.identifier().getText());
158 validateCardinality(ctx.configStatement(), CONFIG_DATA, LEAF_DATA, ctx.identifier().getText());
159 validateCardinality(ctx.mandatoryStatement(), MANDATORY_DATA, LEAF_DATA, ctx.identifier().getText());
160 validateCardinality(ctx.descriptionStatement(), DESCRIPTION_DATA, LEAF_DATA, ctx.identifier().getText());
161 validateCardinality(ctx.referenceStatement(), REFERENCE_DATA, LEAF_DATA, ctx.identifier().getText());
162 validateCardinality(ctx.statusStatement(), STATUS_DATA, LEAF_DATA, ctx.identifier().getText());
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530163 //TODO when.
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530164 }
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530165}