blob: db53363d03548bce59ce78b11e20ccc896120ad2 [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.YangNameSpace;
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 Agrawala04483c2016-02-13 14:23:40 +053025
26import java.net.URI;
Gaurav Agrawal2cbb9502016-02-12 16:50:55 +053027
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053028import static org.onosproject.yangutils.parser.ParsableDataType.NAMESPACE_DATA;
29import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
30import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
31import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
32import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
33import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
34
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/**
58 * Implements listener based call back function corresponding to the "namespace"
59 * 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 *
73 * @param listener Listener's object.
74 * @param ctx context object of the grammar rule.
75 */
76 public static void processNamespaceEntry(TreeWalkListener listener,
77 GeneratedYangParser.NamespaceStatementContext ctx) {
Gaurav Agrawala04483c2016-02-13 14:23:40 +053078
79 // Check for stack to be non empty.
Gaurav Agrawal02b05d22016-02-19 12:57:13 +053080 checkStackIsNotEmpty(listener, MISSING_HOLDER, NAMESPACE_DATA, String.valueOf(ctx.string().getText()), ENTRY);
Gaurav Agrawala04483c2016-02-13 14:23:40 +053081
82 if (!validateUriValue(String.valueOf(ctx.string().getText()))) {
83 ParserException parserException = new ParserException("Invalid namespace URI");
84 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();
91 switch (tmpNode.getParsableDataType()) {
92 case MODULE_DATA: {
93 YangModule module = (YangModule) tmpNode;
94 YangNameSpace uri = new YangNameSpace();
95 uri.setUri(String.valueOf(ctx.string().getText()));
96 module.setNameSpace(uri);
97 break;
98 }
99 default:
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530100 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, NAMESPACE_DATA,
101 String.valueOf(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("\"", "");
113 final URI tmpUri;
114 try {
115 tmpUri = URI.create(uri);
116 } catch (Exception e1) {
117 return false;
118 }
119 return true;
120 }
Gaurav Agrawal02b05d22016-02-19 12:57:13 +0530121}