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 "qemu/object.h"
14 #include "qemu-common.h"
15 #include "qapi/qapi-visit-core.h"
16 #include "qapi/string-input-visitor.h"
17 #include "qapi/string-output-visitor.h"
19 /* TODO: replace QObject with a simpler visitor to avoid a dependency
20 * of the QOM core on QObject? */
21 #include "qemu/qom-qobject.h"
27 #define MAX_INTERFACES 32
29 typedef struct InterfaceImpl InterfaceImpl
;
30 typedef struct TypeImpl TypeImpl
;
45 void (*class_init
)(ObjectClass
*klass
, void *data
);
46 void (*class_base_init
)(ObjectClass
*klass
, void *data
);
47 void (*class_finalize
)(ObjectClass
*klass
, void *data
);
51 void (*instance_init
)(Object
*obj
);
52 void (*instance_finalize
)(Object
*obj
);
57 TypeImpl
*parent_type
;
62 InterfaceImpl interfaces
[MAX_INTERFACES
];
65 static Type type_interface
;
67 static GHashTable
*type_table_get(void)
69 static GHashTable
*type_table
;
71 if (type_table
== NULL
) {
72 type_table
= g_hash_table_new(g_str_hash
, g_str_equal
);
78 static void type_table_add(TypeImpl
*ti
)
80 g_hash_table_insert(type_table_get(), (void *)ti
->name
, ti
);
83 static TypeImpl
*type_table_lookup(const char *name
)
85 return g_hash_table_lookup(type_table_get(), name
);
88 static TypeImpl
*type_register_internal(const TypeInfo
*info
)
90 TypeImpl
*ti
= g_malloc0(sizeof(*ti
));
93 g_assert(info
->name
!= NULL
);
95 if (type_table_lookup(info
->name
) != NULL
) {
96 fprintf(stderr
, "Registering `%s' which already exists\n", info
->name
);
100 ti
->name
= g_strdup(info
->name
);
101 ti
->parent
= g_strdup(info
->parent
);
103 ti
->class_size
= info
->class_size
;
104 ti
->instance_size
= info
->instance_size
;
106 ti
->class_init
= info
->class_init
;
107 ti
->class_base_init
= info
->class_base_init
;
108 ti
->class_finalize
= info
->class_finalize
;
109 ti
->class_data
= info
->class_data
;
111 ti
->instance_init
= info
->instance_init
;
112 ti
->instance_finalize
= info
->instance_finalize
;
114 ti
->abstract
= info
->abstract
;
116 for (i
= 0; info
->interfaces
&& info
->interfaces
[i
].type
; i
++) {
117 ti
->interfaces
[i
].typename
= g_strdup(info
->interfaces
[i
].type
);
119 ti
->num_interfaces
= i
;
126 TypeImpl
*type_register(const TypeInfo
*info
)
128 assert(info
->parent
);
129 return type_register_internal(info
);
132 TypeImpl
*type_register_static(const TypeInfo
*info
)
134 return type_register(info
);
137 static TypeImpl
*type_get_by_name(const char *name
)
143 return type_table_lookup(name
);
146 static TypeImpl
*type_get_parent(TypeImpl
*type
)
148 if (!type
->parent_type
&& type
->parent
) {
149 type
->parent_type
= type_get_by_name(type
->parent
);
150 g_assert(type
->parent_type
!= NULL
);
153 return type
->parent_type
;
156 static bool type_has_parent(TypeImpl
*type
)
158 return (type
->parent
!= NULL
);
161 static size_t type_class_get_size(TypeImpl
*ti
)
163 if (ti
->class_size
) {
164 return ti
->class_size
;
167 if (type_has_parent(ti
)) {
168 return type_class_get_size(type_get_parent(ti
));
171 return sizeof(ObjectClass
);
174 static size_t type_object_get_size(TypeImpl
*ti
)
176 if (ti
->instance_size
) {
177 return ti
->instance_size
;
180 if (type_has_parent(ti
)) {
181 return type_object_get_size(type_get_parent(ti
));
187 static bool type_is_ancestor(TypeImpl
*type
, TypeImpl
*target_type
)
191 /* Check if typename is a direct ancestor of type */
193 if (type
== target_type
) {
197 type
= type_get_parent(type
);
203 static void type_initialize(TypeImpl
*ti
);
205 static void type_initialize_interface(TypeImpl
*ti
, const char *parent
)
207 InterfaceClass
*new_iface
;
209 TypeImpl
*iface_impl
;
211 info
.parent
= parent
;
212 info
.name
= g_strdup_printf("%s::%s", ti
->name
, info
.parent
);
213 info
.abstract
= true;
215 iface_impl
= type_register(&info
);
216 type_initialize(iface_impl
);
217 g_free((char *)info
.name
);
219 new_iface
= (InterfaceClass
*)iface_impl
->class;
220 new_iface
->concrete_class
= ti
->class;
222 ti
->class->interfaces
= g_slist_append(ti
->class->interfaces
,
226 static void type_initialize(TypeImpl
*ti
)
234 ti
->class_size
= type_class_get_size(ti
);
235 ti
->instance_size
= type_object_get_size(ti
);
237 ti
->class = g_malloc0(ti
->class_size
);
239 parent
= type_get_parent(ti
);
241 type_initialize(parent
);
245 g_assert(parent
->class_size
<= ti
->class_size
);
246 memcpy(ti
->class, parent
->class, parent
->class_size
);
248 for (e
= parent
->class->interfaces
; e
; e
= e
->next
) {
249 ObjectClass
*iface
= e
->data
;
250 type_initialize_interface(ti
, object_class_get_name(iface
));
253 for (i
= 0; i
< ti
->num_interfaces
; i
++) {
254 TypeImpl
*t
= type_get_by_name(ti
->interfaces
[i
].typename
);
255 for (e
= ti
->class->interfaces
; e
; e
= e
->next
) {
256 TypeImpl
*target_type
= OBJECT_CLASS(e
->data
)->type
;
258 if (type_is_ancestor(target_type
, t
)) {
267 type_initialize_interface(ti
, ti
->interfaces
[i
].typename
);
271 ti
->class->type
= ti
;
274 if (parent
->class_base_init
) {
275 parent
->class_base_init(ti
->class, ti
->class_data
);
277 parent
= type_get_parent(parent
);
280 if (ti
->class_init
) {
281 ti
->class_init(ti
->class, ti
->class_data
);
287 static void object_init_with_type(Object
*obj
, TypeImpl
*ti
)
289 if (type_has_parent(ti
)) {
290 object_init_with_type(obj
, type_get_parent(ti
));
293 if (ti
->instance_init
) {
294 ti
->instance_init(obj
);
298 void object_initialize_with_type(void *data
, TypeImpl
*type
)
302 g_assert(type
!= NULL
);
303 type_initialize(type
);
305 g_assert(type
->instance_size
>= sizeof(Object
));
306 g_assert(type
->abstract
== false);
308 memset(obj
, 0, type
->instance_size
);
309 obj
->class = type
->class;
311 QTAILQ_INIT(&obj
->properties
);
312 object_init_with_type(obj
, type
);
315 void object_initialize(void *data
, const char *typename
)
317 TypeImpl
*type
= type_get_by_name(typename
);
319 object_initialize_with_type(data
, type
);
322 static inline bool object_property_is_child(ObjectProperty
*prop
)
324 return strstart(prop
->type
, "child<", NULL
);
327 static inline bool object_property_is_link(ObjectProperty
*prop
)
329 return strstart(prop
->type
, "link<", NULL
);
332 static void object_property_del_all(Object
*obj
)
334 while (!QTAILQ_EMPTY(&obj
->properties
)) {
335 ObjectProperty
*prop
= QTAILQ_FIRST(&obj
->properties
);
337 QTAILQ_REMOVE(&obj
->properties
, prop
, node
);
340 prop
->release(obj
, prop
->name
, prop
->opaque
);
349 static void object_property_del_child(Object
*obj
, Object
*child
, Error
**errp
)
351 ObjectProperty
*prop
;
353 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
354 if (object_property_is_child(prop
) && prop
->opaque
== child
) {
355 object_property_del(obj
, prop
->name
, errp
);
361 void object_unparent(Object
*obj
)
364 object_property_del_child(obj
->parent
, obj
, NULL
);
366 if (obj
->class->unparent
) {
367 (obj
->class->unparent
)(obj
);
371 static void object_deinit(Object
*obj
, TypeImpl
*type
)
373 if (type
->instance_finalize
) {
374 type
->instance_finalize(obj
);
377 if (type_has_parent(type
)) {
378 object_deinit(obj
, type_get_parent(type
));
382 static void object_finalize(void *data
)
385 TypeImpl
*ti
= obj
->class->type
;
387 object_deinit(obj
, ti
);
388 object_property_del_all(obj
);
390 g_assert(obj
->ref
== 0);
396 Object
*object_new_with_type(Type type
)
400 g_assert(type
!= NULL
);
401 type_initialize(type
);
403 obj
= g_malloc(type
->instance_size
);
404 object_initialize_with_type(obj
, type
);
410 Object
*object_new(const char *typename
)
412 TypeImpl
*ti
= type_get_by_name(typename
);
414 return object_new_with_type(ti
);
417 void object_delete(Object
*obj
)
419 object_unparent(obj
);
420 g_assert(obj
->ref
== 1);
424 Object
*object_dynamic_cast(Object
*obj
, const char *typename
)
426 if (obj
&& object_class_dynamic_cast(object_get_class(obj
), typename
)) {
433 Object
*object_dynamic_cast_assert(Object
*obj
, const char *typename
)
437 inst
= object_dynamic_cast(obj
, typename
);
440 fprintf(stderr
, "Object %p is not an instance of type %s\n",
448 ObjectClass
*object_class_dynamic_cast(ObjectClass
*class,
449 const char *typename
)
451 TypeImpl
*target_type
= type_get_by_name(typename
);
452 TypeImpl
*type
= class->type
;
453 ObjectClass
*ret
= NULL
;
455 if (type
->num_interfaces
&& type_is_ancestor(target_type
, type_interface
)) {
459 for (i
= class->interfaces
; i
; i
= i
->next
) {
460 ObjectClass
*target_class
= i
->data
;
462 if (type_is_ancestor(target_class
->type
, target_type
)) {
468 /* The match was ambiguous, don't allow a cast */
472 } else if (type_is_ancestor(type
, target_type
)) {
479 ObjectClass
*object_class_dynamic_cast_assert(ObjectClass
*class,
480 const char *typename
)
482 ObjectClass
*ret
= object_class_dynamic_cast(class, typename
);
485 fprintf(stderr
, "Object %p is not an instance of type %s\n",
493 const char *object_get_typename(Object
*obj
)
495 return obj
->class->type
->name
;
498 ObjectClass
*object_get_class(Object
*obj
)
503 const char *object_class_get_name(ObjectClass
*klass
)
505 return klass
->type
->name
;
508 ObjectClass
*object_class_by_name(const char *typename
)
510 TypeImpl
*type
= type_get_by_name(typename
);
516 type_initialize(type
);
521 ObjectClass
*object_class_get_parent(ObjectClass
*class)
523 TypeImpl
*type
= type_get_parent(class->type
);
529 type_initialize(type
);
534 typedef struct OCFData
536 void (*fn
)(ObjectClass
*klass
, void *opaque
);
537 const char *implements_type
;
538 bool include_abstract
;
542 static void object_class_foreach_tramp(gpointer key
, gpointer value
,
545 OCFData
*data
= opaque
;
546 TypeImpl
*type
= value
;
549 type_initialize(type
);
552 if (!data
->include_abstract
&& type
->abstract
) {
556 if (data
->implements_type
&&
557 !object_class_dynamic_cast(k
, data
->implements_type
)) {
561 data
->fn(k
, data
->opaque
);
564 void object_class_foreach(void (*fn
)(ObjectClass
*klass
, void *opaque
),
565 const char *implements_type
, bool include_abstract
,
568 OCFData data
= { fn
, implements_type
, include_abstract
, opaque
};
570 g_hash_table_foreach(type_table_get(), object_class_foreach_tramp
, &data
);
573 int object_child_foreach(Object
*obj
, int (*fn
)(Object
*child
, void *opaque
),
576 ObjectProperty
*prop
;
579 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
580 if (object_property_is_child(prop
)) {
581 ret
= fn(prop
->opaque
, opaque
);
590 static void object_class_get_list_tramp(ObjectClass
*klass
, void *opaque
)
592 GSList
**list
= opaque
;
594 *list
= g_slist_prepend(*list
, klass
);
597 GSList
*object_class_get_list(const char *implements_type
,
598 bool include_abstract
)
602 object_class_foreach(object_class_get_list_tramp
,
603 implements_type
, include_abstract
, &list
);
607 void object_ref(Object
*obj
)
612 void object_unref(Object
*obj
)
614 g_assert(obj
->ref
> 0);
617 /* parent always holds a reference to its children */
619 object_finalize(obj
);
623 void object_property_add(Object
*obj
, const char *name
, const char *type
,
624 ObjectPropertyAccessor
*get
,
625 ObjectPropertyAccessor
*set
,
626 ObjectPropertyRelease
*release
,
627 void *opaque
, Error
**errp
)
629 ObjectProperty
*prop
= g_malloc0(sizeof(*prop
));
631 prop
->name
= g_strdup(name
);
632 prop
->type
= g_strdup(type
);
636 prop
->release
= release
;
637 prop
->opaque
= opaque
;
639 QTAILQ_INSERT_TAIL(&obj
->properties
, prop
, node
);
642 ObjectProperty
*object_property_find(Object
*obj
, const char *name
,
645 ObjectProperty
*prop
;
647 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
648 if (strcmp(prop
->name
, name
) == 0) {
653 error_set(errp
, QERR_PROPERTY_NOT_FOUND
, "", name
);
657 void object_property_del(Object
*obj
, const char *name
, Error
**errp
)
659 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
665 prop
->release(obj
, name
, prop
->opaque
);
668 QTAILQ_REMOVE(&obj
->properties
, prop
, node
);
675 void object_property_get(Object
*obj
, Visitor
*v
, const char *name
,
678 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
684 error_set(errp
, QERR_PERMISSION_DENIED
);
686 prop
->get(obj
, v
, prop
->opaque
, name
, errp
);
690 void object_property_set(Object
*obj
, Visitor
*v
, const char *name
,
693 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
699 error_set(errp
, QERR_PERMISSION_DENIED
);
701 prop
->set(obj
, v
, prop
->opaque
, name
, errp
);
705 void object_property_set_str(Object
*obj
, const char *value
,
706 const char *name
, Error
**errp
)
708 QString
*qstr
= qstring_from_str(value
);
709 object_property_set_qobject(obj
, QOBJECT(qstr
), name
, errp
);
714 char *object_property_get_str(Object
*obj
, const char *name
,
717 QObject
*ret
= object_property_get_qobject(obj
, name
, errp
);
724 qstring
= qobject_to_qstring(ret
);
726 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, "string");
729 retval
= g_strdup(qstring_get_str(qstring
));
736 void object_property_set_link(Object
*obj
, Object
*value
,
737 const char *name
, Error
**errp
)
739 object_property_set_str(obj
, object_get_canonical_path(value
),
743 Object
*object_property_get_link(Object
*obj
, const char *name
,
746 char *str
= object_property_get_str(obj
, name
, errp
);
747 Object
*target
= NULL
;
750 target
= object_resolve_path(str
, NULL
);
752 error_set(errp
, QERR_DEVICE_NOT_FOUND
, str
);
760 void object_property_set_bool(Object
*obj
, bool value
,
761 const char *name
, Error
**errp
)
763 QBool
*qbool
= qbool_from_int(value
);
764 object_property_set_qobject(obj
, QOBJECT(qbool
), name
, errp
);
769 bool object_property_get_bool(Object
*obj
, const char *name
,
772 QObject
*ret
= object_property_get_qobject(obj
, name
, errp
);
779 qbool
= qobject_to_qbool(ret
);
781 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, "boolean");
784 retval
= qbool_get_int(qbool
);
791 void object_property_set_int(Object
*obj
, int64_t value
,
792 const char *name
, Error
**errp
)
794 QInt
*qint
= qint_from_int(value
);
795 object_property_set_qobject(obj
, QOBJECT(qint
), name
, errp
);
800 int64_t object_property_get_int(Object
*obj
, const char *name
,
803 QObject
*ret
= object_property_get_qobject(obj
, name
, errp
);
810 qint
= qobject_to_qint(ret
);
812 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, "int");
815 retval
= qint_get_int(qint
);
822 void object_property_parse(Object
*obj
, const char *string
,
823 const char *name
, Error
**errp
)
825 StringInputVisitor
*mi
;
826 mi
= string_input_visitor_new(string
);
827 object_property_set(obj
, string_input_get_visitor(mi
), name
, errp
);
829 string_input_visitor_cleanup(mi
);
832 char *object_property_print(Object
*obj
, const char *name
,
835 StringOutputVisitor
*mo
;
838 mo
= string_output_visitor_new();
839 object_property_get(obj
, string_output_get_visitor(mo
), name
, errp
);
840 string
= string_output_get_string(mo
);
841 string_output_visitor_cleanup(mo
);
845 const char *object_property_get_type(Object
*obj
, const char *name
, Error
**errp
)
847 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
855 Object
*object_get_root(void)
860 root
= object_new("container");
866 static void object_get_child_property(Object
*obj
, Visitor
*v
, void *opaque
,
867 const char *name
, Error
**errp
)
869 Object
*child
= opaque
;
872 path
= object_get_canonical_path(child
);
873 visit_type_str(v
, &path
, name
, errp
);
877 static void object_finalize_child_property(Object
*obj
, const char *name
,
880 Object
*child
= opaque
;
885 void object_property_add_child(Object
*obj
, const char *name
,
886 Object
*child
, Error
**errp
)
890 type
= g_strdup_printf("child<%s>", object_get_typename(OBJECT(child
)));
892 object_property_add(obj
, name
, type
, object_get_child_property
,
893 NULL
, object_finalize_child_property
, child
, errp
);
896 g_assert(child
->parent
== NULL
);
902 static void object_get_link_property(Object
*obj
, Visitor
*v
, void *opaque
,
903 const char *name
, Error
**errp
)
905 Object
**child
= opaque
;
909 path
= object_get_canonical_path(*child
);
910 visit_type_str(v
, &path
, name
, errp
);
914 visit_type_str(v
, &path
, name
, errp
);
918 static void object_set_link_property(Object
*obj
, Visitor
*v
, void *opaque
,
919 const char *name
, Error
**errp
)
921 Object
**child
= opaque
;
923 bool ambiguous
= false;
928 type
= object_property_get_type(obj
, name
, NULL
);
930 visit_type_str(v
, &path
, name
, errp
);
935 if (strcmp(path
, "") != 0) {
938 /* Go from link<FOO> to FOO. */
939 target_type
= g_strndup(&type
[5], strlen(type
) - 6);
940 target
= object_resolve_path_type(path
, target_type
, &ambiguous
);
943 error_set(errp
, QERR_AMBIGUOUS_PATH
, path
);
948 target
= object_resolve_path(path
, &ambiguous
);
949 if (target
|| ambiguous
) {
950 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, target_type
);
952 error_set(errp
, QERR_DEVICE_NOT_FOUND
, path
);
960 if (old_target
!= NULL
) {
961 object_unref(old_target
);
965 void object_property_add_link(Object
*obj
, const char *name
,
966 const char *type
, Object
**child
,
971 full_type
= g_strdup_printf("link<%s>", type
);
973 object_property_add(obj
, name
, full_type
,
974 object_get_link_property
,
975 object_set_link_property
,
981 gchar
*object_get_canonical_path(Object
*obj
)
983 Object
*root
= object_get_root();
984 char *newpath
= NULL
, *path
= NULL
;
986 while (obj
!= root
) {
987 ObjectProperty
*prop
= NULL
;
989 g_assert(obj
->parent
!= NULL
);
991 QTAILQ_FOREACH(prop
, &obj
->parent
->properties
, node
) {
992 if (!object_property_is_child(prop
)) {
996 if (prop
->opaque
== obj
) {
998 newpath
= g_strdup_printf("%s/%s", prop
->name
, path
);
1002 path
= g_strdup(prop
->name
);
1008 g_assert(prop
!= NULL
);
1013 newpath
= g_strdup_printf("/%s", path
);
1019 Object
*object_resolve_path_component(Object
*parent
, gchar
*part
)
1021 ObjectProperty
*prop
= object_property_find(parent
, part
, NULL
);
1026 if (object_property_is_link(prop
)) {
1027 return *(Object
**)prop
->opaque
;
1028 } else if (object_property_is_child(prop
)) {
1029 return prop
->opaque
;
1035 static Object
*object_resolve_abs_path(Object
*parent
,
1037 const char *typename
,
1042 if (parts
[index
] == NULL
) {
1043 return object_dynamic_cast(parent
, typename
);
1046 if (strcmp(parts
[index
], "") == 0) {
1047 return object_resolve_abs_path(parent
, parts
, typename
, index
+ 1);
1050 child
= object_resolve_path_component(parent
, parts
[index
]);
1055 return object_resolve_abs_path(child
, parts
, typename
, index
+ 1);
1058 static Object
*object_resolve_partial_path(Object
*parent
,
1060 const char *typename
,
1064 ObjectProperty
*prop
;
1066 obj
= object_resolve_abs_path(parent
, parts
, typename
, 0);
1068 QTAILQ_FOREACH(prop
, &parent
->properties
, node
) {
1071 if (!object_property_is_child(prop
)) {
1075 found
= object_resolve_partial_path(prop
->opaque
, parts
,
1076 typename
, ambiguous
);
1087 if (ambiguous
&& *ambiguous
) {
1095 Object
*object_resolve_path_type(const char *path
, const char *typename
,
1098 bool partial_path
= true;
1102 parts
= g_strsplit(path
, "/", 0);
1103 if (parts
== NULL
|| parts
[0] == NULL
) {
1105 return object_get_root();
1108 if (strcmp(parts
[0], "") == 0) {
1109 partial_path
= false;
1116 obj
= object_resolve_partial_path(object_get_root(), parts
,
1117 typename
, ambiguous
);
1119 obj
= object_resolve_abs_path(object_get_root(), parts
, typename
, 1);
1127 Object
*object_resolve_path(const char *path
, bool *ambiguous
)
1129 return object_resolve_path_type(path
, TYPE_OBJECT
, ambiguous
);
1132 typedef struct StringProperty
1134 char *(*get
)(Object
*, Error
**);
1135 void (*set
)(Object
*, const char *, Error
**);
1138 static void property_get_str(Object
*obj
, Visitor
*v
, void *opaque
,
1139 const char *name
, Error
**errp
)
1141 StringProperty
*prop
= opaque
;
1144 value
= prop
->get(obj
, errp
);
1146 visit_type_str(v
, &value
, name
, errp
);
1151 static void property_set_str(Object
*obj
, Visitor
*v
, void *opaque
,
1152 const char *name
, Error
**errp
)
1154 StringProperty
*prop
= opaque
;
1156 Error
*local_err
= NULL
;
1158 visit_type_str(v
, &value
, name
, &local_err
);
1160 error_propagate(errp
, local_err
);
1164 prop
->set(obj
, value
, errp
);
1168 static void property_release_str(Object
*obj
, const char *name
,
1171 StringProperty
*prop
= opaque
;
1175 void object_property_add_str(Object
*obj
, const char *name
,
1176 char *(*get
)(Object
*, Error
**),
1177 void (*set
)(Object
*, const char *, Error
**),
1180 StringProperty
*prop
= g_malloc0(sizeof(*prop
));
1185 object_property_add(obj
, name
, "string",
1186 get
? property_get_str
: NULL
,
1187 set
? property_set_str
: NULL
,
1188 property_release_str
,
1192 typedef struct BoolProperty
1194 bool (*get
)(Object
*, Error
**);
1195 void (*set
)(Object
*, bool, Error
**);
1198 static void property_get_bool(Object
*obj
, Visitor
*v
, void *opaque
,
1199 const char *name
, Error
**errp
)
1201 BoolProperty
*prop
= opaque
;
1204 value
= prop
->get(obj
, errp
);
1205 visit_type_bool(v
, &value
, name
, errp
);
1208 static void property_set_bool(Object
*obj
, Visitor
*v
, void *opaque
,
1209 const char *name
, Error
**errp
)
1211 BoolProperty
*prop
= opaque
;
1213 Error
*local_err
= NULL
;
1215 visit_type_bool(v
, &value
, name
, &local_err
);
1217 error_propagate(errp
, local_err
);
1221 prop
->set(obj
, value
, errp
);
1224 static void property_release_bool(Object
*obj
, const char *name
,
1227 BoolProperty
*prop
= opaque
;
1231 void object_property_add_bool(Object
*obj
, const char *name
,
1232 bool (*get
)(Object
*, Error
**),
1233 void (*set
)(Object
*, bool, Error
**),
1236 BoolProperty
*prop
= g_malloc0(sizeof(*prop
));
1241 object_property_add(obj
, name
, "bool",
1242 get
? property_get_bool
: NULL
,
1243 set
? property_set_bool
: NULL
,
1244 property_release_bool
,
1248 static char *qdev_get_type(Object
*obj
, Error
**errp
)
1250 return g_strdup(object_get_typename(obj
));
1253 static void object_instance_init(Object
*obj
)
1255 object_property_add_str(obj
, "type", qdev_get_type
, NULL
, NULL
);
1258 static void register_types(void)
1260 static TypeInfo interface_info
= {
1261 .name
= TYPE_INTERFACE
,
1262 .class_size
= sizeof(InterfaceClass
),
1266 static TypeInfo object_info
= {
1267 .name
= TYPE_OBJECT
,
1268 .instance_size
= sizeof(Object
),
1269 .instance_init
= object_instance_init
,
1273 type_interface
= type_register_internal(&interface_info
);
1274 type_register_internal(&object_info
);
1277 type_init(register_types
)