json-c 0.18
|
Methods to parse an input string into a tree of json_object objects. More...
Data Structures | |
struct | json_tokener_srec |
struct | json_tokener |
Macros | |
#define | JSON_TOKENER_DEFAULT_DEPTH 32 |
#define | JSON_TOKENER_STRICT 0x01 |
#define | JSON_TOKENER_ALLOW_TRAILING_CHARS 0x02 |
#define | JSON_TOKENER_VALIDATE_UTF8 0x10 |
Typedefs | |
typedef struct json_tokener | json_tokener |
Functions | |
JSON_EXPORT size_t | json_tokener_get_parse_end (struct json_tokener *tok) |
JSON_EXPORT const char * | json_tokener_error_desc (enum json_tokener_error jerr) |
JSON_EXPORT enum json_tokener_error | json_tokener_get_error (struct json_tokener *tok) |
JSON_EXPORT struct json_tokener * | json_tokener_new (void) |
JSON_EXPORT struct json_tokener * | json_tokener_new_ex (int depth) |
JSON_EXPORT void | json_tokener_free (struct json_tokener *tok) |
JSON_EXPORT void | json_tokener_reset (struct json_tokener *tok) |
JSON_EXPORT struct json_object * | json_tokener_parse (const char *str) |
JSON_EXPORT struct json_object * | json_tokener_parse_verbose (const char *str, enum json_tokener_error *error) |
JSON_EXPORT void | json_tokener_set_flags (struct json_tokener *tok, int flags) |
JSON_EXPORT struct json_object * | json_tokener_parse_ex (struct json_tokener *tok, const char *str, int len) |
Methods to parse an input string into a tree of json_object objects.
#define JSON_TOKENER_ALLOW_TRAILING_CHARS 0x02 |
Use with JSON_TOKENER_STRICT to allow trailing characters after the first parsed object.
#define JSON_TOKENER_DEFAULT_DEPTH 32 |
#define JSON_TOKENER_STRICT 0x01 |
Be strict when parsing JSON input. Use caution with this flag as what is considered valid may become more restrictive from one release to the next, causing your code to fail on previously working input.
Note that setting this will also effectively disable parsing of multiple json objects in a single character stream (e.g. {"foo":123}{"bar":234}); if you want to allow that also set JSON_TOKENER_ALLOW_TRAILING_CHARS
This flag is not set by default.
#define JSON_TOKENER_VALIDATE_UTF8 0x10 |
Cause json_tokener_parse_ex() to validate that input is UTF8. If this flag is specified and validation fails, then json_tokener_get_error(tok) will return json_tokener_error_parse_utf8_string
This flag is not set by default.
typedef struct json_tokener json_tokener |
enum json_tokener_error |
enum json_tokener_state |
JSON_EXPORT const char * json_tokener_error_desc | ( | enum json_tokener_error | jerr | ) |
Given an error previously returned by json_tokener_get_error(), return a human readable description of the error.
JSON_EXPORT void json_tokener_free | ( | struct json_tokener * | tok | ) |
Free a json_tokener previously allocated with json_tokener_new().
JSON_EXPORT enum json_tokener_error json_tokener_get_error | ( | struct json_tokener * | tok | ) |
Retrieve the error caused by the last call to json_tokener_parse_ex(), or json_tokener_success if there is no error.
When parsing a JSON string in pieces, if the tokener is in the middle of parsing this will return json_tokener_continue.
JSON_EXPORT size_t json_tokener_get_parse_end | ( | struct json_tokener * | tok | ) |
Return the offset of the byte after the last byte parsed relative to the start of the most recent string passed in to json_tokener_parse_ex(). i.e. this is where parsing would start again if the input contains another JSON object after the currently parsed one.
Note that when multiple parse calls are issued, this is not the total number of characters parsed.
In the past this would have been accessed as tok->char_offset.
See json_tokener_parse_ex() for an example of how to use this.
JSON_EXPORT struct json_tokener * json_tokener_new | ( | void | ) |
Allocate a new json_tokener. When done using that to parse objects, free it with json_tokener_free(). See json_tokener_parse_ex() for usage details.
JSON_EXPORT struct json_tokener * json_tokener_new_ex | ( | int | depth | ) |
Allocate a new json_tokener with a custom max nesting depth.
JSON_EXPORT struct json_object * json_tokener_parse | ( | const char * | str | ) |
Parse a json_object out of the string str
.
If you need more control over how the parsing occurs, see json_tokener_parse_ex().
JSON_EXPORT struct json_object * json_tokener_parse_ex | ( | struct json_tokener * | tok, |
const char * | str, | ||
int | len | ||
) |
Parse a string and return a non-NULL json_object if a valid JSON value is found. The string does not need to be a JSON object or array; it can also be a string, number or boolean value.
A partial JSON string can be parsed. If the parsing is incomplete, NULL will be returned and json_tokener_get_error() will return json_tokener_continue. json_tokener_parse_ex() can then be called with additional bytes in str to continue the parsing.
If json_tokener_parse_ex() returns NULL and the error is anything other than json_tokener_continue, a fatal error has occurred and parsing must be halted. Then, the tok object must not be reused until json_tokener_reset() is called.
When a valid JSON value is parsed, a non-NULL json_object will be returned, with a reference count of one which belongs to the caller. Also, json_tokener_get_error() will return json_tokener_success. Be sure to check the type with json_object_is_type() or json_object_get_type() before using the object.
Trailing characters after the parsed value do not automatically cause an error. It is up to the caller to decide whether to treat this as an error or to handle the additional characters, perhaps by parsing another json value starting from that point.
If the caller knows that they are at the end of their input, the length passed MUST include the final '\0' character, so values with no inherent end (i.e. numbers) can be properly parsed, rather than just returning json_tokener_continue.
Extra characters can be detected by comparing the value returned by json_tokener_get_parse_end() against the length of the last len parameter passed in.
The tokener does not maintain an internal buffer so the caller is responsible for a subsequent call to json_tokener_parse_ex with an appropriate str parameter starting with the extra characters.
This interface is presently not 64-bit clean due to the int len argument so the function limits the maximum string size to INT32_MAX (2GB). If the function is called with len == -1 then strlen is called to check the string length is less than INT32_MAX (2GB)
Example:
tok | a json_tokener previously allocated with json_tokener_new() |
str | an string with any valid JSON expression, or portion of. This does not need to be null terminated. |
len | the length of str |
JSON_EXPORT struct json_object * json_tokener_parse_verbose | ( | const char * | str, |
enum json_tokener_error * | error | ||
) |
Parse a json_object out of the string str
, but if it fails return the error in *error
.
JSON_EXPORT void json_tokener_reset | ( | struct json_tokener * | tok | ) |
Reset the state of a json_tokener, to prepare to parse a brand new JSON object.
JSON_EXPORT void json_tokener_set_flags | ( | struct json_tokener * | tok, |
int | flags | ||
) |
Set flags that control how parsing will be done.