ebf6fd3c91fd4909b29bfd3450aa9343111321ae
[cps.git] / cps-path-parser / src / main / java / org / onap / cps / cpspath / parser / CpsPathBuilder.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.cpspath.parser;
22
23 import static org.onap.cps.cpspath.parser.CpsPathPrefixType.DESCENDANT;
24
25 import java.util.HashMap;
26 import java.util.Map;
27 import org.onap.cps.cpspath.parser.antlr4.CpsPathBaseListener;
28 import org.onap.cps.cpspath.parser.antlr4.CpsPathParser.AncestorAxisContext;
29 import org.onap.cps.cpspath.parser.antlr4.CpsPathParser.DescendantContext;
30 import org.onap.cps.cpspath.parser.antlr4.CpsPathParser.IncorrectPrefixContext;
31 import org.onap.cps.cpspath.parser.antlr4.CpsPathParser.LeafConditionContext;
32 import org.onap.cps.cpspath.parser.antlr4.CpsPathParser.MultipleLeafConditionsContext;
33 import org.onap.cps.cpspath.parser.antlr4.CpsPathParser.PrefixContext;
34 import org.onap.cps.cpspath.parser.antlr4.CpsPathParser.TextFunctionConditionContext;
35
36 public class CpsPathBuilder extends CpsPathBaseListener {
37
38     final CpsPathQuery cpsPathQuery = new CpsPathQuery();
39
40     final Map<String, Object> leavesData = new HashMap<>();
41
42     @Override
43     public void exitPrefix(final PrefixContext ctx) {
44         cpsPathQuery.setXpathPrefix(ctx.getText());
45     }
46
47     @Override
48     public void exitIncorrectPrefix(final IncorrectPrefixContext ctx) {
49         throw new IllegalStateException("CPS path can only start with one or two slashes (/)");
50     }
51
52     @Override
53     public void exitLeafCondition(final LeafConditionContext ctx) {
54         Object comparisonValue = null;
55         if (ctx.IntegerLiteral() != null) {
56             comparisonValue = Integer.valueOf(ctx.IntegerLiteral().getText());
57         }
58         if (ctx.StringLiteral() != null) {
59             comparisonValue = stripFirstAndLastCharacter(ctx.StringLiteral().getText());
60         } else if (comparisonValue == null) {
61             throw new IllegalStateException("Unsupported comparison value encountered in expression" + ctx.getText());
62         }
63         leavesData.put(ctx.leafName().getText(), comparisonValue);
64     }
65
66     @Override
67     public void exitDescendant(final DescendantContext ctx) {
68         cpsPathQuery.setCpsPathPrefixType(DESCENDANT);
69         cpsPathQuery.setDescendantName(ctx.getText().substring(2));
70     }
71
72     @Override
73     public void enterMultipleLeafConditions(final MultipleLeafConditionsContext ctx)  {
74         leavesData.clear();
75     }
76
77     @Override
78     public void exitMultipleLeafConditions(final MultipleLeafConditionsContext ctx) {
79         cpsPathQuery.setLeavesData(leavesData);
80     }
81
82     @Override
83     public void exitAncestorAxis(final AncestorAxisContext ctx) {
84         cpsPathQuery.setAncestorSchemaNodeIdentifier(ctx.ancestorPath().getText());
85     }
86
87     @Override
88     public void exitTextFunctionCondition(final TextFunctionConditionContext ctx) {
89         cpsPathQuery.setTextFunctionConditionLeafName(ctx.leafName().getText());
90         cpsPathQuery.setTextFunctionConditionValue(stripFirstAndLastCharacter(ctx.StringLiteral().getText()));
91     }
92
93     CpsPathQuery build() {
94         return cpsPathQuery;
95     }
96
97     private static String stripFirstAndLastCharacter(final String wrappedString) {
98         return wrappedString.substring(1, wrappedString.length() - 1);
99     }
100
101 }