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 "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, s->pretty ? "," : ", ");
94 qstring_append(s->str, "\n");
95 for (j = 0 ; j < s->indent ; j++)
96 qstring_append(s->str, " ");
99 qkey = qstring_from_str(key);
100 to_json(QOBJECT(qkey), s->str, s->pretty, s->indent);
103 qstring_append(s->str, ": ");
104 to_json(obj, s->str, s->pretty, s->indent);
108 static void to_json_list_iter(QObject *obj, void *opaque)
110 ToJsonIterState *s = opaque;
114 qstring_append(s->str, s->pretty ? "," : ", ");
118 qstring_append(s->str, "\n");
119 for (j = 0 ; j < s->indent ; j++)
120 qstring_append(s->str, " ");
123 to_json(obj, s->str, s->pretty, s->indent);
127 static void to_json(const QObject *obj, QString *str, int pretty, int indent)
129 switch (qobject_type(obj)) {
131 qstring_append(str, "null");
134 QInt *val = qobject_to_qint(obj);
137 snprintf(buffer, sizeof(buffer), "%" PRId64, qint_get_int(val));
138 qstring_append(str, buffer);
141 case QTYPE_QSTRING: {
142 QString *val = qobject_to_qstring(obj);
148 ptr = qstring_get_str(val);
149 qstring_append(str, "\"");
151 for (; *ptr; ptr = end) {
152 cp = mod_utf8_codepoint(ptr, 6, &end);
155 qstring_append(str, "\\\"");
158 qstring_append(str, "\\\\");
161 qstring_append(str, "\\b");
164 qstring_append(str, "\\f");
167 qstring_append(str, "\\n");
170 qstring_append(str, "\\r");
173 qstring_append(str, "\\t");
177 cp = 0xFFFD; /* replacement character */
180 /* beyond BMP; need a surrogate pair */
181 snprintf(buf, sizeof(buf), "\\u%04X\\u%04X",
182 0xD800 + ((cp - 0x10000) >> 10),
183 0xDC00 + ((cp - 0x10000) & 0x3FF));
184 } else if (cp < 0x20 || cp >= 0x7F) {
185 snprintf(buf, sizeof(buf), "\\u%04X", cp);
190 qstring_append(str, buf);
194 qstring_append(str, "\"");
199 QDict *val = qobject_to_qdict(obj);
203 s.indent = indent + 1;
205 qstring_append(str, "{");
206 qdict_iter(val, to_json_dict_iter, &s);
209 qstring_append(str, "\n");
210 for (j = 0 ; j < indent ; j++)
211 qstring_append(str, " ");
213 qstring_append(str, "}");
218 QList *val = qobject_to_qlist(obj);
222 s.indent = indent + 1;
224 qstring_append(str, "[");
225 qlist_iter(val, (void *)to_json_list_iter, &s);
228 qstring_append(str, "\n");
229 for (j = 0 ; j < indent ; j++)
230 qstring_append(str, " ");
232 qstring_append(str, "]");
236 QFloat *val = qobject_to_qfloat(obj);
240 len = snprintf(buffer, sizeof(buffer), "%f", qfloat_get_double(val));
241 while (len > 0 && buffer[len - 1] == '0') {
245 if (len && buffer[len - 1] == '.') {
251 qstring_append(str, buffer);
255 QBool *val = qobject_to_qbool(obj);
257 if (qbool_get_bool(val)) {
258 qstring_append(str, "true");
260 qstring_append(str, "false");
269 QString *qobject_to_json(const QObject *obj)
271 QString *str = qstring_new();
273 to_json(obj, str, 0, 0);
278 QString *qobject_to_json_pretty(const QObject *obj)
280 QString *str = qstring_new();
282 to_json(obj, str, 1, 0);