blob: f8d5361db522a5f6cfed0c49b8d0aef80e640494 [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.YangModule;
20import org.onosproject.yangutils.datamodel.YangSubModule;
21import org.onosproject.yangutils.parser.Parsable;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053022import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Gaurav Agrawala04483c2016-02-13 14:23:40 +053023import org.onosproject.yangutils.parser.exceptions.ParserException;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053024import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053025
Vidyashree Rama468f8282016-03-04 19:08:35 +053026import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.removeQuotesAndHandleConcat;
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053027import static org.onosproject.yangutils.utils.YangConstructType.VERSION_DATA;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053028import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
29import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
30import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
31import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
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 * module-header-stmts = ;; these stmts can appear in any order
39 * [yang-version-stmt stmtsep]
40 * namespace-stmt stmtsep
41 * prefix-stmt stmtsep
42 *
43 * submodule-header-stmts =
44 * ;; these stmts can appear in any order
45 * [yang-version-stmt stmtsep]
46 * belongs-to-stmt stmtsep
47 *
48 * yang-version-stmt = yang-version-keyword sep yang-version-arg-str
49 * optsep stmtend
50 *
51 *
52 * ANTLR grammar rule
53 * module_header_statement : yang_version_stmt? namespace_stmt prefix_stmt
54 * | yang_version_stmt? prefix_stmt namespace_stmt
55 * | namespace_stmt yang_version_stmt? prefix_stmt
56 * | namespace_stmt prefix_stmt yang_version_stmt?
57 * | prefix_stmt namespace_stmt yang_version_stmt?
58 * | prefix_stmt yang_version_stmt? namespace_stmt?
59 * ;
60 * submodule_header_statement : yang_version_stmt? belongs_to_stmt
61 * | belongs_to_stmt yang_version_stmt?
62 * ;
Vidyashree Rama468f8282016-03-04 19:08:35 +053063 * yang_version_stmt : YANG_VERSION_KEYWORD string STMTEND;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053064 */
65
66/**
67 * Implements listener based call back function corresponding to the "version"
68 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
69 */
70public final class VersionListener {
71
72 /**
73 * Creates a new version listener.
74 */
75 private VersionListener() {
76 }
77
78 /**
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053079 * It is called when parser receives an input matching the grammar rule
80 * (version), perform validations and update the data model tree.
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053081 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053082 * @param listener Listener's object
83 * @param ctx context object of the grammar rule
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053084 */
85 public static void processVersionEntry(TreeWalkListener listener,
86 GeneratedYangParser.YangVersionStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +053087
88 // Check for stack to be non empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +053089 checkStackIsNotEmpty(listener, MISSING_HOLDER, VERSION_DATA, ctx.string().getText(), ENTRY);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053090
Vidyashree Rama468f8282016-03-04 19:08:35 +053091 String version = removeQuotesAndHandleConcat(ctx.string().getText());
92 if (!isVersionValid(Integer.valueOf(version))) {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053093 ParserException parserException = new ParserException("YANG file error: Input version not supported");
Vidyashree Rama468f8282016-03-04 19:08:35 +053094 parserException.setLine(ctx.getStart().getLine());
95 parserException.setCharPosition(ctx.getStart().getCharPositionInLine());
Gaurav Agrawala04483c2016-02-13 14:23:40 +053096 throw parserException;
97 }
98
99 // Obtain the node of the stack.
100 Parsable tmpNode = listener.getParsedDataStack().peek();
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530101 switch (tmpNode.getYangConstructType()) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530102 case MODULE_DATA: {
103 YangModule module = (YangModule) tmpNode;
104 module.setVersion((byte) 1);
105 break;
106 }
107 case SUB_MODULE_DATA: {
108 YangSubModule subModule = (YangSubModule) tmpNode;
109 subModule.setVersion((byte) 1);
110 break;
111 }
112 default:
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530113 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, VERSION_DATA,
Vidyashree Rama468f8282016-03-04 19:08:35 +0530114 ctx.string().getText(), ENTRY));
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530115 }
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530116 }
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530117
118 /**
119 * Validates whether the value of YANG version.
120 *
121 * @param version input yang version
122 * @return validation result
123 */
124 private static boolean isVersionValid(Integer version) {
125 return version == 1;
126 }
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530127}