Remove dataspace_id column from Fragment table
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / repository / FragmentQueryBuilder.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2022-2023 Nordix Foundation
4  *  Modifications Copyright (C) 2023 TechMahindra Ltd.
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 package org.onap.cps.spi.repository;
23
24 import java.util.HashMap;
25 import java.util.LinkedList;
26 import java.util.List;
27 import java.util.Map;
28 import java.util.Queue;
29 import javax.persistence.EntityManager;
30 import javax.persistence.PersistenceContext;
31 import javax.persistence.Query;
32 import lombok.RequiredArgsConstructor;
33 import lombok.extern.slf4j.Slf4j;
34 import org.onap.cps.cpspath.parser.CpsPathPrefixType;
35 import org.onap.cps.cpspath.parser.CpsPathQuery;
36 import org.onap.cps.spi.entities.AnchorEntity;
37 import org.onap.cps.spi.entities.DataspaceEntity;
38 import org.onap.cps.spi.entities.FragmentEntity;
39 import org.onap.cps.utils.JsonObjectMapper;
40 import org.springframework.stereotype.Component;
41
42 @RequiredArgsConstructor
43 @Slf4j
44 @Component
45 public class FragmentQueryBuilder {
46     private static final String REGEX_ABSOLUTE_PATH_PREFIX = "^";
47     private static final String REGEX_DESCENDANT_PATH_PREFIX = "^.*\\/";
48     private static final String REGEX_OPTIONAL_LIST_INDEX_POSTFIX = "(\\[@(?!.*\\[).*?])?$";
49     private static final AnchorEntity ACROSS_ALL_ANCHORS = null;
50
51     @PersistenceContext
52     private EntityManager entityManager;
53
54     private final JsonObjectMapper jsonObjectMapper;
55
56     /**
57      * Create a sql query to retrieve by anchor(id) and cps path.
58      *
59      * @param anchorEntity the anchor
60      * @param cpsPathQuery the cps path query to be transformed into a sql query
61      * @return a executable query object
62      */
63     public Query getQueryForAnchorAndCpsPath(final AnchorEntity anchorEntity, final CpsPathQuery cpsPathQuery) {
64         return getQueryForDataspaceOrAnchorAndCpsPath(anchorEntity.getDataspace(), anchorEntity, cpsPathQuery);
65     }
66
67     /**
68      * Create a sql query to retrieve by cps path.
69      *
70      * @param dataspaceEntity the dataspace
71      * @param cpsPathQuery the cps path query to be transformed into a sql query
72      * @return a executable query object
73      */
74     public Query getQueryForDataspaceAndCpsPath(final DataspaceEntity dataspaceEntity,
75                                                 final CpsPathQuery cpsPathQuery) {
76         return getQueryForDataspaceOrAnchorAndCpsPath(dataspaceEntity, ACROSS_ALL_ANCHORS, cpsPathQuery);
77     }
78
79     private static String getXpathSqlRegex(final CpsPathQuery cpsPathQuery) {
80         final StringBuilder xpathRegexBuilder = getRegexStringBuilderWithPrefix(cpsPathQuery);
81         xpathRegexBuilder.append(REGEX_OPTIONAL_LIST_INDEX_POSTFIX);
82         return xpathRegexBuilder.toString();
83     }
84
85     private Query getQueryForDataspaceOrAnchorAndCpsPath(final DataspaceEntity dataspaceEntity,
86                                                          final AnchorEntity anchorEntity,
87                                                          final CpsPathQuery cpsPathQuery) {
88         final StringBuilder sqlStringBuilder = new StringBuilder();
89         final Map<String, Object> queryParameters = new HashMap<>();
90
91         if (anchorEntity == ACROSS_ALL_ANCHORS) {
92             sqlStringBuilder.append("SELECT fragment.* FROM fragment JOIN anchor ON anchor.id = fragment.anchor_id"
93                 + " WHERE dataspace_id = :dataspaceId");
94             queryParameters.put("dataspaceId", dataspaceEntity.getId());
95         } else {
96             sqlStringBuilder.append("SELECT * FROM fragment WHERE anchor_id = :anchorId");
97             queryParameters.put("anchorId", anchorEntity.getId());
98         }
99         addXpathSearch(cpsPathQuery, sqlStringBuilder, queryParameters);
100         addLeafConditions(cpsPathQuery, sqlStringBuilder);
101         addTextFunctionCondition(cpsPathQuery, sqlStringBuilder, queryParameters);
102         addContainsFunctionCondition(cpsPathQuery, sqlStringBuilder, queryParameters);
103
104         final Query query = entityManager.createNativeQuery(sqlStringBuilder.toString(), FragmentEntity.class);
105         setQueryParameters(query, queryParameters);
106         return query;
107     }
108
109     private static void addXpathSearch(final CpsPathQuery cpsPathQuery,
110                                        final StringBuilder sqlStringBuilder,
111                                        final Map<String, Object> queryParameters) {
112         sqlStringBuilder.append(" AND xpath ~ :xpathRegex");
113         final String xpathRegex = getXpathSqlRegex(cpsPathQuery);
114         queryParameters.put("xpathRegex", xpathRegex);
115     }
116
117     private static StringBuilder getRegexStringBuilderWithPrefix(final CpsPathQuery cpsPathQuery) {
118         final StringBuilder xpathRegexBuilder = new StringBuilder();
119         if (CpsPathPrefixType.ABSOLUTE.equals(cpsPathQuery.getCpsPathPrefixType())) {
120             xpathRegexBuilder.append(REGEX_ABSOLUTE_PATH_PREFIX);
121             xpathRegexBuilder.append(escapeXpath(cpsPathQuery.getXpathPrefix()));
122             return xpathRegexBuilder;
123         }
124         xpathRegexBuilder.append(REGEX_DESCENDANT_PATH_PREFIX);
125         xpathRegexBuilder.append(escapeXpath(cpsPathQuery.getDescendantName()));
126         return xpathRegexBuilder;
127     }
128
129     private static String escapeXpath(final String xpath) {
130         // See https://jira.onap.org/browse/CPS-500 for limitations of this basic escape mechanism
131         return xpath.replace("[@", "\\[@");
132     }
133
134     private static Integer getTextValueAsInt(final CpsPathQuery cpsPathQuery) {
135         try {
136             return Integer.parseInt(cpsPathQuery.getTextFunctionConditionValue());
137         } catch (final NumberFormatException e) {
138             return null;
139         }
140     }
141
142     private void addLeafConditions(final CpsPathQuery cpsPathQuery, final StringBuilder sqlStringBuilder) {
143         if (cpsPathQuery.hasLeafConditions()) {
144             sqlStringBuilder.append(" AND (");
145             final List<String> queryBooleanOperatorsType = cpsPathQuery.getBooleanOperatorsType();
146             final Queue<String> booleanOperatorsQueue = (queryBooleanOperatorsType == null) ? null : new LinkedList<>(
147                 queryBooleanOperatorsType);
148             cpsPathQuery.getLeavesData().entrySet().forEach(entry -> {
149                 sqlStringBuilder.append(" attributes @> ");
150                 sqlStringBuilder.append("'");
151                 sqlStringBuilder.append(jsonObjectMapper.asJsonString(entry));
152                 sqlStringBuilder.append("'");
153                 if (!(booleanOperatorsQueue == null || booleanOperatorsQueue.isEmpty())) {
154                     sqlStringBuilder.append(" ");
155                     sqlStringBuilder.append(booleanOperatorsQueue.poll());
156                     sqlStringBuilder.append(" ");
157                 }
158             });
159             sqlStringBuilder.append(")");
160         }
161     }
162
163     private static void addTextFunctionCondition(final CpsPathQuery cpsPathQuery,
164                                                  final StringBuilder sqlStringBuilder,
165                                                  final Map<String, Object> queryParameters) {
166         if (cpsPathQuery.hasTextFunctionCondition()) {
167             sqlStringBuilder.append(" AND (");
168             sqlStringBuilder.append("attributes @> jsonb_build_object(:textLeafName, :textValue)");
169             sqlStringBuilder
170                 .append(" OR attributes @> jsonb_build_object(:textLeafName, json_build_array(:textValue))");
171             queryParameters.put("textLeafName", cpsPathQuery.getTextFunctionConditionLeafName());
172             queryParameters.put("textValue", cpsPathQuery.getTextFunctionConditionValue());
173             final Integer textValueAsInt = getTextValueAsInt(cpsPathQuery);
174             if (textValueAsInt != null) {
175                 sqlStringBuilder.append(" OR attributes @> jsonb_build_object(:textLeafName, :textValueAsInt)");
176                 sqlStringBuilder
177                     .append(" OR attributes @> jsonb_build_object(:textLeafName, json_build_array(:textValueAsInt))");
178                 queryParameters.put("textValueAsInt", textValueAsInt);
179             }
180             sqlStringBuilder.append(")");
181         }
182     }
183
184     private static void addContainsFunctionCondition(final CpsPathQuery cpsPathQuery,
185                                                      final StringBuilder sqlStringBuilder,
186                                                      final Map<String, Object> queryParameters) {
187         if (cpsPathQuery.hasContainsFunctionCondition()) {
188             sqlStringBuilder.append(" AND attributes ->> :containsLeafName LIKE CONCAT('%',:containsValue,'%') ");
189             queryParameters.put("containsLeafName", cpsPathQuery.getContainsFunctionConditionLeafName());
190             queryParameters.put("containsValue", cpsPathQuery.getContainsFunctionConditionValue());
191         }
192     }
193
194     private static void setQueryParameters(final Query query, final Map<String, Object> queryParameters) {
195         for (final Map.Entry<String, Object> queryParameter : queryParameters.entrySet()) {
196             query.setParameter(queryParameter.getKey(), queryParameter.getValue());
197         }
198     }
199
200 }