blob: 08e5ff7fce7960628ff363fb2b3cac949c694b73 [file] [log] [blame]
Michael Clarkf0d08882007-03-13 08:26:18 +00001/*
Michael Clarka850f8e2007-03-13 08:26:26 +00002 * $Id: json_tokener.h,v 1.10 2006/07/25 03:24:50 mclark Exp $
Michael Clarkf0d08882007-03-13 08:26:18 +00003 *
Michael Clarkf6a6e482007-03-13 08:26:23 +00004 * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
Michael Clarkf0d08882007-03-13 08:26:18 +00005 * Michael Clark <michael@metaparadigm.com>
6 *
Michael Clarkf6a6e482007-03-13 08:26:23 +00007 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the MIT license. See COPYING for details.
Michael Clarkf0d08882007-03-13 08:26:18 +00009 *
10 */
11
12#ifndef _json_tokener_h_
13#define _json_tokener_h_
14
Michael Clarka3272542008-01-26 01:10:47 +000015#include <stddef.h>
Michael Clarkf0d08882007-03-13 08:26:18 +000016#include "json_object.h"
17
Michael Clarkaaec1ef2009-02-25 02:31:32 +000018#ifdef __cplusplus
19extern "C" {
20#endif
21
Michael Clarkf0d08882007-03-13 08:26:18 +000022enum json_tokener_error {
23 json_tokener_success,
Michael Clarka850f8e2007-03-13 08:26:26 +000024 json_tokener_continue,
25 json_tokener_error_depth,
26 json_tokener_error_parse_eof,
Michael Clarkf0d08882007-03-13 08:26:18 +000027 json_tokener_error_parse_unexpected,
28 json_tokener_error_parse_null,
29 json_tokener_error_parse_boolean,
30 json_tokener_error_parse_number,
31 json_tokener_error_parse_array,
Michael Clarka850f8e2007-03-13 08:26:26 +000032 json_tokener_error_parse_object_key_name,
33 json_tokener_error_parse_object_key_sep,
34 json_tokener_error_parse_object_value_sep,
Michael Clarkf0d08882007-03-13 08:26:18 +000035 json_tokener_error_parse_string,
Michael Clarka850f8e2007-03-13 08:26:26 +000036 json_tokener_error_parse_comment
Michael Clarkf0d08882007-03-13 08:26:18 +000037};
38
39enum json_tokener_state {
40 json_tokener_state_eatws,
41 json_tokener_state_start,
42 json_tokener_state_finish,
43 json_tokener_state_null,
44 json_tokener_state_comment_start,
45 json_tokener_state_comment,
46 json_tokener_state_comment_eol,
47 json_tokener_state_comment_end,
48 json_tokener_state_string,
49 json_tokener_state_string_escape,
50 json_tokener_state_escape_unicode,
51 json_tokener_state_boolean,
52 json_tokener_state_number,
53 json_tokener_state_array,
Michael Clarka850f8e2007-03-13 08:26:26 +000054 json_tokener_state_array_add,
Michael Clarkf0d08882007-03-13 08:26:18 +000055 json_tokener_state_array_sep,
Michael Clarkf0d08882007-03-13 08:26:18 +000056 json_tokener_state_object_field_start,
57 json_tokener_state_object_field,
58 json_tokener_state_object_field_end,
59 json_tokener_state_object_value,
Michael Clarka850f8e2007-03-13 08:26:26 +000060 json_tokener_state_object_value_add,
Eric Haszlakiewicze8161a12013-03-31 20:05:36 -050061 json_tokener_state_object_sep,
62 json_tokener_state_array_after_sep,
63 json_tokener_state_object_field_start_after_sep
Michael Clarkf0d08882007-03-13 08:26:18 +000064};
65
Michael Clarka850f8e2007-03-13 08:26:26 +000066struct json_tokener_srec
Michael Clarkf0d08882007-03-13 08:26:18 +000067{
Michael Clarka850f8e2007-03-13 08:26:26 +000068 enum json_tokener_state state, saved_state;
69 struct json_object *obj;
70 struct json_object *current;
71 char *obj_field_name;
Michael Clarkf0d08882007-03-13 08:26:18 +000072};
73
Remi Collet197cb1d2012-11-27 09:01:45 +010074#define JSON_TOKENER_DEFAULT_DEPTH 32
Michael Clarka850f8e2007-03-13 08:26:26 +000075
76struct json_tokener
77{
78 char *str;
79 struct printbuf *pb;
Remi Collet197cb1d2012-11-27 09:01:45 +010080 int max_depth, depth, is_double, st_pos, char_offset;
Jehiah Czebotara503ee82010-12-08 03:52:07 +000081 enum json_tokener_error err;
Michael Clarka850f8e2007-03-13 08:26:26 +000082 unsigned int ucs_char;
83 char quote_char;
Remi Collet197cb1d2012-11-27 09:01:45 +010084 struct json_tokener_srec *stack;
Eric Haszlakiewicze8161a12013-03-31 20:05:36 -050085 int flags;
Michael Clarka850f8e2007-03-13 08:26:26 +000086};
87
Eric Haszlakiewicz2f9091f2012-02-22 08:24:40 -060088/**
Eric Haszlakiewicze8161a12013-03-31 20:05:36 -050089 * Be strict when parsing JSON input. Use caution with
90 * this flag as what is considered valid may become more
91 * restrictive from one release to the next, causing your
92 * code to fail on previously working input.
93 *
94 * This flag is not set by default.
95 *
96 * @see json_tokener_set_flags()
97 */
98#define JSON_TOKENER_STRICT 0x01
99
100/**
Eric Haszlakiewicz2f9091f2012-02-22 08:24:40 -0600101 * Given an error previously returned by json_tokener_get_error(),
102 * return a human readable description of the error.
103 *
104 * @return a generic error message is returned if an invalid error value is provided.
105 */
Eric Haszlakiewicz1489b082012-03-31 22:49:58 -0500106const char *json_tokener_error_desc(enum json_tokener_error jerr);
Eric Haszlakiewicz2f9091f2012-02-22 08:24:40 -0600107
108/**
109 * @b XXX do not use json_tokener_errors directly.
110 * After v0.10 this will be removed.
111 *
Eric Haszlakiewicz1489b082012-03-31 22:49:58 -0500112 * See json_tokener_error_desc() instead.
Eric Haszlakiewicz2f9091f2012-02-22 08:24:40 -0600113 */
Michael Clarka850f8e2007-03-13 08:26:26 +0000114extern const char* json_tokener_errors[];
115
Eric Haszlakiewicz2f9091f2012-02-22 08:24:40 -0600116/**
117 * Retrieve the error caused by the last call to json_tokener_parse_ex(),
118 * or json_tokener_success if there is no error.
119 *
120 * When parsing a JSON string in pieces, if the tokener is in the middle
121 * of parsing this will return json_tokener_continue.
122 *
123 * See also json_tokener_error_desc().
124 */
125enum json_tokener_error json_tokener_get_error(struct json_tokener *tok);
126
Michael Clark14862b12007-12-07 02:50:42 +0000127extern struct json_tokener* json_tokener_new(void);
Remi Collet197cb1d2012-11-27 09:01:45 +0100128extern struct json_tokener* json_tokener_new_ex(int depth);
Michael Clarka850f8e2007-03-13 08:26:26 +0000129extern void json_tokener_free(struct json_tokener *tok);
130extern void json_tokener_reset(struct json_tokener *tok);
Christopher Watfordb1a22ac2009-07-08 04:02:05 +0000131extern struct json_object* json_tokener_parse(const char *str);
Jehiah Czebotara503ee82010-12-08 03:52:07 +0000132extern struct json_object* json_tokener_parse_verbose(const char *str, enum json_tokener_error *error);
Eric Haszlakiewicz2f9091f2012-02-22 08:24:40 -0600133
Eric Haszlakiewicze8161a12013-03-31 20:05:36 -0500134/**
135 * Set flags that control how parsing will be done.
136 */
137extern void json_tokener_set_flags(struct json_tokener *tok, int flags);
138
Eric Haszlakiewicz2f9091f2012-02-22 08:24:40 -0600139/**
140 * Parse a string and return a non-NULL json_object if a valid JSON value
141 * is found. The string does not need to be a JSON object or array;
142 * it can also be a string, number or boolean value.
143 *
144 * A partial JSON string can be parsed. If the parsing is incomplete,
145 * NULL will be returned and json_tokener_get_error() will be return
146 * json_tokener_continue.
147 * json_tokener_parse_ex() can then be called with additional bytes in str
148 * to continue the parsing.
149 *
150 * If json_tokener_parse_ex() returns NULL and the error anything other than
151 * json_tokener_continue, a fatal error has occurred and parsing must be
152 * halted. Then tok object must not be re-used until json_tokener_reset() is
153 * called.
154 *
155 * When a valid JSON value is parsed, a non-NULL json_object will be
156 * returned. Also, json_tokener_get_error() will return json_tokener_success.
157 * Be sure to check the type with json_object_is_type() or
158 * json_object_get_type() before using the object.
159 *
160 * @b XXX this shouldn't use internal fields:
161 * Trailing characters after the parsed value do not automatically cause an
162 * error. It is up to the caller to decide whether to treat this as an
163 * error or to handle the additional characters, perhaps by parsing another
164 * json value starting from that point.
165 *
166 * Extra characters can be detected by comparing the tok->char_offset against
167 * the length of the last len parameter passed in.
168 *
169 * The tokener does \b not maintain an internal buffer so the caller is
170 * responsible for calling json_tokener_parse_ex with an appropriate str
171 * parameter starting with the extra characters.
172 *
173 * Example:
174 * @code
175json_object *jobj = NULL;
176const char *mystring = NULL;
177int stringlen = 0;
178enum json_tokener_error jerr;
179do {
180 mystring = ... // get JSON string, e.g. read from file, etc...
181 stringlen = strlen(mystring);
182 jobj = json_tokener_parse_ex(tok, mystring, stringlen);
183} while ((jerr = json_tokener_get_error(tok)) == json_tokener_continue);
184if (jerr != json_tokener_success)
185{
Eric Haszlakiewicz1489b082012-03-31 22:49:58 -0500186 fprintf(stderr, "Error: %s\n", json_tokener_error_desc(jerr));
Eric Haszlakiewicz2f9091f2012-02-22 08:24:40 -0600187 // Handle errors, as appropriate for your application.
188}
189if (tok->char_offset < stringlen) // XXX shouldn't access internal fields
190{
191 // Handle extra characters after parsed object as desired.
192 // e.g. issue an error, parse another object from that point, etc...
193}
194// Success, use jobj here.
195
196@endcode
197 *
198 * @param tok a json_tokener previously allocated with json_tokener_new()
199 * @param str an string with any valid JSON expression, or portion of. This does not need to be null terminated.
200 * @param len the length of str
201 */
Michael Clarka850f8e2007-03-13 08:26:26 +0000202extern struct json_object* json_tokener_parse_ex(struct json_tokener *tok,
Christopher Watfordb1a22ac2009-07-08 04:02:05 +0000203 const char *str, int len);
Michael Clarkf0d08882007-03-13 08:26:18 +0000204
Michael Clarkaaec1ef2009-02-25 02:31:32 +0000205#ifdef __cplusplus
206}
207#endif
208
Michael Clarkf0d08882007-03-13 08:26:18 +0000209#endif