blob: a0005ba36a942ec79d16e3a05523c333e1dca323 [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
Gaurav Agrawal0d43bb52016-05-17 18:06:38 +053019import org.onosproject.yangutils.linker.impl.YangReferenceResolver;
Gaurav Agrawala04483c2016-02-13 14:23:40 +053020import org.onosproject.yangutils.datamodel.YangModule;
janani bcc9ac302016-03-24 12:43:48 +053021import org.onosproject.yangutils.datamodel.YangRevision;
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +053022import org.onosproject.yangutils.datamodel.exceptions.DataModelException;
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;
Vidyashree Rama468f8282016-03-04 19:08:35 +053026
Vinod Kumar S38046502016-03-23 15:30:27 +053027import static org.onosproject.yangutils.datamodel.utils.GeneratedLanguage.JAVA_GENERATION;
28import static org.onosproject.yangutils.datamodel.utils.YangDataModelFactory.getYangModuleNode;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053029import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
30import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.EXIT;
31import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053032import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
33import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_CURRENT_HOLDER;
34import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Vinod Kumar S38046502016-03-23 15:30:27 +053035import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.getValidIdentifier;
janani bcc9ac302016-03-24 12:43:48 +053036import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.setCurrentDateForRevision;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053037import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsEmpty;
38import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053039import static org.onosproject.yangutils.utils.YangConstructType.MODULE_DATA;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053040
41/*
42 * Reference: RFC6020 and YANG ANTLR Grammar
43 *
44 * ABNF grammar as per RFC6020
45 * module-stmt = optsep module-keyword sep identifier-arg-str
46 * optsep
47 * "{" stmtsep
48 * module-header-stmts
49 * linkage-stmts
50 * meta-stmts
51 * revision-stmts
52 * body-stmts
53 * "}" optsep
54 *
55 * ANTLR grammar rule
Vidyashree Rama468f8282016-03-04 19:08:35 +053056 * module_stmt : MODULE_KEYWORD identifier LEFT_CURLY_BRACE module_body* RIGHT_CURLY_BRACE;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053057 */
58
59/**
Bharat saraswald9822e92016-04-05 15:13:44 +053060 * Represents listener based call back function corresponding to the "module"
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053061 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
62 */
63public final class ModuleListener {
64
65 /**
66 * Creates a new module listener.
67 */
68 private ModuleListener() {
69 }
70
71 /**
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053072 * It is called when parser receives an input matching the grammar rule
73 * (module), perform validations and update the data model tree.
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053074 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053075 * @param listener Listener's object
76 * @param ctx context object of the grammar rule
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053077 */
78 public static void processModuleEntry(TreeWalkListener listener, GeneratedYangParser.ModuleStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +053079
80 // Check if stack is empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +053081 checkStackIsEmpty(listener, INVALID_HOLDER, MODULE_DATA, ctx.identifier().getText(), ENTRY);
82
83 String identifier = getValidIdentifier(ctx.identifier().getText(), MODULE_DATA, ctx);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053084
Vinod Kumar S38046502016-03-23 15:30:27 +053085 YangModule yangModule = getYangModuleNode(JAVA_GENERATION);
Vidyashree Rama468f8282016-03-04 19:08:35 +053086 yangModule.setName(identifier);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053087
Vidyashree Ramabcd7fba2016-03-09 20:41:44 +053088 if (ctx.moduleBody().moduleHeaderStatement().yangVersionStatement() == null) {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053089 yangModule.setVersion((byte) 1);
90 }
91
janani bcc9ac302016-03-24 12:43:48 +053092 if (ctx.moduleBody().revisionStatements().revisionStatement().isEmpty()) {
93 String currentDate = setCurrentDateForRevision();
94 YangRevision currentRevision = new YangRevision();
95 currentRevision.setRevDate(currentDate);
96 yangModule.setRevision(currentRevision);
97 }
98
Gaurav Agrawala04483c2016-02-13 14:23:40 +053099 listener.getParsedDataStack().push(yangModule);
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530100 }
101
102 /**
103 * It is called when parser exits from grammar rule (module), it perform
104 * validations and update the data model tree.
105 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530106 * @param listener Listener's object
107 * @param ctx context object of the grammar rule
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530108 */
109 public static void processModuleExit(TreeWalkListener listener, GeneratedYangParser.ModuleStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530110
111 // Check for stack to be non empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +0530112 checkStackIsNotEmpty(listener, MISSING_HOLDER, MODULE_DATA, ctx.identifier().getText(), EXIT);
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530113
114 if (!(listener.getParsedDataStack().peek() instanceof YangModule)) {
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530115 throw new ParserException(constructListenerErrorMessage(MISSING_CURRENT_HOLDER, MODULE_DATA,
Vinod Kumar S38046502016-03-23 15:30:27 +0530116 ctx.identifier().getText(), EXIT));
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530117 }
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530118 try {
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +0530119 ((YangReferenceResolver) listener.getParsedDataStack().peek()).resolveSelfFileLinking();
Gaurav Agrawald9d6cc82016-03-29 02:17:23 +0530120 } catch (DataModelException e) {
121 ParserException parserException = new ParserException(e.getMessage());
122 parserException.setLine(e.getLineNumber());
123 parserException.setCharPosition(e.getCharPositionInLine());
124 throw parserException;
125 }
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530126 }
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530127}