]>
Commit | Line | Data |
---|---|---|
d5f3c29c MR |
1 | /* |
2 | * Dealloc Visitor | |
3 | * | |
4 | * Copyright IBM, Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Michael Roth <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. | |
10 | * See the COPYING.LIB file in the top-level directory. | |
11 | * | |
12 | */ | |
13 | ||
cbf21151 | 14 | #include "qemu/osdep.h" |
7b1b5d19 | 15 | #include "qapi/dealloc-visitor.h" |
1de7afc9 | 16 | #include "qemu/queue.h" |
d5f3c29c | 17 | #include "qemu-common.h" |
7b1b5d19 PB |
18 | #include "qapi/qmp/types.h" |
19 | #include "qapi/visitor-impl.h" | |
d5f3c29c MR |
20 | |
21 | typedef struct StackEntry | |
22 | { | |
23 | void *value; | |
0b9d8542 | 24 | bool is_list_head; |
d5f3c29c MR |
25 | QTAILQ_ENTRY(StackEntry) node; |
26 | } StackEntry; | |
27 | ||
28 | struct QapiDeallocVisitor | |
29 | { | |
30 | Visitor visitor; | |
31 | QTAILQ_HEAD(, StackEntry) stack; | |
5666dd19 | 32 | bool is_list_head; |
d5f3c29c MR |
33 | }; |
34 | ||
35 | static QapiDeallocVisitor *to_qov(Visitor *v) | |
36 | { | |
37 | return container_of(v, QapiDeallocVisitor, visitor); | |
38 | } | |
39 | ||
40 | static void qapi_dealloc_push(QapiDeallocVisitor *qov, void *value) | |
41 | { | |
7267c094 | 42 | StackEntry *e = g_malloc0(sizeof(*e)); |
d5f3c29c MR |
43 | |
44 | e->value = value; | |
0b9d8542 MR |
45 | |
46 | /* see if we're just pushing a list head tracker */ | |
47 | if (value == NULL) { | |
48 | e->is_list_head = true; | |
49 | } | |
d5f3c29c MR |
50 | QTAILQ_INSERT_HEAD(&qov->stack, e, node); |
51 | } | |
52 | ||
53 | static void *qapi_dealloc_pop(QapiDeallocVisitor *qov) | |
54 | { | |
55 | StackEntry *e = QTAILQ_FIRST(&qov->stack); | |
56 | QObject *value; | |
57 | QTAILQ_REMOVE(&qov->stack, e, node); | |
58 | value = e->value; | |
7267c094 | 59 | g_free(e); |
d5f3c29c MR |
60 | return value; |
61 | } | |
62 | ||
63 | static void qapi_dealloc_start_struct(Visitor *v, void **obj, const char *kind, | |
64 | const char *name, size_t unused, | |
65 | Error **errp) | |
66 | { | |
67 | QapiDeallocVisitor *qov = to_qov(v); | |
68 | qapi_dealloc_push(qov, obj); | |
69 | } | |
70 | ||
71 | static void qapi_dealloc_end_struct(Visitor *v, Error **errp) | |
72 | { | |
73 | QapiDeallocVisitor *qov = to_qov(v); | |
74 | void **obj = qapi_dealloc_pop(qov); | |
75 | if (obj) { | |
7267c094 | 76 | g_free(*obj); |
d5f3c29c MR |
77 | } |
78 | } | |
79 | ||
3dce9cad WX |
80 | static void qapi_dealloc_start_implicit_struct(Visitor *v, |
81 | void **obj, | |
82 | size_t size, | |
83 | Error **errp) | |
84 | { | |
85 | QapiDeallocVisitor *qov = to_qov(v); | |
86 | qapi_dealloc_push(qov, obj); | |
87 | } | |
88 | ||
89 | static void qapi_dealloc_end_implicit_struct(Visitor *v, Error **errp) | |
90 | { | |
91 | QapiDeallocVisitor *qov = to_qov(v); | |
92 | void **obj = qapi_dealloc_pop(qov); | |
93 | if (obj) { | |
94 | g_free(*obj); | |
95 | } | |
96 | } | |
97 | ||
d5f3c29c MR |
98 | static void qapi_dealloc_start_list(Visitor *v, const char *name, Error **errp) |
99 | { | |
5666dd19 | 100 | QapiDeallocVisitor *qov = to_qov(v); |
0b9d8542 | 101 | qapi_dealloc_push(qov, NULL); |
d5f3c29c MR |
102 | } |
103 | ||
5666dd19 | 104 | static GenericList *qapi_dealloc_next_list(Visitor *v, GenericList **listp, |
d5f3c29c MR |
105 | Error **errp) |
106 | { | |
5666dd19 MR |
107 | GenericList *list = *listp; |
108 | QapiDeallocVisitor *qov = to_qov(v); | |
0b9d8542 | 109 | StackEntry *e = QTAILQ_FIRST(&qov->stack); |
5666dd19 | 110 | |
0b9d8542 MR |
111 | if (e && e->is_list_head) { |
112 | e->is_list_head = false; | |
113 | return list; | |
5666dd19 MR |
114 | } |
115 | ||
0b9d8542 MR |
116 | if (list) { |
117 | list = list->next; | |
118 | g_free(*listp); | |
119 | return list; | |
120 | } | |
121 | ||
122 | return NULL; | |
d5f3c29c MR |
123 | } |
124 | ||
125 | static void qapi_dealloc_end_list(Visitor *v, Error **errp) | |
126 | { | |
0b9d8542 MR |
127 | QapiDeallocVisitor *qov = to_qov(v); |
128 | void *obj = qapi_dealloc_pop(qov); | |
129 | assert(obj == NULL); /* should've been list head tracker with no payload */ | |
d5f3c29c MR |
130 | } |
131 | ||
132 | static void qapi_dealloc_type_str(Visitor *v, char **obj, const char *name, | |
133 | Error **errp) | |
134 | { | |
b690d679 PL |
135 | if (obj) { |
136 | g_free(*obj); | |
137 | } | |
d5f3c29c MR |
138 | } |
139 | ||
140 | static void qapi_dealloc_type_int(Visitor *v, int64_t *obj, const char *name, | |
141 | Error **errp) | |
142 | { | |
143 | } | |
144 | ||
145 | static void qapi_dealloc_type_bool(Visitor *v, bool *obj, const char *name, | |
146 | Error **errp) | |
147 | { | |
148 | } | |
149 | ||
150 | static void qapi_dealloc_type_number(Visitor *v, double *obj, const char *name, | |
151 | Error **errp) | |
152 | { | |
153 | } | |
154 | ||
28770e05 MA |
155 | static void qapi_dealloc_type_anything(Visitor *v, QObject **obj, |
156 | const char *name, Error **errp) | |
157 | { | |
158 | if (obj) { | |
159 | qobject_decref(*obj); | |
160 | } | |
161 | } | |
162 | ||
1d162526 | 163 | static void qapi_dealloc_type_size(Visitor *v, uint64_t *obj, const char *name, |
0c26f2ec SH |
164 | Error **errp) |
165 | { | |
166 | } | |
167 | ||
2e4450ff DB |
168 | static void qapi_dealloc_type_enum(Visitor *v, int *obj, |
169 | const char * const strings[], | |
d5f3c29c MR |
170 | const char *kind, const char *name, |
171 | Error **errp) | |
172 | { | |
173 | } | |
174 | ||
146db9f9 MR |
175 | /* If there's no data present, the dealloc visitor has nothing to free. |
176 | * Thus, indicate to visitor code that the subsequent union fields can | |
177 | * be skipped. This is not an error condition, since the cleanup of the | |
178 | * rest of an object can continue unhindered, so leave errp unset in | |
179 | * these cases. | |
180 | * | |
181 | * NOTE: In cases where we're attempting to deallocate an object that | |
182 | * may have missing fields, the field indicating the union type may | |
183 | * be missing. In such a case, it's possible we don't have enough | |
184 | * information to differentiate data_present == false from a case where | |
185 | * data *is* present but happens to be a scalar with a value of 0. | |
186 | * This is okay, since in the case of the dealloc visitor there's no | |
187 | * work that needs to done in either situation. | |
188 | * | |
189 | * The current inability in QAPI code to more thoroughly verify a union | |
190 | * type in such cases will likely need to be addressed if we wish to | |
191 | * implement this interface for other types of visitors in the future, | |
192 | * however. | |
193 | */ | |
194 | static bool qapi_dealloc_start_union(Visitor *v, bool data_present, | |
195 | Error **errp) | |
196 | { | |
197 | return data_present; | |
198 | } | |
199 | ||
d5f3c29c MR |
200 | Visitor *qapi_dealloc_get_visitor(QapiDeallocVisitor *v) |
201 | { | |
202 | return &v->visitor; | |
203 | } | |
204 | ||
205 | void qapi_dealloc_visitor_cleanup(QapiDeallocVisitor *v) | |
206 | { | |
7267c094 | 207 | g_free(v); |
d5f3c29c MR |
208 | } |
209 | ||
210 | QapiDeallocVisitor *qapi_dealloc_visitor_new(void) | |
211 | { | |
212 | QapiDeallocVisitor *v; | |
213 | ||
7267c094 | 214 | v = g_malloc0(sizeof(*v)); |
d5f3c29c MR |
215 | |
216 | v->visitor.start_struct = qapi_dealloc_start_struct; | |
217 | v->visitor.end_struct = qapi_dealloc_end_struct; | |
3dce9cad WX |
218 | v->visitor.start_implicit_struct = qapi_dealloc_start_implicit_struct; |
219 | v->visitor.end_implicit_struct = qapi_dealloc_end_implicit_struct; | |
d5f3c29c MR |
220 | v->visitor.start_list = qapi_dealloc_start_list; |
221 | v->visitor.next_list = qapi_dealloc_next_list; | |
222 | v->visitor.end_list = qapi_dealloc_end_list; | |
223 | v->visitor.type_enum = qapi_dealloc_type_enum; | |
224 | v->visitor.type_int = qapi_dealloc_type_int; | |
225 | v->visitor.type_bool = qapi_dealloc_type_bool; | |
226 | v->visitor.type_str = qapi_dealloc_type_str; | |
227 | v->visitor.type_number = qapi_dealloc_type_number; | |
28770e05 | 228 | v->visitor.type_any = qapi_dealloc_type_anything; |
0c26f2ec | 229 | v->visitor.type_size = qapi_dealloc_type_size; |
146db9f9 | 230 | v->visitor.start_union = qapi_dealloc_start_union; |
d5f3c29c MR |
231 | |
232 | QTAILQ_INIT(&v->stack); | |
233 | ||
234 | return v; | |
235 | } |