Replace list-node content (part 1): CPS Service and persistence layers
[cps.git] / cps-service / src / main / java / org / onap / cps / spi / CpsDataPersistenceService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation. All rights reserved.
4  *  Modifications Copyright (C) 2021 Pantheon.tech
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;
23
24 import java.util.Collection;
25 import java.util.Map;
26 import org.checkerframework.checker.nullness.qual.NonNull;
27 import org.onap.cps.spi.model.DataNode;
28
29 /*
30     Data Store interface that is responsible for handling yang data.
31     Please follow guidelines in https://gerrit.nordix.org/#/c/onap/ccsdk/features/+/6698/19/cps/interface-proposal/src/main/java/cps/javadoc/spi/DataStoreService.java
32     when adding methods.
33  */
34 public interface CpsDataPersistenceService {
35
36     /**
37      * Store a datanode.
38      *
39      * @param dataspaceName dataspace name
40      * @param anchorName    anchor name
41      * @param dataNode      data node
42      */
43     void storeDataNode(@NonNull String dataspaceName, @NonNull String anchorName,
44         @NonNull DataNode dataNode);
45
46     /**
47      * Add a child to a Fragment.
48      *
49      * @param dataspaceName dataspace name
50      * @param anchorName    anchor name
51      * @param parentXpath   parent xpath
52      * @param dataNode      dataNode
53      */
54     void addChildDataNode(@NonNull String dataspaceName, @NonNull String anchorName, @NonNull String parentXpath,
55         @NonNull DataNode dataNode);
56
57     /**
58      * Adds list node child elements to a Fragment.
59      *
60      * @param dataspaceName   dataspace name
61      * @param anchorName      anchor name
62      * @param parentNodeXpath parent node xpath
63      * @param dataNodes       collection of data nodes representing list node elements
64      */
65
66     void addListDataNodes(@NonNull String dataspaceName, @NonNull String anchorName, @NonNull String parentNodeXpath,
67         @NonNull Collection<DataNode> dataNodes);
68
69     /**
70      * Retrieves datanode by XPath for given dataspace and anchor.
71      *
72      * @param dataspaceName          dataspace name
73      * @param anchorName             anchor name
74      * @param xpath                  xpath
75      * @param fetchDescendantsOption defines the scope of data to fetch: either single node or all the descendant nodes
76      *                               (recursively) as well
77      * @return data node object
78      */
79     DataNode getDataNode(@NonNull String dataspaceName, @NonNull String anchorName, @NonNull String xpath,
80         @NonNull FetchDescendantsOption fetchDescendantsOption);
81
82
83     /**
84      * Updates leaves for existing data node.
85      *
86      * @param dataspaceName dataspace name
87      * @param anchorName    anchor name
88      * @param xpath         xpath
89      * @param leaves        the leaves as a map where key is a leaf name and a value is a leaf value
90      */
91     void updateDataLeaves(@NonNull String dataspaceName, @NonNull String anchorName, @NonNull String xpath,
92         @NonNull Map<String, Object> leaves);
93
94     /**
95      * Replaces existing data node content including descendants.
96      *
97      * @param dataspaceName dataspace name
98      * @param anchorName    anchor name
99      * @param dataNode      data node
100      */
101     void replaceDataNodeTree(@NonNull String dataspaceName, @NonNull String anchorName, @NonNull DataNode dataNode);
102
103     /**
104      * Replaces existing list data node content including descendants.
105      *
106      * @param dataspaceName   dataspace name
107      * @param anchorName      anchor name
108      * @param parentNodeXpath parent node xpath
109      * @param dataNodes       collection of data nodes representing list node elements
110      */
111     void replaceListDataNodes(@NonNull String dataspaceName, @NonNull String anchorName,
112         @NonNull String parentNodeXpath, @NonNull Collection<DataNode> dataNodes);
113
114     /**
115      * Get a datanode by cps path.
116      *
117      * @param dataspaceName          dataspace name
118      * @param anchorName             anchor name
119      * @param cpsPath                cps path
120      * @param fetchDescendantsOption defines whether the descendants of the node(s) found by the query should be
121      *                               included in the output
122      * @return the data nodes found i.e. 0 or more data nodes
123      */
124     Collection<DataNode> queryDataNodes(@NonNull String dataspaceName, @NonNull String anchorName,
125         @NonNull String cpsPath, @NonNull FetchDescendantsOption fetchDescendantsOption);
126
127 }