6 * Copyright (C) 2009, 2015 Red Hat Inc.
11 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
12 * See the COPYING.LIB file in the top-level directory.
14 * QObject Reference Counts Terminology
15 * ------------------------------------
17 * - Returning references: A function that returns an object may
18 * return it as either a weak or a strong reference. If the reference
19 * is strong, you are responsible for calling QDECREF() on the reference
22 * If the reference is weak, the owner of the reference may free it at
23 * any time in the future. Before storing the reference anywhere, you
24 * should call QINCREF() to make the reference strong.
26 * - Transferring ownership: when you transfer ownership of a reference
27 * by calling a function, you are no longer responsible for calling
28 * QDECREF() when the reference is no longer needed. In other words,
29 * when the function returns you must behave as if the reference to the
30 * passed object was weak.
39 QTYPE_NONE, /* sentinel value, no QObject has this type code */
53 typedef struct QType {
55 void (*destroy)(struct QObject *);
58 typedef struct QObject {
63 /* Objects definitions must include this */
64 #define QObject_HEAD \
67 /* Get the 'base' part of an object */
68 #define QOBJECT(obj) (&(obj)->base)
70 /* High-level interface for qobject_incref() */
71 #define QINCREF(obj) \
72 qobject_incref(QOBJECT(obj))
74 /* High-level interface for qobject_decref() */
75 #define QDECREF(obj) \
76 qobject_decref(obj ? QOBJECT(obj) : NULL)
78 /* Initialize an object to default values */
79 #define QOBJECT_INIT(obj, qtype_type) \
80 obj->base.refcnt = 1; \
81 obj->base.type = qtype_type
84 * qobject_incref(): Increment QObject's reference count
86 static inline void qobject_incref(QObject *obj)
93 * qobject_decref(): Decrement QObject's reference count, deallocate
94 * when it reaches zero
96 static inline void qobject_decref(QObject *obj)
98 if (obj && --obj->refcnt == 0) {
99 assert(obj->type != NULL);
100 assert(obj->type->destroy != NULL);
101 obj->type->destroy(obj);
106 * qobject_type(): Return the QObject's type
108 static inline qtype_code qobject_type(const QObject *obj)
110 assert(obj->type != NULL);
111 return obj->type->code;
114 extern QObject qnull_;
116 static inline QObject *qnull(void)
118 qobject_incref(&qnull_);
122 #endif /* QOBJECT_H */