blob: eb16253c94c69fb66008698ef9c74958b9d495a7 [file] [log] [blame]
Gaurav Agrawal22db16d2016-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
janani ba3027492016-03-24 12:43:48 +053019import org.onosproject.yangutils.datamodel.YangRevision;
Gaurav Agrawal2737d2a2016-02-13 14:23:40 +053020import org.onosproject.yangutils.datamodel.YangSubModule;
Gaurav Agrawal22db16d2016-02-12 16:50:55 +053021import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Gaurav Agrawal2737d2a2016-02-13 14:23:40 +053022import org.onosproject.yangutils.parser.exceptions.ParserException;
Gaurav Agrawal22db16d2016-02-12 16:50:55 +053023import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Vidyashree Ramad3221322016-03-04 19:08:35 +053024
Vinod Kumar S9f26ae52016-03-23 15:30:27 +053025import static org.onosproject.yangutils.datamodel.utils.GeneratedLanguage.JAVA_GENERATION;
26import static org.onosproject.yangutils.datamodel.utils.YangDataModelFactory.getYangSubModuleNode;
Gaurav Agrawal800a8e72016-02-19 12:57:13 +053027import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
28import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.EXIT;
29import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +053030import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
31import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_CURRENT_HOLDER;
32import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Vinod Kumar S9f26ae52016-03-23 15:30:27 +053033import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.getValidIdentifier;
janani ba3027492016-03-24 12:43:48 +053034import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.setCurrentDateForRevision;
Gaurav Agrawal800a8e72016-02-19 12:57:13 +053035import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsEmpty;
36import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +053037import static org.onosproject.yangutils.utils.YangConstructType.SUB_MODULE_DATA;
Gaurav Agrawal22db16d2016-02-12 16:50:55 +053038
39/*
40 * Reference: RFC6020 and YANG ANTLR Grammar
41 *
42 * ABNF grammar as per RFC6020
43 * submodule-stmt = optsep submodule-keyword sep identifier-arg-str
44 * optsep
45 * "{" stmtsep
46 * submodule-header-stmts
47 * linkage-stmts
48 * meta-stmts
49 * revision-stmts
50 * body-stmts
51 * "}" optsep
52 *
53 * ANTLR grammar rule
Vidyashree Ramad3221322016-03-04 19:08:35 +053054 * submodule_stmt : SUBMODULE_KEYWORD identifier LEFT_CURLY_BRACE submodule_body* RIGHT_CURLY_BRACE;
Gaurav Agrawal22db16d2016-02-12 16:50:55 +053055 * submodule_body : submodule_header_statement linkage_stmts meta_stmts revision_stmts body_stmts;
56 */
57
58/**
59 * Implements listener based call back function corresponding to the "submodule"
60 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
61 */
62public final class SubModuleListener {
63
64 /**
65 * Creates a new sub module listener.
66 */
67 private SubModuleListener() {
68 }
69
70 /**
Gaurav Agrawal800a8e72016-02-19 12:57:13 +053071 * It is called when parser receives an input matching the grammar rule (sub
72 * module), perform validations and update the data model tree.
Gaurav Agrawal22db16d2016-02-12 16:50:55 +053073 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +053074 * @param listener Listener's object
75 * @param ctx context object of the grammar rule
Gaurav Agrawal22db16d2016-02-12 16:50:55 +053076 */
77 public static void processSubModuleEntry(TreeWalkListener listener,
Vinod Kumar S9f26ae52016-03-23 15:30:27 +053078 GeneratedYangParser.SubModuleStatementContext ctx) {
Gaurav Agrawal2737d2a2016-02-13 14:23:40 +053079
80 // Check if stack is empty.
Vidyashree Ramad3221322016-03-04 19:08:35 +053081 checkStackIsEmpty(listener, INVALID_HOLDER, SUB_MODULE_DATA, ctx.identifier().getText(),
Vinod Kumar S9f26ae52016-03-23 15:30:27 +053082 ENTRY);
Gaurav Agrawal2737d2a2016-02-13 14:23:40 +053083
Vidyashree Ramad3221322016-03-04 19:08:35 +053084 String identifier = getValidIdentifier(ctx.identifier().getText(), SUB_MODULE_DATA, ctx);
85
Vinod Kumar S9f26ae52016-03-23 15:30:27 +053086 YangSubModule yangSubModule = getYangSubModuleNode(JAVA_GENERATION);
Vidyashree Ramad3221322016-03-04 19:08:35 +053087 yangSubModule.setName(identifier);
Gaurav Agrawal2737d2a2016-02-13 14:23:40 +053088
Vidyashree Rama07021a22016-03-09 20:41:44 +053089 if (ctx.submoduleBody().submoduleHeaderStatement().yangVersionStatement() == null) {
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +053090 yangSubModule.setVersion((byte) 1);
91 }
92
janani ba3027492016-03-24 12:43:48 +053093 if (ctx.submoduleBody().revisionStatements().revisionStatement().isEmpty()) {
94 String currentDate = setCurrentDateForRevision();
95 YangRevision currentRevision = new YangRevision();
96 currentRevision.setRevDate(currentDate);
97 yangSubModule.setRevision(currentRevision);
98 }
99
Gaurav Agrawal2737d2a2016-02-13 14:23:40 +0530100 listener.getParsedDataStack().push(yangSubModule);
Gaurav Agrawal22db16d2016-02-12 16:50:55 +0530101 }
102
103 /**
104 * It is called when parser exits from grammar rule (submodule), it perform
105 * validations and update the data model tree.
106 *
Gaurav Agrawaldb828bd2016-02-27 03:57:50 +0530107 * @param listener Listener's object
108 * @param ctx context object of the grammar rule
Gaurav Agrawal22db16d2016-02-12 16:50:55 +0530109 */
110 public static void processSubModuleExit(TreeWalkListener listener,
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530111 GeneratedYangParser.SubModuleStatementContext ctx) {
Gaurav Agrawal2737d2a2016-02-13 14:23:40 +0530112
113 // Check for stack to be non empty.
Vidyashree Ramad3221322016-03-04 19:08:35 +0530114 checkStackIsNotEmpty(listener, MISSING_HOLDER, SUB_MODULE_DATA, ctx.identifier().getText(),
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530115 EXIT);
Gaurav Agrawal2737d2a2016-02-13 14:23:40 +0530116
117 if (!(listener.getParsedDataStack().peek() instanceof YangSubModule)) {
Gaurav Agrawal800a8e72016-02-19 12:57:13 +0530118 throw new ParserException(constructListenerErrorMessage(MISSING_CURRENT_HOLDER, SUB_MODULE_DATA,
Vinod Kumar S9f26ae52016-03-23 15:30:27 +0530119 ctx.identifier().getText(), EXIT));
Gaurav Agrawal2737d2a2016-02-13 14:23:40 +0530120 }
Gaurav Agrawal22db16d2016-02-12 16:50:55 +0530121 }
Gaurav Agrawal800a8e72016-02-19 12:57:13 +0530122}