blob: ed7c6f3c6ebc47a6b56d1630e6f5a0dad858711d [file] [log] [blame]
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +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
19/*
20 * Reference: RFC6020 and YANG ANTLR Grammar
21 *
22 * typedef-stmt = typedef-keyword sep identifier-arg-str optsep
23 * "{" stmtsep
24 * ;; these stmts can appear in any order
25 * type-stmt stmtsep
26 * [units-stmt stmtsep]
27 * [default-stmt stmtsep]
28 * [status-stmt stmtsep]
29 * [description-stmt stmtsep]
30 * [reference-stmt stmtsep]
31 * "}"
32 * default-stmt = default-keyword sep string stmtend
33
34 *
35 * ANTLR grammar rule
36 * typedefStatement : TYPEDEF_KEYWORD IDENTIFIER LEFT_CURLY_BRACE
37 * (typeStatement | unitsStatement | defaultStatement | statusStatement
38 * | descriptionStatement | referenceStatement)* RIGHT_CURLY_BRACE;
39 * defaultStatement : DEFAULT_KEYWORD string STMTEND;
40 */
41
42import org.onosproject.yangutils.datamodel.YangTypeDef;
43import org.onosproject.yangutils.parser.Parsable;
44import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
45import org.onosproject.yangutils.parser.exceptions.ParserException;
46import org.onosproject.yangutils.parser.impl.TreeWalkListener;
47
Vinod Kumar Sc4216002016-03-03 19:55:30 +053048
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053049import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
50import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053051import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
Vinod Kumar Sc4216002016-03-03 19:55:30 +053052import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053053import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Vinod Kumar Sc4216002016-03-03 19:55:30 +053054import static org.onosproject.yangutils.utils.YangConstructType.DEFAULT_DATA;
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053055
Vinod Kumar Sc4216002016-03-03 19:55:30 +053056/**
57 * Listener implementation for default YANG statement.
58 */
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053059public final class DefaultListener {
60
61 /**
62 * Creates a new default listener.
63 */
64 private DefaultListener() {
65 }
66
67 /**
68 * It is called when parser enters grammar rule (default), it perform
69 * validations and updates the data model tree.
70 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053071 * @param listener listener's object
72 * @param ctx context object of the grammar rule
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053073 */
74 public static void processDefaultEntry(TreeWalkListener listener,
75 GeneratedYangParser.DefaultStatementContext ctx) {
76
77 // Check for stack to be non empty.
78 checkStackIsNotEmpty(listener, MISSING_HOLDER, DEFAULT_DATA, ctx.string().getText(), ENTRY);
79
80 Parsable tmpNode = listener.getParsedDataStack().peek();
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053081 switch (tmpNode.getYangConstructType()) {
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053082 case TYPEDEF_DATA: {
83 YangTypeDef typeDef = (YangTypeDef) tmpNode;
84 typeDef.setDefaultValueInString(ctx.string().getText());
85 break;
86 }
87 default:
88 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER,
89 DEFAULT_DATA, ctx.string().getText(), ENTRY));
90 }
91 }
92}