[Spice-devel] [PATCH spice-common 2/7] codegen: Add a test for attribute combination
Christophe Fergeau
cfergeau at redhat.com
Thu Feb 21 09:02:27 UTC 2019
On Wed, Feb 20, 2019 at 12:53:12PM -0500, Frediano Ziglio wrote:
> > On Mon, Feb 18, 2019 at 04:01:24PM +0000, Frediano Ziglio wrote:
> > > Does not make sense to specify the same field to have 2
> > > different C implementation at the same time.
> > >
> > > Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
> > > ---
> > > python_modules/ptypes.py | 7 +++++++
> > > 1 file changed, 7 insertions(+)
> > >
> > > diff --git a/python_modules/ptypes.py b/python_modules/ptypes.py
> > > index 3875970..e5fb1e9 100644
> > > --- a/python_modules/ptypes.py
> > > +++ b/python_modules/ptypes.py
> > > @@ -96,6 +96,13 @@ def fix_attributes(attribute_list):
> > > elif len(lst) > 1:
> > > raise Exception("Attribute %s has more than 1 argument" %
> > > name)
> > > attrs[name] = lst
> > > +
> > > + # these attributes specify output format, only one can be set
> > > + output_attrs = set(['end', 'to_ptr', 'as_ptr', 'ptr_array', 'zero'])
> > > + output_attrs = [a for a in attrs.keys() if a in output_attrs]
> >
> >
> > output_attrs = set(['end', 'to_ptr', 'as_ptr', 'ptr_array', 'zero'])
> > if len(output_attrs.intersection(attrs.keys())) > 1:
> >
> > seems to work equally well, and is in my opinion easier to read.
> >
> > Christophe
> >
>
> Yes. Ack with that change?
Sure.
Acked-by: Christophe Fergeau <cfergeau at redhat.com>
Christophe
>
> >
> > > + if len(output_attrs) > 1:
> > > + raise Exception("Multiple output type attributes specified %s" %
> > > output_attrs)
> > > +
> > > return attrs
> > >
> > > class Type:
>
> Frediano
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/spice-devel/attachments/20190221/07f53266/attachment.sig>
More information about the Spice-devel
mailing list