2 * Copyright (c) 2009, 2010 Nicira Networks.
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.
20 /* This is an implementation of JavaScript Object Notation (JSON) as specified
21 * by RFC 4627. It is intended to fully comply with RFC 4627, with the
22 * following known exceptions and clarifications:
24 * - Null bytes (\u0000) are not allowed in strings.
26 * - Only UTF-8 encoding is supported (RFC 4627 allows for other Unicode
29 * - Names within an object must be unique (RFC 4627 says that they
30 * "should" be unique).
37 /* Type of a JSON value. */
40 JSON_FALSE, /* false */
42 JSON_OBJECT, /* {"a": b, "c": d, ...} */
43 JSON_ARRAY, /* [1, 2, 3, ...] */
44 JSON_INTEGER, /* 123. */
45 JSON_REAL, /* 123.456. */
46 JSON_STRING, /* "..." */
50 const char *json_type_to_string(enum json_type);
54 size_t n, n_allocated;
62 struct shash *object; /* Contains "struct json *"s. */
63 struct json_array array;
64 long long int integer;
70 struct json *json_null_create(void);
71 struct json *json_boolean_create(bool);
72 struct json *json_string_create(const char *);
73 struct json *json_string_create_nocopy(char *);
74 struct json *json_integer_create(long long int);
75 struct json *json_real_create(double);
77 struct json *json_array_create_empty(void);
78 void json_array_add(struct json *, struct json *element);
79 void json_array_trim(struct json *);
80 struct json *json_array_create(struct json **, size_t n);
81 struct json *json_array_create_1(struct json *);
82 struct json *json_array_create_2(struct json *, struct json *);
83 struct json *json_array_create_3(struct json *, struct json *, struct json *);
85 struct json *json_object_create(void);
86 void json_object_put(struct json *, const char *name, struct json *value);
87 void json_object_put_string(struct json *,
88 const char *name, const char *value);
90 const char *json_string(const struct json *);
91 struct json_array *json_array(const struct json *);
92 struct shash *json_object(const struct json *);
93 bool json_boolean(const struct json *);
94 double json_real(const struct json *);
95 int64_t json_integer(const struct json *);
97 struct json *json_clone(const struct json *);
98 void json_destroy(struct json *);
100 size_t json_hash(const struct json *, size_t basis);
101 bool json_equal(const struct json *, const struct json *);
105 JSPF_TRAILER = 1 << 0 /* Check for garbage following input. */
108 struct json_parser *json_parser_create(int flags);
109 size_t json_parser_feed(struct json_parser *, const char *, size_t);
110 bool json_parser_is_done(const struct json_parser *);
111 struct json *json_parser_finish(struct json_parser *);
112 void json_parser_abort(struct json_parser *);
114 struct json *json_from_string(const char *string);
115 struct json *json_from_file(const char *file_name);
116 struct json *json_from_stream(FILE *stream);
118 /* Serializing JSON. */
121 JSSF_PRETTY = 1 << 0, /* Multiple lines with indentation, if true. */
122 JSSF_SORT = 1 << 1 /* Object members in sorted order, if true. */
124 char *json_to_string(const struct json *, int flags);
125 void json_to_ds(const struct json *, int flags, struct ds *);
127 /* JSON string formatting operations. */
129 bool json_string_unescape(const char *in, size_t in_len, char **outp);