]> git.proxmox.com Git - mirror_qemu.git/blame - docs/devel/qapi-code-gen.rst
Merge tag 'pull-maintainer-may24-160524-2' of https://gitlab.com/stsquad/qemu into...
[mirror_qemu.git] / docs / devel / qapi-code-gen.rst
CommitLineData
f7aa076d
JS
1==================================
2How to use the QAPI code generator
3==================================
b84da831 4
f7aa076d
JS
5..
6 Copyright IBM Corp. 2011
7 Copyright (C) 2012-2016 Red Hat, Inc.
6fb55451 8
f7aa076d
JS
9 This work is licensed under the terms of the GNU GPL, version 2 or
10 later. See the COPYING file in the top-level directory.
6fb55451 11
f7aa076d
JS
12
13Introduction
14============
6fb55451 15
b84da831 16QAPI is a native C API within QEMU which provides management-level
b6c37eba 17functionality to internal and external users. For external
e790e666
EB
18users/processes, this interface is made available by a JSON-based wire
19format for the QEMU Monitor Protocol (QMP) for controlling qemu, as
20well as the QEMU Guest Agent (QGA) for communicating with the guest.
363b4262
EB
21The remainder of this document uses "Client JSON Protocol" when
22referring to the wire contents of a QMP or QGA connection.
b84da831 23
634c82c1
MA
24To map between Client JSON Protocol interfaces and the native C API,
25we generate C code from a QAPI schema. This document describes the
26QAPI schema language, and how it gets mapped to the Client JSON
27Protocol and to C. It additionally provides guidance on maintaining
28Client JSON Protocol compatibility.
29
30
f7aa076d
JS
31The QAPI schema language
32========================
634c82c1
MA
33
34The QAPI schema defines the Client JSON Protocol's commands and
35events, as well as types used by them. Forward references are
36allowed.
37
38It is permissible for the schema to contain additional types not used
39by any commands or events, for the side effect of generated C code
40used internally.
41
42There are several kinds of types: simple types (a number of built-in
55927c5f 43types, such as ``int`` and ``str``; as well as enumerations), arrays,
659056b8
AB
44complex types (structs and unions), and alternate types (a choice
45between other types).
634c82c1
MA
46
47
f7aa076d
JS
48Schema syntax
49-------------
634c82c1 50
f7aa076d 51Syntax is loosely based on `JSON <http://www.ietf.org/rfc/rfc8259.txt>`_.
634c82c1
MA
52Differences:
53
55927c5f 54* Comments: start with a hash character (``#``) that is not part of a
634c82c1
MA
55 string, and extend to the end of the line.
56
55927c5f 57* Strings are enclosed in ``'single quotes'``, not ``"double quotes"``.
634c82c1
MA
58
59* Strings are restricted to printable ASCII, and escape sequences to
55927c5f 60 just ``\\``.
634c82c1 61
55927c5f 62* Numbers and ``null`` are not supported.
634c82c1 63
b6c37eba
MA
64A second layer of syntax defines the sequences of JSON texts that are
65a correctly structured QAPI schema. We provide a grammar for this
66syntax in an EBNF-like notation:
67
55927c5f
JS
68* Production rules look like ``non-terminal = expression``
69* Concatenation: expression ``A B`` matches expression ``A``, then ``B``
70* Alternation: expression ``A | B`` matches expression ``A`` or ``B``
71* Repetition: expression ``A...`` matches zero or more occurrences of
72 expression ``A``
73* Repetition: expression ``A, ...`` matches zero or more occurrences of
74 expression ``A`` separated by ``,``
75* Grouping: expression ``( A )`` matches expression ``A``
76* JSON's structural characters are terminals: ``{ } [ ] : ,``
77* JSON's literal names are terminals: ``false true``
78* String literals enclosed in ``'single quotes'`` are terminal, and match
79 this JSON string, with a leading ``*`` stripped off
80* When JSON object member's name starts with ``*``, the member is
b6c37eba 81 optional.
55927c5f
JS
82* The symbol ``STRING`` is a terminal, and matches any JSON string
83* The symbol ``BOOL`` is a terminal, and matches JSON ``false`` or ``true``
84* ALL-CAPS words other than ``STRING`` are non-terminals
b6c37eba
MA
85
86The order of members within JSON objects does not matter unless
634c82c1
MA
87explicitly noted.
88
f7aa076d 89A QAPI schema consists of a series of top-level expressions::
b6c37eba
MA
90
91 SCHEMA = TOP-LEVEL-EXPR...
92
93The top-level expressions are all JSON objects. Code and
94documentation is generated in schema definition order. Code order
95should not matter.
96
f7aa076d 97A top-level expressions is either a directive or a definition::
b6c37eba
MA
98
99 TOP-LEVEL-EXPR = DIRECTIVE | DEFINITION
e790e666 100
f7aa076d 101There are two kinds of directives and six kinds of definitions::
b6c37eba
MA
102
103 DIRECTIVE = INCLUDE | PRAGMA
104 DEFINITION = ENUM | STRUCT | UNION | ALTERNATE | COMMAND | EVENT
105
106These are discussed in detail below.
e790e666
EB
107
108
f7aa076d
JS
109Built-in Types
110--------------
e790e666 111
55927c5f
JS
112The following types are predefined, and map to C as follows:
113
114 ============= ============== ============================================
115 Schema C JSON
116 ============= ============== ============================================
117 ``str`` ``char *`` any JSON string, UTF-8
118 ``number`` ``double`` any JSON number
119 ``int`` ``int64_t`` a JSON number without fractional part
120 that fits into the C integer type
121 ``int8`` ``int8_t`` likewise
122 ``int16`` ``int16_t`` likewise
123 ``int32`` ``int32_t`` likewise
124 ``int64`` ``int64_t`` likewise
125 ``uint8`` ``uint8_t`` likewise
126 ``uint16`` ``uint16_t`` likewise
127 ``uint32`` ``uint32_t`` likewise
128 ``uint64`` ``uint64_t`` likewise
129 ``size`` ``uint64_t`` like ``uint64_t``, except
130 ``StringInputVisitor`` accepts size suffixes
131 ``bool`` ``bool`` JSON ``true`` or ``false``
132 ``null`` ``QNull *`` JSON ``null``
133 ``any`` ``QObject *`` any JSON value
134 ``QType`` ``QType`` JSON string matching enum ``QType`` values
135 ============= ============== ============================================
51631493 136
a719a27c 137
f7aa076d
JS
138Include directives
139------------------
140
141Syntax::
a719a27c 142
b6c37eba 143 INCLUDE = { 'include': STRING }
e790e666 144
f7aa076d 145The QAPI schema definitions can be modularized using the 'include' directive::
a719a27c 146
e790e666 147 { 'include': 'path/to/file.json' }
a719a27c 148
b6c37eba
MA
149The directive is evaluated recursively, and include paths are relative
150to the file using the directive. Multiple includes of the same file
151are idempotent.
e790e666
EB
152
153As a matter of style, it is a good idea to have all files be
154self-contained, but at the moment, nothing prevents an included file
155from making a forward reference to a type that is only introduced by
156an outer file. The parser may be made stricter in the future to
157prevent incomplete include files.
a719a27c 158
9c66762a 159.. _pragma:
a719a27c 160
f7aa076d
JS
161Pragma directives
162-----------------
163
164Syntax::
bc52d03f 165
b86df374
MA
166 PRAGMA = { 'pragma': {
167 '*doc-required': BOOL,
05ebf841 168 '*command-name-exceptions': [ STRING, ... ],
b86df374 169 '*command-returns-exceptions': [ STRING, ... ],
0cec5011 170 '*documentation-exceptions': [ STRING, ... ],
b86df374 171 '*member-name-exceptions': [ STRING, ... ] } }
bc52d03f
MA
172
173The pragma directive lets you control optional generator behavior.
bc52d03f
MA
174
175Pragma's scope is currently the complete schema. Setting the same
176pragma to different values in parts of the schema doesn't work.
177
178Pragma 'doc-required' takes a boolean value. If true, documentation
179is required. Default is false.
180
05ebf841 181Pragma 'command-name-exceptions' takes a list of commands whose names
55927c5f 182may contain ``"_"`` instead of ``"-"``. Default is none.
05ebf841 183
b86df374 184Pragma 'command-returns-exceptions' takes a list of commands that may
1554a8fa
MA
185violate the rules on permitted return types. Default is none.
186
0cec5011
MA
187Pragma 'documentation-exceptions' takes a list of types, commands, and
188events whose members / arguments need not be documented. Default is
189none.
190
b86df374 191Pragma 'member-name-exceptions' takes a list of types whose member
55927c5f
JS
192names may contain uppercase letters, and ``"_"`` instead of ``"-"``.
193Default is none.
2cfbae3c 194
9c66762a 195.. _ENUM-VALUE:
bc52d03f 196
f7aa076d
JS
197Enumeration types
198-----------------
199
200Syntax::
f5821f52 201
b6c37eba
MA
202 ENUM = { 'enum': STRING,
203 'data': [ ENUM-VALUE, ... ],
204 '*prefix': STRING,
013b4efc
MA
205 '*if': COND,
206 '*features': FEATURES }
b6c37eba 207 ENUM-VALUE = STRING
b6c18755
MA
208 | { 'name': STRING,
209 '*if': COND,
210 '*features': FEATURES }
f5821f52 211
b6c37eba
MA
212Member 'enum' names the enum type.
213
214Each member of the 'data' array defines a value of the enumeration
55927c5f 215type. The form STRING is shorthand for :code:`{ 'name': STRING }`. The
b6c37eba
MA
216'name' values must be be distinct.
217
f7aa076d 218Example::
f5821f52
MA
219
220 { 'enum': 'MyEnum', 'data': [ 'value1', 'value2', 'value3' ] }
221
222Nothing prevents an empty enumeration, although it is probably not
b6c37eba
MA
223useful.
224
225On the wire, an enumeration type's value is represented by its
226(string) name. In C, it's represented by an enumeration constant.
227These are of the form PREFIX_NAME, where PREFIX is derived from the
228enumeration type's name, and NAME from the value's name. For the
229example above, the generator maps 'MyEnum' to MY_ENUM and 'value1' to
230VALUE1, resulting in the enumeration constant MY_ENUM_VALUE1. The
231optional 'prefix' member overrides PREFIX.
232
233The generated C enumeration constants have values 0, 1, ..., N-1 (in
234QAPI schema order), where N is the number of values. There is an
235additional enumeration constant PREFIX__MAX with value N.
236
237Do not use string or an integer type when an enumeration type can do
238the job satisfactorily.
239
9c66762a
JS
240The optional 'if' member specifies a conditional. See `Configuring the
241schema`_ below for more on this.
b6c37eba 242
9c66762a 243The optional 'features' member specifies features. See Features_
013b4efc
MA
244below for more on this.
245
b6c37eba 246
9c66762a
JS
247.. _TYPE-REF:
248
f7aa076d
JS
249Type references and array types
250-------------------------------
251
252Syntax::
b6c37eba 253
b6c37eba
MA
254 TYPE-REF = STRING | ARRAY-TYPE
255 ARRAY-TYPE = [ STRING ]
256
257A string denotes the type named by the string.
258
259A one-element array containing a string denotes an array of the type
55927c5f 260named by the string. Example: ``['int']`` denotes an array of ``int``.
b6c37eba 261
f5821f52 262
f7aa076d
JS
263Struct types
264------------
265
266Syntax::
51631493 267
b6c37eba
MA
268 STRUCT = { 'struct': STRING,
269 'data': MEMBERS,
270 '*base': STRING,
271 '*if': COND,
272 '*features': FEATURES }
273 MEMBERS = { MEMBER, ... }
274 MEMBER = STRING : TYPE-REF
84ab0086
MA
275 | STRING : { 'type': TYPE-REF,
276 '*if': COND,
277 '*features': FEATURES }
b6c37eba
MA
278
279Member 'struct' names the struct type.
280
281Each MEMBER of the 'data' object defines a member of the struct type.
e790e666 282
9c66762a
JS
283.. _MEMBERS:
284
55927c5f
JS
285The MEMBER's STRING name consists of an optional ``*`` prefix and the
286struct member name. If ``*`` is present, the member is optional.
b6c37eba
MA
287
288The MEMBER's value defines its properties, in particular its type.
9c66762a 289The form TYPE-REF_ is shorthand for :code:`{ 'type': TYPE-REF }`.
b6c37eba 290
f7aa076d 291Example::
b84da831 292
3b2a8b85 293 { 'struct': 'MyType',
b6c37eba 294 'data': { 'member1': 'str', 'member2': ['int'], '*member3': 'str' } }
b84da831 295
b6c37eba
MA
296A struct type corresponds to a struct in C, and an object in JSON.
297The C struct's members are generated in QAPI schema order.
cc162655 298
b6c37eba
MA
299The optional 'base' member names a struct type whose members are to be
300included in this type. They go first in the C struct.
622f557f 301
f7aa076d 302Example::
b6c37eba
MA
303
304 { 'struct': 'BlockdevOptionsGenericFormat',
305 'data': { 'file': 'str' } }
3b2a8b85 306 { 'struct': 'BlockdevOptionsGenericCOWFormat',
622f557f
KW
307 'base': 'BlockdevOptionsGenericFormat',
308 'data': { '*backing': 'str' } }
309
310An example BlockdevOptionsGenericCOWFormat object on the wire could use
f7aa076d 311both members like this::
622f557f
KW
312
313 { "file": "/some/place/my-image",
314 "backing": "/some/place/my-backing-file" }
315
9c66762a
JS
316The optional 'if' member specifies a conditional. See `Configuring
317the schema`_ below for more on this.
b6c37eba 318
9c66762a 319The optional 'features' member specifies features. See Features_
b6c37eba
MA
320below for more on this.
321
e790e666 322
f7aa076d
JS
323Union types
324-----------
325
326Syntax::
51631493 327
b6c37eba 328 UNION = { 'union': STRING,
b6c37eba
MA
329 'base': ( MEMBERS | STRING ),
330 'discriminator': STRING,
4e99f4b1 331 'data': BRANCHES,
013b4efc
MA
332 '*if': COND,
333 '*features': FEATURES }
b6c37eba
MA
334 BRANCHES = { BRANCH, ... }
335 BRANCH = STRING : TYPE-REF
336 | STRING : { 'type': TYPE-REF, '*if': COND }
337
338Member 'union' names the union type.
51631493 339
4e99f4b1
MA
340The 'base' member defines the common members. If it is a MEMBERS_
341object, it defines common members just like a struct type's 'data'
342member defines struct type members. If it is a STRING, it names a
343struct type whose members are the common members.
344
345Member 'discriminator' must name a non-optional enum-typed member of
346the base struct. That member's value selects a branch by its name.
347If no such branch exists, an empty branch is assumed.
b6c37eba
MA
348
349Each BRANCH of the 'data' object defines a branch of the union. A
350union must have at least one branch.
351
4e99f4b1
MA
352The BRANCH's STRING name is the branch name. It must be a value of
353the discriminator enum type.
b6c37eba
MA
354
355The BRANCH's value defines the branch's properties, in particular its
4e99f4b1
MA
356type. The type must a struct type. The form TYPE-REF_ is shorthand
357for :code:`{ 'type': TYPE-REF }`.
b6c37eba 358
4e99f4b1
MA
359In the Client JSON Protocol, a union is represented by an object with
360the common members (from the base type) and the selected branch's
361members. The two sets of member names must be disjoint.
b6c37eba 362
4e99f4b1 363Example::
50f2bdc7 364
94a3f0af 365 { 'enum': 'BlockdevDriver', 'data': [ 'file', 'qcow2' ] }
50f2bdc7 366 { 'union': 'BlockdevOptions',
ac4338f8 367 'base': { 'driver': 'BlockdevDriver', '*read-only': 'bool' },
50f2bdc7 368 'discriminator': 'driver',
bd59adce
EB
369 'data': { 'file': 'BlockdevOptionsFile',
370 'qcow2': 'BlockdevOptionsQcow2' } }
50f2bdc7 371
f7aa076d 372Resulting in these JSON objects::
e790e666 373
bd59adce 374 { "driver": "file", "read-only": true,
e790e666 375 "filename": "/some/place/my-image" }
bd59adce
EB
376 { "driver": "qcow2", "read-only": false,
377 "backing": "/some/place/my-image", "lazy-refcounts": true }
e790e666 378
4e99f4b1
MA
379The order of branches need not match the order of the enum values.
380The branches need not cover all possible enum values. In the
381resulting generated C data types, a union is represented as a struct
382with the base members in QAPI schema order, and then a union of
383structures for each branch of the struct.
69dd62df 384
9c66762a
JS
385The optional 'if' member specifies a conditional. See `Configuring
386the schema`_ below for more on this.
b6c37eba 387
9c66762a 388The optional 'features' member specifies features. See Features_
013b4efc
MA
389below for more on this.
390
e790e666 391
f7aa076d
JS
392Alternate types
393---------------
394
395Syntax::
69dd62df 396
b6c37eba
MA
397 ALTERNATE = { 'alternate': STRING,
398 'data': ALTERNATIVES,
013b4efc
MA
399 '*if': COND,
400 '*features': FEATURES }
b6c37eba 401 ALTERNATIVES = { ALTERNATIVE, ... }
942ab686 402 ALTERNATIVE = STRING : STRING
b6c37eba
MA
403 | STRING : { 'type': STRING, '*if': COND }
404
405Member 'alternate' names the alternate type.
406
407Each ALTERNATIVE of the 'data' object defines a branch of the
408alternate. An alternate must have at least one branch.
7b1b98c4 409
b6c37eba
MA
410The ALTERNATIVE's STRING name is the branch name.
411
412The ALTERNATIVE's value defines the branch's properties, in particular
55927c5f 413its type. The form STRING is shorthand for :code:`{ 'type': STRING }`.
b6c37eba 414
f7aa076d 415Example::
7b1b98c4 416
bd59adce 417 { 'alternate': 'BlockdevRef',
69dd62df
KW
418 'data': { 'definition': 'BlockdevOptions',
419 'reference': 'str' } }
420
b6c37eba
MA
421An alternate type is like a union type, except there is no
422discriminator on the wire. Instead, the branch to use is inferred
423from the value. An alternate can only express a choice between types
424represented differently on the wire.
425
426If a branch is typed as the 'bool' built-in, the alternate accepts
427true and false; if it is typed as any of the various numeric
363b4262 428built-ins, it accepts a JSON number; if it is typed as a 'str'
4d2d5c41
MA
429built-in or named enum type, it accepts a JSON string; if it is typed
430as the 'null' built-in, it accepts JSON null; and if it is typed as a
b6c37eba 431complex type (struct or union), it accepts a JSON object.
7b1b98c4
EB
432
433The example alternate declaration above allows using both of the
f7aa076d 434following example objects::
69dd62df
KW
435
436 { "file": "my_existing_block_device_id" }
437 { "file": { "driver": "file",
bd59adce 438 "read-only": false,
63922c64 439 "filename": "/tmp/mydisk.qcow2" } }
69dd62df 440
9c66762a
JS
441The optional 'if' member specifies a conditional. See `Configuring
442the schema`_ below for more on this.
b6c37eba 443
9c66762a 444The optional 'features' member specifies features. See Features_
013b4efc
MA
445below for more on this.
446
69dd62df 447
f7aa076d
JS
448Commands
449--------
450
451Syntax::
b84da831 452
b6c37eba
MA
453 COMMAND = { 'command': STRING,
454 (
455 '*data': ( MEMBERS | STRING ),
456 |
457 'data': STRING,
458 'boxed': true,
459 )
460 '*returns': TYPE-REF,
461 '*success-response': false,
462 '*gen': false,
463 '*allow-oob': true,
464 '*allow-preconfig': true,
04f22362 465 '*coroutine': true,
23394b4c
PK
466 '*if': COND,
467 '*features': FEATURES }
b6c37eba
MA
468
469Member 'command' names the command.
470
9c66762a 471Member 'data' defines the arguments. It defaults to an empty MEMBERS_
b6c37eba
MA
472object.
473
9c66762a 474If 'data' is a MEMBERS_ object, then MEMBERS defines arguments just
b6c37eba
MA
475like a struct type's 'data' defines struct type members.
476
477If 'data' is a STRING, then STRING names a complex type whose members
55927c5f 478are the arguments. A union type requires ``'boxed': true``.
b6c37eba
MA
479
480Member 'returns' defines the command's return type. It defaults to an
481empty struct type. It must normally be a complex type or an array of
482a complex type. To return anything else, the command must be listed
b86df374
MA
483in pragma 'commands-returns-exceptions'. If you do this, extending
484the command to return additional information will be harder. Use of
485the pragma for new commands is strongly discouraged.
363b4262 486
b6c37eba
MA
487A command's error responses are not specified in the QAPI schema.
488Error conditions should be documented in comments.
489
490In the Client JSON Protocol, the value of the "execute" or "exec-oob"
491member is the command name. The value of the "arguments" member then
492has to conform to the arguments, and the value of the success
493response's "return" member will conform to the return type.
e790e666 494
f7aa076d 495Some example commands::
e790e666
EB
496
497 { 'command': 'my-first-command',
498 'data': { 'arg1': 'str', '*arg2': 'str' } }
3b2a8b85 499 { 'struct': 'MyType', 'data': { '*value': 'str' } }
e790e666
EB
500 { 'command': 'my-second-command',
501 'returns': [ 'MyType' ] }
502
f7aa076d 503which would validate this Client JSON Protocol transaction::
e790e666
EB
504
505 => { "execute": "my-first-command",
506 "arguments": { "arg1": "hello" } }
507 <= { "return": { } }
508 => { "execute": "my-second-command" }
509 <= { "return": [ { "value": "one" }, { } ] }
510
b6c37eba
MA
511The generator emits a prototype for the C function implementing the
512command. The function itself needs to be written by hand. See
9c66762a 513section `Code generated for commands`_ for examples.
b6c37eba
MA
514
515The function returns the return type. When member 'boxed' is absent,
516it takes the command arguments as arguments one by one, in QAPI schema
517order. Else it takes them wrapped in the C struct generated for the
55927c5f 518complex argument type. It takes an additional ``Error **`` argument in
b6c37eba 519either case.
c818408e
EB
520
521The generator also emits a marshalling function that extracts
522arguments for the user's function out of an input QDict, calls the
523user's function, and if it succeeded, builds an output QObject from
b6c37eba 524its return value. This is for use by the QMP monitor core.
c818408e 525
e790e666 526In rare cases, QAPI cannot express a type-safe representation of a
2d21291a 527corresponding Client JSON Protocol command. You then have to suppress
b6c37eba 528generation of a marshalling function by including a member 'gen' with
153d73f3 529boolean value false, and instead write your own function. For
f7aa076d 530example::
e790e666
EB
531
532 { 'command': 'netdev_add',
b8a98326 533 'data': {'type': 'str', 'id': 'str'},
e790e666
EB
534 'gen': false }
535
153d73f3
MA
536Please try to avoid adding new commands that rely on this, and instead
537use type-safe unions.
538
e790e666
EB
539Normally, the QAPI schema is used to describe synchronous exchanges,
540where a response is expected. But in some cases, the action of a
541command is expected to change state in a way that a successful
b6c37eba
MA
542response is not possible (although the command will still return an
543error object on failure). When a successful reply is not possible,
544the command definition includes the optional member 'success-response'
545with boolean value false. So far, only QGA makes use of this member.
b84da831 546
b6c37eba 547Member 'allow-oob' declares whether the command supports out-of-band
f7aa076d 548(OOB) execution. It defaults to false. For example::
378112b0
PX
549
550 { 'command': 'migrate_recover',
551 'data': { 'uri': 'str' }, 'allow-oob': true }
552
d5657258
PM
553See the :doc:`/interop/qmp-spec` for out-of-band execution syntax
554and semantics.
378112b0 555
153d73f3
MA
556Commands supporting out-of-band execution can still be executed
557in-band.
378112b0 558
153d73f3
MA
559When a command is executed in-band, its handler runs in the main
560thread with the BQL held.
378112b0 561
153d73f3
MA
562When a command is executed out-of-band, its handler runs in a
563dedicated monitor I/O thread with the BQL *not* held.
378112b0 564
153d73f3 565An OOB-capable command handler must satisfy the following conditions:
378112b0 566
153d73f3
MA
567- It terminates quickly.
568- It does not invoke system calls that may block.
378112b0 569- It does not access guest RAM that may block when userfaultfd is
153d73f3 570 enabled for postcopy live migration.
4bfa7974
PX
571- It takes only "fast" locks, i.e. all critical sections protected by
572 any lock it takes also satisfy the conditions for OOB command
573 handler code.
574
575The restrictions on locking limit access to shared state. Such access
576requires synchronization, but OOB commands can't take the BQL or any
577other "slow" lock.
378112b0 578
153d73f3 579When in doubt, do not implement OOB execution support.
b84da831 580
b6c37eba 581Member 'allow-preconfig' declares whether the command is available
f7aa076d 582before the machine is built. It defaults to false. For example::
d6fe3d02 583
c4cdf54c
MA
584 { 'enum': 'QMPCapability',
585 'data': [ 'oob' ] }
d6fe3d02
IM
586 { 'command': 'qmp_capabilities',
587 'data': { '*enable': [ 'QMPCapability' ] },
588 'allow-preconfig': true }
589
153d73f3
MA
590QMP is available before the machine is built only when QEMU was
591started with --preconfig.
592
04f22362
KW
593Member 'coroutine' tells the QMP dispatcher whether the command handler
594is safe to be run in a coroutine. It defaults to false. If it is true,
595the command handler is called from coroutine context and may yield while
596waiting for an external event (such as I/O completion) in order to avoid
597blocking the guest and other background operations.
598
599Coroutine safety can be hard to prove, similar to thread safety. Common
600pitfalls are:
601
0b2675c4 602- The BQL isn't held across ``qemu_coroutine_yield()``, so
04f22362
KW
603 operations that used to assume that they execute atomically may have
604 to be more careful to protect against changes in the global state.
605
55927c5f 606- Nested event loops (``AIO_WAIT_WHILE()`` etc.) are problematic in
04f22362
KW
607 coroutine context and can easily lead to deadlocks. They should be
608 replaced by yielding and reentering the coroutine when the condition
609 becomes false.
610
611Since the command handler may assume coroutine context, any callers
612other than the QMP dispatcher must also call it in coroutine context.
bb4b9ead 613In particular, HMP commands calling such a QMP command handler must be
55927c5f 614marked ``.coroutine = true`` in hmp-commands.hx.
04f22362 615
55927c5f 616It is an error to specify both ``'coroutine': true`` and ``'allow-oob': true``
04f22362
KW
617for a command. We don't currently have a use case for both together and
618without a use case, it's not entirely clear what the semantics should
619be.
620
9c66762a
JS
621The optional 'if' member specifies a conditional. See `Configuring
622the schema`_ below for more on this.
b6c37eba 623
9c66762a 624The optional 'features' member specifies features. See Features_
013b4efc
MA
625below for more on this.
626
b6c37eba 627
f7aa076d
JS
628Events
629------
630
631Syntax::
21cd70df 632
b6c37eba
MA
633 EVENT = { 'event': STRING,
634 (
635 '*data': ( MEMBERS | STRING ),
636 |
637 'data': STRING,
638 'boxed': true,
639 )
013b4efc
MA
640 '*if': COND,
641 '*features': FEATURES }
b6c37eba
MA
642
643Member 'event' names the event. This is the event name used in the
644Client JSON Protocol.
645
646Member 'data' defines the event-specific data. It defaults to an
647empty MEMBERS object.
648
649If 'data' is a MEMBERS object, then MEMBERS defines event-specific
650data just like a struct type's 'data' defines struct type members.
e790e666 651
b6c37eba 652If 'data' is a STRING, then STRING names a complex type whose members
55927c5f 653are the event-specific data. A union type requires ``'boxed': true``.
21cd70df 654
f7aa076d 655An example event is::
21cd70df 656
f7aa076d
JS
657 { 'event': 'EVENT_C',
658 'data': { '*a': 'int', 'b': 'str' } }
21cd70df 659
f7aa076d 660Resulting in this JSON object::
21cd70df 661
f7aa076d
JS
662 { "event": "EVENT_C",
663 "data": { "b": "test string" },
664 "timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
b84da831 665
b6c37eba
MA
666The generator emits a function to send the event. When member 'boxed'
667is absent, it takes event-specific data one by one, in QAPI schema
668order. Else it takes them wrapped in the C struct generated for the
9c66762a 669complex type. See section `Code generated for events`_ for examples.
b6c37eba 670
9c66762a
JS
671The optional 'if' member specifies a conditional. See `Configuring
672the schema`_ below for more on this.
c818408e 673
9c66762a 674The optional 'features' member specifies features. See Features_
013b4efc
MA
675below for more on this.
676
59a2c4ce 677
9c66762a
JS
678.. _FEATURE:
679
f7aa076d
JS
680Features
681--------
682
683Syntax::
6a8c0b51 684
b6c37eba
MA
685 FEATURES = [ FEATURE, ... ]
686 FEATURE = STRING
687 | { 'name': STRING, '*if': COND }
688
6a8c0b51 689Sometimes, the behaviour of QEMU changes compatibly, but without a
b6c37eba
MA
690change in the QMP syntax (usually by allowing values or operations
691that previously resulted in an error). QMP clients may still need to
692know whether the extension is available.
6a8c0b51 693
ebf1b324
MA
694For this purpose, a list of features can be specified for definitions,
695enumeration values, and struct members. Each feature list member can
696either be ``{ 'name': STRING, '*if': COND }``, or STRING, which is
697shorthand for ``{ 'name': STRING }``.
6a8c0b51 698
9c66762a
JS
699The optional 'if' member specifies a conditional. See `Configuring
700the schema`_ below for more on this.
6a8c0b51 701
f7aa076d 702Example::
6a8c0b51 703
f7aa076d
JS
704 { 'struct': 'TestType',
705 'data': { 'number': 'int' },
706 'features': [ 'allow-negative-numbers' ] }
6a8c0b51 707
86014c64 708The feature strings are exposed to clients in introspection, as
9c66762a 709explained in section `Client JSON Protocol introspection`_.
86014c64
MA
710
711Intended use is to have each feature string signal that this build of
712QEMU shows a certain behaviour.
713
6a8c0b51 714
f7aa076d
JS
715Special features
716~~~~~~~~~~~~~~~~
f965e8fe 717
b6c18755
MA
718Feature "deprecated" marks a command, event, enum value, or struct
719member as deprecated. It is not supported elsewhere so far.
720Interfaces so marked may be withdrawn in future releases in accordance
721with QEMU's deprecation policy.
f965e8fe 722
a3c45b3e
MA
723Feature "unstable" marks a command, event, enum value, or struct
724member as unstable. It is not supported elsewhere so far. Interfaces
725so marked may be withdrawn or changed incompatibly in future releases.
726
f965e8fe 727
f7aa076d
JS
728Naming rules and reserved names
729-------------------------------
f5821f52
MA
730
731All names must begin with a letter, and contain only ASCII letters,
732digits, hyphen, and underscore. There are two exceptions: enum values
733may start with a digit, and names that are downstream extensions (see
9c66762a 734section `Downstream extensions`_) start with underscore.
f5821f52 735
55927c5f 736Names beginning with ``q_`` are reserved for the generator, which uses
f5821f52 737them for munging QMP names that resemble C keywords or other
55927c5f
JS
738problematic strings. For example, a member named ``default`` in qapi
739becomes ``q_default`` in the generated C code.
f5821f52
MA
740
741Types, commands, and events share a common namespace. Therefore,
742generally speaking, type definitions should always use CamelCase for
743user-defined type names, while built-in types are lowercase.
744
1110fbc3
MA
745Type names ending with ``List`` are reserved for the generator, which
746uses them for array types.
f5821f52 747
1524559f
MA
748Command names, member names within a type, and feature names should be
749all lower case with words separated by a hyphen. However, some
750existing older commands and complex types use underscore; when
751extending them, consistency is preferred over blindly avoiding
752underscore.
f5821f52
MA
753
754Event names should be ALL_CAPS with words separated by underscore.
755
55927c5f 756Member name ``u`` and names starting with ``has-`` or ``has_`` are reserved
f5821f52
MA
757for the generator, which uses them for unions and for tracking
758optional members.
759
a3c45b3e
MA
760Names beginning with ``x-`` used to signify "experimental". This
761convention has been replaced by special feature "unstable".
f5821f52 762
9c66762a
JS
763Pragmas ``command-name-exceptions`` and ``member-name-exceptions`` let
764you violate naming rules. Use for new code is strongly discouraged. See
765`Pragma directives`_ for details.
f5821f52
MA
766
767
f7aa076d
JS
768Downstream extensions
769---------------------
79f75981
MA
770
771QAPI schema names that are externally visible, say in the Client JSON
772Protocol, need to be managed with care. Names starting with a
773downstream prefix of the form __RFQDN_ are reserved for the downstream
774who controls the valid, reverse fully qualified domain name RFQDN.
775RFQDN may only contain ASCII letters, digits, hyphen and period.
776
777Example: Red Hat, Inc. controls redhat.com, and may therefore add a
55927c5f 778downstream command ``__com.redhat_drive-mirror``.
79f75981
MA
779
780
f7aa076d
JS
781Configuring the schema
782----------------------
783
784Syntax::
967c8851 785
b6c37eba 786 COND = STRING
3248c1aa
MAL
787 | { 'all: [ COND, ... ] }
788 | { 'any: [ COND, ... ] }
789 | { 'not': COND }
b6c37eba
MA
790
791All definitions take an optional 'if' member. Its value must be a
3248c1aa
MAL
792string, or an object with a single member 'all', 'any' or 'not'.
793
794The C code generated for the definition will then be guarded by an #if
795preprocessing directive with an operand generated from that condition:
796
797 * STRING will generate defined(STRING)
798 * { 'all': [COND, ...] } will generate (COND && ...)
799 * { 'any': [COND, ...] } will generate (COND || ...)
800 * { 'not': COND } will generate !COND
967c8851 801
f7aa076d 802Example: a conditional struct ::
967c8851
MAL
803
804 { 'struct': 'IfStruct', 'data': { 'foo': 'int' },
3248c1aa 805 'if': { 'all': [ 'CONFIG_FOO', 'HAVE_BAR' ] } }
967c8851 806
f7aa076d 807gets its generated code guarded like this::
967c8851 808
3248c1aa 809 #if defined(CONFIG_FOO) && defined(HAVE_BAR)
967c8851 810 ... generated code ...
3248c1aa 811 #endif /* defined(HAVE_BAR) && defined(CONFIG_FOO) */
967c8851 812
de3b3f52
MA
813Individual members of complex types can also be made conditional.
814This requires the longhand form of MEMBER.
ccadd6bc 815
b6c37eba 816Example: a struct type with unconditional member 'foo' and conditional
f7aa076d 817member 'bar' ::
ccadd6bc 818
4cfd6537
MA
819 { 'struct': 'IfStruct',
820 'data': { 'foo': 'int',
821 'bar': { 'type': 'int', 'if': 'IFCOND'} } }
ccadd6bc 822
b6c37eba 823A union's discriminator may not be conditional.
6cc32b0e 824
c2985e38
MA
825Likewise, individual enumeration values may be conditional. This
826requires the longhand form of ENUM-VALUE_.
b6c37eba
MA
827
828Example: an enum type with unconditional value 'foo' and conditional
f7aa076d 829value 'bar' ::
6cc32b0e 830
4cfd6537
MA
831 { 'enum': 'IfEnum',
832 'data': [ 'foo',
833 { 'name' : 'bar', 'if': 'IFCOND' } ] }
6cc32b0e 834
b6c37eba 835Likewise, features can be conditional. This requires the longhand
9c66762a 836form of FEATURE_.
6a8c0b51 837
f7aa076d 838Example: a struct with conditional feature 'allow-negative-numbers' ::
6a8c0b51 839
f7aa076d
JS
840 { 'struct': 'TestType',
841 'data': { 'number': 'int' },
842 'features': [ { 'name': 'allow-negative-numbers',
3248c1aa 843 'if': 'IFCOND' } ] }
6a8c0b51 844
967c8851
MAL
845Please note that you are responsible to ensure that the C code will
846compile with an arbitrary combination of conditions, since the
b6c37eba 847generator is unable to check it at this point.
967c8851 848
b6c37eba
MA
849The conditions apply to introspection as well, i.e. introspection
850shows a conditional entity only when the condition is satisfied in
851this particular build.
967c8851
MAL
852
853
f7aa076d
JS
854Documentation comments
855----------------------
f5821f52 856
55927c5f 857A multi-line comment that starts and ends with a ``##`` line is a
b6c37eba
MA
858documentation comment.
859
f7aa076d 860If the documentation comment starts like ::
b6c37eba
MA
861
862 ##
863 # @SYMBOL:
864
55927c5f 865it documents the definition of SYMBOL, else it's free-form
b6c37eba
MA
866documentation.
867
9c66762a 868See below for more on `Definition documentation`_.
b6c37eba
MA
869
870Free-form documentation may be used to provide additional text and
871structuring content.
f5821f52 872
f7aa076d
JS
873
874Headings and subheadings
875~~~~~~~~~~~~~~~~~~~~~~~~
f5821f52 876
55ec69f8 877A free-form documentation comment containing a line which starts with
55927c5f 878some ``=`` symbols and then a space defines a section heading::
f5821f52 879
55ec69f8
PM
880 ##
881 # = This is a top level heading
882 #
883 # This is a free-form comment which will go under the
884 # top level heading.
885 ##
f5821f52 886
55ec69f8
PM
887 ##
888 # == This is a second level heading
889 ##
f5821f52 890
55ec69f8
PM
891A heading line must be the first line of the documentation
892comment block.
f5821f52 893
55ec69f8
PM
894Section headings must always be correctly nested, so you can only
895define a third-level heading inside a second-level heading, and so on.
f5821f52 896
f7aa076d
JS
897
898Documentation markup
899~~~~~~~~~~~~~~~~~~~~
d98884b7 900
55ec69f8 901Documentation comments can use most rST markup. In particular,
55927c5f 902a ``::`` literal block can be used for examples::
f5821f52 903
55ec69f8
PM
904 # ::
905 #
906 # Text of the example, may span
907 # multiple lines
f5821f52 908
55927c5f 909``*`` starts an itemized list::
f5821f52
MA
910
911 # * First item, may span
912 # multiple lines
913 # * Second item
914
55927c5f 915You can also use ``-`` instead of ``*``.
f5821f52 916
55927c5f 917A decimal number followed by ``.`` starts a numbered list::
f5821f52
MA
918
919 # 1. First item, may span
920 # multiple lines
921 # 2. Second item
922
55ec69f8 923The actual number doesn't matter.
f5821f52 924
55ec69f8
PM
925Lists of either kind must be preceded and followed by a blank line.
926If a list item's text spans multiple lines, then the second and
927subsequent lines must be correctly indented to line up with the
928first character of the first line.
f5821f52 929
55927c5f
JS
930The usual ****strong****, *\*emphasized\** and ````literal```` markup
931should be used. If you need a single literal ``*``, you will need to
f1a787b5
MA
932backslash-escape it.
933
934Use ``@foo`` to reference a name in the schema. This is an rST
935extension. It is rendered the same way as ````foo````, but carries
936additional meaning.
f5821f52 937
f7aa076d 938Example::
f5821f52 939
f7aa076d
JS
940 ##
941 # Some text foo with **bold** and *emphasis*
c1101028 942 #
f7aa076d
JS
943 # 1. with a list
944 # 2. like that
945 #
946 # And some code:
947 #
948 # ::
949 #
950 # $ echo foo
951 # -> do this
952 # <- get that
953 ##
f5821f52 954
9d167491
MA
955For legibility, wrap text paragraphs so every line is at most 70
956characters long.
957
958Separate sentences with two spaces.
959
f5821f52 960
f7aa076d
JS
961Definition documentation
962~~~~~~~~~~~~~~~~~~~~~~~~
f5821f52 963
b6c37eba
MA
964Definition documentation, if present, must immediately precede the
965definition it documents.
f5821f52 966
9c66762a 967When documentation is required (see pragma_ 'doc-required'), every
b6c37eba 968definition must have documentation.
f5821f52 969
b6c37eba
MA
970Definition documentation starts with a line naming the definition,
971followed by an optional overview, a description of each argument (for
972commands and events), member (for structs and unions), branch (for
53e9e547
MA
973alternates), or value (for enums), a description of each feature (if
974any), and finally optional tagged sections.
f5821f52 975
d23055b8 976Descriptions start with '\@name:'. The description text must be
9d167491
MA
977indented like this::
978
979 # @name: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
980 # do eiusmod tempor incididunt ut labore et dolore magna aliqua.
a69a6d4b 981
a2836b32 982.. FIXME The parser accepts these things in almost any order.
a69a6d4b 983
a2836b32 984.. FIXME union branches should be described, too.
f5821f52 985
b6c37eba 986Extensions added after the definition was first released carry a
0c7811ae 987"(since x.y.z)" comment.
f5821f52 988
66227e90
MA
989The feature descriptions must be preceded by a blank line and then a
990line "Features:", like this::
53e9e547 991
66227e90 992 #
53e9e547 993 # Features:
9d167491 994 #
53e9e547
MA
995 # @feature: Description text
996
66227e90
MA
997A tagged section begins with a paragraph that starts with one of the
998following words: "Note:"/"Notes:", "Since:", "Example:"/"Examples:",
3a025d3d
MA
999"Returns:", "Errors:", "TODO:". It ends with the start of a new
1000section.
f5821f52 1001
d23055b8
MA
1002The second and subsequent lines of tagged sections must be indented
1003like this::
9d167491
MA
1004
1005 # Note: Ut enim ad minim veniam, quis nostrud exercitation ullamco
1006 # laboris nisi ut aliquip ex ea commodo consequat.
1007 #
1008 # Duis aute irure dolor in reprehenderit in voluptate velit esse
1009 # cillum dolore eu fugiat nulla pariatur.
a69a6d4b 1010
3a025d3d
MA
1011"Returns" and "Errors" sections are only valid for commands. They
1012document the success and the error response, respectively.
1013
0c7811ae 1014A "Since: x.y.z" tagged section lists the release that introduced the
b6c37eba 1015definition.
f5821f52 1016
9d167491 1017An "Example" or "Examples" section is rendered entirely
f57e1d05
MA
1018as literal fixed-width text. "TODO" sections are not rendered at all
1019(they are for developers, not users of QMP). In other sections, the
1020text is formatted, and rST markup can be used.
55ec69f8 1021
f7aa076d
JS
1022For example::
1023
1024 ##
1025 # @BlockStats:
1026 #
1027 # Statistics of a virtual block device or a block backing device.
1028 #
1029 # @device: If the stats are for a virtual block device, the name
9d167491 1030 # corresponding to the virtual block device.
f7aa076d 1031 #
399c8cd3 1032 # @node-name: The node name of the device. (Since 2.3)
f7aa076d
JS
1033 #
1034 # ... more members ...
1035 #
1ccdae0b 1036 # Since: 0.14
f7aa076d
JS
1037 ##
1038 { 'struct': 'BlockStats',
1039 'data': {'*device': 'str', '*node-name': 'str',
1040 ... more members ... } }
1041
1042 ##
1043 # @query-blockstats:
1044 #
1045 # Query the @BlockStats for all virtual block devices.
1046 #
9d167491 1047 # @query-nodes: If true, the command will query all the block nodes
399c8cd3
MA
1048 # ... explain, explain ...
1049 # (Since 2.3)
f7aa076d
JS
1050 #
1051 # Returns: A list of @BlockStats for each virtual block devices.
1052 #
1ccdae0b 1053 # Since: 0.14
f7aa076d
JS
1054 #
1055 # Example:
1056 #
d23055b8
MA
1057 # -> { "execute": "query-blockstats" }
1058 # <- {
1059 # ... lots of output ...
1060 # }
f7aa076d
JS
1061 ##
1062 { 'command': 'query-blockstats',
1063 'data': { '*query-nodes': 'bool' },
1064 'returns': ['BlockStats'] }
1065
1066
e2e9e567
MA
1067Markup pitfalls
1068~~~~~~~~~~~~~~~
1069
1070A blank line is required between list items and paragraphs. Without
1071it, the list may not be recognized, resulting in garbled output. Good
1072example::
1073
1074 # An event's state is modified if:
1075 #
1076 # - its name matches the @name pattern, and
1077 # - if @vcpu is given, the event has the "vcpu" property.
1078
1079Without the blank line this would be a single paragraph.
1080
1081Indentation matters. Bad example::
1082
1083 # @none: None (no memory side cache in this proximity domain,
1084 # or cache associativity unknown)
08349786 1085 # (since 5.0)
e2e9e567 1086
08349786
MA
1087The last line's de-indent is wrong. The second and subsequent lines
1088need to line up with each other, like this::
1089
1090 # @none: None (no memory side cache in this proximity domain,
1091 # or cache associativity unknown)
1092 # (since 5.0)
e2e9e567 1093
66227e90
MA
1094Section tags are case-sensitive and end with a colon. They are only
1095recognized after a blank line. Good example::
e2e9e567 1096
66227e90 1097 #
e2e9e567
MA
1098 # Since: 7.1
1099
1100Bad examples (all ordinary paragraphs)::
1101
1102 # since: 7.1
1103
1104 # Since 7.1
1105
1106 # Since : 7.1
1107
1108Likewise, member descriptions require a colon. Good example::
1109
1110 # @interface-id: Interface ID
1111
1112Bad examples (all ordinary paragraphs)::
1113
1114 # @interface-id Interface ID
1115
1116 # @interface-id : Interface ID
1117
1118Undocumented members are not flagged, yet. Instead, the generated
1119documentation describes them as "Not documented". Think twice before
1120adding more undocumented members.
1121
1122When you change documentation comments, please check the generated
1123documentation comes out as intended!
1124
1125
f7aa076d
JS
1126Client JSON Protocol introspection
1127==================================
39a18158
MA
1128
1129Clients of a Client JSON Protocol commonly need to figure out what
1130exactly the server (QEMU) supports.
1131
1132For this purpose, QMP provides introspection via command
1133query-qmp-schema. QGA currently doesn't support introspection.
1134
39a65e2c
EB
1135While Client JSON Protocol wire compatibility should be maintained
1136between qemu versions, we cannot make the same guarantees for
1137introspection stability. For example, one version of qemu may provide
1138a non-variant optional member of a struct, and a later version rework
1139the member to instead be non-optional and associated with a variant.
1140Likewise, one version of qemu may list a member with open-ended type
1141'str', and a later version could convert it to a finite set of strings
1142via an enum type; or a member may be converted from a specific type to
1143an alternate that represents a choice between the original type and
1144something else.
1145
39a18158
MA
1146query-qmp-schema returns a JSON array of SchemaInfo objects. These
1147objects together describe the wire ABI, as defined in the QAPI schema.
f5455044
EB
1148There is no specified order to the SchemaInfo objects returned; a
1149client must search for a particular name throughout the entire array
1150to learn more about that name, but is at least guaranteed that there
1151will be no collisions between type, command, and event names.
39a18158
MA
1152
1153However, the SchemaInfo can't reflect all the rules and restrictions
1154that apply to QMP. It's interface introspection (figuring out what's
1155there), not interface specification. The specification is in the QAPI
1156schema. To understand how QMP is to be used, you need to study the
1157QAPI schema.
1158
1159Like any other command, query-qmp-schema is itself defined in the QAPI
1160schema, along with the SchemaInfo type. This text attempts to give an
1161overview how things work. For details you need to consult the QAPI
1162schema.
1163
013b4efc
MA
1164SchemaInfo objects have common members "name", "meta-type",
1165"features", and additional variant members depending on the value of
1166meta-type.
39a18158
MA
1167
1168Each SchemaInfo object describes a wire ABI entity of a certain
1169meta-type: a command, event or one of several kinds of type.
1170
1a9a507b
MA
1171SchemaInfo for commands and events have the same name as in the QAPI
1172schema.
39a18158
MA
1173
1174Command and event names are part of the wire ABI, but type names are
1a9a507b
MA
1175not. Therefore, the SchemaInfo for types have auto-generated
1176meaningless names. For readability, the examples in this section use
1177meaningful type names instead.
1178
013b4efc
MA
1179Optional member "features" exposes the entity's feature strings as a
1180JSON array of strings.
1181
1a9a507b
MA
1182To examine a type, start with a command or event using it, then follow
1183references by name.
39a18158
MA
1184
1185QAPI schema definitions not reachable that way are omitted.
1186
1187The SchemaInfo for a command has meta-type "command", and variant
013b4efc
MA
1188members "arg-type", "ret-type" and "allow-oob". On the wire, the
1189"arguments" member of a client's "execute" command must conform to the
1190object type named by "arg-type". The "return" member that the server
1191passes in a success response conforms to the type named by "ret-type".
1192When "allow-oob" is true, it means the command supports out-of-band
1193execution. It defaults to false.
39a18158
MA
1194
1195If the command takes no arguments, "arg-type" names an object type
1196without members. Likewise, if the command returns nothing, "ret-type"
1197names an object type without members.
1198
f7aa076d 1199Example: the SchemaInfo for command query-qmp-schema ::
39a18158 1200
f7aa076d
JS
1201 { "name": "query-qmp-schema", "meta-type": "command",
1202 "arg-type": "q_empty", "ret-type": "SchemaInfoList" }
39a18158 1203
f7aa076d
JS
1204 Type "q_empty" is an automatic object type without members, and type
1205 "SchemaInfoList" is the array of SchemaInfo type.
39a18158
MA
1206
1207The SchemaInfo for an event has meta-type "event", and variant member
1208"arg-type". On the wire, a "data" member that the server passes in an
1209event conforms to the object type named by "arg-type".
1210
1211If the event carries no additional information, "arg-type" names an
1212object type without members. The event may not have a data member on
1213the wire then.
1214
b6c37eba 1215Each command or event defined with 'data' as MEMBERS object in the
1a9a507b 1216QAPI schema implicitly defines an object type.
39a18158 1217
9c66762a 1218Example: the SchemaInfo for EVENT_C from section Events_ ::
39a18158
MA
1219
1220 { "name": "EVENT_C", "meta-type": "event",
7599697c 1221 "arg-type": "q_obj-EVENT_C-arg" }
39a18158 1222
7599697c 1223 Type "q_obj-EVENT_C-arg" is an implicitly defined object type with
39a18158
MA
1224 the two members from the event's definition.
1225
c2985e38
MA
1226The SchemaInfo for struct and union types has meta-type "object" and
1227variant member "members".
39a18158
MA
1228
1229The SchemaInfo for a union type additionally has variant members "tag"
1230and "variants".
1231
1232"members" is a JSON array describing the object's common members, if
1233any. Each element is a JSON object with members "name" (the member's
b6c18755
MA
1234name), "type" (the name of its type), "features" (a JSON array of
1235feature strings), and "default". The latter two are optional. The
39a18158
MA
1236member is optional if "default" is present. Currently, "default" can
1237only have value null. Other values are reserved for future
f5455044
EB
1238extensions. The "members" array is in no particular order; clients
1239must search the entire object when learning whether a particular
1240member is supported.
39a18158 1241
9c66762a 1242Example: the SchemaInfo for MyType from section `Struct types`_ ::
39a18158
MA
1243
1244 { "name": "MyType", "meta-type": "object",
1245 "members": [
1246 { "name": "member1", "type": "str" },
1247 { "name": "member2", "type": "int" },
1248 { "name": "member3", "type": "str", "default": null } ] }
1249
86014c64
MA
1250"features" exposes the command's feature strings as a JSON array of
1251strings.
1252
9c66762a 1253Example: the SchemaInfo for TestType from section Features_::
86014c64
MA
1254
1255 { "name": "TestType", "meta-type": "object",
1256 "members": [
1257 { "name": "number", "type": "int" } ],
1258 "features": ["allow-negative-numbers"] }
1259
39a18158
MA
1260"tag" is the name of the common member serving as type tag.
1261"variants" is a JSON array describing the object's variant members.
1262Each element is a JSON object with members "case" (the value of type
1263tag this element applies to) and "type" (the name of an object type
f5455044
EB
1264that provides the variant members for this type tag value). The
1265"variants" array is in no particular order, and is not guaranteed to
1266list cases in the same order as the corresponding "tag" enum type.
39a18158 1267
4e99f4b1 1268Example: the SchemaInfo for union BlockdevOptions from section
9c66762a 1269`Union types`_ ::
39a18158
MA
1270
1271 { "name": "BlockdevOptions", "meta-type": "object",
1272 "members": [
1273 { "name": "driver", "type": "BlockdevDriver" },
bd59adce 1274 { "name": "read-only", "type": "bool", "default": null } ],
39a18158
MA
1275 "tag": "driver",
1276 "variants": [
bd59adce
EB
1277 { "case": "file", "type": "BlockdevOptionsFile" },
1278 { "case": "qcow2", "type": "BlockdevOptionsQcow2" } ] }
39a18158
MA
1279
1280Note that base types are "flattened": its members are included in the
1281"members" array.
1282
39a18158
MA
1283The SchemaInfo for an alternate type has meta-type "alternate", and
1284variant member "members". "members" is a JSON array. Each element is
1285a JSON object with member "type", which names a type. Values of the
f5455044
EB
1286alternate type conform to exactly one of its member types. There is
1287no guarantee on the order in which "members" will be listed.
39a18158 1288
9c66762a 1289Example: the SchemaInfo for BlockdevRef from section `Alternate types`_ ::
39a18158 1290
bd59adce 1291 { "name": "BlockdevRef", "meta-type": "alternate",
39a18158
MA
1292 "members": [
1293 { "type": "BlockdevOptions" },
1294 { "type": "str" } ] }
1295
1296The SchemaInfo for an array type has meta-type "array", and variant
1297member "element-type", which names the array's element type. Array
ce5fcb47
EB
1298types are implicitly defined. For convenience, the array's name may
1299resemble the element type; however, clients should examine member
1300"element-type" instead of making assumptions based on parsing member
1301"name".
39a18158 1302
f7aa076d 1303Example: the SchemaInfo for ['str'] ::
39a18158 1304
ce5fcb47 1305 { "name": "[str]", "meta-type": "array",
39a18158
MA
1306 "element-type": "str" }
1307
1308The SchemaInfo for an enumeration type has meta-type "enum" and
75ecee72
MA
1309variant member "members".
1310
1311"members" is a JSON array describing the enumeration values. Each
b6c18755
MA
1312element is a JSON object with member "name" (the member's name), and
1313optionally "features" (a JSON array of feature strings). The
75ecee72
MA
1314"members" array is in no particular order; clients must search the
1315entire array when learning whether a particular value is supported.
39a18158 1316
9c66762a 1317Example: the SchemaInfo for MyEnum from section `Enumeration types`_ ::
39a18158
MA
1318
1319 { "name": "MyEnum", "meta-type": "enum",
75ecee72
MA
1320 "members": [
1321 { "name": "value1" },
1322 { "name": "value2" },
1323 { "name": "value3" }
1324 ] }
39a18158
MA
1325
1326The SchemaInfo for a built-in type has the same name as the type in
9c66762a 1327the QAPI schema (see section `Built-in Types`_), with one exception
39a18158
MA
1328detailed below. It has variant member "json-type" that shows how
1329values of this type are encoded on the wire.
1330
f7aa076d 1331Example: the SchemaInfo for str ::
39a18158
MA
1332
1333 { "name": "str", "meta-type": "builtin", "json-type": "string" }
1334
1335The QAPI schema supports a number of integer types that only differ in
1336how they map to C. They are identical as far as SchemaInfo is
1337concerned. Therefore, they get all mapped to a single type "int" in
1338SchemaInfo.
1339
1340As explained above, type names are not part of the wire ABI. Not even
1341the names of built-in types. Clients should examine member
1342"json-type" instead of hard-coding names of built-in types.
1343
1344
f7aa076d
JS
1345Compatibility considerations
1346============================
ab76bc27
MA
1347
1348Maintaining backward compatibility at the Client JSON Protocol level
1349while evolving the schema requires some care. This section is about
1350syntactic compatibility, which is necessary, but not sufficient, for
1351actual compatibility.
1352
1353Clients send commands with argument data, and receive command
1354responses with return data and events with event data.
1355
1356Adding opt-in functionality to the send direction is backwards
1357compatible: adding commands, optional arguments, enumeration values,
1358union and alternate branches; turning an argument type into an
1359alternate of that type; making mandatory arguments optional. Clients
1360oblivious of the new functionality continue to work.
1361
1362Incompatible changes include removing commands, command arguments,
1363enumeration values, union and alternate branches, adding mandatory
1364command arguments, and making optional arguments mandatory.
1365
1366The specified behavior of an absent optional argument should remain
1367the same. With proper documentation, this policy still allows some
1368flexibility; for example, when an optional 'buffer-size' argument is
1369specified to default to a sensible buffer size, the actual default
1370value can still be changed. The specified default behavior is not the
1371exact size of the buffer, only that the default size is sensible.
1372
1373Adding functionality to the receive direction is generally backwards
1374compatible: adding events, adding return and event data members.
1375Clients are expected to ignore the ones they don't know.
1376
1377Removing "unreachable" stuff like events that can't be triggered
1378anymore, optional return or event data members that can't be sent
1379anymore, and return or event data member (enumeration) values that
1380can't be sent anymore makes no difference to clients, except for
1381introspection. The latter can conceivably confuse clients, so tread
1382carefully.
1383
1384Incompatible changes include removing return and event data members.
1385
1386Any change to a command definition's 'data' or one of the types used
1387there (recursively) needs to consider send direction compatibility.
1388
1389Any change to a command definition's 'return', an event definition's
1390'data', or one of the types used there (recursively) needs to consider
1391receive direction compatibility.
1392
1393Any change to types used in both contexts need to consider both.
1394
b6c37eba 1395Enumeration type values and complex and alternate type members may be
ab76bc27
MA
1396reordered freely. For enumerations and alternate types, this doesn't
1397affect the wire encoding. For complex types, this might make the
1398implementation emit JSON object members in a different order, which
1399the Client JSON Protocol permits.
1400
1401Since type names are not visible in the Client JSON Protocol, types
1402may be freely renamed. Even certain refactorings are invisible, such
1403as splitting members from one type into a common base type.
1404
1405
f7aa076d
JS
1406Code generation
1407===============
b84da831 1408
fb0bc835
MA
1409The QAPI code generator qapi-gen.py generates code and documentation
1410from the schema. Together with the core QAPI libraries, this code
1411provides everything required to take JSON commands read in by a Client
1412JSON Protocol server, unmarshal the arguments into the underlying C
1413types, call into the corresponding C function, map the response back
1414to a Client JSON Protocol response to be returned to the user, and
1415introspect the commands.
b84da831 1416
9ee86b85
EB
1417As an example, we'll use the following schema, which describes a
1418single complex user-defined type, along with command which takes a
1419list of that type as a parameter, and returns a single element of that
1420type. The user is responsible for writing the implementation of
f7aa076d 1421qmp_my_command(); everything else is produced by the generator. ::
b84da831 1422
87a560c4 1423 $ cat example-schema.json
3b2a8b85 1424 { 'struct': 'UserDefOne',
94f9bd33 1425 'data': { 'integer': 'int', '*string': 'str', '*flag': 'bool' } }
b84da831
MR
1426
1427 { 'command': 'my-command',
9ee86b85 1428 'data': { 'arg1': ['UserDefOne'] },
b84da831 1429 'returns': 'UserDefOne' }
b84da831 1430
59a2c4ce
EB
1431 { 'event': 'MY_EVENT' }
1432
f7aa076d 1433We run qapi-gen.py like this::
fb0bc835
MA
1434
1435 $ python scripts/qapi-gen.py --output-dir="qapi-generated" \
1436 --prefix="example-" example-schema.json
1437
9ee86b85
EB
1438For a more thorough look at generated code, the testsuite includes
1439tests/qapi-schema/qapi-schema-tests.json that covers more examples of
1440what the generator will accept, and compiles the resulting C code as
1441part of 'make check-unit'.
1442
f7aa076d
JS
1443
1444Code generated for QAPI types
1445-----------------------------
b84da831 1446
fb0bc835 1447The following files are created:
b84da831 1448
f7aa076d
JS
1449 ``$(prefix)qapi-types.h``
1450 C types corresponding to types defined in the schema
fb0bc835 1451
f7aa076d
JS
1452 ``$(prefix)qapi-types.c``
1453 Cleanup functions for the above C types
b84da831
MR
1454
1455The $(prefix) is an optional parameter used as a namespace to keep the
1456generated code from one schema/code-generation separated from others so code
1457can be generated/used from multiple schemas without clobbering previously
1458created code.
1459
f7aa076d 1460Example::
b84da831 1461
9ee86b85 1462 $ cat qapi-generated/example-qapi-types.h
f7aa076d 1463 [Uninteresting stuff omitted...]
9ee86b85
EB
1464
1465 #ifndef EXAMPLE_QAPI_TYPES_H
1466 #define EXAMPLE_QAPI_TYPES_H
1467
913b5e28 1468 #include "qapi/qapi-builtin-types.h"
9ee86b85
EB
1469
1470 typedef struct UserDefOne UserDefOne;
1471
1472 typedef struct UserDefOneList UserDefOneList;
1473
64355088
MA
1474 typedef struct q_obj_my_command_arg q_obj_my_command_arg;
1475
9ee86b85
EB
1476 struct UserDefOne {
1477 int64_t integer;
9ee86b85 1478 char *string;
94f9bd33
MA
1479 bool has_flag;
1480 bool flag;
9ee86b85
EB
1481 };
1482
1483 void qapi_free_UserDefOne(UserDefOne *obj);
221db5da 1484 G_DEFINE_AUTOPTR_CLEANUP_FUNC(UserDefOne, qapi_free_UserDefOne)
9ee86b85
EB
1485
1486 struct UserDefOneList {
1487 UserDefOneList *next;
1488 UserDefOne *value;
1489 };
1490
1491 void qapi_free_UserDefOneList(UserDefOneList *obj);
221db5da 1492 G_DEFINE_AUTOPTR_CLEANUP_FUNC(UserDefOneList, qapi_free_UserDefOneList)
9ee86b85 1493
64355088
MA
1494 struct q_obj_my_command_arg {
1495 UserDefOneList *arg1;
1496 };
1497
913b5e28 1498 #endif /* EXAMPLE_QAPI_TYPES_H */
87a560c4 1499 $ cat qapi-generated/example-qapi-types.c
f7aa076d 1500 [Uninteresting stuff omitted...]
6e2bb3ec 1501
2b162ccb 1502 void qapi_free_UserDefOne(UserDefOne *obj)
6e2bb3ec 1503 {
6e2bb3ec
MA
1504 Visitor *v;
1505
1506 if (!obj) {
1507 return;
1508 }
1509
2c0ef9f4 1510 v = qapi_dealloc_visitor_new();
9ee86b85 1511 visit_type_UserDefOne(v, NULL, &obj, NULL);
2c0ef9f4 1512 visit_free(v);
6e2bb3ec 1513 }
b84da831 1514
2b162ccb 1515 void qapi_free_UserDefOneList(UserDefOneList *obj)
b84da831 1516 {
b84da831
MR
1517 Visitor *v;
1518
1519 if (!obj) {
1520 return;
1521 }
1522
2c0ef9f4 1523 v = qapi_dealloc_visitor_new();
9ee86b85 1524 visit_type_UserDefOneList(v, NULL, &obj, NULL);
2c0ef9f4 1525 visit_free(v);
b84da831 1526 }
b84da831 1527
f7aa076d 1528 [Uninteresting stuff omitted...]
913b5e28 1529
9c66762a 1530For a modular QAPI schema (see section `Include directives`_), code for
f7aa076d 1531each sub-module SUBDIR/SUBMODULE.json is actually generated into ::
ce32bf85 1532
f7aa076d
JS
1533 SUBDIR/$(prefix)qapi-types-SUBMODULE.h
1534 SUBDIR/$(prefix)qapi-types-SUBMODULE.c
ce32bf85
MA
1535
1536If qapi-gen.py is run with option --builtins, additional files are
1537created:
1538
f7aa076d
JS
1539 ``qapi-builtin-types.h``
1540 C types corresponding to built-in types
1541
1542 ``qapi-builtin-types.c``
1543 Cleanup functions for the above C types
ce32bf85 1544
ce32bf85 1545
f7aa076d
JS
1546Code generated for visiting QAPI types
1547--------------------------------------
b84da831 1548
fb0bc835
MA
1549These are the visitor functions used to walk through and convert
1550between a native QAPI C data structure and some other format (such as
1551QObject); the generated functions are named visit_type_FOO() and
1552visit_type_FOO_members().
b84da831
MR
1553
1554The following files are generated:
1555
f7aa076d
JS
1556 ``$(prefix)qapi-visit.c``
1557 Visitor function for a particular C type, used to automagically
1558 convert QObjects into the corresponding C type and vice-versa, as
1559 well as for deallocating memory for an existing C type
b84da831 1560
f7aa076d
JS
1561 ``$(prefix)qapi-visit.h``
1562 Declarations for previously mentioned visitor functions
b84da831 1563
f7aa076d 1564Example::
b84da831 1565
9ee86b85 1566 $ cat qapi-generated/example-qapi-visit.h
f7aa076d 1567 [Uninteresting stuff omitted...]
9ee86b85
EB
1568
1569 #ifndef EXAMPLE_QAPI_VISIT_H
1570 #define EXAMPLE_QAPI_VISIT_H
1571
913b5e28
MA
1572 #include "qapi/qapi-builtin-visit.h"
1573 #include "example-qapi-types.h"
1574
9ee86b85 1575
012d4c96 1576 bool visit_type_UserDefOne_members(Visitor *v, UserDefOne *obj, Error **errp);
e0366f9f
MA
1577
1578 bool visit_type_UserDefOne(Visitor *v, const char *name,
1579 UserDefOne **obj, Error **errp);
1580
1581 bool visit_type_UserDefOneList(Visitor *v, const char *name,
1582 UserDefOneList **obj, Error **errp);
9ee86b85 1583
012d4c96 1584 bool visit_type_q_obj_my_command_arg_members(Visitor *v, q_obj_my_command_arg *obj, Error **errp);
64355088 1585
913b5e28 1586 #endif /* EXAMPLE_QAPI_VISIT_H */
87a560c4 1587 $ cat qapi-generated/example-qapi-visit.c
f7aa076d 1588 [Uninteresting stuff omitted...]
b84da831 1589
012d4c96 1590 bool visit_type_UserDefOne_members(Visitor *v, UserDefOne *obj, Error **errp)
6e2bb3ec 1591 {
44ea9d9b
MA
1592 bool has_string = !!obj->string;
1593
012d4c96
MA
1594 if (!visit_type_int(v, "integer", &obj->integer, errp)) {
1595 return false;
297a3646 1596 }
44ea9d9b 1597 if (visit_optional(v, "string", &has_string)) {
012d4c96
MA
1598 if (!visit_type_str(v, "string", &obj->string, errp)) {
1599 return false;
9ee86b85 1600 }
297a3646 1601 }
94f9bd33
MA
1602 if (visit_optional(v, "flag", &obj->has_flag)) {
1603 if (!visit_type_bool(v, "flag", &obj->flag, errp)) {
1604 return false;
1605 }
1606 }
cdd2b228 1607 return true;
6e2bb3ec 1608 }
b84da831 1609
e0366f9f
MA
1610 bool visit_type_UserDefOne(Visitor *v, const char *name,
1611 UserDefOne **obj, Error **errp)
b84da831 1612 {
cdd2b228 1613 bool ok = false;
297a3646 1614
012d4c96
MA
1615 if (!visit_start_struct(v, name, (void **)obj, sizeof(UserDefOne), errp)) {
1616 return false;
9ee86b85
EB
1617 }
1618 if (!*obj) {
8e08bf4e
MA
1619 /* incomplete */
1620 assert(visit_is_dealloc(v));
e0366f9f 1621 ok = true;
9ee86b85 1622 goto out_obj;
6e2bb3ec 1623 }
cdd2b228 1624 if (!visit_type_UserDefOne_members(v, *obj, errp)) {
15c2f669
EB
1625 goto out_obj;
1626 }
cdd2b228 1627 ok = visit_check_struct(v, errp);
9ee86b85 1628 out_obj:
1158bb2a 1629 visit_end_struct(v, (void **)obj);
cdd2b228 1630 if (!ok && visit_is_input(v)) {
68ab47e4
EB
1631 qapi_free_UserDefOne(*obj);
1632 *obj = NULL;
1633 }
cdd2b228 1634 return ok;
b84da831
MR
1635 }
1636
e0366f9f
MA
1637 bool visit_type_UserDefOneList(Visitor *v, const char *name,
1638 UserDefOneList **obj, Error **errp)
b84da831 1639 {
cdd2b228 1640 bool ok = false;
d9f62dde
EB
1641 UserDefOneList *tail;
1642 size_t size = sizeof(**obj);
6e2bb3ec 1643
012d4c96
MA
1644 if (!visit_start_list(v, name, (GenericList **)obj, size, errp)) {
1645 return false;
297a3646
MA
1646 }
1647
d9f62dde
EB
1648 for (tail = *obj; tail;
1649 tail = (UserDefOneList *)visit_next_list(v, (GenericList *)tail, size)) {
cdd2b228
MA
1650 if (!visit_type_UserDefOne(v, NULL, &tail->value, errp)) {
1651 goto out_obj;
d9f62dde 1652 }
b84da831 1653 }
297a3646 1654
cdd2b228
MA
1655 ok = visit_check_list(v, errp);
1656 out_obj:
1158bb2a 1657 visit_end_list(v, (void **)obj);
cdd2b228 1658 if (!ok && visit_is_input(v)) {
68ab47e4
EB
1659 qapi_free_UserDefOneList(*obj);
1660 *obj = NULL;
1661 }
cdd2b228 1662 return ok;
b84da831 1663 }
b84da831 1664
012d4c96 1665 bool visit_type_q_obj_my_command_arg_members(Visitor *v, q_obj_my_command_arg *obj, Error **errp)
64355088 1666 {
012d4c96
MA
1667 if (!visit_type_UserDefOneList(v, "arg1", &obj->arg1, errp)) {
1668 return false;
64355088 1669 }
cdd2b228 1670 return true;
64355088
MA
1671 }
1672
f7aa076d 1673 [Uninteresting stuff omitted...]
913b5e28 1674
9c66762a 1675For a modular QAPI schema (see section `Include directives`_), code for
f7aa076d 1676each sub-module SUBDIR/SUBMODULE.json is actually generated into ::
ce32bf85 1677
f7aa076d
JS
1678 SUBDIR/$(prefix)qapi-visit-SUBMODULE.h
1679 SUBDIR/$(prefix)qapi-visit-SUBMODULE.c
ce32bf85
MA
1680
1681If qapi-gen.py is run with option --builtins, additional files are
1682created:
1683
f7aa076d
JS
1684 ``qapi-builtin-visit.h``
1685 Visitor functions for built-in types
1686
1687 ``qapi-builtin-visit.c``
1688 Declarations for these visitor functions
ce32bf85 1689
ce32bf85 1690
f7aa076d
JS
1691Code generated for commands
1692---------------------------
fb0bc835
MA
1693
1694These are the marshaling/dispatch functions for the commands defined
1695in the schema. The generated code provides qmp_marshal_COMMAND(), and
1696declares qmp_COMMAND() that the user must implement.
b84da831 1697
fb0bc835 1698The following files are generated:
b84da831 1699
f7aa076d
JS
1700 ``$(prefix)qapi-commands.c``
1701 Command marshal/dispatch functions for each QMP command defined in
1702 the schema
b84da831 1703
f7aa076d
JS
1704 ``$(prefix)qapi-commands.h``
1705 Function prototypes for the QMP commands specified in the schema
b84da831 1706
ff8e4827
VSO
1707 ``$(prefix)qapi-commands.trace-events``
1708 Trace event declarations, see :ref:`tracing`.
1709
f7aa076d
JS
1710 ``$(prefix)qapi-init-commands.h``
1711 Command initialization prototype
00ca24ff 1712
f7aa076d
JS
1713 ``$(prefix)qapi-init-commands.c``
1714 Command initialization code
00ca24ff 1715
f7aa076d 1716Example::
b84da831 1717
eb815e24 1718 $ cat qapi-generated/example-qapi-commands.h
f7aa076d 1719 [Uninteresting stuff omitted...]
9ee86b85 1720
913b5e28
MA
1721 #ifndef EXAMPLE_QAPI_COMMANDS_H
1722 #define EXAMPLE_QAPI_COMMANDS_H
9ee86b85
EB
1723
1724 #include "example-qapi-types.h"
9ee86b85
EB
1725
1726 UserDefOne *qmp_my_command(UserDefOneList *arg1, Error **errp);
64355088 1727 void qmp_marshal_my_command(QDict *args, QObject **ret, Error **errp);
9ee86b85 1728
913b5e28 1729 #endif /* EXAMPLE_QAPI_COMMANDS_H */
ff8e4827
VSO
1730
1731 $ cat qapi-generated/example-qapi-commands.trace-events
1732 # AUTOMATICALLY GENERATED, DO NOT MODIFY
1733
1734 qmp_enter_my_command(const char *json) "%s"
1735 qmp_exit_my_command(const char *result, bool succeeded) "%s %d"
1736
eb815e24 1737 $ cat qapi-generated/example-qapi-commands.c
f7aa076d 1738 [Uninteresting stuff omitted...]
b84da831 1739
e0366f9f
MA
1740 static void qmp_marshal_output_UserDefOne(UserDefOne *ret_in,
1741 QObject **ret_out, Error **errp)
b84da831 1742 {
b84da831
MR
1743 Visitor *v;
1744
e0366f9f 1745 v = qobject_output_visitor_new_qmp(ret_out);
cdd2b228 1746 if (visit_type_UserDefOne(v, "unused", &ret_in, errp)) {
3b098d56 1747 visit_complete(v, ret_out);
6e2bb3ec 1748 }
2c0ef9f4
EB
1749 visit_free(v);
1750 v = qapi_dealloc_visitor_new();
9ee86b85 1751 visit_type_UserDefOne(v, "unused", &ret_in, NULL);
2c0ef9f4 1752 visit_free(v);
b84da831
MR
1753 }
1754
64355088 1755 void qmp_marshal_my_command(QDict *args, QObject **ret, Error **errp)
b84da831 1756 {
2a0f50e8 1757 Error *err = NULL;
cdd2b228 1758 bool ok = false;
b84da831 1759 Visitor *v;
2061487b 1760 UserDefOne *retval;
64355088 1761 q_obj_my_command_arg arg = {0};
b84da831 1762
e0366f9f 1763 v = qobject_input_visitor_new_qmp(QOBJECT(args));
cdd2b228 1764 if (!visit_start_struct(v, NULL, NULL, 0, errp)) {
ed841535
EB
1765 goto out;
1766 }
cdd2b228
MA
1767 if (visit_type_q_obj_my_command_arg_members(v, &arg, errp)) {
1768 ok = visit_check_struct(v, errp);
15c2f669 1769 }
1158bb2a 1770 visit_end_struct(v, NULL);
cdd2b228 1771 if (!ok) {
b84da831
MR
1772 goto out;
1773 }
297a3646 1774
ff8e4827
VSO
1775 if (trace_event_get_state_backends(TRACE_QMP_ENTER_MY_COMMAND)) {
1776 g_autoptr(GString) req_json = qobject_to_json(QOBJECT(args));
1777
1778 trace_qmp_enter_my_command(req_json->str);
1779 }
1780
64355088 1781 retval = qmp_my_command(arg.arg1, &err);
2a0f50e8 1782 if (err) {
ff8e4827 1783 trace_qmp_exit_my_command(error_get_pretty(err), false);
167d913f 1784 error_propagate(errp, err);
297a3646 1785 goto out;
6e2bb3ec 1786 }
b84da831 1787
cdd2b228 1788 qmp_marshal_output_UserDefOne(retval, ret, errp);
297a3646 1789
ff8e4827
VSO
1790 if (trace_event_get_state_backends(TRACE_QMP_EXIT_MY_COMMAND)) {
1791 g_autoptr(GString) ret_json = qobject_to_json(*ret);
1792
1793 trace_qmp_exit_my_command(ret_json->str, true);
1794 }
1795
b84da831 1796 out:
2c0ef9f4
EB
1797 visit_free(v);
1798 v = qapi_dealloc_visitor_new();
ed841535 1799 visit_start_struct(v, NULL, NULL, 0, NULL);
64355088 1800 visit_type_q_obj_my_command_arg_members(v, &arg, NULL);
1158bb2a 1801 visit_end_struct(v, NULL);
2c0ef9f4 1802 visit_free(v);
b84da831 1803 }
cdd2b228 1804
f7aa076d 1805 [Uninteresting stuff omitted...]
00ca24ff 1806 $ cat qapi-generated/example-qapi-init-commands.h
f7aa076d 1807 [Uninteresting stuff omitted...]
00ca24ff
MA
1808 #ifndef EXAMPLE_QAPI_INIT_COMMANDS_H
1809 #define EXAMPLE_QAPI_INIT_COMMANDS_H
b84da831 1810
00ca24ff
MA
1811 #include "qapi/qmp/dispatch.h"
1812
1813 void example_qmp_init_marshal(QmpCommandList *cmds);
1814
1815 #endif /* EXAMPLE_QAPI_INIT_COMMANDS_H */
1816 $ cat qapi-generated/example-qapi-init-commands.c
f7aa076d 1817 [Uninteresting stuff omitted...]
64355088 1818 void example_qmp_init_marshal(QmpCommandList *cmds)
b84da831 1819 {
64355088 1820 QTAILQ_INIT(cmds);
b84da831 1821
64355088 1822 qmp_register_command(cmds, "my-command",
a680ea07 1823 qmp_marshal_my_command, 0, 0);
64355088 1824 }
f7aa076d 1825 [Uninteresting stuff omitted...]
913b5e28 1826
9c66762a 1827For a modular QAPI schema (see section `Include directives`_), code for
f7aa076d 1828each sub-module SUBDIR/SUBMODULE.json is actually generated into::
ce32bf85 1829
f7aa076d
JS
1830 SUBDIR/$(prefix)qapi-commands-SUBMODULE.h
1831 SUBDIR/$(prefix)qapi-commands-SUBMODULE.c
ce32bf85 1832
f7aa076d
JS
1833
1834Code generated for events
1835-------------------------
59a2c4ce 1836
fb0bc835
MA
1837This is the code related to events defined in the schema, providing
1838qapi_event_send_EVENT().
1839
1840The following files are created:
59a2c4ce 1841
f7aa076d
JS
1842 ``$(prefix)qapi-events.h``
1843 Function prototypes for each event type
fb0bc835 1844
f7aa076d
JS
1845 ``$(prefix)qapi-events.c``
1846 Implementation of functions to send an event
59a2c4ce 1847
f7aa076d
JS
1848 ``$(prefix)qapi-emit-events.h``
1849 Enumeration of all event names, and common event code declarations
5d75648b 1850
f7aa076d
JS
1851 ``$(prefix)qapi-emit-events.c``
1852 Common event code definitions
5d75648b 1853
f7aa076d 1854Example::
59a2c4ce 1855
eb815e24 1856 $ cat qapi-generated/example-qapi-events.h
f7aa076d 1857 [Uninteresting stuff omitted...]
9ee86b85 1858
913b5e28
MA
1859 #ifndef EXAMPLE_QAPI_EVENTS_H
1860 #define EXAMPLE_QAPI_EVENTS_H
9ee86b85 1861
913b5e28 1862 #include "qapi/util.h"
9ee86b85
EB
1863 #include "example-qapi-types.h"
1864
3ab72385 1865 void qapi_event_send_my_event(void);
9ee86b85 1866
913b5e28 1867 #endif /* EXAMPLE_QAPI_EVENTS_H */
eb815e24 1868 $ cat qapi-generated/example-qapi-events.c
f7aa076d 1869 [Uninteresting stuff omitted...]
59a2c4ce 1870
3ab72385 1871 void qapi_event_send_my_event(void)
59a2c4ce
EB
1872 {
1873 QDict *qmp;
59a2c4ce
EB
1874
1875 qmp = qmp_event_build_dict("MY_EVENT");
1876
a9529100 1877 example_qapi_event_emit(EXAMPLE_QAPI_EVENT_MY_EVENT, qmp);
59a2c4ce 1878
cb3e7f08 1879 qobject_unref(qmp);
59a2c4ce
EB
1880 }
1881
f7aa076d 1882 [Uninteresting stuff omitted...]
5d75648b 1883 $ cat qapi-generated/example-qapi-emit-events.h
f7aa076d 1884 [Uninteresting stuff omitted...]
5d75648b
MA
1885
1886 #ifndef EXAMPLE_QAPI_EMIT_EVENTS_H
1887 #define EXAMPLE_QAPI_EMIT_EVENTS_H
1888
1889 #include "qapi/util.h"
1890
1891 typedef enum example_QAPIEvent {
1892 EXAMPLE_QAPI_EVENT_MY_EVENT,
1893 EXAMPLE_QAPI_EVENT__MAX,
1894 } example_QAPIEvent;
1895
1896 #define example_QAPIEvent_str(val) \
1897 qapi_enum_lookup(&example_QAPIEvent_lookup, (val))
1898
1899 extern const QEnumLookup example_QAPIEvent_lookup;
1900
1901 void example_qapi_event_emit(example_QAPIEvent event, QDict *qdict);
1902
1903 #endif /* EXAMPLE_QAPI_EMIT_EVENTS_H */
1904 $ cat qapi-generated/example-qapi-emit-events.c
f7aa076d 1905 [Uninteresting stuff omitted...]
5d75648b 1906
fb0bc835
MA
1907 const QEnumLookup example_QAPIEvent_lookup = {
1908 .array = (const char *const[]) {
1909 [EXAMPLE_QAPI_EVENT_MY_EVENT] = "MY_EVENT",
1910 },
1911 .size = EXAMPLE_QAPI_EVENT__MAX
59a2c4ce 1912 };
39a18158 1913
f7aa076d 1914 [Uninteresting stuff omitted...]
913b5e28 1915
9c66762a 1916For a modular QAPI schema (see section `Include directives`_), code for
f7aa076d
JS
1917each sub-module SUBDIR/SUBMODULE.json is actually generated into ::
1918
1919 SUBDIR/$(prefix)qapi-events-SUBMODULE.h
1920 SUBDIR/$(prefix)qapi-events-SUBMODULE.c
ce32bf85 1921
ce32bf85 1922
f7aa076d
JS
1923Code generated for introspection
1924--------------------------------
39a18158 1925
fb0bc835 1926The following files are created:
39a18158 1927
f7aa076d
JS
1928 ``$(prefix)qapi-introspect.c``
1929 Defines a string holding a JSON description of the schema
fb0bc835 1930
f7aa076d
JS
1931 ``$(prefix)qapi-introspect.h``
1932 Declares the above string
39a18158 1933
f7aa076d 1934Example::
39a18158 1935
eb815e24 1936 $ cat qapi-generated/example-qapi-introspect.h
f7aa076d 1937 [Uninteresting stuff omitted...]
39a18158 1938
913b5e28
MA
1939 #ifndef EXAMPLE_QAPI_INTROSPECT_H
1940 #define EXAMPLE_QAPI_INTROSPECT_H
39a18158 1941
913b5e28 1942 #include "qapi/qmp/qlit.h"
39a18158 1943
913b5e28
MA
1944 extern const QLitObject example_qmp_schema_qlit;
1945
1946 #endif /* EXAMPLE_QAPI_INTROSPECT_H */
eb815e24 1947 $ cat qapi-generated/example-qapi-introspect.c
f7aa076d 1948 [Uninteresting stuff omitted...]
9ee86b85 1949
7d0f982b
MAL
1950 const QLitObject example_qmp_schema_qlit = QLIT_QLIST(((QLitObject[]) {
1951 QLIT_QDICT(((QLitDictEntry[]) {
913b5e28
MA
1952 { "arg-type", QLIT_QSTR("0"), },
1953 { "meta-type", QLIT_QSTR("command"), },
1954 { "name", QLIT_QSTR("my-command"), },
1955 { "ret-type", QLIT_QSTR("1"), },
1956 {}
1957 })),
1958 QLIT_QDICT(((QLitDictEntry[]) {
1959 { "arg-type", QLIT_QSTR("2"), },
1960 { "meta-type", QLIT_QSTR("event"), },
1961 { "name", QLIT_QSTR("MY_EVENT"), },
1962 {}
7d0f982b 1963 })),
8c643361 1964 /* "0" = q_obj_my-command-arg */
7d0f982b
MAL
1965 QLIT_QDICT(((QLitDictEntry[]) {
1966 { "members", QLIT_QLIST(((QLitObject[]) {
913b5e28
MA
1967 QLIT_QDICT(((QLitDictEntry[]) {
1968 { "name", QLIT_QSTR("arg1"), },
1969 { "type", QLIT_QSTR("[1]"), },
1970 {}
1971 })),
1972 {}
1973 })), },
1974 { "meta-type", QLIT_QSTR("object"), },
1975 { "name", QLIT_QSTR("0"), },
1976 {}
7d0f982b 1977 })),
8c643361 1978 /* "1" = UserDefOne */
913b5e28
MA
1979 QLIT_QDICT(((QLitDictEntry[]) {
1980 { "members", QLIT_QLIST(((QLitObject[]) {
1981 QLIT_QDICT(((QLitDictEntry[]) {
1982 { "name", QLIT_QSTR("integer"), },
1983 { "type", QLIT_QSTR("int"), },
1984 {}
1985 })),
1986 QLIT_QDICT(((QLitDictEntry[]) {
1987 { "default", QLIT_QNULL, },
1988 { "name", QLIT_QSTR("string"), },
1989 { "type", QLIT_QSTR("str"), },
1990 {}
1991 })),
94f9bd33
MA
1992 QLIT_QDICT(((QLitDictEntry[]) {
1993 { "default", QLIT_QNULL, },
1994 { "name", QLIT_QSTR("flag"), },
1995 { "type", QLIT_QSTR("bool"), },
1996 {}
1997 })),
913b5e28
MA
1998 {}
1999 })), },
2000 { "meta-type", QLIT_QSTR("object"), },
2001 { "name", QLIT_QSTR("1"), },
2002 {}
2003 })),
8c643361 2004 /* "2" = q_empty */
913b5e28
MA
2005 QLIT_QDICT(((QLitDictEntry[]) {
2006 { "members", QLIT_QLIST(((QLitObject[]) {
2007 {}
2008 })), },
2009 { "meta-type", QLIT_QSTR("object"), },
2010 { "name", QLIT_QSTR("2"), },
2011 {}
2012 })),
2013 QLIT_QDICT(((QLitDictEntry[]) {
2014 { "element-type", QLIT_QSTR("1"), },
2015 { "meta-type", QLIT_QSTR("array"), },
2016 { "name", QLIT_QSTR("[1]"), },
2017 {}
2018 })),
2019 QLIT_QDICT(((QLitDictEntry[]) {
2020 { "json-type", QLIT_QSTR("int"), },
2021 { "meta-type", QLIT_QSTR("builtin"), },
2022 { "name", QLIT_QSTR("int"), },
2023 {}
2024 })),
2025 QLIT_QDICT(((QLitDictEntry[]) {
2026 { "json-type", QLIT_QSTR("string"), },
2027 { "meta-type", QLIT_QSTR("builtin"), },
2028 { "name", QLIT_QSTR("str"), },
2029 {}
2030 })),
94f9bd33
MA
2031 QLIT_QDICT(((QLitDictEntry[]) {
2032 { "json-type", QLIT_QSTR("boolean"), },
2033 { "meta-type", QLIT_QSTR("builtin"), },
2034 { "name", QLIT_QSTR("bool"), },
2035 {}
2036 })),
913b5e28 2037 {}
7d0f982b 2038 }));
913b5e28 2039
f7aa076d 2040 [Uninteresting stuff omitted...]