gnunet

Main GNUnet Logic
Log | Files | Refs | Submodules | README | LICENSE

commit 5f5a1c7b44f659058175da1f69abfa709f688890
parent 30361fe0e89a72e2dd248a93824b06d858e4e81a
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 21 Apr 2020 12:15:16 +0200

add JSON spec'er for booleans

Diffstat:
Msrc/include/gnunet_json_lib.h | 11+++++++++++
Msrc/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 @@ -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 @@ -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