blob: 048e635e5c47d492198bbb429b0be155ccb0a228 [file] [log] [blame]
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +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
janani bcc9ac302016-03-24 12:43:48 +053019import org.onosproject.yangutils.datamodel.YangRevision;
Gaurav Agrawala04483c2016-02-13 14:23:40 +053020import org.onosproject.yangutils.datamodel.YangSubModule;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053021import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053022import org.onosproject.yangutils.linker.ResolvableType;
23import org.onosproject.yangutils.linker.YangReferenceResolver;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053024import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Gaurav Agrawala04483c2016-02-13 14:23:40 +053025import org.onosproject.yangutils.parser.exceptions.ParserException;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053026import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Vidyashree Rama468f8282016-03-04 19:08:35 +053027
Vinod Kumar S38046502016-03-23 15:30:27 +053028import static org.onosproject.yangutils.datamodel.utils.GeneratedLanguage.JAVA_GENERATION;
29import static org.onosproject.yangutils.datamodel.utils.YangDataModelFactory.getYangSubModuleNode;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053030import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
31import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.EXIT;
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +053032import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction
33 .constructListenerErrorMessage;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053034import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
35import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_CURRENT_HOLDER;
36import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Vinod Kumar S38046502016-03-23 15:30:27 +053037import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.getValidIdentifier;
janani bcc9ac302016-03-24 12:43:48 +053038import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.setCurrentDateForRevision;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053039import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsEmpty;
40import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053041import static org.onosproject.yangutils.utils.YangConstructType.SUB_MODULE_DATA;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053042
43/*
44 * Reference: RFC6020 and YANG ANTLR Grammar
45 *
46 * ABNF grammar as per RFC6020
47 * submodule-stmt = optsep submodule-keyword sep identifier-arg-str
48 * optsep
49 * "{" stmtsep
50 * submodule-header-stmts
51 * linkage-stmts
52 * meta-stmts
53 * revision-stmts
54 * body-stmts
55 * "}" optsep
56 *
57 * ANTLR grammar rule
Vidyashree Rama468f8282016-03-04 19:08:35 +053058 * submodule_stmt : SUBMODULE_KEYWORD identifier LEFT_CURLY_BRACE submodule_body* RIGHT_CURLY_BRACE;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053059 * submodule_body : submodule_header_statement linkage_stmts meta_stmts revision_stmts body_stmts;
60 */
61
62/**
Bharat saraswald9822e92016-04-05 15:13:44 +053063 * Represents listener based call back function corresponding to the "submodule"
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053064 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
65 */
66public final class SubModuleListener {
67
68 /**
69 * Creates a new sub module listener.
70 */
71 private SubModuleListener() {
72 }
73
74 /**
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053075 * It is called when parser receives an input matching the grammar rule (sub
76 * module), perform validations and update the data model tree.
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053077 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053078 * @param listener Listener's object
79 * @param ctx context object of the grammar rule
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053080 */
81 public static void processSubModuleEntry(TreeWalkListener listener,
Vinod Kumar S38046502016-03-23 15:30:27 +053082 GeneratedYangParser.SubModuleStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +053083
84 // Check if stack is empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +053085 checkStackIsEmpty(listener, INVALID_HOLDER, SUB_MODULE_DATA, ctx.identifier().getText(),
Vinod Kumar S38046502016-03-23 15:30:27 +053086 ENTRY);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053087
Vidyashree Rama468f8282016-03-04 19:08:35 +053088 String identifier = getValidIdentifier(ctx.identifier().getText(), SUB_MODULE_DATA, ctx);
89
Vinod Kumar S38046502016-03-23 15:30:27 +053090 YangSubModule yangSubModule = getYangSubModuleNode(JAVA_GENERATION);
Vidyashree Rama468f8282016-03-04 19:08:35 +053091 yangSubModule.setName(identifier);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053092
Vidyashree Ramabcd7fba2016-03-09 20:41:44 +053093 if (ctx.submoduleBody().submoduleHeaderStatement().yangVersionStatement() == null) {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053094 yangSubModule.setVersion((byte) 1);
95 }
96
janani bcc9ac302016-03-24 12:43:48 +053097 if (ctx.submoduleBody().revisionStatements().revisionStatement().isEmpty()) {
98 String currentDate = setCurrentDateForRevision();
99 YangRevision currentRevision = new YangRevision();
100 currentRevision.setRevDate(currentDate);
101 yangSubModule.setRevision(currentRevision);
102 }
103
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530104 listener.getParsedDataStack().push(yangSubModule);
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530105 }
106
107 /**
108 * It is called when parser exits from grammar rule (submodule), it perform
109 * validations and update the data model tree.
110 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530111 * @param listener Listener's object
112 * @param ctx context object of the grammar rule
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530113 */
114 public static void processSubModuleExit(TreeWalkListener listener,
Vinod Kumar S38046502016-03-23 15:30:27 +0530115 GeneratedYangParser.SubModuleStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530116
117 // Check for stack to be non empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +0530118 checkStackIsNotEmpty(listener, MISSING_HOLDER, SUB_MODULE_DATA, ctx.identifier().getText(),
Vinod Kumar S38046502016-03-23 15:30:27 +0530119 EXIT);
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530120
121 if (!(listener.getParsedDataStack().peek() instanceof YangSubModule)) {
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530122 throw new ParserException(constructListenerErrorMessage(MISSING_CURRENT_HOLDER, SUB_MODULE_DATA,
Vinod Kumar S38046502016-03-23 15:30:27 +0530123 ctx.identifier().getText(), EXIT));
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530124 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530125 try {
VinodKumarS-Huawei2ee9e7e2016-06-01 14:30:22 +0530126 ((YangReferenceResolver) listener.getParsedDataStack().peek())
127 .resolveSelfFileLinking(ResolvableType.YANG_USES);
128 ((YangReferenceResolver) listener.getParsedDataStack().peek())
129 .resolveSelfFileLinking(ResolvableType.YANG_DERIVED_DATA_TYPE);
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530130 } catch (DataModelException e) {
131 ParserException parserException = new ParserException(e.getMessage());
132 parserException.setLine(e.getLineNumber());
133 parserException.setCharPosition(e.getCharPositionInLine());
134 throw parserException;
135 }
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530136 }
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530137}