2 * QObject JSON integration
4 * Copyright IBM, Corp. 2009
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qapi/error.h"
16 #include "qapi/qmp/json-parser.h"
17 #include "qapi/qmp/qjson.h"
18 #include "qapi/qmp/qbool.h"
19 #include "qapi/qmp/qdict.h"
20 #include "qapi/qmp/qlist.h"
21 #include "qapi/qmp/qnum.h"
22 #include "qapi/qmp/qstring.h"
23 #include "qemu/unicode.h"
25 typedef struct JSONParsingState
27 JSONMessageParser parser
;
32 static void consume_json(void *opaque
, QObject
*json
, Error
*err
)
34 JSONParsingState
*s
= opaque
;
36 assert(!json
!= !err
);
37 assert(!s
->result
|| !s
->err
);
40 qobject_unref(s
->result
);
42 error_setg(&s
->err
, "Expecting at most one JSON value");
54 * Parse @string as JSON value.
55 * If @ap is non-null, interpolate %-escapes.
56 * Takes ownership of %p arguments.
57 * On success, return the JSON value.
58 * On failure, store an error through @errp and return NULL.
59 * Ownership of %p arguments becomes indeterminate then. To avoid
60 * leaks, callers passing %p must terminate on error, e.g. by passing
63 static QObject
*qobject_from_jsonv(const char *string
, va_list *ap
,
66 JSONParsingState state
= {};
68 json_message_parser_init(&state
.parser
, consume_json
, &state
, ap
);
69 json_message_parser_feed(&state
.parser
, string
, strlen(string
));
70 json_message_parser_flush(&state
.parser
);
71 json_message_parser_destroy(&state
.parser
);
73 if (!state
.result
&& !state
.err
) {
74 error_setg(&state
.err
, "Expecting a JSON value");
77 error_propagate(errp
, state
.err
);
81 QObject
*qobject_from_json(const char *string
, Error
**errp
)
83 return qobject_from_jsonv(string
, NULL
, errp
);
87 * Parse @string as JSON value with %-escapes interpolated.
88 * Abort on error. Do not use with untrusted @string.
89 * Return the resulting QObject. It is never null.
91 QObject
*qobject_from_vjsonf_nofail(const char *string
, va_list ap
)
96 /* va_copy() is needed when va_list is an array type */
98 obj
= qobject_from_jsonv(string
, &ap_copy
, &error_abort
);
106 * Parse @string as JSON value with %-escapes interpolated.
107 * Abort on error. Do not use with untrusted @string.
108 * Return the resulting QObject. It is never null.
110 QObject
*qobject_from_jsonf_nofail(const char *string
, ...)
115 va_start(ap
, string
);
116 obj
= qobject_from_vjsonf_nofail(string
, ap
);
123 * Parse @string as JSON object with %-escapes interpolated.
124 * Abort on error. Do not use with untrusted @string.
125 * Return the resulting QDict. It is never null.
127 QDict
*qdict_from_vjsonf_nofail(const char *string
, va_list ap
)
131 qdict
= qobject_to(QDict
, qobject_from_vjsonf_nofail(string
, ap
));
137 * Parse @string as JSON object with %-escapes interpolated.
138 * Abort on error. Do not use with untrusted @string.
139 * Return the resulting QDict. It is never null.
141 QDict
*qdict_from_jsonf_nofail(const char *string
, ...)
146 va_start(ap
, string
);
147 qdict
= qdict_from_vjsonf_nofail(string
, ap
);
152 static void to_json(const QObject
*obj
, QString
*str
, int pretty
, int indent
);
154 static void json_pretty_newline(QString
*str
, bool pretty
, int indent
)
159 qstring_append(str
, "\n");
160 for (i
= 0; i
< indent
; i
++) {
161 qstring_append(str
, " ");
166 static void to_json(const QObject
*obj
, QString
*str
, int pretty
, int indent
)
168 switch (qobject_type(obj
)) {
170 qstring_append(str
, "null");
173 QNum
*val
= qobject_to(QNum
, obj
);
174 char *buffer
= qnum_to_string(val
);
175 qstring_append(str
, buffer
);
179 case QTYPE_QSTRING
: {
180 QString
*val
= qobject_to(QString
, obj
);
186 ptr
= qstring_get_str(val
);
187 qstring_append(str
, "\"");
189 for (; *ptr
; ptr
= end
) {
190 cp
= mod_utf8_codepoint(ptr
, 6, &end
);
193 qstring_append(str
, "\\\"");
196 qstring_append(str
, "\\\\");
199 qstring_append(str
, "\\b");
202 qstring_append(str
, "\\f");
205 qstring_append(str
, "\\n");
208 qstring_append(str
, "\\r");
211 qstring_append(str
, "\\t");
215 cp
= 0xFFFD; /* replacement character */
218 /* beyond BMP; need a surrogate pair */
219 snprintf(buf
, sizeof(buf
), "\\u%04X\\u%04X",
220 0xD800 + ((cp
- 0x10000) >> 10),
221 0xDC00 + ((cp
- 0x10000) & 0x3FF));
222 } else if (cp
< 0x20 || cp
>= 0x7F) {
223 snprintf(buf
, sizeof(buf
), "\\u%04X", cp
);
228 qstring_append(str
, buf
);
232 qstring_append(str
, "\"");
236 QDict
*val
= qobject_to(QDict
, obj
);
237 const char *comma
= pretty
? "," : ", ";
238 const char *sep
= "";
239 const QDictEntry
*entry
;
242 qstring_append(str
, "{");
244 for (entry
= qdict_first(val
);
246 entry
= qdict_next(val
, entry
)) {
247 qstring_append(str
, sep
);
248 json_pretty_newline(str
, pretty
, indent
+ 1);
250 qkey
= qstring_from_str(qdict_entry_key(entry
));
251 to_json(QOBJECT(qkey
), str
, pretty
, indent
+ 1);
254 qstring_append(str
, ": ");
255 to_json(qdict_entry_value(entry
), str
, pretty
, indent
+ 1);
259 json_pretty_newline(str
, pretty
, indent
);
260 qstring_append(str
, "}");
264 QList
*val
= qobject_to(QList
, obj
);
265 const char *comma
= pretty
? "," : ", ";
266 const char *sep
= "";
269 qstring_append(str
, "[");
271 QLIST_FOREACH_ENTRY(val
, entry
) {
272 qstring_append(str
, sep
);
273 json_pretty_newline(str
, pretty
, indent
+ 1);
274 to_json(qlist_entry_obj(entry
), str
, pretty
, indent
+ 1);
278 json_pretty_newline(str
, pretty
, indent
);
279 qstring_append(str
, "]");
283 QBool
*val
= qobject_to(QBool
, obj
);
285 if (qbool_get_bool(val
)) {
286 qstring_append(str
, "true");
288 qstring_append(str
, "false");
297 QString
*qobject_to_json(const QObject
*obj
)
299 QString
*str
= qstring_new();
301 to_json(obj
, str
, 0, 0);
306 QString
*qobject_to_json_pretty(const QObject
*obj
)
308 QString
*str
= qstring_new();
310 to_json(obj
, str
, 1, 0);