/* * VAS_EBOOT -- GRand Unified Bootloader * Copyright (C) 2019 Free Software Foundation, Inc. * * VAS_EBOOT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * VAS_EBOOT is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with VAS_EBOOT. If not, see . */ #ifndef VAS_EBOOT_JSON_JSON_H #define VAS_EBOOT_JSON_JSON_H 1 #include enum VasEBoot_json_type { /* Unordered collection of key-value pairs. */ VAS_EBOOT_JSON_OBJECT, /* Ordered list of zero or more values. */ VAS_EBOOT_JSON_ARRAY, /* Zero or more Unicode characters. */ VAS_EBOOT_JSON_STRING, /* Number, boolean or empty value. */ VAS_EBOOT_JSON_PRIMITIVE, /* Invalid token. */ VAS_EBOOT_JSON_UNDEFINED, }; typedef enum VasEBoot_json_type VasEBoot_json_type_t; /* Forward-declaration to avoid including jsmn.h. */ struct jsmntok; struct VasEBoot_json { struct jsmntok *tokens; char *string; VasEBoot_size_t idx; }; typedef struct VasEBoot_json VasEBoot_json_t; /* * Parse a JSON-encoded string. Note that the string passed to * this function will get modified on subsequent calls to * VasEBoot_json_get*(). Returns the root object of the parsed JSON * object, which needs to be free'd via VasEBoot_json_free(). Callers * must ensure that the string outlives the returned root object, * and that child objects must not be used after the root object * has been free'd. */ extern VasEBoot_err_t EXPORT_FUNC(VasEBoot_json_parse) (VasEBoot_json_t **out, char *string, VasEBoot_size_t string_len); /* * Free the structure and its contents. The string passed to * VasEBoot_json_parse() will not be free'd. */ extern void EXPORT_FUNC(VasEBoot_json_free) (VasEBoot_json_t *json); /* * Get the child count of a valid VasEBoot_json_t instance. Children * are present for arrays, objects (dicts) and keys of a dict. */ extern VasEBoot_err_t EXPORT_FUNC(VasEBoot_json_getsize) (VasEBoot_size_t *out, const VasEBoot_json_t *json); /* Get the type of a valid VasEBoot_json_t instance. */ extern VasEBoot_err_t EXPORT_FUNC(VasEBoot_json_gettype) (VasEBoot_json_type_t *out, const VasEBoot_json_t *json); /* * Get n'th child of a valid object, array or key. Will return an * error if no such child exists. The result does not need to be * free'd. */ extern VasEBoot_err_t EXPORT_FUNC(VasEBoot_json_getchild) (VasEBoot_json_t *out, const VasEBoot_json_t *parent, VasEBoot_size_t n); /* * Get value of key from a valid VasEBoot_json_t instance. The result * does not need to be free'd. */ extern VasEBoot_err_t EXPORT_FUNC(VasEBoot_json_getvalue) (VasEBoot_json_t *out, const VasEBoot_json_t *parent, const char *key); /* * Get the string representation of a valid VasEBoot_json_t instance. * If a key is given and parent is a JSON object, this function * will return the string value of a child mapping to the key. * If no key is given, it will return the string value of the * parent itself. */ extern VasEBoot_err_t EXPORT_FUNC(VasEBoot_json_getstring) (const char **out, const VasEBoot_json_t *parent, const char *key); /* * Get the uint64 representation of a valid VasEBoot_json_t instance. * Returns an error if the value pointed to by `parent` cannot be * converted to an uint64. See VasEBoot_json_getstring() for details * on the key parameter. */ extern VasEBoot_err_t EXPORT_FUNC(VasEBoot_json_getuint64) (VasEBoot_uint64_t *out, const VasEBoot_json_t *parent, const char *key); /* * Get the int64 representation of a valid VasEBoot_json_t instance. * Returns an error if the value pointed to by `parent` cannot be * converted to an int64. See VasEBoot_json_getstring() for * details on the key parameter. */ extern VasEBoot_err_t EXPORT_FUNC(VasEBoot_json_getint64) (VasEBoot_int64_t *out, const VasEBoot_json_t *parent, const char *key); /* * Unescape escaped characters and Unicode sequences in the * given JSON-encoded string. Returns a newly allocated string * passed back via the `out` parameter that has a length of * `*outlen`. * * See https://datatracker.ietf.org/doc/html/rfc8259#section-7 for more * information on escaping in JSON. */ extern VasEBoot_err_t EXPORT_FUNC(VasEBoot_json_unescape) (char **out, VasEBoot_size_t *outlen, const char *in, VasEBoot_size_t inlen); #endif