blob: a5e881a2b145fa48fd44dbcf1f26893a9705e4cc [file] [log] [blame]
Sithara Punnasseryff114552017-01-10 11:40:55 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Sithara Punnasseryff114552017-01-10 11:40:55 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.config;
18
Sithara Punnassery06208792017-02-10 16:25:29 -080019import com.google.common.annotations.Beta;
Sithara Punnassery4b091dc2017-03-02 17:22:40 -080020import org.onosproject.yang.model.DataNode;
21import org.onosproject.yang.model.ResourceId;
Sithara Punnasseryff114552017-01-10 11:40:55 -080022import org.onosproject.event.ListenerService;
Gaurav Agrawal02dbee32017-05-11 19:04:52 +053023import org.onosproject.yang.model.RpcInput;
24import org.onosproject.yang.model.RpcOutput;
Sithara Punnasseryff114552017-01-10 11:40:55 -080025
Sithara Punnassery7b0c15e2017-07-07 15:08:19 -070026import java.util.concurrent.CompletableFuture;
27
Sithara Punnasseryff114552017-01-10 11:40:55 -080028/**
29 * Service for storing and distributing dynamic configuration data.
30 */
Sithara Punnassery06208792017-02-10 16:25:29 -080031@Beta
Sithara Punnasseryff114552017-01-10 11:40:55 -080032public interface DynamicConfigService
33 extends ListenerService<DynamicConfigEvent, DynamicConfigListener> {
Sithara Punnassery9d464a32017-07-23 16:14:02 -070034
Sithara Punnasseryff114552017-01-10 11:40:55 -080035 /**
36 * Creates a new node in the dynamic config store.
37 * This method would throw an exception if there is a node with the same
38 * identifier, already present at the specified path or any of the parent
39 * nodes were not present in the path leading up to the requested node.
40 * Failure reason will be the error message in the exception.
41 *
42 * @param path data structure with absolute path to the parent
43 * @param node recursive data structure, holding a leaf node or a subtree
44 * @throws FailedException if the new node could not be created
45 */
Sithara Punnassery7b0c15e2017-07-07 15:08:19 -070046 void createNode(ResourceId path, DataNode node);
Sithara Punnasseryff114552017-01-10 11:40:55 -080047
48 /**
49 * Reads the requested node form the dynamic config store.
50 * This operation would get translated to reading a leaf node or a subtree.
51 * Will return an empty DataNode if after applying the filter, the result
52 * is an empty list of nodes. This method would throw an exception if the
53 * requested node or any parent nodes in the path were not present.
54 * Failure reason will be the error message in the exception.
55 *
56 * @param path data structure with absolute path to the intended node
57 * @param filter filtering conditions to be applied on the result list of nodes
58 * @return a recursive data structure, holding a leaf node or a subtree
59 * @throws FailedException if the requested node could not be read
60 */
Sithara Punnassery9306e6b2017-02-06 15:38:19 -080061 DataNode readNode(ResourceId path, Filter filter);
Sithara Punnasseryff114552017-01-10 11:40:55 -080062
63 /**
Sithara Punnassery18ffcc72017-05-18 14:24:30 -070064 * Returns whether the requested node exists in the Dynamic Config store.
65 *
66 * @param path data structure with absolute path to the intended node
67 * @return {@code true} if the node existed in the store
68 * {@code false} otherwise
69 */
70 Boolean nodeExist(ResourceId path);
71
72 /**
Sithara Punnasseryff114552017-01-10 11:40:55 -080073 * Updates an existing node in the dynamic config store.
Sithara Punnassery7b0c15e2017-07-07 15:08:19 -070074 * Existing nodes will be updated and missing nodes will be created as needed.
Sithara Punnasseryff114552017-01-10 11:40:55 -080075 * This method would throw an exception if the requested node or any of the
76 * parent nodes in the path were not present.
77 * Failure reason will be the error message in the exception.
78 *
79 * @param path data structure with absolute path to the parent
80 * @param node recursive data structure, holding a leaf node or a subtree
81 * @throws FailedException if the update request failed for any reason
Sithara Punnasseryff114552017-01-10 11:40:55 -080082 */
Sithara Punnassery0da1a9c2017-05-17 16:16:22 -070083 void updateNode(ResourceId path, DataNode node);
Sithara Punnasseryff114552017-01-10 11:40:55 -080084
85 /**
86 * Replaces nodes in the dynamic config store.
87 * This will ensure that only the tree structure in the given DataNode will
88 * be in place after a replace. This method would throw an exception if
89 * the requested node or any of the parent nodes in the path were not
90 * present. Failure reason will be the error message in the exception.
91 *
92 * @param path data structure with absolute path to the parent
93 * @param node recursive data structure, holding a leaf node or a subtree
94 * @throws FailedException if the replace request failed
95 */
Sithara Punnassery9306e6b2017-02-06 15:38:19 -080096 void replaceNode(ResourceId path, DataNode node);
Sithara Punnasseryff114552017-01-10 11:40:55 -080097
98 /**
Sithara Punnassery7b0c15e2017-07-07 15:08:19 -070099 * Removes a node from the dynamic config store.
100 * If the node pointed to a subtree, that will be deleted recursively.
101 * It will throw an exception if the requested node or any of the parent nodes in the
102 * path were not present; Failure reason will be the error message in the exception.
Sithara Punnasseryff114552017-01-10 11:40:55 -0800103 *
104 * @param path data structure with absolute path to the intended node
105 * @throws FailedException if the delete request failed
106 */
Sithara Punnassery9306e6b2017-02-06 15:38:19 -0800107 void deleteNode(ResourceId path);
Sithara Punnasseryff114552017-01-10 11:40:55 -0800108
109 /**
Sithara Punnasseryff114552017-01-10 11:40:55 -0800110 * Invokes an RPC.
111 *
Sithara Punnassery7b0c15e2017-07-07 15:08:19 -0700112 * @param id of RPC node
Sithara Punnasseryff114552017-01-10 11:40:55 -0800113 * @param input RPC input
Sithara Punnassery7b0c15e2017-07-07 15:08:19 -0700114 * @return future that will be completed with RpcOutput
Sithara Punnasseryff114552017-01-10 11:40:55 -0800115 * @throws FailedException if the RPC could not be invoked
116 */
Sithara Punnassery7b0c15e2017-07-07 15:08:19 -0700117 CompletableFuture<RpcOutput> invokeRpc(ResourceId id, RpcInput input);
Sithara Punnasseryff114552017-01-10 11:40:55 -0800118}