summaryrefslogtreecommitdiff
path: root/qom
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2020-04-16 17:04:20 +0200
committerKevin Wolf <kwolf@redhat.com>2020-04-30 17:51:07 +0200
commitd6a5beeb2bbf4f5ce6e6396051fb4c5fcced56a4 (patch)
tree20c9db0476edab18e1756569f52e46b5b8d3a359 /qom
parent6cf94132293adb5c76d336ab7ff5924afe2cb147 (diff)
qom: Factor out user_creatable_add_dict()
The QMP handler qmp_object_add() and the implementation of --object in qemu-storage-daemon can share most of the code. Currently, qemu-storage-daemon calls qmp_object_add(), but this is not correct because different visitors need to be used. As a first step towards a fix, make qmp_object_add() a wrapper around a new function user_creatable_add_dict() that can get an additional parameter. The handling of "props" is only required for compatibility and not required for the qemu-storage-daemon command line, so it stays in qmp_object_add(). Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qom')
-rw-r--r--qom/object_interfaces.c27
-rw-r--r--qom/qom-qmp-cmds.c24
2 files changed, 28 insertions, 23 deletions
diff --git a/qom/object_interfaces.c b/qom/object_interfaces.c
index 72cb9e32a9..739e3e5172 100644
--- a/qom/object_interfaces.c
+++ b/qom/object_interfaces.c
@@ -6,6 +6,7 @@
#include "qapi/qmp/qerror.h"
#include "qapi/qmp/qjson.h"
#include "qapi/qmp/qstring.h"
+#include "qapi/qobject-input-visitor.h"
#include "qom/object_interfaces.h"
#include "qemu/help_option.h"
#include "qemu/module.h"
@@ -105,6 +106,32 @@ out:
return obj;
}
+void user_creatable_add_dict(QDict *qdict, Error **errp)
+{
+ Visitor *v;
+ Object *obj;
+ g_autofree char *type = NULL;
+ g_autofree char *id = NULL;
+
+ type = g_strdup(qdict_get_try_str(qdict, "qom-type"));
+ if (!type) {
+ error_setg(errp, QERR_MISSING_PARAMETER, "qom-type");
+ return;
+ }
+ qdict_del(qdict, "qom-type");
+
+ id = g_strdup(qdict_get_try_str(qdict, "id"));
+ if (!id) {
+ error_setg(errp, QERR_MISSING_PARAMETER, "id");
+ return;
+ }
+ qdict_del(qdict, "id");
+
+ v = qobject_input_visitor_new(QOBJECT(qdict));
+ obj = user_creatable_add_type(type, id, qdict, v, errp);
+ visit_free(v);
+ object_unref(obj);
+}
Object *user_creatable_add_opts(QemuOpts *opts, Error **errp)
{
diff --git a/qom/qom-qmp-cmds.c b/qom/qom-qmp-cmds.c
index e47ebe8ed1..35db44b50e 100644
--- a/qom/qom-qmp-cmds.c
+++ b/qom/qom-qmp-cmds.c
@@ -21,7 +21,6 @@
#include "qapi/qapi-commands-qom.h"
#include "qapi/qmp/qdict.h"
#include "qapi/qmp/qerror.h"
-#include "qapi/qobject-input-visitor.h"
#include "qemu/cutils.h"
#include "qom/object_interfaces.h"
#include "qom/qom-qobject.h"
@@ -245,24 +244,6 @@ void qmp_object_add(QDict *qdict, QObject **ret_data, Error **errp)
{
QObject *props;
QDict *pdict;
- Visitor *v;
- Object *obj;
- g_autofree char *type = NULL;
- g_autofree char *id = NULL;
-
- type = g_strdup(qdict_get_try_str(qdict, "qom-type"));
- if (!type) {
- error_setg(errp, QERR_MISSING_PARAMETER, "qom-type");
- return;
- }
- qdict_del(qdict, "qom-type");
-
- id = g_strdup(qdict_get_try_str(qdict, "id"));
- if (!id) {
- error_setg(errp, QERR_MISSING_PARAMETER, "id");
- return;
- }
- qdict_del(qdict, "id");
props = qdict_get(qdict, "props");
if (props) {
@@ -282,10 +263,7 @@ void qmp_object_add(QDict *qdict, QObject **ret_data, Error **errp)
qobject_unref(pdict);
}
- v = qobject_input_visitor_new(QOBJECT(qdict));
- obj = user_creatable_add_type(type, id, qdict, v, errp);
- visit_free(v);
- object_unref(obj);
+ user_creatable_add_dict(qdict, errp);
}
void qmp_object_del(const char *id, Error **errp)