CpsPath Query Optimization
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / repository / FragmentRepositoryCpsPathQueryImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021-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 import java.util.List;
24 import javax.persistence.EntityManager;
25 import javax.persistence.PersistenceContext;
26 import javax.persistence.Query;
27 import javax.transaction.Transactional;
28 import lombok.RequiredArgsConstructor;
29 import lombok.extern.slf4j.Slf4j;
30 import org.onap.cps.cpspath.parser.CpsPathQuery;
31 import org.onap.cps.spi.entities.FragmentEntity;
32
33 @RequiredArgsConstructor
34 @Slf4j
35 public class FragmentRepositoryCpsPathQueryImpl implements FragmentRepositoryCpsPathQuery {
36
37     @PersistenceContext
38     private EntityManager entityManager;
39
40     private final FragmentQueryBuilder fragmentQueryBuilder;
41
42     @Override
43     @Transactional
44     public List<FragmentEntity> findByAnchorAndCpsPath(final int anchorId, final CpsPathQuery cpsPathQuery) {
45         final Query query = fragmentQueryBuilder.getQueryForAnchorAndCpsPath(anchorId, cpsPathQuery);
46         final List<FragmentEntity> fragmentEntities = query.getResultList();
47         log.debug("Fetched {} fragment entities by anchor and cps path.", fragmentEntities.size());
48         return fragmentEntities;
49     }
50
51 }