[libvirt] [PATCH 08/21] qemu: qapi: Separate virQEMUQAPISchemaTraverse into functions by object type

Peter Krempa pkrempa at redhat.com
Tue Apr 30 07:08:30 UTC 2019


On Thu, Apr 25, 2019 at 15:28:31 +0200, Ján Tomko wrote:
> On Mon, Apr 15, 2019 at 06:02:01PM +0200, Peter Krempa wrote:
> > Simplify virQEMUQAPISchemaTraverse by separating out the necessary
> > operations for given 'meta-type' into separate functions.
> > 
> > Signed-off-by: Peter Krempa <pkrempa at redhat.com>
> > ---
> > src/qemu/qemu_qapi.c | 117 ++++++++++++++++++++++++++++---------------
> > 1 file changed, 78 insertions(+), 39 deletions(-)
> > 
> > diff --git a/src/qemu/qemu_qapi.c b/src/qemu/qemu_qapi.c
> > index 2652061f4e..5995e5006e 100644
> > --- a/src/qemu/qemu_qapi.c
> > +++ b/src/qemu/qemu_qapi.c
> > @@ -105,68 +105,107 @@ static int
> > virQEMUQAPISchemaTraverse(const char *baseName,
> >                           char **query,
> >                           virHashTablePtr schema,
> > -                          virJSONValuePtr *type)
> > +                          virJSONValuePtr *type);
> > +
> > +
> > +static int
> > +virQEMUQAPISchemaTraverseObject(virJSONValuePtr cur,
> > +                                char **query,
> > +                                virHashTablePtr schema,
> > +                                virJSONValuePtr *type)
> > {
> > -    virJSONValuePtr curtype;
> >     virJSONValuePtr obj;
> > -    const char *metatype;
> >     const char *querytype = NULL;
> > -    const char *querystr;
> > -    char modifier;
> > +    const char *querystr = *query;
> > +    char modifier = *querystr;
> > +
> > +    if (!c_isalpha(modifier))
> > +        querystr++;
> > +
> > +    if (modifier == '+') {
> > +        querytype = virQEMUQAPISchemaObjectGetType("variants",
> > +                                                   querystr,
> > +                                                   "case", cur);
> > +    } else {
> > +        obj = virQEMUQAPISchemaObjectGet("members", querystr, "name", cur);
> > +
> > +        if (modifier == '*' &&
> > +            !virJSONValueObjectHasKey(obj, "default"))
> > +            return 0;
> > +
> > +        querytype = virQEMUQAPISchemaTypeFromObject(obj);
> > +    }
> > 
> > -    if (!(curtype = virHashLookup(schema, baseName)))
> 
> The object-specific code lost the
>    if (!querytype)
>        return 0;
> condition

It is not necessary as virHashLookup returns NULL if @name is NULL and
it's called right as the first thing in virQEMUQAPISchemaTraverse which
is called from virQEMUQAPISchemaTraverseObject.

Dropping that part makes it work the same in all of the individual
workers.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20190430/4a49b6cd/attachment-0001.sig>


More information about the libvir-list mailing list