unicorn/qemu/qom/qom-qobject.c

47 lines
1.3 KiB
C
Raw Normal View History

2015-08-21 09:04:50 +02:00
/*
* QEMU Object Model - QObject wrappers
*
* Copyright (C) 2012 Red Hat, Inc.
*
* Author: Paolo Bonzini <pbonzini@redhat.com>
*
* This work is licensed under the terms of the GNU GPL, version 2 or later.
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include "qapi/error.h"
2015-08-21 09:04:50 +02:00
#include "qemu-common.h"
#include "qom/object.h"
#include "qom/qom-qobject.h"
#include "qapi/visitor.h"
#include "qapi/qmp-input-visitor.h"
#include "qapi/qmp-output-visitor.h"
void object_property_set_qobject(struct uc_struct *uc, Object *obj, QObject *value,
const char *name, Error **errp)
{
QmpInputVisitor *qiv;
qiv = qmp_input_visitor_new(value);
object_property_set(uc, obj, qmp_input_get_visitor(qiv), name, errp);
2015-08-21 09:04:50 +02:00
qmp_input_visitor_cleanup(qiv);
2015-08-21 09:04:50 +02:00
}
QObject *object_property_get_qobject(struct uc_struct *uc, Object *obj, const char *name,
Error **errp)
{
QObject *ret = NULL;
Error *local_err = NULL;
QmpOutputVisitor *qov;
2015-08-21 09:04:50 +02:00
qov = qmp_output_visitor_new();
object_property_get(uc, obj, qmp_output_get_visitor(qov), name, &local_err);
2015-08-21 09:04:50 +02:00
if (!local_err) {
ret = qmp_output_get_qobject(qov);
2015-08-21 09:04:50 +02:00
}
error_propagate(errp, local_err);
qmp_output_visitor_cleanup(qov);
2015-08-21 09:04:50 +02:00
return ret;
}