blob: 8278137e83fd90cf58772e3fe3009334b878cc2c [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
Vinod Kumar Sc4216002016-03-03 19:55:30 +053019import java.net.URI;
20
Gaurav Agrawala04483c2016-02-13 14:23:40 +053021import org.onosproject.yangutils.datamodel.YangModule;
22import org.onosproject.yangutils.datamodel.YangNameSpace;
23import org.onosproject.yangutils.parser.Parsable;
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;
Gaurav Agrawala04483c2016-02-13 14:23:40 +053027
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;
Vinod Kumar Sc4216002016-03-03 19:55:30 +053033import static org.onosproject.yangutils.utils.YangConstructType.NAMESPACE_DATA;
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053034
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053035/*
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 * namespace-stmt = namespace-keyword sep uri-str optsep stmtend
45 *
46 * ANTLR grammar rule
47 * module_header_statement : yang_version_stmt? namespace_stmt prefix_stmt
48 * | yang_version_stmt? prefix_stmt namespace_stmt
49 * | namespace_stmt yang_version_stmt? prefix_stmt
50 * | namespace_stmt prefix_stmt yang_version_stmt?
51 * | prefix_stmt namespace_stmt yang_version_stmt?
52 * | prefix_stmt yang_version_stmt? namespace_stmt
53 * ;
54 * namespace_stmt : NAMESPACE_KEYWORD string STMTEND;
55 */
56
57/**
Bharat saraswald9822e92016-04-05 15:13:44 +053058 * Represents listener based call back function corresponding to the "namespace"
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053059 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
60 */
61public final class NamespaceListener {
62
63 /**
64 * Creates a new namespace listener.
65 */
66 private NamespaceListener() {
67 }
68
69 /**
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053070 * It is called when parser receives an input matching the grammar rule
71 * (namespace), perform validations and update the data model tree.
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053072 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053073 * @param listener Listener's object
74 * @param ctx context object of the grammar rule
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053075 */
76 public static void processNamespaceEntry(TreeWalkListener listener,
Vinod Kumar Sc4216002016-03-03 19:55:30 +053077 GeneratedYangParser.NamespaceStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +053078
79 // Check for stack to be non empty.
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053080 checkStackIsNotEmpty(listener, MISSING_HOLDER, NAMESPACE_DATA, ctx.string().getText(), ENTRY);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053081
Gaurav Agrawalb5a1c132016-02-21 02:56:46 +053082 if (!validateUriValue(ctx.string().getText())) {
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053083 ParserException parserException = new ParserException("YANG file error: Invalid namespace URI");
Gaurav Agrawala04483c2016-02-13 14:23:40 +053084 parserException.setLine(ctx.string().STRING(0).getSymbol().getLine());
85 parserException.setCharPosition(ctx.string().STRING(0).getSymbol().getCharPositionInLine());
86 throw parserException;
87 }
88
89 // Obtain the node of the stack.
90 Parsable tmpNode = listener.getParsedDataStack().peek();
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053091 switch (tmpNode.getYangConstructType()) {
Vinod Kumar Sc4216002016-03-03 19:55:30 +053092 case MODULE_DATA: {
93 YangModule module = (YangModule) tmpNode;
94 YangNameSpace uri = new YangNameSpace();
95 uri.setUri(ctx.string().getText());
96 module.setNameSpace(uri);
97 break;
98 }
99 default:
100 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, NAMESPACE_DATA,
101 ctx.string().getText(), ENTRY));
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530102 }
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +0530103 }
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530104
105 /**
106 * Validate input URI.
107 *
108 * @param uri input namespace URI
109 * @return validation result
110 */
111 private static boolean validateUriValue(String uri) {
112 uri = uri.replace("\"", "");
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530113 try {
Vinod Kumar Sc4216002016-03-03 19:55:30 +0530114 URI.create(uri);
Gaurav Agrawala04483c2016-02-13 14:23:40 +0530115 } catch (Exception e1) {
116 return false;
117 }
118 return true;
119 }
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530120}