2 * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
27 #include "dynamic-string.h"
33 /* The type of a JSON token. */
34 enum json_token_type {
40 T_NAME_SEPARATOR = ':',
41 T_VALUE_SEPARATOR = ',',
42 T_FALSE = UCHAR_MAX + 1,
52 * RFC 4627 doesn't define a lexical structure for JSON but I believe this to
53 * be compliant with the standard.
56 enum json_token_type type;
59 long long int integer;
65 JSON_LEX_START, /* Not inside a token. */
66 JSON_LEX_NUMBER, /* Reading a number. */
67 JSON_LEX_KEYWORD, /* Reading a keyword. */
68 JSON_LEX_STRING, /* Reading a quoted string. */
69 JSON_LEX_ESCAPE /* In a quoted string just after a "\". */
72 enum json_parse_state {
73 JSON_PARSE_START, /* Beginning of input. */
74 JSON_PARSE_END, /* End of input. */
77 JSON_PARSE_OBJECT_INIT, /* Expecting '}' or an object name. */
78 JSON_PARSE_OBJECT_NAME, /* Expecting an object name. */
79 JSON_PARSE_OBJECT_COLON, /* Expecting ':'. */
80 JSON_PARSE_OBJECT_VALUE, /* Expecting an object value. */
81 JSON_PARSE_OBJECT_NEXT, /* Expecting ',' or '}'. */
84 JSON_PARSE_ARRAY_INIT, /* Expecting ']' or a value. */
85 JSON_PARSE_ARRAY_VALUE, /* Expecting a value. */
86 JSON_PARSE_ARRAY_NEXT /* Expecting ',' or ']'. */
89 struct json_parser_node {
97 /* Lexical analysis. */
98 enum json_lex_state lex_state;
99 struct ds buffer; /* Buffer for accumulating token text. */
105 enum json_parse_state parse_state;
106 #define JSON_MAX_HEIGHT 1000
107 struct json_parser_node *stack;
108 size_t height, allocated_height;
113 char *error; /* Error message, if any, null if none yet. */
116 static struct json *json_create(enum json_type type);
117 static void json_parser_input(struct json_parser *, struct json_token *);
119 static void json_error(struct json_parser *p, const char *format, ...)
123 json_type_to_string(enum json_type type)
154 /* Functions for manipulating struct json. */
157 json_null_create(void)
159 return json_create(JSON_NULL);
163 json_boolean_create(bool b)
165 return json_create(b ? JSON_TRUE : JSON_FALSE);
169 json_string_create_nocopy(char *s)
171 struct json *json = json_create(JSON_STRING);
177 json_string_create(const char *s)
179 return json_string_create_nocopy(xstrdup(s));
183 json_array_create_empty(void)
185 struct json *json = json_create(JSON_ARRAY);
186 json->u.array.elems = NULL;
188 json->u.array.n_allocated = 0;
193 json_array_add(struct json *array_, struct json *element)
195 struct json_array *array = json_array(array_);
196 if (array->n >= array->n_allocated) {
197 array->elems = x2nrealloc(array->elems, &array->n_allocated,
198 sizeof *array->elems);
200 array->elems[array->n++] = element;
204 json_array_trim(struct json *array_)
206 struct json_array *array = json_array(array_);
207 if (array->n < array->n_allocated){
208 array->n_allocated = array->n;
209 array->elems = xrealloc(array->elems, array->n * sizeof *array->elems);
214 json_array_create(struct json **elements, size_t n)
216 struct json *json = json_create(JSON_ARRAY);
217 json->u.array.elems = elements;
219 json->u.array.n_allocated = n;
224 json_array_create_1(struct json *elem0)
226 struct json **elems = xmalloc(sizeof *elems);
228 return json_array_create(elems, 1);
232 json_array_create_2(struct json *elem0, struct json *elem1)
234 struct json **elems = xmalloc(2 * sizeof *elems);
237 return json_array_create(elems, 2);
241 json_array_create_3(struct json *elem0, struct json *elem1, struct json *elem2)
243 struct json **elems = xmalloc(3 * sizeof *elems);
247 return json_array_create(elems, 3);
251 json_object_create(void)
253 struct json *json = json_create(JSON_OBJECT);
254 json->u.object = xmalloc(sizeof *json->u.object);
255 shash_init(json->u.object);
260 json_integer_create(long long int integer)
262 struct json *json = json_create(JSON_INTEGER);
263 json->u.integer = integer;
268 json_real_create(double real)
270 struct json *json = json_create(JSON_REAL);
276 json_object_put(struct json *json, const char *name, struct json *value)
278 json_destroy(shash_replace(json->u.object, name, value));
282 json_object_put_string(struct json *json, const char *name, const char *value)
284 json_object_put(json, name, json_string_create(value));
288 json_string(const struct json *json)
290 ovs_assert(json->type == JSON_STRING);
291 return json->u.string;
295 json_array(const struct json *json)
297 ovs_assert(json->type == JSON_ARRAY);
298 return CONST_CAST(struct json_array *, &json->u.array);
302 json_object(const struct json *json)
304 ovs_assert(json->type == JSON_OBJECT);
305 return CONST_CAST(struct shash *, json->u.object);
309 json_boolean(const struct json *json)
311 ovs_assert(json->type == JSON_TRUE || json->type == JSON_FALSE);
312 return json->type == JSON_TRUE;
316 json_real(const struct json *json)
318 ovs_assert(json->type == JSON_REAL || json->type == JSON_INTEGER);
319 return json->type == JSON_REAL ? json->u.real : json->u.integer;
323 json_integer(const struct json *json)
325 ovs_assert(json->type == JSON_INTEGER);
326 return json->u.integer;
329 static void json_destroy_object(struct shash *object);
330 static void json_destroy_array(struct json_array *array);
332 /* Frees 'json' and everything it points to, recursively. */
334 json_destroy(struct json *json)
337 switch (json->type) {
339 json_destroy_object(json->u.object);
343 json_destroy_array(&json->u.array);
347 free(json->u.string);
365 json_destroy_object(struct shash *object)
367 struct shash_node *node, *next;
369 SHASH_FOR_EACH_SAFE (node, next, object) {
370 struct json *value = node->data;
373 shash_delete(object, node);
375 shash_destroy(object);
380 json_destroy_array(struct json_array *array)
384 for (i = 0; i < array->n; i++) {
385 json_destroy(array->elems[i]);
390 static struct json *json_clone_object(const struct shash *object);
391 static struct json *json_clone_array(const struct json_array *array);
393 /* Returns a deep copy of 'json'. */
395 json_clone(const struct json *json)
397 switch (json->type) {
399 return json_clone_object(json->u.object);
402 return json_clone_array(&json->u.array);
405 return json_string_create(json->u.string);
410 return json_create(json->type);
413 return json_integer_create(json->u.integer);
416 return json_real_create(json->u.real);
425 json_clone_object(const struct shash *object)
427 struct shash_node *node;
430 json = json_object_create();
431 SHASH_FOR_EACH (node, object) {
432 struct json *value = node->data;
433 json_object_put(json, node->name, json_clone(value));
439 json_clone_array(const struct json_array *array)
444 elems = xmalloc(array->n * sizeof *elems);
445 for (i = 0; i < array->n; i++) {
446 elems[i] = json_clone(array->elems[i]);
448 return json_array_create(elems, array->n);
452 json_hash_object(const struct shash *object, size_t basis)
454 const struct shash_node **nodes;
457 nodes = shash_sort(object);
458 n = shash_count(object);
459 for (i = 0; i < n; i++) {
460 const struct shash_node *node = nodes[i];
461 basis = hash_string(node->name, basis);
462 basis = json_hash(node->data, basis);
468 json_hash_array(const struct json_array *array, size_t basis)
472 basis = hash_int(array->n, basis);
473 for (i = 0; i < array->n; i++) {
474 basis = json_hash(array->elems[i], basis);
480 json_hash(const struct json *json, size_t basis)
482 switch (json->type) {
484 return json_hash_object(json->u.object, basis);
487 return json_hash_array(&json->u.array, basis);
490 return hash_string(json->u.string, basis);
495 return hash_int(json->type << 8, basis);
498 return hash_int(json->u.integer, basis);
501 return hash_double(json->u.real, basis);
510 json_equal_object(const struct shash *a, const struct shash *b)
512 struct shash_node *a_node;
514 if (shash_count(a) != shash_count(b)) {
518 SHASH_FOR_EACH (a_node, a) {
519 struct shash_node *b_node = shash_find(b, a_node->name);
520 if (!b_node || !json_equal(a_node->data, b_node->data)) {
529 json_equal_array(const struct json_array *a, const struct json_array *b)
537 for (i = 0; i < a->n; i++) {
538 if (!json_equal(a->elems[i], b->elems[i])) {
547 json_equal(const struct json *a, const struct json *b)
549 if (a->type != b->type) {
555 return json_equal_object(a->u.object, b->u.object);
558 return json_equal_array(&a->u.array, &b->u.array);
561 return !strcmp(a->u.string, b->u.string);
569 return a->u.integer == b->u.integer;
572 return a->u.real == b->u.real;
580 /* Lexical analysis. */
583 json_lex_keyword(struct json_parser *p)
585 struct json_token token;
588 s = ds_cstr(&p->buffer);
589 if (!strcmp(s, "false")) {
590 token.type = T_FALSE;
591 } else if (!strcmp(s, "true")) {
593 } else if (!strcmp(s, "null")) {
596 json_error(p, "invalid keyword '%s'", s);
599 json_parser_input(p, &token);
603 json_lex_number(struct json_parser *p)
605 const char *cp = ds_cstr(&p->buffer);
606 unsigned long long int significand = 0;
607 struct json_token token;
608 bool imprecise = false;
609 bool negative = false;
612 /* Leading minus sign. */
618 /* At least one integer digit, but 0 may not be used as a leading digit for
619 * a longer number. */
623 if (isdigit((unsigned char) *cp)) {
624 json_error(p, "leading zeros not allowed");
627 } else if (isdigit((unsigned char) *cp)) {
629 if (significand <= ULLONG_MAX / 10) {
630 significand = significand * 10 + (*cp - '0');
638 } while (isdigit((unsigned char) *cp));
640 json_error(p, "'-' must be followed by digit");
644 /* Optional fraction. */
647 if (!isdigit((unsigned char) *cp)) {
648 json_error(p, "decimal point must be followed by digit");
652 if (significand <= ULLONG_MAX / 10) {
653 significand = significand * 10 + (*cp - '0');
655 } else if (*cp != '0') {
659 } while (isdigit((unsigned char) *cp));
662 /* Optional exponent. */
663 if (*cp == 'e' || *cp == 'E') {
664 bool negative_exponent = false;
670 } else if (*cp == '-') {
671 negative_exponent = true;
675 if (!isdigit((unsigned char) *cp)) {
676 json_error(p, "exponent must contain at least one digit");
682 if (exponent >= INT_MAX / 10) {
683 json_error(p, "exponent outside valid range");
686 exponent = exponent * 10 + (*cp - '0');
688 } while (isdigit((unsigned char) *cp));
690 if (negative_exponent) {
698 json_error(p, "syntax error in number");
702 /* Figure out number.
704 * We suppress negative zeros as a matter of policy. */
706 token.type = T_INTEGER;
708 json_parser_input(p, &token);
713 while (pow10 > 0 && significand < ULLONG_MAX / 10) {
717 while (pow10 < 0 && significand % 10 == 0) {
722 && significand <= (negative
723 ? (unsigned long long int) LLONG_MAX + 1
725 token.type = T_INTEGER;
726 token.u.integer = negative ? -significand : significand;
727 json_parser_input(p, &token);
733 if (!str_to_double(ds_cstr(&p->buffer), &token.u.real)) {
734 json_error(p, "number outside valid range");
737 /* Suppress negative zero. */
738 if (token.u.real == 0) {
741 json_parser_input(p, &token);
745 json_lex_4hex(const char *cp, const char *end, int *valuep)
750 return "quoted string ends within \\u escape";
753 value = hexits_value(cp, 4, NULL);
754 if (value == UINT_MAX) {
755 return "malformed \\u escape";
758 return "null bytes not supported in quoted strings";
765 json_lex_unicode(const char *cp, const char *end, struct ds *out)
770 error = json_lex_4hex(cp, end, &c0);
773 ds_put_cstr(out, error);
777 if (!uc_is_leading_surrogate(c0)) {
778 ds_put_utf8(out, c0);
782 if (cp + 2 > end || *cp++ != '\\' || *cp++ != 'u') {
784 ds_put_cstr(out, "malformed escaped surrogate pair");
788 error = json_lex_4hex(cp, end, &c1);
791 ds_put_cstr(out, error);
795 if (!uc_is_trailing_surrogate(c1)) {
797 ds_put_cstr(out, "second half of escaped surrogate pair is not "
798 "trailing surrogate");
802 ds_put_utf8(out, utf16_decode_surrogate_pair(c0, c1));
807 json_string_unescape(const char *in, size_t in_len, char **outp)
809 const char *end = in + in_len;
814 ds_reserve(&out, in_len);
815 if (in_len > 0 && in[in_len - 1] == '\\') {
816 ds_put_cstr(&out, "quoted string may not end with backslash");
822 ds_put_cstr(&out, "quoted string may not include unescaped \"");
826 ds_put_char(&out, *in++);
832 case '"': case '\\': case '/':
833 ds_put_char(&out, in[-1]);
837 ds_put_char(&out, '\b');
841 ds_put_char(&out, '\f');
845 ds_put_char(&out, '\n');
849 ds_put_char(&out, '\r');
853 ds_put_char(&out, '\t');
857 in = json_lex_unicode(in, end, &out);
865 ds_put_format(&out, "bad escape \\%c", in[-1]);
872 *outp = ds_cstr(&out);
877 json_parser_input_string(struct json_parser *p, const char *s)
879 struct json_token token;
881 token.type = T_STRING;
883 json_parser_input(p, &token);
887 json_lex_string(struct json_parser *p)
889 const char *raw = ds_cstr(&p->buffer);
890 if (!strchr(raw, '\\')) {
891 json_parser_input_string(p, raw);
895 if (json_string_unescape(raw, strlen(raw), &cooked)) {
896 json_parser_input_string(p, cooked);
898 json_error(p, "%s", cooked);
906 json_lex_input(struct json_parser *p, unsigned char c)
908 struct json_token token;
910 switch (p->lex_state) {
913 case ' ': case '\t': case '\n': case '\r':
917 case 'a': case 'b': case 'c': case 'd': case 'e':
918 case 'f': case 'g': case 'h': case 'i': case 'j':
919 case 'k': case 'l': case 'm': case 'n': case 'o':
920 case 'p': case 'q': case 'r': case 's': case 't':
921 case 'u': case 'v': case 'w': case 'x': case 'y':
923 p->lex_state = JSON_LEX_KEYWORD;
926 case '[': case '{': case ']': case '}': case ':': case ',':
928 json_parser_input(p, &token);
932 case '0': case '1': case '2': case '3': case '4':
933 case '5': case '6': case '7': case '8': case '9':
934 p->lex_state = JSON_LEX_NUMBER;
938 p->lex_state = JSON_LEX_STRING;
943 json_error(p, "invalid character '%c'", c);
945 json_error(p, "invalid character U+%04x", c);
951 case JSON_LEX_KEYWORD:
952 if (!isalpha((unsigned char) c)) {
958 case JSON_LEX_NUMBER:
959 if (!strchr(".0123456789eE-+", c)) {
965 case JSON_LEX_STRING:
967 p->lex_state = JSON_LEX_ESCAPE;
968 } else if (c == '"') {
971 } else if (c < 0x20) {
972 json_error(p, "U+%04X must be escaped in quoted string", c);
977 case JSON_LEX_ESCAPE:
978 p->lex_state = JSON_LEX_STRING;
984 ds_put_char(&p->buffer, c);
990 /* Parses 'string' as a JSON object or array and returns a newly allocated
991 * 'struct json'. The caller must free the returned structure with
992 * json_destroy() when it is no longer needed.
994 * 'string' must be encoded in UTF-8.
996 * If 'string' is valid JSON, then the returned 'struct json' will be either an
997 * object (JSON_OBJECT) or an array (JSON_ARRAY).
999 * If 'string' is not valid JSON, then the returned 'struct json' will be a
1000 * string (JSON_STRING) that describes the particular error encountered during
1001 * parsing. (This is an acceptable means of error reporting because at its top
1002 * level JSON must be either an object or an array; a bare string is not
1005 json_from_string(const char *string)
1007 struct json_parser *p = json_parser_create(JSPF_TRAILER);
1008 json_parser_feed(p, string, strlen(string));
1009 return json_parser_finish(p);
1012 /* Reads the file named 'file_name', parses its contents as a JSON object or
1013 * array, and returns a newly allocated 'struct json'. The caller must free
1014 * the returned structure with json_destroy() when it is no longer needed.
1016 * The file must be encoded in UTF-8.
1018 * See json_from_string() for return value semantics.
1021 json_from_file(const char *file_name)
1026 stream = fopen(file_name, "r");
1028 return json_string_create_nocopy(
1029 xasprintf("error opening \"%s\": %s", file_name,
1030 ovs_strerror(errno)));
1032 json = json_from_stream(stream);
1038 /* Parses the contents of 'stream' as a JSON object or array, and returns a
1039 * newly allocated 'struct json'. The caller must free the returned structure
1040 * with json_destroy() when it is no longer needed.
1042 * The file must be encoded in UTF-8.
1044 * See json_from_string() for return value semantics.
1047 json_from_stream(FILE *stream)
1049 struct json_parser *p;
1052 p = json_parser_create(JSPF_TRAILER);
1054 char buffer[BUFSIZ];
1057 n = fread(buffer, 1, sizeof buffer, stream);
1058 if (!n || json_parser_feed(p, buffer, n) != n) {
1062 json = json_parser_finish(p);
1064 if (ferror(stream)) {
1066 json = json_string_create_nocopy(
1067 xasprintf("error reading JSON stream: %s", ovs_strerror(errno)));
1073 struct json_parser *
1074 json_parser_create(int flags)
1076 struct json_parser *p = xzalloc(sizeof *p);
1082 json_parser_feed(struct json_parser *p, const char *input, size_t n)
1085 for (i = 0; !p->done && i < n; ) {
1086 if (json_lex_input(p, input[i])) {
1088 if (input[i] == '\n') {
1089 p->column_number = 0;
1101 json_parser_is_done(const struct json_parser *p)
1107 json_parser_finish(struct json_parser *p)
1111 switch (p->lex_state) {
1112 case JSON_LEX_START:
1115 case JSON_LEX_STRING:
1116 case JSON_LEX_ESCAPE:
1117 json_error(p, "unexpected end of input in quoted string");
1120 case JSON_LEX_NUMBER:
1121 case JSON_LEX_KEYWORD:
1122 json_lex_input(p, ' ');
1126 if (p->parse_state == JSON_PARSE_START) {
1127 json_error(p, "empty input stream");
1128 } else if (p->parse_state != JSON_PARSE_END) {
1129 json_error(p, "unexpected end of input");
1133 ovs_assert(p->height == 1);
1134 ovs_assert(p->stack[0].json != NULL);
1135 json = p->stack[--p->height].json;
1137 json = json_string_create_nocopy(p->error);
1141 json_parser_abort(p);
1147 json_parser_abort(struct json_parser *p)
1150 ds_destroy(&p->buffer);
1152 json_destroy(p->stack[0].json);
1155 free(p->member_name);
1161 static struct json_parser_node *
1162 json_parser_top(struct json_parser *p)
1164 return &p->stack[p->height - 1];
1168 json_parser_put_value(struct json_parser *p, struct json *value)
1170 struct json_parser_node *node = json_parser_top(p);
1171 if (node->json->type == JSON_OBJECT) {
1172 json_object_put(node->json, p->member_name, value);
1173 free(p->member_name);
1174 p->member_name = NULL;
1175 } else if (node->json->type == JSON_ARRAY) {
1176 json_array_add(node->json, value);
1183 json_parser_push(struct json_parser *p,
1184 struct json *new_json, enum json_parse_state new_state)
1186 if (p->height < JSON_MAX_HEIGHT) {
1187 struct json_parser_node *node;
1189 if (p->height >= p->allocated_height) {
1190 p->stack = x2nrealloc(p->stack, &p->allocated_height,
1194 if (p->height > 0) {
1195 json_parser_put_value(p, new_json);
1198 node = &p->stack[p->height++];
1199 node->json = new_json;
1200 p->parse_state = new_state;
1202 json_destroy(new_json);
1203 json_error(p, "input exceeds maximum nesting depth %d",
1209 json_parser_push_object(struct json_parser *p)
1211 json_parser_push(p, json_object_create(), JSON_PARSE_OBJECT_INIT);
1215 json_parser_push_array(struct json_parser *p)
1217 json_parser_push(p, json_array_create_empty(), JSON_PARSE_ARRAY_INIT);
1221 json_parse_value(struct json_parser *p, struct json_token *token,
1222 enum json_parse_state next_state)
1226 switch (token->type) {
1228 value = json_boolean_create(false);
1232 value = json_null_create();
1236 value = json_boolean_create(true);
1240 json_parser_push_object(p);
1244 json_parser_push_array(p);
1248 value = json_integer_create(token->u.integer);
1252 value = json_real_create(token->u.real);
1256 value = json_string_create(token->u.string);
1265 json_error(p, "syntax error expecting value");
1269 json_parser_put_value(p, value);
1270 p->parse_state = next_state;
1274 json_parser_pop(struct json_parser *p)
1276 struct json_parser_node *node;
1278 /* Conserve memory. */
1279 node = json_parser_top(p);
1280 if (node->json->type == JSON_ARRAY) {
1281 json_array_trim(node->json);
1284 /* Pop off the top-of-stack. */
1285 if (p->height == 1) {
1286 p->parse_state = JSON_PARSE_END;
1287 if (!(p->flags & JSPF_TRAILER)) {
1292 node = json_parser_top(p);
1293 if (node->json->type == JSON_ARRAY) {
1294 p->parse_state = JSON_PARSE_ARRAY_NEXT;
1295 } else if (node->json->type == JSON_OBJECT) {
1296 p->parse_state = JSON_PARSE_OBJECT_NEXT;
1304 json_parser_input(struct json_parser *p, struct json_token *token)
1306 switch (p->parse_state) {
1307 case JSON_PARSE_START:
1308 if (token->type == '{') {
1309 json_parser_push_object(p);
1310 } else if (token->type == '[') {
1311 json_parser_push_array(p);
1313 json_error(p, "syntax error at beginning of input");
1317 case JSON_PARSE_END:
1318 json_error(p, "trailing garbage at end of input");
1321 case JSON_PARSE_OBJECT_INIT:
1322 if (token->type == '}') {
1327 case JSON_PARSE_OBJECT_NAME:
1328 if (token->type == T_STRING) {
1329 p->member_name = xstrdup(token->u.string);
1330 p->parse_state = JSON_PARSE_OBJECT_COLON;
1332 json_error(p, "syntax error parsing object expecting string");
1336 case JSON_PARSE_OBJECT_COLON:
1337 if (token->type == ':') {
1338 p->parse_state = JSON_PARSE_OBJECT_VALUE;
1340 json_error(p, "syntax error parsing object expecting ':'");
1344 case JSON_PARSE_OBJECT_VALUE:
1345 json_parse_value(p, token, JSON_PARSE_OBJECT_NEXT);
1348 case JSON_PARSE_OBJECT_NEXT:
1349 if (token->type == ',') {
1350 p->parse_state = JSON_PARSE_OBJECT_NAME;
1351 } else if (token->type == '}') {
1354 json_error(p, "syntax error expecting '}' or ','");
1358 case JSON_PARSE_ARRAY_INIT:
1359 if (token->type == ']') {
1364 case JSON_PARSE_ARRAY_VALUE:
1365 json_parse_value(p, token, JSON_PARSE_ARRAY_NEXT);
1368 case JSON_PARSE_ARRAY_NEXT:
1369 if (token->type == ',') {
1370 p->parse_state = JSON_PARSE_ARRAY_VALUE;
1371 } else if (token->type == ']') {
1374 json_error(p, "syntax error expecting ']' or ','");
1382 p->lex_state = JSON_LEX_START;
1383 ds_clear(&p->buffer);
1386 static struct json *
1387 json_create(enum json_type type)
1389 struct json *json = xmalloc(sizeof *json);
1395 json_error(struct json_parser *p, const char *format, ...)
1402 ds_put_format(&msg, "line %d, column %d, byte %d: ",
1403 p->line_number, p->column_number, p->byte_number);
1404 va_start(args, format);
1405 ds_put_format_valist(&msg, format, args);
1408 p->error = ds_steal_cstr(&msg);
1414 #define SPACES_PER_LEVEL 2
1416 struct json_serializer {
1422 static void json_serialize(const struct json *, struct json_serializer *);
1423 static void json_serialize_object(const struct shash *object,
1424 struct json_serializer *);
1425 static void json_serialize_array(const struct json_array *,
1426 struct json_serializer *);
1427 static void json_serialize_string(const char *, struct ds *);
1429 /* Converts 'json' to a string in JSON format, encoded in UTF-8, and returns
1430 * that string. The caller is responsible for freeing the returned string,
1431 * with free(), when it is no longer needed.
1433 * If 'flags' contains JSSF_PRETTY, the output is pretty-printed with each
1434 * nesting level introducing an additional indentation. Otherwise, the
1435 * returned string does not contain any new-line characters.
1437 * If 'flags' contains JSSF_SORT, members of objects in the output are sorted
1438 * in bytewise lexicographic order for reproducibility. Otherwise, members of
1439 * objects are output in an indeterminate order.
1441 * The returned string is valid JSON only if 'json' represents an array or an
1442 * object, since a bare literal does not satisfy the JSON grammar. */
1444 json_to_string(const struct json *json, int flags)
1449 json_to_ds(json, flags, &ds);
1450 return ds_steal_cstr(&ds);
1453 /* Same as json_to_string(), but the output is appended to 'ds'. */
1455 json_to_ds(const struct json *json, int flags, struct ds *ds)
1457 struct json_serializer s;
1462 json_serialize(json, &s);
1466 json_serialize(const struct json *json, struct json_serializer *s)
1468 struct ds *ds = s->ds;
1470 switch (json->type) {
1472 ds_put_cstr(ds, "null");
1476 ds_put_cstr(ds, "false");
1480 ds_put_cstr(ds, "true");
1484 json_serialize_object(json->u.object, s);
1488 json_serialize_array(&json->u.array, s);
1492 ds_put_format(ds, "%lld", json->u.integer);
1496 ds_put_format(ds, "%.*g", DBL_DIG, json->u.real);
1500 json_serialize_string(json->u.string, ds);
1510 indent_line(struct json_serializer *s)
1512 if (s->flags & JSSF_PRETTY) {
1513 ds_put_char(s->ds, '\n');
1514 ds_put_char_multiple(s->ds, ' ', SPACES_PER_LEVEL * s->depth);
1519 json_serialize_object_member(size_t i, const struct shash_node *node,
1520 struct json_serializer *s)
1522 struct ds *ds = s->ds;
1525 ds_put_char(ds, ',');
1529 json_serialize_string(node->name, ds);
1530 ds_put_char(ds, ':');
1531 if (s->flags & JSSF_PRETTY) {
1532 ds_put_char(ds, ' ');
1534 json_serialize(node->data, s);
1538 json_serialize_object(const struct shash *object, struct json_serializer *s)
1540 struct ds *ds = s->ds;
1542 ds_put_char(ds, '{');
1547 if (s->flags & JSSF_SORT) {
1548 const struct shash_node **nodes;
1551 nodes = shash_sort(object);
1552 n = shash_count(object);
1553 for (i = 0; i < n; i++) {
1554 json_serialize_object_member(i, nodes[i], s);
1558 struct shash_node *node;
1562 SHASH_FOR_EACH (node, object) {
1563 json_serialize_object_member(i++, node, s);
1567 ds_put_char(ds, '}');
1572 json_serialize_array(const struct json_array *array, struct json_serializer *s)
1574 struct ds *ds = s->ds;
1577 ds_put_char(ds, '[');
1583 for (i = 0; i < array->n; i++) {
1585 ds_put_char(ds, ',');
1588 json_serialize(array->elems[i], s);
1593 ds_put_char(ds, ']');
1597 json_serialize_string(const char *string, struct ds *ds)
1601 ds_put_char(ds, '"');
1602 while ((c = *string++) != '\0') {
1605 ds_put_cstr(ds, "\\\"");
1609 ds_put_cstr(ds, "\\\\");
1613 ds_put_cstr(ds, "\\b");
1617 ds_put_cstr(ds, "\\f");
1621 ds_put_cstr(ds, "\\n");
1625 ds_put_cstr(ds, "\\r");
1629 ds_put_cstr(ds, "\\t");
1636 ds_put_format(ds, "\\u%04x", c);
1641 ds_put_char(ds, '"');
1645 json_string_serialized_length(const char *string)
1650 length = strlen("\"\"");
1652 while ((c = *string++) != '\0') {
1679 json_object_serialized_length(const struct shash *object)
1681 size_t length = strlen("{}");
1683 if (!shash_is_empty(object)) {
1684 struct shash_node *node;
1686 /* Commas and colons. */
1687 length += 2 * shash_count(object) - 1;
1689 SHASH_FOR_EACH (node, object) {
1690 const struct json *value = node->data;
1692 length += json_string_serialized_length(node->name);
1693 length += json_serialized_length(value);
1701 json_array_serialized_length(const struct json_array *array)
1703 size_t length = strlen("[]");
1709 length += array->n - 1;
1711 for (i = 0; i < array->n; i++) {
1712 length += json_serialized_length(array->elems[i]);
1719 /* Returns strlen(json_to_string(json, 0)), that is, the number of bytes in the
1720 * JSON output by json_to_string() for 'json' when JSSF_PRETTY is not
1721 * requested. (JSSF_SORT does not affect the length of json_to_string()'s
1724 json_serialized_length(const struct json *json)
1726 switch (json->type) {
1728 return strlen("null");
1731 return strlen("false");
1734 return strlen("true");
1737 return json_object_serialized_length(json->u.object);
1740 return json_array_serialized_length(&json->u.array);
1743 return snprintf(NULL, 0, "%lld", json->u.integer);
1746 return snprintf(NULL, 0, "%.*g", DBL_DIG, json->u.real);
1749 return json_string_serialized_length(json->u.string);