blob: fc9b84a42efc413dae8092bffcf51f10313f9d4e [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
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053048import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
49import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053050import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
Vinod Kumar Sc4216002016-03-03 19:55:30 +053051import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053052import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Vinod Kumar Sc4216002016-03-03 19:55:30 +053053import static org.onosproject.yangutils.utils.YangConstructType.DEFAULT_DATA;
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053054
Vinod Kumar Sc4216002016-03-03 19:55:30 +053055/**
Bharat saraswald9822e92016-04-05 15:13:44 +053056 * Represents listener for default YANG statement.
Vinod Kumar Sc4216002016-03-03 19:55:30 +053057 */
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053058public final class DefaultListener {
59
60 /**
61 * Creates a new default listener.
62 */
63 private DefaultListener() {
64 }
65
66 /**
67 * It is called when parser enters grammar rule (default), it perform
68 * validations and updates the data model tree.
69 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053070 * @param listener listener's object
71 * @param ctx context object of the grammar rule
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053072 */
73 public static void processDefaultEntry(TreeWalkListener listener,
74 GeneratedYangParser.DefaultStatementContext ctx) {
75
76 // Check for stack to be non empty.
77 checkStackIsNotEmpty(listener, MISSING_HOLDER, DEFAULT_DATA, ctx.string().getText(), ENTRY);
78
79 Parsable tmpNode = listener.getParsedDataStack().peek();
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053080 switch (tmpNode.getYangConstructType()) {
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053081 case TYPEDEF_DATA: {
82 YangTypeDef typeDef = (YangTypeDef) tmpNode;
83 typeDef.setDefaultValueInString(ctx.string().getText());
84 break;
85 }
86 default:
87 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER,
88 DEFAULT_DATA, ctx.string().getText(), ENTRY));
89 }
90 }
91}