diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/include/gnunet_json_lib.h | 11 | ||||
-rw-r--r-- | src/json/json_helper.c | 54 |
2 files changed, 65 insertions, 0 deletions
diff --git a/src/include/gnunet_json_lib.h b/src/include/gnunet_json_lib.h index f6cabd589..27996f18d 100644 --- a/src/include/gnunet_json_lib.h +++ b/src/include/gnunet_json_lib.h @@ -219,6 +219,17 @@ GNUNET_JSON_spec_json (const char *name, json_t **jsonp); /** + * boolean. + * + * @param name name of the JSON field + * @param[out] b where to store the boolean found under @a name + */ +struct GNUNET_JSON_Specification +GNUNET_JSON_spec_bool (const char *name, + bool *b); + + +/** * 8-bit integer. * * @param name name of the JSON field diff --git a/src/json/json_helper.c b/src/json/json_helper.c index 74a92ce9f..02bd6bfab 100644 --- a/src/json/json_helper.c +++ b/src/json/json_helper.c @@ -327,6 +327,60 @@ GNUNET_JSON_spec_json (const char *name, /** + * Parse given JSON object to a bool. + * + * @param cls closure, NULL + * @param root the json object representing data + * @param[out] spec where to write the data + * @return #GNUNET_OK upon successful parsing; #GNUNET_SYSERR upon error + */ +static int +parse_bool (void *cls, + json_t *root, + struct GNUNET_JSON_Specification *spec) +{ + bool *b = spec->ptr; + + if (json_true () == root) + { + *b = true; + return GNUNET_OK; + } + if (json_false () == root) + { + *b = false; + return GNUNET_OK; + } + GNUNET_break_op (0); + return GNUNET_SYSERR; +} + + +/** + * boolean. + * + * @param name name of the JSON field + * @param[out] b where to store the boolean found under @a name + */ +struct GNUNET_JSON_Specification +GNUNET_JSON_spec_bool (const char *name, + bool *b) +{ + struct GNUNET_JSON_Specification ret = { + .parser = &parse_bool, + .cleaner = NULL, + .cls = NULL, + .field = name, + .ptr = b, + .ptr_size = sizeof(bool), + .size_ptr = NULL + }; + + return ret; +} + + +/** * Parse given JSON object to a uint8_t. * * @param cls closure, NULL |