Bug 7803: Implement agent RPCs for data tree change listener testing
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / model / src / main / yang / odl-mdsal-lowlevel-control.yang
1 module odl-mdsal-lowlevel-control {
2
3     yang-version 1;
4     namespace "tag:opendaylight.org,2017:controller:yang:lowlevel:control";
5     prefix ll;
6
7     import odl-mdsal-lowlevel-common {
8         revision-date "2017-02-15";
9         prefix llc;
10     }
11
12     organization "OpenDaylight";
13     contact "Vratko Polak <vrpolak@cisco.com>";
14     description "Control RPCs used to dynamically register, unregister, start or stop
15         the operations under test, which are defined in odl-mdsal-lowlevel-target (llt).
16         Control RPCs are backed by an implementation upon feature instalation.
17         Their registration shall only affect the local member,
18         but their invocation can interact with Entity Ownership or Singleton.
19
20         The 'mdsal' in the module name refers to the component which defines most APIs
21         accessed by the agent implementation. The intent is to test clustering behavior,
22         but most RPCs do not access APIs from clustering component of Controller project.
23
24         TODO: Unify grammar: present or future tense, or imperative mood.";
25
26     revision "2017-02-15" {
27         description "Initial revision for Carbon clustering testing.";
28     }
29
30     rpc register-constant {
31         description "Upon receiving this, the member has to create llt:get-constant
32             implementation (global RPC). If the registration fails for any reason,
33             propagate the corresponding error.";
34         input {
35             uses llc:constant-grouping;
36         }
37         // No output.
38     }
39
40     rpc unregister-constant {
41         description "Upon receiving this, the member has to unregister
42             any llt:get-constant implementations it has registered.
43             If no implementation has been registered, do nothing.";
44         // No input.
45         // No output.
46     }
47
48     rpc register-bound-constant {
49         description "Upon receiving this, the member has to create and register
50             a bound llt:get-contexted-constant implementation (routed RPC).
51             If the registration fails for any reason, propagate the corresponding error.";
52         input {
53             uses llc:context-grouping;
54             uses llc:constant-grouping;
55         }
56         // No output.
57     }
58
59     rpc unregister-bound-constant {
60         description "Upon receiving this, the member has to unregister
61             any llt:get-contexted-constant implementations bound to the context.
62             If no bound implementation for the context has been registered, do nothing.";
63         input {
64             uses llc:context-grouping;
65         }
66         // No output.
67     }
68
69     rpc register-singleton-constant {
70         description "Upon receiving this, the member checks whether it has already registered
71             a singleton application, and fails if yes. If no, the member creates
72             an application implementation based on the given constant
73             and registers the implementation as a singleton application.
74             If the registration fails for any reason, propagate the corresponding error.
75             If the application is instantiated, it creates and registers
76             a llt:get-singleton-constant implementation, which returns the given costant.
77             When the application instance is closed, it unregisters that
78             llt:get-singleton-constant implementation.";
79         input {
80             uses llc:constant-grouping;
81         }
82         // No output.
83     }
84
85     rpc unregister-singleton-constant {
86         description "Upon receiving this, the member checks whether it has currently registered
87             a singleton application, and fails if no. If yes, the member shall unregister
88             the application, presumably causing application instantiation on other member,
89             and closing of the local application instance (unregistering llt:get-singleton-constant).
90             If the unregistration fails for any reason, propagate the corresponding error.";
91         // No input.
92         // No output.
93     }
94
95     rpc register-flapping-singleton {
96         description "Upon receiving this, the member checks whether it has already created
97             a 'flapping' application implementation and 'active' flag is set, and fails if yes.
98             If no, the member (creates a flapping application implementation,)
99             sets the active flag, initializes local variable flap-count to 0,
100             and registers the implementation as a singleton application.
101             If the registration fails for any reason, propagate the corresponding error.
102             If the application is instantiated, it immediatelly un-registers itself.
103             When the application instance is closed, it increments flap-count
104             and if active flag is set, re-registers the application implementation as a singleton.
105             If either un-registration or re-registration fails, 'active' flag is unset,
106             flap-count is set to negative of its previous value (minus one in case of un-registration)
107             to signal a failure has happened.";
108         // No input.
109         // No output.
110     }
111
112     rpc unregister-flapping-singleton {
113         description "Upon receiving this, the member checks whether it has created
114             a flapping application, and fails if no. If yes, the member shall
115             set the active flag to false and return the current flap-count value.";
116         // No input.
117         output {
118             leaf flap-count {
119                 description "Number of successful re-registrations. If negative,
120                     (minus) cycle number when a failure occured.";
121                 mandatory true;
122                 type int64;
123             }
124         }
125     }
126
127     rpc start-publish-notifications {
128         description "Upon receiving this, the member checks whether it is already in the middle of publishing,
129             for this id, and fails if yes. If no, the member shall clear any state tracking data possibly present
130             from the previous call wth this id, and start publishing llt:id-sequence
131             notifications with the given id and sequence numbers increasing from 1.
132             The RPC shall return immediatelly before the first notification is published.
133             The publishing task stops on first error of after the given time.";
134         input {
135             uses llc:id-grouping;
136             leaf seconds {
137                 description "This RPC has to work (roughly) this long.";
138                 mandatory true;
139                 type uint32;
140             }
141             leaf notifications-per-second {
142                 description "An upper limit of publishes per second this RPC shall try to achieve.";
143                 mandatory true;
144                 type uint32;
145             }
146         }
147         // No output.
148     }
149
150     rpc check-publish-notifications {
151         description "Upon receiving this, the member shall immediatelly return
152             the current tracking data related to the current (or previous) task
153             started by start-publish-notifications with this id.";
154         input {
155             uses llc:id-grouping;
156         }
157         output {
158             leaf active {
159                 description "True if a publishing task for this id is running, false otherwise.";
160                 mandatory true;
161                 type boolean;
162             }
163             leaf publish-count {
164                 description "How many notifications were published for this id since last start.
165                     If there was no start-publish-notifications call for this id, this leaf is absent.";
166                 mandatory false;
167                 type int64;
168             }
169             leaf last-error {
170                 description "If no task has been started by start-publish-notifications for this id,
171                     or if the last such call has not encountered an error, this leaf is absent.
172                     Otherwise it contains a string message from the last error, including stacktrace if possible.";
173                 mandatory false;
174                 type string;
175             }
176         }
177     }
178
179     rpc subscribe-ynl {
180         description "Upon receiving this, the member checks whether it has already subscribed
181             a yang listener for the given id, and fails if yes.
182             If no, the member subscribes a Yang notification listener to listen for
183             llt:id-sequence notifications. The member also creates a local variable
184             (called local-number) for the sequence number and initialize that to 0.
185             Also three local counters are initialized to 0: all-not, id-not, err-not.
186             Upon receiving any id-sequence notification, all-not is incremented.
187             Each id-sequence notification of matching id shall increment id-not.
188             If local-number was one less than the sequence number (from a notification matching id),
189             increment local-number, else increment err-not.";
190         input {
191             uses llc:id-grouping;
192         }
193         // No output.
194     }
195
196     rpc unsubscribe-ynl {
197         description "Upon receiving this, the member checks whether it has currently subscribed
198             a yang listener for the given id, and fails if no. If yes, the member
199             shall unsubscribe the listener and return values of the local variables.";
200         input {
201             uses llc:id-grouping;
202         }
203         output {
204             leaf all-not {
205                 description "Number of received id-sequence notifications of any id.";
206                 mandatory true;
207                 type int64;
208             }
209             leaf id-not {
210                 description "Number of received id-sequence notifications of matching id
211                     and any sequence number.";
212                 mandatory true;
213                 type int64;
214             }
215             leaf err-not {
216                 description "Number of received id-sequence notifications of matching id,
217                     but out-of-order sequence number.";
218                 mandatory true;
219                 type int64;
220             }
221             leaf local-number {
222                 description "Value of the local number, should be equal to
223                     the sequence number of the last compatible id-sequence notification received.";
224                 mandatory true;
225                 type int64;
226             }
227         }
228     }
229
230     rpc write-transactions {
231         description "Upon receiving this, the member shall make sure the outer list item
232             of llt:id-ints exists for the given id, and then start creating (one by one)
233             and submitting transactions to randomly add or delete items on the inner list for that id.
234             The randomness should avoid creating conflicting writes (at least for non-chained
235             transactions). The recommended way is to require the random number
236             has low significant bits different than the past ~100k numbers.
237             To ensure balanced number of deletes, the first write can create
238             a random set of numbers. Other writes shall be one per number.
239             The writes shall use the old API, transaction (chains) created directly on datastore
240             (as opposed to DOMDataTreeProducer).
241             .get with a timeout on currently earliest non-complete Future (from .submit)
242             shall be used as the primary wait method to throttle the submission rate.
243             This RPC shall not return until all transactions are confirmed successful,
244             or an exception is raised (the exception should propagate to restconf response).
245             OptimisticLockException is always considered an error.";
246         input {
247             uses llc:id-grouping;
248             leaf seconds {
249                 description "This RPC has to work (roughly) this long.";
250                 mandatory true;
251                 type uint32;
252             }
253             leaf transactions-per-second {
254                 description "An upper limit of transactions per second this RPC shall try to achieve.";
255                 mandatory true;
256                 type uint32;
257             }
258             leaf chained-transactions {
259                 description "If true, write transactions shall be created on a transaction chain,
260                     (created at start of the RPC call, and deleted at at its end).
261                     If false, write transactions shall be created separately.";
262                 mandatory true;
263                 type boolean;
264             }
265         }
266         output {
267             leaf all-tx {
268                 description "Number of all transactions executed.";
269                 type int64;
270                 mandatory true;
271             }
272             leaf insert-tx {
273                 description "Number of transactions that inserted data.";
274                 type int64;
275                 mandatory true;
276             }
277             leaf delete-tx {
278                 description "Number of transactions that deleted data.";
279                 type int64;
280                 mandatory true;
281             }
282         }
283     }
284
285     rpc produce-transactions {
286         description "Upon receiving this, the member shall make sure the outer list item
287             of llt:in-ints exists for the given id, make sure a shard for
288             the whole (config) id-ints is created (by creating and closing producer
289             for the whole id-ints), and create a DOMDataTreeProducer for that item (using that shard).
290
291             FIXME: Is the above the normal way of creating prefix-based chards?
292
293             Then start creating (one by one) and submitting transactions
294             to randomly add or delete items on the inner list for that id.
295             To ensure balanced number of deletes, the first write can create
296             a random set of random numbers. Other writes shall be one per number.
297             The writes shall use DOMDataTreeProducer API, as opposed to transaction (chains)
298             created directly on datastore.
299             .get with a timeout on currently earliest non-complete Future (from .submit)
300             shall be used as the primary wait method to throttle the submission rate.
301             This RPC shall not return until all transactions are confirmed successful,
302             or an exception is raised (the exception should propagate to restconf response).
303             OptimisticLockException is always considered an error.
304             In either case, the producer should be closed before returning,
305             but the shard and the whole id item shall be kept as they are.";
306         input {
307             uses llc:id-grouping;
308             leaf seconds {
309                 description "This RPC has to work (roughly) this long.";
310                 mandatory true;
311                 type uint32;
312             }
313             leaf transactions-per-second {
314                 description "An upper limit of transactions per second this RPC shall try to achieve.";
315                 mandatory true;
316                 type uint32;
317             }
318             leaf isolated-transactions {
319                 description "The value for DOMDataTreeProducer#createTransaction argument.";
320                 mandatory true;
321                 type boolean;
322             }
323         }
324         output {
325             leaf all-tx {
326                 description "Number of all transactions executed.";
327                 type int64;
328                 mandatory true;
329             }
330             leaf insert-tx {
331                 description "Number of transactions that inserted data.";
332                 type int64;
333                 mandatory true;
334             }
335             leaf delete-tx {
336                 description "Number of transactions that deleted data.";
337                 type int64;
338                 mandatory true;
339             }
340         }
341     }
342
343     rpc create-prefix-shard {
344         description "Upon receiving this, the member creates a prefix shard at the instance-identifier, with replicas
345                 on the required members.";
346         input {
347
348             leaf prefix {
349                 mandatory true;
350                 type instance-identifier;
351             }
352             leaf-list replicas {
353                 min-elements 1;
354                 type string;
355             }
356         }
357     }
358
359     rpc remove-prefix-shard {
360         description "Upon receiving this, the member removes the prefix based shard identifier by this prefix.
361                 This must be called from the same node that created the shard.";
362
363         input {
364             leaf prefix {
365                 mandatory true;
366                 type instance-identifier;
367             }
368         }
369     }
370
371
372     rpc become-prefix-leader {
373         description "Upon receiving this, the member shall ask the appropriate API
374             to become Leader of the given shard (presumably the llt:list-ints one,
375             created by produce-transactions) and return immediatelly.";
376         input {
377             leaf shard-name {
378                 description "TBD.
379
380                 FIXME: Ask Java implementation developer about the format needed.";
381                 mandatory true;
382                 type string;
383             }
384         }
385         // No output.
386     }
387
388     rpc remove-shard-replica {
389         description "A specialised copy of cluster-admin:remove-shard-replica.
390
391             FIXME: Is this really needed for prefix shards, or even module shards
392                 (or is the cluster-admin RPC sufficient)?";
393         input {
394             leaf shard-name {
395                 description "The name of the config shard for which
396                     to remove the replica on the current member.";
397                 mandatory true;
398                 type string;
399             }
400         // No output.
401         }
402     }
403
404     rpc add-shard-replica {
405         description "A specialised copy of cluster-admin:add-shard-replica.
406
407             FIXME: Is this really needed for prefix shards, or even module shards
408                 (or is the cluster-admin RPC sufficient)?";
409         input {
410             leaf shard-name {
411                 description "The name of the config shard for which
412                     to add the replica on the current member.";
413                 mandatory true;
414                 type string;
415             }
416         // No output.
417         }
418     }
419
420     rpc is-client-aborted {
421         description "Return state of cds-access-client.
422
423             FIXME: Is an input needed?";
424         output {
425             leaf aborted {
426                 description "True if the local client is aborted (or unreachable), false otherwise.";
427                 mandatory true;
428                 type boolean;
429             }
430         }
431     }
432
433     rpc subscribe-dtcl {
434         description "Upon receiving this, the member checks whether it has already subscribed
435             and fails if yes. If no, the member subscribes a Data Tree Change Listener
436             to listen for changes on whole llt:id-ints. The first notification received is stored immediately.
437             Every notification received after the first one has the data(getDataBefore()) compared with the
438             last stored notification(called local copy), if they match the local copy is overwritten with
439             this notifications data(getDataAfter()). If they don't match the new notification is ignored.";
440         // No input.
441         // No output.
442     }
443
444     rpc unsubscribe-dtcl {
445         description "Upon receiving this, the member checks whether it has currently subscribed
446             a Data Tree Change Listener for llt:id-ints changes, and fails if no. If yes, the member
447             shall unsubscribe the listener, read state of id-ints, compare that
448             to the local copy, and return whether the local copy is the same.";
449         // No input.
450         output {
451             leaf copy-matches {
452                 type boolean;
453                 mandatory true;
454                 description "True if and only if the read id-ints is equal to the local copy.";
455             }
456         }
457     }
458
459     rpc subscribe-ddtl {
460         description "Upon receiving this, the member checks whether it has already subscribed
461             and fails if yes. If no, the member subscribes a DOMDataTreeListener
462             to listen for changes on whole llt:id-ints, and stores
463             the state from the initial notification to a local variable (called the local copy).
464             Each Data Tree Change from further notifications shall be applied
465             to the local copy if it is compatible
466             (the old state from notification is equal to the local copy state).
467             If a notification is not compatible, it shall be ignored.";
468         // No input.
469         // No output.
470     }
471
472     rpc unsubscribe-ddtl {
473         description "Upon receiving this, the member checks whether it has currently subscribed
474             a DOMDataTreeListener for llt:id-ints changes, and fails if no. If yes, the member
475             shall unsubscribe the listener, read state of id-ints (by briefly subscribing
476             and ubsubscribing again), compare that to the local copy,
477             and return whether the local copy is the same.";
478         // No input.
479         output {
480             leaf copy-matches {
481                 description "True if and only if the read id-ints is equal to the local copy.";
482                 mandatory true;
483                 type boolean;
484             }
485         }
486     }
487
488     // The following calls are not required for Carbon testing.
489
490     rpc deconfigure-id-ints-shard {
491         description "Upon receiving this, the member shall ask the appropriate API
492             to remove the llt:id-ints shard (presumably created by produce-transactions)
493             and return immediatelly.
494             It is expected the data would move to the root prefix shard seamlessly.
495
496             TODO: Make shard name configurable by input?";
497         // No input.
498         // No output.
499     }
500
501     rpc register-default-constant {
502         description "Upon receiving this, the member has to create and register
503             a default llt:get-contexted-constant implementation (routed RPC).
504             If the registration fails for any reason, propagate the corresponding error.";
505         input {
506             uses llc:constant-grouping;
507         }
508         // No output.
509     }
510
511     rpc unregister-default-constant {
512         description "Upon receiving this, the member has to unregister
513             any llt:get-contexted-constant default implementations it has registered.
514             If no default implementation has been registered, do nothing.";
515         // No input.
516         // No output.
517     }
518
519 }