blob: 080767a357dae7b8ddc2871f5dd9cbd29f02e723 [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.YangSubModule;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053020import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Gaurav Agrawala04483c2016-02-13 14:23:40 +053021import org.onosproject.yangutils.parser.exceptions.ParserException;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053022import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Vidyashree Rama468f8282016-03-04 19:08:35 +053023
24import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.getValidIdentifier;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053025import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
26import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.EXIT;
27import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053028import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
29import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_CURRENT_HOLDER;
30import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053031import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsEmpty;
32import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053033import static org.onosproject.yangutils.utils.YangConstructType.SUB_MODULE_DATA;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053034
35/*
36 * Reference: RFC6020 and YANG ANTLR Grammar
37 *
38 * ABNF grammar as per RFC6020
39 * submodule-stmt = optsep submodule-keyword sep identifier-arg-str
40 * optsep
41 * "{" stmtsep
42 * submodule-header-stmts
43 * linkage-stmts
44 * meta-stmts
45 * revision-stmts
46 * body-stmts
47 * "}" optsep
48 *
49 * ANTLR grammar rule
Vidyashree Rama468f8282016-03-04 19:08:35 +053050 * submodule_stmt : SUBMODULE_KEYWORD identifier LEFT_CURLY_BRACE submodule_body* RIGHT_CURLY_BRACE;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053051 * submodule_body : submodule_header_statement linkage_stmts meta_stmts revision_stmts body_stmts;
52 */
53
54/**
55 * Implements listener based call back function corresponding to the "submodule"
56 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
57 */
58public final class SubModuleListener {
59
60 /**
61 * Creates a new sub module listener.
62 */
63 private SubModuleListener() {
64 }
65
66 /**
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053067 * It is called when parser receives an input matching the grammar rule (sub
68 * module), perform validations and update the data model tree.
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053069 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053070 * @param listener Listener's object
71 * @param ctx context object of the grammar rule
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053072 */
73 public static void processSubModuleEntry(TreeWalkListener listener,
74 GeneratedYangParser.SubModuleStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +053075
76 // Check if stack is empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +053077 checkStackIsEmpty(listener, INVALID_HOLDER, SUB_MODULE_DATA, ctx.identifier().getText(),
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053078 ENTRY);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053079
Vidyashree Rama468f8282016-03-04 19:08:35 +053080 String identifier = getValidIdentifier(ctx.identifier().getText(), SUB_MODULE_DATA, ctx);
81
Gaurav Agrawala04483c2016-02-13 14:23:40 +053082 YangSubModule yangSubModule = new YangSubModule();
Vidyashree Rama468f8282016-03-04 19:08:35 +053083 yangSubModule.setName(identifier);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053084
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053085 if (ctx.submoduleBody(0).submoduleHeaderStatement().yangVersionStatement() == null) {
86 yangSubModule.setVersion((byte) 1);
87 }
88
Gaurav Agrawala04483c2016-02-13 14:23:40 +053089 listener.getParsedDataStack().push(yangSubModule);
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053090 }
91
92 /**
93 * It is called when parser exits from grammar rule (submodule), it perform
94 * validations and update the data model tree.
95 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053096 * @param listener Listener's object
97 * @param ctx context object of the grammar rule
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053098 */
99 public static void processSubModuleExit(TreeWalkListener listener,
100 GeneratedYangParser.SubModuleStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530101
102 // Check for stack to be non empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +0530103 checkStackIsNotEmpty(listener, MISSING_HOLDER, SUB_MODULE_DATA, ctx.identifier().getText(),
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530104 EXIT);
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530105
106 if (!(listener.getParsedDataStack().peek() instanceof YangSubModule)) {
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530107 throw new ParserException(constructListenerErrorMessage(MISSING_CURRENT_HOLDER, SUB_MODULE_DATA,
Vidyashree Rama468f8282016-03-04 19:08:35 +0530108 ctx.identifier().getText(), EXIT));
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530109 }
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530110 }
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530111}