From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52916) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlyRV-000406-FF for qemu-devel@nongnu.org; Tue, 13 Oct 2015 08:12:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZlyRS-0003qi-5X for qemu-devel@nongnu.org; Tue, 13 Oct 2015 08:12:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60247) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZlyRR-0003qT-WA for qemu-devel@nongnu.org; Tue, 13 Oct 2015 08:12:30 -0400 From: Markus Armbruster References: <1444710158-8723-1-git-send-email-eblake@redhat.com> <1444710158-8723-12-git-send-email-eblake@redhat.com> Date: Tue, 13 Oct 2015 14:12:27 +0200 In-Reply-To: <1444710158-8723-12-git-send-email-eblake@redhat.com> (Eric Blake's message of "Mon, 12 Oct 2015 22:22:31 -0600") Message-ID: <87bnc37ys4.fsf@blackfin.pond.sub.org> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH v8 11/18] qapi: Simplify gen_struct_field() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Blake Cc: qemu-devel@nongnu.org, Michael Roth Eric Blake writes: > Rather than having all callers pass a name, type, and optional > flag, have them instead pass a QAPISchemaObjectTypeMember which > already has all that information. > > This will allow a future patch to simplify alternates to use > a special tag 'qtype_code type'. In the meantime, it requires > a hack to create a temporary member 'base' for struct base > classes; this temporary member will go away in a later patch > that flattens structs in the same way that flat union base > classes were flattened in commit 1e6c1616. > > No change to generated code. > > Signed-off-by: Eric Blake > > --- > v8: new patch > --- > scripts/qapi-types.py | 16 ++++++++++------ > 1 file changed, 10 insertions(+), 6 deletions(-) > > diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py > index e37d529..5ffabf5 100644 > --- a/scripts/qapi-types.py > +++ b/scripts/qapi-types.py > @@ -36,18 +36,18 @@ struct %(c_name)s { > c_name=c_name(name), c_type=element_type.c_type()) > > > -def gen_struct_field(name, typ, optional): > +def gen_struct_field(member): > ret = '' > > - if optional: > + if member.optional: > ret += mcgen(''' > bool has_%(c_name)s; > ''', > - c_name=c_name(name)) > + c_name=member.c_name()) > ret += mcgen(''' > %(c_type)s %(c_name)s; > ''', > - c_type=typ.c_type(), c_name=c_name(name)) > + c_type=member.type.c_type(), c_name=member.c_name()) > return ret > > > @@ -55,7 +55,7 @@ def gen_struct_fields(members): > ret = '' > > for memb in members: > - ret += gen_struct_field(memb.name, memb.type, memb.optional) > + ret += gen_struct_field(memb) > return ret > > > @@ -67,7 +67,11 @@ struct %(c_name)s { > c_name=c_name(name)) > > if base: > - ret += gen_struct_field('base', base, False) > + # TODO Flatten this struct, similar to flat union bases. Until > + # then, hack around it with a temporary member. > + member = QAPISchemaObjectTypeMember('base', base.name, False) > + member.type = base > + ret += gen_struct_field(member) > > ret += gen_struct_fields(members) Uff! Are you really, really sure this is the right spot in the series for this transformation?