From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51541) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB3xG-0007BY-Ps for qemu-devel@nongnu.org; Mon, 21 Dec 2015 12:09:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aB3xF-0006e2-Id for qemu-devel@nongnu.org; Mon, 21 Dec 2015 12:09:02 -0500 Received: from mx1.redhat.com ([209.132.183.28]:42355) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB3xF-0006dq-27 for qemu-devel@nongnu.org; Mon, 21 Dec 2015 12:09:01 -0500 From: Eric Blake Date: Mon, 21 Dec 2015 10:08:32 -0700 Message-Id: <1450717720-9627-28-git-send-email-eblake@redhat.com> In-Reply-To: <1450717720-9627-1-git-send-email-eblake@redhat.com> References: <1450717720-9627-1-git-send-email-eblake@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v8 27/35] qapi: Fix command with named empty argument type List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: armbru@redhat.com, Michael Roth The generator special-cased { 'command':'foo', 'data': {} } to avoid emitting a visitor variable, but failed to see that { 'struct':'NamedEmptyType, 'data': {} } { 'command':'foo', 'data':'NamedEmptyType' } needs the same treatment. Without a fix to the generator, the change to qapi-schema-test.json fails to compile with: tests/test-qmp-marshal.c: In function =E2=80=98qmp_marshal_user_def_cmd0=E2= =80=99: tests/test-qmp-marshal.c:264:14: error: variable =E2=80=98v=E2=80=99 set = but not used [-Werror=3Dunused-but-set-variable] Visitor *v; ^ Signed-off-by: Eric Blake --- v8: no change v7: no change v6: new patch --- scripts/qapi-commands.py | 6 +++--- tests/qapi-schema/qapi-schema-test.json | 2 ++ tests/qapi-schema/qapi-schema-test.out | 2 ++ tests/test-qmp-commands.c | 5 +++++ 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/scripts/qapi-commands.py b/scripts/qapi-commands.py index 91c5a4e..00ee565 100644 --- a/scripts/qapi-commands.py +++ b/scripts/qapi-commands.py @@ -65,7 +65,7 @@ def gen_marshal_vars(arg_type, ret_type): ''', c_type=3Dret_type.c_type()) - if arg_type: + if arg_type and not arg_type.is_empty(): ret +=3D mcgen(''' QmpInputVisitor *qiv =3D qmp_input_visitor_new_strict(QOBJECT(args))= ; QapiDeallocVisitor *qdv; @@ -97,7 +97,7 @@ def gen_marshal_vars(arg_type, ret_type): def gen_marshal_input_visit(arg_type, dealloc=3DFalse): ret =3D '' - if not arg_type: + if not arg_type or arg_type.is_empty(): return ret if dealloc: @@ -177,7 +177,7 @@ def gen_marshal(name, arg_type, ret_type): # 'goto out' produced by gen_marshal_input_visit->gen_visit_fields() # for each arg_type member, and by gen_call() for ret_type - if (arg_type and arg_type.members) or ret_type: + if (arg_type and not arg_type.is_empty()) or ret_type: ret +=3D mcgen(''' out: diff --git a/tests/qapi-schema/qapi-schema-test.json b/tests/qapi-schema/= qapi-schema-test.json index 4b89527..a0fdb88 100644 --- a/tests/qapi-schema/qapi-schema-test.json +++ b/tests/qapi-schema/qapi-schema-test.json @@ -18,6 +18,8 @@ { 'struct': 'Empty1', 'data': { } } { 'struct': 'Empty2', 'base': 'Empty1', 'data': { } } +{ 'command': 'user_def_cmd0', 'data': 'Empty2', 'returns': 'Empty2' } + # for testing override of default naming heuristic { 'enum': 'QEnumTwo', 'prefix': 'QENUM_TWO', diff --git a/tests/qapi-schema/qapi-schema-test.out b/tests/qapi-schema/q= api-schema-test.out index 2c546b7..d8f9108 100644 --- a/tests/qapi-schema/qapi-schema-test.out +++ b/tests/qapi-schema/qapi-schema-test.out @@ -198,6 +198,8 @@ command guest-sync :obj-guest-sync-arg -> any gen=3DTrue success_response=3DTrue command user_def_cmd None -> None gen=3DTrue success_response=3DTrue +command user_def_cmd0 Empty2 -> Empty2 + gen=3DTrue success_response=3DTrue command user_def_cmd1 :obj-user_def_cmd1-arg -> None gen=3DTrue success_response=3DTrue command user_def_cmd2 :obj-user_def_cmd2-arg -> UserDefTwo diff --git a/tests/test-qmp-commands.c b/tests/test-qmp-commands.c index 4d267b6..bc8085d 100644 --- a/tests/test-qmp-commands.c +++ b/tests/test-qmp-commands.c @@ -12,6 +12,11 @@ void qmp_user_def_cmd(Error **errp) { } +Empty2 *qmp_user_def_cmd0(Error **errp) +{ + return g_new0(Empty2, 1); +} + void qmp_user_def_cmd1(UserDefOne * ud1, Error **errp) { } --=20 2.4.3