blob: 4c2abf9a8f65df4722c7ca05e678ee521fe7e02f [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 Rama74453712016-04-18 12:29:39 +053025import org.onosproject.yangutils.utils.YangConstructType;
Vidyashree Rama59071f32016-02-20 19:27:56 +053026
Vidyashree Rama59071f32016-02-20 19:27:56 +053027import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
28import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
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
Vidyashree Rama74453712016-04-18 12:29:39 +053047 * statusStatement : STATUS_KEYWORD status STMTEND;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053048 */
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());
Vidyashree Rama74453712016-04-18 12:29:39 +0530102 switch (value) {
103 case CURRENT_KEYWORD: {
104 status = YangStatusType.CURRENT;
105 break;
106 }
107 case DEPRECATED_KEYWORD: {
108 status = YangStatusType.DEPRECATED;
109 break;
110 }
111 case OBSOLETE_KEYWORD: {
112 status = YangStatusType.OBSOLETE;
113 break;
114 }
115 default: {
116 ParserException parserException = new ParserException("YANG file error : " +
117 YangConstructType.getYangConstructType(STATUS_DATA) + " " + ctx.status().getText() +
118 " is not valid.");
119 parserException.setLine(ctx.getStart().getLine());
120 parserException.setCharPosition(ctx.getStart().getCharPositionInLine());
121 throw parserException;
122 }
Vidyashree Rama8a6b1282016-03-15 10:18:25 +0530123 }
124
125 return status;
126 }
Vidyashree Rama92fc5562016-02-12 18:44:12 +0530127}