* [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update
@ 2018-08-28 12:07 Markus Armbruster
2018-08-28 12:07 ` [Qemu-devel] [PATCH 1/2] qapi: Emit a blank line before dummy declaration Markus Armbruster
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Markus Armbruster @ 2018-08-28 12:07 UTC (permalink / raw)
To: qemu-devel; +Cc: mdroth, eblake
Markus Armbruster (2):
qapi: Emit a blank line before dummy declaration
qapi: Update docs for generator changes since commit 9ee86b85267
docs/devel/qapi-code-gen.txt | 131 ++++++++++++++++++++++++++---------
scripts/qapi/common.py | 1 +
2 files changed, 101 insertions(+), 31 deletions(-)
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH 1/2] qapi: Emit a blank line before dummy declaration
2018-08-28 12:07 [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update Markus Armbruster
@ 2018-08-28 12:07 ` Markus Armbruster
2018-08-28 12:07 ` [Qemu-devel] [PATCH 2/2] qapi: Update docs for generator changes since commit 9ee86b85267 Markus Armbruster
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Markus Armbruster @ 2018-08-28 12:07 UTC (permalink / raw)
To: qemu-devel; +Cc: mdroth, eblake
We emit a dummy variable in each .c file "to shut up OSX toolchain
warnings about empty .o files" (commit 252dc3105fc). Separate it from
the code preceding it (if any) with a blank line.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
scripts/qapi/common.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/scripts/qapi/common.py b/scripts/qapi/common.py
index 02c5c6767a..5bbf1c353d 100644
--- a/scripts/qapi/common.py
+++ b/scripts/qapi/common.py
@@ -2220,6 +2220,7 @@ class QAPIGenC(QAPIGenCCode):
def _bottom(self, fname):
return mcgen('''
+
/* Dummy declaration to prevent empty .o file */
char dummy_%(name)s;
''',
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH 2/2] qapi: Update docs for generator changes since commit 9ee86b85267
2018-08-28 12:07 [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update Markus Armbruster
2018-08-28 12:07 ` [Qemu-devel] [PATCH 1/2] qapi: Emit a blank line before dummy declaration Markus Armbruster
@ 2018-08-28 12:07 ` Markus Armbruster
2018-08-28 15:12 ` [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update Eric Blake
2018-08-28 19:06 ` Markus Armbruster
3 siblings, 0 replies; 5+ messages in thread
From: Markus Armbruster @ 2018-08-28 12:07 UTC (permalink / raw)
To: qemu-devel; +Cc: mdroth, eblake
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
docs/devel/qapi-code-gen.txt | 131 ++++++++++++++++++++++++++---------
1 file changed, 100 insertions(+), 31 deletions(-)
diff --git a/docs/devel/qapi-code-gen.txt b/docs/devel/qapi-code-gen.txt
index c2e11465f0..49149f495a 100644
--- a/docs/devel/qapi-code-gen.txt
+++ b/docs/devel/qapi-code-gen.txt
@@ -1035,7 +1035,7 @@ Example:
#ifndef EXAMPLE_QAPI_TYPES_H
#define EXAMPLE_QAPI_TYPES_H
-[Built-in types omitted...]
+ #include "qapi/qapi-builtin-types.h"
typedef struct UserDefOne UserDefOne;
@@ -1062,7 +1062,7 @@ Example:
UserDefOneList *arg1;
};
- #endif
+ #endif /* EXAMPLE_QAPI_TYPES_H */
$ cat qapi-generated/example-qapi-types.c
[Uninteresting stuff omitted...]
@@ -1092,6 +1092,8 @@ Example:
visit_free(v);
}
+[Uninteresting stuff omitted...]
+
=== Code generated for visiting QAPI types ===
These are the visitor functions used to walk through and convert
@@ -1118,7 +1120,9 @@ Example:
#ifndef EXAMPLE_QAPI_VISIT_H
#define EXAMPLE_QAPI_VISIT_H
-[Visitors for built-in types omitted...]
+ #include "qapi/qapi-builtin-visit.h"
+ #include "example-qapi-types.h"
+
void visit_type_UserDefOne_members(Visitor *v, UserDefOne *obj, Error **errp);
void visit_type_UserDefOne(Visitor *v, const char *name, UserDefOne **obj, Error **errp);
@@ -1126,7 +1130,7 @@ Example:
void visit_type_q_obj_my_command_arg_members(Visitor *v, q_obj_my_command_arg *obj, Error **errp);
- #endif
+ #endif /* EXAMPLE_QAPI_VISIT_H */
$ cat qapi-generated/example-qapi-visit.c
[Uninteresting stuff omitted...]
@@ -1219,6 +1223,8 @@ Example:
error_propagate(errp, err);
}
+[Uninteresting stuff omitted...]
+
=== Code generated for commands ===
These are the marshaling/dispatch functions for the commands defined
@@ -1238,18 +1244,17 @@ Example:
$ cat qapi-generated/example-qapi-commands.h
[Uninteresting stuff omitted...]
- #ifndef EXAMPLE_QMP_COMMANDS_H
- #define EXAMPLE_QMP_COMMANDS_H
+ #ifndef EXAMPLE_QAPI_COMMANDS_H
+ #define EXAMPLE_QAPI_COMMANDS_H
#include "example-qapi-types.h"
- #include "qapi/qmp/qdict.h"
#include "qapi/qmp/dispatch.h"
- void example_qmp_init_marshal(QmpCommandList *cmds);
UserDefOne *qmp_my_command(UserDefOneList *arg1, Error **errp);
void qmp_marshal_my_command(QDict *args, QObject **ret, Error **errp);
+ void example_qmp_init_marshal(QmpCommandList *cmds);
- #endif
+ #endif /* EXAMPLE_QAPI_COMMANDS_H */
$ cat qapi-generated/example-qapi-commands.c
[Uninteresting stuff omitted...]
@@ -1316,6 +1321,8 @@ Example:
qmp_marshal_my_command, QCO_NO_OPTIONS);
}
+[Uninteresting stuff omitted...]
+
=== Code generated for events ===
This is the code related to events defined in the schema, providing
@@ -1333,10 +1340,10 @@ Example:
$ cat qapi-generated/example-qapi-events.h
[Uninteresting stuff omitted...]
- #ifndef EXAMPLE_QAPI_EVENT_H
- #define EXAMPLE_QAPI_EVENT_H
+ #ifndef EXAMPLE_QAPI_EVENTS_H
+ #define EXAMPLE_QAPI_EVENTS_H
- #include "qapi/qmp/qdict.h"
+ #include "qapi/util.h"
#include "example-qapi-types.h"
@@ -1348,11 +1355,11 @@ Example:
} example_QAPIEvent;
#define example_QAPIEvent_str(val) \
- qapi_enum_lookup(example_QAPIEvent_lookup, (val))
+ qapi_enum_lookup(&example_QAPIEvent_lookup, (val))
- extern const char *const example_QAPIEvent_lookup[];
+ extern const QEnumLookup example_QAPIEvent_lookup;
- #endif
+ #endif /* EXAMPLE_QAPI_EVENTS_H */
$ cat qapi-generated/example-qapi-events.c
[Uninteresting stuff omitted...]
@@ -1382,6 +1389,8 @@ Example:
.size = EXAMPLE_QAPI_EVENT__MAX
};
+[Uninteresting stuff omitted...]
+
=== Code generated for introspection ===
The following files are created:
@@ -1396,30 +1405,90 @@ Example:
$ cat qapi-generated/example-qapi-introspect.h
[Uninteresting stuff omitted...]
- #ifndef EXAMPLE_QMP_INTROSPECT_H
- #define EXAMPLE_QMP_INTROSPECT_H
+ #ifndef EXAMPLE_QAPI_INTROSPECT_H
+ #define EXAMPLE_QAPI_INTROSPECT_H
- extern const QLitObject qmp_schema_qlit;
+ #include "qapi/qmp/qlit.h"
- #endif
+ extern const QLitObject example_qmp_schema_qlit;
+
+ #endif /* EXAMPLE_QAPI_INTROSPECT_H */
$ cat qapi-generated/example-qapi-introspect.c
[Uninteresting stuff omitted...]
const QLitObject example_qmp_schema_qlit = QLIT_QLIST(((QLitObject[]) {
QLIT_QDICT(((QLitDictEntry[]) {
- { "arg-type", QLIT_QSTR("0") },
- { "meta-type", QLIT_QSTR("event") },
- { "name", QLIT_QSTR("Event") },
- { }
+ { "arg-type", QLIT_QSTR("0"), },
+ { "meta-type", QLIT_QSTR("command"), },
+ { "name", QLIT_QSTR("my-command"), },
+ { "ret-type", QLIT_QSTR("1"), },
+ {}
+ })),
+ QLIT_QDICT(((QLitDictEntry[]) {
+ { "arg-type", QLIT_QSTR("2"), },
+ { "meta-type", QLIT_QSTR("event"), },
+ { "name", QLIT_QSTR("MY_EVENT"), },
+ {}
+ })),
+ QLIT_QDICT(((QLitDictEntry[]) {
+ { "members", QLIT_QLIST(((QLitObject[]) {
+ QLIT_QDICT(((QLitDictEntry[]) {
+ { "name", QLIT_QSTR("arg1"), },
+ { "type", QLIT_QSTR("[1]"), },
+ {}
+ })),
+ {}
+ })), },
+ { "meta-type", QLIT_QSTR("object"), },
+ { "name", QLIT_QSTR("0"), },
+ {}
+ })),
+ QLIT_QDICT(((QLitDictEntry[]) {
+ { "members", QLIT_QLIST(((QLitObject[]) {
+ QLIT_QDICT(((QLitDictEntry[]) {
+ { "name", QLIT_QSTR("integer"), },
+ { "type", QLIT_QSTR("int"), },
+ {}
+ })),
+ QLIT_QDICT(((QLitDictEntry[]) {
+ { "default", QLIT_QNULL, },
+ { "name", QLIT_QSTR("string"), },
+ { "type", QLIT_QSTR("str"), },
+ {}
+ })),
+ {}
+ })), },
+ { "meta-type", QLIT_QSTR("object"), },
+ { "name", QLIT_QSTR("1"), },
+ {}
})),
QLIT_QDICT(((QLitDictEntry[]) {
{ "members", QLIT_QLIST(((QLitObject[]) {
- { }
- })) },
- { "meta-type", QLIT_QSTR("object") },
- { "name", QLIT_QSTR("0") },
- { }
- })),
- ...
- { }
+ {}
+ })), },
+ { "meta-type", QLIT_QSTR("object"), },
+ { "name", QLIT_QSTR("2"), },
+ {}
+ })),
+ QLIT_QDICT(((QLitDictEntry[]) {
+ { "element-type", QLIT_QSTR("1"), },
+ { "meta-type", QLIT_QSTR("array"), },
+ { "name", QLIT_QSTR("[1]"), },
+ {}
+ })),
+ QLIT_QDICT(((QLitDictEntry[]) {
+ { "json-type", QLIT_QSTR("int"), },
+ { "meta-type", QLIT_QSTR("builtin"), },
+ { "name", QLIT_QSTR("int"), },
+ {}
+ })),
+ QLIT_QDICT(((QLitDictEntry[]) {
+ { "json-type", QLIT_QSTR("string"), },
+ { "meta-type", QLIT_QSTR("builtin"), },
+ { "name", QLIT_QSTR("str"), },
+ {}
+ })),
+ {}
}));
+
+[Uninteresting stuff omitted...]
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update
2018-08-28 12:07 [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update Markus Armbruster
2018-08-28 12:07 ` [Qemu-devel] [PATCH 1/2] qapi: Emit a blank line before dummy declaration Markus Armbruster
2018-08-28 12:07 ` [Qemu-devel] [PATCH 2/2] qapi: Update docs for generator changes since commit 9ee86b85267 Markus Armbruster
@ 2018-08-28 15:12 ` Eric Blake
2018-08-28 19:06 ` Markus Armbruster
3 siblings, 0 replies; 5+ messages in thread
From: Eric Blake @ 2018-08-28 15:12 UTC (permalink / raw)
To: Markus Armbruster, qemu-devel; +Cc: mdroth
On 08/28/2018 07:07 AM, Markus Armbruster wrote:
> Markus Armbruster (2):
> qapi: Emit a blank line before dummy declaration
> qapi: Update docs for generator changes since commit 9ee86b85267
Reviewed-by: Eric Blake <eblake@redhat.com>
(Nothing like my patch to the same file to make it obvious that we're
not always remember to do this)
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3266
Virtualization: qemu.org | libvirt.org
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update
2018-08-28 12:07 [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update Markus Armbruster
` (2 preceding siblings ...)
2018-08-28 15:12 ` [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update Eric Blake
@ 2018-08-28 19:06 ` Markus Armbruster
3 siblings, 0 replies; 5+ messages in thread
From: Markus Armbruster @ 2018-08-28 19:06 UTC (permalink / raw)
To: qemu-devel; +Cc: mdroth, eblake
Markus Armbruster <armbru@redhat.com> writes:
> Markus Armbruster (2):
> qapi: Emit a blank line before dummy declaration
> qapi: Update docs for generator changes since commit 9ee86b85267
>
> docs/devel/qapi-code-gen.txt | 131 ++++++++++++++++++++++++++---------
> scripts/qapi/common.py | 1 +
> 2 files changed, 101 insertions(+), 31 deletions(-)
Queued.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-08-28 19:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-28 12:07 [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update Markus Armbruster
2018-08-28 12:07 ` [Qemu-devel] [PATCH 1/2] qapi: Emit a blank line before dummy declaration Markus Armbruster
2018-08-28 12:07 ` [Qemu-devel] [PATCH 2/2] qapi: Update docs for generator changes since commit 9ee86b85267 Markus Armbruster
2018-08-28 15:12 ` [Qemu-devel] [PATCH 0/2] qapi: A whitespace touch-up, and a doc update Eric Blake
2018-08-28 19:06 ` Markus Armbruster
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).