2 * QObject JSON integration
4 * Copyright IBM, Corp. 2009
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 "qapi/qmp/json-lexer.h"
15 #include "qapi/qmp/json-parser.h"
16 #include "qapi/qmp/json-streamer.h"
17 #include "qapi/qmp/qjson.h"
18 #include "qapi/qmp/qint.h"
19 #include "qapi/qmp/qlist.h"
20 #include "qapi/qmp/qbool.h"
21 #include "qapi/qmp/qfloat.h"
22 #include "qapi/qmp/qdict.h"
24 typedef struct JSONParsingState
26 JSONMessageParser parser;
31 static void parse_json(JSONMessageParser *parser, QList *tokens)
33 JSONParsingState *s = container_of(parser, JSONParsingState, parser);
34 s->result = json_parser_parse(tokens, s->ap);
37 QObject *qobject_from_jsonv(const char *string, va_list *ap)
39 JSONParsingState state = {};
43 json_message_parser_init(&state.parser, parse_json);
44 json_message_parser_feed(&state.parser, string, strlen(string));
45 json_message_parser_flush(&state.parser);
46 json_message_parser_destroy(&state.parser);
51 QObject *qobject_from_json(const char *string)
53 return qobject_from_jsonv(string, NULL);
57 * IMPORTANT: This function aborts on error, thus it must not
58 * be used with untrusted arguments.
60 QObject *qobject_from_jsonf(const char *string, ...)
66 obj = qobject_from_jsonv(string, &ap);
73 typedef struct ToJsonIterState
81 static void to_json(const QObject *obj, QString *str, int pretty, int indent);
83 static void to_json_dict_iter(const char *key, QObject *obj, void *opaque)
85 ToJsonIterState *s = opaque;
90 qstring_append(s->str, ", ");
93 qstring_append(s->str, "\n");
94 for (j = 0 ; j < s->indent ; j++)
95 qstring_append(s->str, " ");
98 qkey = qstring_from_str(key);
99 to_json(QOBJECT(qkey), s->str, s->pretty, s->indent);
102 qstring_append(s->str, ": ");
103 to_json(obj, s->str, s->pretty, s->indent);
107 static void to_json_list_iter(QObject *obj, void *opaque)
109 ToJsonIterState *s = opaque;
113 qstring_append(s->str, ", ");
116 qstring_append(s->str, "\n");
117 for (j = 0 ; j < s->indent ; j++)
118 qstring_append(s->str, " ");
121 to_json(obj, s->str, s->pretty, s->indent);
125 static void to_json(const QObject *obj, QString *str, int pretty, int indent)
127 switch (qobject_type(obj)) {
129 QInt *val = qobject_to_qint(obj);
132 snprintf(buffer, sizeof(buffer), "%" PRId64, qint_get_int(val));
133 qstring_append(str, buffer);
136 case QTYPE_QSTRING: {
137 QString *val = qobject_to_qstring(obj);
143 ptr = qstring_get_str(val);
144 qstring_append(str, "\"");
146 for (; *ptr; ptr = end) {
147 cp = mod_utf8_codepoint(ptr, 6, &end);
150 qstring_append(str, "\\\"");
153 qstring_append(str, "\\\\");
156 qstring_append(str, "\\b");
159 qstring_append(str, "\\f");
162 qstring_append(str, "\\n");
165 qstring_append(str, "\\r");
168 qstring_append(str, "\\t");
172 cp = 0xFFFD; /* replacement character */
175 /* beyond BMP; need a surrogate pair */
176 snprintf(buf, sizeof(buf), "\\u%04X\\u%04X",
177 0xD800 + ((cp - 0x10000) >> 10),
178 0xDC00 + ((cp - 0x10000) & 0x3FF));
179 } else if (cp < 0x20 || cp >= 0x7F) {
180 snprintf(buf, sizeof(buf), "\\u%04X", cp);
185 qstring_append(str, buf);
189 qstring_append(str, "\"");
194 QDict *val = qobject_to_qdict(obj);
198 s.indent = indent + 1;
200 qstring_append(str, "{");
201 qdict_iter(val, to_json_dict_iter, &s);
204 qstring_append(str, "\n");
205 for (j = 0 ; j < indent ; j++)
206 qstring_append(str, " ");
208 qstring_append(str, "}");
213 QList *val = qobject_to_qlist(obj);
217 s.indent = indent + 1;
219 qstring_append(str, "[");
220 qlist_iter(val, (void *)to_json_list_iter, &s);
223 qstring_append(str, "\n");
224 for (j = 0 ; j < indent ; j++)
225 qstring_append(str, " ");
227 qstring_append(str, "]");
231 QFloat *val = qobject_to_qfloat(obj);
235 len = snprintf(buffer, sizeof(buffer), "%f", qfloat_get_double(val));
236 while (len > 0 && buffer[len - 1] == '0') {
240 if (len && buffer[len - 1] == '.') {
246 qstring_append(str, buffer);
250 QBool *val = qobject_to_qbool(obj);
252 if (qbool_get_int(val)) {
253 qstring_append(str, "true");
255 qstring_append(str, "false");
260 /* XXX: should QError be emitted? */
266 QString *qobject_to_json(const QObject *obj)
268 QString *str = qstring_new();
270 to_json(obj, str, 0, 0);
275 QString *qobject_to_json_pretty(const QObject *obj)
277 QString *str = qstring_new();
279 to_json(obj, str, 1, 0);