From: Wei Liu Date: Tue, 13 May 2014 21:53:55 +0000 (+0100) Subject: libxl_internal: make JSON_* types a bit-field X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4973 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f68570ac7715ee2b338dfd8edc18b99901aebb9a;p=xen.git libxl_internal: make JSON_* types a bit-field Libxl can generate number as type JSON_INTEGER, JSON_DOUBLE or JSON_NUMBER, string as type JSON_STRING or JSON_NULL (if string is null). So make JSON_* type a bit-field and use it in libxl__json_map_get. This is useful when parsing a libxl__json_object to libxl_FOO struct. We can enforce type checking on libxl__json_object in an easy way. Signed-off-by: Wei Liu Acked-by: Ian Campbell --- diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index 294c595795..890678743d 100644 --- a/tools/libxl/libxl_internal.h +++ b/tools/libxl/libxl_internal.h @@ -1613,16 +1613,16 @@ _hidden yajl_gen_status libxl__yajl_gen_asciiz(yajl_gen hand, const char *str); _hidden yajl_gen_status libxl__yajl_gen_enum(yajl_gen hand, const char *str); typedef enum { - JSON_NULL, - JSON_BOOL, - JSON_INTEGER, - JSON_DOUBLE, + JSON_NULL = (1 << 0), + JSON_BOOL = (1 << 1), + JSON_INTEGER = (1 << 2), + JSON_DOUBLE = (1 << 3), /* number is store in string, it's too big to be a long long or a double */ - JSON_NUMBER, - JSON_STRING, - JSON_MAP, - JSON_ARRAY, - JSON_ANY + JSON_NUMBER = (1 << 4), + JSON_STRING = (1 << 5), + JSON_MAP = (1 << 6), + JSON_ARRAY = (1 << 7), + JSON_ANY = 255 /* this is a mask of all values above, adjust as needed */ } libxl__json_node_type; typedef struct libxl__json_object { diff --git a/tools/libxl/libxl_json.c b/tools/libxl/libxl_json.c index 3ea56a420d..65d4966d5b 100644 --- a/tools/libxl/libxl_json.c +++ b/tools/libxl/libxl_json.c @@ -363,7 +363,7 @@ const libxl__json_object *libxl__json_map_get(const char *key, return NULL; if (strcmp(key, node->map_key) == 0) { if (expected_type == JSON_ANY - || (node->obj && node->obj->type == expected_type)) { + || (node->obj && (node->obj->type & expected_type))) { return node->obj; } else { return NULL;