[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Xen-devel] [PATCH RFC V2 06/10] libxl_json: allow basic JSON type objects generation



On Thu, 2014-04-17 at 12:13 +0100, Wei Liu wrote:
> The original logic is that basic JSON types (number, string and null)
> must be an element of JSON map or array. This assumption doesn't hold
> true anymore when we need to return basic JSON types.
> 
> Returning basic JSON types is required for parsing number, string and
> null objects back into libxl__json_object.
> 
> Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx>
> ---
>  tools/libxl/libxl_json.c |   40 ++++++++++++++++++++++++++++++++--------
>  1 file changed, 32 insertions(+), 8 deletions(-)
> 
> diff --git a/tools/libxl/libxl_json.c b/tools/libxl/libxl_json.c
> index e2d5dbe..6b2946d 100644
> --- a/tools/libxl/libxl_json.c
> +++ b/tools/libxl/libxl_json.c
> @@ -629,8 +629,14 @@ static int json_callback_null(void *opaque)
>  
>      obj = libxl__json_object_alloc(ctx->gc, JSON_NULL);
>  
> -    if (libxl__json_object_append_to(ctx->gc, obj, ctx->current) == -1) {
> -        return 0;
> +    if (ctx->current) {
> +        if (libxl__json_object_append_to(ctx->gc, obj, ctx->current) == -1) {
> +            return 0;
> +        }
> +    }
> +
> +    if (ctx->head == NULL) {
> +        ctx->head = obj;

It seems that this pattern is now pretty much universal on all callers
of libxl__json_object_append_to. Perhaps much of this functionality
should be pushed down into the helper (which might now need to take ctx
and not ctx->current).


The existing callers seem to all set ctx->current too, just before the
ctx->head == NULL check. Why don't these versions need that too?

Ian


_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.