blob: 90e278bc7696a8907bb3791a7cab5d04318dd646 [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 Agrawala04483c2016-02-13 14:23:40 +053019import org.onosproject.yangutils.datamodel.YangBelongsTo;
20import org.onosproject.yangutils.datamodel.YangImport;
21import org.onosproject.yangutils.datamodel.YangModule;
22import org.onosproject.yangutils.parser.Parsable;
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;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053026
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053027import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
28import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
29import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
30import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Bharat saraswald9822e92016-04-05 15:13:44 +053031import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.getValidIdentifier;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053032import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Bharat saraswald9822e92016-04-05 15:13:44 +053033import static org.onosproject.yangutils.utils.YangConstructType.PREFIX_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 * module-header-stmts = ;; these stmts can appear in any order
40 * [yang-version-stmt stmtsep]
41 * namespace-stmt stmtsep
42 * prefix-stmt stmtsep
43 *
44 * prefix-stmt = prefix-keyword sep prefix-arg-str
45 * optsep stmtend
46 *
47 * ANTLR grammar rule
48 * module_header_statement : yang_version_stmt? namespace_stmt prefix_stmt
49 * | yang_version_stmt? prefix_stmt namespace_stmt
50 * | namespace_stmt yang_version_stmt? prefix_stmt
51 * | namespace_stmt prefix_stmt yang_version_stmt?
52 * | prefix_stmt namespace_stmt yang_version_stmt?
53 * | prefix_stmt yang_version_stmt? namespace_stmt
54 * ;
Vidyashree Rama468f8282016-03-04 19:08:35 +053055 * prefix_stmt : PREFIX_KEYWORD identifier STMTEND;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053056 */
57
58/**
Bharat saraswald9822e92016-04-05 15:13:44 +053059 * Represents listener based call back function corresponding to the "prefix"
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053060 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
61 */
62public final class PrefixListener {
63
64 /**
65 * Creates a new prefix listener.
66 */
67 private PrefixListener() {
68 }
69
70 /**
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053071 * It is called when parser receives an input matching the grammar rule
72 * (prefix),perform validations and update the data model tree.
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053073 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053074 * @param listener Listener's object
75 * @param ctx context object of the grammar rule
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053076 */
77 public static void processPrefixEntry(TreeWalkListener listener, GeneratedYangParser.PrefixStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +053078
79 // Check for stack to be non empty.
Vidyashree Rama468f8282016-03-04 19:08:35 +053080 checkStackIsNotEmpty(listener, MISSING_HOLDER, PREFIX_DATA, ctx.identifier().getText(), ENTRY);
81
82 String identifier = getValidIdentifier(ctx.identifier().getText(), PREFIX_DATA, ctx);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053083
84 // Obtain the node of the stack.
85 Parsable tmpNode = listener.getParsedDataStack().peek();
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053086 switch (tmpNode.getYangConstructType()) {
Bharat saraswald9822e92016-04-05 15:13:44 +053087 case MODULE_DATA: {
88 YangModule module = (YangModule) tmpNode;
89 module.setPrefix(identifier);
90 break;
91 }
92 case IMPORT_DATA: {
93 YangImport importNode = (YangImport) tmpNode;
94 importNode.setPrefixId(identifier);
95 break;
96 }
97 case BELONGS_TO_DATA: {
98 YangBelongsTo belongstoNode = (YangBelongsTo) tmpNode;
99 belongstoNode.setPrefix(identifier);
100 break;
101 }
102 default:
103 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, PREFIX_DATA,
104 ctx.identifier().getText(), ENTRY));
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530105 }
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530106 }
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530107}