qobject.h 2.9 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,
L
Luiz Capitulino 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
} qtype_code;

struct QObject;

typedef struct QType {
    qtype_code code;
    void (*destroy)(struct QObject *);
} QType;

typedef struct QObject {
    const QType *type;
    size_t refcnt;
} QObject;

/* Get the 'base' part of an object */
63
#define QOBJECT(obj) (&(obj)->base)
L
Luiz Capitulino 已提交
64 65 66 67 68 69 70

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

/* High-level interface for qobject_decref() */
#define QDECREF(obj)              \
71
    qobject_decref(obj ? QOBJECT(obj) : NULL)
L
Luiz Capitulino 已提交
72 73 74 75 76 77 78 79 80 81 82

/* Initialize an object to default values */
#define QOBJECT_INIT(obj, qtype_type)   \
    obj->base.refcnt = 1;               \
    obj->base.type   = qtype_type

/**
 * qobject_incref(): Increment QObject's reference count
 */
static inline void qobject_incref(QObject *obj)
{
L
Luiz Capitulino 已提交
83 84
    if (obj)
        obj->refcnt++;
L
Luiz Capitulino 已提交
85 86 87 88 89 90 91 92
}

/**
 * qobject_decref(): Decrement QObject's reference count, deallocate
 * when it reaches zero
 */
static inline void qobject_decref(QObject *obj)
{
L
Luiz Capitulino 已提交
93
    if (obj && --obj->refcnt == 0) {
L
Luiz Capitulino 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
        assert(obj->type != NULL);
        assert(obj->type->destroy != NULL);
        obj->type->destroy(obj);
    }
}

/**
 * qobject_type(): Return the QObject's type
 */
static inline qtype_code qobject_type(const QObject *obj)
{
    assert(obj->type != NULL);
    return obj->type->code;
}

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 */