blob: 136309178d1c69f53bad0dfd5cc5b28cd20b0d89 [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.YangLeaf;
20import org.onosproject.yangutils.parser.Parsable;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053021import org.onosproject.yangutils.parser.antlrgencode.GeneratedYangParser;
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053022import org.onosproject.yangutils.parser.exceptions.ParserException;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053023import org.onosproject.yangutils.parser.impl.TreeWalkListener;
Vidyashree Rama59071f32016-02-20 19:27:56 +053024
Vidyashree Rama59071f32016-02-20 19:27:56 +053025import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorLocation.ENTRY;
26import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorMessageConstruction.constructListenerErrorMessage;
27import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.INVALID_HOLDER;
28import static org.onosproject.yangutils.parser.impl.parserutils.ListenerErrorType.MISSING_HOLDER;
Bharat saraswald9822e92016-04-05 15:13:44 +053029import static org.onosproject.yangutils.parser.impl.parserutils.ListenerUtil.getValidBooleanValue;
Vidyashree Rama59071f32016-02-20 19:27:56 +053030import static org.onosproject.yangutils.parser.impl.parserutils.ListenerValidation.checkStackIsNotEmpty;
Bharat saraswald9822e92016-04-05 15:13:44 +053031import static org.onosproject.yangutils.utils.YangConstructType.MANDATORY_DATA;
Vidyashree Rama92fc5562016-02-12 18:44:12 +053032
33/*
34 * Reference: RFC6020 and YANG ANTLR Grammar
35 *
36 * ABNF grammar as per RFC6020
37 * mandatory-stmt = mandatory-keyword sep
38 * mandatory-arg-str stmtend
39 *
40 * mandatory-arg-str = < a string that matches the rule
41 * mandatory-arg >
42 *
43 * mandatory-arg = true-keyword / false-keyword
44 *
45 * ANTLR grammar rule
Vidyashree Rama8a6b1282016-03-15 10:18:25 +053046 * mandatoryStatement : MANDATORY_KEYWORD mandatory STMTEND;
47 * mandatory : string;
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 "mandatory"
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 MandatoryListener {
55
56 /**
57 * Creates a new mandatory listener.
58 */
59 private MandatoryListener() {
60 }
61
62 /**
63 * It is called when parser receives an input matching the grammar
64 * rule (mandatory), performs validation and updates the data model
65 * tree.
66 *
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053067 * @param listener listener's object
68 * @param ctx context object of the grammar rule
Vidyashree Rama92fc5562016-02-12 18:44:12 +053069 */
70 public static void processMandatoryEntry(TreeWalkListener listener,
71 GeneratedYangParser.MandatoryStatementContext ctx) {
Vidyashree Rama92fc5562016-02-12 18:44:12 +053072
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053073 // Check for stack to be non empty.
Vidyashree Rama59071f32016-02-20 19:27:56 +053074 checkStackIsNotEmpty(listener, MISSING_HOLDER, MANDATORY_DATA, "", ENTRY);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053075
Vidyashree Rama8a6b1282016-03-15 10:18:25 +053076 boolean isMandatory = getValidBooleanValue(ctx.mandatory().getText(), MANDATORY_DATA, ctx);
77
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053078 Parsable tmpNode = listener.getParsedDataStack().peek();
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +053079 switch (tmpNode.getYangConstructType()) {
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053080 case LEAF_DATA:
81 YangLeaf leaf = (YangLeaf) tmpNode;
Vidyashree Rama8a6b1282016-03-15 10:18:25 +053082 leaf.setMandatory(isMandatory);
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053083 break;
84 case CHOICE_DATA: // TODO
85 break;
86 default:
Vidyashree Rama59071f32016-02-20 19:27:56 +053087 throw new ParserException(constructListenerErrorMessage(INVALID_HOLDER, MANDATORY_DATA, "", ENTRY));
Vidyashree Rama4f1f08b2016-02-13 21:47:58 +053088 }
Vidyashree Rama92fc5562016-02-12 18:44:12 +053089 }
90}