blob: b91003bee54b13fbdd165f1e30e10d0c0710ba42 [file] [log] [blame]
Vidyashree Rama92fc5562016-02-12 18:44:12 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vidyashree Rama92fc5562016-02-12 18:44:12 +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
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053019import org.onosproject.yangutils.datamodel.YangStatus;
20import org.onosproject.yangutils.datamodel.YangStatusType;
21import org.onosproject.yangutils.parser.Parsable;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053022import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053023import org.onosproject.yangutils.parser.exceptions.ParserException;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053024import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Vidyashree Rama59071f32016-02-20 19:27:56 +053025
Vidyashree Rama59071f32016-02-20 19:27:56 +053026import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
27import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
Vidyashree Rama8a6b1282016-03-15 10:18:25 +053028import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_CONTENT;
Bharat saraswald9822e92016-04-05 15:13:44 +053029import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
Vidyashree Rama59071f32016-02-20 19:27:56 +053030import 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.removeQuotesAndHandleConcat;
Vidyashree Rama59071f32016-02-20 19:27:56 +053032import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Bharat saraswald9822e92016-04-05 15:13:44 +053033import static org.onosproject.yangutils.utils.YangConstructType.STATUS_DATA;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053034
35/*
36 * Reference: RFC6020 and YANG ANTLR Grammar
37 *
38 * ABNF grammar as per RFC6020
39 * status-stmt = status-keyword sep status-arg-str stmtend
40 * status-arg-str = < a string that matches the rule
41 * status-arg >
42 * status-arg = current-keyword /
43 * obsolete-keyword /
44 * deprecated-keyword
45 *
46 * ANTLR grammar rule
47 * statusStatement : STATUS_KEYWORD (CURRENT_KEYWORD | OBSOLETE_KEYWORD | DEPRECATED_KEYWORD) STMTEND;
48 */
49
50/**
Bharat saraswald9822e92016-04-05 15:13:44 +053051 * Represents listener based call back function corresponding to the "status"
Vidyashree Rama92fc5562016-02-12 18:44:12 +053052 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
53 */
54public final class StatusListener {
55
Vidyashree Rama8a6b1282016-03-15 10:18:25 +053056 private static final String CURRENT_KEYWORD = "current";
57 private static final String DEPRECATED_KEYWORD = "deprecated";
58 private static final String OBSOLETE_KEYWORD = "obsolete";
59
Vidyashree Rama92fc5562016-02-12 18:44:12 +053060 /**
61 * Creates a new status listener.
62 */
63 private StatusListener() {
64 }
65
66 /**
67 * It is called when parser receives an input matching the grammar
68 * rule (status), performs validation and updates the data model
69 * tree.
70 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053071 * @param listener listener's object
72 * @param ctx context object of the grammar rule
Vidyashree Rama92fc5562016-02-12 18:44:12 +053073 */
74 public static void processStatusEntry(TreeWalkListener listener,
75 GeneratedYangParser.StatusStatementContext ctx) {
Vidyashree Rama92fc5562016-02-12 18:44:12 +053076
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053077 // Check for stack to be non empty.
Vidyashree Rama59071f32016-02-20 19:27:56 +053078 checkStackIsNotEmpty(listener, MISSING_HOLDER, STATUS_DATA, "", ENTRY);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053079
Vidyashree Rama8a6b1282016-03-15 10:18:25 +053080 YangStatusType status = getValidStatus(ctx);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053081
82 Parsable tmpData = listener.getParsedDataStack().peek();
83 if (tmpData instanceof YangStatus) {
84 YangStatus yangStatus = (YangStatus) tmpData;
85 yangStatus.setStatus(status);
86 } else {
Vidyashree Rama59071f32016-02-20 19:27:56 +053087 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, STATUS_DATA, "", ENTRY));
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053088 }
Vidyashree Rama92fc5562016-02-12 18:44:12 +053089 }
Vidyashree Rama8a6b1282016-03-15 10:18:25 +053090
91 /**
92 * Validates status value and returns the value from context.
93 *
94 * @param ctx context object of the grammar rule
95 * @return status current/deprecated/obsolete
96 */
97 private static YangStatusType getValidStatus(GeneratedYangParser.StatusStatementContext ctx) {
98
99 YangStatusType status;
100
101 String value = removeQuotesAndHandleConcat(ctx.status().getText());
102 if (value.equals(CURRENT_KEYWORD)) {
103 status = YangStatusType.CURRENT;
104 } else if (value.equals(DEPRECATED_KEYWORD)) {
105 status = YangStatusType.DEPRECATED;
106 } else if (value.equals(OBSOLETE_KEYWORD)) {
107 status = YangStatusType.OBSOLETE;
108 } else {
109 throw new ParserException(constructListenerErrorMessage(INVALID_CONTENT, STATUS_DATA, value, ENTRY));
110 }
111
112 return status;
113 }
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530114}