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