fpu: softfloat: drop INLINE macro
[qemu/ar7.git] / docs / qapi-code-gen.txt
blobdea0d505a7825a6970589f42f207f6e6d0f67af1
1 = How to use the QAPI code generator =
3 * Note: as of this writing, QMP does not use QAPI. Eventually QMP
4 commands will be converted to use QAPI internally. The following
5 information describes QMP/QAPI as it will exist after the
6 conversion.
8 QAPI is a native C API within QEMU which provides management-level
9 functionality to internal/external users. For external
10 users/processes, this interface is made available by a JSON-based
11 QEMU Monitor protocol that is provided by the QMP server.
13 To map QMP-defined interfaces to the native C QAPI implementations,
14 a JSON-based schema is used to define types and function
15 signatures, and a set of scripts is used to generate types/signatures,
16 and marshaling/dispatch code. The QEMU Guest Agent also uses these
17 scripts, paired with a separate schema, to generate
18 marshaling/dispatch code for the guest agent server running in the
19 guest.
21 This document will describe how the schemas, scripts, and resulting
22 code is used.
25 == QMP/Guest agent schema ==
27 This file defines the types, commands, and events used by QMP.  It should
28 fully describe the interface used by QMP.
30 This file is designed to be loosely based on JSON although it's technically
31 executable Python.  While dictionaries are used, they are parsed as
32 OrderedDicts so that ordering is preserved.
34 There are two basic syntaxes used, type definitions and command definitions.
36 The first syntax defines a type and is represented by a dictionary.  There are
37 three kinds of user-defined types that are supported: complex types,
38 enumeration types and union types.
40 Generally speaking, types definitions should always use CamelCase for the type
41 names. Command names should be all lower case with words separated by a hyphen.
44 === Includes ===
46 The QAPI schema definitions can be modularized using the 'include' directive:
48  { 'include': 'path/to/file.json'}
50 The directive is evaluated recursively, and include paths are relative to the
51 file using the directive. Multiple includes of the same file are safe.
54 === Complex types ===
56 A complex type is a dictionary containing a single key whose value is a
57 dictionary.  This corresponds to a struct in C or an Object in JSON.  An
58 example of a complex type is:
60  { 'type': 'MyType',
61    'data': { 'member1': 'str', 'member2': 'int', '*member3': 'str' } }
63 The use of '*' as a prefix to the name means the member is optional.
65 The default initialization value of an optional argument should not be changed
66 between versions of QEMU unless the new default maintains backward
67 compatibility to the user-visible behavior of the old default.
69 With proper documentation, this policy still allows some flexibility; for
70 example, documenting that a default of 0 picks an optimal buffer size allows
71 one release to declare the optimal size at 512 while another release declares
72 the optimal size at 4096 - the user-visible behavior is not the bytes used by
73 the buffer, but the fact that the buffer was optimal size.
75 On input structures (only mentioned in the 'data' side of a command), changing
76 from mandatory to optional is safe (older clients will supply the option, and
77 newer clients can benefit from the default); changing from optional to
78 mandatory is backwards incompatible (older clients may be omitting the option,
79 and must continue to work).
81 On output structures (only mentioned in the 'returns' side of a command),
82 changing from mandatory to optional is in general unsafe (older clients may be
83 expecting the field, and could crash if it is missing), although it can be done
84 if the only way that the optional argument will be omitted is when it is
85 triggered by the presence of a new input flag to the command that older clients
86 don't know to send.  Changing from optional to mandatory is safe.
88 A structure that is used in both input and output of various commands
89 must consider the backwards compatibility constraints of both directions
90 of use.
92 A complex type definition can specify another complex type as its base.
93 In this case, the fields of the base type are included as top-level fields
94 of the new complex type's dictionary in the QMP wire format. An example
95 definition is:
97  { 'type': 'BlockdevOptionsGenericFormat', 'data': { 'file': 'str' } }
98  { 'type': 'BlockdevOptionsGenericCOWFormat',
99    'base': 'BlockdevOptionsGenericFormat',
100    'data': { '*backing': 'str' } }
102 An example BlockdevOptionsGenericCOWFormat object on the wire could use
103 both fields like this:
105  { "file": "/some/place/my-image",
106    "backing": "/some/place/my-backing-file" }
108 === Enumeration types ===
110 An enumeration type is a dictionary containing a single key whose value is a
111 list of strings.  An example enumeration is:
113  { 'enum': 'MyEnum', 'data': [ 'value1', 'value2', 'value3' ] }
115 === Union types ===
117 Union types are used to let the user choose between several different data
118 types.  A union type is defined using a dictionary as explained in the
119 following paragraphs.
122 A simple union type defines a mapping from discriminator values to data types
123 like in this example:
125  { 'type': 'FileOptions', 'data': { 'filename': 'str' } }
126  { 'type': 'Qcow2Options',
127    'data': { 'backing-file': 'str', 'lazy-refcounts': 'bool' } }
129  { 'union': 'BlockdevOptions',
130    'data': { 'file': 'FileOptions',
131              'qcow2': 'Qcow2Options' } }
133 In the QMP wire format, a simple union is represented by a dictionary that
134 contains the 'type' field as a discriminator, and a 'data' field that is of the
135 specified data type corresponding to the discriminator value:
137  { "type": "qcow2", "data" : { "backing-file": "/some/place/my-image",
138                                "lazy-refcounts": true } }
141 A union definition can specify a complex type as its base. In this case, the
142 fields of the complex type are included as top-level fields of the union
143 dictionary in the QMP wire format. An example definition is:
145  { 'type': 'BlockdevCommonOptions', 'data': { 'readonly': 'bool' } }
146  { 'union': 'BlockdevOptions',
147    'base': 'BlockdevCommonOptions',
148    'data': { 'raw': 'RawOptions',
149              'qcow2': 'Qcow2Options' } }
151 And it looks like this on the wire:
153  { "type": "qcow2",
154    "readonly": false,
155    "data" : { "backing-file": "/some/place/my-image",
156               "lazy-refcounts": true } }
159 Flat union types avoid the nesting on the wire. They are used whenever a
160 specific field of the base type is declared as the discriminator ('type' is
161 then no longer generated). The discriminator must be of enumeration type.
162 The above example can then be modified as follows:
164  { 'enum': 'BlockdevDriver', 'data': [ 'raw', 'qcow2' ] }
165  { 'type': 'BlockdevCommonOptions',
166    'data': { 'driver': 'BlockdevDriver', 'readonly': 'bool' } }
167  { 'union': 'BlockdevOptions',
168    'base': 'BlockdevCommonOptions',
169    'discriminator': 'driver',
170    'data': { 'raw': 'RawOptions',
171              'qcow2': 'Qcow2Options' } }
173 Resulting in this JSON object:
175  { "driver": "qcow2",
176    "readonly": false,
177    "backing-file": "/some/place/my-image",
178    "lazy-refcounts": true }
181 A special type of unions are anonymous unions. They don't form a dictionary in
182 the wire format but allow the direct use of different types in their place. As
183 they aren't structured, they don't have any explicit discriminator but use
184 the (QObject) data type of their value as an implicit discriminator. This means
185 that they are restricted to using only one discriminator value per QObject
186 type. For example, you cannot have two different complex types in an anonymous
187 union, or two different integer types.
189 Anonymous unions are declared using an empty dictionary as their discriminator.
190 The discriminator values never appear on the wire, they are only used in the
191 generated C code. Anonymous unions cannot have a base type.
193  { 'union': 'BlockRef',
194    'discriminator': {},
195    'data': { 'definition': 'BlockdevOptions',
196              'reference': 'str' } }
198 This example allows using both of the following example objects:
200  { "file": "my_existing_block_device_id" }
201  { "file": { "driver": "file",
202              "readonly": false,
203              "filename": "/tmp/mydisk.qcow2" } }
206 === Commands ===
208 Commands are defined by using a list containing three members.  The first
209 member is the command name, the second member is a dictionary containing
210 arguments, and the third member is the return type.
212 An example command is:
214  { 'command': 'my-command',
215    'data': { 'arg1': 'str', '*arg2': 'str' },
216    'returns': 'str' }
219 == Code generation ==
221 Schemas are fed into 3 scripts to generate all the code/files that, paired
222 with the core QAPI libraries, comprise everything required to take JSON
223 commands read in by a QMP/guest agent server, unmarshal the arguments into
224 the underlying C types, call into the corresponding C function, and map the
225 response back to a QMP/guest agent response to be returned to the user.
227 As an example, we'll use the following schema, which describes a single
228 complex user-defined type (which will produce a C struct, along with a list
229 node structure that can be used to chain together a list of such types in
230 case we want to accept/return a list of this type with a command), and a
231 command which takes that type as a parameter and returns the same type:
233     $ cat example-schema.json
234     { 'type': 'UserDefOne',
235       'data': { 'integer': 'int', 'string': 'str' } }
237     { 'command': 'my-command',
238       'data':    {'arg1': 'UserDefOne'},
239       'returns': 'UserDefOne' }
241 === scripts/qapi-types.py ===
243 Used to generate the C types defined by a schema. The following files are
244 created:
246 $(prefix)qapi-types.h - C types corresponding to types defined in
247                         the schema you pass in
248 $(prefix)qapi-types.c - Cleanup functions for the above C types
250 The $(prefix) is an optional parameter used as a namespace to keep the
251 generated code from one schema/code-generation separated from others so code
252 can be generated/used from multiple schemas without clobbering previously
253 created code.
255 Example:
257     $ python scripts/qapi-types.py --output-dir="qapi-generated" \
258     --prefix="example-" --input-file=example-schema.json
259     $ cat qapi-generated/example-qapi-types.c
260 [Uninteresting stuff omitted...]
262     void qapi_free_UserDefOneList(UserDefOneList * obj)
263     {
264         QapiDeallocVisitor *md;
265         Visitor *v;
267         if (!obj) {
268             return;
269         }
271         md = qapi_dealloc_visitor_new();
272         v = qapi_dealloc_get_visitor(md);
273         visit_type_UserDefOneList(v, &obj, NULL, NULL);
274         qapi_dealloc_visitor_cleanup(md);
275     }
277     void qapi_free_UserDefOne(UserDefOne * obj)
278     {
279         QapiDeallocVisitor *md;
280         Visitor *v;
282         if (!obj) {
283             return;
284         }
286         md = qapi_dealloc_visitor_new();
287         v = qapi_dealloc_get_visitor(md);
288         visit_type_UserDefOne(v, &obj, NULL, NULL);
289         qapi_dealloc_visitor_cleanup(md);
290     }
292     $ cat qapi-generated/example-qapi-types.h
293 [Uninteresting stuff omitted...]
295     #ifndef EXAMPLE_QAPI_TYPES_H
296     #define EXAMPLE_QAPI_TYPES_H
298 [Builtin types omitted...]
300     typedef struct UserDefOne UserDefOne;
302     typedef struct UserDefOneList
303     {
304         union {
305             UserDefOne *value;
306             uint64_t padding;
307         };
308         struct UserDefOneList *next;
309     } UserDefOneList;
311 [Functions on builtin types omitted...]
313     struct UserDefOne
314     {
315         int64_t integer;
316         char * string;
317     };
319     void qapi_free_UserDefOneList(UserDefOneList * obj);
320     void qapi_free_UserDefOne(UserDefOne * obj);
322     #endif
324 === scripts/qapi-visit.py ===
326 Used to generate the visitor functions used to walk through and convert
327 a QObject (as provided by QMP) to a native C data structure and
328 vice-versa, as well as the visitor function used to dealloc a complex
329 schema-defined C type.
331 The following files are generated:
333 $(prefix)qapi-visit.c: visitor function for a particular C type, used
334                        to automagically convert QObjects into the
335                        corresponding C type and vice-versa, as well
336                        as for deallocating memory for an existing C
337                        type
339 $(prefix)qapi-visit.h: declarations for previously mentioned visitor
340                        functions
342 Example:
344     $ python scripts/qapi-visit.py --output-dir="qapi-generated"
345     --prefix="example-" --input-file=example-schema.json
346     $ cat qapi-generated/example-qapi-visit.c
347 [Uninteresting stuff omitted...]
349     static void visit_type_UserDefOne_fields(Visitor *m, UserDefOne ** obj, Error **errp)
350     {
351         Error *err = NULL;
352         visit_type_int(m, &(*obj)->integer, "integer", &err);
353         if (err) {
354             goto out;
355         }
356         visit_type_str(m, &(*obj)->string, "string", &err);
357         if (err) {
358             goto out;
359         }
361     out:
362         error_propagate(errp, err);
363     }
365     void visit_type_UserDefOne(Visitor *m, UserDefOne ** obj, const char *name, Error **errp)
366     {
367         Error *err = NULL;
369         visit_start_struct(m, (void **)obj, "UserDefOne", name, sizeof(UserDefOne), &err);
370         if (!err) {
371             if (*obj) {
372                 visit_type_UserDefOne_fields(m, obj, errp);
373             }
374             visit_end_struct(m, &err);
375         }
376         error_propagate(errp, err);
377     }
379     void visit_type_UserDefOneList(Visitor *m, UserDefOneList ** obj, const char *name, Error **errp)
380     {
381         Error *err = NULL;
382         GenericList *i, **prev;
384         visit_start_list(m, name, &err);
385         if (err) {
386             goto out;
387         }
389         for (prev = (GenericList **)obj;
390              !err && (i = visit_next_list(m, prev, &err)) != NULL;
391              prev = &i) {
392             UserDefOneList *native_i = (UserDefOneList *)i;
393             visit_type_UserDefOne(m, &native_i->value, NULL, &err);
394         }
396         error_propagate(errp, err);
397         err = NULL;
398         visit_end_list(m, &err);
399     out:
400         error_propagate(errp, err);
401     }
402     $ python scripts/qapi-commands.py --output-dir="qapi-generated" \
403     --prefix="example-" --input-file=example-schema.json
404     $ cat qapi-generated/example-qapi-visit.h
405 [Uninteresting stuff omitted...]
407     #ifndef EXAMPLE_QAPI_VISIT_H
408     #define EXAMPLE_QAPI_VISIT_H
410 [Visitors for builtin types omitted...]
412     void visit_type_UserDefOne(Visitor *m, UserDefOne ** obj, const char *name, Error **errp);
413     void visit_type_UserDefOneList(Visitor *m, UserDefOneList ** obj, const char *name, Error **errp);
415     #endif
417 === scripts/qapi-commands.py ===
419 Used to generate the marshaling/dispatch functions for the commands defined
420 in the schema. The following files are generated:
422 $(prefix)qmp-marshal.c: command marshal/dispatch functions for each
423                         QMP command defined in the schema. Functions
424                         generated by qapi-visit.py are used to
425                         convert QObjects received from the wire into
426                         function parameters, and uses the same
427                         visitor functions to convert native C return
428                         values to QObjects from transmission back
429                         over the wire.
431 $(prefix)qmp-commands.h: Function prototypes for the QMP commands
432                          specified in the schema.
434 Example:
436     $ cat qapi-generated/example-qmp-marshal.c
437 [Uninteresting stuff omitted...]
439     static void qmp_marshal_output_my_command(UserDefOne * ret_in, QObject **ret_out, Error **errp)
440     {
441         Error *local_err = NULL;
442         QmpOutputVisitor *mo = qmp_output_visitor_new();
443         QapiDeallocVisitor *md;
444         Visitor *v;
446         v = qmp_output_get_visitor(mo);
447         visit_type_UserDefOne(v, &ret_in, "unused", &local_err);
448         if (local_err) {
449             goto out;
450         }
451         *ret_out = qmp_output_get_qobject(mo);
453     out:
454         error_propagate(errp, local_err);
455         qmp_output_visitor_cleanup(mo);
456         md = qapi_dealloc_visitor_new();
457         v = qapi_dealloc_get_visitor(md);
458         visit_type_UserDefOne(v, &ret_in, "unused", NULL);
459         qapi_dealloc_visitor_cleanup(md);
460     }
462     static void qmp_marshal_input_my_command(QDict *args, QObject **ret, Error **errp)
463     {
464         Error *local_err = NULL;
465         UserDefOne * retval = NULL;
466         QmpInputVisitor *mi = qmp_input_visitor_new_strict(QOBJECT(args));
467         QapiDeallocVisitor *md;
468         Visitor *v;
469         UserDefOne * arg1 = NULL;
471         v = qmp_input_get_visitor(mi);
472         visit_type_UserDefOne(v, &arg1, "arg1", &local_err);
473         if (local_err) {
474             goto out;
475         }
477         retval = qmp_my_command(arg1, &local_err);
478         if (local_err) {
479             goto out;
480         }
482         qmp_marshal_output_my_command(retval, ret, &local_err);
484     out:
485         error_propagate(errp, local_err);
486         qmp_input_visitor_cleanup(mi);
487         md = qapi_dealloc_visitor_new();
488         v = qapi_dealloc_get_visitor(md);
489         visit_type_UserDefOne(v, &arg1, "arg1", NULL);
490         qapi_dealloc_visitor_cleanup(md);
491         return;
492     }
494     static void qmp_init_marshal(void)
495     {
496         qmp_register_command("my-command", qmp_marshal_input_my_command, QCO_NO_OPTIONS);
497     }
499     qapi_init(qmp_init_marshal);
500     $ cat qapi-generated/example-qmp-commands.h
501 [Uninteresting stuff omitted...]
503     #ifndef EXAMPLE_QMP_COMMANDS_H
504     #define EXAMPLE_QMP_COMMANDS_H
506     #include "example-qapi-types.h"
507     #include "qapi/qmp/qdict.h"
508     #include "qapi/error.h"
510     UserDefOne * qmp_my_command(UserDefOne * arg1, Error **errp);
512     #endif