OSDN Git Service

qom: Factor out user_creatable_add_dict()
authorKevin Wolf <kwolf@redhat.com>
Thu, 16 Apr 2020 15:04:20 +0000 (17:04 +0200)
committerKevin Wolf <kwolf@redhat.com>
Thu, 30 Apr 2020 15:51:07 +0000 (17:51 +0200)
commitd6a5beeb2bbf4f5ce6e6396051fb4c5fcced56a4
tree20c9db0476edab18e1756569f52e46b5b8d3a359
parent6cf94132293adb5c76d336ab7ff5924afe2cb147
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>
include/qom/object_interfaces.h
qom/object_interfaces.c
qom/qom-qmp-cmds.c