]> Git Repo - qemu.git/blob - qobject.h
Convert linux bootrom to external rom and fw_cfg
[qemu.git] / qobject.h
1 /*
2  * QEMU Object Model.
3  *
4  * Based on ideas by Avi Kivity <[email protected]>
5  *
6  * Copyright (C) 2009 Red Hat Inc.
7  *
8  * Authors:
9  *  Luiz Capitulino <[email protected]>
10  *
11  * This work is licensed under the terms of the GNU GPL, version 2.  See
12  * the COPYING file in the top-level directory.
13  *
14  * QObject Reference Counts Terminology
15  * ------------------------------------
16  *
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
20  *  when you are done.
21  *
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.
25  *
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.
31  */
32 #ifndef QOBJECT_H
33 #define QOBJECT_H
34
35 #include <stddef.h>
36 #include <assert.h>
37
38 typedef enum {
39     QTYPE_NONE,
40     QTYPE_QINT,
41     QTYPE_QSTRING,
42     QTYPE_QDICT,
43     QTYPE_QLIST,
44     QTYPE_QFLOAT,
45     QTYPE_QBOOL,
46 } qtype_code;
47
48 struct QObject;
49
50 typedef struct QType {
51     qtype_code code;
52     void (*destroy)(struct QObject *);
53 } QType;
54
55 typedef struct QObject {
56     const QType *type;
57     size_t refcnt;
58 } QObject;
59
60 /* Objects definitions must include this */
61 #define QObject_HEAD  \
62     QObject base
63
64 /* Get the 'base' part of an object */
65 #define QOBJECT(obj) (&(obj)->base)
66
67 /* High-level interface for qobject_incref() */
68 #define QINCREF(obj)      \
69     qobject_incref(QOBJECT(obj))
70
71 /* High-level interface for qobject_decref() */
72 #define QDECREF(obj)              \
73     qobject_decref(QOBJECT(obj))
74
75 /* Initialize an object to default values */
76 #define QOBJECT_INIT(obj, qtype_type)   \
77     obj->base.refcnt = 1;               \
78     obj->base.type   = qtype_type
79
80 /**
81  * qobject_incref(): Increment QObject's reference count
82  */
83 static inline void qobject_incref(QObject *obj)
84 {
85     if (obj)
86         obj->refcnt++;
87 }
88
89 /**
90  * qobject_decref(): Decrement QObject's reference count, deallocate
91  * when it reaches zero
92  */
93 static inline void qobject_decref(QObject *obj)
94 {
95     if (obj && --obj->refcnt == 0) {
96         assert(obj->type != NULL);
97         assert(obj->type->destroy != NULL);
98         obj->type->destroy(obj);
99     }
100 }
101
102 /**
103  * qobject_type(): Return the QObject's type
104  */
105 static inline qtype_code qobject_type(const QObject *obj)
106 {
107     assert(obj->type != NULL);
108     return obj->type->code;
109 }
110
111 #endif /* QOBJECT_H */
This page took 0.030006 seconds and 4 git commands to generate.