blob: 102474d03ab51a174c94ffb65c50d3babaa2a098 [file] [log] [blame]
Sithara Punnasseryff114552017-01-10 11:40:55 -08001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
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.RpcCaller;
24import org.onosproject.yang.model.RpcCommand;
25import org.onosproject.yang.model.RpcHandler;
26import org.onosproject.yang.model.RpcInput;
27import org.onosproject.yang.model.RpcOutput;
Sithara Punnasseryff114552017-01-10 11:40:55 -080028
29/**
30 * Service for storing and distributing dynamic configuration data.
31 */
Sithara Punnassery06208792017-02-10 16:25:29 -080032@Beta
Sithara Punnasseryff114552017-01-10 11:40:55 -080033public interface DynamicConfigService
34 extends ListenerService<DynamicConfigEvent, DynamicConfigListener> {
35 /**
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 Punnassery9306e6b2017-02-06 15:38:19 -080046 void createNodeRecursive(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 /**
64 * Returns the number of children under the node at the given path.
65 * This method would throw an exception if the requested node or any parent
66 * nodes in the path were not present.
67 * Failure reason will be the error message in the exception.
68 *
69 * @param path data structure with absolute path to the intended node
70 * @param filter filtering conditions to be applied on the result list of nodes
71 * @return the number of children after applying the filtering conditions if any
72 * @throws FailedException if the request failed
73 */
Sithara Punnassery9306e6b2017-02-06 15:38:19 -080074 Integer getNumberOfChildren(ResourceId path, Filter filter);
Sithara Punnasseryff114552017-01-10 11:40:55 -080075
76 /**
77 * Updates an existing node in the dynamic config store.
Sithara Punnasseryff114552017-01-10 11:40:55 -080078 * Any missing children nodes will be created with this request.
79 * This method would throw an exception if the requested node or any of the
80 * parent nodes in the path were not present.
81 * Failure reason will be the error message in the exception.
82 *
83 * @param path data structure with absolute path to the parent
84 * @param node recursive data structure, holding a leaf node or a subtree
85 * @throws FailedException if the update request failed for any reason
Sithara Punnasseryff114552017-01-10 11:40:55 -080086 */
Sithara Punnassery0da1a9c2017-05-17 16:16:22 -070087 void updateNode(ResourceId path, DataNode node);
Sithara Punnasseryff114552017-01-10 11:40:55 -080088
89 /**
90 * Replaces nodes in the dynamic config store.
91 * This will ensure that only the tree structure in the given DataNode will
92 * be in place after a replace. This method would throw an exception if
93 * the requested node or any of the parent nodes in the path were not
94 * present. Failure reason will be the error message in the exception.
95 *
96 * @param path data structure with absolute path to the parent
97 * @param node recursive data structure, holding a leaf node or a subtree
98 * @throws FailedException if the replace request failed
99 */
Sithara Punnassery9306e6b2017-02-06 15:38:19 -0800100 void replaceNode(ResourceId path, DataNode node);
Sithara Punnasseryff114552017-01-10 11:40:55 -0800101
102 /**
103 * Removes a leaf node from the dynamic config store.
104 * This method would throw an exception if the requested node or any of the
105 * parent nodes in the path were not present or the specified node is the
106 * root node or has one or more children.
107 * Failure reason will be the error message in the exception.
108 *
109 * @param path data structure with absolute path to the intended node
110 * @throws FailedException if the delete request failed
111 */
Sithara Punnassery9306e6b2017-02-06 15:38:19 -0800112 void deleteNode(ResourceId path);
Sithara Punnasseryff114552017-01-10 11:40:55 -0800113
114 /**
115 * Removes a subtree from the dynamic config store.
116 * This method will delete all the children recursively, under the given
117 * node. It will throw an exception if the requested node or any of the
118 * parent nodes in the path were not present.
119 * Failure reason will be the error message in the exception.
120 *
121 * @param path data structure with absolute path to the intended node
122 * @throws FailedException if the delete request failed
123 */
Sithara Punnassery9306e6b2017-02-06 15:38:19 -0800124 void deleteNodeRecursive(ResourceId path);
Sithara Punnasseryff114552017-01-10 11:40:55 -0800125
126 /**
Sithara Punnasseryff114552017-01-10 11:40:55 -0800127 * Registers an RPC handler.
128 *
129 * @param handler RPC handler
130 * @param command RPC command
131 * @throws FailedException if the handler could not be added
132 */
133 void registerHandler(RpcHandler handler, RpcCommand command);
134
135 /**
136 * Unregisters an RPC receiver.
137 *
138 * @param handler RPC handler
139 * @param command RPC command
140 * @throws FailedException if the handler could not be removed
141 */
142 void unRegisterHandler(RpcHandler handler, RpcCommand command);
143
144 /**
145 * Invokes an RPC.
146 *
147 * @param caller of the of the RPC
148 * @param msgId RPC message id
149 * @param command RPC command
150 * @param input RPC input
151 * @throws FailedException if the RPC could not be invoked
152 */
153 void invokeRpc(RpcCaller caller, Integer msgId, RpcCommand command, RpcInput input);
154
155 /**
156 * Provides response to a a previously invoked RPC.
157 *
158 * @param msgId of a previously invoked RPC
159 * @param output data from the RPC execution
160 * @throws FailedException if the RPC response was invalid
161 * (or the msg id was not recognised by the store)
162 */
163 void rpcResponse(Integer msgId, RpcOutput output);
164}