From: Luiz Capitulino <lcapitulino@redhat.com>
To: Anthony Liguori <anthony@codemonkey.ws>
Cc: armbru@redhat.com, aliguori@us.ibm.com, qemu-devel@nongnu.org,
kraxel@redhat.com
Subject: Re: [Qemu-devel] [PATCH 1/9] QJSON: Introduce qobject_from_json_va()
Date: Fri, 13 Nov 2009 10:31:03 -0200 [thread overview]
Message-ID: <20091113103103.0322a9d7@doriath> (raw)
In-Reply-To: <4AFC8082.8060402@codemonkey.ws>
On Thu, 12 Nov 2009 15:39:14 -0600
Anthony Liguori <anthony@codemonkey.ws> wrote:
> Luiz Capitulino wrote:
> > Accepts a va_list, will be used by QError.
> >
> > Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
> > ---
> > qjson.c | 14 ++++++++++++++
> > qjson.h | 2 ++
> > 2 files changed, 16 insertions(+), 0 deletions(-)
> >
> > diff --git a/qjson.c b/qjson.c
> > index 7270909..491b61e 100644
> > --- a/qjson.c
> > +++ b/qjson.c
> > @@ -64,6 +64,20 @@ QObject *qobject_from_jsonf(const char *string, ...)
> > return state.result;
> > }
> >
> > +QObject *qobject_from_json_va(const char *string, va_list *ap)
> > +{
> > + JSONParsingState state = {};
> > +
> > + state.ap = ap;
> > +
> > + json_message_parser_init(&state.parser, parse_json);
> > + json_message_parser_feed(&state.parser, string, strlen(string));
> > + json_message_parser_flush(&state.parser);
> > + json_message_parser_destroy(&state.parser);
> > +
> > + return state.result;
> > +}
> > +
> >
>
> qobject_from_jsonf() should just call qobject_from_json_va().
Right.
> > typedef struct ToJsonIterState
> > {
> > int count;
> > diff --git a/qjson.h b/qjson.h
> > index 7fce742..8b89e41 100644
> > --- a/qjson.h
> > +++ b/qjson.h
> > @@ -14,12 +14,14 @@
> > #ifndef QJSON_H
> > #define QJSON_H
> >
> > +#include <stdarg.h>
> >
>
> qemu-common.h is a better way to get stdarg.h
Why? I usually don't include qemu-common.h when all I need
are one or two headers.
next prev parent reply other threads:[~2009-11-13 12:31 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-12 20:42 [Qemu-devel] [PATCH 0/9]: QError v3 Luiz Capitulino
2009-11-12 20:42 ` [Qemu-devel] [PATCH 1/9] QJSON: Introduce qobject_from_json_va() Luiz Capitulino
2009-11-12 21:39 ` Anthony Liguori
2009-11-13 12:31 ` Luiz Capitulino [this message]
2009-11-12 20:42 ` [Qemu-devel] [PATCH 2/9] QString: Introduce qstring_append_chr() Luiz Capitulino
2009-11-12 20:42 ` [Qemu-devel] [PATCH 3/9] QString: Introduce qstring_append_int() Luiz Capitulino
2009-11-12 20:42 ` [Qemu-devel] [PATCH 4/9] Add qstring_append_chr() unit-test Luiz Capitulino
2009-11-12 20:42 ` [Qemu-devel] [PATCH 5/9] Introduce QError Luiz Capitulino
2009-11-12 20:42 ` [Qemu-devel] [PATCH 6/9] QJSON: Fix compile error Luiz Capitulino
2009-11-12 20:42 ` [Qemu-devel] [PATCH 7/9] monitor: QError support Luiz Capitulino
2009-11-12 20:42 ` [Qemu-devel] [PATCH 8/9] qdev: Use QError for 'device not found' error Luiz Capitulino
2009-11-12 20:42 ` [Qemu-devel] [PATCH 9/9] monitor: do_info_balloon(): use QError Luiz Capitulino
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=20091113103103.0322a9d7@doriath \
--to=lcapitulino@redhat.com \
--cc=aliguori@us.ibm.com \
--cc=anthony@codemonkey.ws \
--cc=armbru@redhat.com \
--cc=kraxel@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.