From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Cc: mdroth@linux.vnet.ibm.com
Subject: [PATCH v2 14/15] qapi: Disallow qmp_marshal_FOO(NULL, ...)
Date: Fri, 24 Apr 2020 10:43:37 +0200 [thread overview]
Message-ID: <20200424084338.26803-15-armbru@redhat.com> (raw)
In-Reply-To: <20200424084338.26803-1-armbru@redhat.com>
For QMP commands without arguments, gen_marshal() laboriously
generates a qmp_marshal_FOO() that copes with null @args. Turns
there's just one caller that passes null instead of an empty QDict.
Adjust that caller, and simplify gen_marshal().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
docs/devel/qapi-code-gen.txt | 2 +-
monitor/qmp.c | 5 ++++-
scripts/qapi/commands.py | 26 ++------------------------
3 files changed, 7 insertions(+), 26 deletions(-)
diff --git a/docs/devel/qapi-code-gen.txt b/docs/devel/qapi-code-gen.txt
index c6dd1891c3..a7794ef658 100644
--- a/docs/devel/qapi-code-gen.txt
+++ b/docs/devel/qapi-code-gen.txt
@@ -1579,8 +1579,8 @@ Example:
void qmp_marshal_my_command(QDict *args, QObject **ret, Error **errp)
{
Error *err = NULL;
- UserDefOne *retval;
Visitor *v;
+ UserDefOne *retval;
q_obj_my_command_arg arg = {0};
v = qobject_input_visitor_new(QOBJECT(args));
diff --git a/monitor/qmp.c b/monitor/qmp.c
index f89e7daf27..d433ceae5b 100644
--- a/monitor/qmp.c
+++ b/monitor/qmp.c
@@ -322,9 +322,12 @@ static QDict *qmp_greeting(MonitorQMP *mon)
{
QList *cap_list = qlist_new();
QObject *ver = NULL;
+ QDict *args;
QMPCapability cap;
- qmp_marshal_query_version(NULL, &ver, NULL);
+ args = qdict_new();
+ qmp_marshal_query_version(args, &ver, NULL);
+ qobject_unref(args);
for (cap = 0; cap < QMP_CAPABILITY__MAX; cap++) {
if (mon->capab_offered[cap]) {
diff --git a/scripts/qapi/commands.py b/scripts/qapi/commands.py
index bc30876c88..f545903567 100644
--- a/scripts/qapi/commands.py
+++ b/scripts/qapi/commands.py
@@ -104,6 +104,7 @@ def gen_marshal(name, arg_type, boxed, ret_type):
%(proto)s
{
Error *err = NULL;
+ Visitor *v;
''',
proto=build_marshal_proto(name))
@@ -117,21 +118,14 @@ def gen_marshal(name, arg_type, boxed, ret_type):
visit_members = ('visit_type_%s_members(v, &arg, &err);'
% arg_type.c_name())
ret += mcgen('''
- Visitor *v;
%(c_name)s arg = {0};
-
''',
c_name=arg_type.c_name())
else:
visit_members = ''
- ret += mcgen('''
- Visitor *v = NULL;
-
- if (args) {
-''')
- push_indent()
ret += mcgen('''
+
v = qobject_input_visitor_new(QOBJECT(args));
visit_start_struct(v, NULL, NULL, 0, &err);
if (err) {
@@ -148,12 +142,6 @@ def gen_marshal(name, arg_type, boxed, ret_type):
''',
visit_members=visit_members)
- if not have_args:
- pop_indent()
- ret += mcgen('''
- }
-''')
-
ret += gen_call(name, arg_type, boxed, ret_type)
ret += mcgen('''
@@ -168,10 +156,6 @@ out:
% arg_type.c_name())
else:
visit_members = ''
- ret += mcgen('''
- if (args) {
-''')
- push_indent()
ret += mcgen('''
v = qapi_dealloc_visitor_new();
@@ -182,12 +166,6 @@ out:
''',
visit_members=visit_members)
- if not have_args:
- pop_indent()
- ret += mcgen('''
- }
-''')
-
ret += mcgen('''
}
''')
--
2.21.1
next prev parent reply other threads:[~2020-04-24 8:46 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-24 8:43 [PATCH v2 00/15] qapi: Spring cleaning Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 01/15] qapi: Belatedly update visitor.h's big comment for QAPI modules Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 02/15] qapi: Fix the virtual walk example in visitor.h's big comment Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 03/15] qapi: Fix typo in visit_start_list()'s contract Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 04/15] qapi: Document @errp usage more thoroughly in visitor.h Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 05/15] qapi: Polish prose " Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 06/15] qapi: Assert incomplete object occurs only in dealloc visitor Markus Armbruster
2020-04-24 13:56 ` Eric Blake
2020-04-27 8:51 ` Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 07/15] qapi: Fix Visitor contract for start_alternate() Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 08/15] qapi: Assert output visitors see only valid enum values Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 09/15] qapi: Assert non-input visitors see only valid narrow integers Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 10/15] qapi: Clean up visitor's recovery from input with invalid type Markus Armbruster
2020-04-24 13:57 ` Eric Blake
2020-04-24 8:43 ` [PATCH v2 11/15] qapi: Assert non-input visitors see only valid alternate tags Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 12/15] qapi: Only input visitors can actually fail Markus Armbruster
2020-04-24 8:43 ` [PATCH v2 13/15] qom: Simplify object_property_get_enum() Markus Armbruster
2020-04-24 8:43 ` Markus Armbruster [this message]
2020-04-24 14:01 ` [PATCH v2 14/15] qapi: Disallow qmp_marshal_FOO(NULL, ...) Eric Blake
2020-04-24 8:43 ` [PATCH v2 15/15] qapi: Generate simpler marshalling code when no arguments Markus Armbruster
2020-04-24 14:02 ` Eric Blake
2020-04-24 10:06 ` [PATCH v2 00/15] qapi: Spring cleaning no-reply
2020-04-24 14:06 ` Eric Blake
2020-04-29 7:46 ` Markus Armbruster
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200424084338.26803-15-armbru@redhat.com \
--to=armbru@redhat.com \
--cc=mdroth@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).