Read Performance Improvement - Using Native Query
[cps.git] / cps-service / src / main / java / org / onap / cps / spi / CpsDataPersistenceService.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020-2022 Nordix Foundation.
4  *  Modifications Copyright (C) 2021 Pantheon.tech
5  *  Modifications Copyright (C) 2022 Bell Canada
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.cps.spi;
24
25 import java.util.Collection;
26 import java.util.List;
27 import java.util.Map;
28 import org.onap.cps.spi.model.DataNode;
29
30 /*
31     Data Store interface that is responsible for handling yang data.
32     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
33     when adding methods.
34  */
35 public interface CpsDataPersistenceService {
36
37     /**
38      * Store a datanode.
39      *
40      * @param dataspaceName dataspace name
41      * @param anchorName    anchor name
42      * @param dataNode      data node
43      */
44     void storeDataNode(String dataspaceName, String anchorName, 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(String dataspaceName, String anchorName, String parentXpath, DataNode dataNode);
55
56     /**
57      * Adds list child elements to a Fragment.
58      *
59      * @param dataspaceName          dataspace name
60      * @param anchorName             anchor name
61      * @param parentNodeXpath        parent node xpath
62      * @param listElementsCollection collection of data nodes representing list elements
63      */
64
65     void addListElements(String dataspaceName, String anchorName, String parentNodeXpath,
66         Collection<DataNode> listElementsCollection);
67
68     /**
69      * Add multiple lists of data nodes to a parent node at the same time.
70      *
71      * @param dataspaceName           dataspace name
72      * @param anchorName              anchor name
73      * @param parentNodeXpath         parent node xpath
74      * @param newLists collections of lists of data nodes representing list elements
75      */
76     void addMultipleLists(String dataspaceName, String anchorName, String parentNodeXpath,
77             Collection<Collection<DataNode>> newLists);
78
79     /**
80      * Retrieves datanode by XPath for given dataspace and anchor.
81      *
82      * @param dataspaceName          dataspace name
83      * @param anchorName             anchor name
84      * @param xpath                  xpath
85      * @param fetchDescendantsOption defines the scope of data to fetch: either single node or all the descendant nodes
86      *                               (recursively) as well
87      * @return data node object
88      */
89     DataNode getDataNode(String dataspaceName, String anchorName, String xpath,
90         FetchDescendantsOption fetchDescendantsOption);
91
92     /**
93      * Updates leaves for existing data node.
94      *
95      * @param dataspaceName dataspace name
96      * @param anchorName    anchor name
97      * @param xpath         xpath
98      * @param leaves        the leaves as a map where key is a leaf name and a value is a leaf value
99      */
100     void updateDataLeaves(String dataspaceName, String anchorName, String xpath, Map<String, Object> leaves);
101
102     /**
103      * Replaces an existing data node's content including descendants.
104      *
105      * @param dataspaceName dataspace name
106      * @param anchorName    anchor name
107      * @param dataNode      data node
108      */
109     void updateDataNodeAndDescendants(String dataspaceName, String anchorName, DataNode dataNode);
110
111     /**
112      * Replaces multiple existing data nodes' content including descendants in a batch operation.
113      *
114      * @param dataspaceName dataspace name
115      * @param anchorName    anchor name
116      * @param dataNodes     data nodes
117      */
118     void updateDataNodesAndDescendants(String dataspaceName, String anchorName, final List<DataNode> dataNodes);
119
120     /**
121      * Replaces list content by removing all existing elements and inserting the given new elements
122      * under given parent, anchor and dataspace.
123      *
124      * @param dataspaceName   dataspace name
125      * @param anchorName      anchor name
126      * @param parentNodeXpath parent node xpath
127      * @param newListElements collection of data nodes representing the new list content
128      */
129     void replaceListContent(String dataspaceName, String anchorName,
130                             String parentNodeXpath, Collection<DataNode> newListElements);
131
132     /**
133      * Deletes any dataNode, yang container or yang list or yang list element.
134      *
135      * @param dataspaceName   dataspace name
136      * @param anchorName      anchor name
137      * @param targetXpath     xpath to list or list element (include [@key=value] to delete a single list element)
138      */
139     void deleteDataNode(String dataspaceName, String anchorName, String targetXpath);
140
141     /**
142      * Deletes all dataNodes in a given anchor.
143      *
144      * @param dataspaceName   dataspace name
145      * @param anchorName      anchor name
146      */
147     void deleteDataNodes(String dataspaceName, String anchorName);
148
149     /**
150      * Deletes existing a single list element or the whole list.
151      *
152      * @param dataspaceName   dataspace name
153      * @param anchorName      anchor name
154      * @param targetXpath     xpath to list or list element (include [@key=value] to delete a single list element)
155      */
156     void deleteListDataNode(String dataspaceName, String anchorName, String targetXpath);
157
158     /**
159      * Get a datanode by cps path.
160      *
161      * @param dataspaceName          dataspace name
162      * @param anchorName             anchor name
163      * @param cpsPath                cps path
164      * @param fetchDescendantsOption defines whether the descendants of the node(s) found by the query should be
165      *                               included in the output
166      * @return the data nodes found i.e. 0 or more data nodes
167      */
168     List<DataNode> queryDataNodes(String dataspaceName, String anchorName,
169                                   String cpsPath, FetchDescendantsOption fetchDescendantsOption);
170
171     /**
172      * Starts a session which allows use of locks and batch interaction with the persistence service.
173      *
174      * @return Session ID string
175      */
176     String startSession();
177
178     /**
179      * Close session.
180      *
181      * @param sessionId session ID
182      */
183     void closeSession(String sessionId);
184
185     /**
186      * Lock anchor.
187      * To release locks(s), the session holding the lock(s) must be closed.
188      *
189      * @param sessionID session ID
190      * @param dataspaceName dataspace name
191      * @param anchorName anchor name
192      * @param timeoutInMilliseconds lock attempt timeout in milliseconds
193      */
194     void lockAnchor(String sessionID, String dataspaceName, String anchorName, Long timeoutInMilliseconds);
195 }