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-visit.h"
17 #include "qapi/string-input-visitor.h"
18 #include "qapi/string-output-visitor.h"
19 #include "qapi/qmp/qerror.h"
22 /* TODO: replace QObject with a simpler visitor to avoid a dependency
23 * of the QOM core on QObject? */
24 #include "qom/qom-qobject.h"
25 #include "qapi/qmp/qobject.h"
26 #include "qapi/qmp/qbool.h"
27 #include "qapi/qmp/qint.h"
28 #include "qapi/qmp/qstring.h"
30 #define MAX_INTERFACES 32
32 typedef struct InterfaceImpl InterfaceImpl
;
33 typedef struct TypeImpl TypeImpl
;
48 void (*class_init
)(ObjectClass
*klass
, void *data
);
49 void (*class_base_init
)(ObjectClass
*klass
, void *data
);
50 void (*class_finalize
)(ObjectClass
*klass
, void *data
);
54 void (*instance_init
)(Object
*obj
);
55 void (*instance_post_init
)(Object
*obj
);
56 void (*instance_finalize
)(Object
*obj
);
61 TypeImpl
*parent_type
;
66 InterfaceImpl interfaces
[MAX_INTERFACES
];
69 static Type type_interface
;
71 static GHashTable
*type_table_get(void)
73 static GHashTable
*type_table
;
75 if (type_table
== NULL
) {
76 type_table
= g_hash_table_new(g_str_hash
, g_str_equal
);
82 static bool enumerating_types
;
84 static void type_table_add(TypeImpl
*ti
)
86 assert(!enumerating_types
);
87 g_hash_table_insert(type_table_get(), (void *)ti
->name
, ti
);
90 static TypeImpl
*type_table_lookup(const char *name
)
92 return g_hash_table_lookup(type_table_get(), name
);
95 static TypeImpl
*type_new(const TypeInfo
*info
)
97 TypeImpl
*ti
= g_malloc0(sizeof(*ti
));
100 g_assert(info
->name
!= NULL
);
102 if (type_table_lookup(info
->name
) != NULL
) {
103 fprintf(stderr
, "Registering `%s' which already exists\n", info
->name
);
107 ti
->name
= g_strdup(info
->name
);
108 ti
->parent
= g_strdup(info
->parent
);
110 ti
->class_size
= info
->class_size
;
111 ti
->instance_size
= info
->instance_size
;
113 ti
->class_init
= info
->class_init
;
114 ti
->class_base_init
= info
->class_base_init
;
115 ti
->class_finalize
= info
->class_finalize
;
116 ti
->class_data
= info
->class_data
;
118 ti
->instance_init
= info
->instance_init
;
119 ti
->instance_post_init
= info
->instance_post_init
;
120 ti
->instance_finalize
= info
->instance_finalize
;
122 ti
->abstract
= info
->abstract
;
124 for (i
= 0; info
->interfaces
&& info
->interfaces
[i
].type
; i
++) {
125 ti
->interfaces
[i
].typename
= g_strdup(info
->interfaces
[i
].type
);
127 ti
->num_interfaces
= i
;
132 static TypeImpl
*type_register_internal(const TypeInfo
*info
)
141 TypeImpl
*type_register(const TypeInfo
*info
)
143 assert(info
->parent
);
144 return type_register_internal(info
);
147 TypeImpl
*type_register_static(const TypeInfo
*info
)
149 return type_register(info
);
152 static TypeImpl
*type_get_by_name(const char *name
)
158 return type_table_lookup(name
);
161 static TypeImpl
*type_get_parent(TypeImpl
*type
)
163 if (!type
->parent_type
&& type
->parent
) {
164 type
->parent_type
= type_get_by_name(type
->parent
);
165 g_assert(type
->parent_type
!= NULL
);
168 return type
->parent_type
;
171 static bool type_has_parent(TypeImpl
*type
)
173 return (type
->parent
!= NULL
);
176 static size_t type_class_get_size(TypeImpl
*ti
)
178 if (ti
->class_size
) {
179 return ti
->class_size
;
182 if (type_has_parent(ti
)) {
183 return type_class_get_size(type_get_parent(ti
));
186 return sizeof(ObjectClass
);
189 static size_t type_object_get_size(TypeImpl
*ti
)
191 if (ti
->instance_size
) {
192 return ti
->instance_size
;
195 if (type_has_parent(ti
)) {
196 return type_object_get_size(type_get_parent(ti
));
202 static bool type_is_ancestor(TypeImpl
*type
, TypeImpl
*target_type
)
206 /* Check if typename is a direct ancestor of type */
208 if (type
== target_type
) {
212 type
= type_get_parent(type
);
218 static void type_initialize(TypeImpl
*ti
);
220 static void type_initialize_interface(TypeImpl
*ti
, TypeImpl
*interface_type
,
221 TypeImpl
*parent_type
)
223 InterfaceClass
*new_iface
;
225 TypeImpl
*iface_impl
;
227 info
.parent
= parent_type
->name
;
228 info
.name
= g_strdup_printf("%s::%s", ti
->name
, interface_type
->name
);
229 info
.abstract
= true;
231 iface_impl
= type_new(&info
);
232 iface_impl
->parent_type
= parent_type
;
233 type_initialize(iface_impl
);
234 g_free((char *)info
.name
);
236 new_iface
= (InterfaceClass
*)iface_impl
->class;
237 new_iface
->concrete_class
= ti
->class;
238 new_iface
->interface_type
= interface_type
;
240 ti
->class->interfaces
= g_slist_append(ti
->class->interfaces
,
244 static void type_initialize(TypeImpl
*ti
)
252 ti
->class_size
= type_class_get_size(ti
);
253 ti
->instance_size
= type_object_get_size(ti
);
255 ti
->class = g_malloc0(ti
->class_size
);
257 parent
= type_get_parent(ti
);
259 type_initialize(parent
);
263 g_assert(parent
->class_size
<= ti
->class_size
);
264 memcpy(ti
->class, parent
->class, parent
->class_size
);
265 ti
->class->interfaces
= NULL
;
267 for (e
= parent
->class->interfaces
; e
; e
= e
->next
) {
268 InterfaceClass
*iface
= e
->data
;
269 ObjectClass
*klass
= OBJECT_CLASS(iface
);
271 type_initialize_interface(ti
, iface
->interface_type
, klass
->type
);
274 for (i
= 0; i
< ti
->num_interfaces
; i
++) {
275 TypeImpl
*t
= type_get_by_name(ti
->interfaces
[i
].typename
);
276 for (e
= ti
->class->interfaces
; e
; e
= e
->next
) {
277 TypeImpl
*target_type
= OBJECT_CLASS(e
->data
)->type
;
279 if (type_is_ancestor(target_type
, t
)) {
288 type_initialize_interface(ti
, t
, t
);
292 ti
->class->type
= ti
;
295 if (parent
->class_base_init
) {
296 parent
->class_base_init(ti
->class, ti
->class_data
);
298 parent
= type_get_parent(parent
);
301 if (ti
->class_init
) {
302 ti
->class_init(ti
->class, ti
->class_data
);
306 static void object_init_with_type(Object
*obj
, TypeImpl
*ti
)
308 if (type_has_parent(ti
)) {
309 object_init_with_type(obj
, type_get_parent(ti
));
312 if (ti
->instance_init
) {
313 ti
->instance_init(obj
);
317 static void object_post_init_with_type(Object
*obj
, TypeImpl
*ti
)
319 if (ti
->instance_post_init
) {
320 ti
->instance_post_init(obj
);
323 if (type_has_parent(ti
)) {
324 object_post_init_with_type(obj
, type_get_parent(ti
));
328 void object_initialize_with_type(void *data
, size_t size
, TypeImpl
*type
)
332 g_assert(type
!= NULL
);
333 type_initialize(type
);
335 g_assert(type
->instance_size
>= sizeof(Object
));
336 g_assert(type
->abstract
== false);
337 g_assert(size
>= type
->instance_size
);
339 memset(obj
, 0, type
->instance_size
);
340 obj
->class = type
->class;
342 QTAILQ_INIT(&obj
->properties
);
343 object_init_with_type(obj
, type
);
344 object_post_init_with_type(obj
, type
);
347 void object_initialize(void *data
, size_t size
, const char *typename
)
349 TypeImpl
*type
= type_get_by_name(typename
);
351 object_initialize_with_type(data
, size
, type
);
354 static inline bool object_property_is_child(ObjectProperty
*prop
)
356 return strstart(prop
->type
, "child<", NULL
);
359 static inline bool object_property_is_link(ObjectProperty
*prop
)
361 return strstart(prop
->type
, "link<", NULL
);
364 static void object_property_del_all(Object
*obj
)
366 while (!QTAILQ_EMPTY(&obj
->properties
)) {
367 ObjectProperty
*prop
= QTAILQ_FIRST(&obj
->properties
);
369 QTAILQ_REMOVE(&obj
->properties
, prop
, node
);
372 prop
->release(obj
, prop
->name
, prop
->opaque
);
381 static void object_property_del_child(Object
*obj
, Object
*child
, Error
**errp
)
383 ObjectProperty
*prop
;
385 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
386 if (object_property_is_child(prop
) && prop
->opaque
== child
) {
387 object_property_del(obj
, prop
->name
, errp
);
393 void object_unparent(Object
*obj
)
400 if (obj
->class->unparent
) {
401 (obj
->class->unparent
)(obj
);
404 object_property_del_child(obj
->parent
, obj
, NULL
);
409 static void object_deinit(Object
*obj
, TypeImpl
*type
)
411 if (type
->instance_finalize
) {
412 type
->instance_finalize(obj
);
415 if (type_has_parent(type
)) {
416 object_deinit(obj
, type_get_parent(type
));
420 static void object_finalize(void *data
)
423 TypeImpl
*ti
= obj
->class->type
;
425 object_deinit(obj
, ti
);
426 object_property_del_all(obj
);
428 g_assert(obj
->ref
== 0);
434 Object
*object_new_with_type(Type type
)
438 g_assert(type
!= NULL
);
439 type_initialize(type
);
441 obj
= g_malloc(type
->instance_size
);
442 object_initialize_with_type(obj
, type
->instance_size
, type
);
448 Object
*object_new(const char *typename
)
450 TypeImpl
*ti
= type_get_by_name(typename
);
452 return object_new_with_type(ti
);
455 Object
*object_dynamic_cast(Object
*obj
, const char *typename
)
457 if (obj
&& object_class_dynamic_cast(object_get_class(obj
), typename
)) {
464 Object
*object_dynamic_cast_assert(Object
*obj
, const char *typename
,
465 const char *file
, int line
, const char *func
)
467 trace_object_dynamic_cast_assert(obj
? obj
->class->type
->name
: "(null)",
468 typename
, file
, line
, func
);
470 #ifdef CONFIG_QOM_CAST_DEBUG
474 for (i
= 0; obj
&& i
< OBJECT_CLASS_CAST_CACHE
; i
++) {
475 if (obj
->class->object_cast_cache
[i
] == typename
) {
480 inst
= object_dynamic_cast(obj
, typename
);
483 fprintf(stderr
, "%s:%d:%s: Object %p is not an instance of type %s\n",
484 file
, line
, func
, obj
, typename
);
490 if (obj
&& obj
== inst
) {
491 for (i
= 1; i
< OBJECT_CLASS_CAST_CACHE
; i
++) {
492 obj
->class->object_cast_cache
[i
- 1] =
493 obj
->class->object_cast_cache
[i
];
495 obj
->class->object_cast_cache
[i
- 1] = typename
;
503 ObjectClass
*object_class_dynamic_cast(ObjectClass
*class,
504 const char *typename
)
506 ObjectClass
*ret
= NULL
;
507 TypeImpl
*target_type
;
514 /* A simple fast path that can trigger a lot for leaf classes. */
516 if (type
->name
== typename
) {
520 target_type
= type_get_by_name(typename
);
522 /* target class type unknown, so fail the cast */
526 if (type
->class->interfaces
&&
527 type_is_ancestor(target_type
, type_interface
)) {
531 for (i
= class->interfaces
; i
; i
= i
->next
) {
532 ObjectClass
*target_class
= i
->data
;
534 if (type_is_ancestor(target_class
->type
, target_type
)) {
540 /* The match was ambiguous, don't allow a cast */
544 } else if (type_is_ancestor(type
, target_type
)) {
551 ObjectClass
*object_class_dynamic_cast_assert(ObjectClass
*class,
552 const char *typename
,
553 const char *file
, int line
,
558 trace_object_class_dynamic_cast_assert(class ? class->type
->name
: "(null)",
559 typename
, file
, line
, func
);
561 #ifdef CONFIG_QOM_CAST_DEBUG
564 for (i
= 0; class && i
< OBJECT_CLASS_CAST_CACHE
; i
++) {
565 if (class->class_cast_cache
[i
] == typename
) {
571 if (!class || !class->interfaces
) {
576 ret
= object_class_dynamic_cast(class, typename
);
578 fprintf(stderr
, "%s:%d:%s: Object %p is not an instance of type %s\n",
579 file
, line
, func
, class, typename
);
583 #ifdef CONFIG_QOM_CAST_DEBUG
584 if (class && ret
== class) {
585 for (i
= 1; i
< OBJECT_CLASS_CAST_CACHE
; i
++) {
586 class->class_cast_cache
[i
- 1] = class->class_cast_cache
[i
];
588 class->class_cast_cache
[i
- 1] = typename
;
595 const char *object_get_typename(Object
*obj
)
597 return obj
->class->type
->name
;
600 ObjectClass
*object_get_class(Object
*obj
)
605 bool object_class_is_abstract(ObjectClass
*klass
)
607 return klass
->type
->abstract
;
610 const char *object_class_get_name(ObjectClass
*klass
)
612 return klass
->type
->name
;
615 ObjectClass
*object_class_by_name(const char *typename
)
617 TypeImpl
*type
= type_get_by_name(typename
);
623 type_initialize(type
);
628 ObjectClass
*object_class_get_parent(ObjectClass
*class)
630 TypeImpl
*type
= type_get_parent(class->type
);
636 type_initialize(type
);
641 typedef struct OCFData
643 void (*fn
)(ObjectClass
*klass
, void *opaque
);
644 const char *implements_type
;
645 bool include_abstract
;
649 static void object_class_foreach_tramp(gpointer key
, gpointer value
,
652 OCFData
*data
= opaque
;
653 TypeImpl
*type
= value
;
656 type_initialize(type
);
659 if (!data
->include_abstract
&& type
->abstract
) {
663 if (data
->implements_type
&&
664 !object_class_dynamic_cast(k
, data
->implements_type
)) {
668 data
->fn(k
, data
->opaque
);
671 void object_class_foreach(void (*fn
)(ObjectClass
*klass
, void *opaque
),
672 const char *implements_type
, bool include_abstract
,
675 OCFData data
= { fn
, implements_type
, include_abstract
, opaque
};
677 enumerating_types
= true;
678 g_hash_table_foreach(type_table_get(), object_class_foreach_tramp
, &data
);
679 enumerating_types
= false;
682 int object_child_foreach(Object
*obj
, int (*fn
)(Object
*child
, void *opaque
),
685 ObjectProperty
*prop
;
688 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
689 if (object_property_is_child(prop
)) {
690 ret
= fn(prop
->opaque
, opaque
);
699 static void object_class_get_list_tramp(ObjectClass
*klass
, void *opaque
)
701 GSList
**list
= opaque
;
703 *list
= g_slist_prepend(*list
, klass
);
706 GSList
*object_class_get_list(const char *implements_type
,
707 bool include_abstract
)
711 object_class_foreach(object_class_get_list_tramp
,
712 implements_type
, include_abstract
, &list
);
716 void object_ref(Object
*obj
)
718 atomic_inc(&obj
->ref
);
721 void object_unref(Object
*obj
)
723 g_assert(obj
->ref
> 0);
725 /* parent always holds a reference to its children */
726 if (atomic_fetch_dec(&obj
->ref
) == 1) {
727 object_finalize(obj
);
731 void object_property_add(Object
*obj
, const char *name
, const char *type
,
732 ObjectPropertyAccessor
*get
,
733 ObjectPropertyAccessor
*set
,
734 ObjectPropertyRelease
*release
,
735 void *opaque
, Error
**errp
)
737 ObjectProperty
*prop
;
739 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
740 if (strcmp(prop
->name
, name
) == 0) {
741 error_setg(errp
, "attempt to add duplicate property '%s'"
742 " to object (type '%s')", name
,
743 object_get_typename(obj
));
748 prop
= g_malloc0(sizeof(*prop
));
750 prop
->name
= g_strdup(name
);
751 prop
->type
= g_strdup(type
);
755 prop
->release
= release
;
756 prop
->opaque
= opaque
;
758 QTAILQ_INSERT_TAIL(&obj
->properties
, prop
, node
);
761 ObjectProperty
*object_property_find(Object
*obj
, const char *name
,
764 ObjectProperty
*prop
;
766 QTAILQ_FOREACH(prop
, &obj
->properties
, node
) {
767 if (strcmp(prop
->name
, name
) == 0) {
772 error_setg(errp
, "Property '.%s' not found", name
);
776 void object_property_del(Object
*obj
, const char *name
, Error
**errp
)
778 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
784 prop
->release(obj
, name
, prop
->opaque
);
787 QTAILQ_REMOVE(&obj
->properties
, prop
, node
);
794 void object_property_get(Object
*obj
, Visitor
*v
, const char *name
,
797 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
803 error_set(errp
, QERR_PERMISSION_DENIED
);
805 prop
->get(obj
, v
, prop
->opaque
, name
, errp
);
809 void object_property_set(Object
*obj
, Visitor
*v
, const char *name
,
812 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
818 error_set(errp
, QERR_PERMISSION_DENIED
);
820 prop
->set(obj
, v
, prop
->opaque
, name
, errp
);
824 void object_property_set_str(Object
*obj
, const char *value
,
825 const char *name
, Error
**errp
)
827 QString
*qstr
= qstring_from_str(value
);
828 object_property_set_qobject(obj
, QOBJECT(qstr
), name
, errp
);
833 char *object_property_get_str(Object
*obj
, const char *name
,
836 QObject
*ret
= object_property_get_qobject(obj
, name
, errp
);
843 qstring
= qobject_to_qstring(ret
);
845 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, "string");
848 retval
= g_strdup(qstring_get_str(qstring
));
855 void object_property_set_link(Object
*obj
, Object
*value
,
856 const char *name
, Error
**errp
)
858 gchar
*path
= object_get_canonical_path(value
);
859 object_property_set_str(obj
, path
, name
, errp
);
863 Object
*object_property_get_link(Object
*obj
, const char *name
,
866 char *str
= object_property_get_str(obj
, name
, errp
);
867 Object
*target
= NULL
;
870 target
= object_resolve_path(str
, NULL
);
872 error_set(errp
, QERR_DEVICE_NOT_FOUND
, str
);
880 void object_property_set_bool(Object
*obj
, bool value
,
881 const char *name
, Error
**errp
)
883 QBool
*qbool
= qbool_from_int(value
);
884 object_property_set_qobject(obj
, QOBJECT(qbool
), name
, errp
);
889 bool object_property_get_bool(Object
*obj
, const char *name
,
892 QObject
*ret
= object_property_get_qobject(obj
, name
, errp
);
899 qbool
= qobject_to_qbool(ret
);
901 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, "boolean");
904 retval
= qbool_get_int(qbool
);
911 void object_property_set_int(Object
*obj
, int64_t value
,
912 const char *name
, Error
**errp
)
914 QInt
*qint
= qint_from_int(value
);
915 object_property_set_qobject(obj
, QOBJECT(qint
), name
, errp
);
920 int64_t object_property_get_int(Object
*obj
, const char *name
,
923 QObject
*ret
= object_property_get_qobject(obj
, name
, errp
);
930 qint
= qobject_to_qint(ret
);
932 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, "int");
935 retval
= qint_get_int(qint
);
942 int object_property_get_enum(Object
*obj
, const char *name
,
943 const char *strings
[], Error
**errp
)
945 StringOutputVisitor
*sov
;
946 StringInputVisitor
*siv
;
949 sov
= string_output_visitor_new(false);
950 object_property_get(obj
, string_output_get_visitor(sov
), name
, errp
);
951 siv
= string_input_visitor_new(string_output_get_string(sov
));
952 string_output_visitor_cleanup(sov
);
953 visit_type_enum(string_input_get_visitor(siv
),
954 &ret
, strings
, NULL
, name
, errp
);
955 string_input_visitor_cleanup(siv
);
960 void object_property_get_uint16List(Object
*obj
, const char *name
,
961 uint16List
**list
, Error
**errp
)
963 StringOutputVisitor
*ov
;
964 StringInputVisitor
*iv
;
966 ov
= string_output_visitor_new(false);
967 object_property_get(obj
, string_output_get_visitor(ov
),
969 iv
= string_input_visitor_new(string_output_get_string(ov
));
970 visit_type_uint16List(string_input_get_visitor(iv
),
972 string_output_visitor_cleanup(ov
);
973 string_input_visitor_cleanup(iv
);
976 void object_property_parse(Object
*obj
, const char *string
,
977 const char *name
, Error
**errp
)
979 StringInputVisitor
*mi
;
980 mi
= string_input_visitor_new(string
);
981 object_property_set(obj
, string_input_get_visitor(mi
), name
, errp
);
983 string_input_visitor_cleanup(mi
);
986 char *object_property_print(Object
*obj
, const char *name
, bool human
,
989 StringOutputVisitor
*mo
;
992 mo
= string_output_visitor_new(human
);
993 object_property_get(obj
, string_output_get_visitor(mo
), name
, errp
);
994 string
= string_output_get_string(mo
);
995 string_output_visitor_cleanup(mo
);
999 const char *object_property_get_type(Object
*obj
, const char *name
, Error
**errp
)
1001 ObjectProperty
*prop
= object_property_find(obj
, name
, errp
);
1009 Object
*object_get_root(void)
1011 static Object
*root
;
1014 root
= object_new("container");
1020 static void object_get_child_property(Object
*obj
, Visitor
*v
, void *opaque
,
1021 const char *name
, Error
**errp
)
1023 Object
*child
= opaque
;
1026 path
= object_get_canonical_path(child
);
1027 visit_type_str(v
, &path
, name
, errp
);
1031 static void object_finalize_child_property(Object
*obj
, const char *name
,
1034 Object
*child
= opaque
;
1036 object_unref(child
);
1039 void object_property_add_child(Object
*obj
, const char *name
,
1040 Object
*child
, Error
**errp
)
1042 Error
*local_err
= NULL
;
1045 type
= g_strdup_printf("child<%s>", object_get_typename(OBJECT(child
)));
1047 object_property_add(obj
, name
, type
, object_get_child_property
, NULL
,
1048 object_finalize_child_property
, child
, &local_err
);
1050 error_propagate(errp
, local_err
);
1054 g_assert(child
->parent
== NULL
);
1055 child
->parent
= obj
;
1061 void object_property_allow_set_link(Object
*obj
, const char *name
,
1062 Object
*val
, Error
**errp
)
1064 /* Allow the link to be set, always */
1069 void (*check
)(Object
*, const char *, Object
*, Error
**);
1070 ObjectPropertyLinkFlags flags
;
1073 static void object_get_link_property(Object
*obj
, Visitor
*v
, void *opaque
,
1074 const char *name
, Error
**errp
)
1076 LinkProperty
*lprop
= opaque
;
1077 Object
**child
= lprop
->child
;
1081 path
= object_get_canonical_path(*child
);
1082 visit_type_str(v
, &path
, name
, errp
);
1086 visit_type_str(v
, &path
, name
, errp
);
1091 * object_resolve_link:
1093 * Lookup an object and ensure its type matches the link property type. This
1094 * is similar to object_resolve_path() except type verification against the
1095 * link property is performed.
1097 * Returns: The matched object or NULL on path lookup failures.
1099 static Object
*object_resolve_link(Object
*obj
, const char *name
,
1100 const char *path
, Error
**errp
)
1104 bool ambiguous
= false;
1107 /* Go from link<FOO> to FOO. */
1108 type
= object_property_get_type(obj
, name
, NULL
);
1109 target_type
= g_strndup(&type
[5], strlen(type
) - 6);
1110 target
= object_resolve_path_type(path
, target_type
, &ambiguous
);
1113 error_set(errp
, ERROR_CLASS_GENERIC_ERROR
,
1114 "Path '%s' does not uniquely identify an object", path
);
1115 } else if (!target
) {
1116 target
= object_resolve_path(path
, &ambiguous
);
1117 if (target
|| ambiguous
) {
1118 error_set(errp
, QERR_INVALID_PARAMETER_TYPE
, name
, target_type
);
1120 error_set(errp
, QERR_DEVICE_NOT_FOUND
, path
);
1124 g_free(target_type
);
1129 static void object_set_link_property(Object
*obj
, Visitor
*v
, void *opaque
,
1130 const char *name
, Error
**errp
)
1132 Error
*local_err
= NULL
;
1133 LinkProperty
*prop
= opaque
;
1134 Object
**child
= prop
->child
;
1135 Object
*old_target
= *child
;
1136 Object
*new_target
= NULL
;
1139 visit_type_str(v
, &path
, name
, &local_err
);
1141 if (!local_err
&& strcmp(path
, "") != 0) {
1142 new_target
= object_resolve_link(obj
, name
, path
, &local_err
);
1147 error_propagate(errp
, local_err
);
1151 prop
->check(obj
, name
, new_target
, &local_err
);
1153 error_propagate(errp
, local_err
);
1158 object_ref(new_target
);
1160 *child
= new_target
;
1161 if (old_target
!= NULL
) {
1162 object_unref(old_target
);
1166 static void object_release_link_property(Object
*obj
, const char *name
,
1169 LinkProperty
*prop
= opaque
;
1171 if ((prop
->flags
& OBJ_PROP_LINK_UNREF_ON_RELEASE
) && *prop
->child
) {
1172 object_unref(*prop
->child
);
1177 void object_property_add_link(Object
*obj
, const char *name
,
1178 const char *type
, Object
**child
,
1179 void (*check
)(Object
*, const char *,
1180 Object
*, Error
**),
1181 ObjectPropertyLinkFlags flags
,
1184 Error
*local_err
= NULL
;
1185 LinkProperty
*prop
= g_malloc(sizeof(*prop
));
1188 prop
->child
= child
;
1189 prop
->check
= check
;
1190 prop
->flags
= flags
;
1192 full_type
= g_strdup_printf("link<%s>", type
);
1194 object_property_add(obj
, name
, full_type
,
1195 object_get_link_property
,
1196 check
? object_set_link_property
: NULL
,
1197 object_release_link_property
,
1201 error_propagate(errp
, local_err
);
1208 gchar
*object_get_canonical_path_component(Object
*obj
)
1210 ObjectProperty
*prop
= NULL
;
1213 g_assert(obj
->parent
!= NULL
);
1215 QTAILQ_FOREACH(prop
, &obj
->parent
->properties
, node
) {
1216 if (!object_property_is_child(prop
)) {
1220 if (prop
->opaque
== obj
) {
1221 return g_strdup(prop
->name
);
1225 /* obj had a parent but was not a child, should never happen */
1226 g_assert_not_reached();
1230 gchar
*object_get_canonical_path(Object
*obj
)
1232 Object
*root
= object_get_root();
1233 char *newpath
, *path
= NULL
;
1235 while (obj
!= root
) {
1236 char *component
= object_get_canonical_path_component(obj
);
1239 newpath
= g_strdup_printf("%s/%s", component
, path
);
1250 newpath
= g_strdup_printf("/%s", path
? path
: "");
1256 Object
*object_resolve_path_component(Object
*parent
, const gchar
*part
)
1258 ObjectProperty
*prop
= object_property_find(parent
, part
, NULL
);
1263 if (object_property_is_link(prop
)) {
1264 LinkProperty
*lprop
= prop
->opaque
;
1265 return *lprop
->child
;
1266 } else if (object_property_is_child(prop
)) {
1267 return prop
->opaque
;
1273 static Object
*object_resolve_abs_path(Object
*parent
,
1275 const char *typename
,
1280 if (parts
[index
] == NULL
) {
1281 return object_dynamic_cast(parent
, typename
);
1284 if (strcmp(parts
[index
], "") == 0) {
1285 return object_resolve_abs_path(parent
, parts
, typename
, index
+ 1);
1288 child
= object_resolve_path_component(parent
, parts
[index
]);
1293 return object_resolve_abs_path(child
, parts
, typename
, index
+ 1);
1296 static Object
*object_resolve_partial_path(Object
*parent
,
1298 const char *typename
,
1302 ObjectProperty
*prop
;
1304 obj
= object_resolve_abs_path(parent
, parts
, typename
, 0);
1306 QTAILQ_FOREACH(prop
, &parent
->properties
, node
) {
1309 if (!object_property_is_child(prop
)) {
1313 found
= object_resolve_partial_path(prop
->opaque
, parts
,
1314 typename
, ambiguous
);
1325 if (ambiguous
&& *ambiguous
) {
1333 Object
*object_resolve_path_type(const char *path
, const char *typename
,
1339 parts
= g_strsplit(path
, "/", 0);
1342 if (parts
[0] == NULL
|| strcmp(parts
[0], "") != 0) {
1346 obj
= object_resolve_partial_path(object_get_root(), parts
,
1347 typename
, ambiguous
);
1349 obj
= object_resolve_abs_path(object_get_root(), parts
, typename
, 1);
1357 Object
*object_resolve_path(const char *path
, bool *ambiguous
)
1359 return object_resolve_path_type(path
, TYPE_OBJECT
, ambiguous
);
1362 typedef struct StringProperty
1364 char *(*get
)(Object
*, Error
**);
1365 void (*set
)(Object
*, const char *, Error
**);
1368 static void property_get_str(Object
*obj
, Visitor
*v
, void *opaque
,
1369 const char *name
, Error
**errp
)
1371 StringProperty
*prop
= opaque
;
1374 value
= prop
->get(obj
, errp
);
1376 visit_type_str(v
, &value
, name
, errp
);
1381 static void property_set_str(Object
*obj
, Visitor
*v
, void *opaque
,
1382 const char *name
, Error
**errp
)
1384 StringProperty
*prop
= opaque
;
1386 Error
*local_err
= NULL
;
1388 visit_type_str(v
, &value
, name
, &local_err
);
1390 error_propagate(errp
, local_err
);
1394 prop
->set(obj
, value
, errp
);
1398 static void property_release_str(Object
*obj
, const char *name
,
1401 StringProperty
*prop
= opaque
;
1405 void object_property_add_str(Object
*obj
, const char *name
,
1406 char *(*get
)(Object
*, Error
**),
1407 void (*set
)(Object
*, const char *, Error
**),
1410 Error
*local_err
= NULL
;
1411 StringProperty
*prop
= g_malloc0(sizeof(*prop
));
1416 object_property_add(obj
, name
, "string",
1417 get
? property_get_str
: NULL
,
1418 set
? property_set_str
: NULL
,
1419 property_release_str
,
1422 error_propagate(errp
, local_err
);
1427 typedef struct BoolProperty
1429 bool (*get
)(Object
*, Error
**);
1430 void (*set
)(Object
*, bool, Error
**);
1433 static void property_get_bool(Object
*obj
, Visitor
*v
, void *opaque
,
1434 const char *name
, Error
**errp
)
1436 BoolProperty
*prop
= opaque
;
1439 value
= prop
->get(obj
, errp
);
1440 visit_type_bool(v
, &value
, name
, errp
);
1443 static void property_set_bool(Object
*obj
, Visitor
*v
, void *opaque
,
1444 const char *name
, Error
**errp
)
1446 BoolProperty
*prop
= opaque
;
1448 Error
*local_err
= NULL
;
1450 visit_type_bool(v
, &value
, name
, &local_err
);
1452 error_propagate(errp
, local_err
);
1456 prop
->set(obj
, value
, errp
);
1459 static void property_release_bool(Object
*obj
, const char *name
,
1462 BoolProperty
*prop
= opaque
;
1466 void object_property_add_bool(Object
*obj
, const char *name
,
1467 bool (*get
)(Object
*, Error
**),
1468 void (*set
)(Object
*, bool, Error
**),
1471 Error
*local_err
= NULL
;
1472 BoolProperty
*prop
= g_malloc0(sizeof(*prop
));
1477 object_property_add(obj
, name
, "bool",
1478 get
? property_get_bool
: NULL
,
1479 set
? property_set_bool
: NULL
,
1480 property_release_bool
,
1483 error_propagate(errp
, local_err
);
1488 static char *qdev_get_type(Object
*obj
, Error
**errp
)
1490 return g_strdup(object_get_typename(obj
));
1493 static void property_get_uint8_ptr(Object
*obj
, Visitor
*v
,
1494 void *opaque
, const char *name
,
1497 uint8_t value
= *(uint8_t *)opaque
;
1498 visit_type_uint8(v
, &value
, name
, errp
);
1501 static void property_get_uint16_ptr(Object
*obj
, Visitor
*v
,
1502 void *opaque
, const char *name
,
1505 uint16_t value
= *(uint16_t *)opaque
;
1506 visit_type_uint16(v
, &value
, name
, errp
);
1509 static void property_get_uint32_ptr(Object
*obj
, Visitor
*v
,
1510 void *opaque
, const char *name
,
1513 uint32_t value
= *(uint32_t *)opaque
;
1514 visit_type_uint32(v
, &value
, name
, errp
);
1517 static void property_get_uint64_ptr(Object
*obj
, Visitor
*v
,
1518 void *opaque
, const char *name
,
1521 uint64_t value
= *(uint64_t *)opaque
;
1522 visit_type_uint64(v
, &value
, name
, errp
);
1525 void object_property_add_uint8_ptr(Object
*obj
, const char *name
,
1526 const uint8_t *v
, Error
**errp
)
1528 object_property_add(obj
, name
, "uint8", property_get_uint8_ptr
,
1529 NULL
, NULL
, (void *)v
, errp
);
1532 void object_property_add_uint16_ptr(Object
*obj
, const char *name
,
1533 const uint16_t *v
, Error
**errp
)
1535 object_property_add(obj
, name
, "uint16", property_get_uint16_ptr
,
1536 NULL
, NULL
, (void *)v
, errp
);
1539 void object_property_add_uint32_ptr(Object
*obj
, const char *name
,
1540 const uint32_t *v
, Error
**errp
)
1542 object_property_add(obj
, name
, "uint32", property_get_uint32_ptr
,
1543 NULL
, NULL
, (void *)v
, errp
);
1546 void object_property_add_uint64_ptr(Object
*obj
, const char *name
,
1547 const uint64_t *v
, Error
**errp
)
1549 object_property_add(obj
, name
, "uint64", property_get_uint64_ptr
,
1550 NULL
, NULL
, (void *)v
, errp
);
1555 const char *target_name
;
1558 static void property_get_alias(Object
*obj
, struct Visitor
*v
, void *opaque
,
1559 const char *name
, Error
**errp
)
1561 AliasProperty
*prop
= opaque
;
1563 object_property_get(prop
->target_obj
, v
, prop
->target_name
, errp
);
1566 static void property_set_alias(Object
*obj
, struct Visitor
*v
, void *opaque
,
1567 const char *name
, Error
**errp
)
1569 AliasProperty
*prop
= opaque
;
1571 object_property_set(prop
->target_obj
, v
, prop
->target_name
, errp
);
1574 static void property_release_alias(Object
*obj
, const char *name
, void *opaque
)
1576 AliasProperty
*prop
= opaque
;
1581 void object_property_add_alias(Object
*obj
, const char *name
,
1582 Object
*target_obj
, const char *target_name
,
1585 AliasProperty
*prop
;
1586 ObjectProperty
*target_prop
;
1588 target_prop
= object_property_find(target_obj
, target_name
, errp
);
1593 prop
= g_malloc(sizeof(*prop
));
1594 prop
->target_obj
= target_obj
;
1595 prop
->target_name
= target_name
;
1597 object_property_add(obj
, name
, target_prop
->type
,
1600 property_release_alias
,
1604 static void object_instance_init(Object
*obj
)
1606 object_property_add_str(obj
, "type", qdev_get_type
, NULL
, NULL
);
1609 static void register_types(void)
1611 static TypeInfo interface_info
= {
1612 .name
= TYPE_INTERFACE
,
1613 .class_size
= sizeof(InterfaceClass
),
1617 static TypeInfo object_info
= {
1618 .name
= TYPE_OBJECT
,
1619 .instance_size
= sizeof(Object
),
1620 .instance_init
= object_instance_init
,
1624 type_interface
= type_register_internal(&interface_info
);
1625 type_register_internal(&object_info
);
1628 type_init(register_types
)