ovsdb: Fix use of non-array for JSON-RPC parameters.
[openvswitch] / ovsdb / SPECS
1          ===================================================
2           Open vSwitch Configuration Database Specification
3          ===================================================
4
5 Basic Notation
6 --------------
7
8 The descriptions below use the following shorthand notations for JSON
9 values.  Additional notation is presented later.
10
11 <string>
12
13     A JSON string.
14
15 <id>
16
17     A JSON string matching [a-zA-Z_][a-zA-Z0-9_]*.
18
19     <id>s that begin with _ are reserved to the implementation and may
20     not be used by the user.
21
22 <boolean>
23
24     A JSON true or false value.
25
26 <number>
27
28     A JSON number.
29
30 <integer>
31
32     A JSON number with an integer value, within a certain range
33     (currently -2**63...+2**63-1).
34
35 <value>
36
37     Any JSON value.
38
39 Schema Format
40 -------------
41
42 An Open vSwitch configuration database consists of a set of tables,
43 each of which has a number of columns and zero or more rows.  A schema
44 is represented by <database-schema>, as described below.
45
46 <database-schema>
47
48     A JSON object with the following members:
49
50         "name": <id>                            required
51         "comment": <string>                     optional
52         "tables": {<id>: <table-schema>, ...}   required
53
54     The "name" identifies the database as a whole.  The "comment"
55     optionally provides more information about the database.  The
56     value of "tables" is a JSON object whose names are table names and
57     whose values are <table-schema>s.
58
59 <table-schema>
60
61     A JSON object with the following members:
62
63         "comment": <string>                       optional
64         "columns": {<id>: <column-schema>, ...}   required
65
66     The "comment" optionally provides information about this table for
67     a human reader.  The value of "tables" is a JSON object whose
68     names are table names and whose values are <column-schema>s.
69
70     Every table has the following columns whose definitions are not
71     included in the schema:
72
73         "_uuid": This column, which contains exactly one UUID value,
74         is initialized to a random value by the database engine when
75         it creates a row.  It is read-only, and its value never
76         changes during the lifetime of a row.
77
78         "_version": Like "_uuid", this column contains exactly one
79         UUID value, initialized to a random value by the database
80         engine when it creates a row, and it is read-only.  However,
81         its value changes to a new random value whenever any other
82         field in the row changes.  Furthermore, its value is
83         ephemeral: when the database is closed and reopened, or when
84         the database process is stopped and then started again, each
85         "_version" also changes to a new random value.
86
87 <column-schema>
88
89     A JSON object with the following members:
90
91         "comment": <string>                       optional
92         "type": <type>                            required
93         "ephemeral": <boolean>                    optional
94
95     The "comment" optionally provides information about this column
96     for a human reader.  The "type" specifies the type of data stored
97     in this column.  If "ephemeral" is specified as true, then this
98     column's values are not guaranteed to be durable; they may be lost
99     when the database restarts.
100
101 <type>
102
103     The type of a database column.  Either an <atomic-type> or a JSON
104     object that describes the type of a database column, with the
105     following members:
106
107         "key": <atomic-type>               required
108         "value": <atomic-type>             optional
109         "min": <integer>                   optional
110         "max": <integer> or "unlimited"    optional
111
112     If "min" or "max" is not specified, each defaults to 1.  If "max"
113     is specified as "unlimited", then there is no specified maximum
114     number of elements, although the implementation will enforce some
115     limit.  After considering defaults, "min" must be at least 0,
116     "max" must be at least 1, and "max" must be greater than or equal
117     to "min".
118
119     If "min" and "max" are both 1 and "value" is not specified, the
120     type is the scalar type specified by "key".
121
122     If "min" is not 1 or "max" is not 1, or both, and "value" is not
123     specified, the type is a set of scalar type "key".
124
125     If "value" is specified, the type is a map from type "key" to type
126     "value".
127
128 <atomic-type>
129
130     One of the strings "integer", "real", "boolean", "string", or
131     "uuid", representing the specified scalar type.
132
133 Wire Protocol
134 -------------
135
136 The database wire protocol is implemented in JSON-RPC 1.0.  It
137 consists of the following JSON-RPC methods:
138
139 get_schema
140 ..........
141
142 Request object members:
143
144     "method": "get_schema"            required
145     "params": []                      required
146     "id": any JSON value except null  required
147
148 Response object members:
149
150     "result": <database-schema>
151     "error": null
152     "id": same "id" as request
153
154 This operation retrieves a <database-schema> that describes the
155 hosted database.
156
157 transact
158 ........
159
160 Request object members:
161
162     "method": "transact"              required
163     "params": [<operation>*]          required
164     "id": any JSON value except null  required
165
166 Response object members:
167
168     "result": [<object>*]
169     "error": null
170     "id": same "id" as request
171
172 The "params" array for this method consists of zero or more JSON
173 objects, each of which represents a single database operation.  The
174 "Operations" section below describes the valid operations.
175
176 The value of "id" must be unique among all in-flight transactions
177 within the current JSON-RPC session.  Otherwise, the server may return
178 a JSON-RPC error.
179
180 The database server executes each of the specified operations in the
181 specified order, except that if an operation fails, then the remaining
182 operations are not executed.
183
184 The set of operations is executed as a single atomic, consistent,
185 isolated transaction.  The transaction is committed only if every
186 operation succeeds.  Durability of the commit is not guaranteed unless
187 the "commit" operation, with "durable" set to true, is included in the
188 operation set (see below).
189
190 Regardless of whether errors occur, the response is always a JSON-RPC
191 response with null "error" and a "result" member that is an array with
192 the same number of elements as "params".  Each element of the "result"
193 array corresponds to the same element of the "params" array.  The
194 "result" array elements may be interpreted as follows:
195
196     - A JSON object that does not contain an "error" member indicates
197       that the operation completed successfully.  The specific members
198       of the object are specified below in the descriptions of
199       individual operations.  Some operations do not produce any
200       results, in which case the object will have no members.
201
202     - A JSON object that contains a "error" member indicates that the
203       operation completed with an error.  The value of the "error"
204       member is a short string, specified in this document, that
205       broadly indicates the class of the error.  Besides the ones
206       listed for a specific operation, any operation may result in one
207       the following "error"s:
208
209       "error": "resources exhausted"
210
211           The operation or the transaction requires more resources
212           (memory, disk, CPU, etc.) than are currently available to
213           the database server.
214
215       "error": "syntax error"
216
217           The operation is not specified correctly: a required request
218           object member is missing, an unknown or unsupported request
219           object member is present, the operation attempts to act on a
220           table that does not exist, the operation modifies a
221           read-only table column, etc.
222
223       Database implementations may use "error" strings not specified
224       in this document to indicate errors that do not fit into any of
225       the specified categories.
226
227       Optionally, the object may include a "details" member, whose
228       value is a string that describes the error in more detail for
229       the benefit of a human user or administrator.  The object may
230       also have other members that describe the error in more detail.
231       This document does not specify the names or values of these
232       members.
233
234     - A JSON null value indicates that the operation was not attempted
235       because a prior operation failed.
236
237 In general, "result" contains some number of successful results,
238 possibly followed by an error, in turn followed by enough JSON null
239 values to match the number of elements in "params".  There is one
240 exception: if all of the operations succeed, but the results cannot be
241 committed (e.g. due to I/O errors), then "result" will have one more
242 element than "params", with the additional element describing the
243 error.
244
245 If "params" contains one or more "wait" operations, then the
246 transaction may take an arbitrary amount of time to complete.  The
247 database implementation must be capable of accepting, executing, and
248 replying to other transactions and other JSON-RPC requests while a
249 transaction or transactions containing "wait" operations are
250 outstanding on the same or different JSON-RPC sessions.
251
252 The section "Notation for the Wire Protocol" below describes
253 additional notation for use with the wire protocol.  After that, the
254 "Operations" section describes each operation.
255
256 cancel
257 ......
258
259 Request object members:
260
261     "method": "cancel"                              required
262     "params": [the "id" for an outstanding request] required
263     "id": null                                      required
264
265 Response object members:
266
267     <no response>
268
269 This JSON-RPC notification instructs the database server to
270 immediately complete or cancel the "transact" request whose "id" is
271 the same as the notification's "params" value.  
272
273 If the "transact" request can be completed immediately, then the
274 server sends a response in the form described for "transact", above.
275 Otherwise, the server sends a JSON-RPC error response of the following
276 form:
277
278     "result": null
279     "error": "canceled"
280     "id": the request "id" member
281
282 The "cancel" notification itself has no reply.
283
284 echo
285 ....
286
287 Request object members:
288
289     "method": "echo"                                required
290     "params": JSON array with any contents          required
291     "id": <value>                                   required
292
293 Response object members:
294
295     "result": same as "params"
296     "error": null
297     "id": the request "id" member
298
299 Both the JSON-RPC client and the server must implement this request.
300
301 This JSON-RPC request and response can be used to implement connection
302 keepalives, by allowing the server to check that the client is still
303 there or vice versa.
304
305
306 Notation for the Wire Protocol
307 ------------------------------
308
309 <table>
310
311     An <id> that names a table.
312
313 <column>
314
315     An <id> that names a table column.
316
317 <row>
318
319     A JSON object that describes a table row or a subset of a table
320     row.  Each member is the name of a table column paired with the
321     <value> of that column.
322
323 <value>
324
325     A JSON value that represents the value of a column in a table row,
326     one of <atom>, a <set>, or a <map>.
327
328 <atom>
329
330     A JSON value that represents a scalar value for a column, one of
331     <string>, <number>, <boolean>, <uuid>, <named-uuid>.
332
333 <set>
334
335     A 2-element JSON array that represents a database set value.  The
336     first element of the array must be the string "set" and the second
337     element must be an array of zero or more <atom>s giving the values
338     in the set.  All of the <atom>s must have the same type.
339
340 <map>
341
342     A 2-element JSON array that represents a database map value.  The
343     first element of the array must be the string "map" and the second
344     element must be an array of zero or more <pair>s giving the values
345     in the map.  All of the <pair>s must have the same key and value
346     types.
347
348     (JSON objects are not used to represent <map> because JSON only
349     allows string names in an object.)
350
351 <pair>
352
353     A 2-element JSON array that represents a pair within a database
354     map.  The first element is an <atom> that represents the key, the
355     second element is an <atom> that represents the value.
356
357 <uuid>
358
359     A 2-element JSON array that represents a UUID.  The first element
360     of the array must be the string "uuid" and the second element must
361     be a 36-character string giving the UUID in the format described
362     by RFC 4122.  For example, the following <uuid> represents the
363     UUID 550e8400-e29b-41d4-a716-446655440000:
364
365         ["uuid", "550e8400-e29b-41d4-a716-446655440000"]
366
367 <named-uuid>
368
369     A 2-element JSON array that represents the UUID of a row inserted
370     in a previous "insert" operation within the same transaction.  The
371     first element of the array must be the string "named-uuid" and the
372     second element must be the string specified on a previous "insert"
373     operation's "uuid-name".  For example, if a previous "insert"
374     operation specified a "uuid-name" of "myrow", the following
375     <named-uuid> represents the UUID created by that operation:
376
377         ["named-uuid", "myrow"]
378
379 <condition>
380
381     A 3-element JSON array of the form [<column>, <function>,
382     <value>] that represents a test on a column value.
383
384     Except as otherwise specified below, <value> must have the same
385     type as <column>.
386
387     The meaning depends on the type of <column>:
388
389         integer
390         real
391
392             <function> must be "<", "<=", "==", "!=", ">=", ">",
393             "includes", or "excludes".
394
395             The test is true if the column's value satisfies the
396             relation <function> <value>, e.g. if the column has value
397             1 and <value> is 2, the test is true if <function> is "<",
398             "<=" or "!=", but not otherwise.
399
400             "includes" is equivalent to "=="; "excludes" is equivalent
401             to "!=".
402
403         boolean
404         string
405         uuid
406
407             <function> must be "!=", "==", "includes", or "excludes".
408
409             If <function> is "==" or "includes", the test is true if
410             the column's value equals <value>.  If <function> is "!="
411             or "excludes", the test is inverted.
412
413         set
414         map
415
416             <function> must be "!=", "==", "includes", or "excludes".
417
418             If <function> is "==", the test is true if the column's
419             value contains exactly the same values (for sets) or pairs
420             (for maps).  If <function> is "!=", the test is inverted.
421
422             If <function> is "includes", the test is true if the
423             column's value contains all of the values (for sets) or
424             pairs (for maps) in <value>.  The column's value may also
425             contain other values or pairs.
426
427             If <function> is "excludes", the test is true if the
428             column's value does not contain any of the values (for
429             sets) or pairs (for maps) in <value>.  The column's value
430             may contain other values or pairs not in <value>.
431
432             If <function> is "includes" or "excludes", then the
433             required type of <value> is slightly relaxed, in that it
434             may have fewer than the minimum number of elements
435             specified by the column's type.  If <function> is
436             "excludes", then the required type is additionally relaxed
437             in that <value> may have more than the maximum number of
438             elements specified by the column's type.
439
440 <function>
441
442     One of "<", "<=", "==", "!=", ">=", ">", "includes", "excludes".
443
444 Operations
445 ----------
446
447 Each of the available operations is described below.
448
449 insert
450 ......
451
452 Request object members:
453
454     "op": "insert"          required
455     "table": <table>        required
456     "row": <row>            required
457     "uuid-name": <string>   optional
458
459 Result object members:
460
461     "uuid": <uuid>
462
463 Semantics:
464
465     Inserts "row" into "table".  If "row" does not specify values
466     for all the columns in "table", those columns receive default
467     values.
468
469     The new row receives a new, randomly generated UUID, which is
470     returned as the "_uuid" member of the result.  If "uuid-name"
471     is supplied, then the UUID is made available under that name
472     to later operations within the same transaction.
473
474 select
475 ......
476
477 Request object members:
478
479     "op": "select"                required
480     "table": <table>              required
481     "where": [<condition>*]       required
482     "columns": [<column>*]        optional
483
484 Result object members:
485
486     "rows": [<row>*]
487
488 Semantics:
489
490     Searches "table" for rows that match all the conditions specified
491     in "where".  If "where" is an empty array, every row in "table" is
492     selected.
493
494     The "rows" member of the result is an array of objects.  Each
495     object corresponds to a matching row, with each column
496     specified in "columns" as a member, the column's name as the
497     member name and its value as the member value.  If "columns"
498     is not specified, all the table's columns are included.  If
499     two rows of the result have the same values for all included
500     columns, only one copy of that row is included in "rows".
501     Specifying "_uuid" within "columns" will avoid dropping
502     duplicates, since every row has a unique UUID.
503
504     The ordering of rows within "rows" is unspecified.
505
506 update
507 ......
508
509 Request object members:
510
511     "op": "update"                required
512     "table": <table>              required
513     "where": [<condition>*]       required
514     "row": <row>                  required
515
516 Result object members:
517
518     "count": <integer>
519
520 Semantics:
521
522     Updates rows in a table.
523
524     Searches "table" for rows that match all the conditions
525     specified in "where".  For each matching row, changes the
526     value of each column specified in "row" to the value for that
527     column specified in "row".
528
529     The "_uuid" and "_version" columns of a table may not be updated.
530     Columns designated read-only in the schema also may not be
531     updated.
532
533     The "count" member of the result specifies the number of rows
534     that matched.
535
536 delete
537 ......
538
539 Request object members:
540
541     "op": "delete"                required
542     "table": <table>              required
543     "where": [<condition>*]       required
544
545 Result object members:
546
547     "count": <integer>
548
549 Semantics:
550
551     Deletes all the rows from "table" that match all the conditions
552     specified in "where".
553
554     The "count" member of the result specifies the number of deleted
555     rows.
556
557 wait
558 ....
559
560 Request object members:
561
562     "op": "wait"                        required
563     "timeout": <integer>                optional
564     "table": <table>                    required
565     "where": [<condition>*]             required
566     "columns": [<column>*]              required
567     "until": "==" or "!="               required
568     "rows": [<row>*]                    required
569
570 Result object members:
571
572     none
573
574 Semantics:
575
576     Waits until a condition becomes true.
577
578     If "until" is "==", checks whether the query on "table" specified
579     by "where" and "columns", which is evaluated in the same way as
580     specified for "select", returns the result set specified by
581     "rows".  If it does, then the operation completes successfully.
582     Otherwise, the entire transaction rolls back.  It is automatically
583     restarted later, after a change in the database makes it possible
584     for the operation to succeed.  The client will not receive a
585     response until the operation permanently succeeds or fails.
586     
587     If "until" is "!=", the sense of the test is negated.  That is, as
588     long as the query on "table" specified by "where" and "columns"
589     returns "rows", the transaction will be rolled back and restarted
590     later.
591
592     If "timeout" is specified, then the transaction aborts after the
593     specified number of milliseconds.  The transaction is guaranteed
594     to be attempted at least once before it aborts.  A "timeout" of 0
595     will abort the transaction on the first mismatch.
596
597 Errors:
598
599     "error": "not supported"
600
601         One or more of the columns in this table do not support
602         triggers.  This error will not occur if "timeout" is 0.
603
604     "error": "timed out"
605
606         The "timeout" was reached before the transaction was able to
607         complete.
608
609 commit
610 ......
611
612 Request object members:
613
614     "op": "commit"                      required
615     "durable": <boolean>                required
616
617 Result object members:
618
619     none
620
621 Semantics:
622
623     If "durable" is specified as true, then the transaction, if it
624     commits, will be stored durably (to disk) before the reply is sent
625     to the client.
626
627 Errors:
628
629     "error": "not supported"
630
631         When "durable" is true, this database implementation does not
632         support durable commits.
633
634 abort
635 .....
636
637 Request object members:
638
639     "op": "abort"                      required
640
641 Result object members:
642
643     (never succeeds)
644
645 Semantics:
646
647     Aborts the transaction with an error.  This may be useful for
648     testing.
649
650 Errors:
651
652     "error": "aborted"
653
654         This operation always fails with this error.