Add a configurable delay to the DMI stub
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / impl / events / cmsubscription / service / CmNotificationSubscriptionPersistenceServiceImpl.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2024 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.ncmp.api.impl.events.cmsubscription.service;
22
23 import java.util.Collection;
24 import java.util.Collections;
25 import java.util.List;
26 import lombok.RequiredArgsConstructor;
27 import lombok.extern.slf4j.Slf4j;
28 import org.onap.cps.api.CpsQueryService;
29 import org.onap.cps.ncmp.api.impl.operations.DatastoreType;
30 import org.onap.cps.spi.FetchDescendantsOption;
31 import org.onap.cps.spi.model.DataNode;
32 import org.springframework.stereotype.Service;
33
34 @Slf4j
35 @Service
36 @RequiredArgsConstructor
37 public class CmNotificationSubscriptionPersistenceServiceImpl implements CmNotificationSubscriptionPersistenceService {
38
39     private static final String IS_ONGOING_CM_SUBSCRIPTION_CPS_PATH_QUERY = """
40             /datastores/datastore[@name='%s']/cm-handles/cm-handle[@id='%s']/filters/filter[@xpath='%s']""";
41
42     private final CpsQueryService cpsQueryService;
43
44     @Override
45     public boolean isOngoingCmNotificationSubscription(final DatastoreType datastoreType, final String cmHandleId,
46             final String xpath) {
47         return !getOngoingCmNotificationSubscriptionIds(datastoreType, cmHandleId, xpath).isEmpty();
48     }
49
50     @Override
51     public Collection<String> getOngoingCmNotificationSubscriptionIds(final DatastoreType datastoreType,
52             final String cmHandleId, final String xpath) {
53
54         final String isOngoingCmSubscriptionCpsPathQuery =
55                 IS_ONGOING_CM_SUBSCRIPTION_CPS_PATH_QUERY.formatted(datastoreType.getDatastoreName(), cmHandleId,
56                         escapeQuotesByDoublingThem(xpath));
57         final Collection<DataNode> existingNodes =
58                 cpsQueryService.queryDataNodes(NCMP_DATASPACE_NAME, CM_SUBSCRIPTIONS_ANCHOR_NAME,
59                         isOngoingCmSubscriptionCpsPathQuery, FetchDescendantsOption.OMIT_DESCENDANTS);
60         if (existingNodes.isEmpty()) {
61             return Collections.emptyList();
62         }
63         return (List<String>) existingNodes.iterator().next().getLeaves().get("subscribers");
64     }
65
66     private static String escapeQuotesByDoublingThem(final String inputXpath) {
67         return inputXpath.replace("'", "''");
68     }
69 }