blob: b63f901f19774777346a72addb25bae5f954fd3f [file] [log] [blame]
Vidyashree Rama92fc5562016-02-12 18:44:12 +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
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053019import org.onosproject.yangutils.datamodel.YangContainer;
20import org.onosproject.yangutils.parser.Parsable;
21import org.onosproject.yangutils.parser.ParsableDataType;
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 Rama4f1f08b2016-02-13 21:47:58 +053025import org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation;
26import org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction;
27import org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType;
28import org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053029
30/*
31 * Reference: RFC6020 and YANG ANTLR Grammar
32 *
33 * ABNF grammar as per RFC6020
34 * presence-stmt = presence-keyword sep string stmtend
35 *
36 * ANTLR grammar rule
37 * presenceStatement : PRESENCE_KEYWORD string STMTEND;
38 */
39
40/**
41 * Implements listener based call back function corresponding to the "presence"
42 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
43 */
44public final class PresenceListener {
45
46 /**
47 * Creates a new presence listener.
48 */
49 private PresenceListener() {
50 }
51
52 /**
53 * It is called when parser receives an input matching the grammar
54 * rule (presence), performs validation and updates the data model
55 * tree.
56 *
57 * @param listener listener's object.
58 * @param ctx context object of the grammar rule.
59 */
60 public static void processPresenceEntry(TreeWalkListener listener,
61 GeneratedYangParser.PresenceStatementContext ctx) {
Vidyashree Rama92fc5562016-02-12 18:44:12 +053062
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053063 // Check for stack to be non empty.
64 ListenerValidation.checkStackIsNotEmpty(listener, ListenerErrorType.MISSING_HOLDER,
65 ParsableDataType.PRESENCE_DATA, String.valueOf(ctx.string().getText()),
66 ListenerErrorLocation.ENTRY);
67
68 Parsable tmpData = listener.getParsedDataStack().peek();
69 if (tmpData.getParsableDataType() == ParsableDataType.CONTAINER_DATA) {
70 YangContainer container = (YangContainer) tmpData;
71 container.setPresence(ctx.string().getText());
72 } else {
73 throw new ParserException(ListenerErrorMessageConstruction
74 .constructListenerErrorMessage(ListenerErrorType.INVALID_HOLDER,
75 ParsableDataType.PRESENCE_DATA,
76 String.valueOf(ctx.string().getText()),
77 ListenerErrorLocation.ENTRY));
78 }
Vidyashree Rama92fc5562016-02-12 18:44:12 +053079 }
80}