blob: 32677a560d0c81f64825030c79a737de5ddfbda1 [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.YangList;
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 * key-stmt = key-keyword sep key-arg-str stmtend
35 *
36 * ANTLR grammar rule
37 * keyStatement : KEY_KEYWORD string STMTEND;
38 */
39
40/**
41 * Implements listener based call back function corresponding to the "key"
42 * rule defined in ANTLR grammar file for corresponding ABNF rule in RFC 6020.
43 */
44public final class KeyListener {
45
46 /**
47 * Creates a new key listener.
48 */
49 private KeyListener() {
50 }
51
52 /**
53 * It is called when parser receives an input matching the grammar
54 * rule (key), perform validations 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 processKeyEntry(TreeWalkListener listener,
61 GeneratedYangParser.KeyStatementContext 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.KEY_DATA, String.valueOf(ctx.string().getText()),
66 ListenerErrorLocation.ENTRY);
67
68 Parsable tmpData = listener.getParsedDataStack().peek();
69 if (listener.getParsedDataStack().peek() instanceof YangList) {
70 YangList yangList = (YangList) tmpData;
71 String tmpKeyValue = ctx.string().getText().replace("\"", "");
72 if (tmpKeyValue.contains(" ")) {
73 String[] keyValues = tmpKeyValue.split(" ");
74 for (String keyValue : keyValues) {
75 yangList.addKey(keyValue);
76 }
77 } else {
78 yangList.addKey(tmpKeyValue);
79 }
80 } else {
81 throw new ParserException(ListenerErrorMessageConstruction
82 .constructListenerErrorMessage(ListenerErrorType.INVALID_HOLDER,
83 ParsableDataType.KEY_DATA,
84 String.valueOf(ctx.string().getText()),
85 ListenerErrorLocation.ENTRY));
86 }
Vidyashree Rama92fc5562016-02-12 18:44:12 +053087 }
88}