qobject.h 2.8 KB
Newer Older
L
Luiz Capitulino 已提交
1 2 3 4 5
/*
 * QEMU Object Model.
 *
 * Based on ideas by Avi Kivity <avi@redhat.com>
 *
6
 * Copyright (C) 2009, 2015 Red Hat Inc.
L
Luiz Capitulino 已提交
7 8 9 10
 *
 * Authors:
 *  Luiz Capitulino <lcapitulino@redhat.com>
 *
L
Luiz Capitulino 已提交
11 12
 * 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.
L
Luiz Capitulino 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
 *
 * 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 {
39
    QTYPE_NONE,    /* sentinel value, no QObject has this type code */
40
    QTYPE_QNULL,
L
Luiz Capitulino 已提交
41
    QTYPE_QINT,
L
Luiz Capitulino 已提交
42
    QTYPE_QSTRING,
L
Luiz Capitulino 已提交
43
    QTYPE_QDICT,
L
Luiz Capitulino 已提交
44
    QTYPE_QLIST,
A
Anthony Liguori 已提交
45
    QTYPE_QFLOAT,
A
Anthony Liguori 已提交
46
    QTYPE_QBOOL,
K
Kevin Wolf 已提交
47
    QTYPE_MAX,
E
Eric Blake 已提交
48
} QType;
L
Luiz Capitulino 已提交
49 50

typedef struct QObject {
E
Eric Blake 已提交
51
    QType type;
L
Luiz Capitulino 已提交
52 53 54 55
    size_t refcnt;
} QObject;

/* Get the 'base' part of an object */
56
#define QOBJECT(obj) (&(obj)->base)
L
Luiz Capitulino 已提交
57 58 59 60 61 62 63

/* High-level interface for qobject_incref() */
#define QINCREF(obj)      \
    qobject_incref(QOBJECT(obj))

/* High-level interface for qobject_decref() */
#define QDECREF(obj)              \
64
    qobject_decref(obj ? QOBJECT(obj) : NULL)
L
Luiz Capitulino 已提交
65 66

/* Initialize an object to default values */
E
Eric Blake 已提交
67
static inline void qobject_init(QObject *obj, QType type)
E
Eric Blake 已提交
68 69 70 71 72
{
    assert(QTYPE_NONE < type && type < QTYPE_MAX);
    obj->refcnt = 1;
    obj->type = type;
}
L
Luiz Capitulino 已提交
73 74 75 76 77 78

/**
 * qobject_incref(): Increment QObject's reference count
 */
static inline void qobject_incref(QObject *obj)
{
L
Luiz Capitulino 已提交
79 80
    if (obj)
        obj->refcnt++;
L
Luiz Capitulino 已提交
81 82
}

E
Eric Blake 已提交
83 84 85 86 87
/**
 * qobject_destroy(): Free resources used by the object
 */
void qobject_destroy(QObject *obj);

L
Luiz Capitulino 已提交
88 89 90 91 92 93
/**
 * qobject_decref(): Decrement QObject's reference count, deallocate
 * when it reaches zero
 */
static inline void qobject_decref(QObject *obj)
{
94
    assert(!obj || obj->refcnt);
L
Luiz Capitulino 已提交
95
    if (obj && --obj->refcnt == 0) {
E
Eric Blake 已提交
96
        qobject_destroy(obj);
L
Luiz Capitulino 已提交
97 98 99 100 101 102
    }
}

/**
 * qobject_type(): Return the QObject's type
 */
E
Eric Blake 已提交
103
static inline QType qobject_type(const QObject *obj)
L
Luiz Capitulino 已提交
104
{
E
Eric Blake 已提交
105 106
    assert(QTYPE_NONE < obj->type && obj->type < QTYPE_MAX);
    return obj->type;
L
Luiz Capitulino 已提交
107 108
}

109 110 111 112 113 114 115 116
extern QObject qnull_;

static inline QObject *qnull(void)
{
    qobject_incref(&qnull_);
    return &qnull_;
}

L
Luiz Capitulino 已提交
117
#endif /* QOBJECT_H */