blob: d378f13a116a6845966489e7436ee25329492743 [file] [log] [blame]
Anthony Liguori2f28d2f2011-12-03 17:10:08 -06001/*
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 */
13
14#ifndef QEMU_OBJECT_H
15#define QEMU_OBJECT_H
16
Markus Armbrustereb815e22018-02-11 10:36:05 +010017#include "qapi/qapi-builtin-types.h"
Markus Armbruster0b8fa322019-05-23 16:35:07 +020018#include "qemu/module.h"
Eduardo Habkostdb1015e2020-09-03 16:43:22 -040019#include "qom/object.h"
Anthony Liguori57c9faf2012-01-30 08:55:55 -060020
Anthony Liguori2f28d2f2011-12-03 17:10:08 -060021struct TypeImpl;
22typedef struct TypeImpl *Type;
23
Anthony Liguori2f28d2f2011-12-03 17:10:08 -060024typedef struct TypeInfo TypeInfo;
25
26typedef struct InterfaceClass InterfaceClass;
27typedef struct InterfaceInfo InterfaceInfo;
28
Paolo Bonzini745549c2012-03-31 16:45:54 +020029#define TYPE_OBJECT "object"
Anthony Liguori2f28d2f2011-12-03 17:10:08 -060030
Marc-André Lureau2a1be4b2020-01-10 19:30:19 +040031typedef struct ObjectProperty ObjectProperty;
32
Anthony Liguori57c9faf2012-01-30 08:55:55 -060033/**
Eduardo Habkostff597802020-10-02 22:41:21 -040034 * typedef ObjectPropertyAccessor:
Anthony Liguori57c9faf2012-01-30 08:55:55 -060035 * @obj: the object that owns the property
36 * @v: the visitor that contains the property data
Anthony Liguori57c9faf2012-01-30 08:55:55 -060037 * @name: the name of the property
Eric Blaked7bce992016-01-29 06:48:55 -070038 * @opaque: the object property opaque
Anthony Liguori57c9faf2012-01-30 08:55:55 -060039 * @errp: a pointer to an Error that is filled if getting/setting fails.
40 *
41 * Called when trying to get/set a property.
42 */
43typedef void (ObjectPropertyAccessor)(Object *obj,
Eric Blake4fa45492016-01-29 06:48:53 -070044 Visitor *v,
Anthony Liguori57c9faf2012-01-30 08:55:55 -060045 const char *name,
Eric Blaked7bce992016-01-29 06:48:55 -070046 void *opaque,
Michael S. Tsirkine82df242013-09-22 10:08:14 +030047 Error **errp);
Anthony Liguori57c9faf2012-01-30 08:55:55 -060048
49/**
Eduardo Habkostff597802020-10-02 22:41:21 -040050 * typedef ObjectPropertyResolve:
Paolo Bonzini64607d02014-06-05 13:11:51 +020051 * @obj: the object that owns the property
52 * @opaque: the opaque registered with the property
53 * @part: the name of the property
54 *
55 * Resolves the #Object corresponding to property @part.
56 *
57 * The returned object can also be used as a starting point
58 * to resolve a relative path starting with "@part".
59 *
60 * Returns: If @path is the path that led to @obj, the function
61 * returns the #Object corresponding to "@path/@part".
62 * If "@path/@part" is not a valid object path, it returns #NULL.
63 */
64typedef Object *(ObjectPropertyResolve)(Object *obj,
65 void *opaque,
66 const char *part);
67
68/**
Eduardo Habkostff597802020-10-02 22:41:21 -040069 * typedef ObjectPropertyRelease:
Anthony Liguori57c9faf2012-01-30 08:55:55 -060070 * @obj: the object that owns the property
71 * @name: the name of the property
72 * @opaque: the opaque registered with the property
73 *
74 * Called when a property is removed from a object.
75 */
76typedef void (ObjectPropertyRelease)(Object *obj,
77 const char *name,
78 void *opaque);
79
Marc-André Lureau2a1be4b2020-01-10 19:30:19 +040080/**
Eduardo Habkostff597802020-10-02 22:41:21 -040081 * typedef ObjectPropertyInit:
Marc-André Lureau2a1be4b2020-01-10 19:30:19 +040082 * @obj: the object that owns the property
83 * @prop: the property to set
84 *
85 * Called when a property is initialized.
86 */
87typedef void (ObjectPropertyInit)(Object *obj, ObjectProperty *prop);
88
89struct ObjectProperty
Anthony Liguori57c9faf2012-01-30 08:55:55 -060090{
Markus Armbrusterddfb0ba2020-05-05 17:29:10 +020091 char *name;
92 char *type;
93 char *description;
Anthony Liguori57c9faf2012-01-30 08:55:55 -060094 ObjectPropertyAccessor *get;
95 ObjectPropertyAccessor *set;
Paolo Bonzini64607d02014-06-05 13:11:51 +020096 ObjectPropertyResolve *resolve;
Anthony Liguori57c9faf2012-01-30 08:55:55 -060097 ObjectPropertyRelease *release;
Marc-André Lureau2a1be4b2020-01-10 19:30:19 +040098 ObjectPropertyInit *init;
Anthony Liguori57c9faf2012-01-30 08:55:55 -060099 void *opaque;
Marc-André Lureau0e76ed02020-01-10 19:30:23 +0400100 QObject *defval;
Marc-André Lureau2a1be4b2020-01-10 19:30:19 +0400101};
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600102
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600103/**
Eduardo Habkostff597802020-10-02 22:41:21 -0400104 * typedef ObjectUnparent:
Paolo Bonzini667d22d2012-11-23 09:47:13 +0100105 * @obj: the object that is being removed from the composition tree
106 *
107 * Called when an object is being removed from the QOM composition tree.
108 * The function should remove any backlinks from children objects to @obj.
109 */
110typedef void (ObjectUnparent)(Object *obj);
111
112/**
Eduardo Habkostff597802020-10-02 22:41:21 -0400113 * typedef ObjectFree:
Paolo Bonzinifde9bf42012-11-23 09:47:14 +0100114 * @obj: the object being freed
115 *
116 * Called when an object's last reference is removed.
117 */
118typedef void (ObjectFree)(void *obj);
119
Anthony Liguori03587322013-05-13 15:22:24 -0500120#define OBJECT_CLASS_CAST_CACHE 4
121
Paolo Bonzinifde9bf42012-11-23 09:47:14 +0100122/**
Eduardo Habkostff597802020-10-02 22:41:21 -0400123 * struct ObjectClass:
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600124 *
125 * The base for all classes. The only thing that #ObjectClass contains is an
126 * integer type handle.
127 */
128struct ObjectClass
129{
Eduardo Habkost11e1c3a2020-09-10 18:15:19 -0400130 /* private: */
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600131 Type type;
Anthony Liguori33e95c62012-08-10 13:16:10 +1000132 GSList *interfaces;
Paolo Bonzini667d22d2012-11-23 09:47:13 +0100133
Peter Crosthwaite0ab4c942013-11-27 20:27:33 -0800134 const char *object_cast_cache[OBJECT_CLASS_CAST_CACHE];
135 const char *class_cast_cache[OBJECT_CLASS_CAST_CACHE];
Anthony Liguori03587322013-05-13 15:22:24 -0500136
Paolo Bonzini667d22d2012-11-23 09:47:13 +0100137 ObjectUnparent *unparent;
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +0100138
139 GHashTable *properties;
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600140};
141
142/**
Eduardo Habkostff597802020-10-02 22:41:21 -0400143 * struct Object:
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600144 *
145 * The base for all objects. The first member of this object is a pointer to
146 * a #ObjectClass. Since C guarantees that the first member of a structure
147 * always begins at byte 0 of that structure, as long as any sub-object places
148 * its parent as the first member, we can cast directly to a #Object.
149 *
150 * As a result, #Object contains a reference to the objects type as its
151 * first member. This allows identification of the real type of the object at
152 * run time.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600153 */
154struct Object
155{
Eduardo Habkost11e1c3a2020-09-10 18:15:19 -0400156 /* private: */
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600157 ObjectClass *class;
Paolo Bonzinifde9bf42012-11-23 09:47:14 +0100158 ObjectFree *free;
Pavel Fedinb604a852015-10-13 13:37:45 +0100159 GHashTable *properties;
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600160 uint32_t ref;
161 Object *parent;
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600162};
163
164/**
Eduardo Habkost7808a282020-08-31 17:07:26 -0400165 * DECLARE_INSTANCE_CHECKER:
166 * @InstanceType: instance struct name
167 * @OBJ_NAME: the object name in uppercase with underscore separators
168 * @TYPENAME: type name
169 *
170 * Direct usage of this macro should be avoided, and the complete
171 * OBJECT_DECLARE_TYPE macro is recommended instead.
172 *
Eduardo Habkostd5b99592020-10-02 22:54:19 -0400173 * This macro will provide the instance type cast functions for a
Eduardo Habkost7808a282020-08-31 17:07:26 -0400174 * QOM type.
175 */
176#define DECLARE_INSTANCE_CHECKER(InstanceType, OBJ_NAME, TYPENAME) \
177 static inline G_GNUC_UNUSED InstanceType * \
Eduardo Habkostad09bed2020-08-31 17:07:27 -0400178 OBJ_NAME(const void *obj) \
Eduardo Habkost7808a282020-08-31 17:07:26 -0400179 { return OBJECT_CHECK(InstanceType, obj, TYPENAME); }
180
181/**
182 * DECLARE_CLASS_CHECKERS:
183 * @ClassType: class struct name
184 * @OBJ_NAME: the object name in uppercase with underscore separators
185 * @TYPENAME: type name
186 *
187 * Direct usage of this macro should be avoided, and the complete
188 * OBJECT_DECLARE_TYPE macro is recommended instead.
189 *
Eduardo Habkostd5b99592020-10-02 22:54:19 -0400190 * This macro will provide the class type cast functions for a
Eduardo Habkost7808a282020-08-31 17:07:26 -0400191 * QOM type.
192 */
193#define DECLARE_CLASS_CHECKERS(ClassType, OBJ_NAME, TYPENAME) \
194 static inline G_GNUC_UNUSED ClassType * \
Eduardo Habkostad09bed2020-08-31 17:07:27 -0400195 OBJ_NAME##_GET_CLASS(const void *obj) \
Eduardo Habkost7808a282020-08-31 17:07:26 -0400196 { return OBJECT_GET_CLASS(ClassType, obj, TYPENAME); } \
197 \
198 static inline G_GNUC_UNUSED ClassType * \
Eduardo Habkostad09bed2020-08-31 17:07:27 -0400199 OBJ_NAME##_CLASS(const void *klass) \
Eduardo Habkost7808a282020-08-31 17:07:26 -0400200 { return OBJECT_CLASS_CHECK(ClassType, klass, TYPENAME); }
201
202/**
203 * DECLARE_OBJ_CHECKERS:
204 * @InstanceType: instance struct name
205 * @ClassType: class struct name
206 * @OBJ_NAME: the object name in uppercase with underscore separators
207 * @TYPENAME: type name
208 *
209 * Direct usage of this macro should be avoided, and the complete
210 * OBJECT_DECLARE_TYPE macro is recommended instead.
211 *
212 * This macro will provide the three standard type cast functions for a
213 * QOM type.
214 */
215#define DECLARE_OBJ_CHECKERS(InstanceType, ClassType, OBJ_NAME, TYPENAME) \
216 DECLARE_INSTANCE_CHECKER(InstanceType, OBJ_NAME, TYPENAME) \
217 \
218 DECLARE_CLASS_CHECKERS(ClassType, OBJ_NAME, TYPENAME)
219
220/**
Daniel P. Berrangéf84203a2020-08-31 17:07:24 -0400221 * OBJECT_DECLARE_TYPE:
Eduardo Habkost4a5f0542020-08-31 17:07:25 -0400222 * @InstanceType: instance struct name
223 * @ClassType: class struct name
Daniel P. Berrangéf84203a2020-08-31 17:07:24 -0400224 * @MODULE_OBJ_NAME: the object name in uppercase with underscore separators
225 *
226 * This macro is typically used in a header file, and will:
227 *
228 * - create the typedefs for the object and class structs
229 * - register the type for use with g_autoptr
230 * - provide three standard type cast functions
231 *
232 * The object struct and class struct need to be declared manually.
233 */
Eduardo Habkost30b57072020-09-16 14:25:17 -0400234#define OBJECT_DECLARE_TYPE(InstanceType, ClassType, MODULE_OBJ_NAME) \
Eduardo Habkost4a5f0542020-08-31 17:07:25 -0400235 typedef struct InstanceType InstanceType; \
236 typedef struct ClassType ClassType; \
Daniel P. Berrangéf84203a2020-08-31 17:07:24 -0400237 \
Eduardo Habkost4a5f0542020-08-31 17:07:25 -0400238 G_DEFINE_AUTOPTR_CLEANUP_FUNC(InstanceType, object_unref) \
Daniel P. Berrangéf84203a2020-08-31 17:07:24 -0400239 \
Eduardo Habkost7808a282020-08-31 17:07:26 -0400240 DECLARE_OBJ_CHECKERS(InstanceType, ClassType, \
241 MODULE_OBJ_NAME, TYPE_##MODULE_OBJ_NAME)
Daniel P. Berrangéf84203a2020-08-31 17:07:24 -0400242
243/**
244 * OBJECT_DECLARE_SIMPLE_TYPE:
Eduardo Habkost4a5f0542020-08-31 17:07:25 -0400245 * @InstanceType: instance struct name
Daniel P. Berrangéf84203a2020-08-31 17:07:24 -0400246 * @MODULE_OBJ_NAME: the object name in uppercase with underscore separators
Daniel P. Berrangéf84203a2020-08-31 17:07:24 -0400247 *
Eduardo Habkostc734cd42020-09-16 14:25:16 -0400248 * This does the same as OBJECT_DECLARE_TYPE(), but with no class struct
249 * declared.
Daniel P. Berrangéf84203a2020-08-31 17:07:24 -0400250 *
251 * This macro should be used unless the class struct needs to have
252 * virtual methods declared.
253 */
Eduardo Habkost30b57072020-09-16 14:25:17 -0400254#define OBJECT_DECLARE_SIMPLE_TYPE(InstanceType, MODULE_OBJ_NAME) \
Eduardo Habkostc734cd42020-09-16 14:25:16 -0400255 typedef struct InstanceType InstanceType; \
256 \
257 G_DEFINE_AUTOPTR_CLEANUP_FUNC(InstanceType, object_unref) \
258 \
259 DECLARE_INSTANCE_CHECKER(InstanceType, MODULE_OBJ_NAME, TYPE_##MODULE_OBJ_NAME)
Daniel P. Berrangéf84203a2020-08-31 17:07:24 -0400260
261
262/**
263 * OBJECT_DEFINE_TYPE_EXTENDED:
264 * @ModuleObjName: the object name with initial caps
265 * @module_obj_name: the object name in lowercase with underscore separators
266 * @MODULE_OBJ_NAME: the object name in uppercase with underscore separators
267 * @PARENT_MODULE_OBJ_NAME: the parent object name in uppercase with underscore
268 * separators
269 * @ABSTRACT: boolean flag to indicate whether the object can be instantiated
270 * @...: list of initializers for "InterfaceInfo" to declare implemented interfaces
271 *
272 * This macro is typically used in a source file, and will:
273 *
274 * - declare prototypes for _finalize, _class_init and _init methods
275 * - declare the TypeInfo struct instance
276 * - provide the constructor to register the type
277 *
278 * After using this macro, implementations of the _finalize, _class_init,
279 * and _init methods need to be written. Any of these can be zero-line
280 * no-op impls if no special logic is required for a given type.
281 *
282 * This macro should rarely be used, instead one of the more specialized
283 * macros is usually a better choice.
284 */
285#define OBJECT_DEFINE_TYPE_EXTENDED(ModuleObjName, module_obj_name, \
286 MODULE_OBJ_NAME, PARENT_MODULE_OBJ_NAME, \
287 ABSTRACT, ...) \
288 static void \
289 module_obj_name##_finalize(Object *obj); \
290 static void \
291 module_obj_name##_class_init(ObjectClass *oc, void *data); \
292 static void \
293 module_obj_name##_init(Object *obj); \
294 \
295 static const TypeInfo module_obj_name##_info = { \
296 .parent = TYPE_##PARENT_MODULE_OBJ_NAME, \
297 .name = TYPE_##MODULE_OBJ_NAME, \
298 .instance_size = sizeof(ModuleObjName), \
Richard Henderson4c880f32020-09-15 17:46:34 -0700299 .instance_align = __alignof__(ModuleObjName), \
Daniel P. Berrangéf84203a2020-08-31 17:07:24 -0400300 .instance_init = module_obj_name##_init, \
301 .instance_finalize = module_obj_name##_finalize, \
302 .class_size = sizeof(ModuleObjName##Class), \
303 .class_init = module_obj_name##_class_init, \
304 .abstract = ABSTRACT, \
305 .interfaces = (InterfaceInfo[]) { __VA_ARGS__ } , \
306 }; \
307 \
308 static void \
309 module_obj_name##_register_types(void) \
310 { \
311 type_register_static(&module_obj_name##_info); \
312 } \
313 type_init(module_obj_name##_register_types);
314
315/**
316 * OBJECT_DEFINE_TYPE:
317 * @ModuleObjName: the object name with initial caps
318 * @module_obj_name: the object name in lowercase with underscore separators
319 * @MODULE_OBJ_NAME: the object name in uppercase with underscore separators
320 * @PARENT_MODULE_OBJ_NAME: the parent object name in uppercase with underscore
321 * separators
322 *
323 * This is a specialization of OBJECT_DEFINE_TYPE_EXTENDED, which is suitable
324 * for the common case of a non-abstract type, without any interfaces.
325 */
326#define OBJECT_DEFINE_TYPE(ModuleObjName, module_obj_name, MODULE_OBJ_NAME, \
327 PARENT_MODULE_OBJ_NAME) \
328 OBJECT_DEFINE_TYPE_EXTENDED(ModuleObjName, module_obj_name, \
329 MODULE_OBJ_NAME, PARENT_MODULE_OBJ_NAME, \
330 false, { NULL })
331
332/**
333 * OBJECT_DEFINE_TYPE_WITH_INTERFACES:
334 * @ModuleObjName: the object name with initial caps
335 * @module_obj_name: the object name in lowercase with underscore separators
336 * @MODULE_OBJ_NAME: the object name in uppercase with underscore separators
337 * @PARENT_MODULE_OBJ_NAME: the parent object name in uppercase with underscore
338 * separators
339 * @...: list of initializers for "InterfaceInfo" to declare implemented interfaces
340 *
341 * This is a specialization of OBJECT_DEFINE_TYPE_EXTENDED, which is suitable
342 * for the common case of a non-abstract type, with one or more implemented
343 * interfaces.
344 *
345 * Note when passing the list of interfaces, be sure to include the final
346 * NULL entry, e.g. { TYPE_USER_CREATABLE }, { NULL }
347 */
348#define OBJECT_DEFINE_TYPE_WITH_INTERFACES(ModuleObjName, module_obj_name, \
349 MODULE_OBJ_NAME, \
350 PARENT_MODULE_OBJ_NAME, ...) \
351 OBJECT_DEFINE_TYPE_EXTENDED(ModuleObjName, module_obj_name, \
352 MODULE_OBJ_NAME, PARENT_MODULE_OBJ_NAME, \
353 false, __VA_ARGS__)
354
355/**
356 * OBJECT_DEFINE_ABSTRACT_TYPE:
357 * @ModuleObjName: the object name with initial caps
358 * @module_obj_name: the object name in lowercase with underscore separators
359 * @MODULE_OBJ_NAME: the object name in uppercase with underscore separators
360 * @PARENT_MODULE_OBJ_NAME: the parent object name in uppercase with underscore
361 * separators
362 *
363 * This is a specialization of OBJECT_DEFINE_TYPE_EXTENDED, which is suitable
364 * for defining an abstract type, without any interfaces.
365 */
366#define OBJECT_DEFINE_ABSTRACT_TYPE(ModuleObjName, module_obj_name, \
367 MODULE_OBJ_NAME, PARENT_MODULE_OBJ_NAME) \
368 OBJECT_DEFINE_TYPE_EXTENDED(ModuleObjName, module_obj_name, \
369 MODULE_OBJ_NAME, PARENT_MODULE_OBJ_NAME, \
370 true, { NULL })
371
372/**
Eduardo Habkostff597802020-10-02 22:41:21 -0400373 * struct TypeInfo:
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600374 * @name: The name of the type.
375 * @parent: The name of the parent type.
376 * @instance_size: The size of the object (derivative of #Object). If
377 * @instance_size is 0, then the size of the object will be the size of the
378 * parent object.
Richard Henderson4c880f32020-09-15 17:46:34 -0700379 * @instance_align: The required alignment of the object. If @instance_align
380 * is 0, then normal malloc alignment is sufficient; if non-zero, then we
381 * must use qemu_memalign for allocation.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600382 * @instance_init: This function is called to initialize an object. The parent
383 * class will have already been initialized so the type is only responsible
384 * for initializing its own members.
Eduardo Habkost8231c2d2013-07-10 17:08:41 -0300385 * @instance_post_init: This function is called to finish initialization of
386 * an object, after all @instance_init functions were called.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600387 * @instance_finalize: This function is called during object destruction. This
388 * is called before the parent @instance_finalize function has been called.
389 * An object should only free the members that are unique to its type in this
390 * function.
391 * @abstract: If this field is true, then the class is considered abstract and
392 * cannot be directly instantiated.
393 * @class_size: The size of the class object (derivative of #ObjectClass)
394 * for this object. If @class_size is 0, then the size of the class will be
395 * assumed to be the size of the parent class. This allows a type to avoid
396 * implementing an explicit class type if they are not adding additional
397 * virtual functions.
398 * @class_init: This function is called after all parent class initialization
Stefan Weil441dd5e2012-02-25 13:47:09 +0100399 * has occurred to allow a class to set its default virtual method pointers.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600400 * This is also the function to use to override virtual methods from a parent
401 * class.
Paolo Bonzini3b50e312012-05-02 13:30:55 +0200402 * @class_base_init: This function is called for all base classes after all
403 * parent class initialization has occurred, but before the class itself
404 * is initialized. This is the function to use to undo the effects of
Marc-André Lureau39a10752016-12-12 20:31:49 +0300405 * memcpy from the parent class to the descendants.
Marc-André Lureau37fdb2c2018-12-04 18:20:10 +0400406 * @class_data: Data to pass to the @class_init,
407 * @class_base_init. This can be useful when building dynamic
Paolo Bonzini3b50e312012-05-02 13:30:55 +0200408 * classes.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600409 * @interfaces: The list of interfaces associated with this type. This
410 * should point to a static array that's terminated with a zero filled
411 * element.
412 */
413struct TypeInfo
414{
415 const char *name;
416 const char *parent;
417
418 size_t instance_size;
Richard Henderson4c880f32020-09-15 17:46:34 -0700419 size_t instance_align;
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600420 void (*instance_init)(Object *obj);
Eduardo Habkost8231c2d2013-07-10 17:08:41 -0300421 void (*instance_post_init)(Object *obj);
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600422 void (*instance_finalize)(Object *obj);
423
424 bool abstract;
425 size_t class_size;
426
427 void (*class_init)(ObjectClass *klass, void *data);
Paolo Bonzini3b50e312012-05-02 13:30:55 +0200428 void (*class_base_init)(ObjectClass *klass, void *data);
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600429 void *class_data;
430
431 InterfaceInfo *interfaces;
432};
433
434/**
435 * OBJECT:
436 * @obj: A derivative of #Object
437 *
438 * Converts an object to a #Object. Since all objects are #Objects,
439 * this function will always succeed.
440 */
441#define OBJECT(obj) \
442 ((Object *)(obj))
443
444/**
Paolo Bonzini1ed5b912012-02-03 11:48:11 +0100445 * OBJECT_CLASS:
Andreas Färbera0dbf402012-02-16 18:03:18 +0100446 * @class: A derivative of #ObjectClass.
Paolo Bonzini1ed5b912012-02-03 11:48:11 +0100447 *
448 * Converts a class to an #ObjectClass. Since all objects are #Objects,
449 * this function will always succeed.
450 */
451#define OBJECT_CLASS(class) \
452 ((ObjectClass *)(class))
453
454/**
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600455 * OBJECT_CHECK:
456 * @type: The C type to use for the return value.
457 * @obj: A derivative of @type to cast.
458 * @name: The QOM typename of @type
459 *
460 * A type safe version of @object_dynamic_cast_assert. Typically each class
461 * will define a macro based on this type to perform type safe dynamic_casts to
462 * this object type.
463 *
464 * If an invalid object is passed to this function, a run time assert will be
465 * generated.
466 */
467#define OBJECT_CHECK(type, obj, name) \
Paolo Bonzinibe17f182013-05-10 14:16:38 +0200468 ((type *)object_dynamic_cast_assert(OBJECT(obj), (name), \
469 __FILE__, __LINE__, __func__))
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600470
471/**
472 * OBJECT_CLASS_CHECK:
Cao jinb30d8052015-11-03 10:36:42 +0800473 * @class_type: The C type to use for the return value.
474 * @class: A derivative class of @class_type to cast.
475 * @name: the QOM typename of @class_type.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600476 *
Paolo Bonzini1ed5b912012-02-03 11:48:11 +0100477 * A type safe version of @object_class_dynamic_cast_assert. This macro is
478 * typically wrapped by each type to perform type safe casts of a class to a
479 * specific class type.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600480 */
Cao jinb30d8052015-11-03 10:36:42 +0800481#define OBJECT_CLASS_CHECK(class_type, class, name) \
482 ((class_type *)object_class_dynamic_cast_assert(OBJECT_CLASS(class), (name), \
Paolo Bonzinibe17f182013-05-10 14:16:38 +0200483 __FILE__, __LINE__, __func__))
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600484
485/**
486 * OBJECT_GET_CLASS:
487 * @class: The C type to use for the return value.
488 * @obj: The object to obtain the class for.
489 * @name: The QOM typename of @obj.
490 *
491 * This function will return a specific class for a given object. Its generally
492 * used by each type to provide a type safe macro to get a specific class type
493 * from an object.
494 */
495#define OBJECT_GET_CLASS(class, obj, name) \
496 OBJECT_CLASS_CHECK(class, object_get_class(OBJECT(obj)), name)
497
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600498/**
Eduardo Habkostff597802020-10-02 22:41:21 -0400499 * struct InterfaceInfo:
Anthony Liguori33e95c62012-08-10 13:16:10 +1000500 * @type: The name of the interface.
501 *
502 * The information associated with an interface.
503 */
504struct InterfaceInfo {
505 const char *type;
506};
507
508/**
Eduardo Habkostff597802020-10-02 22:41:21 -0400509 * struct InterfaceClass:
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600510 * @parent_class: the base class
511 *
512 * The class for all interfaces. Subclasses of this class should only add
513 * virtual methods.
514 */
515struct InterfaceClass
516{
517 ObjectClass parent_class;
Eduardo Habkost11e1c3a2020-09-10 18:15:19 -0400518 /* private: */
Anthony Liguori33e95c62012-08-10 13:16:10 +1000519 ObjectClass *concrete_class;
Paolo Bonzinib061dc42013-12-03 16:41:59 +0100520 Type interface_type;
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600521};
522
523#define TYPE_INTERFACE "interface"
524
525/**
Anthony Liguori33e95c62012-08-10 13:16:10 +1000526 * INTERFACE_CLASS:
527 * @klass: class to cast from
528 * Returns: An #InterfaceClass or raise an error if cast is invalid
529 */
530#define INTERFACE_CLASS(klass) \
531 OBJECT_CLASS_CHECK(InterfaceClass, klass, TYPE_INTERFACE)
532
533/**
534 * INTERFACE_CHECK:
535 * @interface: the type to return
536 * @obj: the object to convert to an interface
537 * @name: the interface type name
538 *
539 * Returns: @obj casted to @interface if cast is valid, otherwise raise error.
540 */
541#define INTERFACE_CHECK(interface, obj, name) \
Paolo Bonzinibe17f182013-05-10 14:16:38 +0200542 ((interface *)object_dynamic_cast_assert(OBJECT((obj)), (name), \
543 __FILE__, __LINE__, __func__))
Anthony Liguori33e95c62012-08-10 13:16:10 +1000544
545/**
Paolo Bonzini3c75e122019-11-13 13:57:55 +0100546 * object_new_with_class:
547 * @klass: The class to instantiate.
548 *
549 * This function will initialize a new object using heap allocated memory.
550 * The returned object has a reference count of 1, and will be freed when
551 * the last reference is dropped.
552 *
553 * Returns: The newly allocated and instantiated object.
554 */
555Object *object_new_with_class(ObjectClass *klass);
556
557/**
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600558 * object_new:
559 * @typename: The name of the type of the object to instantiate.
560 *
Paolo Bonzinib76facc2013-01-25 14:12:39 +0100561 * This function will initialize a new object using heap allocated memory.
562 * The returned object has a reference count of 1, and will be freed when
563 * the last reference is dropped.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600564 *
565 * Returns: The newly allocated and instantiated object.
566 */
567Object *object_new(const char *typename);
568
569/**
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100570 * object_new_with_props:
571 * @typename: The name of the type of the object to instantiate.
572 * @parent: the parent object
573 * @id: The unique ID of the object
574 * @errp: pointer to error object
575 * @...: list of property names and values
576 *
577 * This function will initialize a new object using heap allocated memory.
578 * The returned object has a reference count of 1, and will be freed when
579 * the last reference is dropped.
580 *
581 * The @id parameter will be used when registering the object as a
582 * child of @parent in the composition tree.
583 *
584 * The variadic parameters are a list of pairs of (propname, propvalue)
585 * strings. The propname of %NULL indicates the end of the property
586 * list. If the object implements the user creatable interface, the
587 * object will be marked complete once all the properties have been
588 * processed.
589 *
Eduardo Habkost6cf164c2020-09-10 18:15:24 -0400590 * .. code-block:: c
591 * :caption: Creating an object with properties
592 *
Eduardo Habkost9bbfd242020-09-10 18:15:23 -0400593 * Error *err = NULL;
594 * Object *obj;
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100595 *
Eduardo Habkost9bbfd242020-09-10 18:15:23 -0400596 * obj = object_new_with_props(TYPE_MEMORY_BACKEND_FILE,
597 * object_get_objects_root(),
598 * "hostmem0",
599 * &err,
600 * "share", "yes",
601 * "mem-path", "/dev/shm/somefile",
602 * "prealloc", "yes",
603 * "size", "1048576",
604 * NULL);
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100605 *
Eduardo Habkost9bbfd242020-09-10 18:15:23 -0400606 * if (!obj) {
607 * error_reportf_err(err, "Cannot create memory backend: ");
608 * }
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100609 *
610 * The returned object will have one stable reference maintained
611 * for as long as it is present in the object hierarchy.
612 *
613 * Returns: The newly allocated, instantiated & initialized object.
614 */
615Object *object_new_with_props(const char *typename,
616 Object *parent,
617 const char *id,
618 Error **errp,
619 ...) QEMU_SENTINEL;
620
621/**
622 * object_new_with_propv:
623 * @typename: The name of the type of the object to instantiate.
624 * @parent: the parent object
625 * @id: The unique ID of the object
626 * @errp: pointer to error object
627 * @vargs: list of property names and values
628 *
629 * See object_new_with_props() for documentation.
630 */
631Object *object_new_with_propv(const char *typename,
632 Object *parent,
633 const char *id,
634 Error **errp,
635 va_list vargs);
636
Markus Armbruster6fd5bef2020-07-07 18:05:55 +0200637bool object_apply_global_props(Object *obj, const GPtrArray *props,
Marc-André Lureauea9ce892018-11-26 22:04:32 +0400638 Error **errp);
Markus Armbruster617902a2019-03-08 14:14:35 +0100639void object_set_machine_compat_props(GPtrArray *compat_props);
640void object_set_accelerator_compat_props(GPtrArray *compat_props);
Paolo Bonzini1fff3c22019-11-13 13:33:44 +0100641void object_register_sugar_prop(const char *driver, const char *prop, const char *value);
Markus Armbruster617902a2019-03-08 14:14:35 +0100642void object_apply_compat_props(Object *obj);
Marc-André Lureauea9ce892018-11-26 22:04:32 +0400643
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100644/**
645 * object_set_props:
646 * @obj: the object instance to set properties on
647 * @errp: pointer to error object
648 * @...: list of property names and values
649 *
650 * This function will set a list of properties on an existing object
651 * instance.
652 *
653 * The variadic parameters are a list of pairs of (propname, propvalue)
654 * strings. The propname of %NULL indicates the end of the property
655 * list.
656 *
Eduardo Habkost6cf164c2020-09-10 18:15:24 -0400657 * .. code-block:: c
658 * :caption: Update an object's properties
659 *
Eduardo Habkost9bbfd242020-09-10 18:15:23 -0400660 * Error *err = NULL;
661 * Object *obj = ...get / create object...;
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100662 *
Eduardo Habkost9bbfd242020-09-10 18:15:23 -0400663 * if (!object_set_props(obj,
664 * &err,
665 * "share", "yes",
666 * "mem-path", "/dev/shm/somefile",
667 * "prealloc", "yes",
668 * "size", "1048576",
669 * NULL)) {
670 * error_reportf_err(err, "Cannot set properties: ");
671 * }
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100672 *
673 * The returned object will have one stable reference maintained
674 * for as long as it is present in the object hierarchy.
675 *
Markus Armbrusterb783f542020-07-07 18:05:58 +0200676 * Returns: %true on success, %false on error.
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100677 */
Markus Armbrusterb783f542020-07-07 18:05:58 +0200678bool object_set_props(Object *obj, Error **errp, ...) QEMU_SENTINEL;
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100679
680/**
681 * object_set_propv:
682 * @obj: the object instance to set properties on
683 * @errp: pointer to error object
684 * @vargs: list of property names and values
685 *
686 * See object_set_props() for documentation.
687 *
Markus Armbrusterb783f542020-07-07 18:05:58 +0200688 * Returns: %true on success, %false on error.
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100689 */
Markus Armbrusterb783f542020-07-07 18:05:58 +0200690bool object_set_propv(Object *obj, Error **errp, va_list vargs);
Daniel P. Berrangea31bdae2015-05-13 17:14:06 +0100691
692/**
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600693 * object_initialize:
694 * @obj: A pointer to the memory to be used for the object.
Andreas Färber213f0c42013-08-23 19:37:12 +0200695 * @size: The maximum size available at @obj for the object.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600696 * @typename: The name of the type of the object to instantiate.
697 *
698 * This function will initialize an object. The memory for the object should
Paolo Bonzinib76facc2013-01-25 14:12:39 +0100699 * have already been allocated. The returned object has a reference count of 1,
700 * and will be finalized when the last reference is dropped.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600701 */
Andreas Färber213f0c42013-08-23 19:37:12 +0200702void object_initialize(void *obj, size_t size, const char *typename);
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600703
704/**
Markus Armbruster9fc7fc42020-06-10 07:32:25 +0200705 * object_initialize_child_with_props:
Thomas Huth0210b392018-07-16 14:59:18 +0200706 * @parentobj: The parent object to add a property to
707 * @propname: The name of the property
708 * @childobj: A pointer to the memory to be used for the object.
709 * @size: The maximum size available at @childobj for the object.
710 * @type: The name of the type of the object to instantiate.
711 * @errp: If an error occurs, a pointer to an area to store the error
712 * @...: list of property names and values
713 *
714 * This function will initialize an object. The memory for the object should
715 * have already been allocated. The object will then be added as child property
716 * to a parent with object_property_add_child() function. The returned object
717 * has a reference count of 1 (for the "child<...>" property from the parent),
718 * so the object will be finalized automatically when the parent gets removed.
719 *
720 * The variadic parameters are a list of pairs of (propname, propvalue)
721 * strings. The propname of %NULL indicates the end of the property list.
722 * If the object implements the user creatable interface, the object will
723 * be marked complete once all the properties have been processed.
Markus Armbruster6fd5bef2020-07-07 18:05:55 +0200724 *
725 * Returns: %true on success, %false on failure.
Thomas Huth0210b392018-07-16 14:59:18 +0200726 */
Markus Armbruster6fd5bef2020-07-07 18:05:55 +0200727bool object_initialize_child_with_props(Object *parentobj,
Markus Armbruster9fc7fc42020-06-10 07:32:25 +0200728 const char *propname,
Thomas Huth0210b392018-07-16 14:59:18 +0200729 void *childobj, size_t size, const char *type,
730 Error **errp, ...) QEMU_SENTINEL;
731
732/**
Markus Armbruster9fc7fc42020-06-10 07:32:25 +0200733 * object_initialize_child_with_propsv:
Thomas Huth0210b392018-07-16 14:59:18 +0200734 * @parentobj: The parent object to add a property to
735 * @propname: The name of the property
736 * @childobj: A pointer to the memory to be used for the object.
737 * @size: The maximum size available at @childobj for the object.
738 * @type: The name of the type of the object to instantiate.
739 * @errp: If an error occurs, a pointer to an area to store the error
740 * @vargs: list of property names and values
741 *
742 * See object_initialize_child() for documentation.
Markus Armbruster6fd5bef2020-07-07 18:05:55 +0200743 *
744 * Returns: %true on success, %false on failure.
Thomas Huth0210b392018-07-16 14:59:18 +0200745 */
Markus Armbruster6fd5bef2020-07-07 18:05:55 +0200746bool object_initialize_child_with_propsv(Object *parentobj,
Markus Armbruster9fc7fc42020-06-10 07:32:25 +0200747 const char *propname,
Thomas Huth0210b392018-07-16 14:59:18 +0200748 void *childobj, size_t size, const char *type,
749 Error **errp, va_list vargs);
750
751/**
Markus Armbruster9fc7fc42020-06-10 07:32:25 +0200752 * object_initialize_child:
753 * @parent: The parent object to add a property to
754 * @propname: The name of the property
755 * @child: A precisely typed pointer to the memory to be used for the
756 * object.
757 * @type: The name of the type of the object to instantiate.
758 *
Eduardo Habkost6cf164c2020-09-10 18:15:24 -0400759 * This is like::
760 *
761 * object_initialize_child_with_props(parent, propname,
762 * child, sizeof(*child), type,
763 * &error_abort, NULL)
Markus Armbruster9fc7fc42020-06-10 07:32:25 +0200764 */
765#define object_initialize_child(parent, propname, child, type) \
766 object_initialize_child_internal((parent), (propname), \
767 (child), sizeof(*(child)), (type))
768void object_initialize_child_internal(Object *parent, const char *propname,
769 void *child, size_t size,
770 const char *type);
771
772/**
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600773 * object_dynamic_cast:
774 * @obj: The object to cast.
775 * @typename: The @typename to cast to.
776 *
777 * This function will determine if @obj is-a @typename. @obj can refer to an
778 * object or an interface associated with an object.
779 *
780 * Returns: This function returns @obj on success or #NULL on failure.
781 */
782Object *object_dynamic_cast(Object *obj, const char *typename);
783
784/**
Andreas Färber438e1c72012-02-16 18:03:19 +0100785 * object_dynamic_cast_assert:
Eduardo Habkost1827c352020-09-10 18:15:18 -0400786 * @obj: The object to cast.
787 * @typename: The @typename to cast to.
788 * @file: Source code file where function was called
789 * @line: Source code line where function was called
790 * @func: Name of function where this function was called
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600791 *
792 * See object_dynamic_cast() for a description of the parameters of this
793 * function. The only difference in behavior is that this function asserts
Paolo Bonzini3556c232013-05-10 14:16:40 +0200794 * instead of returning #NULL on failure if QOM cast debugging is enabled.
795 * This function is not meant to be called directly, but only through
796 * the wrapper macro OBJECT_CHECK.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600797 */
Paolo Bonzinibe17f182013-05-10 14:16:38 +0200798Object *object_dynamic_cast_assert(Object *obj, const char *typename,
799 const char *file, int line, const char *func);
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600800
801/**
802 * object_get_class:
803 * @obj: A derivative of #Object
804 *
805 * Returns: The #ObjectClass of the type associated with @obj.
806 */
807ObjectClass *object_get_class(Object *obj);
808
809/**
810 * object_get_typename:
811 * @obj: A derivative of #Object.
812 *
813 * Returns: The QOM typename of @obj.
814 */
Igor Mammedov8f5d58e2017-07-14 10:14:50 +0800815const char *object_get_typename(const Object *obj);
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600816
817/**
818 * type_register_static:
819 * @info: The #TypeInfo of the new type.
820 *
821 * @info and all of the strings it points to should exist for the life time
822 * that the type is registered.
823 *
Igor Mammedov31b93522017-10-04 12:08:00 +0200824 * Returns: the new #Type.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600825 */
826Type type_register_static(const TypeInfo *info);
827
828/**
829 * type_register:
830 * @info: The #TypeInfo of the new type
831 *
Stefan Weil93148aa2012-02-26 18:46:12 +0100832 * Unlike type_register_static(), this call does not require @info or its
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600833 * string members to continue to exist after the call returns.
834 *
Igor Mammedov31b93522017-10-04 12:08:00 +0200835 * Returns: the new #Type.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600836 */
837Type type_register(const TypeInfo *info);
838
839/**
Igor Mammedovaa04c9d22017-10-09 21:50:49 +0200840 * type_register_static_array:
841 * @infos: The array of the new type #TypeInfo structures.
842 * @nr_infos: number of entries in @infos
843 *
844 * @infos and all of the strings it points to should exist for the life time
845 * that the type is registered.
846 */
847void type_register_static_array(const TypeInfo *infos, int nr_infos);
848
849/**
Igor Mammedov38b5d792017-10-09 21:50:50 +0200850 * DEFINE_TYPES:
851 * @type_array: The array containing #TypeInfo structures to register
852 *
853 * @type_array should be static constant that exists for the life time
854 * that the type is registered.
855 */
856#define DEFINE_TYPES(type_array) \
857static void do_qemu_init_ ## type_array(void) \
858{ \
859 type_register_static_array(type_array, ARRAY_SIZE(type_array)); \
860} \
861type_init(do_qemu_init_ ## type_array)
862
863/**
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600864 * object_class_dynamic_cast_assert:
865 * @klass: The #ObjectClass to attempt to cast.
866 * @typename: The QOM typename of the class to cast to.
Eduardo Habkost1827c352020-09-10 18:15:18 -0400867 * @file: Source code file where function was called
868 * @line: Source code line where function was called
869 * @func: Name of function where this function was called
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600870 *
Paolo Bonzini33bc94e2013-05-10 14:16:35 +0200871 * See object_class_dynamic_cast() for a description of the parameters
872 * of this function. The only difference in behavior is that this function
Paolo Bonzini3556c232013-05-10 14:16:40 +0200873 * asserts instead of returning #NULL on failure if QOM cast debugging is
874 * enabled. This function is not meant to be called directly, but only through
Eduardo Habkost04dcf4b2020-09-16 15:30:59 -0400875 * the wrapper macro OBJECT_CLASS_CHECK.
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600876 */
877ObjectClass *object_class_dynamic_cast_assert(ObjectClass *klass,
Paolo Bonzinibe17f182013-05-10 14:16:38 +0200878 const char *typename,
879 const char *file, int line,
880 const char *func);
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600881
Paolo Bonzini33bc94e2013-05-10 14:16:35 +0200882/**
883 * object_class_dynamic_cast:
884 * @klass: The #ObjectClass to attempt to cast.
885 * @typename: The QOM typename of the class to cast to.
886 *
887 * Returns: If @typename is a class, this function returns @klass if
888 * @typename is a subtype of @klass, else returns #NULL.
889 *
890 * If @typename is an interface, this function returns the interface
891 * definition for @klass if @klass implements it unambiguously; #NULL
892 * is returned if @klass does not implement the interface or if multiple
893 * classes or interfaces on the hierarchy leading to @klass implement
894 * it. (FIXME: perhaps this can be detected at type definition time?)
895 */
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600896ObjectClass *object_class_dynamic_cast(ObjectClass *klass,
897 const char *typename);
898
899/**
Paolo Bonzinie7cce672012-05-02 13:30:54 +0200900 * object_class_get_parent:
901 * @klass: The class to obtain the parent for.
902 *
903 * Returns: The parent for @klass or %NULL if none.
904 */
905ObjectClass *object_class_get_parent(ObjectClass *klass);
906
907/**
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600908 * object_class_get_name:
909 * @klass: The class to obtain the QOM typename for.
910 *
911 * Returns: The QOM typename for @klass.
912 */
913const char *object_class_get_name(ObjectClass *klass);
914
Paolo Bonzini0466e452012-05-02 13:30:53 +0200915/**
Andreas Färber17862372013-01-23 12:20:18 +0100916 * object_class_is_abstract:
917 * @klass: The class to obtain the abstractness for.
918 *
919 * Returns: %true if @klass is abstract, %false otherwise.
920 */
921bool object_class_is_abstract(ObjectClass *klass);
922
923/**
Paolo Bonzini0466e452012-05-02 13:30:53 +0200924 * object_class_by_name:
925 * @typename: The QOM typename to obtain the class for.
926 *
927 * Returns: The class for @typename or %NULL if not found.
928 */
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600929ObjectClass *object_class_by_name(const char *typename);
930
Gerd Hoffmann0f8198f2020-06-24 15:10:37 +0200931/**
932 * module_object_class_by_name:
933 * @typename: The QOM typename to obtain the class for.
934 *
935 * For objects which might be provided by a module. Behaves like
936 * object_class_by_name, but additionally tries to load the module
937 * needed in case the class is not available.
938 *
939 * Returns: The class for @typename or %NULL if not found.
940 */
941ObjectClass *module_object_class_by_name(const char *typename);
942
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600943void object_class_foreach(void (*fn)(ObjectClass *klass, void *opaque),
Anthony Liguori93c511a2011-12-22 14:11:53 -0600944 const char *implements_type, bool include_abstract,
Anthony Liguori2f28d2f2011-12-03 17:10:08 -0600945 void *opaque);
Andreas Färber418ba9e2012-02-25 23:07:34 +0100946
947/**
948 * object_class_get_list:
949 * @implements_type: The type to filter for, including its derivatives.
950 * @include_abstract: Whether to include abstract classes.
951 *
952 * Returns: A singly-linked list of the classes in reverse hashtable order.
953 */
954GSList *object_class_get_list(const char *implements_type,
955 bool include_abstract);
956
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600957/**
Paolo Bonzini47c66002018-03-03 08:33:10 +0100958 * object_class_get_list_sorted:
959 * @implements_type: The type to filter for, including its derivatives.
960 * @include_abstract: Whether to include abstract classes.
961 *
962 * Returns: A singly-linked list of the classes in alphabetical
963 * case-insensitive order.
964 */
965GSList *object_class_get_list_sorted(const char *implements_type,
966 bool include_abstract);
967
968/**
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600969 * object_ref:
970 * @obj: the object
971 *
972 * Increase the reference count of a object. A object cannot be freed as long
973 * as its reference count is greater than zero.
Marc-André Lureaub77ade92020-01-10 19:30:31 +0400974 * Returns: @obj
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600975 */
Daniel P. Berrangéc5a61e52020-08-31 17:07:23 -0400976Object *object_ref(void *obj);
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600977
978/**
Changlong Xieada03a02016-06-14 15:27:49 +0800979 * object_unref:
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600980 * @obj: the object
981 *
982 * Decrease the reference count of a object. A object cannot be freed as long
983 * as its reference count is greater than zero.
984 */
Daniel P. Berrangéc5a61e52020-08-31 17:07:23 -0400985void object_unref(void *obj);
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600986
987/**
Eric Augerdb57fef2020-06-29 21:34:22 +0200988 * object_property_try_add:
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600989 * @obj: the object to add a property to
990 * @name: the name of the property. This can contain any character except for
991 * a forward slash. In general, you should use hyphens '-' instead of
992 * underscores '_' when naming properties.
993 * @type: the type name of the property. This namespace is pretty loosely
994 * defined. Sub namespaces are constructed by using a prefix and then
995 * to angle brackets. For instance, the type 'virtio-net-pci' in the
996 * 'link' namespace would be 'link<virtio-net-pci>'.
997 * @get: The getter to be called to read a property. If this is NULL, then
998 * the property cannot be read.
999 * @set: the setter to be called to write a property. If this is NULL,
1000 * then the property cannot be written.
1001 * @release: called when the property is removed from the object. This is
1002 * meant to allow a property to free its opaque upon object
1003 * destruction. This may be NULL.
1004 * @opaque: an opaque pointer to pass to the callbacks for the property
Eric Augerdb57fef2020-06-29 21:34:22 +02001005 * @errp: pointer to error object
Paolo Bonzini64607d02014-06-05 13:11:51 +02001006 *
1007 * Returns: The #ObjectProperty; this can be used to set the @resolve
1008 * callback for child and link properties.
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001009 */
Eric Augerdb57fef2020-06-29 21:34:22 +02001010ObjectProperty *object_property_try_add(Object *obj, const char *name,
1011 const char *type,
1012 ObjectPropertyAccessor *get,
1013 ObjectPropertyAccessor *set,
1014 ObjectPropertyRelease *release,
1015 void *opaque, Error **errp);
1016
1017/**
1018 * object_property_add:
1019 * Same as object_property_try_add() with @errp hardcoded to
1020 * &error_abort.
Eduardo Habkost1827c352020-09-10 18:15:18 -04001021 *
1022 * @obj: the object to add a property to
1023 * @name: the name of the property. This can contain any character except for
1024 * a forward slash. In general, you should use hyphens '-' instead of
1025 * underscores '_' when naming properties.
1026 * @type: the type name of the property. This namespace is pretty loosely
1027 * defined. Sub namespaces are constructed by using a prefix and then
1028 * to angle brackets. For instance, the type 'virtio-net-pci' in the
1029 * 'link' namespace would be 'link<virtio-net-pci>'.
1030 * @get: The getter to be called to read a property. If this is NULL, then
1031 * the property cannot be read.
1032 * @set: the setter to be called to write a property. If this is NULL,
1033 * then the property cannot be written.
1034 * @release: called when the property is removed from the object. This is
1035 * meant to allow a property to free its opaque upon object
1036 * destruction. This may be NULL.
1037 * @opaque: an opaque pointer to pass to the callbacks for the property
Eric Augerdb57fef2020-06-29 21:34:22 +02001038 */
Paolo Bonzini64607d02014-06-05 13:11:51 +02001039ObjectProperty *object_property_add(Object *obj, const char *name,
1040 const char *type,
1041 ObjectPropertyAccessor *get,
1042 ObjectPropertyAccessor *set,
1043 ObjectPropertyRelease *release,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001044 void *opaque);
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001045
Markus Armbrusterdf4fe0b2020-05-05 17:29:26 +02001046void object_property_del(Object *obj, const char *name);
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001047
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001048ObjectProperty *object_class_property_add(ObjectClass *klass, const char *name,
1049 const char *type,
1050 ObjectPropertyAccessor *get,
1051 ObjectPropertyAccessor *set,
1052 ObjectPropertyRelease *release,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001053 void *opaque);
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001054
Paolo Bonzini8cb67892012-03-30 14:54:31 +02001055/**
Marc-André Lureau0e76ed02020-01-10 19:30:23 +04001056 * object_property_set_default_bool:
1057 * @prop: the property to set
1058 * @value: the value to be written to the property
1059 *
1060 * Set the property default value.
1061 */
1062void object_property_set_default_bool(ObjectProperty *prop, bool value);
1063
1064/**
1065 * object_property_set_default_str:
1066 * @prop: the property to set
1067 * @value: the value to be written to the property
1068 *
1069 * Set the property default value.
1070 */
1071void object_property_set_default_str(ObjectProperty *prop, const char *value);
1072
1073/**
1074 * object_property_set_default_int:
1075 * @prop: the property to set
1076 * @value: the value to be written to the property
1077 *
1078 * Set the property default value.
1079 */
1080void object_property_set_default_int(ObjectProperty *prop, int64_t value);
1081
1082/**
1083 * object_property_set_default_uint:
1084 * @prop: the property to set
1085 * @value: the value to be written to the property
1086 *
1087 * Set the property default value.
1088 */
1089void object_property_set_default_uint(ObjectProperty *prop, uint64_t value);
1090
1091/**
Paolo Bonzini8cb67892012-03-30 14:54:31 +02001092 * object_property_find:
1093 * @obj: the object
1094 * @name: the name of the property
Daniel P. Berrangéefba1592020-09-14 14:56:17 +01001095 *
1096 * Look up a property for an object.
1097 *
1098 * Return its #ObjectProperty if found, or NULL.
1099 */
1100ObjectProperty *object_property_find(Object *obj, const char *name);
1101
1102/**
1103 * object_property_find_err:
1104 * @obj: the object
1105 * @name: the name of the property
Paolo Bonzini89bfe002012-04-12 18:00:18 +02001106 * @errp: returns an error if this function fails
Paolo Bonzini8cb67892012-03-30 14:54:31 +02001107 *
Daniel P. Berrangéefba1592020-09-14 14:56:17 +01001108 * Look up a property for an object.
1109 *
1110 * Return its #ObjectProperty if found, or NULL.
Paolo Bonzini8cb67892012-03-30 14:54:31 +02001111 */
Daniel P. Berrangéefba1592020-09-14 14:56:17 +01001112ObjectProperty *object_property_find_err(Object *obj,
1113 const char *name,
1114 Error **errp);
1115
1116/**
1117 * object_class_property_find:
1118 * @klass: the object class
1119 * @name: the name of the property
1120 *
1121 * Look up a property for an object class.
1122 *
1123 * Return its #ObjectProperty if found, or NULL.
1124 */
1125ObjectProperty *object_class_property_find(ObjectClass *klass,
1126 const char *name);
1127
1128/**
1129 * object_class_property_find_err:
1130 * @klass: the object class
1131 * @name: the name of the property
1132 * @errp: returns an error if this function fails
1133 *
1134 * Look up a property for an object class.
1135 *
1136 * Return its #ObjectProperty if found, or NULL.
1137 */
1138ObjectProperty *object_class_property_find_err(ObjectClass *klass,
1139 const char *name,
1140 Error **errp);
Paolo Bonzini8cb67892012-03-30 14:54:31 +02001141
Daniel P. Berrange7746abd2015-12-09 12:34:02 +00001142typedef struct ObjectPropertyIterator {
1143 ObjectClass *nextclass;
1144 GHashTableIter iter;
1145} ObjectPropertyIterator;
Daniel P. Berrangea00c9482015-10-13 13:37:40 +01001146
1147/**
1148 * object_property_iter_init:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001149 * @iter: the iterator instance
Daniel P. Berrangea00c9482015-10-13 13:37:40 +01001150 * @obj: the object
1151 *
1152 * Initializes an iterator for traversing all properties
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001153 * registered against an object instance, its class and all parent classes.
Daniel P. Berrangea00c9482015-10-13 13:37:40 +01001154 *
1155 * It is forbidden to modify the property list while iterating,
1156 * whether removing or adding properties.
1157 *
1158 * Typical usage pattern would be
1159 *
Eduardo Habkost6cf164c2020-09-10 18:15:24 -04001160 * .. code-block:: c
1161 * :caption: Using object property iterators
1162 *
Eduardo Habkost9bbfd242020-09-10 18:15:23 -04001163 * ObjectProperty *prop;
1164 * ObjectPropertyIterator iter;
Daniel P. Berrangea00c9482015-10-13 13:37:40 +01001165 *
Eduardo Habkost9bbfd242020-09-10 18:15:23 -04001166 * object_property_iter_init(&iter, obj);
1167 * while ((prop = object_property_iter_next(&iter))) {
1168 * ... do something with prop ...
1169 * }
Daniel P. Berrangea00c9482015-10-13 13:37:40 +01001170 */
Daniel P. Berrange7746abd2015-12-09 12:34:02 +00001171void object_property_iter_init(ObjectPropertyIterator *iter,
1172 Object *obj);
Daniel P. Berrangea00c9482015-10-13 13:37:40 +01001173
1174/**
Alexey Kardashevskiy961c47b2018-03-02 00:09:39 +11001175 * object_class_property_iter_init:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001176 * @iter: the iterator instance
Alexey Kardashevskiy961c47b2018-03-02 00:09:39 +11001177 * @klass: the class
1178 *
1179 * Initializes an iterator for traversing all properties
1180 * registered against an object class and all parent classes.
1181 *
1182 * It is forbidden to modify the property list while iterating,
1183 * whether removing or adding properties.
1184 *
1185 * This can be used on abstract classes as it does not create a temporary
1186 * instance.
1187 */
1188void object_class_property_iter_init(ObjectPropertyIterator *iter,
1189 ObjectClass *klass);
1190
1191/**
Daniel P. Berrangea00c9482015-10-13 13:37:40 +01001192 * object_property_iter_next:
1193 * @iter: the iterator instance
1194 *
Daniel P. Berrange7746abd2015-12-09 12:34:02 +00001195 * Return the next available property. If no further properties
1196 * are available, a %NULL value will be returned and the @iter
1197 * pointer should not be used again after this point without
1198 * re-initializing it.
1199 *
Daniel P. Berrangea00c9482015-10-13 13:37:40 +01001200 * Returns: the next property, or %NULL when all properties
1201 * have been traversed.
1202 */
1203ObjectProperty *object_property_iter_next(ObjectPropertyIterator *iter);
1204
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001205void object_unparent(Object *obj);
1206
1207/**
1208 * object_property_get:
1209 * @obj: the object
Markus Armbruster5325cc32020-07-07 18:05:54 +02001210 * @name: the name of the property
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001211 * @v: the visitor that will receive the property value. This should be an
1212 * Output visitor and the data will be written with @name as the name.
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001213 * @errp: returns an error if this function fails
1214 *
1215 * Reads a property from a object.
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001216 *
1217 * Returns: %true on success, %false on failure.
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001218 */
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001219bool object_property_get(Object *obj, const char *name, Visitor *v,
Michael S. Tsirkine82df242013-09-22 10:08:14 +03001220 Error **errp);
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001221
1222/**
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001223 * object_property_set_str:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001224 * @obj: the object
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001225 * @name: the name of the property
Markus Armbruster5325cc32020-07-07 18:05:54 +02001226 * @value: the value to be written to the property
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001227 * @errp: returns an error if this function fails
1228 *
1229 * Writes a string value to a property.
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001230 *
1231 * Returns: %true on success, %false on failure.
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001232 */
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001233bool object_property_set_str(Object *obj, const char *name,
Markus Armbruster5325cc32020-07-07 18:05:54 +02001234 const char *value, Error **errp);
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001235
1236/**
1237 * object_property_get_str:
1238 * @obj: the object
1239 * @name: the name of the property
1240 * @errp: returns an error if this function fails
1241 *
1242 * Returns: the value of the property, converted to a C string, or NULL if
1243 * an error occurs (including when the property value is not a string).
1244 * The caller should free the string.
1245 */
1246char *object_property_get_str(Object *obj, const char *name,
Michael S. Tsirkine82df242013-09-22 10:08:14 +03001247 Error **errp);
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001248
1249/**
Paolo Bonzini1d9c5a12012-02-02 10:51:57 +01001250 * object_property_set_link:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001251 * @obj: the object
Paolo Bonzini1d9c5a12012-02-02 10:51:57 +01001252 * @name: the name of the property
Markus Armbruster5325cc32020-07-07 18:05:54 +02001253 * @value: the value to be written to the property
Paolo Bonzini1d9c5a12012-02-02 10:51:57 +01001254 * @errp: returns an error if this function fails
1255 *
1256 * Writes an object's canonical path to a property.
Marc-André Lureau265b5782018-05-31 21:51:17 +02001257 *
1258 * If the link property was created with
Eduardo Habkostb99e80c2020-10-02 22:54:23 -04001259 * %OBJ_PROP_LINK_STRONG bit, the old target object is
Marc-André Lureau265b5782018-05-31 21:51:17 +02001260 * unreferenced, and a reference is added to the new target object.
1261 *
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001262 * Returns: %true on success, %false on failure.
Paolo Bonzini1d9c5a12012-02-02 10:51:57 +01001263 */
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001264bool object_property_set_link(Object *obj, const char *name,
Markus Armbruster5325cc32020-07-07 18:05:54 +02001265 Object *value, Error **errp);
Paolo Bonzini1d9c5a12012-02-02 10:51:57 +01001266
1267/**
1268 * object_property_get_link:
1269 * @obj: the object
1270 * @name: the name of the property
1271 * @errp: returns an error if this function fails
1272 *
1273 * Returns: the value of the property, resolved from a path to an Object,
1274 * or NULL if an error occurs (including when the property value is not a
1275 * string or not a valid object path).
1276 */
1277Object *object_property_get_link(Object *obj, const char *name,
Michael S. Tsirkine82df242013-09-22 10:08:14 +03001278 Error **errp);
Paolo Bonzini1d9c5a12012-02-02 10:51:57 +01001279
1280/**
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001281 * object_property_set_bool:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001282 * @obj: the object
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001283 * @name: the name of the property
Markus Armbruster5325cc32020-07-07 18:05:54 +02001284 * @value: the value to be written to the property
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001285 * @errp: returns an error if this function fails
1286 *
1287 * Writes a bool value to a property.
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001288 *
1289 * Returns: %true on success, %false on failure.
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001290 */
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001291bool object_property_set_bool(Object *obj, const char *name,
Markus Armbruster5325cc32020-07-07 18:05:54 +02001292 bool value, Error **errp);
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001293
1294/**
1295 * object_property_get_bool:
1296 * @obj: the object
1297 * @name: the name of the property
1298 * @errp: returns an error if this function fails
1299 *
Markus Armbrustera21e6602020-09-17 14:55:40 +02001300 * Returns: the value of the property, converted to a boolean, or false if
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001301 * an error occurs (including when the property value is not a bool).
1302 */
1303bool object_property_get_bool(Object *obj, const char *name,
Michael S. Tsirkine82df242013-09-22 10:08:14 +03001304 Error **errp);
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001305
1306/**
1307 * object_property_set_int:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001308 * @obj: the object
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001309 * @name: the name of the property
Markus Armbruster5325cc32020-07-07 18:05:54 +02001310 * @value: the value to be written to the property
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001311 * @errp: returns an error if this function fails
1312 *
1313 * Writes an integer value to a property.
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001314 *
1315 * Returns: %true on success, %false on failure.
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001316 */
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001317bool object_property_set_int(Object *obj, const char *name,
Markus Armbruster5325cc32020-07-07 18:05:54 +02001318 int64_t value, Error **errp);
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001319
1320/**
1321 * object_property_get_int:
1322 * @obj: the object
1323 * @name: the name of the property
1324 * @errp: returns an error if this function fails
1325 *
Markus Armbrustera21e6602020-09-17 14:55:40 +02001326 * Returns: the value of the property, converted to an integer, or -1 if
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001327 * an error occurs (including when the property value is not an integer).
1328 */
1329int64_t object_property_get_int(Object *obj, const char *name,
Michael S. Tsirkine82df242013-09-22 10:08:14 +03001330 Error **errp);
Paolo Bonzini7b7b7d12012-02-01 17:16:22 +01001331
1332/**
Marc-André Lureau31527792017-06-07 20:36:04 +04001333 * object_property_set_uint:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001334 * @obj: the object
Marc-André Lureau31527792017-06-07 20:36:04 +04001335 * @name: the name of the property
Markus Armbruster5325cc32020-07-07 18:05:54 +02001336 * @value: the value to be written to the property
Marc-André Lureau31527792017-06-07 20:36:04 +04001337 * @errp: returns an error if this function fails
1338 *
1339 * Writes an unsigned integer value to a property.
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001340 *
1341 * Returns: %true on success, %false on failure.
Marc-André Lureau31527792017-06-07 20:36:04 +04001342 */
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001343bool object_property_set_uint(Object *obj, const char *name,
Markus Armbruster5325cc32020-07-07 18:05:54 +02001344 uint64_t value, Error **errp);
Marc-André Lureau31527792017-06-07 20:36:04 +04001345
1346/**
1347 * object_property_get_uint:
1348 * @obj: the object
1349 * @name: the name of the property
1350 * @errp: returns an error if this function fails
1351 *
1352 * Returns: the value of the property, converted to an unsigned integer, or 0
1353 * an error occurs (including when the property value is not an integer).
1354 */
1355uint64_t object_property_get_uint(Object *obj, const char *name,
1356 Error **errp);
1357
1358/**
Hu Tao1f217722014-05-14 17:43:33 +08001359 * object_property_get_enum:
1360 * @obj: the object
1361 * @name: the name of the property
Daniel P. Berrangea3590da2015-05-27 16:07:56 +01001362 * @typename: the name of the enum data type
Hu Tao1f217722014-05-14 17:43:33 +08001363 * @errp: returns an error if this function fails
1364 *
Markus Armbrusterd20f6162020-09-17 14:55:39 +02001365 * Returns: the value of the property, converted to an integer (which
1366 * can't be negative), or -1 on error (including when the property
1367 * value is not an enum).
Hu Tao1f217722014-05-14 17:43:33 +08001368 */
1369int object_property_get_enum(Object *obj, const char *name,
Daniel P. Berrangea3590da2015-05-27 16:07:56 +01001370 const char *typename, Error **errp);
Hu Tao1f217722014-05-14 17:43:33 +08001371
1372/**
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001373 * object_property_set:
1374 * @obj: the object
Markus Armbruster5325cc32020-07-07 18:05:54 +02001375 * @name: the name of the property
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001376 * @v: the visitor that will be used to write the property value. This should
1377 * be an Input visitor and the data will be first read with @name as the
1378 * name and then written as the property value.
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001379 * @errp: returns an error if this function fails
1380 *
1381 * Writes a property to a object.
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001382 *
1383 * Returns: %true on success, %false on failure.
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001384 */
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001385bool object_property_set(Object *obj, const char *name, Visitor *v,
Michael S. Tsirkine82df242013-09-22 10:08:14 +03001386 Error **errp);
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001387
1388/**
Paolo Bonzinib2cd7de2012-02-09 09:52:59 +01001389 * object_property_parse:
1390 * @obj: the object
Paolo Bonzinib2cd7de2012-02-09 09:52:59 +01001391 * @name: the name of the property
Markus Armbruster5325cc32020-07-07 18:05:54 +02001392 * @string: the string that will be used to parse the property value.
Paolo Bonzinib2cd7de2012-02-09 09:52:59 +01001393 * @errp: returns an error if this function fails
1394 *
1395 * Parses a string and writes the result into a property of an object.
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001396 *
1397 * Returns: %true on success, %false on failure.
Paolo Bonzinib2cd7de2012-02-09 09:52:59 +01001398 */
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001399bool object_property_parse(Object *obj, const char *name,
Markus Armbruster5325cc32020-07-07 18:05:54 +02001400 const char *string, Error **errp);
Paolo Bonzinib2cd7de2012-02-09 09:52:59 +01001401
1402/**
1403 * object_property_print:
1404 * @obj: the object
1405 * @name: the name of the property
Paolo Bonzini0b7593e2014-02-08 11:01:50 +01001406 * @human: if true, print for human consumption
Paolo Bonzinib2cd7de2012-02-09 09:52:59 +01001407 * @errp: returns an error if this function fails
1408 *
1409 * Returns a string representation of the value of the property. The
1410 * caller shall free the string.
1411 */
Paolo Bonzini0b7593e2014-02-08 11:01:50 +01001412char *object_property_print(Object *obj, const char *name, bool human,
Michael S. Tsirkine82df242013-09-22 10:08:14 +03001413 Error **errp);
Paolo Bonzinib2cd7de2012-02-09 09:52:59 +01001414
1415/**
Andreas Färber438e1c72012-02-16 18:03:19 +01001416 * object_property_get_type:
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001417 * @obj: the object
1418 * @name: the name of the property
1419 * @errp: returns an error if this function fails
1420 *
1421 * Returns: The type name of the property.
1422 */
1423const char *object_property_get_type(Object *obj, const char *name,
Michael S. Tsirkine82df242013-09-22 10:08:14 +03001424 Error **errp);
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001425
1426/**
1427 * object_get_root:
1428 *
1429 * Returns: the root object of the composition tree
1430 */
1431Object *object_get_root(void);
1432
Daniel P. Berrangebc2256c2015-05-13 17:14:05 +01001433
1434/**
1435 * object_get_objects_root:
1436 *
1437 * Get the container object that holds user created
1438 * object instances. This is the object at path
1439 * "/objects"
1440 *
1441 * Returns: the user object container
1442 */
1443Object *object_get_objects_root(void);
1444
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001445/**
Peter Xu7c47c4e2017-09-28 10:59:54 +08001446 * object_get_internal_root:
1447 *
1448 * Get the container object that holds internally used object
1449 * instances. Any object which is put into this container must not be
1450 * user visible, and it will not be exposed in the QOM tree.
1451 *
1452 * Returns: the internal object container
1453 */
1454Object *object_get_internal_root(void);
1455
1456/**
Stefan Hajnoczi11f590b2014-03-03 11:30:02 +01001457 * object_get_canonical_path_component:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001458 * @obj: the object
Stefan Hajnoczi11f590b2014-03-03 11:30:02 +01001459 *
1460 * Returns: The final component in the object's canonical path. The canonical
1461 * path is the path within the composition tree starting from the root.
Paolo Bonzini770dec22018-04-30 11:44:17 +02001462 * %NULL if the object doesn't have a parent (and thus a canonical path).
Stefan Hajnoczi11f590b2014-03-03 11:30:02 +01001463 */
Markus Armbruster7a309cc2020-07-14 18:02:00 +02001464const char *object_get_canonical_path_component(const Object *obj);
Stefan Hajnoczi11f590b2014-03-03 11:30:02 +01001465
1466/**
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001467 * object_get_canonical_path:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001468 * @obj: the object
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001469 *
Markus Armbruster5bd929d2020-07-14 18:02:01 +02001470 * Returns: The canonical path for a object, newly allocated. This is
1471 * the path within the composition tree starting from the root. Use
1472 * g_free() to free it.
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001473 */
Markus Armbrustere8512df2020-05-27 10:47:53 +02001474char *object_get_canonical_path(const Object *obj);
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001475
1476/**
1477 * object_resolve_path:
1478 * @path: the path to resolve
1479 * @ambiguous: returns true if the path resolution failed because of an
1480 * ambiguous match
1481 *
1482 * There are two types of supported paths--absolute paths and partial paths.
1483 *
1484 * Absolute paths are derived from the root object and can follow child<> or
1485 * link<> properties. Since they can follow link<> properties, they can be
1486 * arbitrarily long. Absolute paths look like absolute filenames and are
1487 * prefixed with a leading slash.
1488 *
1489 * Partial paths look like relative filenames. They do not begin with a
1490 * prefix. The matching rules for partial paths are subtle but designed to make
1491 * specifying objects easy. At each level of the composition tree, the partial
1492 * path is matched as an absolute path. The first match is not returned. At
1493 * least two matches are searched for. A successful result is only returned if
Paolo Bonzini02fe2db2012-02-03 11:21:01 +01001494 * only one match is found. If more than one match is found, a flag is
1495 * returned to indicate that the match was ambiguous.
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001496 *
1497 * Returns: The matched object or NULL on path lookup failure.
1498 */
1499Object *object_resolve_path(const char *path, bool *ambiguous);
1500
1501/**
Paolo Bonzini02fe2db2012-02-03 11:21:01 +01001502 * object_resolve_path_type:
1503 * @path: the path to resolve
1504 * @typename: the type to look for.
1505 * @ambiguous: returns true if the path resolution failed because of an
1506 * ambiguous match
1507 *
1508 * This is similar to object_resolve_path. However, when looking for a
1509 * partial path only matches that implement the given type are considered.
1510 * This restricts the search and avoids spuriously flagging matches as
1511 * ambiguous.
1512 *
1513 * For both partial and absolute paths, the return value goes through
1514 * a dynamic cast to @typename. This is important if either the link,
1515 * or the typename itself are of interface types.
1516 *
1517 * Returns: The matched object or NULL on path lookup failure.
1518 */
1519Object *object_resolve_path_type(const char *path, const char *typename,
1520 bool *ambiguous);
1521
1522/**
Paolo Bonzinia612b2a2012-03-27 18:38:45 +02001523 * object_resolve_path_component:
1524 * @parent: the object in which to resolve the path
1525 * @part: the component to resolve.
1526 *
1527 * This is similar to object_resolve_path with an absolute path, but it
1528 * only resolves one element (@part) and takes the others from @parent.
1529 *
1530 * Returns: The resolved object or NULL on path lookup failure.
1531 */
Markus Armbrusterddfb0ba2020-05-05 17:29:10 +02001532Object *object_resolve_path_component(Object *parent, const char *part);
Paolo Bonzinia612b2a2012-03-27 18:38:45 +02001533
1534/**
Eric Augerdb57fef2020-06-29 21:34:22 +02001535 * object_property_try_add_child:
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001536 * @obj: the object to add a property to
1537 * @name: the name of the property
1538 * @child: the child object
Eric Augerdb57fef2020-06-29 21:34:22 +02001539 * @errp: pointer to error object
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001540 *
1541 * Child properties form the composition tree. All objects need to be a child
1542 * of another object. Objects can only be a child of one object.
1543 *
1544 * There is no way for a child to determine what its parent is. It is not
1545 * a bidirectional relationship. This is by design.
Alexander Barabash358b5462012-02-21 12:14:22 +02001546 *
1547 * The value of a child property as a C string will be the child object's
1548 * canonical path. It can be retrieved using object_property_get_str().
1549 * The child object itself can be retrieved using object_property_get_link().
Markus Armbruster70251882020-05-05 17:29:14 +02001550 *
1551 * Returns: The newly added property on success, or %NULL on failure.
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001552 */
Eric Augerdb57fef2020-06-29 21:34:22 +02001553ObjectProperty *object_property_try_add_child(Object *obj, const char *name,
1554 Object *child, Error **errp);
1555
1556/**
1557 * object_property_add_child:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001558 * @obj: the object to add a property to
1559 * @name: the name of the property
1560 * @child: the child object
1561 *
Eric Augerdb57fef2020-06-29 21:34:22 +02001562 * Same as object_property_try_add_child() with @errp hardcoded to
1563 * &error_abort
1564 */
Markus Armbruster70251882020-05-05 17:29:14 +02001565ObjectProperty *object_property_add_child(Object *obj, const char *name,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001566 Object *child);
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001567
Stefan Hajnoczi9561fda2014-03-19 08:58:55 +01001568typedef enum {
1569 /* Unref the link pointer when the property is deleted */
Marc-André Lureau265b5782018-05-31 21:51:17 +02001570 OBJ_PROP_LINK_STRONG = 0x1,
Marc-André Lureau9941d372020-01-10 19:30:27 +04001571
1572 /* private */
1573 OBJ_PROP_LINK_DIRECT = 0x2,
Marc-André Lureau840ecdf2020-01-10 19:30:29 +04001574 OBJ_PROP_LINK_CLASS = 0x4,
Stefan Hajnoczi9561fda2014-03-19 08:58:55 +01001575} ObjectPropertyLinkFlags;
1576
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001577/**
Stefan Hajnoczi39f72ef2014-03-19 08:58:56 +01001578 * object_property_allow_set_link:
Eduardo Habkost1827c352020-09-10 18:15:18 -04001579 * @obj: the object to add a property to
1580 * @name: the name of the property
1581 * @child: the child object
1582 * @errp: pointer to error object
Stefan Hajnoczi39f72ef2014-03-19 08:58:56 +01001583 *
1584 * The default implementation of the object_property_add_link() check()
1585 * callback function. It allows the link property to be set and never returns
1586 * an error.
1587 */
Eduardo Habkost1827c352020-09-10 18:15:18 -04001588void object_property_allow_set_link(const Object *obj, const char *name,
1589 Object *child, Error **errp);
Stefan Hajnoczi39f72ef2014-03-19 08:58:56 +01001590
1591/**
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001592 * object_property_add_link:
1593 * @obj: the object to add a property to
1594 * @name: the name of the property
1595 * @type: the qobj type of the link
Marc-André Lureau36854202020-01-10 19:30:26 +04001596 * @targetp: a pointer to where the link object reference is stored
Stefan Hajnoczi39f72ef2014-03-19 08:58:56 +01001597 * @check: callback to veto setting or NULL if the property is read-only
Stefan Hajnoczi9561fda2014-03-19 08:58:55 +01001598 * @flags: additional options for the link
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001599 *
1600 * Links establish relationships between objects. Links are unidirectional
1601 * although two links can be combined to form a bidirectional relationship
1602 * between objects.
1603 *
1604 * Links form the graph in the object model.
Paolo Bonzini6c232d22013-01-25 14:12:31 +01001605 *
Eduardo Habkostb99e80c2020-10-02 22:54:23 -04001606 * The @check() callback is invoked when
Stefan Hajnoczi39f72ef2014-03-19 08:58:56 +01001607 * object_property_set_link() is called and can raise an error to prevent the
Eduardo Habkostb99e80c2020-10-02 22:54:23 -04001608 * link being set. If @check is NULL, the property is read-only
Stefan Hajnoczi39f72ef2014-03-19 08:58:56 +01001609 * and cannot be set.
1610 *
Paolo Bonzini6c232d22013-01-25 14:12:31 +01001611 * Ownership of the pointer that @child points to is transferred to the
Eduardo Habkostb99e80c2020-10-02 22:54:23 -04001612 * link property. The reference count for *@child is
Paolo Bonzini6c232d22013-01-25 14:12:31 +01001613 * managed by the property from after the function returns till the
Stefan Hajnoczi9561fda2014-03-19 08:58:55 +01001614 * property is deleted with object_property_del(). If the
Eduardo Habkostb99e80c2020-10-02 22:54:23 -04001615 * @flags %OBJ_PROP_LINK_STRONG bit is set,
Marc-André Lureau265b5782018-05-31 21:51:17 +02001616 * the reference count is decremented when the property is deleted or
1617 * modified.
Markus Armbruster70251882020-05-05 17:29:14 +02001618 *
1619 * Returns: The newly added property on success, or %NULL on failure.
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001620 */
Markus Armbruster70251882020-05-05 17:29:14 +02001621ObjectProperty *object_property_add_link(Object *obj, const char *name,
Marc-André Lureau36854202020-01-10 19:30:26 +04001622 const char *type, Object **targetp,
Igor Mammedov8f5d58e2017-07-14 10:14:50 +08001623 void (*check)(const Object *obj, const char *name,
Stefan Hajnoczi39f72ef2014-03-19 08:58:56 +01001624 Object *val, Error **errp),
Markus Armbrusterd2623122020-05-05 17:29:22 +02001625 ObjectPropertyLinkFlags flags);
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001626
Marc-André Lureau840ecdf2020-01-10 19:30:29 +04001627ObjectProperty *object_class_property_add_link(ObjectClass *oc,
1628 const char *name,
1629 const char *type, ptrdiff_t offset,
1630 void (*check)(const Object *obj, const char *name,
1631 Object *val, Error **errp),
Markus Armbrusterd2623122020-05-05 17:29:22 +02001632 ObjectPropertyLinkFlags flags);
Marc-André Lureau840ecdf2020-01-10 19:30:29 +04001633
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001634/**
1635 * object_property_add_str:
1636 * @obj: the object to add a property to
1637 * @name: the name of the property
1638 * @get: the getter or NULL if the property is write-only. This function must
1639 * return a string to be freed by g_free().
1640 * @set: the setter or NULL if the property is read-only
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001641 *
1642 * Add a string property using getters/setters. This function will add a
1643 * property of type 'string'.
Markus Armbruster70251882020-05-05 17:29:14 +02001644 *
1645 * Returns: The newly added property on success, or %NULL on failure.
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001646 */
Markus Armbruster70251882020-05-05 17:29:14 +02001647ObjectProperty *object_property_add_str(Object *obj, const char *name,
Michael S. Tsirkine82df242013-09-22 10:08:14 +03001648 char *(*get)(Object *, Error **),
Markus Armbrusterd2623122020-05-05 17:29:22 +02001649 void (*set)(Object *, const char *, Error **));
Anthony Liguori2f28d2f2011-12-03 17:10:08 -06001650
Marc-André Lureaua3a16212020-01-10 19:30:21 +04001651ObjectProperty *object_class_property_add_str(ObjectClass *klass,
1652 const char *name,
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001653 char *(*get)(Object *, Error **),
1654 void (*set)(Object *, const char *,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001655 Error **));
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001656
Paolo Bonzinia612b2a2012-03-27 18:38:45 +02001657/**
Anthony Liguori0e558842012-06-25 10:32:46 -05001658 * object_property_add_bool:
1659 * @obj: the object to add a property to
1660 * @name: the name of the property
1661 * @get: the getter or NULL if the property is write-only.
1662 * @set: the setter or NULL if the property is read-only
Anthony Liguori0e558842012-06-25 10:32:46 -05001663 *
1664 * Add a bool property using getters/setters. This function will add a
1665 * property of type 'bool'.
Markus Armbruster70251882020-05-05 17:29:14 +02001666 *
1667 * Returns: The newly added property on success, or %NULL on failure.
Anthony Liguori0e558842012-06-25 10:32:46 -05001668 */
Markus Armbruster70251882020-05-05 17:29:14 +02001669ObjectProperty *object_property_add_bool(Object *obj, const char *name,
Michael S. Tsirkine82df242013-09-22 10:08:14 +03001670 bool (*get)(Object *, Error **),
Markus Armbrusterd2623122020-05-05 17:29:22 +02001671 void (*set)(Object *, bool, Error **));
Anthony Liguori0e558842012-06-25 10:32:46 -05001672
Marc-André Lureaua3a16212020-01-10 19:30:21 +04001673ObjectProperty *object_class_property_add_bool(ObjectClass *klass,
1674 const char *name,
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001675 bool (*get)(Object *, Error **),
Markus Armbrusterd2623122020-05-05 17:29:22 +02001676 void (*set)(Object *, bool, Error **));
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001677
Anthony Liguori0e558842012-06-25 10:32:46 -05001678/**
Daniel P. Berrangea8e3fbe2015-05-13 17:14:08 +01001679 * object_property_add_enum:
1680 * @obj: the object to add a property to
1681 * @name: the name of the property
1682 * @typename: the name of the enum data type
Eduardo Habkost1827c352020-09-10 18:15:18 -04001683 * @lookup: enum value namelookup table
Daniel P. Berrangea8e3fbe2015-05-13 17:14:08 +01001684 * @get: the getter or %NULL if the property is write-only.
1685 * @set: the setter or %NULL if the property is read-only
Daniel P. Berrangea8e3fbe2015-05-13 17:14:08 +01001686 *
1687 * Add an enum property using getters/setters. This function will add a
1688 * property of type '@typename'.
Markus Armbruster70251882020-05-05 17:29:14 +02001689 *
1690 * Returns: The newly added property on success, or %NULL on failure.
Daniel P. Berrangea8e3fbe2015-05-13 17:14:08 +01001691 */
Markus Armbruster70251882020-05-05 17:29:14 +02001692ObjectProperty *object_property_add_enum(Object *obj, const char *name,
Daniel P. Berrangea8e3fbe2015-05-13 17:14:08 +01001693 const char *typename,
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +02001694 const QEnumLookup *lookup,
Daniel P. Berrangea8e3fbe2015-05-13 17:14:08 +01001695 int (*get)(Object *, Error **),
Markus Armbrusterd2623122020-05-05 17:29:22 +02001696 void (*set)(Object *, int, Error **));
Daniel P. Berrangea8e3fbe2015-05-13 17:14:08 +01001697
Marc-André Lureaua3a16212020-01-10 19:30:21 +04001698ObjectProperty *object_class_property_add_enum(ObjectClass *klass,
1699 const char *name,
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001700 const char *typename,
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +02001701 const QEnumLookup *lookup,
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001702 int (*get)(Object *, Error **),
Markus Armbrusterd2623122020-05-05 17:29:22 +02001703 void (*set)(Object *, int, Error **));
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001704
Daniel P. Berrangea8e3fbe2015-05-13 17:14:08 +01001705/**
David Gibson8e099d12015-02-06 14:55:45 +11001706 * object_property_add_tm:
1707 * @obj: the object to add a property to
1708 * @name: the name of the property
1709 * @get: the getter or NULL if the property is write-only.
David Gibson8e099d12015-02-06 14:55:45 +11001710 *
1711 * Add a read-only struct tm valued property using a getter function.
1712 * This function will add a property of type 'struct tm'.
Markus Armbruster70251882020-05-05 17:29:14 +02001713 *
1714 * Returns: The newly added property on success, or %NULL on failure.
David Gibson8e099d12015-02-06 14:55:45 +11001715 */
Markus Armbruster70251882020-05-05 17:29:14 +02001716ObjectProperty *object_property_add_tm(Object *obj, const char *name,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001717 void (*get)(Object *, struct tm *, Error **));
David Gibson8e099d12015-02-06 14:55:45 +11001718
Marc-André Lureaua3a16212020-01-10 19:30:21 +04001719ObjectProperty *object_class_property_add_tm(ObjectClass *klass,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001720 const char *name,
1721 void (*get)(Object *, struct tm *, Error **));
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001722
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001723typedef enum {
1724 /* Automatically add a getter to the property */
1725 OBJ_PROP_FLAG_READ = 1 << 0,
1726 /* Automatically add a setter to the property */
1727 OBJ_PROP_FLAG_WRITE = 1 << 1,
1728 /* Automatically add a getter and a setter to the property */
1729 OBJ_PROP_FLAG_READWRITE = (OBJ_PROP_FLAG_READ | OBJ_PROP_FLAG_WRITE),
1730} ObjectPropertyFlags;
1731
David Gibson8e099d12015-02-06 14:55:45 +11001732/**
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001733 * object_property_add_uint8_ptr:
1734 * @obj: the object to add a property to
1735 * @name: the name of the property
1736 * @v: pointer to value
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001737 * @flags: bitwise-or'd ObjectPropertyFlags
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001738 *
1739 * Add an integer property in memory. This function will add a
1740 * property of type 'uint8'.
Markus Armbruster70251882020-05-05 17:29:14 +02001741 *
1742 * Returns: The newly added property on success, or %NULL on failure.
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001743 */
Markus Armbruster70251882020-05-05 17:29:14 +02001744ObjectProperty *object_property_add_uint8_ptr(Object *obj, const char *name,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001745 const uint8_t *v,
1746 ObjectPropertyFlags flags);
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001747
Marc-André Lureaua3a16212020-01-10 19:30:21 +04001748ObjectProperty *object_class_property_add_uint8_ptr(ObjectClass *klass,
1749 const char *name,
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001750 const uint8_t *v,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001751 ObjectPropertyFlags flags);
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001752
1753/**
1754 * object_property_add_uint16_ptr:
1755 * @obj: the object to add a property to
1756 * @name: the name of the property
1757 * @v: pointer to value
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001758 * @flags: bitwise-or'd ObjectPropertyFlags
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001759 *
1760 * Add an integer property in memory. This function will add a
1761 * property of type 'uint16'.
Markus Armbruster70251882020-05-05 17:29:14 +02001762 *
1763 * Returns: The newly added property on success, or %NULL on failure.
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001764 */
Markus Armbruster70251882020-05-05 17:29:14 +02001765ObjectProperty *object_property_add_uint16_ptr(Object *obj, const char *name,
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001766 const uint16_t *v,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001767 ObjectPropertyFlags flags);
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001768
Marc-André Lureaua3a16212020-01-10 19:30:21 +04001769ObjectProperty *object_class_property_add_uint16_ptr(ObjectClass *klass,
1770 const char *name,
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001771 const uint16_t *v,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001772 ObjectPropertyFlags flags);
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001773
1774/**
1775 * object_property_add_uint32_ptr:
1776 * @obj: the object to add a property to
1777 * @name: the name of the property
1778 * @v: pointer to value
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001779 * @flags: bitwise-or'd ObjectPropertyFlags
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001780 *
1781 * Add an integer property in memory. This function will add a
1782 * property of type 'uint32'.
Markus Armbruster70251882020-05-05 17:29:14 +02001783 *
1784 * Returns: The newly added property on success, or %NULL on failure.
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001785 */
Markus Armbruster70251882020-05-05 17:29:14 +02001786ObjectProperty *object_property_add_uint32_ptr(Object *obj, const char *name,
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001787 const uint32_t *v,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001788 ObjectPropertyFlags flags);
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001789
Marc-André Lureaua3a16212020-01-10 19:30:21 +04001790ObjectProperty *object_class_property_add_uint32_ptr(ObjectClass *klass,
1791 const char *name,
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001792 const uint32_t *v,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001793 ObjectPropertyFlags flags);
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001794
1795/**
1796 * object_property_add_uint64_ptr:
1797 * @obj: the object to add a property to
1798 * @name: the name of the property
1799 * @v: pointer to value
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001800 * @flags: bitwise-or'd ObjectPropertyFlags
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001801 *
1802 * Add an integer property in memory. This function will add a
1803 * property of type 'uint64'.
Markus Armbruster70251882020-05-05 17:29:14 +02001804 *
1805 * Returns: The newly added property on success, or %NULL on failure.
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001806 */
Markus Armbruster70251882020-05-05 17:29:14 +02001807ObjectProperty *object_property_add_uint64_ptr(Object *obj, const char *name,
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001808 const uint64_t *v,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001809 ObjectPropertyFlags flags);
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001810
Marc-André Lureaua3a16212020-01-10 19:30:21 +04001811ObjectProperty *object_class_property_add_uint64_ptr(ObjectClass *klass,
1812 const char *name,
Felipe Franciosi836e1b32020-02-04 13:15:58 +00001813 const uint64_t *v,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001814 ObjectPropertyFlags flags);
Michael S. Tsirkina25ebca2013-10-07 12:35:01 +03001815
1816/**
Stefan Hajnoczief7c7ff2014-06-18 17:58:28 +08001817 * object_property_add_alias:
1818 * @obj: the object to add a property to
1819 * @name: the name of the property
1820 * @target_obj: the object to forward property access to
1821 * @target_name: the name of the property on the forwarded object
Stefan Hajnoczief7c7ff2014-06-18 17:58:28 +08001822 *
1823 * Add an alias for a property on an object. This function will add a property
1824 * of the same type as the forwarded property.
1825 *
Eduardo Habkostb99e80c2020-10-02 22:54:23 -04001826 * The caller must ensure that @target_obj stays alive as long as
Stefan Hajnoczief7c7ff2014-06-18 17:58:28 +08001827 * this property exists. In the case of a child object or an alias on the same
1828 * object this will be the case. For aliases to other objects the caller is
1829 * responsible for taking a reference.
Markus Armbruster70251882020-05-05 17:29:14 +02001830 *
1831 * Returns: The newly added property on success, or %NULL on failure.
Stefan Hajnoczief7c7ff2014-06-18 17:58:28 +08001832 */
Markus Armbruster70251882020-05-05 17:29:14 +02001833ObjectProperty *object_property_add_alias(Object *obj, const char *name,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001834 Object *target_obj, const char *target_name);
Stefan Hajnoczief7c7ff2014-06-18 17:58:28 +08001835
1836/**
Paolo Bonzinifb9e7e32015-05-05 18:29:00 +02001837 * object_property_add_const_link:
1838 * @obj: the object to add a property to
1839 * @name: the name of the property
1840 * @target: the object to be referred by the link
Paolo Bonzinifb9e7e32015-05-05 18:29:00 +02001841 *
1842 * Add an unmodifiable link for a property on an object. This function will
1843 * add a property of type link<TYPE> where TYPE is the type of @target.
1844 *
1845 * The caller must ensure that @target stays alive as long as
1846 * this property exists. In the case @target is a child of @obj,
1847 * this will be the case. Otherwise, the caller is responsible for
1848 * taking a reference.
Markus Armbruster70251882020-05-05 17:29:14 +02001849 *
1850 * Returns: The newly added property on success, or %NULL on failure.
Paolo Bonzinifb9e7e32015-05-05 18:29:00 +02001851 */
Markus Armbruster70251882020-05-05 17:29:14 +02001852ObjectProperty *object_property_add_const_link(Object *obj, const char *name,
Markus Armbrusterd2623122020-05-05 17:29:22 +02001853 Object *target);
Paolo Bonzinifb9e7e32015-05-05 18:29:00 +02001854
1855/**
Gonglei80742642014-10-07 14:33:21 +08001856 * object_property_set_description:
1857 * @obj: the object owning the property
1858 * @name: the name of the property
1859 * @description: the description of the property on the object
Gonglei80742642014-10-07 14:33:21 +08001860 *
1861 * Set an object property's description.
1862 *
Markus Armbruster6fd5bef2020-07-07 18:05:55 +02001863 * Returns: %true on success, %false on failure.
Gonglei80742642014-10-07 14:33:21 +08001864 */
1865void object_property_set_description(Object *obj, const char *name,
Markus Armbruster7eecec72020-05-05 17:29:15 +02001866 const char *description);
Daniel P. Berrange16bf7f52015-10-13 13:37:46 +01001867void object_class_property_set_description(ObjectClass *klass, const char *name,
Markus Armbruster7eecec72020-05-05 17:29:15 +02001868 const char *description);
Gonglei80742642014-10-07 14:33:21 +08001869
1870/**
Paolo Bonzini32efc532012-04-11 23:30:20 +02001871 * object_child_foreach:
1872 * @obj: the object whose children will be navigated
1873 * @fn: the iterator function to be called
1874 * @opaque: an opaque value that will be passed to the iterator
1875 *
1876 * Call @fn passing each child of @obj and @opaque to it, until @fn returns
1877 * non-zero.
1878 *
Pavel Fedinb604a852015-10-13 13:37:45 +01001879 * It is forbidden to add or remove children from @obj from the @fn
1880 * callback.
1881 *
Paolo Bonzini32efc532012-04-11 23:30:20 +02001882 * Returns: The last value returned by @fn, or 0 if there is no child.
1883 */
1884int object_child_foreach(Object *obj, int (*fn)(Object *child, void *opaque),
1885 void *opaque);
1886
1887/**
Peter Crosthwaited714b8d2015-09-08 17:38:43 +01001888 * object_child_foreach_recursive:
1889 * @obj: the object whose children will be navigated
1890 * @fn: the iterator function to be called
1891 * @opaque: an opaque value that will be passed to the iterator
1892 *
1893 * Call @fn passing each child of @obj and @opaque to it, until @fn returns
1894 * non-zero. Calls recursively, all child nodes of @obj will also be passed
1895 * all the way down to the leaf nodes of the tree. Depth first ordering.
1896 *
Pavel Fedinb604a852015-10-13 13:37:45 +01001897 * It is forbidden to add or remove children from @obj (or its
1898 * child nodes) from the @fn callback.
1899 *
Peter Crosthwaited714b8d2015-09-08 17:38:43 +01001900 * Returns: The last value returned by @fn, or 0 if there is no child.
1901 */
1902int object_child_foreach_recursive(Object *obj,
1903 int (*fn)(Object *child, void *opaque),
1904 void *opaque);
1905/**
Paolo Bonzinia612b2a2012-03-27 18:38:45 +02001906 * container_get:
Andreas Färberdfe47e72012-04-05 13:21:46 +02001907 * @root: root of the #path, e.g., object_get_root()
Paolo Bonzinia612b2a2012-03-27 18:38:45 +02001908 * @path: path to the container
1909 *
1910 * Return a container object whose path is @path. Create more containers
1911 * along the path if necessary.
1912 *
1913 * Returns: the container object.
1914 */
Andreas Färberdfe47e72012-04-05 13:21:46 +02001915Object *container_get(Object *root, const char *path);
Paolo Bonzinia612b2a2012-03-27 18:38:45 +02001916
Bharata B Rao3f97b532016-06-10 06:29:00 +05301917/**
1918 * object_type_get_instance_size:
1919 * @typename: Name of the Type whose instance_size is required
1920 *
1921 * Returns the instance_size of the given @typename.
1922 */
1923size_t object_type_get_instance_size(const char *typename);
Marc-André Lureauf60a1cd2019-11-08 18:02:25 +04001924
Marc-André Lureau4df81612020-01-10 19:30:37 +04001925/**
1926 * object_property_help:
1927 * @name: the name of the property
1928 * @type: the type of the property
1929 * @defval: the default value
1930 * @description: description of the property
1931 *
1932 * Returns: a user-friendly formatted string describing the property
1933 * for help purposes.
1934 */
1935char *object_property_help(const char *name, const char *type,
1936 QObject *defval, const char *description);
1937
Marc-André Lureauf60a1cd2019-11-08 18:02:25 +04001938G_DEFINE_AUTOPTR_CLEANUP_FUNC(Object, object_unref)
1939
Anthony Liguori2f28d2f2011-12-03 17:10:08 -06001940#endif