Commit | Line | Data |
---|---|---|
2f28d2ff AL |
1 | /* |
2 | * QEMU Object Model | |
3 | * | |
4 | * Copyright IBM, Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <aliguori@us.ibm.com> | |
8 | * | |
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. | |
11 | */ | |
12 | ||
9bbc853b | 13 | #include "qemu/osdep.h" |
da34e65c | 14 | #include "qapi/error.h" |
14cccb61 | 15 | #include "qom/object.h" |
a31bdae5 | 16 | #include "qom/object_interfaces.h" |
f348b6d1 | 17 | #include "qemu/cutils.h" |
7b1b5d19 | 18 | #include "qapi/visitor.h" |
b2cd7dee PB |
19 | #include "qapi/string-input-visitor.h" |
20 | #include "qapi/string-output-visitor.h" | |
eb815e24 | 21 | #include "qapi/qapi-builtin-visit.h" |
7b1b5d19 | 22 | #include "qapi/qmp/qerror.h" |
fa131d94 | 23 | #include "trace.h" |
2f28d2ff | 24 | |
7b7b7d18 PB |
25 | /* TODO: replace QObject with a simpler visitor to avoid a dependency |
26 | * of the QOM core on QObject? */ | |
14cccb61 | 27 | #include "qom/qom-qobject.h" |
7b1b5d19 | 28 | #include "qapi/qmp/qbool.h" |
15280c36 | 29 | #include "qapi/qmp/qnum.h" |
7b1b5d19 | 30 | #include "qapi/qmp/qstring.h" |
7b7b7d18 | 31 | |
2f28d2ff AL |
32 | #define MAX_INTERFACES 32 |
33 | ||
34 | typedef struct InterfaceImpl InterfaceImpl; | |
35 | typedef struct TypeImpl TypeImpl; | |
36 | ||
37 | struct InterfaceImpl | |
38 | { | |
33e95c63 | 39 | const char *typename; |
2f28d2ff AL |
40 | }; |
41 | ||
42 | struct TypeImpl | |
43 | { | |
44 | const char *name; | |
45 | ||
46 | size_t class_size; | |
47 | ||
48 | size_t instance_size; | |
49 | ||
50 | void (*class_init)(ObjectClass *klass, void *data); | |
3b50e311 | 51 | void (*class_base_init)(ObjectClass *klass, void *data); |
2f28d2ff AL |
52 | void (*class_finalize)(ObjectClass *klass, void *data); |
53 | ||
54 | void *class_data; | |
55 | ||
56 | void (*instance_init)(Object *obj); | |
8231c2dd | 57 | void (*instance_post_init)(Object *obj); |
2f28d2ff AL |
58 | void (*instance_finalize)(Object *obj); |
59 | ||
60 | bool abstract; | |
61 | ||
62 | const char *parent; | |
63 | TypeImpl *parent_type; | |
64 | ||
65 | ObjectClass *class; | |
66 | ||
67 | int num_interfaces; | |
68 | InterfaceImpl interfaces[MAX_INTERFACES]; | |
69 | }; | |
70 | ||
9970bd88 PB |
71 | static Type type_interface; |
72 | ||
2f28d2ff AL |
73 | static GHashTable *type_table_get(void) |
74 | { | |
75 | static GHashTable *type_table; | |
76 | ||
77 | if (type_table == NULL) { | |
78 | type_table = g_hash_table_new(g_str_hash, g_str_equal); | |
79 | } | |
80 | ||
81 | return type_table; | |
82 | } | |
83 | ||
f54c19ca HP |
84 | static bool enumerating_types; |
85 | ||
2f28d2ff AL |
86 | static void type_table_add(TypeImpl *ti) |
87 | { | |
f54c19ca | 88 | assert(!enumerating_types); |
2f28d2ff AL |
89 | g_hash_table_insert(type_table_get(), (void *)ti->name, ti); |
90 | } | |
91 | ||
92 | static TypeImpl *type_table_lookup(const char *name) | |
93 | { | |
94 | return g_hash_table_lookup(type_table_get(), name); | |
95 | } | |
96 | ||
b061dc41 | 97 | static TypeImpl *type_new(const TypeInfo *info) |
2f28d2ff AL |
98 | { |
99 | TypeImpl *ti = g_malloc0(sizeof(*ti)); | |
33e95c63 | 100 | int i; |
2f28d2ff AL |
101 | |
102 | g_assert(info->name != NULL); | |
103 | ||
73093354 AL |
104 | if (type_table_lookup(info->name) != NULL) { |
105 | fprintf(stderr, "Registering `%s' which already exists\n", info->name); | |
106 | abort(); | |
107 | } | |
108 | ||
2f28d2ff AL |
109 | ti->name = g_strdup(info->name); |
110 | ti->parent = g_strdup(info->parent); | |
111 | ||
112 | ti->class_size = info->class_size; | |
113 | ti->instance_size = info->instance_size; | |
114 | ||
115 | ti->class_init = info->class_init; | |
3b50e311 | 116 | ti->class_base_init = info->class_base_init; |
2f28d2ff AL |
117 | ti->class_finalize = info->class_finalize; |
118 | ti->class_data = info->class_data; | |
119 | ||
120 | ti->instance_init = info->instance_init; | |
8231c2dd | 121 | ti->instance_post_init = info->instance_post_init; |
2f28d2ff AL |
122 | ti->instance_finalize = info->instance_finalize; |
123 | ||
124 | ti->abstract = info->abstract; | |
125 | ||
33e95c63 AL |
126 | for (i = 0; info->interfaces && info->interfaces[i].type; i++) { |
127 | ti->interfaces[i].typename = g_strdup(info->interfaces[i].type); | |
2f28d2ff | 128 | } |
33e95c63 | 129 | ti->num_interfaces = i; |
2f28d2ff | 130 | |
b061dc41 PB |
131 | return ti; |
132 | } | |
2f28d2ff | 133 | |
b061dc41 PB |
134 | static TypeImpl *type_register_internal(const TypeInfo *info) |
135 | { | |
136 | TypeImpl *ti; | |
137 | ti = type_new(info); | |
138 | ||
139 | type_table_add(ti); | |
2f28d2ff AL |
140 | return ti; |
141 | } | |
142 | ||
049cb3cf PB |
143 | TypeImpl *type_register(const TypeInfo *info) |
144 | { | |
145 | assert(info->parent); | |
146 | return type_register_internal(info); | |
147 | } | |
148 | ||
2f28d2ff AL |
149 | TypeImpl *type_register_static(const TypeInfo *info) |
150 | { | |
151 | return type_register(info); | |
152 | } | |
153 | ||
aa04c9d2 IM |
154 | void type_register_static_array(const TypeInfo *infos, int nr_infos) |
155 | { | |
156 | int i; | |
157 | ||
158 | for (i = 0; i < nr_infos; i++) { | |
159 | type_register_static(&infos[i]); | |
160 | } | |
161 | } | |
162 | ||
2f28d2ff AL |
163 | static TypeImpl *type_get_by_name(const char *name) |
164 | { | |
165 | if (name == NULL) { | |
166 | return NULL; | |
167 | } | |
168 | ||
169 | return type_table_lookup(name); | |
170 | } | |
171 | ||
172 | static TypeImpl *type_get_parent(TypeImpl *type) | |
173 | { | |
174 | if (!type->parent_type && type->parent) { | |
175 | type->parent_type = type_get_by_name(type->parent); | |
176 | g_assert(type->parent_type != NULL); | |
177 | } | |
178 | ||
179 | return type->parent_type; | |
180 | } | |
181 | ||
182 | static bool type_has_parent(TypeImpl *type) | |
183 | { | |
184 | return (type->parent != NULL); | |
185 | } | |
186 | ||
187 | static size_t type_class_get_size(TypeImpl *ti) | |
188 | { | |
189 | if (ti->class_size) { | |
190 | return ti->class_size; | |
191 | } | |
192 | ||
193 | if (type_has_parent(ti)) { | |
194 | return type_class_get_size(type_get_parent(ti)); | |
195 | } | |
196 | ||
197 | return sizeof(ObjectClass); | |
198 | } | |
199 | ||
aca59af6 IM |
200 | static size_t type_object_get_size(TypeImpl *ti) |
201 | { | |
202 | if (ti->instance_size) { | |
203 | return ti->instance_size; | |
204 | } | |
205 | ||
206 | if (type_has_parent(ti)) { | |
207 | return type_object_get_size(type_get_parent(ti)); | |
208 | } | |
209 | ||
210 | return 0; | |
211 | } | |
212 | ||
3f97b53a BR |
213 | size_t object_type_get_instance_size(const char *typename) |
214 | { | |
215 | TypeImpl *type = type_get_by_name(typename); | |
216 | ||
217 | g_assert(type != NULL); | |
218 | return type_object_get_size(type); | |
219 | } | |
220 | ||
33e95c63 | 221 | static bool type_is_ancestor(TypeImpl *type, TypeImpl *target_type) |
2f28d2ff | 222 | { |
33e95c63 AL |
223 | assert(target_type); |
224 | ||
b30d8054 | 225 | /* Check if target_type is a direct ancestor of type */ |
33e95c63 AL |
226 | while (type) { |
227 | if (type == target_type) { | |
228 | return true; | |
229 | } | |
2f28d2ff | 230 | |
33e95c63 AL |
231 | type = type_get_parent(type); |
232 | } | |
233 | ||
234 | return false; | |
235 | } | |
236 | ||
237 | static void type_initialize(TypeImpl *ti); | |
238 | ||
b061dc41 PB |
239 | static void type_initialize_interface(TypeImpl *ti, TypeImpl *interface_type, |
240 | TypeImpl *parent_type) | |
33e95c63 AL |
241 | { |
242 | InterfaceClass *new_iface; | |
243 | TypeInfo info = { }; | |
244 | TypeImpl *iface_impl; | |
245 | ||
b061dc41 PB |
246 | info.parent = parent_type->name; |
247 | info.name = g_strdup_printf("%s::%s", ti->name, interface_type->name); | |
33e95c63 AL |
248 | info.abstract = true; |
249 | ||
b061dc41 PB |
250 | iface_impl = type_new(&info); |
251 | iface_impl->parent_type = parent_type; | |
33e95c63 AL |
252 | type_initialize(iface_impl); |
253 | g_free((char *)info.name); | |
254 | ||
255 | new_iface = (InterfaceClass *)iface_impl->class; | |
256 | new_iface->concrete_class = ti->class; | |
b061dc41 | 257 | new_iface->interface_type = interface_type; |
33e95c63 AL |
258 | |
259 | ti->class->interfaces = g_slist_append(ti->class->interfaces, | |
260 | iface_impl->class); | |
2f28d2ff AL |
261 | } |
262 | ||
16bf7f52 DB |
263 | static void object_property_free(gpointer data) |
264 | { | |
265 | ObjectProperty *prop = data; | |
266 | ||
267 | g_free(prop->name); | |
268 | g_free(prop->type); | |
269 | g_free(prop->description); | |
270 | g_free(prop); | |
271 | } | |
272 | ||
ac451033 | 273 | static void type_initialize(TypeImpl *ti) |
2f28d2ff | 274 | { |
745549c8 | 275 | TypeImpl *parent; |
2f28d2ff AL |
276 | |
277 | if (ti->class) { | |
278 | return; | |
279 | } | |
280 | ||
281 | ti->class_size = type_class_get_size(ti); | |
aca59af6 | 282 | ti->instance_size = type_object_get_size(ti); |
1c6d75d5 EH |
283 | /* Any type with zero instance_size is implicitly abstract. |
284 | * This means interface types are all abstract. | |
285 | */ | |
286 | if (ti->instance_size == 0) { | |
287 | ti->abstract = true; | |
288 | } | |
2f28d2ff AL |
289 | |
290 | ti->class = g_malloc0(ti->class_size); | |
2f28d2ff | 291 | |
745549c8 PB |
292 | parent = type_get_parent(ti); |
293 | if (parent) { | |
ac451033 | 294 | type_initialize(parent); |
33e95c63 AL |
295 | GSList *e; |
296 | int i; | |
2f28d2ff | 297 | |
8438a135 | 298 | g_assert_cmpint(parent->class_size, <=, ti->class_size); |
745549c8 | 299 | memcpy(ti->class, parent->class, parent->class_size); |
3e407de4 | 300 | ti->class->interfaces = NULL; |
16bf7f52 DB |
301 | ti->class->properties = g_hash_table_new_full( |
302 | g_str_hash, g_str_equal, g_free, object_property_free); | |
33e95c63 AL |
303 | |
304 | for (e = parent->class->interfaces; e; e = e->next) { | |
b061dc41 PB |
305 | InterfaceClass *iface = e->data; |
306 | ObjectClass *klass = OBJECT_CLASS(iface); | |
307 | ||
308 | type_initialize_interface(ti, iface->interface_type, klass->type); | |
33e95c63 AL |
309 | } |
310 | ||
311 | for (i = 0; i < ti->num_interfaces; i++) { | |
312 | TypeImpl *t = type_get_by_name(ti->interfaces[i].typename); | |
313 | for (e = ti->class->interfaces; e; e = e->next) { | |
314 | TypeImpl *target_type = OBJECT_CLASS(e->data)->type; | |
315 | ||
316 | if (type_is_ancestor(target_type, t)) { | |
317 | break; | |
318 | } | |
319 | } | |
320 | ||
321 | if (e) { | |
322 | continue; | |
323 | } | |
324 | ||
b061dc41 | 325 | type_initialize_interface(ti, t, t); |
33e95c63 | 326 | } |
16bf7f52 DB |
327 | } else { |
328 | ti->class->properties = g_hash_table_new_full( | |
329 | g_str_hash, g_str_equal, g_free, object_property_free); | |
745549c8 | 330 | } |
2f28d2ff | 331 | |
745549c8 | 332 | ti->class->type = ti; |
3b50e311 | 333 | |
745549c8 PB |
334 | while (parent) { |
335 | if (parent->class_base_init) { | |
336 | parent->class_base_init(ti->class, ti->class_data); | |
3b50e311 | 337 | } |
745549c8 | 338 | parent = type_get_parent(parent); |
2f28d2ff AL |
339 | } |
340 | ||
2f28d2ff AL |
341 | if (ti->class_init) { |
342 | ti->class_init(ti->class, ti->class_data); | |
343 | } | |
2f28d2ff AL |
344 | } |
345 | ||
346 | static void object_init_with_type(Object *obj, TypeImpl *ti) | |
347 | { | |
2f28d2ff AL |
348 | if (type_has_parent(ti)) { |
349 | object_init_with_type(obj, type_get_parent(ti)); | |
350 | } | |
351 | ||
2f28d2ff AL |
352 | if (ti->instance_init) { |
353 | ti->instance_init(obj); | |
354 | } | |
355 | } | |
356 | ||
8231c2dd EH |
357 | static void object_post_init_with_type(Object *obj, TypeImpl *ti) |
358 | { | |
359 | if (ti->instance_post_init) { | |
360 | ti->instance_post_init(obj); | |
361 | } | |
362 | ||
363 | if (type_has_parent(ti)) { | |
364 | object_post_init_with_type(obj, type_get_parent(ti)); | |
365 | } | |
366 | } | |
367 | ||
63f7b10b | 368 | static void object_initialize_with_type(void *data, size_t size, TypeImpl *type) |
2f28d2ff AL |
369 | { |
370 | Object *obj = data; | |
371 | ||
372 | g_assert(type != NULL); | |
ac451033 | 373 | type_initialize(type); |
aca59af6 | 374 | |
8438a135 | 375 | g_assert_cmpint(type->instance_size, >=, sizeof(Object)); |
2f28d2ff | 376 | g_assert(type->abstract == false); |
8438a135 | 377 | g_assert_cmpint(size, >=, type->instance_size); |
2f28d2ff AL |
378 | |
379 | memset(obj, 0, type->instance_size); | |
380 | obj->class = type->class; | |
764b6312 | 381 | object_ref(obj); |
b604a854 PF |
382 | obj->properties = g_hash_table_new_full(g_str_hash, g_str_equal, |
383 | NULL, object_property_free); | |
2f28d2ff | 384 | object_init_with_type(obj, type); |
8231c2dd | 385 | object_post_init_with_type(obj, type); |
2f28d2ff AL |
386 | } |
387 | ||
213f0c4f | 388 | void object_initialize(void *data, size_t size, const char *typename) |
2f28d2ff AL |
389 | { |
390 | TypeImpl *type = type_get_by_name(typename); | |
391 | ||
5b9237f6 | 392 | object_initialize_with_type(data, size, type); |
2f28d2ff AL |
393 | } |
394 | ||
5d9d3f47 AF |
395 | static inline bool object_property_is_child(ObjectProperty *prop) |
396 | { | |
397 | return strstart(prop->type, "child<", NULL); | |
398 | } | |
399 | ||
57c9fafe AL |
400 | static void object_property_del_all(Object *obj) |
401 | { | |
b604a854 PF |
402 | ObjectProperty *prop; |
403 | GHashTableIter iter; | |
404 | gpointer key, value; | |
405 | bool released; | |
406 | ||
407 | do { | |
408 | released = false; | |
409 | g_hash_table_iter_init(&iter, obj->properties); | |
410 | while (g_hash_table_iter_next(&iter, &key, &value)) { | |
411 | prop = value; | |
412 | if (prop->release) { | |
413 | prop->release(obj, prop->name, prop->opaque); | |
414 | prop->release = NULL; | |
415 | released = true; | |
416 | break; | |
417 | } | |
418 | g_hash_table_iter_remove(&iter); | |
57c9fafe | 419 | } |
b604a854 | 420 | } while (released); |
57c9fafe | 421 | |
b604a854 | 422 | g_hash_table_unref(obj->properties); |
57c9fafe AL |
423 | } |
424 | ||
425 | static void object_property_del_child(Object *obj, Object *child, Error **errp) | |
426 | { | |
427 | ObjectProperty *prop; | |
b604a854 PF |
428 | GHashTableIter iter; |
429 | gpointer key, value; | |
57c9fafe | 430 | |
b604a854 PF |
431 | g_hash_table_iter_init(&iter, obj->properties); |
432 | while (g_hash_table_iter_next(&iter, &key, &value)) { | |
433 | prop = value; | |
434 | if (object_property_is_child(prop) && prop->opaque == child) { | |
435 | if (prop->release) { | |
436 | prop->release(obj, prop->name, prop->opaque); | |
437 | prop->release = NULL; | |
438 | } | |
439 | break; | |
440 | } | |
441 | } | |
442 | g_hash_table_iter_init(&iter, obj->properties); | |
443 | while (g_hash_table_iter_next(&iter, &key, &value)) { | |
444 | prop = value; | |
5d9d3f47 | 445 | if (object_property_is_child(prop) && prop->opaque == child) { |
b604a854 | 446 | g_hash_table_iter_remove(&iter); |
6c1fdcf9 | 447 | break; |
57c9fafe AL |
448 | } |
449 | } | |
450 | } | |
451 | ||
452 | void object_unparent(Object *obj) | |
453 | { | |
e998fa8d MT |
454 | if (obj->parent) { |
455 | object_property_del_child(obj->parent, obj, NULL); | |
456 | } | |
57c9fafe AL |
457 | } |
458 | ||
2f28d2ff AL |
459 | static void object_deinit(Object *obj, TypeImpl *type) |
460 | { | |
461 | if (type->instance_finalize) { | |
462 | type->instance_finalize(obj); | |
463 | } | |
464 | ||
2f28d2ff AL |
465 | if (type_has_parent(type)) { |
466 | object_deinit(obj, type_get_parent(type)); | |
467 | } | |
468 | } | |
469 | ||
339c2708 | 470 | static void object_finalize(void *data) |
2f28d2ff AL |
471 | { |
472 | Object *obj = data; | |
473 | TypeImpl *ti = obj->class->type; | |
474 | ||
57c9fafe | 475 | object_property_del_all(obj); |
76a6e1cc | 476 | object_deinit(obj, ti); |
db85b575 | 477 | |
8438a135 | 478 | g_assert_cmpint(obj->ref, ==, 0); |
fde9bf44 PB |
479 | if (obj->free) { |
480 | obj->free(obj); | |
481 | } | |
2f28d2ff AL |
482 | } |
483 | ||
63f7b10b | 484 | static Object *object_new_with_type(Type type) |
2f28d2ff AL |
485 | { |
486 | Object *obj; | |
487 | ||
488 | g_assert(type != NULL); | |
ac451033 | 489 | type_initialize(type); |
2f28d2ff AL |
490 | |
491 | obj = g_malloc(type->instance_size); | |
5b9237f6 | 492 | object_initialize_with_type(obj, type->instance_size, type); |
fde9bf44 | 493 | obj->free = g_free; |
2f28d2ff AL |
494 | |
495 | return obj; | |
496 | } | |
497 | ||
498 | Object *object_new(const char *typename) | |
499 | { | |
500 | TypeImpl *ti = type_get_by_name(typename); | |
501 | ||
502 | return object_new_with_type(ti); | |
503 | } | |
504 | ||
a31bdae5 DB |
505 | |
506 | Object *object_new_with_props(const char *typename, | |
507 | Object *parent, | |
508 | const char *id, | |
509 | Error **errp, | |
510 | ...) | |
511 | { | |
512 | va_list vargs; | |
513 | Object *obj; | |
514 | ||
515 | va_start(vargs, errp); | |
516 | obj = object_new_with_propv(typename, parent, id, errp, vargs); | |
517 | va_end(vargs); | |
518 | ||
519 | return obj; | |
520 | } | |
521 | ||
522 | ||
523 | Object *object_new_with_propv(const char *typename, | |
524 | Object *parent, | |
525 | const char *id, | |
526 | Error **errp, | |
527 | va_list vargs) | |
528 | { | |
529 | Object *obj; | |
530 | ObjectClass *klass; | |
531 | Error *local_err = NULL; | |
532 | ||
533 | klass = object_class_by_name(typename); | |
534 | if (!klass) { | |
535 | error_setg(errp, "invalid object type: %s", typename); | |
536 | return NULL; | |
537 | } | |
538 | ||
539 | if (object_class_is_abstract(klass)) { | |
540 | error_setg(errp, "object type '%s' is abstract", typename); | |
541 | return NULL; | |
542 | } | |
543 | obj = object_new(typename); | |
544 | ||
545 | if (object_set_propv(obj, &local_err, vargs) < 0) { | |
546 | goto error; | |
547 | } | |
548 | ||
549 | object_property_add_child(parent, id, obj, &local_err); | |
550 | if (local_err) { | |
551 | goto error; | |
552 | } | |
553 | ||
554 | if (object_dynamic_cast(obj, TYPE_USER_CREATABLE)) { | |
555 | user_creatable_complete(obj, &local_err); | |
556 | if (local_err) { | |
557 | object_unparent(obj); | |
558 | goto error; | |
559 | } | |
560 | } | |
561 | ||
562 | object_unref(OBJECT(obj)); | |
563 | return obj; | |
564 | ||
565 | error: | |
621ff94d | 566 | error_propagate(errp, local_err); |
a31bdae5 DB |
567 | object_unref(obj); |
568 | return NULL; | |
569 | } | |
570 | ||
571 | ||
572 | int object_set_props(Object *obj, | |
573 | Error **errp, | |
574 | ...) | |
575 | { | |
576 | va_list vargs; | |
577 | int ret; | |
578 | ||
579 | va_start(vargs, errp); | |
580 | ret = object_set_propv(obj, errp, vargs); | |
581 | va_end(vargs); | |
582 | ||
583 | return ret; | |
584 | } | |
585 | ||
586 | ||
587 | int object_set_propv(Object *obj, | |
588 | Error **errp, | |
589 | va_list vargs) | |
590 | { | |
591 | const char *propname; | |
592 | Error *local_err = NULL; | |
593 | ||
594 | propname = va_arg(vargs, char *); | |
595 | while (propname != NULL) { | |
596 | const char *value = va_arg(vargs, char *); | |
597 | ||
598 | g_assert(value != NULL); | |
599 | object_property_parse(obj, value, propname, &local_err); | |
600 | if (local_err) { | |
601 | error_propagate(errp, local_err); | |
602 | return -1; | |
603 | } | |
604 | propname = va_arg(vargs, char *); | |
605 | } | |
606 | ||
607 | return 0; | |
608 | } | |
609 | ||
610 | ||
2f28d2ff AL |
611 | Object *object_dynamic_cast(Object *obj, const char *typename) |
612 | { | |
b7f43fe4 | 613 | if (obj && object_class_dynamic_cast(object_get_class(obj), typename)) { |
acc4af3f PB |
614 | return obj; |
615 | } | |
616 | ||
2f28d2ff AL |
617 | return NULL; |
618 | } | |
619 | ||
be17f18b PB |
620 | Object *object_dynamic_cast_assert(Object *obj, const char *typename, |
621 | const char *file, int line, const char *func) | |
2f28d2ff | 622 | { |
fa131d94 PB |
623 | trace_object_dynamic_cast_assert(obj ? obj->class->type->name : "(null)", |
624 | typename, file, line, func); | |
625 | ||
3556c233 | 626 | #ifdef CONFIG_QOM_CAST_DEBUG |
03587328 AL |
627 | int i; |
628 | Object *inst; | |
629 | ||
95916abc | 630 | for (i = 0; obj && i < OBJECT_CLASS_CAST_CACHE; i++) { |
b6b3ccfd | 631 | if (atomic_read(&obj->class->object_cast_cache[i]) == typename) { |
03587328 AL |
632 | goto out; |
633 | } | |
634 | } | |
635 | ||
636 | inst = object_dynamic_cast(obj, typename); | |
2f28d2ff | 637 | |
b7f43fe4 | 638 | if (!inst && obj) { |
be17f18b PB |
639 | fprintf(stderr, "%s:%d:%s: Object %p is not an instance of type %s\n", |
640 | file, line, func, obj, typename); | |
2f28d2ff AL |
641 | abort(); |
642 | } | |
643 | ||
3556c233 | 644 | assert(obj == inst); |
03587328 | 645 | |
95916abc | 646 | if (obj && obj == inst) { |
03587328 | 647 | for (i = 1; i < OBJECT_CLASS_CAST_CACHE; i++) { |
b6b3ccfd AB |
648 | atomic_set(&obj->class->object_cast_cache[i - 1], |
649 | atomic_read(&obj->class->object_cast_cache[i])); | |
03587328 | 650 | } |
b6b3ccfd | 651 | atomic_set(&obj->class->object_cast_cache[i - 1], typename); |
03587328 AL |
652 | } |
653 | ||
654 | out: | |
3556c233 PB |
655 | #endif |
656 | return obj; | |
2f28d2ff AL |
657 | } |
658 | ||
659 | ObjectClass *object_class_dynamic_cast(ObjectClass *class, | |
660 | const char *typename) | |
661 | { | |
33e95c63 | 662 | ObjectClass *ret = NULL; |
bf0fda34 PB |
663 | TypeImpl *target_type; |
664 | TypeImpl *type; | |
2f28d2ff | 665 | |
bf0fda34 PB |
666 | if (!class) { |
667 | return NULL; | |
668 | } | |
669 | ||
793c96b5 | 670 | /* A simple fast path that can trigger a lot for leaf classes. */ |
bf0fda34 | 671 | type = class->type; |
793c96b5 PB |
672 | if (type->name == typename) { |
673 | return class; | |
674 | } | |
675 | ||
bf0fda34 | 676 | target_type = type_get_by_name(typename); |
9ab880b3 AG |
677 | if (!target_type) { |
678 | /* target class type unknown, so fail the cast */ | |
679 | return NULL; | |
680 | } | |
681 | ||
00e2ceae PC |
682 | if (type->class->interfaces && |
683 | type_is_ancestor(target_type, type_interface)) { | |
33e95c63 AL |
684 | int found = 0; |
685 | GSList *i; | |
2f28d2ff | 686 | |
33e95c63 AL |
687 | for (i = class->interfaces; i; i = i->next) { |
688 | ObjectClass *target_class = i->data; | |
689 | ||
690 | if (type_is_ancestor(target_class->type, target_type)) { | |
691 | ret = target_class; | |
692 | found++; | |
693 | } | |
694 | } | |
695 | ||
696 | /* The match was ambiguous, don't allow a cast */ | |
697 | if (found > 1) { | |
698 | ret = NULL; | |
699 | } | |
700 | } else if (type_is_ancestor(type, target_type)) { | |
701 | ret = class; | |
2f28d2ff AL |
702 | } |
703 | ||
33e95c63 | 704 | return ret; |
2f28d2ff AL |
705 | } |
706 | ||
707 | ObjectClass *object_class_dynamic_cast_assert(ObjectClass *class, | |
be17f18b PB |
708 | const char *typename, |
709 | const char *file, int line, | |
710 | const char *func) | |
2f28d2ff | 711 | { |
fa131d94 PB |
712 | ObjectClass *ret; |
713 | ||
714 | trace_object_class_dynamic_cast_assert(class ? class->type->name : "(null)", | |
715 | typename, file, line, func); | |
2f28d2ff | 716 | |
03587328 AL |
717 | #ifdef CONFIG_QOM_CAST_DEBUG |
718 | int i; | |
719 | ||
9d6a3d58 | 720 | for (i = 0; class && i < OBJECT_CLASS_CAST_CACHE; i++) { |
b6b3ccfd | 721 | if (atomic_read(&class->class_cast_cache[i]) == typename) { |
03587328 AL |
722 | ret = class; |
723 | goto out; | |
724 | } | |
725 | } | |
726 | #else | |
9d6a3d58 | 727 | if (!class || !class->interfaces) { |
3556c233 PB |
728 | return class; |
729 | } | |
730 | #endif | |
731 | ||
fa131d94 | 732 | ret = object_class_dynamic_cast(class, typename); |
bf0fda34 | 733 | if (!ret && class) { |
be17f18b PB |
734 | fprintf(stderr, "%s:%d:%s: Object %p is not an instance of type %s\n", |
735 | file, line, func, class, typename); | |
2f28d2ff AL |
736 | abort(); |
737 | } | |
738 | ||
03587328 | 739 | #ifdef CONFIG_QOM_CAST_DEBUG |
9d6a3d58 | 740 | if (class && ret == class) { |
03587328 | 741 | for (i = 1; i < OBJECT_CLASS_CAST_CACHE; i++) { |
b6b3ccfd AB |
742 | atomic_set(&class->class_cast_cache[i - 1], |
743 | atomic_read(&class->class_cast_cache[i])); | |
03587328 | 744 | } |
b6b3ccfd | 745 | atomic_set(&class->class_cast_cache[i - 1], typename); |
03587328 AL |
746 | } |
747 | out: | |
748 | #endif | |
2f28d2ff AL |
749 | return ret; |
750 | } | |
751 | ||
8f5d58ef | 752 | const char *object_get_typename(const Object *obj) |
2f28d2ff AL |
753 | { |
754 | return obj->class->type->name; | |
755 | } | |
756 | ||
757 | ObjectClass *object_get_class(Object *obj) | |
758 | { | |
759 | return obj->class; | |
760 | } | |
761 | ||
17862378 AF |
762 | bool object_class_is_abstract(ObjectClass *klass) |
763 | { | |
764 | return klass->type->abstract; | |
765 | } | |
766 | ||
2f28d2ff AL |
767 | const char *object_class_get_name(ObjectClass *klass) |
768 | { | |
769 | return klass->type->name; | |
770 | } | |
771 | ||
772 | ObjectClass *object_class_by_name(const char *typename) | |
773 | { | |
774 | TypeImpl *type = type_get_by_name(typename); | |
775 | ||
776 | if (!type) { | |
777 | return NULL; | |
778 | } | |
779 | ||
ac451033 | 780 | type_initialize(type); |
2f28d2ff AL |
781 | |
782 | return type->class; | |
783 | } | |
784 | ||
e7cce67f PB |
785 | ObjectClass *object_class_get_parent(ObjectClass *class) |
786 | { | |
787 | TypeImpl *type = type_get_parent(class->type); | |
788 | ||
789 | if (!type) { | |
790 | return NULL; | |
791 | } | |
792 | ||
793 | type_initialize(type); | |
794 | ||
795 | return type->class; | |
796 | } | |
797 | ||
2f28d2ff AL |
798 | typedef struct OCFData |
799 | { | |
800 | void (*fn)(ObjectClass *klass, void *opaque); | |
93c511a1 AL |
801 | const char *implements_type; |
802 | bool include_abstract; | |
2f28d2ff AL |
803 | void *opaque; |
804 | } OCFData; | |
805 | ||
806 | static void object_class_foreach_tramp(gpointer key, gpointer value, | |
807 | gpointer opaque) | |
808 | { | |
809 | OCFData *data = opaque; | |
810 | TypeImpl *type = value; | |
93c511a1 | 811 | ObjectClass *k; |
2f28d2ff | 812 | |
ac451033 | 813 | type_initialize(type); |
93c511a1 | 814 | k = type->class; |
2f28d2ff | 815 | |
93c511a1 AL |
816 | if (!data->include_abstract && type->abstract) { |
817 | return; | |
818 | } | |
819 | ||
820 | if (data->implements_type && | |
821 | !object_class_dynamic_cast(k, data->implements_type)) { | |
822 | return; | |
823 | } | |
824 | ||
825 | data->fn(k, data->opaque); | |
2f28d2ff AL |
826 | } |
827 | ||
828 | void object_class_foreach(void (*fn)(ObjectClass *klass, void *opaque), | |
93c511a1 | 829 | const char *implements_type, bool include_abstract, |
2f28d2ff AL |
830 | void *opaque) |
831 | { | |
93c511a1 | 832 | OCFData data = { fn, implements_type, include_abstract, opaque }; |
2f28d2ff | 833 | |
f54c19ca | 834 | enumerating_types = true; |
2f28d2ff | 835 | g_hash_table_foreach(type_table_get(), object_class_foreach_tramp, &data); |
f54c19ca | 836 | enumerating_types = false; |
2f28d2ff | 837 | } |
57c9fafe | 838 | |
d714b8de PC |
839 | static int do_object_child_foreach(Object *obj, |
840 | int (*fn)(Object *child, void *opaque), | |
841 | void *opaque, bool recurse) | |
32efc535 | 842 | { |
b604a854 PF |
843 | GHashTableIter iter; |
844 | ObjectProperty *prop; | |
32efc535 PB |
845 | int ret = 0; |
846 | ||
b604a854 PF |
847 | g_hash_table_iter_init(&iter, obj->properties); |
848 | while (g_hash_table_iter_next(&iter, NULL, (gpointer *)&prop)) { | |
32efc535 | 849 | if (object_property_is_child(prop)) { |
d714b8de PC |
850 | Object *child = prop->opaque; |
851 | ||
852 | ret = fn(child, opaque); | |
32efc535 PB |
853 | if (ret != 0) { |
854 | break; | |
855 | } | |
d714b8de PC |
856 | if (recurse) { |
857 | do_object_child_foreach(child, fn, opaque, true); | |
858 | } | |
32efc535 PB |
859 | } |
860 | } | |
861 | return ret; | |
862 | } | |
863 | ||
d714b8de PC |
864 | int object_child_foreach(Object *obj, int (*fn)(Object *child, void *opaque), |
865 | void *opaque) | |
866 | { | |
867 | return do_object_child_foreach(obj, fn, opaque, false); | |
868 | } | |
869 | ||
870 | int object_child_foreach_recursive(Object *obj, | |
871 | int (*fn)(Object *child, void *opaque), | |
872 | void *opaque) | |
873 | { | |
874 | return do_object_child_foreach(obj, fn, opaque, true); | |
875 | } | |
876 | ||
418ba9e5 AF |
877 | static void object_class_get_list_tramp(ObjectClass *klass, void *opaque) |
878 | { | |
879 | GSList **list = opaque; | |
880 | ||
881 | *list = g_slist_prepend(*list, klass); | |
882 | } | |
883 | ||
884 | GSList *object_class_get_list(const char *implements_type, | |
885 | bool include_abstract) | |
886 | { | |
887 | GSList *list = NULL; | |
888 | ||
889 | object_class_foreach(object_class_get_list_tramp, | |
890 | implements_type, include_abstract, &list); | |
891 | return list; | |
892 | } | |
893 | ||
47c66009 PB |
894 | static gint object_class_cmp(gconstpointer a, gconstpointer b) |
895 | { | |
896 | return strcasecmp(object_class_get_name((ObjectClass *)a), | |
897 | object_class_get_name((ObjectClass *)b)); | |
898 | } | |
899 | ||
900 | GSList *object_class_get_list_sorted(const char *implements_type, | |
901 | bool include_abstract) | |
902 | { | |
903 | return g_slist_sort(object_class_get_list(implements_type, include_abstract), | |
904 | object_class_cmp); | |
905 | } | |
906 | ||
57c9fafe AL |
907 | void object_ref(Object *obj) |
908 | { | |
8ffad850 PC |
909 | if (!obj) { |
910 | return; | |
911 | } | |
8438a135 | 912 | atomic_inc(&obj->ref); |
57c9fafe AL |
913 | } |
914 | ||
915 | void object_unref(Object *obj) | |
916 | { | |
8ffad850 PC |
917 | if (!obj) { |
918 | return; | |
919 | } | |
8438a135 | 920 | g_assert_cmpint(obj->ref, >, 0); |
57c9fafe AL |
921 | |
922 | /* parent always holds a reference to its children */ | |
f08c03f3 | 923 | if (atomic_fetch_dec(&obj->ref) == 1) { |
57c9fafe AL |
924 | object_finalize(obj); |
925 | } | |
926 | } | |
927 | ||
64607d08 PB |
928 | ObjectProperty * |
929 | object_property_add(Object *obj, const char *name, const char *type, | |
930 | ObjectPropertyAccessor *get, | |
931 | ObjectPropertyAccessor *set, | |
932 | ObjectPropertyRelease *release, | |
933 | void *opaque, Error **errp) | |
57c9fafe | 934 | { |
54852b03 | 935 | ObjectProperty *prop; |
33965904 PC |
936 | size_t name_len = strlen(name); |
937 | ||
938 | if (name_len >= 3 && !memcmp(name + name_len - 3, "[*]", 4)) { | |
939 | int i; | |
940 | ObjectProperty *ret; | |
941 | char *name_no_array = g_strdup(name); | |
942 | ||
943 | name_no_array[name_len - 3] = '\0'; | |
944 | for (i = 0; ; ++i) { | |
945 | char *full_name = g_strdup_printf("%s[%d]", name_no_array, i); | |
946 | ||
947 | ret = object_property_add(obj, full_name, type, get, set, | |
948 | release, opaque, NULL); | |
949 | g_free(full_name); | |
950 | if (ret) { | |
951 | break; | |
952 | } | |
953 | } | |
954 | g_free(name_no_array); | |
955 | return ret; | |
956 | } | |
54852b03 | 957 | |
16bf7f52 | 958 | if (object_property_find(obj, name, NULL) != NULL) { |
b604a854 | 959 | error_setg(errp, "attempt to add duplicate property '%s'" |
16bf7f52 DB |
960 | " to object (type '%s')", name, |
961 | object_get_typename(obj)); | |
b604a854 | 962 | return NULL; |
54852b03 PM |
963 | } |
964 | ||
965 | prop = g_malloc0(sizeof(*prop)); | |
57c9fafe AL |
966 | |
967 | prop->name = g_strdup(name); | |
968 | prop->type = g_strdup(type); | |
969 | ||
970 | prop->get = get; | |
971 | prop->set = set; | |
972 | prop->release = release; | |
973 | prop->opaque = opaque; | |
974 | ||
b604a854 | 975 | g_hash_table_insert(obj->properties, prop->name, prop); |
64607d08 | 976 | return prop; |
57c9fafe AL |
977 | } |
978 | ||
16bf7f52 DB |
979 | ObjectProperty * |
980 | object_class_property_add(ObjectClass *klass, | |
981 | const char *name, | |
982 | const char *type, | |
983 | ObjectPropertyAccessor *get, | |
984 | ObjectPropertyAccessor *set, | |
985 | ObjectPropertyRelease *release, | |
986 | void *opaque, | |
987 | Error **errp) | |
988 | { | |
989 | ObjectProperty *prop; | |
990 | ||
991 | if (object_class_property_find(klass, name, NULL) != NULL) { | |
992 | error_setg(errp, "attempt to add duplicate property '%s'" | |
993 | " to object (type '%s')", name, | |
994 | object_class_get_name(klass)); | |
995 | return NULL; | |
996 | } | |
997 | ||
998 | prop = g_malloc0(sizeof(*prop)); | |
999 | ||
1000 | prop->name = g_strdup(name); | |
1001 | prop->type = g_strdup(type); | |
1002 | ||
1003 | prop->get = get; | |
1004 | prop->set = set; | |
1005 | prop->release = release; | |
1006 | prop->opaque = opaque; | |
1007 | ||
1008 | g_hash_table_insert(klass->properties, g_strdup(name), prop); | |
1009 | ||
1010 | return prop; | |
1011 | } | |
1012 | ||
89bfe000 PB |
1013 | ObjectProperty *object_property_find(Object *obj, const char *name, |
1014 | Error **errp) | |
57c9fafe AL |
1015 | { |
1016 | ObjectProperty *prop; | |
16bf7f52 DB |
1017 | ObjectClass *klass = object_get_class(obj); |
1018 | ||
1019 | prop = object_class_property_find(klass, name, NULL); | |
1020 | if (prop) { | |
1021 | return prop; | |
1022 | } | |
57c9fafe | 1023 | |
b604a854 PF |
1024 | prop = g_hash_table_lookup(obj->properties, name); |
1025 | if (prop) { | |
1026 | return prop; | |
57c9fafe AL |
1027 | } |
1028 | ||
f231b88d | 1029 | error_setg(errp, "Property '.%s' not found", name); |
57c9fafe AL |
1030 | return NULL; |
1031 | } | |
1032 | ||
7746abd8 DB |
1033 | void object_property_iter_init(ObjectPropertyIterator *iter, |
1034 | Object *obj) | |
a00c9482 | 1035 | { |
7746abd8 DB |
1036 | g_hash_table_iter_init(&iter->iter, obj->properties); |
1037 | iter->nextclass = object_get_class(obj); | |
a00c9482 DB |
1038 | } |
1039 | ||
1040 | ObjectProperty *object_property_iter_next(ObjectPropertyIterator *iter) | |
1041 | { | |
b604a854 | 1042 | gpointer key, val; |
16bf7f52 DB |
1043 | while (!g_hash_table_iter_next(&iter->iter, &key, &val)) { |
1044 | if (!iter->nextclass) { | |
1045 | return NULL; | |
1046 | } | |
1047 | g_hash_table_iter_init(&iter->iter, iter->nextclass->properties); | |
1048 | iter->nextclass = object_class_get_parent(iter->nextclass); | |
a00c9482 | 1049 | } |
b604a854 | 1050 | return val; |
a00c9482 DB |
1051 | } |
1052 | ||
961c47bb AK |
1053 | void object_class_property_iter_init(ObjectPropertyIterator *iter, |
1054 | ObjectClass *klass) | |
1055 | { | |
1056 | g_hash_table_iter_init(&iter->iter, klass->properties); | |
1057 | iter->nextclass = klass; | |
1058 | } | |
1059 | ||
16bf7f52 DB |
1060 | ObjectProperty *object_class_property_find(ObjectClass *klass, const char *name, |
1061 | Error **errp) | |
1062 | { | |
1063 | ObjectProperty *prop; | |
1064 | ObjectClass *parent_klass; | |
1065 | ||
1066 | parent_klass = object_class_get_parent(klass); | |
1067 | if (parent_klass) { | |
1068 | prop = object_class_property_find(parent_klass, name, NULL); | |
1069 | if (prop) { | |
1070 | return prop; | |
1071 | } | |
1072 | } | |
1073 | ||
1074 | prop = g_hash_table_lookup(klass->properties, name); | |
1075 | if (!prop) { | |
1076 | error_setg(errp, "Property '.%s' not found", name); | |
1077 | } | |
1078 | return prop; | |
1079 | } | |
1080 | ||
57c9fafe AL |
1081 | void object_property_del(Object *obj, const char *name, Error **errp) |
1082 | { | |
b604a854 PF |
1083 | ObjectProperty *prop = g_hash_table_lookup(obj->properties, name); |
1084 | ||
1085 | if (!prop) { | |
1086 | error_setg(errp, "Property '.%s' not found", name); | |
0866aca1 AL |
1087 | return; |
1088 | } | |
57c9fafe | 1089 | |
0866aca1 AL |
1090 | if (prop->release) { |
1091 | prop->release(obj, name, prop->opaque); | |
1092 | } | |
b604a854 | 1093 | g_hash_table_remove(obj->properties, name); |
57c9fafe AL |
1094 | } |
1095 | ||
1096 | void object_property_get(Object *obj, Visitor *v, const char *name, | |
1097 | Error **errp) | |
1098 | { | |
89bfe000 | 1099 | ObjectProperty *prop = object_property_find(obj, name, errp); |
57c9fafe | 1100 | if (prop == NULL) { |
57c9fafe AL |
1101 | return; |
1102 | } | |
1103 | ||
1104 | if (!prop->get) { | |
c6bd8c70 | 1105 | error_setg(errp, QERR_PERMISSION_DENIED); |
57c9fafe | 1106 | } else { |
d7bce999 | 1107 | prop->get(obj, v, name, prop->opaque, errp); |
57c9fafe AL |
1108 | } |
1109 | } | |
1110 | ||
1111 | void object_property_set(Object *obj, Visitor *v, const char *name, | |
1112 | Error **errp) | |
1113 | { | |
89bfe000 | 1114 | ObjectProperty *prop = object_property_find(obj, name, errp); |
57c9fafe | 1115 | if (prop == NULL) { |
57c9fafe AL |
1116 | return; |
1117 | } | |
1118 | ||
1119 | if (!prop->set) { | |
c6bd8c70 | 1120 | error_setg(errp, QERR_PERMISSION_DENIED); |
57c9fafe | 1121 | } else { |
d7bce999 | 1122 | prop->set(obj, v, name, prop->opaque, errp); |
57c9fafe AL |
1123 | } |
1124 | } | |
1125 | ||
7b7b7d18 PB |
1126 | void object_property_set_str(Object *obj, const char *value, |
1127 | const char *name, Error **errp) | |
1128 | { | |
1129 | QString *qstr = qstring_from_str(value); | |
1130 | object_property_set_qobject(obj, QOBJECT(qstr), name, errp); | |
1131 | ||
1132 | QDECREF(qstr); | |
1133 | } | |
1134 | ||
1135 | char *object_property_get_str(Object *obj, const char *name, | |
1136 | Error **errp) | |
1137 | { | |
1138 | QObject *ret = object_property_get_qobject(obj, name, errp); | |
7b7b7d18 PB |
1139 | char *retval; |
1140 | ||
1141 | if (!ret) { | |
1142 | return NULL; | |
1143 | } | |
aafb21a0 PX |
1144 | |
1145 | retval = g_strdup(qobject_get_try_str(ret)); | |
1146 | if (!retval) { | |
c6bd8c70 | 1147 | error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name, "string"); |
7b7b7d18 PB |
1148 | } |
1149 | ||
560f19f1 | 1150 | qobject_decref(ret); |
7b7b7d18 PB |
1151 | return retval; |
1152 | } | |
1153 | ||
1d9c5a12 PB |
1154 | void object_property_set_link(Object *obj, Object *value, |
1155 | const char *name, Error **errp) | |
1156 | { | |
d3c49316 PC |
1157 | if (value) { |
1158 | gchar *path = object_get_canonical_path(value); | |
1159 | object_property_set_str(obj, path, name, errp); | |
1160 | g_free(path); | |
1161 | } else { | |
1162 | object_property_set_str(obj, "", name, errp); | |
1163 | } | |
1d9c5a12 PB |
1164 | } |
1165 | ||
1166 | Object *object_property_get_link(Object *obj, const char *name, | |
1167 | Error **errp) | |
1168 | { | |
1169 | char *str = object_property_get_str(obj, name, errp); | |
1170 | Object *target = NULL; | |
1171 | ||
1172 | if (str && *str) { | |
1173 | target = object_resolve_path(str, NULL); | |
1174 | if (!target) { | |
75158ebb MA |
1175 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
1176 | "Device '%s' not found", str); | |
1d9c5a12 PB |
1177 | } |
1178 | } | |
1179 | ||
1180 | g_free(str); | |
1181 | return target; | |
1182 | } | |
1183 | ||
7b7b7d18 PB |
1184 | void object_property_set_bool(Object *obj, bool value, |
1185 | const char *name, Error **errp) | |
1186 | { | |
fc48ffc3 | 1187 | QBool *qbool = qbool_from_bool(value); |
7b7b7d18 PB |
1188 | object_property_set_qobject(obj, QOBJECT(qbool), name, errp); |
1189 | ||
1190 | QDECREF(qbool); | |
1191 | } | |
1192 | ||
1193 | bool object_property_get_bool(Object *obj, const char *name, | |
1194 | Error **errp) | |
1195 | { | |
1196 | QObject *ret = object_property_get_qobject(obj, name, errp); | |
1197 | QBool *qbool; | |
1198 | bool retval; | |
1199 | ||
1200 | if (!ret) { | |
1201 | return false; | |
1202 | } | |
7dc847eb | 1203 | qbool = qobject_to(QBool, ret); |
7b7b7d18 | 1204 | if (!qbool) { |
c6bd8c70 | 1205 | error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name, "boolean"); |
7b7b7d18 PB |
1206 | retval = false; |
1207 | } else { | |
fc48ffc3 | 1208 | retval = qbool_get_bool(qbool); |
7b7b7d18 PB |
1209 | } |
1210 | ||
560f19f1 | 1211 | qobject_decref(ret); |
7b7b7d18 PB |
1212 | return retval; |
1213 | } | |
1214 | ||
1215 | void object_property_set_int(Object *obj, int64_t value, | |
1216 | const char *name, Error **errp) | |
1217 | { | |
01b2ffce MAL |
1218 | QNum *qnum = qnum_from_int(value); |
1219 | object_property_set_qobject(obj, QOBJECT(qnum), name, errp); | |
7b7b7d18 | 1220 | |
01b2ffce | 1221 | QDECREF(qnum); |
7b7b7d18 PB |
1222 | } |
1223 | ||
1224 | int64_t object_property_get_int(Object *obj, const char *name, | |
1225 | Error **errp) | |
1226 | { | |
1227 | QObject *ret = object_property_get_qobject(obj, name, errp); | |
01b2ffce | 1228 | QNum *qnum; |
7b7b7d18 PB |
1229 | int64_t retval; |
1230 | ||
1231 | if (!ret) { | |
1232 | return -1; | |
1233 | } | |
01b2ffce | 1234 | |
7dc847eb | 1235 | qnum = qobject_to(QNum, ret); |
01b2ffce | 1236 | if (!qnum || !qnum_get_try_int(qnum, &retval)) { |
c6bd8c70 | 1237 | error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name, "int"); |
7b7b7d18 | 1238 | retval = -1; |
7b7b7d18 PB |
1239 | } |
1240 | ||
560f19f1 | 1241 | qobject_decref(ret); |
7b7b7d18 | 1242 | return retval; |
b2cd7dee PB |
1243 | } |
1244 | ||
3152779c MAL |
1245 | void object_property_set_uint(Object *obj, uint64_t value, |
1246 | const char *name, Error **errp) | |
1247 | { | |
1248 | QNum *qnum = qnum_from_uint(value); | |
1249 | ||
1250 | object_property_set_qobject(obj, QOBJECT(qnum), name, errp); | |
1251 | QDECREF(qnum); | |
1252 | } | |
1253 | ||
1254 | uint64_t object_property_get_uint(Object *obj, const char *name, | |
1255 | Error **errp) | |
1256 | { | |
1257 | QObject *ret = object_property_get_qobject(obj, name, errp); | |
1258 | QNum *qnum; | |
1259 | uint64_t retval; | |
1260 | ||
1261 | if (!ret) { | |
1262 | return 0; | |
1263 | } | |
7dc847eb | 1264 | qnum = qobject_to(QNum, ret); |
3152779c MAL |
1265 | if (!qnum || !qnum_get_try_uint(qnum, &retval)) { |
1266 | error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name, "uint"); | |
1267 | retval = 0; | |
1268 | } | |
1269 | ||
1270 | qobject_decref(ret); | |
1271 | return retval; | |
1272 | } | |
1273 | ||
a8e3fbed | 1274 | typedef struct EnumProperty { |
f7abe0ec | 1275 | const QEnumLookup *lookup; |
a8e3fbed DB |
1276 | int (*get)(Object *, Error **); |
1277 | void (*set)(Object *, int, Error **); | |
1278 | } EnumProperty; | |
1279 | ||
1f21772d | 1280 | int object_property_get_enum(Object *obj, const char *name, |
a3590dac | 1281 | const char *typename, Error **errp) |
1f21772d | 1282 | { |
4715d42e | 1283 | Error *err = NULL; |
7a0525c7 | 1284 | Visitor *v; |
976620ac | 1285 | char *str; |
1f21772d | 1286 | int ret; |
a3590dac DB |
1287 | ObjectProperty *prop = object_property_find(obj, name, errp); |
1288 | EnumProperty *enumprop; | |
1289 | ||
1290 | if (prop == NULL) { | |
1291 | return 0; | |
1292 | } | |
1293 | ||
1294 | if (!g_str_equal(prop->type, typename)) { | |
1295 | error_setg(errp, "Property %s on %s is not '%s' enum type", | |
1296 | name, object_class_get_name( | |
1297 | object_get_class(obj)), typename); | |
1298 | return 0; | |
1299 | } | |
1300 | ||
1301 | enumprop = prop->opaque; | |
1f21772d | 1302 | |
3b098d56 | 1303 | v = string_output_visitor_new(false, &str); |
e7ca5656 | 1304 | object_property_get(obj, v, name, &err); |
4715d42e MA |
1305 | if (err) { |
1306 | error_propagate(errp, err); | |
e7ca5656 | 1307 | visit_free(v); |
4715d42e MA |
1308 | return 0; |
1309 | } | |
3b098d56 | 1310 | visit_complete(v, &str); |
e7ca5656 | 1311 | visit_free(v); |
7a0525c7 | 1312 | v = string_input_visitor_new(str); |
f7abe0ec | 1313 | visit_type_enum(v, name, &ret, enumprop->lookup, errp); |
976620ac CF |
1314 | |
1315 | g_free(str); | |
7a0525c7 | 1316 | visit_free(v); |
1f21772d HT |
1317 | |
1318 | return ret; | |
1319 | } | |
1320 | ||
1321 | void object_property_get_uint16List(Object *obj, const char *name, | |
1322 | uint16List **list, Error **errp) | |
1323 | { | |
4715d42e | 1324 | Error *err = NULL; |
7a0525c7 | 1325 | Visitor *v; |
976620ac | 1326 | char *str; |
1f21772d | 1327 | |
3b098d56 EB |
1328 | v = string_output_visitor_new(false, &str); |
1329 | object_property_get(obj, v, name, &err); | |
4715d42e MA |
1330 | if (err) { |
1331 | error_propagate(errp, err); | |
1332 | goto out; | |
1333 | } | |
3b098d56 EB |
1334 | visit_complete(v, &str); |
1335 | visit_free(v); | |
7a0525c7 EB |
1336 | v = string_input_visitor_new(str); |
1337 | visit_type_uint16List(v, NULL, list, errp); | |
976620ac CF |
1338 | |
1339 | g_free(str); | |
4715d42e | 1340 | out: |
3b098d56 | 1341 | visit_free(v); |
1f21772d HT |
1342 | } |
1343 | ||
b2cd7dee PB |
1344 | void object_property_parse(Object *obj, const char *string, |
1345 | const char *name, Error **errp) | |
1346 | { | |
7a0525c7 EB |
1347 | Visitor *v = string_input_visitor_new(string); |
1348 | object_property_set(obj, v, name, errp); | |
1349 | visit_free(v); | |
b2cd7dee PB |
1350 | } |
1351 | ||
0b7593e0 | 1352 | char *object_property_print(Object *obj, const char *name, bool human, |
b2cd7dee PB |
1353 | Error **errp) |
1354 | { | |
3b098d56 | 1355 | Visitor *v; |
3a53009f GA |
1356 | char *string = NULL; |
1357 | Error *local_err = NULL; | |
b2cd7dee | 1358 | |
3b098d56 EB |
1359 | v = string_output_visitor_new(human, &string); |
1360 | object_property_get(obj, v, name, &local_err); | |
3a53009f GA |
1361 | if (local_err) { |
1362 | error_propagate(errp, local_err); | |
1363 | goto out; | |
1364 | } | |
1365 | ||
3b098d56 | 1366 | visit_complete(v, &string); |
3a53009f GA |
1367 | |
1368 | out: | |
3b098d56 | 1369 | visit_free(v); |
b2cd7dee | 1370 | return string; |
7b7b7d18 PB |
1371 | } |
1372 | ||
57c9fafe AL |
1373 | const char *object_property_get_type(Object *obj, const char *name, Error **errp) |
1374 | { | |
89bfe000 | 1375 | ObjectProperty *prop = object_property_find(obj, name, errp); |
57c9fafe | 1376 | if (prop == NULL) { |
57c9fafe AL |
1377 | return NULL; |
1378 | } | |
1379 | ||
1380 | return prop->type; | |
1381 | } | |
1382 | ||
1383 | Object *object_get_root(void) | |
1384 | { | |
8b45d447 | 1385 | static Object *root; |
57c9fafe | 1386 | |
8b45d447 AL |
1387 | if (!root) { |
1388 | root = object_new("container"); | |
57c9fafe AL |
1389 | } |
1390 | ||
8b45d447 | 1391 | return root; |
57c9fafe AL |
1392 | } |
1393 | ||
bc2256c4 DB |
1394 | Object *object_get_objects_root(void) |
1395 | { | |
1396 | return container_get(object_get_root(), "/objects"); | |
1397 | } | |
1398 | ||
7c47c4ea PX |
1399 | Object *object_get_internal_root(void) |
1400 | { | |
1401 | static Object *internal_root; | |
1402 | ||
1403 | if (!internal_root) { | |
1404 | internal_root = object_new("container"); | |
1405 | } | |
1406 | ||
1407 | return internal_root; | |
1408 | } | |
1409 | ||
d7bce999 EB |
1410 | static void object_get_child_property(Object *obj, Visitor *v, |
1411 | const char *name, void *opaque, | |
1412 | Error **errp) | |
57c9fafe AL |
1413 | { |
1414 | Object *child = opaque; | |
1415 | gchar *path; | |
1416 | ||
1417 | path = object_get_canonical_path(child); | |
51e72bc1 | 1418 | visit_type_str(v, name, &path, errp); |
57c9fafe AL |
1419 | g_free(path); |
1420 | } | |
1421 | ||
64607d08 PB |
1422 | static Object *object_resolve_child_property(Object *parent, void *opaque, const gchar *part) |
1423 | { | |
1424 | return opaque; | |
1425 | } | |
1426 | ||
db85b575 AL |
1427 | static void object_finalize_child_property(Object *obj, const char *name, |
1428 | void *opaque) | |
1429 | { | |
1430 | Object *child = opaque; | |
1431 | ||
bffc687d PB |
1432 | if (child->class->unparent) { |
1433 | (child->class->unparent)(child); | |
1434 | } | |
1435 | child->parent = NULL; | |
db85b575 AL |
1436 | object_unref(child); |
1437 | } | |
1438 | ||
57c9fafe AL |
1439 | void object_property_add_child(Object *obj, const char *name, |
1440 | Object *child, Error **errp) | |
1441 | { | |
b0ed5e9f | 1442 | Error *local_err = NULL; |
57c9fafe | 1443 | gchar *type; |
64607d08 | 1444 | ObjectProperty *op; |
57c9fafe | 1445 | |
8faa2f85 PC |
1446 | if (child->parent != NULL) { |
1447 | error_setg(errp, "child object is already parented"); | |
1448 | return; | |
1449 | } | |
1450 | ||
57c9fafe AL |
1451 | type = g_strdup_printf("child<%s>", object_get_typename(OBJECT(child))); |
1452 | ||
64607d08 PB |
1453 | op = object_property_add(obj, name, type, object_get_child_property, NULL, |
1454 | object_finalize_child_property, child, &local_err); | |
b0ed5e9f PB |
1455 | if (local_err) { |
1456 | error_propagate(errp, local_err); | |
1457 | goto out; | |
1458 | } | |
64607d08 PB |
1459 | |
1460 | op->resolve = object_resolve_child_property; | |
57c9fafe | 1461 | object_ref(child); |
57c9fafe AL |
1462 | child->parent = obj; |
1463 | ||
b0ed5e9f | 1464 | out: |
57c9fafe AL |
1465 | g_free(type); |
1466 | } | |
1467 | ||
8f5d58ef | 1468 | void object_property_allow_set_link(const Object *obj, const char *name, |
39f72ef9 SH |
1469 | Object *val, Error **errp) |
1470 | { | |
1471 | /* Allow the link to be set, always */ | |
1472 | } | |
1473 | ||
9561fda8 SH |
1474 | typedef struct { |
1475 | Object **child; | |
8f5d58ef | 1476 | void (*check)(const Object *, const char *, Object *, Error **); |
9561fda8 SH |
1477 | ObjectPropertyLinkFlags flags; |
1478 | } LinkProperty; | |
1479 | ||
d7bce999 EB |
1480 | static void object_get_link_property(Object *obj, Visitor *v, |
1481 | const char *name, void *opaque, | |
1482 | Error **errp) | |
57c9fafe | 1483 | { |
9561fda8 SH |
1484 | LinkProperty *lprop = opaque; |
1485 | Object **child = lprop->child; | |
57c9fafe AL |
1486 | gchar *path; |
1487 | ||
1488 | if (*child) { | |
1489 | path = object_get_canonical_path(*child); | |
51e72bc1 | 1490 | visit_type_str(v, name, &path, errp); |
57c9fafe AL |
1491 | g_free(path); |
1492 | } else { | |
1493 | path = (gchar *)""; | |
51e72bc1 | 1494 | visit_type_str(v, name, &path, errp); |
57c9fafe AL |
1495 | } |
1496 | } | |
1497 | ||
f5ec6704 SH |
1498 | /* |
1499 | * object_resolve_link: | |
1500 | * | |
1501 | * Lookup an object and ensure its type matches the link property type. This | |
1502 | * is similar to object_resolve_path() except type verification against the | |
1503 | * link property is performed. | |
1504 | * | |
1505 | * Returns: The matched object or NULL on path lookup failures. | |
1506 | */ | |
1507 | static Object *object_resolve_link(Object *obj, const char *name, | |
1508 | const char *path, Error **errp) | |
1509 | { | |
1510 | const char *type; | |
1511 | gchar *target_type; | |
1512 | bool ambiguous = false; | |
1513 | Object *target; | |
1514 | ||
1515 | /* Go from link<FOO> to FOO. */ | |
1516 | type = object_property_get_type(obj, name, NULL); | |
1517 | target_type = g_strndup(&type[5], strlen(type) - 6); | |
1518 | target = object_resolve_path_type(path, target_type, &ambiguous); | |
1519 | ||
1520 | if (ambiguous) { | |
455b0fde EB |
1521 | error_setg(errp, "Path '%s' does not uniquely identify an object", |
1522 | path); | |
f5ec6704 SH |
1523 | } else if (!target) { |
1524 | target = object_resolve_path(path, &ambiguous); | |
1525 | if (target || ambiguous) { | |
c6bd8c70 | 1526 | error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name, target_type); |
f5ec6704 | 1527 | } else { |
75158ebb MA |
1528 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
1529 | "Device '%s' not found", path); | |
f5ec6704 SH |
1530 | } |
1531 | target = NULL; | |
1532 | } | |
1533 | g_free(target_type); | |
1534 | ||
1535 | return target; | |
1536 | } | |
1537 | ||
d7bce999 EB |
1538 | static void object_set_link_property(Object *obj, Visitor *v, |
1539 | const char *name, void *opaque, | |
1540 | Error **errp) | |
57c9fafe | 1541 | { |
c6aed983 | 1542 | Error *local_err = NULL; |
9561fda8 SH |
1543 | LinkProperty *prop = opaque; |
1544 | Object **child = prop->child; | |
c6aed983 SH |
1545 | Object *old_target = *child; |
1546 | Object *new_target = NULL; | |
1547 | char *path = NULL; | |
57c9fafe | 1548 | |
51e72bc1 | 1549 | visit_type_str(v, name, &path, &local_err); |
57c9fafe | 1550 | |
c6aed983 SH |
1551 | if (!local_err && strcmp(path, "") != 0) { |
1552 | new_target = object_resolve_link(obj, name, path, &local_err); | |
57c9fafe AL |
1553 | } |
1554 | ||
1555 | g_free(path); | |
c6aed983 SH |
1556 | if (local_err) { |
1557 | error_propagate(errp, local_err); | |
1558 | return; | |
1559 | } | |
f0cdc966 | 1560 | |
39f72ef9 SH |
1561 | prop->check(obj, name, new_target, &local_err); |
1562 | if (local_err) { | |
1563 | error_propagate(errp, local_err); | |
1564 | return; | |
1565 | } | |
1566 | ||
8ffad850 | 1567 | object_ref(new_target); |
c6aed983 | 1568 | *child = new_target; |
8ffad850 | 1569 | object_unref(old_target); |
57c9fafe AL |
1570 | } |
1571 | ||
64607d08 PB |
1572 | static Object *object_resolve_link_property(Object *parent, void *opaque, const gchar *part) |
1573 | { | |
1574 | LinkProperty *lprop = opaque; | |
1575 | ||
1576 | return *lprop->child; | |
1577 | } | |
1578 | ||
9561fda8 SH |
1579 | static void object_release_link_property(Object *obj, const char *name, |
1580 | void *opaque) | |
1581 | { | |
1582 | LinkProperty *prop = opaque; | |
1583 | ||
1584 | if ((prop->flags & OBJ_PROP_LINK_UNREF_ON_RELEASE) && *prop->child) { | |
1585 | object_unref(*prop->child); | |
1586 | } | |
1587 | g_free(prop); | |
1588 | } | |
1589 | ||
57c9fafe AL |
1590 | void object_property_add_link(Object *obj, const char *name, |
1591 | const char *type, Object **child, | |
8f5d58ef | 1592 | void (*check)(const Object *, const char *, |
39f72ef9 | 1593 | Object *, Error **), |
9561fda8 | 1594 | ObjectPropertyLinkFlags flags, |
57c9fafe AL |
1595 | Error **errp) |
1596 | { | |
9561fda8 SH |
1597 | Error *local_err = NULL; |
1598 | LinkProperty *prop = g_malloc(sizeof(*prop)); | |
57c9fafe | 1599 | gchar *full_type; |
64607d08 | 1600 | ObjectProperty *op; |
57c9fafe | 1601 | |
9561fda8 | 1602 | prop->child = child; |
39f72ef9 | 1603 | prop->check = check; |
9561fda8 SH |
1604 | prop->flags = flags; |
1605 | ||
57c9fafe AL |
1606 | full_type = g_strdup_printf("link<%s>", type); |
1607 | ||
64607d08 PB |
1608 | op = object_property_add(obj, name, full_type, |
1609 | object_get_link_property, | |
1610 | check ? object_set_link_property : NULL, | |
1611 | object_release_link_property, | |
1612 | prop, | |
1613 | &local_err); | |
9561fda8 SH |
1614 | if (local_err) { |
1615 | error_propagate(errp, local_err); | |
1616 | g_free(prop); | |
64607d08 | 1617 | goto out; |
9561fda8 | 1618 | } |
57c9fafe | 1619 | |
64607d08 PB |
1620 | op->resolve = object_resolve_link_property; |
1621 | ||
1622 | out: | |
57c9fafe AL |
1623 | g_free(full_type); |
1624 | } | |
1625 | ||
fb9e7e33 PB |
1626 | void object_property_add_const_link(Object *obj, const char *name, |
1627 | Object *target, Error **errp) | |
1628 | { | |
1629 | char *link_type; | |
1630 | ObjectProperty *op; | |
1631 | ||
1632 | link_type = g_strdup_printf("link<%s>", object_get_typename(target)); | |
1633 | op = object_property_add(obj, name, link_type, | |
1634 | object_get_child_property, NULL, | |
1635 | NULL, target, errp); | |
1636 | if (op != NULL) { | |
1637 | op->resolve = object_resolve_child_property; | |
1638 | } | |
1639 | g_free(link_type); | |
1640 | } | |
1641 | ||
11f590b1 SH |
1642 | gchar *object_get_canonical_path_component(Object *obj) |
1643 | { | |
1644 | ObjectProperty *prop = NULL; | |
b604a854 | 1645 | GHashTableIter iter; |
11f590b1 SH |
1646 | |
1647 | g_assert(obj); | |
1648 | g_assert(obj->parent != NULL); | |
1649 | ||
b604a854 PF |
1650 | g_hash_table_iter_init(&iter, obj->parent->properties); |
1651 | while (g_hash_table_iter_next(&iter, NULL, (gpointer *)&prop)) { | |
11f590b1 SH |
1652 | if (!object_property_is_child(prop)) { |
1653 | continue; | |
1654 | } | |
1655 | ||
1656 | if (prop->opaque == obj) { | |
1657 | return g_strdup(prop->name); | |
1658 | } | |
1659 | } | |
1660 | ||
1661 | /* obj had a parent but was not a child, should never happen */ | |
1662 | g_assert_not_reached(); | |
1663 | return NULL; | |
1664 | } | |
1665 | ||
57c9fafe AL |
1666 | gchar *object_get_canonical_path(Object *obj) |
1667 | { | |
1668 | Object *root = object_get_root(); | |
11f590b1 | 1669 | char *newpath, *path = NULL; |
57c9fafe AL |
1670 | |
1671 | while (obj != root) { | |
11f590b1 | 1672 | char *component = object_get_canonical_path_component(obj); |
57c9fafe | 1673 | |
11f590b1 SH |
1674 | if (path) { |
1675 | newpath = g_strdup_printf("%s/%s", component, path); | |
1676 | g_free(component); | |
1677 | g_free(path); | |
1678 | path = newpath; | |
1679 | } else { | |
1680 | path = component; | |
57c9fafe AL |
1681 | } |
1682 | ||
57c9fafe AL |
1683 | obj = obj->parent; |
1684 | } | |
1685 | ||
11f590b1 | 1686 | newpath = g_strdup_printf("/%s", path ? path : ""); |
57c9fafe AL |
1687 | g_free(path); |
1688 | ||
1689 | return newpath; | |
1690 | } | |
1691 | ||
3e84b483 | 1692 | Object *object_resolve_path_component(Object *parent, const gchar *part) |
a612b2a6 | 1693 | { |
89bfe000 | 1694 | ObjectProperty *prop = object_property_find(parent, part, NULL); |
a612b2a6 PB |
1695 | if (prop == NULL) { |
1696 | return NULL; | |
1697 | } | |
1698 | ||
64607d08 PB |
1699 | if (prop->resolve) { |
1700 | return prop->resolve(parent, prop->opaque, part); | |
a612b2a6 PB |
1701 | } else { |
1702 | return NULL; | |
1703 | } | |
1704 | } | |
1705 | ||
57c9fafe AL |
1706 | static Object *object_resolve_abs_path(Object *parent, |
1707 | gchar **parts, | |
02fe2db6 | 1708 | const char *typename, |
57c9fafe AL |
1709 | int index) |
1710 | { | |
57c9fafe AL |
1711 | Object *child; |
1712 | ||
1713 | if (parts[index] == NULL) { | |
02fe2db6 | 1714 | return object_dynamic_cast(parent, typename); |
57c9fafe AL |
1715 | } |
1716 | ||
1717 | if (strcmp(parts[index], "") == 0) { | |
02fe2db6 | 1718 | return object_resolve_abs_path(parent, parts, typename, index + 1); |
57c9fafe AL |
1719 | } |
1720 | ||
a612b2a6 | 1721 | child = object_resolve_path_component(parent, parts[index]); |
57c9fafe AL |
1722 | if (!child) { |
1723 | return NULL; | |
1724 | } | |
1725 | ||
02fe2db6 | 1726 | return object_resolve_abs_path(child, parts, typename, index + 1); |
57c9fafe AL |
1727 | } |
1728 | ||
1729 | static Object *object_resolve_partial_path(Object *parent, | |
1730 | gchar **parts, | |
02fe2db6 | 1731 | const char *typename, |
57c9fafe AL |
1732 | bool *ambiguous) |
1733 | { | |
1734 | Object *obj; | |
b604a854 | 1735 | GHashTableIter iter; |
57c9fafe AL |
1736 | ObjectProperty *prop; |
1737 | ||
02fe2db6 | 1738 | obj = object_resolve_abs_path(parent, parts, typename, 0); |
57c9fafe | 1739 | |
b604a854 PF |
1740 | g_hash_table_iter_init(&iter, parent->properties); |
1741 | while (g_hash_table_iter_next(&iter, NULL, (gpointer *)&prop)) { | |
57c9fafe AL |
1742 | Object *found; |
1743 | ||
5d9d3f47 | 1744 | if (!object_property_is_child(prop)) { |
57c9fafe AL |
1745 | continue; |
1746 | } | |
1747 | ||
02fe2db6 PB |
1748 | found = object_resolve_partial_path(prop->opaque, parts, |
1749 | typename, ambiguous); | |
57c9fafe AL |
1750 | if (found) { |
1751 | if (obj) { | |
ebcc479e | 1752 | *ambiguous = true; |
57c9fafe AL |
1753 | return NULL; |
1754 | } | |
1755 | obj = found; | |
1756 | } | |
1757 | ||
ebcc479e | 1758 | if (*ambiguous) { |
57c9fafe AL |
1759 | return NULL; |
1760 | } | |
1761 | } | |
1762 | ||
1763 | return obj; | |
1764 | } | |
1765 | ||
02fe2db6 | 1766 | Object *object_resolve_path_type(const char *path, const char *typename, |
ebcc479e | 1767 | bool *ambiguousp) |
57c9fafe | 1768 | { |
57c9fafe AL |
1769 | Object *obj; |
1770 | gchar **parts; | |
1771 | ||
1772 | parts = g_strsplit(path, "/", 0); | |
2e1103f6 | 1773 | assert(parts); |
57c9fafe | 1774 | |
2e1103f6 | 1775 | if (parts[0] == NULL || strcmp(parts[0], "") != 0) { |
ebcc479e | 1776 | bool ambiguous = false; |
02fe2db6 | 1777 | obj = object_resolve_partial_path(object_get_root(), parts, |
ebcc479e EH |
1778 | typename, &ambiguous); |
1779 | if (ambiguousp) { | |
1780 | *ambiguousp = ambiguous; | |
1781 | } | |
57c9fafe | 1782 | } else { |
02fe2db6 | 1783 | obj = object_resolve_abs_path(object_get_root(), parts, typename, 1); |
57c9fafe AL |
1784 | } |
1785 | ||
1786 | g_strfreev(parts); | |
1787 | ||
1788 | return obj; | |
1789 | } | |
1790 | ||
02fe2db6 PB |
1791 | Object *object_resolve_path(const char *path, bool *ambiguous) |
1792 | { | |
1793 | return object_resolve_path_type(path, TYPE_OBJECT, ambiguous); | |
1794 | } | |
1795 | ||
57c9fafe AL |
1796 | typedef struct StringProperty |
1797 | { | |
1798 | char *(*get)(Object *, Error **); | |
1799 | void (*set)(Object *, const char *, Error **); | |
1800 | } StringProperty; | |
1801 | ||
d7bce999 EB |
1802 | static void property_get_str(Object *obj, Visitor *v, const char *name, |
1803 | void *opaque, Error **errp) | |
57c9fafe AL |
1804 | { |
1805 | StringProperty *prop = opaque; | |
1806 | char *value; | |
e1c8237d | 1807 | Error *err = NULL; |
57c9fafe | 1808 | |
e1c8237d MA |
1809 | value = prop->get(obj, &err); |
1810 | if (err) { | |
1811 | error_propagate(errp, err); | |
1812 | return; | |
57c9fafe | 1813 | } |
e1c8237d | 1814 | |
51e72bc1 | 1815 | visit_type_str(v, name, &value, errp); |
e1c8237d | 1816 | g_free(value); |
57c9fafe AL |
1817 | } |
1818 | ||
d7bce999 EB |
1819 | static void property_set_str(Object *obj, Visitor *v, const char *name, |
1820 | void *opaque, Error **errp) | |
57c9fafe AL |
1821 | { |
1822 | StringProperty *prop = opaque; | |
1823 | char *value; | |
1824 | Error *local_err = NULL; | |
1825 | ||
51e72bc1 | 1826 | visit_type_str(v, name, &value, &local_err); |
57c9fafe AL |
1827 | if (local_err) { |
1828 | error_propagate(errp, local_err); | |
1829 | return; | |
1830 | } | |
1831 | ||
1832 | prop->set(obj, value, errp); | |
1833 | g_free(value); | |
1834 | } | |
1835 | ||
7b7b7d18 PB |
1836 | static void property_release_str(Object *obj, const char *name, |
1837 | void *opaque) | |
57c9fafe AL |
1838 | { |
1839 | StringProperty *prop = opaque; | |
1840 | g_free(prop); | |
1841 | } | |
1842 | ||
1843 | void object_property_add_str(Object *obj, const char *name, | |
1844 | char *(*get)(Object *, Error **), | |
1845 | void (*set)(Object *, const char *, Error **), | |
1846 | Error **errp) | |
1847 | { | |
a01aedc8 | 1848 | Error *local_err = NULL; |
57c9fafe AL |
1849 | StringProperty *prop = g_malloc0(sizeof(*prop)); |
1850 | ||
1851 | prop->get = get; | |
1852 | prop->set = set; | |
1853 | ||
1854 | object_property_add(obj, name, "string", | |
7b7b7d18 PB |
1855 | get ? property_get_str : NULL, |
1856 | set ? property_set_str : NULL, | |
1857 | property_release_str, | |
a01aedc8 SH |
1858 | prop, &local_err); |
1859 | if (local_err) { | |
1860 | error_propagate(errp, local_err); | |
1861 | g_free(prop); | |
1862 | } | |
57c9fafe | 1863 | } |
745549c8 | 1864 | |
16bf7f52 DB |
1865 | void object_class_property_add_str(ObjectClass *klass, const char *name, |
1866 | char *(*get)(Object *, Error **), | |
1867 | void (*set)(Object *, const char *, | |
1868 | Error **), | |
1869 | Error **errp) | |
1870 | { | |
1871 | Error *local_err = NULL; | |
1872 | StringProperty *prop = g_malloc0(sizeof(*prop)); | |
1873 | ||
1874 | prop->get = get; | |
1875 | prop->set = set; | |
1876 | ||
1877 | object_class_property_add(klass, name, "string", | |
1878 | get ? property_get_str : NULL, | |
1879 | set ? property_set_str : NULL, | |
1880 | property_release_str, | |
1881 | prop, &local_err); | |
1882 | if (local_err) { | |
1883 | error_propagate(errp, local_err); | |
1884 | g_free(prop); | |
1885 | } | |
1886 | } | |
1887 | ||
0e558843 AL |
1888 | typedef struct BoolProperty |
1889 | { | |
1890 | bool (*get)(Object *, Error **); | |
1891 | void (*set)(Object *, bool, Error **); | |
1892 | } BoolProperty; | |
1893 | ||
d7bce999 EB |
1894 | static void property_get_bool(Object *obj, Visitor *v, const char *name, |
1895 | void *opaque, Error **errp) | |
0e558843 AL |
1896 | { |
1897 | BoolProperty *prop = opaque; | |
1898 | bool value; | |
4715d42e MA |
1899 | Error *err = NULL; |
1900 | ||
1901 | value = prop->get(obj, &err); | |
1902 | if (err) { | |
1903 | error_propagate(errp, err); | |
1904 | return; | |
1905 | } | |
0e558843 | 1906 | |
51e72bc1 | 1907 | visit_type_bool(v, name, &value, errp); |
0e558843 AL |
1908 | } |
1909 | ||
d7bce999 EB |
1910 | static void property_set_bool(Object *obj, Visitor *v, const char *name, |
1911 | void *opaque, Error **errp) | |
0e558843 AL |
1912 | { |
1913 | BoolProperty *prop = opaque; | |
1914 | bool value; | |
1915 | Error *local_err = NULL; | |
1916 | ||
51e72bc1 | 1917 | visit_type_bool(v, name, &value, &local_err); |
0e558843 AL |
1918 | if (local_err) { |
1919 | error_propagate(errp, local_err); | |
1920 | return; | |
1921 | } | |
1922 | ||
1923 | prop->set(obj, value, errp); | |
1924 | } | |
1925 | ||
1926 | static void property_release_bool(Object *obj, const char *name, | |
1927 | void *opaque) | |
1928 | { | |
1929 | BoolProperty *prop = opaque; | |
1930 | g_free(prop); | |
1931 | } | |
1932 | ||
1933 | void object_property_add_bool(Object *obj, const char *name, | |
1934 | bool (*get)(Object *, Error **), | |
1935 | void (*set)(Object *, bool, Error **), | |
1936 | Error **errp) | |
1937 | { | |
a01aedc8 | 1938 | Error *local_err = NULL; |
0e558843 AL |
1939 | BoolProperty *prop = g_malloc0(sizeof(*prop)); |
1940 | ||
1941 | prop->get = get; | |
1942 | prop->set = set; | |
1943 | ||
1944 | object_property_add(obj, name, "bool", | |
1945 | get ? property_get_bool : NULL, | |
1946 | set ? property_set_bool : NULL, | |
1947 | property_release_bool, | |
a01aedc8 SH |
1948 | prop, &local_err); |
1949 | if (local_err) { | |
1950 | error_propagate(errp, local_err); | |
1951 | g_free(prop); | |
1952 | } | |
0e558843 AL |
1953 | } |
1954 | ||
16bf7f52 DB |
1955 | void object_class_property_add_bool(ObjectClass *klass, const char *name, |
1956 | bool (*get)(Object *, Error **), | |
1957 | void (*set)(Object *, bool, Error **), | |
1958 | Error **errp) | |
1959 | { | |
1960 | Error *local_err = NULL; | |
1961 | BoolProperty *prop = g_malloc0(sizeof(*prop)); | |
1962 | ||
1963 | prop->get = get; | |
1964 | prop->set = set; | |
1965 | ||
1966 | object_class_property_add(klass, name, "bool", | |
1967 | get ? property_get_bool : NULL, | |
1968 | set ? property_set_bool : NULL, | |
1969 | property_release_bool, | |
1970 | prop, &local_err); | |
1971 | if (local_err) { | |
1972 | error_propagate(errp, local_err); | |
1973 | g_free(prop); | |
1974 | } | |
1975 | } | |
1976 | ||
d7bce999 EB |
1977 | static void property_get_enum(Object *obj, Visitor *v, const char *name, |
1978 | void *opaque, Error **errp) | |
a8e3fbed DB |
1979 | { |
1980 | EnumProperty *prop = opaque; | |
1981 | int value; | |
4715d42e MA |
1982 | Error *err = NULL; |
1983 | ||
1984 | value = prop->get(obj, &err); | |
1985 | if (err) { | |
1986 | error_propagate(errp, err); | |
1987 | return; | |
1988 | } | |
a8e3fbed | 1989 | |
f7abe0ec | 1990 | visit_type_enum(v, name, &value, prop->lookup, errp); |
a8e3fbed DB |
1991 | } |
1992 | ||
d7bce999 EB |
1993 | static void property_set_enum(Object *obj, Visitor *v, const char *name, |
1994 | void *opaque, Error **errp) | |
a8e3fbed DB |
1995 | { |
1996 | EnumProperty *prop = opaque; | |
1997 | int value; | |
4715d42e | 1998 | Error *err = NULL; |
a8e3fbed | 1999 | |
f7abe0ec | 2000 | visit_type_enum(v, name, &value, prop->lookup, &err); |
4715d42e MA |
2001 | if (err) { |
2002 | error_propagate(errp, err); | |
2003 | return; | |
2004 | } | |
a8e3fbed DB |
2005 | prop->set(obj, value, errp); |
2006 | } | |
2007 | ||
2008 | static void property_release_enum(Object *obj, const char *name, | |
2009 | void *opaque) | |
2010 | { | |
2011 | EnumProperty *prop = opaque; | |
2012 | g_free(prop); | |
2013 | } | |
2014 | ||
2015 | void object_property_add_enum(Object *obj, const char *name, | |
2016 | const char *typename, | |
f7abe0ec | 2017 | const QEnumLookup *lookup, |
a8e3fbed DB |
2018 | int (*get)(Object *, Error **), |
2019 | void (*set)(Object *, int, Error **), | |
2020 | Error **errp) | |
2021 | { | |
2022 | Error *local_err = NULL; | |
2023 | EnumProperty *prop = g_malloc(sizeof(*prop)); | |
2024 | ||
f7abe0ec | 2025 | prop->lookup = lookup; |
a8e3fbed DB |
2026 | prop->get = get; |
2027 | prop->set = set; | |
2028 | ||
2029 | object_property_add(obj, name, typename, | |
2030 | get ? property_get_enum : NULL, | |
2031 | set ? property_set_enum : NULL, | |
2032 | property_release_enum, | |
2033 | prop, &local_err); | |
2034 | if (local_err) { | |
2035 | error_propagate(errp, local_err); | |
2036 | g_free(prop); | |
2037 | } | |
2038 | } | |
2039 | ||
16bf7f52 DB |
2040 | void object_class_property_add_enum(ObjectClass *klass, const char *name, |
2041 | const char *typename, | |
f7abe0ec | 2042 | const QEnumLookup *lookup, |
16bf7f52 DB |
2043 | int (*get)(Object *, Error **), |
2044 | void (*set)(Object *, int, Error **), | |
2045 | Error **errp) | |
2046 | { | |
2047 | Error *local_err = NULL; | |
2048 | EnumProperty *prop = g_malloc(sizeof(*prop)); | |
2049 | ||
f7abe0ec | 2050 | prop->lookup = lookup; |
16bf7f52 DB |
2051 | prop->get = get; |
2052 | prop->set = set; | |
2053 | ||
2054 | object_class_property_add(klass, name, typename, | |
2055 | get ? property_get_enum : NULL, | |
2056 | set ? property_set_enum : NULL, | |
2057 | property_release_enum, | |
2058 | prop, &local_err); | |
2059 | if (local_err) { | |
2060 | error_propagate(errp, local_err); | |
2061 | g_free(prop); | |
2062 | } | |
2063 | } | |
2064 | ||
8e099d14 DG |
2065 | typedef struct TMProperty { |
2066 | void (*get)(Object *, struct tm *, Error **); | |
2067 | } TMProperty; | |
2068 | ||
d7bce999 EB |
2069 | static void property_get_tm(Object *obj, Visitor *v, const char *name, |
2070 | void *opaque, Error **errp) | |
8e099d14 DG |
2071 | { |
2072 | TMProperty *prop = opaque; | |
2073 | Error *err = NULL; | |
2074 | struct tm value; | |
2075 | ||
2076 | prop->get(obj, &value, &err); | |
2077 | if (err) { | |
2078 | goto out; | |
2079 | } | |
2080 | ||
337283df | 2081 | visit_start_struct(v, name, NULL, 0, &err); |
8e099d14 DG |
2082 | if (err) { |
2083 | goto out; | |
2084 | } | |
51e72bc1 | 2085 | visit_type_int32(v, "tm_year", &value.tm_year, &err); |
8e099d14 DG |
2086 | if (err) { |
2087 | goto out_end; | |
2088 | } | |
51e72bc1 | 2089 | visit_type_int32(v, "tm_mon", &value.tm_mon, &err); |
8e099d14 DG |
2090 | if (err) { |
2091 | goto out_end; | |
2092 | } | |
51e72bc1 | 2093 | visit_type_int32(v, "tm_mday", &value.tm_mday, &err); |
8e099d14 DG |
2094 | if (err) { |
2095 | goto out_end; | |
2096 | } | |
51e72bc1 | 2097 | visit_type_int32(v, "tm_hour", &value.tm_hour, &err); |
8e099d14 DG |
2098 | if (err) { |
2099 | goto out_end; | |
2100 | } | |
51e72bc1 | 2101 | visit_type_int32(v, "tm_min", &value.tm_min, &err); |
8e099d14 DG |
2102 | if (err) { |
2103 | goto out_end; | |
2104 | } | |
51e72bc1 | 2105 | visit_type_int32(v, "tm_sec", &value.tm_sec, &err); |
8e099d14 DG |
2106 | if (err) { |
2107 | goto out_end; | |
2108 | } | |
15c2f669 | 2109 | visit_check_struct(v, &err); |
8e099d14 | 2110 | out_end: |
1158bb2a | 2111 | visit_end_struct(v, NULL); |
8e099d14 DG |
2112 | out: |
2113 | error_propagate(errp, err); | |
2114 | ||
2115 | } | |
2116 | ||
2117 | static void property_release_tm(Object *obj, const char *name, | |
2118 | void *opaque) | |
2119 | { | |
2120 | TMProperty *prop = opaque; | |
2121 | g_free(prop); | |
2122 | } | |
2123 | ||
2124 | void object_property_add_tm(Object *obj, const char *name, | |
2125 | void (*get)(Object *, struct tm *, Error **), | |
2126 | Error **errp) | |
2127 | { | |
2128 | Error *local_err = NULL; | |
2129 | TMProperty *prop = g_malloc0(sizeof(*prop)); | |
2130 | ||
2131 | prop->get = get; | |
2132 | ||
2133 | object_property_add(obj, name, "struct tm", | |
2134 | get ? property_get_tm : NULL, NULL, | |
2135 | property_release_tm, | |
2136 | prop, &local_err); | |
2137 | if (local_err) { | |
2138 | error_propagate(errp, local_err); | |
2139 | g_free(prop); | |
2140 | } | |
2141 | } | |
2142 | ||
16bf7f52 DB |
2143 | void object_class_property_add_tm(ObjectClass *klass, const char *name, |
2144 | void (*get)(Object *, struct tm *, Error **), | |
2145 | Error **errp) | |
2146 | { | |
2147 | Error *local_err = NULL; | |
2148 | TMProperty *prop = g_malloc0(sizeof(*prop)); | |
2149 | ||
2150 | prop->get = get; | |
2151 | ||
2152 | object_class_property_add(klass, name, "struct tm", | |
2153 | get ? property_get_tm : NULL, NULL, | |
2154 | property_release_tm, | |
2155 | prop, &local_err); | |
2156 | if (local_err) { | |
2157 | error_propagate(errp, local_err); | |
2158 | g_free(prop); | |
2159 | } | |
2160 | } | |
2161 | ||
2f262e06 PB |
2162 | static char *qdev_get_type(Object *obj, Error **errp) |
2163 | { | |
2164 | return g_strdup(object_get_typename(obj)); | |
2165 | } | |
2166 | ||
d7bce999 EB |
2167 | static void property_get_uint8_ptr(Object *obj, Visitor *v, const char *name, |
2168 | void *opaque, Error **errp) | |
e732ea63 MT |
2169 | { |
2170 | uint8_t value = *(uint8_t *)opaque; | |
51e72bc1 | 2171 | visit_type_uint8(v, name, &value, errp); |
e732ea63 MT |
2172 | } |
2173 | ||
d7bce999 EB |
2174 | static void property_get_uint16_ptr(Object *obj, Visitor *v, const char *name, |
2175 | void *opaque, Error **errp) | |
e732ea63 MT |
2176 | { |
2177 | uint16_t value = *(uint16_t *)opaque; | |
51e72bc1 | 2178 | visit_type_uint16(v, name, &value, errp); |
e732ea63 MT |
2179 | } |
2180 | ||
d7bce999 EB |
2181 | static void property_get_uint32_ptr(Object *obj, Visitor *v, const char *name, |
2182 | void *opaque, Error **errp) | |
e732ea63 MT |
2183 | { |
2184 | uint32_t value = *(uint32_t *)opaque; | |
51e72bc1 | 2185 | visit_type_uint32(v, name, &value, errp); |
e732ea63 MT |
2186 | } |
2187 | ||
d7bce999 EB |
2188 | static void property_get_uint64_ptr(Object *obj, Visitor *v, const char *name, |
2189 | void *opaque, Error **errp) | |
e732ea63 MT |
2190 | { |
2191 | uint64_t value = *(uint64_t *)opaque; | |
51e72bc1 | 2192 | visit_type_uint64(v, name, &value, errp); |
e732ea63 MT |
2193 | } |
2194 | ||
2195 | void object_property_add_uint8_ptr(Object *obj, const char *name, | |
2196 | const uint8_t *v, Error **errp) | |
2197 | { | |
2198 | object_property_add(obj, name, "uint8", property_get_uint8_ptr, | |
2199 | NULL, NULL, (void *)v, errp); | |
2200 | } | |
2201 | ||
16bf7f52 DB |
2202 | void object_class_property_add_uint8_ptr(ObjectClass *klass, const char *name, |
2203 | const uint8_t *v, Error **errp) | |
2204 | { | |
2205 | object_class_property_add(klass, name, "uint8", property_get_uint8_ptr, | |
2206 | NULL, NULL, (void *)v, errp); | |
2207 | } | |
2208 | ||
e732ea63 MT |
2209 | void object_property_add_uint16_ptr(Object *obj, const char *name, |
2210 | const uint16_t *v, Error **errp) | |
2211 | { | |
2212 | object_property_add(obj, name, "uint16", property_get_uint16_ptr, | |
2213 | NULL, NULL, (void *)v, errp); | |
2214 | } | |
2215 | ||
16bf7f52 DB |
2216 | void object_class_property_add_uint16_ptr(ObjectClass *klass, const char *name, |
2217 | const uint16_t *v, Error **errp) | |
2218 | { | |
2219 | object_class_property_add(klass, name, "uint16", property_get_uint16_ptr, | |
2220 | NULL, NULL, (void *)v, errp); | |
2221 | } | |
2222 | ||
e732ea63 MT |
2223 | void object_property_add_uint32_ptr(Object *obj, const char *name, |
2224 | const uint32_t *v, Error **errp) | |
2225 | { | |
2226 | object_property_add(obj, name, "uint32", property_get_uint32_ptr, | |
2227 | NULL, NULL, (void *)v, errp); | |
2228 | } | |
2229 | ||
16bf7f52 DB |
2230 | void object_class_property_add_uint32_ptr(ObjectClass *klass, const char *name, |
2231 | const uint32_t *v, Error **errp) | |
2232 | { | |
2233 | object_class_property_add(klass, name, "uint32", property_get_uint32_ptr, | |
2234 | NULL, NULL, (void *)v, errp); | |
2235 | } | |
2236 | ||
e732ea63 MT |
2237 | void object_property_add_uint64_ptr(Object *obj, const char *name, |
2238 | const uint64_t *v, Error **errp) | |
2239 | { | |
2240 | object_property_add(obj, name, "uint64", property_get_uint64_ptr, | |
2241 | NULL, NULL, (void *)v, errp); | |
2242 | } | |
2243 | ||
16bf7f52 DB |
2244 | void object_class_property_add_uint64_ptr(ObjectClass *klass, const char *name, |
2245 | const uint64_t *v, Error **errp) | |
2246 | { | |
2247 | object_class_property_add(klass, name, "uint64", property_get_uint64_ptr, | |
2248 | NULL, NULL, (void *)v, errp); | |
2249 | } | |
2250 | ||
ef7c7ff6 SH |
2251 | typedef struct { |
2252 | Object *target_obj; | |
1590d266 | 2253 | char *target_name; |
ef7c7ff6 SH |
2254 | } AliasProperty; |
2255 | ||
d7bce999 EB |
2256 | static void property_get_alias(Object *obj, Visitor *v, const char *name, |
2257 | void *opaque, Error **errp) | |
ef7c7ff6 SH |
2258 | { |
2259 | AliasProperty *prop = opaque; | |
2260 | ||
2261 | object_property_get(prop->target_obj, v, prop->target_name, errp); | |
2262 | } | |
2263 | ||
d7bce999 EB |
2264 | static void property_set_alias(Object *obj, Visitor *v, const char *name, |
2265 | void *opaque, Error **errp) | |
ef7c7ff6 SH |
2266 | { |
2267 | AliasProperty *prop = opaque; | |
2268 | ||
2269 | object_property_set(prop->target_obj, v, prop->target_name, errp); | |
2270 | } | |
2271 | ||
64607d08 PB |
2272 | static Object *property_resolve_alias(Object *obj, void *opaque, |
2273 | const gchar *part) | |
2274 | { | |
2275 | AliasProperty *prop = opaque; | |
2276 | ||
2277 | return object_resolve_path_component(prop->target_obj, prop->target_name); | |
2278 | } | |
2279 | ||
ef7c7ff6 SH |
2280 | static void property_release_alias(Object *obj, const char *name, void *opaque) |
2281 | { | |
2282 | AliasProperty *prop = opaque; | |
2283 | ||
1590d266 | 2284 | g_free(prop->target_name); |
ef7c7ff6 SH |
2285 | g_free(prop); |
2286 | } | |
2287 | ||
2288 | void object_property_add_alias(Object *obj, const char *name, | |
2289 | Object *target_obj, const char *target_name, | |
2290 | Error **errp) | |
2291 | { | |
2292 | AliasProperty *prop; | |
64607d08 | 2293 | ObjectProperty *op; |
ef7c7ff6 | 2294 | ObjectProperty *target_prop; |
d190698e | 2295 | gchar *prop_type; |
8ae9a9ef | 2296 | Error *local_err = NULL; |
ef7c7ff6 SH |
2297 | |
2298 | target_prop = object_property_find(target_obj, target_name, errp); | |
2299 | if (!target_prop) { | |
2300 | return; | |
2301 | } | |
2302 | ||
d190698e PB |
2303 | if (object_property_is_child(target_prop)) { |
2304 | prop_type = g_strdup_printf("link%s", | |
2305 | target_prop->type + strlen("child")); | |
2306 | } else { | |
2307 | prop_type = g_strdup(target_prop->type); | |
2308 | } | |
2309 | ||
ef7c7ff6 SH |
2310 | prop = g_malloc(sizeof(*prop)); |
2311 | prop->target_obj = target_obj; | |
1590d266 | 2312 | prop->target_name = g_strdup(target_name); |
ef7c7ff6 | 2313 | |
d190698e | 2314 | op = object_property_add(obj, name, prop_type, |
64607d08 PB |
2315 | property_get_alias, |
2316 | property_set_alias, | |
2317 | property_release_alias, | |
8ae9a9ef GA |
2318 | prop, &local_err); |
2319 | if (local_err) { | |
2320 | error_propagate(errp, local_err); | |
2321 | g_free(prop); | |
2322 | goto out; | |
2323 | } | |
64607d08 | 2324 | op->resolve = property_resolve_alias; |
d190698e | 2325 | |
a18bb417 | 2326 | object_property_set_description(obj, op->name, |
80742642 GA |
2327 | target_prop->description, |
2328 | &error_abort); | |
2329 | ||
8ae9a9ef | 2330 | out: |
d190698e | 2331 | g_free(prop_type); |
ef7c7ff6 SH |
2332 | } |
2333 | ||
80742642 GA |
2334 | void object_property_set_description(Object *obj, const char *name, |
2335 | const char *description, Error **errp) | |
2336 | { | |
2337 | ObjectProperty *op; | |
2338 | ||
2339 | op = object_property_find(obj, name, errp); | |
2340 | if (!op) { | |
2341 | return; | |
2342 | } | |
2343 | ||
2344 | g_free(op->description); | |
2345 | op->description = g_strdup(description); | |
2346 | } | |
2347 | ||
16bf7f52 DB |
2348 | void object_class_property_set_description(ObjectClass *klass, |
2349 | const char *name, | |
2350 | const char *description, | |
2351 | Error **errp) | |
2352 | { | |
2353 | ObjectProperty *op; | |
2354 | ||
2355 | op = g_hash_table_lookup(klass->properties, name); | |
2356 | if (!op) { | |
2357 | error_setg(errp, "Property '.%s' not found", name); | |
2358 | return; | |
2359 | } | |
2360 | ||
2361 | g_free(op->description); | |
2362 | op->description = g_strdup(description); | |
2363 | } | |
2364 | ||
2f262e06 PB |
2365 | static void object_instance_init(Object *obj) |
2366 | { | |
2367 | object_property_add_str(obj, "type", qdev_get_type, NULL, NULL); | |
2368 | } | |
2369 | ||
745549c8 PB |
2370 | static void register_types(void) |
2371 | { | |
2372 | static TypeInfo interface_info = { | |
2373 | .name = TYPE_INTERFACE, | |
33e95c63 | 2374 | .class_size = sizeof(InterfaceClass), |
745549c8 PB |
2375 | .abstract = true, |
2376 | }; | |
2377 | ||
2378 | static TypeInfo object_info = { | |
2379 | .name = TYPE_OBJECT, | |
2380 | .instance_size = sizeof(Object), | |
2f262e06 | 2381 | .instance_init = object_instance_init, |
745549c8 PB |
2382 | .abstract = true, |
2383 | }; | |
2384 | ||
049cb3cf PB |
2385 | type_interface = type_register_internal(&interface_info); |
2386 | type_register_internal(&object_info); | |
745549c8 PB |
2387 | } |
2388 | ||
2389 | type_init(register_types) |