aboutsummaryrefslogtreecommitdiff
path: root/include/qapi/qmp/qjson.h
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2018-07-03 10:53:47 +0200
committerMarkus Armbruster <armbru@redhat.com>2018-07-03 23:18:56 +0200
commita193352ff9c7cd2cd07846118bc49921d0f53af8 (patch)
treec89a35a6fb781e57629832b4f95b086bdc90fa38 /include/qapi/qmp/qjson.h
parentcab5ad86b41af6deead6f9bd6edc8a2353eb3e90 (diff)
downloadqemu-a193352ff9c7cd2cd07846118bc49921d0f53af8.zip
qemu-a193352ff9c7cd2cd07846118bc49921d0f53af8.tar.gz
qemu-a193352ff9c7cd2cd07846118bc49921d0f53af8.tar.bz2
qobject: New qdict_from_jsonf_nofail()
Many uses of qobject_from_jsonf() convert JSON objects. Create new convenience function qdict_from_jsonf_nofail() that includes the conversion to QDict. The next few commits will put it to use. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <20180703085358.13941-22-armbru@redhat.com>
Diffstat (limited to 'include/qapi/qmp/qjson.h')
-rw-r--r--include/qapi/qmp/qjson.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qapi/qmp/qjson.h b/include/qapi/qmp/qjson.h
index b274ac3..43b2ce2 100644
--- a/include/qapi/qmp/qjson.h
+++ b/include/qapi/qmp/qjson.h
@@ -19,6 +19,8 @@ QObject *qobject_from_jsonf(const char *string, ...) GCC_FMT_ATTR(1, 2);
QObject *qobject_from_jsonv(const char *string, va_list *ap, Error **errp)
GCC_FMT_ATTR(1, 0);
+QDict *qdict_from_jsonf_nofail(const char *string, ...) GCC_FMT_ATTR(1, 2);
+
QString *qobject_to_json(const QObject *obj);
QString *qobject_to_json_pretty(const QObject *obj);