blob: c19a459391b18b684feec10b88e04c0559aa0ca6 [file] [log] [blame]
Michael Rothd5f3c292011-07-19 14:50:35 -05001/*
2 * Dealloc Visitor
3 *
Eric Blake08f95412016-01-29 06:48:59 -07004 * Copyright (C) 2012-2016 Red Hat, Inc.
Michael Rothd5f3c292011-07-19 14:50:35 -05005 * Copyright IBM, Corp. 2011
6 *
7 * Authors:
8 * Michael Roth <mdroth@linux.vnet.ibm.com>
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
Peter Maydellcbf21152016-01-29 17:49:57 +000015#include "qemu/osdep.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010016#include "qapi/dealloc-visitor.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010017#include "qemu/queue.h"
Michael Rothd5f3c292011-07-19 14:50:35 -050018#include "qemu-common.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010019#include "qapi/qmp/types.h"
20#include "qapi/visitor-impl.h"
Michael Rothd5f3c292011-07-19 14:50:35 -050021
22typedef struct StackEntry
23{
24 void *value;
Michael Roth0b9d8542011-09-19 19:03:10 -050025 bool is_list_head;
Michael Rothd5f3c292011-07-19 14:50:35 -050026 QTAILQ_ENTRY(StackEntry) node;
27} StackEntry;
28
29struct QapiDeallocVisitor
30{
31 Visitor visitor;
32 QTAILQ_HEAD(, StackEntry) stack;
33};
34
35static QapiDeallocVisitor *to_qov(Visitor *v)
36{
37 return container_of(v, QapiDeallocVisitor, visitor);
38}
39
40static void qapi_dealloc_push(QapiDeallocVisitor *qov, void *value)
41{
Anthony Liguori7267c092011-08-20 22:09:37 -050042 StackEntry *e = g_malloc0(sizeof(*e));
Michael Rothd5f3c292011-07-19 14:50:35 -050043
44 e->value = value;
Michael Roth0b9d8542011-09-19 19:03:10 -050045
46 /* see if we're just pushing a list head tracker */
47 if (value == NULL) {
48 e->is_list_head = true;
49 }
Michael Rothd5f3c292011-07-19 14:50:35 -050050 QTAILQ_INSERT_HEAD(&qov->stack, e, node);
51}
52
53static 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;
Anthony Liguori7267c092011-08-20 22:09:37 -050059 g_free(e);
Michael Rothd5f3c292011-07-19 14:50:35 -050060 return value;
61}
62
Eric Blake0b2a0d62016-01-29 06:48:56 -070063static void qapi_dealloc_start_struct(Visitor *v, const char *name, void **obj,
Eric Blake337283d2016-01-29 06:48:57 -070064 size_t unused, Error **errp)
Michael Rothd5f3c292011-07-19 14:50:35 -050065{
66 QapiDeallocVisitor *qov = to_qov(v);
67 qapi_dealloc_push(qov, obj);
68}
69
70static 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) {
Anthony Liguori7267c092011-08-20 22:09:37 -050075 g_free(*obj);
Michael Rothd5f3c292011-07-19 14:50:35 -050076 }
77}
78
Eric Blakedbf11922016-02-17 23:48:29 -070079static void qapi_dealloc_start_alternate(Visitor *v, const char *name,
80 GenericAlternate **obj, size_t size,
81 bool promote_int, Error **errp)
Wenchao Xia3dce9ca2013-11-06 02:35:50 +080082{
83 QapiDeallocVisitor *qov = to_qov(v);
84 qapi_dealloc_push(qov, obj);
85}
86
Eric Blakedbf11922016-02-17 23:48:29 -070087static void qapi_dealloc_end_alternate(Visitor *v)
Wenchao Xia3dce9ca2013-11-06 02:35:50 +080088{
89 QapiDeallocVisitor *qov = to_qov(v);
90 void **obj = qapi_dealloc_pop(qov);
91 if (obj) {
92 g_free(*obj);
93 }
94}
95
Michael Rothd5f3c292011-07-19 14:50:35 -050096static void qapi_dealloc_start_list(Visitor *v, const char *name, Error **errp)
97{
Michael Roth5666dd12011-09-15 14:39:52 -050098 QapiDeallocVisitor *qov = to_qov(v);
Michael Roth0b9d8542011-09-19 19:03:10 -050099 qapi_dealloc_push(qov, NULL);
Michael Rothd5f3c292011-07-19 14:50:35 -0500100}
101
Eric Blakee65d89b2016-02-17 23:48:23 -0700102static GenericList *qapi_dealloc_next_list(Visitor *v, GenericList **listp,
103 size_t size)
Michael Rothd5f3c292011-07-19 14:50:35 -0500104{
Michael Roth5666dd12011-09-15 14:39:52 -0500105 GenericList *list = *listp;
106 QapiDeallocVisitor *qov = to_qov(v);
Michael Roth0b9d8542011-09-19 19:03:10 -0500107 StackEntry *e = QTAILQ_FIRST(&qov->stack);
Michael Roth5666dd12011-09-15 14:39:52 -0500108
Michael Roth0b9d8542011-09-19 19:03:10 -0500109 if (e && e->is_list_head) {
110 e->is_list_head = false;
111 return list;
Michael Roth5666dd12011-09-15 14:39:52 -0500112 }
113
Michael Roth0b9d8542011-09-19 19:03:10 -0500114 if (list) {
115 list = list->next;
116 g_free(*listp);
117 return list;
118 }
119
120 return NULL;
Michael Rothd5f3c292011-07-19 14:50:35 -0500121}
122
Eric Blake08f95412016-01-29 06:48:59 -0700123static void qapi_dealloc_end_list(Visitor *v)
Michael Rothd5f3c292011-07-19 14:50:35 -0500124{
Michael Roth0b9d8542011-09-19 19:03:10 -0500125 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 */
Michael Rothd5f3c292011-07-19 14:50:35 -0500128}
129
Eric Blake0b2a0d62016-01-29 06:48:56 -0700130static void qapi_dealloc_type_str(Visitor *v, const char *name, char **obj,
Michael Rothd5f3c292011-07-19 14:50:35 -0500131 Error **errp)
132{
Peter Lievenb690d672014-05-08 18:03:15 +0200133 if (obj) {
134 g_free(*obj);
135 }
Michael Rothd5f3c292011-07-19 14:50:35 -0500136}
137
Eric Blake0b2a0d62016-01-29 06:48:56 -0700138static void qapi_dealloc_type_int64(Visitor *v, const char *name, int64_t *obj,
Eric Blake4c403142016-01-29 06:48:49 -0700139 Error **errp)
Michael Rothd5f3c292011-07-19 14:50:35 -0500140{
141}
142
Eric Blake0b2a0d62016-01-29 06:48:56 -0700143static void qapi_dealloc_type_uint64(Visitor *v, const char *name,
144 uint64_t *obj, Error **errp)
Eric Blakef755dea2016-01-29 06:48:50 -0700145{
146}
147
Eric Blake0b2a0d62016-01-29 06:48:56 -0700148static void qapi_dealloc_type_bool(Visitor *v, const char *name, bool *obj,
Michael Rothd5f3c292011-07-19 14:50:35 -0500149 Error **errp)
150{
151}
152
Eric Blake0b2a0d62016-01-29 06:48:56 -0700153static void qapi_dealloc_type_number(Visitor *v, const char *name, double *obj,
Michael Rothd5f3c292011-07-19 14:50:35 -0500154 Error **errp)
155{
156}
157
Eric Blake0b2a0d62016-01-29 06:48:56 -0700158static void qapi_dealloc_type_anything(Visitor *v, const char *name,
159 QObject **obj, Error **errp)
Markus Armbruster28770e02015-09-16 13:06:24 +0200160{
161 if (obj) {
162 qobject_decref(*obj);
163 }
164}
165
Michael Rothd5f3c292011-07-19 14:50:35 -0500166Visitor *qapi_dealloc_get_visitor(QapiDeallocVisitor *v)
167{
168 return &v->visitor;
169}
170
171void qapi_dealloc_visitor_cleanup(QapiDeallocVisitor *v)
172{
Anthony Liguori7267c092011-08-20 22:09:37 -0500173 g_free(v);
Michael Rothd5f3c292011-07-19 14:50:35 -0500174}
175
176QapiDeallocVisitor *qapi_dealloc_visitor_new(void)
177{
178 QapiDeallocVisitor *v;
179
Anthony Liguori7267c092011-08-20 22:09:37 -0500180 v = g_malloc0(sizeof(*v));
Michael Rothd5f3c292011-07-19 14:50:35 -0500181
Eric Blake983f52d2016-04-28 15:45:09 -0600182 v->visitor.type = VISITOR_DEALLOC;
Michael Rothd5f3c292011-07-19 14:50:35 -0500183 v->visitor.start_struct = qapi_dealloc_start_struct;
184 v->visitor.end_struct = qapi_dealloc_end_struct;
Eric Blakedbf11922016-02-17 23:48:29 -0700185 v->visitor.start_alternate = qapi_dealloc_start_alternate;
186 v->visitor.end_alternate = qapi_dealloc_end_alternate;
Michael Rothd5f3c292011-07-19 14:50:35 -0500187 v->visitor.start_list = qapi_dealloc_start_list;
188 v->visitor.next_list = qapi_dealloc_next_list;
189 v->visitor.end_list = qapi_dealloc_end_list;
Eric Blake4c403142016-01-29 06:48:49 -0700190 v->visitor.type_int64 = qapi_dealloc_type_int64;
Eric Blakef755dea2016-01-29 06:48:50 -0700191 v->visitor.type_uint64 = qapi_dealloc_type_uint64;
Michael Rothd5f3c292011-07-19 14:50:35 -0500192 v->visitor.type_bool = qapi_dealloc_type_bool;
193 v->visitor.type_str = qapi_dealloc_type_str;
194 v->visitor.type_number = qapi_dealloc_type_number;
Markus Armbruster28770e02015-09-16 13:06:24 +0200195 v->visitor.type_any = qapi_dealloc_type_anything;
Michael Rothd5f3c292011-07-19 14:50:35 -0500196
197 QTAILQ_INIT(&v->stack);
198
199 return v;
200}