2011-12-04 00:10:08 +01:00
|
|
|
/*
|
|
|
|
* QEMU Object Model
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.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/object.h"
|
|
|
|
#include "qemu-common.h"
|
2012-01-30 15:55:55 +01:00
|
|
|
#include "qapi/qapi-visit-core.h"
|
2012-02-09 09:52:59 +01:00
|
|
|
#include "qapi/string-input-visitor.h"
|
|
|
|
#include "qapi/string-output-visitor.h"
|
2011-12-04 00:10:08 +01:00
|
|
|
|
2012-02-01 17:16:22 +01:00
|
|
|
/* TODO: replace QObject with a simpler visitor to avoid a dependency
|
|
|
|
* of the QOM core on QObject? */
|
|
|
|
#include "qemu/qom-qobject.h"
|
|
|
|
#include "qobject.h"
|
|
|
|
#include "qbool.h"
|
|
|
|
#include "qint.h"
|
|
|
|
#include "qstring.h"
|
|
|
|
|
2011-12-04 00:10:08 +01:00
|
|
|
#define MAX_INTERFACES 32
|
|
|
|
|
|
|
|
typedef struct InterfaceImpl InterfaceImpl;
|
|
|
|
typedef struct TypeImpl TypeImpl;
|
|
|
|
|
|
|
|
struct InterfaceImpl
|
|
|
|
{
|
|
|
|
const char *parent;
|
|
|
|
void (*interface_initfn)(ObjectClass *class, void *data);
|
|
|
|
TypeImpl *type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TypeImpl
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
size_t class_size;
|
|
|
|
|
|
|
|
size_t instance_size;
|
|
|
|
|
|
|
|
void (*class_init)(ObjectClass *klass, void *data);
|
2012-05-02 13:30:55 +02:00
|
|
|
void (*class_base_init)(ObjectClass *klass, void *data);
|
2011-12-04 00:10:08 +01:00
|
|
|
void (*class_finalize)(ObjectClass *klass, void *data);
|
|
|
|
|
|
|
|
void *class_data;
|
|
|
|
|
|
|
|
void (*instance_init)(Object *obj);
|
|
|
|
void (*instance_finalize)(Object *obj);
|
|
|
|
|
|
|
|
bool abstract;
|
|
|
|
|
|
|
|
const char *parent;
|
|
|
|
TypeImpl *parent_type;
|
|
|
|
|
|
|
|
ObjectClass *class;
|
|
|
|
|
|
|
|
int num_interfaces;
|
|
|
|
InterfaceImpl interfaces[MAX_INTERFACES];
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct Interface
|
|
|
|
{
|
|
|
|
Object parent;
|
|
|
|
Object *obj;
|
|
|
|
} Interface;
|
|
|
|
|
|
|
|
#define INTERFACE(obj) OBJECT_CHECK(Interface, obj, TYPE_INTERFACE)
|
|
|
|
|
2012-02-03 11:51:39 +01:00
|
|
|
static Type type_interface;
|
|
|
|
|
2011-12-04 00:10:08 +01:00
|
|
|
static GHashTable *type_table_get(void)
|
|
|
|
{
|
|
|
|
static GHashTable *type_table;
|
|
|
|
|
|
|
|
if (type_table == NULL) {
|
|
|
|
type_table = g_hash_table_new(g_str_hash, g_str_equal);
|
|
|
|
}
|
|
|
|
|
|
|
|
return type_table;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void type_table_add(TypeImpl *ti)
|
|
|
|
{
|
|
|
|
g_hash_table_insert(type_table_get(), (void *)ti->name, ti);
|
|
|
|
}
|
|
|
|
|
|
|
|
static TypeImpl *type_table_lookup(const char *name)
|
|
|
|
{
|
|
|
|
return g_hash_table_lookup(type_table_get(), name);
|
|
|
|
}
|
|
|
|
|
2012-04-04 15:58:40 +02:00
|
|
|
static TypeImpl *type_register_internal(const TypeInfo *info)
|
2011-12-04 00:10:08 +01:00
|
|
|
{
|
|
|
|
TypeImpl *ti = g_malloc0(sizeof(*ti));
|
|
|
|
|
|
|
|
g_assert(info->name != NULL);
|
|
|
|
|
2012-01-25 20:37:36 +01:00
|
|
|
if (type_table_lookup(info->name) != NULL) {
|
|
|
|
fprintf(stderr, "Registering `%s' which already exists\n", info->name);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2011-12-04 00:10:08 +01:00
|
|
|
ti->name = g_strdup(info->name);
|
|
|
|
ti->parent = g_strdup(info->parent);
|
|
|
|
|
|
|
|
ti->class_size = info->class_size;
|
|
|
|
ti->instance_size = info->instance_size;
|
|
|
|
|
|
|
|
ti->class_init = info->class_init;
|
2012-05-02 13:30:55 +02:00
|
|
|
ti->class_base_init = info->class_base_init;
|
2011-12-04 00:10:08 +01:00
|
|
|
ti->class_finalize = info->class_finalize;
|
|
|
|
ti->class_data = info->class_data;
|
|
|
|
|
|
|
|
ti->instance_init = info->instance_init;
|
|
|
|
ti->instance_finalize = info->instance_finalize;
|
|
|
|
|
|
|
|
ti->abstract = info->abstract;
|
|
|
|
|
|
|
|
if (info->interfaces) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; info->interfaces[i].type; i++) {
|
|
|
|
ti->interfaces[i].parent = info->interfaces[i].type;
|
|
|
|
ti->interfaces[i].interface_initfn = info->interfaces[i].interface_initfn;
|
|
|
|
ti->num_interfaces++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type_table_add(ti);
|
|
|
|
|
|
|
|
return ti;
|
|
|
|
}
|
|
|
|
|
2012-04-04 15:58:40 +02:00
|
|
|
TypeImpl *type_register(const TypeInfo *info)
|
|
|
|
{
|
|
|
|
assert(info->parent);
|
|
|
|
return type_register_internal(info);
|
|
|
|
}
|
|
|
|
|
2011-12-04 00:10:08 +01:00
|
|
|
TypeImpl *type_register_static(const TypeInfo *info)
|
|
|
|
{
|
|
|
|
return type_register(info);
|
|
|
|
}
|
|
|
|
|
|
|
|
static TypeImpl *type_get_by_name(const char *name)
|
|
|
|
{
|
|
|
|
if (name == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return type_table_lookup(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static TypeImpl *type_get_parent(TypeImpl *type)
|
|
|
|
{
|
|
|
|
if (!type->parent_type && type->parent) {
|
|
|
|
type->parent_type = type_get_by_name(type->parent);
|
|
|
|
g_assert(type->parent_type != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return type->parent_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool type_has_parent(TypeImpl *type)
|
|
|
|
{
|
|
|
|
return (type->parent != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t type_class_get_size(TypeImpl *ti)
|
|
|
|
{
|
|
|
|
if (ti->class_size) {
|
|
|
|
return ti->class_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type_has_parent(ti)) {
|
|
|
|
return type_class_get_size(type_get_parent(ti));
|
|
|
|
}
|
|
|
|
|
|
|
|
return sizeof(ObjectClass);
|
|
|
|
}
|
|
|
|
|
2012-02-28 12:57:10 +01:00
|
|
|
static size_t type_object_get_size(TypeImpl *ti)
|
|
|
|
{
|
|
|
|
if (ti->instance_size) {
|
|
|
|
return ti->instance_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type_has_parent(ti)) {
|
|
|
|
return type_object_get_size(type_get_parent(ti));
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-04 00:10:08 +01:00
|
|
|
static void type_class_interface_init(TypeImpl *ti, InterfaceImpl *iface)
|
|
|
|
{
|
|
|
|
TypeInfo info = {
|
|
|
|
.instance_size = sizeof(Interface),
|
|
|
|
.parent = iface->parent,
|
|
|
|
.class_size = sizeof(InterfaceClass),
|
|
|
|
.class_init = iface->interface_initfn,
|
|
|
|
.abstract = true,
|
|
|
|
};
|
|
|
|
char *name = g_strdup_printf("<%s::%s>", ti->name, iface->parent);
|
|
|
|
|
|
|
|
info.name = name;
|
2012-04-04 15:58:40 +02:00
|
|
|
iface->type = type_register_internal(&info);
|
2011-12-04 00:10:08 +01:00
|
|
|
g_free(name);
|
|
|
|
}
|
|
|
|
|
2012-02-28 12:57:11 +01:00
|
|
|
static void type_initialize(TypeImpl *ti)
|
2011-12-04 00:10:08 +01:00
|
|
|
{
|
2012-03-31 16:45:54 +02:00
|
|
|
TypeImpl *parent;
|
2011-12-04 00:10:08 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (ti->class) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ti->class_size = type_class_get_size(ti);
|
2012-02-28 12:57:10 +01:00
|
|
|
ti->instance_size = type_object_get_size(ti);
|
2011-12-04 00:10:08 +01:00
|
|
|
|
|
|
|
ti->class = g_malloc0(ti->class_size);
|
|
|
|
|
2012-03-31 16:45:54 +02:00
|
|
|
parent = type_get_parent(ti);
|
|
|
|
if (parent) {
|
2012-02-28 12:57:11 +01:00
|
|
|
type_initialize(parent);
|
2011-12-04 00:10:08 +01:00
|
|
|
|
|
|
|
g_assert(parent->class_size <= ti->class_size);
|
2012-03-31 16:45:54 +02:00
|
|
|
memcpy(ti->class, parent->class, parent->class_size);
|
|
|
|
}
|
2011-12-04 00:10:08 +01:00
|
|
|
|
2012-03-31 16:45:54 +02:00
|
|
|
ti->class->type = ti;
|
2012-05-02 13:30:55 +02:00
|
|
|
|
2012-03-31 16:45:54 +02:00
|
|
|
while (parent) {
|
|
|
|
if (parent->class_base_init) {
|
|
|
|
parent->class_base_init(ti->class, ti->class_data);
|
2012-05-02 13:30:55 +02:00
|
|
|
}
|
2012-03-31 16:45:54 +02:00
|
|
|
parent = type_get_parent(parent);
|
2011-12-04 00:10:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ti->num_interfaces; i++) {
|
|
|
|
type_class_interface_init(ti, &ti->interfaces[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ti->class_init) {
|
|
|
|
ti->class_init(ti->class, ti->class_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void object_interface_init(Object *obj, InterfaceImpl *iface)
|
|
|
|
{
|
|
|
|
TypeImpl *ti = iface->type;
|
|
|
|
Interface *iface_obj;
|
|
|
|
|
|
|
|
iface_obj = INTERFACE(object_new(ti->name));
|
|
|
|
iface_obj->obj = obj;
|
|
|
|
|
|
|
|
obj->interfaces = g_slist_prepend(obj->interfaces, iface_obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void object_init_with_type(Object *obj, TypeImpl *ti)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (type_has_parent(ti)) {
|
|
|
|
object_init_with_type(obj, type_get_parent(ti));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ti->num_interfaces; i++) {
|
|
|
|
object_interface_init(obj, &ti->interfaces[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ti->instance_init) {
|
|
|
|
ti->instance_init(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_initialize_with_type(void *data, TypeImpl *type)
|
|
|
|
{
|
|
|
|
Object *obj = data;
|
|
|
|
|
|
|
|
g_assert(type != NULL);
|
2012-02-28 12:57:11 +01:00
|
|
|
type_initialize(type);
|
2012-02-28 12:57:10 +01:00
|
|
|
|
|
|
|
g_assert(type->instance_size >= sizeof(Object));
|
2011-12-04 00:10:08 +01:00
|
|
|
g_assert(type->abstract == false);
|
|
|
|
|
|
|
|
memset(obj, 0, type->instance_size);
|
|
|
|
obj->class = type->class;
|
2012-01-30 15:55:55 +01:00
|
|
|
QTAILQ_INIT(&obj->properties);
|
2011-12-04 00:10:08 +01:00
|
|
|
object_init_with_type(obj, type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_initialize(void *data, const char *typename)
|
|
|
|
{
|
|
|
|
TypeImpl *type = type_get_by_name(typename);
|
|
|
|
|
|
|
|
object_initialize_with_type(data, type);
|
|
|
|
}
|
|
|
|
|
2012-05-27 00:32:40 +02:00
|
|
|
static inline bool object_property_is_child(ObjectProperty *prop)
|
|
|
|
{
|
|
|
|
return strstart(prop->type, "child<", NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool object_property_is_link(ObjectProperty *prop)
|
|
|
|
{
|
|
|
|
return strstart(prop->type, "link<", NULL);
|
|
|
|
}
|
|
|
|
|
2012-01-30 15:55:55 +01:00
|
|
|
static void object_property_del_all(Object *obj)
|
|
|
|
{
|
|
|
|
while (!QTAILQ_EMPTY(&obj->properties)) {
|
|
|
|
ObjectProperty *prop = QTAILQ_FIRST(&obj->properties);
|
|
|
|
|
|
|
|
QTAILQ_REMOVE(&obj->properties, prop, node);
|
|
|
|
|
|
|
|
if (prop->release) {
|
|
|
|
prop->release(obj, prop->name, prop->opaque);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(prop->name);
|
|
|
|
g_free(prop->type);
|
|
|
|
g_free(prop);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void object_property_del_child(Object *obj, Object *child, Error **errp)
|
|
|
|
{
|
|
|
|
ObjectProperty *prop;
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(prop, &obj->properties, node) {
|
2012-05-27 00:32:40 +02:00
|
|
|
if (object_property_is_child(prop) && prop->opaque == child) {
|
2012-01-30 15:55:55 +01:00
|
|
|
object_property_del(obj, prop->name, errp);
|
2012-02-28 09:54:15 +01:00
|
|
|
break;
|
2012-01-30 15:55:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_unparent(Object *obj)
|
|
|
|
{
|
|
|
|
if (obj->parent) {
|
|
|
|
object_property_del_child(obj->parent, obj, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-04 00:10:08 +01:00
|
|
|
static void object_deinit(Object *obj, TypeImpl *type)
|
|
|
|
{
|
|
|
|
if (type->instance_finalize) {
|
|
|
|
type->instance_finalize(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (obj->interfaces) {
|
|
|
|
Interface *iface_obj = obj->interfaces->data;
|
|
|
|
obj->interfaces = g_slist_delete_link(obj->interfaces, obj->interfaces);
|
|
|
|
object_delete(OBJECT(iface_obj));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type_has_parent(type)) {
|
|
|
|
object_deinit(obj, type_get_parent(type));
|
|
|
|
}
|
2012-01-30 15:55:55 +01:00
|
|
|
|
|
|
|
object_unparent(obj);
|
2011-12-04 00:10:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void object_finalize(void *data)
|
|
|
|
{
|
|
|
|
Object *obj = data;
|
|
|
|
TypeImpl *ti = obj->class->type;
|
|
|
|
|
|
|
|
object_deinit(obj, ti);
|
2012-01-30 15:55:55 +01:00
|
|
|
object_property_del_all(obj);
|
2011-12-23 15:47:39 +01:00
|
|
|
|
|
|
|
g_assert(obj->ref == 0);
|
2011-12-04 00:10:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Object *object_new_with_type(Type type)
|
|
|
|
{
|
|
|
|
Object *obj;
|
|
|
|
|
|
|
|
g_assert(type != NULL);
|
2012-02-28 12:57:11 +01:00
|
|
|
type_initialize(type);
|
2011-12-04 00:10:08 +01:00
|
|
|
|
|
|
|
obj = g_malloc(type->instance_size);
|
|
|
|
object_initialize_with_type(obj, type);
|
2011-12-23 15:47:39 +01:00
|
|
|
object_ref(obj);
|
2011-12-04 00:10:08 +01:00
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
Object *object_new(const char *typename)
|
|
|
|
{
|
|
|
|
TypeImpl *ti = type_get_by_name(typename);
|
|
|
|
|
|
|
|
return object_new_with_type(ti);
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_delete(Object *obj)
|
|
|
|
{
|
2011-12-23 15:47:39 +01:00
|
|
|
object_unref(obj);
|
|
|
|
g_assert(obj->ref == 0);
|
2011-12-04 00:10:08 +01:00
|
|
|
g_free(obj);
|
|
|
|
}
|
|
|
|
|
2012-02-03 11:57:23 +01:00
|
|
|
static bool type_is_ancestor(TypeImpl *type, TypeImpl *target_type)
|
2011-12-04 00:10:08 +01:00
|
|
|
{
|
2012-02-03 11:57:23 +01:00
|
|
|
assert(target_type);
|
2011-12-04 00:10:08 +01:00
|
|
|
|
|
|
|
/* Check if typename is a direct ancestor of type */
|
|
|
|
while (type) {
|
|
|
|
if (type == target_type) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
type = type_get_parent(type);
|
|
|
|
}
|
|
|
|
|
2012-02-03 11:57:23 +01:00
|
|
|
return false;
|
|
|
|
}
|
2011-12-04 00:10:08 +01:00
|
|
|
|
2012-02-03 11:51:39 +01:00
|
|
|
static bool object_is_type(Object *obj, TypeImpl *target_type)
|
2012-02-03 11:57:23 +01:00
|
|
|
{
|
2012-02-03 11:51:39 +01:00
|
|
|
return !target_type || type_is_ancestor(obj->class->type, target_type);
|
2011-12-04 00:10:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Object *object_dynamic_cast(Object *obj, const char *typename)
|
|
|
|
{
|
2012-02-03 11:51:39 +01:00
|
|
|
TypeImpl *target_type = type_get_by_name(typename);
|
2011-12-04 00:10:08 +01:00
|
|
|
GSList *i;
|
|
|
|
|
2012-02-03 11:57:23 +01:00
|
|
|
/* Check if typename is a direct ancestor. Special-case TYPE_OBJECT,
|
|
|
|
* we want to go back from interfaces to the parent.
|
|
|
|
*/
|
2012-02-03 11:51:39 +01:00
|
|
|
if (target_type && object_is_type(obj, target_type)) {
|
2012-02-03 11:57:23 +01:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if obj is an interface and its containing object is a direct
|
|
|
|
* ancestor of typename. In principle we could do this test at the very
|
|
|
|
* beginning of object_dynamic_cast, avoiding a second call to
|
|
|
|
* object_is_type. However, casting between interfaces is relatively
|
2012-02-03 11:51:39 +01:00
|
|
|
* rare, and object_is_type(obj, type_interface) would fail almost always.
|
2012-02-03 11:57:23 +01:00
|
|
|
*
|
|
|
|
* Perhaps we could add a magic value to the object header for increased
|
|
|
|
* (run-time) type safety and to speed up tests like this one. If we ever
|
|
|
|
* do that we can revisit the order here.
|
|
|
|
*/
|
2012-02-03 11:51:39 +01:00
|
|
|
if (object_is_type(obj, type_interface)) {
|
2012-02-03 11:57:23 +01:00
|
|
|
assert(!obj->interfaces);
|
|
|
|
obj = INTERFACE(obj)->obj;
|
2012-02-03 11:51:39 +01:00
|
|
|
if (object_is_type(obj, target_type)) {
|
2012-02-03 11:57:23 +01:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-03 11:51:39 +01:00
|
|
|
if (!target_type) {
|
2011-12-04 00:10:08 +01:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if obj has an interface of typename */
|
|
|
|
for (i = obj->interfaces; i; i = i->next) {
|
|
|
|
Interface *iface = i->data;
|
|
|
|
|
2012-02-03 11:51:39 +01:00
|
|
|
if (object_is_type(OBJECT(iface), target_type)) {
|
2011-12-04 00:10:08 +01:00
|
|
|
return OBJECT(iface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Object *object_dynamic_cast_assert(Object *obj, const char *typename)
|
|
|
|
{
|
|
|
|
Object *inst;
|
|
|
|
|
|
|
|
inst = object_dynamic_cast(obj, typename);
|
|
|
|
|
|
|
|
if (!inst) {
|
|
|
|
fprintf(stderr, "Object %p is not an instance of type %s\n",
|
|
|
|
obj, typename);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return inst;
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjectClass *object_class_dynamic_cast(ObjectClass *class,
|
|
|
|
const char *typename)
|
|
|
|
{
|
|
|
|
TypeImpl *target_type = type_get_by_name(typename);
|
|
|
|
TypeImpl *type = class->type;
|
|
|
|
|
|
|
|
while (type) {
|
|
|
|
if (type == target_type) {
|
|
|
|
return class;
|
|
|
|
}
|
|
|
|
|
|
|
|
type = type_get_parent(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjectClass *object_class_dynamic_cast_assert(ObjectClass *class,
|
|
|
|
const char *typename)
|
|
|
|
{
|
|
|
|
ObjectClass *ret = object_class_dynamic_cast(class, typename);
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
fprintf(stderr, "Object %p is not an instance of type %s\n",
|
|
|
|
class, typename);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *object_get_typename(Object *obj)
|
|
|
|
{
|
|
|
|
return obj->class->type->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjectClass *object_get_class(Object *obj)
|
|
|
|
{
|
|
|
|
return obj->class;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *object_class_get_name(ObjectClass *klass)
|
|
|
|
{
|
|
|
|
return klass->type->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjectClass *object_class_by_name(const char *typename)
|
|
|
|
{
|
|
|
|
TypeImpl *type = type_get_by_name(typename);
|
|
|
|
|
|
|
|
if (!type) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-02-28 12:57:11 +01:00
|
|
|
type_initialize(type);
|
2011-12-04 00:10:08 +01:00
|
|
|
|
|
|
|
return type->class;
|
|
|
|
}
|
|
|
|
|
2012-05-02 13:30:54 +02:00
|
|
|
ObjectClass *object_class_get_parent(ObjectClass *class)
|
|
|
|
{
|
|
|
|
TypeImpl *type = type_get_parent(class->type);
|
|
|
|
|
|
|
|
if (!type) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
type_initialize(type);
|
|
|
|
|
|
|
|
return type->class;
|
|
|
|
}
|
|
|
|
|
2011-12-04 00:10:08 +01:00
|
|
|
typedef struct OCFData
|
|
|
|
{
|
|
|
|
void (*fn)(ObjectClass *klass, void *opaque);
|
2011-12-22 21:11:53 +01:00
|
|
|
const char *implements_type;
|
|
|
|
bool include_abstract;
|
2011-12-04 00:10:08 +01:00
|
|
|
void *opaque;
|
|
|
|
} OCFData;
|
|
|
|
|
|
|
|
static void object_class_foreach_tramp(gpointer key, gpointer value,
|
|
|
|
gpointer opaque)
|
|
|
|
{
|
|
|
|
OCFData *data = opaque;
|
|
|
|
TypeImpl *type = value;
|
2011-12-22 21:11:53 +01:00
|
|
|
ObjectClass *k;
|
2011-12-04 00:10:08 +01:00
|
|
|
|
2012-02-28 12:57:11 +01:00
|
|
|
type_initialize(type);
|
2011-12-22 21:11:53 +01:00
|
|
|
k = type->class;
|
2011-12-04 00:10:08 +01:00
|
|
|
|
2011-12-22 21:11:53 +01:00
|
|
|
if (!data->include_abstract && type->abstract) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data->implements_type &&
|
|
|
|
!object_class_dynamic_cast(k, data->implements_type)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
data->fn(k, data->opaque);
|
2011-12-04 00:10:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void object_class_foreach(void (*fn)(ObjectClass *klass, void *opaque),
|
2011-12-22 21:11:53 +01:00
|
|
|
const char *implements_type, bool include_abstract,
|
2011-12-04 00:10:08 +01:00
|
|
|
void *opaque)
|
|
|
|
{
|
2011-12-22 21:11:53 +01:00
|
|
|
OCFData data = { fn, implements_type, include_abstract, opaque };
|
2011-12-04 00:10:08 +01:00
|
|
|
|
|
|
|
g_hash_table_foreach(type_table_get(), object_class_foreach_tramp, &data);
|
|
|
|
}
|
2012-01-30 15:55:55 +01:00
|
|
|
|
2012-04-11 23:30:20 +02:00
|
|
|
int object_child_foreach(Object *obj, int (*fn)(Object *child, void *opaque),
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
ObjectProperty *prop;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(prop, &obj->properties, node) {
|
|
|
|
if (object_property_is_child(prop)) {
|
|
|
|
ret = fn(prop->opaque, opaque);
|
|
|
|
if (ret != 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-02-25 23:07:34 +01:00
|
|
|
static void object_class_get_list_tramp(ObjectClass *klass, void *opaque)
|
|
|
|
{
|
|
|
|
GSList **list = opaque;
|
|
|
|
|
|
|
|
*list = g_slist_prepend(*list, klass);
|
|
|
|
}
|
|
|
|
|
|
|
|
GSList *object_class_get_list(const char *implements_type,
|
|
|
|
bool include_abstract)
|
|
|
|
{
|
|
|
|
GSList *list = NULL;
|
|
|
|
|
|
|
|
object_class_foreach(object_class_get_list_tramp,
|
|
|
|
implements_type, include_abstract, &list);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2012-01-30 15:55:55 +01:00
|
|
|
void object_ref(Object *obj)
|
|
|
|
{
|
|
|
|
obj->ref++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_unref(Object *obj)
|
|
|
|
{
|
|
|
|
g_assert(obj->ref > 0);
|
|
|
|
obj->ref--;
|
|
|
|
|
|
|
|
/* parent always holds a reference to its children */
|
|
|
|
if (obj->ref == 0) {
|
|
|
|
object_finalize(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_property_add(Object *obj, const char *name, const char *type,
|
|
|
|
ObjectPropertyAccessor *get,
|
|
|
|
ObjectPropertyAccessor *set,
|
|
|
|
ObjectPropertyRelease *release,
|
|
|
|
void *opaque, Error **errp)
|
|
|
|
{
|
|
|
|
ObjectProperty *prop = g_malloc0(sizeof(*prop));
|
|
|
|
|
|
|
|
prop->name = g_strdup(name);
|
|
|
|
prop->type = g_strdup(type);
|
|
|
|
|
|
|
|
prop->get = get;
|
|
|
|
prop->set = set;
|
|
|
|
prop->release = release;
|
|
|
|
prop->opaque = opaque;
|
|
|
|
|
|
|
|
QTAILQ_INSERT_TAIL(&obj->properties, prop, node);
|
|
|
|
}
|
|
|
|
|
2012-04-12 18:00:18 +02:00
|
|
|
ObjectProperty *object_property_find(Object *obj, const char *name,
|
|
|
|
Error **errp)
|
2012-01-30 15:55:55 +01:00
|
|
|
{
|
|
|
|
ObjectProperty *prop;
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(prop, &obj->properties, node) {
|
|
|
|
if (strcmp(prop->name, name) == 0) {
|
|
|
|
return prop;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-12 18:00:18 +02:00
|
|
|
error_set(errp, QERR_PROPERTY_NOT_FOUND, "", name);
|
2012-01-30 15:55:55 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_property_del(Object *obj, const char *name, Error **errp)
|
|
|
|
{
|
2012-04-12 18:00:18 +02:00
|
|
|
ObjectProperty *prop = object_property_find(obj, name, errp);
|
2011-12-23 22:34:39 +01:00
|
|
|
if (prop == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2012-01-30 15:55:55 +01:00
|
|
|
|
2011-12-23 22:34:39 +01:00
|
|
|
if (prop->release) {
|
|
|
|
prop->release(obj, name, prop->opaque);
|
|
|
|
}
|
|
|
|
|
|
|
|
QTAILQ_REMOVE(&obj->properties, prop, node);
|
2012-01-30 15:55:55 +01:00
|
|
|
|
|
|
|
g_free(prop->name);
|
|
|
|
g_free(prop->type);
|
|
|
|
g_free(prop);
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_property_get(Object *obj, Visitor *v, const char *name,
|
|
|
|
Error **errp)
|
|
|
|
{
|
2012-04-12 18:00:18 +02:00
|
|
|
ObjectProperty *prop = object_property_find(obj, name, errp);
|
2012-01-30 15:55:55 +01:00
|
|
|
if (prop == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!prop->get) {
|
|
|
|
error_set(errp, QERR_PERMISSION_DENIED);
|
|
|
|
} else {
|
|
|
|
prop->get(obj, v, prop->opaque, name, errp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_property_set(Object *obj, Visitor *v, const char *name,
|
|
|
|
Error **errp)
|
|
|
|
{
|
2012-04-12 18:00:18 +02:00
|
|
|
ObjectProperty *prop = object_property_find(obj, name, errp);
|
2012-01-30 15:55:55 +01:00
|
|
|
if (prop == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!prop->set) {
|
|
|
|
error_set(errp, QERR_PERMISSION_DENIED);
|
|
|
|
} else {
|
|
|
|
prop->set(obj, v, prop->opaque, name, errp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 17:16:22 +01:00
|
|
|
void object_property_set_str(Object *obj, const char *value,
|
|
|
|
const char *name, Error **errp)
|
|
|
|
{
|
|
|
|
QString *qstr = qstring_from_str(value);
|
|
|
|
object_property_set_qobject(obj, QOBJECT(qstr), name, errp);
|
|
|
|
|
|
|
|
QDECREF(qstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *object_property_get_str(Object *obj, const char *name,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
QObject *ret = object_property_get_qobject(obj, name, errp);
|
|
|
|
QString *qstring;
|
|
|
|
char *retval;
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
qstring = qobject_to_qstring(ret);
|
|
|
|
if (!qstring) {
|
|
|
|
error_set(errp, QERR_INVALID_PARAMETER_TYPE, name, "string");
|
|
|
|
retval = NULL;
|
|
|
|
} else {
|
|
|
|
retval = g_strdup(qstring_get_str(qstring));
|
|
|
|
}
|
|
|
|
|
|
|
|
QDECREF(qstring);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-02-02 10:51:57 +01:00
|
|
|
void object_property_set_link(Object *obj, Object *value,
|
|
|
|
const char *name, Error **errp)
|
|
|
|
{
|
|
|
|
object_property_set_str(obj, object_get_canonical_path(value),
|
|
|
|
name, errp);
|
|
|
|
}
|
|
|
|
|
|
|
|
Object *object_property_get_link(Object *obj, const char *name,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
char *str = object_property_get_str(obj, name, errp);
|
|
|
|
Object *target = NULL;
|
|
|
|
|
|
|
|
if (str && *str) {
|
|
|
|
target = object_resolve_path(str, NULL);
|
|
|
|
if (!target) {
|
|
|
|
error_set(errp, QERR_DEVICE_NOT_FOUND, str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(str);
|
|
|
|
return target;
|
|
|
|
}
|
|
|
|
|
2012-02-01 17:16:22 +01:00
|
|
|
void object_property_set_bool(Object *obj, bool value,
|
|
|
|
const char *name, Error **errp)
|
|
|
|
{
|
|
|
|
QBool *qbool = qbool_from_int(value);
|
|
|
|
object_property_set_qobject(obj, QOBJECT(qbool), name, errp);
|
|
|
|
|
|
|
|
QDECREF(qbool);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool object_property_get_bool(Object *obj, const char *name,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
QObject *ret = object_property_get_qobject(obj, name, errp);
|
|
|
|
QBool *qbool;
|
|
|
|
bool retval;
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
qbool = qobject_to_qbool(ret);
|
|
|
|
if (!qbool) {
|
|
|
|
error_set(errp, QERR_INVALID_PARAMETER_TYPE, name, "boolean");
|
|
|
|
retval = false;
|
|
|
|
} else {
|
|
|
|
retval = qbool_get_int(qbool);
|
|
|
|
}
|
|
|
|
|
|
|
|
QDECREF(qbool);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_property_set_int(Object *obj, int64_t value,
|
|
|
|
const char *name, Error **errp)
|
|
|
|
{
|
|
|
|
QInt *qint = qint_from_int(value);
|
|
|
|
object_property_set_qobject(obj, QOBJECT(qint), name, errp);
|
|
|
|
|
|
|
|
QDECREF(qint);
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t object_property_get_int(Object *obj, const char *name,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
QObject *ret = object_property_get_qobject(obj, name, errp);
|
|
|
|
QInt *qint;
|
|
|
|
int64_t retval;
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
qint = qobject_to_qint(ret);
|
|
|
|
if (!qint) {
|
|
|
|
error_set(errp, QERR_INVALID_PARAMETER_TYPE, name, "int");
|
|
|
|
retval = -1;
|
|
|
|
} else {
|
|
|
|
retval = qint_get_int(qint);
|
|
|
|
}
|
|
|
|
|
|
|
|
QDECREF(qint);
|
|
|
|
return retval;
|
2012-02-09 09:52:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void object_property_parse(Object *obj, const char *string,
|
|
|
|
const char *name, Error **errp)
|
|
|
|
{
|
|
|
|
StringInputVisitor *mi;
|
|
|
|
mi = string_input_visitor_new(string);
|
|
|
|
object_property_set(obj, string_input_get_visitor(mi), name, errp);
|
|
|
|
|
|
|
|
string_input_visitor_cleanup(mi);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *object_property_print(Object *obj, const char *name,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
StringOutputVisitor *mo;
|
|
|
|
char *string;
|
|
|
|
|
|
|
|
mo = string_output_visitor_new();
|
2012-05-02 13:31:00 +02:00
|
|
|
object_property_get(obj, string_output_get_visitor(mo), name, errp);
|
2012-02-09 09:52:59 +01:00
|
|
|
string = string_output_get_string(mo);
|
|
|
|
string_output_visitor_cleanup(mo);
|
|
|
|
return string;
|
2012-02-01 17:16:22 +01:00
|
|
|
}
|
|
|
|
|
2012-01-30 15:55:55 +01:00
|
|
|
const char *object_property_get_type(Object *obj, const char *name, Error **errp)
|
|
|
|
{
|
2012-04-12 18:00:18 +02:00
|
|
|
ObjectProperty *prop = object_property_find(obj, name, errp);
|
2012-01-30 15:55:55 +01:00
|
|
|
if (prop == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return prop->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
Object *object_get_root(void)
|
|
|
|
{
|
2011-12-23 16:08:05 +01:00
|
|
|
static Object *root;
|
2012-01-30 15:55:55 +01:00
|
|
|
|
2011-12-23 16:08:05 +01:00
|
|
|
if (!root) {
|
|
|
|
root = object_new("container");
|
2012-01-30 15:55:55 +01:00
|
|
|
}
|
|
|
|
|
2011-12-23 16:08:05 +01:00
|
|
|
return root;
|
2012-01-30 15:55:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void object_get_child_property(Object *obj, Visitor *v, void *opaque,
|
|
|
|
const char *name, Error **errp)
|
|
|
|
{
|
|
|
|
Object *child = opaque;
|
|
|
|
gchar *path;
|
|
|
|
|
|
|
|
path = object_get_canonical_path(child);
|
|
|
|
visit_type_str(v, &path, name, errp);
|
|
|
|
g_free(path);
|
|
|
|
}
|
|
|
|
|
2011-12-23 15:47:39 +01:00
|
|
|
static void object_finalize_child_property(Object *obj, const char *name,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
Object *child = opaque;
|
|
|
|
|
|
|
|
object_unref(child);
|
|
|
|
}
|
|
|
|
|
2012-01-30 15:55:55 +01:00
|
|
|
void object_property_add_child(Object *obj, const char *name,
|
|
|
|
Object *child, Error **errp)
|
|
|
|
{
|
|
|
|
gchar *type;
|
|
|
|
|
2012-02-03 15:59:53 +01:00
|
|
|
/* Registering an interface object in the composition tree will mightily
|
|
|
|
* confuse object_get_canonical_path (which, on the other hand, knows how
|
|
|
|
* to get the canonical path of an interface object).
|
|
|
|
*/
|
|
|
|
assert(!object_is_type(obj, type_interface));
|
|
|
|
|
2012-01-30 15:55:55 +01:00
|
|
|
type = g_strdup_printf("child<%s>", object_get_typename(OBJECT(child)));
|
|
|
|
|
|
|
|
object_property_add(obj, name, type, object_get_child_property,
|
2011-12-23 15:47:39 +01:00
|
|
|
NULL, object_finalize_child_property, child, errp);
|
2012-01-30 15:55:55 +01:00
|
|
|
|
|
|
|
object_ref(child);
|
|
|
|
g_assert(child->parent == NULL);
|
|
|
|
child->parent = obj;
|
|
|
|
|
|
|
|
g_free(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void object_get_link_property(Object *obj, Visitor *v, void *opaque,
|
|
|
|
const char *name, Error **errp)
|
|
|
|
{
|
|
|
|
Object **child = opaque;
|
|
|
|
gchar *path;
|
|
|
|
|
|
|
|
if (*child) {
|
|
|
|
path = object_get_canonical_path(*child);
|
|
|
|
visit_type_str(v, &path, name, errp);
|
|
|
|
g_free(path);
|
|
|
|
} else {
|
|
|
|
path = (gchar *)"";
|
|
|
|
visit_type_str(v, &path, name, errp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void object_set_link_property(Object *obj, Visitor *v, void *opaque,
|
|
|
|
const char *name, Error **errp)
|
|
|
|
{
|
|
|
|
Object **child = opaque;
|
2012-02-22 18:22:26 +01:00
|
|
|
Object *old_target;
|
2012-01-30 15:55:55 +01:00
|
|
|
bool ambiguous = false;
|
|
|
|
const char *type;
|
|
|
|
char *path;
|
2012-02-02 12:37:53 +01:00
|
|
|
gchar *target_type;
|
2012-01-30 15:55:55 +01:00
|
|
|
|
|
|
|
type = object_property_get_type(obj, name, NULL);
|
|
|
|
|
|
|
|
visit_type_str(v, &path, name, errp);
|
|
|
|
|
2012-02-22 18:22:26 +01:00
|
|
|
old_target = *child;
|
|
|
|
*child = NULL;
|
2012-01-30 15:55:55 +01:00
|
|
|
|
|
|
|
if (strcmp(path, "") != 0) {
|
|
|
|
Object *target;
|
|
|
|
|
2012-02-02 12:37:53 +01:00
|
|
|
/* Go from link<FOO> to FOO. */
|
|
|
|
target_type = g_strndup(&type[5], strlen(type) - 6);
|
|
|
|
target = object_resolve_path_type(path, target_type, &ambiguous);
|
2012-01-30 15:55:55 +01:00
|
|
|
|
2012-02-02 12:37:53 +01:00
|
|
|
if (ambiguous) {
|
|
|
|
error_set(errp, QERR_AMBIGUOUS_PATH, path);
|
|
|
|
} else if (target) {
|
|
|
|
object_ref(target);
|
|
|
|
*child = target;
|
2012-01-30 15:55:55 +01:00
|
|
|
} else {
|
2012-02-02 12:37:53 +01:00
|
|
|
target = object_resolve_path(path, &ambiguous);
|
|
|
|
if (target || ambiguous) {
|
|
|
|
error_set(errp, QERR_INVALID_PARAMETER_TYPE, name, target_type);
|
|
|
|
} else {
|
|
|
|
error_set(errp, QERR_DEVICE_NOT_FOUND, path);
|
|
|
|
}
|
2012-01-30 15:55:55 +01:00
|
|
|
}
|
2012-02-02 12:37:53 +01:00
|
|
|
g_free(target_type);
|
2012-01-30 15:55:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free(path);
|
2012-02-22 18:22:26 +01:00
|
|
|
|
|
|
|
if (old_target != NULL) {
|
|
|
|
object_unref(old_target);
|
|
|
|
}
|
2012-01-30 15:55:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void object_property_add_link(Object *obj, const char *name,
|
|
|
|
const char *type, Object **child,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
gchar *full_type;
|
|
|
|
|
|
|
|
full_type = g_strdup_printf("link<%s>", type);
|
|
|
|
|
|
|
|
object_property_add(obj, name, full_type,
|
|
|
|
object_get_link_property,
|
|
|
|
object_set_link_property,
|
|
|
|
NULL, child, errp);
|
|
|
|
|
|
|
|
g_free(full_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar *object_get_canonical_path(Object *obj)
|
|
|
|
{
|
|
|
|
Object *root = object_get_root();
|
|
|
|
char *newpath = NULL, *path = NULL;
|
|
|
|
|
2012-02-03 15:59:53 +01:00
|
|
|
if (object_is_type(obj, type_interface)) {
|
|
|
|
obj = INTERFACE(obj)->obj;
|
|
|
|
}
|
|
|
|
|
2012-01-30 15:55:55 +01:00
|
|
|
while (obj != root) {
|
|
|
|
ObjectProperty *prop = NULL;
|
|
|
|
|
|
|
|
g_assert(obj->parent != NULL);
|
|
|
|
|
|
|
|
QTAILQ_FOREACH(prop, &obj->parent->properties, node) {
|
2012-05-27 00:32:40 +02:00
|
|
|
if (!object_property_is_child(prop)) {
|
2012-01-30 15:55:55 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prop->opaque == obj) {
|
|
|
|
if (path) {
|
|
|
|
newpath = g_strdup_printf("%s/%s", prop->name, path);
|
|
|
|
g_free(path);
|
|
|
|
path = newpath;
|
|
|
|
} else {
|
|
|
|
path = g_strdup(prop->name);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert(prop != NULL);
|
|
|
|
|
|
|
|
obj = obj->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
newpath = g_strdup_printf("/%s", path);
|
|
|
|
g_free(path);
|
|
|
|
|
|
|
|
return newpath;
|
|
|
|
}
|
|
|
|
|
2012-03-27 18:38:45 +02:00
|
|
|
Object *object_resolve_path_component(Object *parent, gchar *part)
|
|
|
|
{
|
2012-04-12 18:00:18 +02:00
|
|
|
ObjectProperty *prop = object_property_find(parent, part, NULL);
|
2012-03-27 18:38:45 +02:00
|
|
|
if (prop == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-05-27 00:32:40 +02:00
|
|
|
if (object_property_is_link(prop)) {
|
2012-03-27 18:38:45 +02:00
|
|
|
return *(Object **)prop->opaque;
|
2012-05-27 00:32:40 +02:00
|
|
|
} else if (object_property_is_child(prop)) {
|
2012-03-27 18:38:45 +02:00
|
|
|
return prop->opaque;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-30 15:55:55 +01:00
|
|
|
static Object *object_resolve_abs_path(Object *parent,
|
|
|
|
gchar **parts,
|
2012-02-03 11:21:01 +01:00
|
|
|
const char *typename,
|
2012-01-30 15:55:55 +01:00
|
|
|
int index)
|
|
|
|
{
|
|
|
|
Object *child;
|
|
|
|
|
|
|
|
if (parts[index] == NULL) {
|
2012-02-03 11:21:01 +01:00
|
|
|
return object_dynamic_cast(parent, typename);
|
2012-01-30 15:55:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(parts[index], "") == 0) {
|
2012-02-03 11:21:01 +01:00
|
|
|
return object_resolve_abs_path(parent, parts, typename, index + 1);
|
2012-01-30 15:55:55 +01:00
|
|
|
}
|
|
|
|
|
2012-03-27 18:38:45 +02:00
|
|
|
child = object_resolve_path_component(parent, parts[index]);
|
2012-01-30 15:55:55 +01:00
|
|
|
if (!child) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-02-03 11:21:01 +01:00
|
|
|
return object_resolve_abs_path(child, parts, typename, index + 1);
|
2012-01-30 15:55:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static Object *object_resolve_partial_path(Object *parent,
|
|
|
|
gchar **parts,
|
2012-02-03 11:21:01 +01:00
|
|
|
const char *typename,
|
2012-01-30 15:55:55 +01:00
|
|
|
bool *ambiguous)
|
|
|
|
{
|
|
|
|
Object *obj;
|
|
|
|
ObjectProperty *prop;
|
|
|
|
|
2012-02-03 11:21:01 +01:00
|
|
|
obj = object_resolve_abs_path(parent, parts, typename, 0);
|
2012-01-30 15:55:55 +01:00
|
|
|
|
|
|
|
QTAILQ_FOREACH(prop, &parent->properties, node) {
|
|
|
|
Object *found;
|
|
|
|
|
2012-05-27 00:32:40 +02:00
|
|
|
if (!object_property_is_child(prop)) {
|
2012-01-30 15:55:55 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-02-03 11:21:01 +01:00
|
|
|
found = object_resolve_partial_path(prop->opaque, parts,
|
|
|
|
typename, ambiguous);
|
2012-01-30 15:55:55 +01:00
|
|
|
if (found) {
|
|
|
|
if (obj) {
|
|
|
|
if (ambiguous) {
|
|
|
|
*ambiguous = true;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
obj = found;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ambiguous && *ambiguous) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2012-02-03 11:21:01 +01:00
|
|
|
Object *object_resolve_path_type(const char *path, const char *typename,
|
|
|
|
bool *ambiguous)
|
2012-01-30 15:55:55 +01:00
|
|
|
{
|
|
|
|
bool partial_path = true;
|
|
|
|
Object *obj;
|
|
|
|
gchar **parts;
|
|
|
|
|
|
|
|
parts = g_strsplit(path, "/", 0);
|
|
|
|
if (parts == NULL || parts[0] == NULL) {
|
|
|
|
g_strfreev(parts);
|
|
|
|
return object_get_root();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(parts[0], "") == 0) {
|
|
|
|
partial_path = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (partial_path) {
|
|
|
|
if (ambiguous) {
|
|
|
|
*ambiguous = false;
|
|
|
|
}
|
2012-02-03 11:21:01 +01:00
|
|
|
obj = object_resolve_partial_path(object_get_root(), parts,
|
|
|
|
typename, ambiguous);
|
2012-01-30 15:55:55 +01:00
|
|
|
} else {
|
2012-02-03 11:21:01 +01:00
|
|
|
obj = object_resolve_abs_path(object_get_root(), parts, typename, 1);
|
2012-01-30 15:55:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
g_strfreev(parts);
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2012-02-03 11:21:01 +01:00
|
|
|
Object *object_resolve_path(const char *path, bool *ambiguous)
|
|
|
|
{
|
|
|
|
return object_resolve_path_type(path, TYPE_OBJECT, ambiguous);
|
|
|
|
}
|
|
|
|
|
2012-01-30 15:55:55 +01:00
|
|
|
typedef struct StringProperty
|
|
|
|
{
|
|
|
|
char *(*get)(Object *, Error **);
|
|
|
|
void (*set)(Object *, const char *, Error **);
|
|
|
|
} StringProperty;
|
|
|
|
|
2012-02-01 17:16:22 +01:00
|
|
|
static void property_get_str(Object *obj, Visitor *v, void *opaque,
|
|
|
|
const char *name, Error **errp)
|
2012-01-30 15:55:55 +01:00
|
|
|
{
|
|
|
|
StringProperty *prop = opaque;
|
|
|
|
char *value;
|
|
|
|
|
|
|
|
value = prop->get(obj, errp);
|
|
|
|
if (value) {
|
|
|
|
visit_type_str(v, &value, name, errp);
|
|
|
|
g_free(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 17:16:22 +01:00
|
|
|
static void property_set_str(Object *obj, Visitor *v, void *opaque,
|
|
|
|
const char *name, Error **errp)
|
2012-01-30 15:55:55 +01:00
|
|
|
{
|
|
|
|
StringProperty *prop = opaque;
|
|
|
|
char *value;
|
|
|
|
Error *local_err = NULL;
|
|
|
|
|
|
|
|
visit_type_str(v, &value, name, &local_err);
|
|
|
|
if (local_err) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
prop->set(obj, value, errp);
|
|
|
|
g_free(value);
|
|
|
|
}
|
|
|
|
|
2012-02-01 17:16:22 +01:00
|
|
|
static void property_release_str(Object *obj, const char *name,
|
|
|
|
void *opaque)
|
2012-01-30 15:55:55 +01:00
|
|
|
{
|
|
|
|
StringProperty *prop = opaque;
|
|
|
|
g_free(prop);
|
|
|
|
}
|
|
|
|
|
|
|
|
void object_property_add_str(Object *obj, const char *name,
|
|
|
|
char *(*get)(Object *, Error **),
|
|
|
|
void (*set)(Object *, const char *, Error **),
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
StringProperty *prop = g_malloc0(sizeof(*prop));
|
|
|
|
|
|
|
|
prop->get = get;
|
|
|
|
prop->set = set;
|
|
|
|
|
|
|
|
object_property_add(obj, name, "string",
|
2012-02-01 17:16:22 +01:00
|
|
|
get ? property_get_str : NULL,
|
|
|
|
set ? property_set_str : NULL,
|
|
|
|
property_release_str,
|
2012-01-30 15:55:55 +01:00
|
|
|
prop, errp);
|
|
|
|
}
|
2012-03-31 16:45:54 +02:00
|
|
|
|
2012-04-02 17:33:51 +02:00
|
|
|
static char *qdev_get_type(Object *obj, Error **errp)
|
|
|
|
{
|
|
|
|
return g_strdup(object_get_typename(obj));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void object_instance_init(Object *obj)
|
|
|
|
{
|
|
|
|
object_property_add_str(obj, "type", qdev_get_type, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2012-03-31 16:45:54 +02:00
|
|
|
static void register_types(void)
|
|
|
|
{
|
|
|
|
static TypeInfo interface_info = {
|
|
|
|
.name = TYPE_INTERFACE,
|
|
|
|
.instance_size = sizeof(Interface),
|
|
|
|
.abstract = true,
|
|
|
|
};
|
|
|
|
|
|
|
|
static TypeInfo object_info = {
|
|
|
|
.name = TYPE_OBJECT,
|
|
|
|
.instance_size = sizeof(Object),
|
2012-04-02 17:33:51 +02:00
|
|
|
.instance_init = object_instance_init,
|
2012-03-31 16:45:54 +02:00
|
|
|
.abstract = true,
|
|
|
|
};
|
|
|
|
|
2012-04-04 15:58:40 +02:00
|
|
|
type_interface = type_register_internal(&interface_info);
|
|
|
|
type_register_internal(&object_info);
|
2012-03-31 16:45:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type_init(register_types)
|