mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 14:48:21 +00:00
e0ee098c4a
The split between tests/test-qobject-input-visitor.c and tests/test-qobject-input-strict.c now makes less sense than ever. The next commit will take care of that. Backports commit 048abb7b20c9f822ad9d4b730bade73b3311a47a from qemu
45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
/*
|
|
* 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"
|
|
#include "qemu-common.h"
|
|
#include "qom/object.h"
|
|
#include "qom/qom-qobject.h"
|
|
#include "qapi/visitor.h"
|
|
#include "qapi/qobject-input-visitor.h"
|
|
#include "qapi/qobject-output-visitor.h"
|
|
|
|
void object_property_set_qobject(struct uc_struct *uc, Object *obj, QObject *value,
|
|
const char *name, Error **errp)
|
|
{
|
|
Visitor *v;
|
|
v = qobject_input_visitor_new(value);
|
|
object_property_set(uc, obj, v, name, errp);
|
|
visit_free(v);
|
|
}
|
|
|
|
QObject *object_property_get_qobject(struct uc_struct *uc, Object *obj, const char *name,
|
|
Error **errp)
|
|
{
|
|
QObject *ret = NULL;
|
|
Error *local_err = NULL;
|
|
Visitor *v;
|
|
|
|
v = qobject_output_visitor_new(&ret);
|
|
object_property_get(uc, obj, v, name, &local_err);
|
|
if (!local_err) {
|
|
visit_complete(v, &ret);
|
|
}
|
|
error_propagate(errp, local_err);
|
|
visit_free(v);
|
|
return ret;
|
|
}
|