2009-08-28 22:27:04 +04:00
|
|
|
/*
|
|
|
|
* QEMU Object Model.
|
|
|
|
*
|
|
|
|
* Based on ideas by Avi Kivity <avi@redhat.com>
|
|
|
|
*
|
2015-04-30 00:35:05 +03:00
|
|
|
* Copyright (C) 2009, 2015 Red Hat Inc.
|
2009-08-28 22:27:04 +04:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Luiz Capitulino <lcapitulino@redhat.com>
|
|
|
|
*
|
2010-05-12 23:34:42 +04:00
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
2009-08-28 22:27:04 +04:00
|
|
|
*
|
|
|
|
* QObject Reference Counts Terminology
|
|
|
|
* ------------------------------------
|
|
|
|
*
|
|
|
|
* - Returning references: A function that returns an object may
|
|
|
|
* return it as either a weak or a strong reference. If the reference
|
|
|
|
* is strong, you are responsible for calling QDECREF() on the reference
|
|
|
|
* when you are done.
|
|
|
|
*
|
|
|
|
* If the reference is weak, the owner of the reference may free it at
|
|
|
|
* any time in the future. Before storing the reference anywhere, you
|
|
|
|
* should call QINCREF() to make the reference strong.
|
|
|
|
*
|
|
|
|
* - Transferring ownership: when you transfer ownership of a reference
|
|
|
|
* by calling a function, you are no longer responsible for calling
|
|
|
|
* QDECREF() when the reference is no longer needed. In other words,
|
|
|
|
* when the function returns you must behave as if the reference to the
|
|
|
|
* passed object was weak.
|
|
|
|
*/
|
|
|
|
#ifndef QOBJECT_H
|
|
|
|
#define QOBJECT_H
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
typedef enum {
|
2015-04-30 00:35:04 +03:00
|
|
|
QTYPE_NONE, /* sentinel value, no QObject has this type code */
|
2015-04-30 00:35:05 +03:00
|
|
|
QTYPE_QNULL,
|
2009-08-28 22:27:05 +04:00
|
|
|
QTYPE_QINT,
|
2009-08-28 22:27:06 +04:00
|
|
|
QTYPE_QSTRING,
|
2009-08-28 22:27:07 +04:00
|
|
|
QTYPE_QDICT,
|
2009-10-07 20:41:48 +04:00
|
|
|
QTYPE_QLIST,
|
2009-11-11 19:36:08 +03:00
|
|
|
QTYPE_QFLOAT,
|
2009-11-11 19:37:39 +03:00
|
|
|
QTYPE_QBOOL,
|
2013-07-08 18:14:21 +04:00
|
|
|
QTYPE_MAX,
|
2015-12-02 08:20:46 +03:00
|
|
|
} QType;
|
2009-08-28 22:27:04 +04:00
|
|
|
|
|
|
|
typedef struct QObject {
|
2015-12-02 08:20:46 +03:00
|
|
|
QType type;
|
2009-08-28 22:27:04 +04:00
|
|
|
size_t refcnt;
|
|
|
|
} QObject;
|
|
|
|
|
|
|
|
/* Get the 'base' part of an object */
|
2009-11-11 19:50:36 +03:00
|
|
|
#define QOBJECT(obj) (&(obj)->base)
|
2009-08-28 22:27:04 +04:00
|
|
|
|
|
|
|
/* High-level interface for qobject_incref() */
|
|
|
|
#define QINCREF(obj) \
|
|
|
|
qobject_incref(QOBJECT(obj))
|
|
|
|
|
|
|
|
/* High-level interface for qobject_decref() */
|
|
|
|
#define QDECREF(obj) \
|
2012-09-03 23:19:11 +04:00
|
|
|
qobject_decref(obj ? QOBJECT(obj) : NULL)
|
2009-08-28 22:27:04 +04:00
|
|
|
|
|
|
|
/* Initialize an object to default values */
|
2015-12-02 08:20:46 +03:00
|
|
|
static inline void qobject_init(QObject *obj, QType type)
|
2015-12-02 08:20:45 +03:00
|
|
|
{
|
|
|
|
assert(QTYPE_NONE < type && type < QTYPE_MAX);
|
|
|
|
obj->refcnt = 1;
|
|
|
|
obj->type = type;
|
|
|
|
}
|
2009-08-28 22:27:04 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* qobject_incref(): Increment QObject's reference count
|
|
|
|
*/
|
|
|
|
static inline void qobject_incref(QObject *obj)
|
|
|
|
{
|
2009-10-07 20:41:47 +04:00
|
|
|
if (obj)
|
|
|
|
obj->refcnt++;
|
2009-08-28 22:27:04 +04:00
|
|
|
}
|
|
|
|
|
2015-12-02 08:20:45 +03:00
|
|
|
/**
|
|
|
|
* qobject_destroy(): Free resources used by the object
|
|
|
|
*/
|
|
|
|
void qobject_destroy(QObject *obj);
|
|
|
|
|
2009-08-28 22:27:04 +04:00
|
|
|
/**
|
|
|
|
* qobject_decref(): Decrement QObject's reference count, deallocate
|
|
|
|
* when it reaches zero
|
|
|
|
*/
|
|
|
|
static inline void qobject_decref(QObject *obj)
|
|
|
|
{
|
2015-11-06 09:35:27 +03:00
|
|
|
assert(!obj || obj->refcnt);
|
2009-10-07 20:41:47 +04:00
|
|
|
if (obj && --obj->refcnt == 0) {
|
2015-12-02 08:20:45 +03:00
|
|
|
qobject_destroy(obj);
|
2009-08-28 22:27:04 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* qobject_type(): Return the QObject's type
|
|
|
|
*/
|
2015-12-02 08:20:46 +03:00
|
|
|
static inline QType qobject_type(const QObject *obj)
|
2009-08-28 22:27:04 +04:00
|
|
|
{
|
2015-12-02 08:20:45 +03:00
|
|
|
assert(QTYPE_NONE < obj->type && obj->type < QTYPE_MAX);
|
|
|
|
return obj->type;
|
2009-08-28 22:27:04 +04:00
|
|
|
}
|
|
|
|
|
2015-04-30 00:35:05 +03:00
|
|
|
extern QObject qnull_;
|
|
|
|
|
|
|
|
static inline QObject *qnull(void)
|
|
|
|
{
|
|
|
|
qobject_incref(&qnull_);
|
|
|
|
return &qnull_;
|
|
|
|
}
|
|
|
|
|
2009-08-28 22:27:04 +04:00
|
|
|
#endif /* QOBJECT_H */
|