qobject: use a QObjectBase_ struct

By moving the base fields to a QObjectBase_, QObject can be a type
which also has a 'base' field. This allows writing a generic QOBJECT()
macro that will work with any QObject type, including QObject
itself. The container_of() macro ensures that the object to cast has a
QObjectBase_ base field, giving some type safety guarantees. QObject
must have no members but QObjectBase_ base, or else QOBJECT() breaks.

QObjectBase_ is not a typedef and uses a trailing underscore to make
it obvious it is not for normal use and to avoid potential abuse.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20180419150145.24795-3-marcandre.lureau@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
master
Marc-André Lureau 2018-04-19 17:01:42 +02:00 committed by Markus Armbruster
parent 7ee9edfdb1
commit 3d3eacaecc
9 changed files with 35 additions and 26 deletions

View File

@ -17,7 +17,7 @@
#include "qapi/qmp/qobject.h" #include "qapi/qmp/qobject.h"
struct QBool { struct QBool {
QObject base; struct QObjectBase_ base;
bool value; bool value;
}; };

View File

@ -25,7 +25,7 @@ typedef struct QDictEntry {
} QDictEntry; } QDictEntry;
struct QDict { struct QDict {
QObject base; struct QObjectBase_ base;
size_t size; size_t size;
QLIST_HEAD(,QDictEntry) table[QDICT_BUCKET_MAX]; QLIST_HEAD(,QDictEntry) table[QDICT_BUCKET_MAX];
}; };

View File

@ -22,7 +22,7 @@ typedef struct QListEntry {
} QListEntry; } QListEntry;
struct QList { struct QList {
QObject base; struct QObjectBase_ base;
QTAILQ_HEAD(,QListEntry) head; QTAILQ_HEAD(,QListEntry) head;
}; };

View File

@ -16,7 +16,7 @@
#include "qapi/qmp/qobject.h" #include "qapi/qmp/qobject.h"
struct QNull { struct QNull {
QObject base; struct QObjectBase_ base;
}; };
extern QNull qnull_; extern QNull qnull_;

View File

@ -45,7 +45,7 @@ typedef enum {
* convert under the hood. * convert under the hood.
*/ */
struct QNum { struct QNum {
QObject base; struct QObjectBase_ base;
QNumKind kind; QNumKind kind;
union { union {
int64_t i64; int64_t i64;

View File

@ -34,13 +34,21 @@
#include "qapi/qapi-builtin-types.h" #include "qapi/qapi-builtin-types.h"
struct QObject { /* Not for use outside include/qapi/qmp/ */
struct QObjectBase_ {
QType type; QType type;
size_t refcnt; size_t refcnt;
}; };
/* Get the 'base' part of an object */ /* this struct must have no other members than base */
#define QOBJECT(obj) (&(obj)->base) struct QObject {
struct QObjectBase_ base;
};
#define QOBJECT(obj) ({ \
typeof(obj) _obj = (obj); \
_obj ? container_of(&(_obj)->base, QObject, base) : NULL; \
})
/* High-level interface for qobject_incref() */ /* High-level interface for qobject_incref() */
#define QINCREF(obj) \ #define QINCREF(obj) \
@ -68,8 +76,8 @@ QEMU_BUILD_BUG_MSG(QTYPE__MAX != 7,
static inline void qobject_init(QObject *obj, QType type) static inline void qobject_init(QObject *obj, QType type)
{ {
assert(QTYPE_NONE < type && type < QTYPE__MAX); assert(QTYPE_NONE < type && type < QTYPE__MAX);
obj->refcnt = 1; obj->base.refcnt = 1;
obj->type = type; obj->base.type = type;
} }
/** /**
@ -77,8 +85,9 @@ static inline void qobject_init(QObject *obj, QType type)
*/ */
static inline void qobject_incref(QObject *obj) static inline void qobject_incref(QObject *obj)
{ {
if (obj) if (obj) {
obj->refcnt++; obj->base.refcnt++;
}
} }
/** /**
@ -101,8 +110,8 @@ void qobject_destroy(QObject *obj);
*/ */
static inline void qobject_decref(QObject *obj) static inline void qobject_decref(QObject *obj)
{ {
assert(!obj || obj->refcnt); assert(!obj || obj->base.refcnt);
if (obj && --obj->refcnt == 0) { if (obj && --obj->base.refcnt == 0) {
qobject_destroy(obj); qobject_destroy(obj);
} }
} }
@ -112,8 +121,8 @@ static inline void qobject_decref(QObject *obj)
*/ */
static inline QType qobject_type(const QObject *obj) static inline QType qobject_type(const QObject *obj)
{ {
assert(QTYPE_NONE < obj->type && obj->type < QTYPE__MAX); assert(QTYPE_NONE < obj->base.type && obj->base.type < QTYPE__MAX);
return obj->type; return obj->base.type;
} }
/** /**

View File

@ -16,7 +16,7 @@
#include "qapi/qmp/qobject.h" #include "qapi/qmp/qobject.h"
struct QString { struct QString {
QObject base; struct QObjectBase_ base;
char *string; char *string;
size_t length; size_t length;
size_t capacity; size_t capacity;

View File

@ -37,9 +37,9 @@ static void (*qdestroy[QTYPE__MAX])(QObject *) = {
void qobject_destroy(QObject *obj) void qobject_destroy(QObject *obj)
{ {
assert(!obj->refcnt); assert(!obj->base.refcnt);
assert(QTYPE_QNULL < obj->type && obj->type < QTYPE__MAX); assert(QTYPE_QNULL < obj->base.type && obj->base.type < QTYPE__MAX);
qdestroy[obj->type](obj); qdestroy[obj->base.type](obj);
} }
@ -62,11 +62,11 @@ bool qobject_is_equal(const QObject *x, const QObject *y)
return true; return true;
} }
if (!x || !y || x->type != y->type) { if (!x || !y || x->base.type != y->base.type) {
return false; return false;
} }
assert(QTYPE_NONE < x->type && x->type < QTYPE__MAX); assert(QTYPE_NONE < x->base.type && x->base.type < QTYPE__MAX);
return qis_equal[x->type](x, y); return qis_equal[x->base.type](x, y);
} }

View File

@ -570,11 +570,11 @@ static void qdict_join_test(void)
} }
/* Check the references */ /* Check the references */
g_assert(qdict_get(dict1, "foo")->refcnt == 1); g_assert(qdict_get(dict1, "foo")->base.refcnt == 1);
g_assert(qdict_get(dict1, "bar")->refcnt == 1); g_assert(qdict_get(dict1, "bar")->base.refcnt == 1);
if (!overwrite) { if (!overwrite) {
g_assert(qdict_get(dict2, "foo")->refcnt == 1); g_assert(qdict_get(dict2, "foo")->base.refcnt == 1);
} }
/* Clean up */ /* Clean up */