Springboot Integration tests improvements
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / repository / FragmentRepositoryMultiPathQueryImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2022 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.spi.repository;
22
23
24 import java.util.ArrayList;
25 import java.util.Collection;
26 import java.util.HashSet;
27 import java.util.List;
28 import javax.persistence.EntityManager;
29 import javax.persistence.PersistenceContext;
30 import javax.transaction.Transactional;
31 import lombok.AllArgsConstructor;
32 import lombok.extern.slf4j.Slf4j;
33 import org.onap.cps.spi.entities.FragmentEntity;
34
35
36 @Slf4j
37 @AllArgsConstructor
38 public class FragmentRepositoryMultiPathQueryImpl implements FragmentRepositoryMultiPathQuery {
39
40     @PersistenceContext
41     private EntityManager entityManager;
42
43     private TempTableCreator tempTableCreator;
44
45     @Override
46     @Transactional
47     public List<FragmentEntity> findByAnchorAndMultipleCpsPaths(final Integer anchorId,
48                                                                 final Collection<String> cpsPathQueryList) {
49         final Collection<List<String>> sqlData = new HashSet<>(cpsPathQueryList.size());
50         for (final String query : cpsPathQueryList) {
51             final List<String> row = new ArrayList<>(1);
52             row.add(query);
53             sqlData.add(row);
54         }
55
56         final String tempTableName = tempTableCreator.createTemporaryTable(
57                 "xpathTemporaryTable", sqlData, "xpath");
58         return selectMatchingFragments(anchorId, tempTableName);
59     }
60
61     private List<FragmentEntity> selectMatchingFragments(final Integer anchorId, final String tempTableName) {
62         final String sql = String.format(
63             "SELECT * FROM FRAGMENT WHERE anchor_id = %d AND xpath IN (select xpath FROM %s);",
64             anchorId, tempTableName);
65         final List<FragmentEntity> fragmentEntities = entityManager.createNativeQuery(sql, FragmentEntity.class)
66                 .getResultList();
67         log.debug("Fetched {} fragment entities by anchor and cps path.", fragmentEntities.size());
68         return fragmentEntities;
69     }
70 }