Fix release notes
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / inventory / InventoryPersistence.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.ncmp.api.inventory;
22
23 import java.time.OffsetDateTime;
24 import java.util.List;
25 import lombok.RequiredArgsConstructor;
26 import org.onap.cps.api.CpsDataService;
27 import org.onap.cps.ncmp.api.impl.utils.YangDataConverter;
28 import org.onap.cps.ncmp.api.impl.yangmodels.YangModelCmHandle;
29 import org.onap.cps.spi.CpsDataPersistenceService;
30 import org.onap.cps.spi.FetchDescendantsOption;
31 import org.onap.cps.spi.model.DataNode;
32 import org.onap.cps.utils.CpsValidator;
33 import org.onap.cps.utils.JsonObjectMapper;
34 import org.springframework.stereotype.Component;
35
36 @RequiredArgsConstructor
37 @Component
38 public class InventoryPersistence {
39
40     private static final String NCMP_DATASPACE_NAME = "NCMP-Admin";
41
42     private static final String NCMP_DMI_REGISTRY_ANCHOR = "ncmp-dmi-registry";
43
44     private static final String XPATH_TO_CM_HANDLE = "/dmi-registry/cm-handles[@id='" + "%s" + "']";
45
46     private final JsonObjectMapper jsonObjectMapper;
47
48     private final CpsDataService cpsDataService;
49
50     private final CpsDataPersistenceService cpsDataPersistenceService;
51
52     private static final CompositeStateBuilder compositeStateBuilder = new CompositeStateBuilder();
53
54     /**
55      * Get the Cm Handle Composite State from the data node.
56      *
57      * @param cmHandleId cm handle id
58      * @return the cm handle composite state
59      */
60     public CompositeState getCmHandleState(final String cmHandleId) {
61         final DataNode stateAsDataNode = cpsDataService.getDataNode(NCMP_DATASPACE_NAME, NCMP_DMI_REGISTRY_ANCHOR,
62                 String.format(XPATH_TO_CM_HANDLE, cmHandleId) + "/state",
63             FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS);
64         return compositeStateBuilder.fromDataNode(stateAsDataNode).build();
65     }
66
67     /**
68      * Save the cm handles state.
69      *
70      * @param cmHandleId    cm handle id
71      * @param compositeState composite state
72      */
73     public void saveCmHandleState(final String cmHandleId, final CompositeState compositeState) {
74         final String cmHandleJsonData = String.format("{\"state\":%s}",
75             jsonObjectMapper.asJsonString(compositeState));
76         cpsDataService.replaceNodeTree(NCMP_DATASPACE_NAME, NCMP_DMI_REGISTRY_ANCHOR,
77             String.format(XPATH_TO_CM_HANDLE, cmHandleId),
78             cmHandleJsonData, OffsetDateTime.now());
79     }
80
81     /**
82      * Method which returns cm handles by the cm handles state.
83      *
84      * @param cmHandleState cm handle state
85      * @return a list of cm handles
86      */
87     public List<DataNode> getCmHandlesByState(final CmHandleState cmHandleState) {
88         return cpsDataPersistenceService.queryDataNodes(NCMP_DATASPACE_NAME,
89             NCMP_DMI_REGISTRY_ANCHOR, "//state[@cm-handle-state=\""
90                 + cmHandleState + "\"]/ancestor::cm-handles",
91             FetchDescendantsOption.OMIT_DESCENDANTS);
92     }
93
94     /**
95      * This method retrieves DMI service name, DMI properties and the state for a given cm handle.
96      * @param cmHandleId the id of the cm handle
97      * @return yang model cm handle
98      */
99     public YangModelCmHandle getYangModelCmHandle(final String cmHandleId) {
100         CpsValidator.validateNameCharacters(cmHandleId);
101         return YangDataConverter.convertCmHandleToYangModel(getCmHandleDataNode(cmHandleId), cmHandleId);
102     }
103
104     private DataNode getCmHandleDataNode(final String cmHandle) {
105         return cpsDataService.getDataNode(NCMP_DATASPACE_NAME,
106             NCMP_DMI_REGISTRY_ANCHOR,
107             String.format(XPATH_TO_CM_HANDLE, cmHandle),
108             FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS);
109     }
110
111 }