blob: e47f46667675bbdff0de10fab1f9b132f55ea564 [file] [log] [blame]
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +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
Gaurav Agrawala04483c2016-02-13 14:23:40 +053019import org.onosproject.yangutils.datamodel.YangImport;
20import org.onosproject.yangutils.datamodel.YangModule;
21import org.onosproject.yangutils.datamodel.YangSubModule;
22import org.onosproject.yangutils.parser.Parsable;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053023import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Gaurav Agrawala04483c2016-02-13 14:23:40 +053024import org.onosproject.yangutils.parser.exceptions.ParserException;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053025import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053026
27import static org.onosproject.yangutils.parser.ParsableDataType.IMPORT_DATA;
28import 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.*;
32import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053033
34/*
35 * Reference: RFC6020 and YANG ANTLR Grammar
36 *
37 * ABNF grammar as per RFC6020
38 * linkage-stmts = ;; these stmts can appear in any order
39 * *(import-stmt stmtsep)
40 * *(include-stmt stmtsep)
41 *
42 * import-stmt = import-keyword sep identifier-arg-str optsep
43 * "{" stmtsep
44 * prefix-stmt stmtsep
45 * [revision-date-stmt stmtsep]
46 * "}"
47 *
48 * ANTLR grammar rule
49 * linkage_stmts : (import_stmt
50 * | include_stmt)*;
51 * import_stmt : IMPORT_KEYWORD IDENTIFIER LEFT_CURLY_BRACE import_stmt_body
52 * RIGHT_CURLY_BRACE;
53 * import_stmt_body : prefix_stmt revision_date_stmt?;
54 */
55
56/**
57 * Implements listener based call back function corresponding to the "import"
58 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
59 */
60public final class ImportListener {
61
62 /**
63 * Creates a new import listener.
64 */
65 private ImportListener() {
66 }
67
68 /**
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053069 * It is called when parser receives an input matching the grammar rule
70 * (import), perform validations and update the data model tree.
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053071 *
72 * @param listener Listener's object.
73 * @param ctx context object of the grammar rule.
74 */
75 public static void processImportEntry(TreeWalkListener listener, GeneratedYangParser.ImportStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +053076
77 // Check for stack to be non empty.
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053078 checkStackIsNotEmpty(listener, MISSING_HOLDER, IMPORT_DATA, String.valueOf(ctx.IDENTIFIER().getText()), ENTRY);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053079
80 YangImport importNode = new YangImport();
81 importNode.setModuleName(String.valueOf(ctx.IDENTIFIER().getText()));
82
83 // Push import node to the stack.
84 listener.getParsedDataStack().push(importNode);
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053085 }
86
87 /**
88 * It is called when parser exits from grammar rule (import), it perform
89 * validations and update the data model tree.
90 *
91 * @param listener Listener's object.
92 * @param ctx context object of the grammar rule.
93 */
94 public static void processImportExit(TreeWalkListener listener, GeneratedYangParser.ImportStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +053095
96 // Check for stack to be non empty.
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053097 checkStackIsNotEmpty(listener, MISSING_HOLDER, IMPORT_DATA, String.valueOf(ctx.IDENTIFIER().getText()), EXIT);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053098
99 Parsable tmpImportNode = listener.getParsedDataStack().peek();
100 if (tmpImportNode instanceof YangImport) {
101 listener.getParsedDataStack().pop();
102
103 // Check for stack to be non empty.
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530104 checkStackIsNotEmpty(listener, MISSING_HOLDER, IMPORT_DATA, String.valueOf(ctx.IDENTIFIER().getText()),
105 EXIT);
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530106
107 Parsable tmpNode = listener.getParsedDataStack().peek();
108 switch (tmpNode.getParsableDataType()) {
109 case MODULE_DATA: {
110 YangModule module = (YangModule) tmpNode;
111 module.addImportedInfo((YangImport) tmpImportNode);
112 break;
113 }
114 case SUB_MODULE_DATA: {
115 YangSubModule subModule = (YangSubModule) tmpNode;
116 subModule.addImportedInfo((YangImport) tmpImportNode);
117 break;
118 }
119 default:
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530120 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, IMPORT_DATA,
121 String.valueOf(ctx.IDENTIFIER().getText()),
122 EXIT));
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530123 }
124 } else {
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530125 throw new ParserException(constructListenerErrorMessage(MISSING_CURRENT_HOLDER, IMPORT_DATA,
126 String.valueOf(ctx.IDENTIFIER().getText()), EXIT));
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530127 }
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530128 }
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530129}