4 * Copyright IBM, Corp. 2011
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qom/object.h"
14 #include "qemu-common.h"
15 #include "qapi/visitor.h"
16 #include "qapi/string-input-visitor.h"
17 #include "qapi/string-output-visitor.h"
18 #include "qapi/qmp/qerror.h"
21 /* TODO: replace QObject with a simpler visitor to avoid a dependency
22 * of the QOM core on QObject? */
23 #include "qom/qom-qobject.h"
24 #include "qapi/qmp/qobject.h"
25 #include "qapi/qmp/qbool.h"
26 #include "qapi/qmp/qint.h"
27 #include "qapi/qmp/qstring.h"
29 #define MAX_INTERFACES 32
31 typedef struct InterfaceImpl InterfaceImpl
;
32 typedef struct TypeImpl TypeImpl
;
47 void (*class_init
)(ObjectClass
*klass
, void *data
);
48 void (*class_base_init
)(ObjectClass
*klass
, void *data
);
49 void (*class_finalize
)(ObjectClass
*klass
, void *data
);
53 void (*instance_init
)(Object
*obj
);
54 void (*instance_finalize
)(Object
*obj
);
59 TypeImpl
*parent_type
;
64 InterfaceImpl interfaces
[MAX_INTERFACES
];
67 static Type type_interface
;
69 static GHashTable
*type_table_get(void)
71 static GHashTable
*type_table
;
73 if (type_table
== NULL
) {
74 type_table
= g_hash_table_new(g_str_hash
, g_str_equal
);
80 static void type_table_add(TypeImpl
*ti
)
82 g_hash_table_insert(type_table_get(), (void *)ti
->name
, ti
);
85 static TypeImpl
*type_table_lookup(const char *name
)
87 return g_hash_table_lookup(type_table_get(), name
);
90 static TypeImpl
*type_register_internal(const TypeInfo
*info
)
92 TypeImpl
*ti
= g_malloc0(sizeof(*ti
));
95 g_assert(info
->name
!= NULL
);
97 if (type_table_lookup(info
->name
) != NULL
) {
98 fprintf(stderr
, "Registering `%s' which already exists\n", info
->name
);
102 ti
->name
= g_strdup(info
->name
);
103 ti
->parent
= g_strdup(info
->parent
);
105 ti
->class_size
= info
->class_size
;
106 ti
->instance_size
= info
->instance_size
;
108 ti
->class_init
= info
->class_init
;
109 ti
->class_base_init
= info
->class_base_init
;
110 ti
->class_finalize
= info
->class_finalize
;
111 ti
->class_data
= info
->class_data
;
113 ti
->instance_init
= info
->instance_init
;
114 ti
->instance_finalize
= info
->instance_finalize
;
116 ti
->abstract
= info
->abstract
;
118 for (i
= 0; info
->interfaces
&& info
->interfaces
[i
].type
; i
++) {
119 ti
->interfaces
[i
].typename
= g_strdup(info
->interfaces
[i
].type
);
121 ti
->num_interfaces
= i
;
128 TypeImpl
*type_register(const TypeInfo
*info
)
130 assert(info
->parent
);
131 return type_register_internal(info
);
134 TypeImpl
*type_register_static(const TypeInfo
*info
)
136 return type_register(info
);
139 static TypeImpl
*type_get_by_name(const char *name
)
145 return type_table_lookup(name
);
148 static TypeImpl
*type_get_parent(TypeImpl
*type
)
150 if (!type
->parent_type
&& type
->parent
) {
151 type
->parent_type
= type_get_by_name(type
->parent
);
152 g_assert(type
->parent_type
!= NULL
);
155 return type
->parent_type
;
158 static bool type_has_parent(TypeImpl
*type
)
160 return (type
->parent
!= NULL
);
163 static size_t type_class_get_size(TypeImpl
*ti
)
165 if (ti
->class_size
) {
166 return ti
->class_size
;
169 if (type_has_parent(ti
)) {
170 return type_class_get_size(type_get_parent(ti
));
173 return sizeof(ObjectClass
);
176 static size_t type_object_get_size(TypeImpl
*ti
)
178 if (ti
->instance_size
) {
179 return ti
->instance_size
;
182 if (type_has_parent(ti
)) {
183 return type_object_get_size(type_get_parent(ti
));
189 static bool type_is_ancestor(TypeImpl
*type
, TypeImpl
*target_type
)
193 /* Check if typename is a direct ancestor of type */
195 if (type
== target_type
) {
199 type
= type_get_parent(type
);
205 static void type_initialize(TypeImpl
*ti
);
207 static void type_initialize_interface(TypeImpl
*ti
, const char *parent
)
209 InterfaceClass
*new_iface
;
211 TypeImpl
*iface_impl
;
213 info
.parent
= parent
;
214 info
.name
= g_strdup_printf("%s::%s", ti
->name
, info
.parent
);
215 info
.abstract
= true;
217 iface_impl
= type_register(&info
);
218 type_initialize(iface_impl
);
219 g_free((char *)info
.name
);
221 new_iface
= (InterfaceClass
*)iface_impl
->class;
222 new_iface
->concrete_class
= ti
->class;
224 ti
->class->interfaces
= g_slist_append(ti
->class->interfaces
,
228 static void type_initialize(TypeImpl
*ti
)
236 ti
->class_size
= type_class_get_size(ti
);
237 ti
->instance_size
= type_object_get_size(ti
);
239 ti
->class = g_malloc0(ti
->class_size
);
241 parent
= type_get_parent(ti
);
243 type_initialize(parent
);
247 g_assert(parent
->class_size
<= ti
->class_size
);
248 memcpy(ti
->class, parent
->class, parent
->class_size
);
249 ti
->class->interfaces
= NULL
;
251 for (e
= parent
->class->interfaces
; e
; e
= e
->next
) {
252 ObjectClass
*iface
= e
->data
;
253 type_initialize_interface(ti
, object_class_get_name(iface
));
256 for (i
= 0; i
< ti
->num_interfaces
; i
++) {
257 TypeImpl
*t
= type_get_by_name(ti
->interfaces
[i
].typename
);
258 for (e
= ti
->class->interfaces
; e
; e
= e
->next
) {
259 TypeImpl
*target_type
= OBJECT_CLASS(e
->data
)->type
;
261 if (type_is_ancestor(target_type
, t
)) {
270 type_initialize_interface(ti
, ti
->interfaces
[i
].typename
);
274 ti
->class->type
= ti
;
277 if (parent
->class_base_init
) {
278 parent
->class_base_init(ti
->class, ti
->class_data
);
280 parent
= type_get_parent(parent
);
283 if (ti
->class_init
) {
284 ti
->class_init(ti
->class, ti
->class_data
);
290 static void object_init_with_type(Object
*obj
, TypeImpl
*ti
)
292 if (type_has_parent(ti
)) {
293 object_init_with_type(obj
, type_get_parent(ti
));
296 if (ti
->instance_init
) {
297 ti
->instance_init(obj
);
301 void object_initialize_with_type(void *data
, TypeImpl
*type
)
305 g_assert(type
!= NULL
);
306 type_initialize(type
);
308 g_assert(type
->instance_size
>= sizeof(Object
));
309 g_assert(type
->abstract
== false);
311 memset(obj
, 0, type
->instance_size
);
312 obj
->class = type
->class;
314 QTAILQ_INIT(&obj
->properties
);
315 object_init_with_type(obj
, type
);
318 void object_initialize(void *data
, const char *typename
)
320 TypeImpl
*type
= type_get_by_name(typename
);
322 object_initialize_with_type(data
, type
);
325 static inline bool object_property_is_child(ObjectProperty
*prop
)
327 return strstart(prop
->type
, "child<", NULL
);
330 static inline bool object_property_is_link(ObjectProperty
*prop
)
332 return strstart(prop
->type
, "link<", NULL
);
335 static void object_property_del_all(Object
*obj
)
337 while (!QTAILQ_EMPTY(&obj
->properties
)) {
338 ObjectProperty
*prop
= QTAILQ_FIRST(&obj
->properties
);
340 QTAILQ_REMOVE(&obj
->properties
, prop
, node
);
343 prop
->release(obj
, prop
->name
, prop
->opaque
);
352 static void object_property_del_child(Object
*obj
, Object
*child
, Error
**errp
)
354 ObjectProperty
*prop
;
356 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
357 if (object_property_is_child(prop
) && prop
->opaque
== child
) {
358 object_property_del(obj
, prop
->name
, errp
);
364 void object_unparent(Object
*obj
)
371 if (obj
->class->unparent
) {
372 (obj
->class->unparent
)(obj
);
375 object_property_del_child(obj
->parent
, obj
, NULL
);
380 static void object_deinit(Object
*obj
, TypeImpl
*type
)
382 if (type
->instance_finalize
) {
383 type
->instance_finalize(obj
);
386 if (type_has_parent(type
)) {
387 object_deinit(obj
, type_get_parent(type
));
391 static void object_finalize(void *data
)
394 TypeImpl
*ti
= obj
->class->type
;
396 object_deinit(obj
, ti
);
397 object_property_del_all(obj
);
399 g_assert(obj
->ref
== 0);
405 Object
*object_new_with_type(Type type
)
409 g_assert(type
!= NULL
);
410 type_initialize(type
);
412 obj
= g_malloc(type
->instance_size
);
413 object_initialize_with_type(obj
, type
);
419 Object
*object_new(const char *typename
)
421 TypeImpl
*ti
= type_get_by_name(typename
);
423 return object_new_with_type(ti
);
426 Object
*object_dynamic_cast(Object
*obj
, const char *typename
)
428 if (obj
&& object_class_dynamic_cast(object_get_class(obj
), typename
)) {
435 Object
*object_dynamic_cast_assert(Object
*obj
, const char *typename
,
436 const char *file
, int line
, const char *func
)
438 trace_object_dynamic_cast_assert(obj
? obj
->class->type
->name
: "(null)",
439 typename
, file
, line
, func
);
441 #ifdef CONFIG_QOM_CAST_DEBUG
445 for (i
= 0; obj
&& i
< OBJECT_CLASS_CAST_CACHE
; i
++) {
446 if (obj
->class->cast_cache
[i
] == typename
) {
451 inst
= object_dynamic_cast(obj
, typename
);
454 fprintf(stderr
, "%s:%d:%s: Object %p is not an instance of type %s\n",
455 file
, line
, func
, obj
, typename
);
461 if (obj
&& obj
== inst
) {
462 for (i
= 1; i
< OBJECT_CLASS_CAST_CACHE
; i
++) {
463 obj
->class->cast_cache
[i
- 1] = obj
->class->cast_cache
[i
];
465 obj
->class->cast_cache
[i
- 1] = typename
;
473 ObjectClass
*object_class_dynamic_cast(ObjectClass
*class,
474 const char *typename
)
476 ObjectClass
*ret
= NULL
;
477 TypeImpl
*target_type
;
484 /* A simple fast path that can trigger a lot for leaf classes. */
486 if (type
->name
== typename
) {
490 target_type
= type_get_by_name(typename
);
492 /* target class type unknown, so fail the cast */
496 if (type
->class->interfaces
&&
497 type_is_ancestor(target_type
, type_interface
)) {
501 for (i
= class->interfaces
; i
; i
= i
->next
) {
502 ObjectClass
*target_class
= i
->data
;
504 if (type_is_ancestor(target_class
->type
, target_type
)) {
510 /* The match was ambiguous, don't allow a cast */
514 } else if (type_is_ancestor(type
, target_type
)) {
521 ObjectClass
*object_class_dynamic_cast_assert(ObjectClass
*class,
522 const char *typename
,
523 const char *file
, int line
,
528 trace_object_class_dynamic_cast_assert(class ? class->type
->name
: "(null)",
529 typename
, file
, line
, func
);
531 #ifdef CONFIG_QOM_CAST_DEBUG
534 for (i
= 0; class && i
< OBJECT_CLASS_CAST_CACHE
; i
++) {
535 if (class->cast_cache
[i
] == typename
) {
541 if (!class || !class->interfaces
) {
546 ret
= object_class_dynamic_cast(class, typename
);
548 fprintf(stderr
, "%s:%d:%s: Object %p is not an instance of type %s\n",
549 file
, line
, func
, class, typename
);
553 #ifdef CONFIG_QOM_CAST_DEBUG
554 if (class && ret
== class) {
555 for (i
= 1; i
< OBJECT_CLASS_CAST_CACHE
; i
++) {
556 class->cast_cache
[i
- 1] = class->cast_cache
[i
];
558 class->cast_cache
[i
- 1] = typename
;
565 const char *object_get_typename(Object
*obj
)
567 return obj
->class->type
->name
;
570 ObjectClass
*object_get_class(Object
*obj
)
575 bool object_class_is_abstract(ObjectClass
*klass
)
577 return klass
->type
->abstract
;
580 const char *object_class_get_name(ObjectClass
*klass
)
582 return klass
->type
->name
;
585 ObjectClass
*object_class_by_name(const char *typename
)
587 TypeImpl
*type
= type_get_by_name(typename
);
593 type_initialize(type
);
598 ObjectClass
*object_class_get_parent(ObjectClass
*class)
600 TypeImpl
*type
= type_get_parent(class->type
);
606 type_initialize(type
);
611 typedef struct OCFData
613 void (*fn
)(ObjectClass
*klass
, void *opaque
);
614 const char *implements_type
;
615 bool include_abstract
;
619 static void object_class_foreach_tramp(gpointer key
, gpointer value
,
622 OCFData
*data
= opaque
;
623 TypeImpl
*type
= value
;
626 type_initialize(type
);
629 if (!data
->include_abstract
&& type
->abstract
) {
633 if (data
->implements_type
&&
634 !object_class_dynamic_cast(k
, data
->implements_type
)) {
638 data
->fn(k
, data
->opaque
);
641 void object_class_foreach(void (*fn
)(ObjectClass
*klass
, void *opaque
),
642 const char *implements_type
, bool include_abstract
,
645 OCFData data
= { fn
, implements_type
, include_abstract
, opaque
};
647 g_hash_table_foreach(type_table_get(), object_class_foreach_tramp
, &data
);
650 int object_child_foreach(Object
*obj
, int (*fn
)(Object
*child
, void *opaque
),
653 ObjectProperty
*prop
;
656 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
657 if (object_property_is_child(prop
)) {
658 ret
= fn(prop
->opaque
, opaque
);
667 static void object_class_get_list_tramp(ObjectClass
*klass
, void *opaque
)
669 GSList
**list
= opaque
;
671 *list
= g_slist_prepend(*list
, klass
);
674 GSList
*object_class_get_list(const char *implements_type
,
675 bool include_abstract
)
679 object_class_foreach(object_class_get_list_tramp
,
680 implements_type
, include_abstract
, &list
);
684 void object_ref(Object
*obj
)
686 atomic_inc(&obj
->ref
);
689 void object_unref(Object
*obj
)
691 g_assert(obj
->ref
> 0);
693 /* parent always holds a reference to its children */
694 if (atomic_fetch_dec(&obj
->ref
) == 1) {
695 object_finalize(obj
);
699 void object_property_add(Object
*obj
, const char *name
, const char *type
,
700 ObjectPropertyAccessor
*get
,
701 ObjectPropertyAccessor
*set
,
702 ObjectPropertyRelease
*release
,
703 void *opaque
, Error
**errp
)
705 ObjectProperty
*prop
;
707 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
708 if (strcmp(prop
->name
, name
) == 0) {
709 error_setg(errp
, "attempt to add duplicate property '%s'"
710 " to object (type '%s')", name
,
711 object_get_typename(obj
));
716 prop
= g_malloc0(sizeof(*prop
));
718 prop
->name
= g_strdup(name
);
719 prop
->type
= g_strdup(type
);
723 prop
->release
= release
;
724 prop
->opaque
= opaque
;
726 QTAILQ_INSERT_TAIL(&obj
->properties
, prop
, node
);
729 ObjectProperty
*object_property_find(Object
*obj
, const char *name
,
732 ObjectProperty
*prop
;
734 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
735 if (strcmp(prop
->name
, name
) == 0) {
740 error_set(errp
, QERR_PROPERTY_NOT_FOUND
, "", name
);
744 void object_property_del(Object
*obj
, const char *name
, Error
**errp
)
746 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
752 prop
->release(obj
, name
, prop
->opaque
);
755 QTAILQ_REMOVE(&obj
->properties
, prop
, node
);
762 void object_property_get(Object
*obj
, Visitor
*v
, const char *name
,
765 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
771 error_set(errp
, QERR_PERMISSION_DENIED
);
773 prop
->get(obj
, v
, prop
->opaque
, name
, errp
);
777 void object_property_set(Object
*obj
, Visitor
*v
, const char *name
,
780 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
786 error_set(errp
, QERR_PERMISSION_DENIED
);
788 prop
->set(obj
, v
, prop
->opaque
, name
, errp
);
792 void object_property_set_str(Object
*obj
, const char *value
,
793 const char *name
, Error
**errp
)
795 QString
*qstr
= qstring_from_str(value
);
796 object_property_set_qobject(obj
, QOBJECT(qstr
), name
, errp
);
801 char *object_property_get_str(Object
*obj
, const char *name
,
804 QObject
*ret
= object_property_get_qobject(obj
, name
, errp
);
811 qstring
= qobject_to_qstring(ret
);
813 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, "string");
816 retval
= g_strdup(qstring_get_str(qstring
));
823 void object_property_set_link(Object
*obj
, Object
*value
,
824 const char *name
, Error
**errp
)
826 object_property_set_str(obj
, object_get_canonical_path(value
),
830 Object
*object_property_get_link(Object
*obj
, const char *name
,
833 char *str
= object_property_get_str(obj
, name
, errp
);
834 Object
*target
= NULL
;
837 target
= object_resolve_path(str
, NULL
);
839 error_set(errp
, QERR_DEVICE_NOT_FOUND
, str
);
847 void object_property_set_bool(Object
*obj
, bool value
,
848 const char *name
, Error
**errp
)
850 QBool
*qbool
= qbool_from_int(value
);
851 object_property_set_qobject(obj
, QOBJECT(qbool
), name
, errp
);
856 bool object_property_get_bool(Object
*obj
, const char *name
,
859 QObject
*ret
= object_property_get_qobject(obj
, name
, errp
);
866 qbool
= qobject_to_qbool(ret
);
868 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, "boolean");
871 retval
= qbool_get_int(qbool
);
878 void object_property_set_int(Object
*obj
, int64_t value
,
879 const char *name
, Error
**errp
)
881 QInt
*qint
= qint_from_int(value
);
882 object_property_set_qobject(obj
, QOBJECT(qint
), name
, errp
);
887 int64_t object_property_get_int(Object
*obj
, const char *name
,
890 QObject
*ret
= object_property_get_qobject(obj
, name
, errp
);
897 qint
= qobject_to_qint(ret
);
899 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, "int");
902 retval
= qint_get_int(qint
);
909 void object_property_parse(Object
*obj
, const char *string
,
910 const char *name
, Error
**errp
)
912 StringInputVisitor
*mi
;
913 mi
= string_input_visitor_new(string
);
914 object_property_set(obj
, string_input_get_visitor(mi
), name
, errp
);
916 string_input_visitor_cleanup(mi
);
919 char *object_property_print(Object
*obj
, const char *name
,
922 StringOutputVisitor
*mo
;
925 mo
= string_output_visitor_new();
926 object_property_get(obj
, string_output_get_visitor(mo
), name
, errp
);
927 string
= string_output_get_string(mo
);
928 string_output_visitor_cleanup(mo
);
932 const char *object_property_get_type(Object
*obj
, const char *name
, Error
**errp
)
934 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
942 Object
*object_get_root(void)
947 root
= object_new("container");
953 static void object_get_child_property(Object
*obj
, Visitor
*v
, void *opaque
,
954 const char *name
, Error
**errp
)
956 Object
*child
= opaque
;
959 path
= object_get_canonical_path(child
);
960 visit_type_str(v
, &path
, name
, errp
);
964 static void object_finalize_child_property(Object
*obj
, const char *name
,
967 Object
*child
= opaque
;
972 void object_property_add_child(Object
*obj
, const char *name
,
973 Object
*child
, Error
**errp
)
977 type
= g_strdup_printf("child<%s>", object_get_typename(OBJECT(child
)));
979 object_property_add(obj
, name
, type
, object_get_child_property
,
980 NULL
, object_finalize_child_property
, child
, errp
);
983 g_assert(child
->parent
== NULL
);
989 static void object_get_link_property(Object
*obj
, Visitor
*v
, void *opaque
,
990 const char *name
, Error
**errp
)
992 Object
**child
= opaque
;
996 path
= object_get_canonical_path(*child
);
997 visit_type_str(v
, &path
, name
, errp
);
1001 visit_type_str(v
, &path
, name
, errp
);
1005 static void object_set_link_property(Object
*obj
, Visitor
*v
, void *opaque
,
1006 const char *name
, Error
**errp
)
1008 Object
**child
= opaque
;
1010 bool ambiguous
= false;
1015 type
= object_property_get_type(obj
, name
, NULL
);
1017 visit_type_str(v
, &path
, name
, errp
);
1019 old_target
= *child
;
1022 if (strcmp(path
, "") != 0) {
1025 /* Go from link<FOO> to FOO. */
1026 target_type
= g_strndup(&type
[5], strlen(type
) - 6);
1027 target
= object_resolve_path_type(path
, target_type
, &ambiguous
);
1030 error_set(errp
, QERR_AMBIGUOUS_PATH
, path
);
1031 } else if (target
) {
1035 target
= object_resolve_path(path
, &ambiguous
);
1036 if (target
|| ambiguous
) {
1037 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, target_type
);
1039 error_set(errp
, QERR_DEVICE_NOT_FOUND
, path
);
1042 g_free(target_type
);
1047 if (old_target
!= NULL
) {
1048 object_unref(old_target
);
1052 void object_property_add_link(Object
*obj
, const char *name
,
1053 const char *type
, Object
**child
,
1058 full_type
= g_strdup_printf("link<%s>", type
);
1060 object_property_add(obj
, name
, full_type
,
1061 object_get_link_property
,
1062 object_set_link_property
,
1068 gchar
*object_get_canonical_path(Object
*obj
)
1070 Object
*root
= object_get_root();
1071 char *newpath
= NULL
, *path
= NULL
;
1073 while (obj
!= root
) {
1074 ObjectProperty
*prop
= NULL
;
1076 g_assert(obj
->parent
!= NULL
);
1078 QTAILQ_FOREACH(prop
, &obj
->parent
->properties
, node
) {
1079 if (!object_property_is_child(prop
)) {
1083 if (prop
->opaque
== obj
) {
1085 newpath
= g_strdup_printf("%s/%s", prop
->name
, path
);
1089 path
= g_strdup(prop
->name
);
1095 g_assert(prop
!= NULL
);
1100 newpath
= g_strdup_printf("/%s", path
);
1106 Object
*object_resolve_path_component(Object
*parent
, const gchar
*part
)
1108 ObjectProperty
*prop
= object_property_find(parent
, part
, NULL
);
1113 if (object_property_is_link(prop
)) {
1114 return *(Object
**)prop
->opaque
;
1115 } else if (object_property_is_child(prop
)) {
1116 return prop
->opaque
;
1122 static Object
*object_resolve_abs_path(Object
*parent
,
1124 const char *typename
,
1129 if (parts
[index
] == NULL
) {
1130 return object_dynamic_cast(parent
, typename
);
1133 if (strcmp(parts
[index
], "") == 0) {
1134 return object_resolve_abs_path(parent
, parts
, typename
, index
+ 1);
1137 child
= object_resolve_path_component(parent
, parts
[index
]);
1142 return object_resolve_abs_path(child
, parts
, typename
, index
+ 1);
1145 static Object
*object_resolve_partial_path(Object
*parent
,
1147 const char *typename
,
1151 ObjectProperty
*prop
;
1153 obj
= object_resolve_abs_path(parent
, parts
, typename
, 0);
1155 QTAILQ_FOREACH(prop
, &parent
->properties
, node
) {
1158 if (!object_property_is_child(prop
)) {
1162 found
= object_resolve_partial_path(prop
->opaque
, parts
,
1163 typename
, ambiguous
);
1174 if (ambiguous
&& *ambiguous
) {
1182 Object
*object_resolve_path_type(const char *path
, const char *typename
,
1188 parts
= g_strsplit(path
, "/", 0);
1191 if (parts
[0] == NULL
|| strcmp(parts
[0], "") != 0) {
1195 obj
= object_resolve_partial_path(object_get_root(), parts
,
1196 typename
, ambiguous
);
1198 obj
= object_resolve_abs_path(object_get_root(), parts
, typename
, 1);
1206 Object
*object_resolve_path(const char *path
, bool *ambiguous
)
1208 return object_resolve_path_type(path
, TYPE_OBJECT
, ambiguous
);
1211 typedef struct StringProperty
1213 char *(*get
)(Object
*, Error
**);
1214 void (*set
)(Object
*, const char *, Error
**);
1217 static void property_get_str(Object
*obj
, Visitor
*v
, void *opaque
,
1218 const char *name
, Error
**errp
)
1220 StringProperty
*prop
= opaque
;
1223 value
= prop
->get(obj
, errp
);
1225 visit_type_str(v
, &value
, name
, errp
);
1230 static void property_set_str(Object
*obj
, Visitor
*v
, void *opaque
,
1231 const char *name
, Error
**errp
)
1233 StringProperty
*prop
= opaque
;
1235 Error
*local_err
= NULL
;
1237 visit_type_str(v
, &value
, name
, &local_err
);
1239 error_propagate(errp
, local_err
);
1243 prop
->set(obj
, value
, errp
);
1247 static void property_release_str(Object
*obj
, const char *name
,
1250 StringProperty
*prop
= opaque
;
1254 void object_property_add_str(Object
*obj
, const char *name
,
1255 char *(*get
)(Object
*, Error
**),
1256 void (*set
)(Object
*, const char *, Error
**),
1259 StringProperty
*prop
= g_malloc0(sizeof(*prop
));
1264 object_property_add(obj
, name
, "string",
1265 get
? property_get_str
: NULL
,
1266 set
? property_set_str
: NULL
,
1267 property_release_str
,
1271 typedef struct BoolProperty
1273 bool (*get
)(Object
*, Error
**);
1274 void (*set
)(Object
*, bool, Error
**);
1277 static void property_get_bool(Object
*obj
, Visitor
*v
, void *opaque
,
1278 const char *name
, Error
**errp
)
1280 BoolProperty
*prop
= opaque
;
1283 value
= prop
->get(obj
, errp
);
1284 visit_type_bool(v
, &value
, name
, errp
);
1287 static void property_set_bool(Object
*obj
, Visitor
*v
, void *opaque
,
1288 const char *name
, Error
**errp
)
1290 BoolProperty
*prop
= opaque
;
1292 Error
*local_err
= NULL
;
1294 visit_type_bool(v
, &value
, name
, &local_err
);
1296 error_propagate(errp
, local_err
);
1300 prop
->set(obj
, value
, errp
);
1303 static void property_release_bool(Object
*obj
, const char *name
,
1306 BoolProperty
*prop
= opaque
;
1310 void object_property_add_bool(Object
*obj
, const char *name
,
1311 bool (*get
)(Object
*, Error
**),
1312 void (*set
)(Object
*, bool, Error
**),
1315 BoolProperty
*prop
= g_malloc0(sizeof(*prop
));
1320 object_property_add(obj
, name
, "bool",
1321 get
? property_get_bool
: NULL
,
1322 set
? property_set_bool
: NULL
,
1323 property_release_bool
,
1327 static char *qdev_get_type(Object
*obj
, Error
**errp
)
1329 return g_strdup(object_get_typename(obj
));
1332 static void object_instance_init(Object
*obj
)
1334 object_property_add_str(obj
, "type", qdev_get_type
, NULL
, NULL
);
1337 static void register_types(void)
1339 static TypeInfo interface_info
= {
1340 .name
= TYPE_INTERFACE
,
1341 .class_size
= sizeof(InterfaceClass
),
1345 static TypeInfo object_info
= {
1346 .name
= TYPE_OBJECT
,
1347 .instance_size
= sizeof(Object
),
1348 .instance_init
= object_instance_init
,
1352 type_interface
= type_register_internal(&interface_info
);
1353 type_register_internal(&object_info
);
1356 type_init(register_types
)