blob: 1334de33cc690057ffc80f766f604dd3f4e8e98c [file] [log] [blame]
Michael Rothd5f3c292011-07-19 14:50:35 -05001/*
2 * Dealloc Visitor
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Michael Roth <mdroth@linux.vnet.ibm.com>
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
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010014#include "qapi/dealloc-visitor.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010015#include "qemu/queue.h"
Michael Rothd5f3c292011-07-19 14:50:35 -050016#include "qemu-common.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010017#include "qapi/qmp/types.h"
18#include "qapi/visitor-impl.h"
Michael Rothd5f3c292011-07-19 14:50:35 -050019
20typedef struct StackEntry
21{
22 void *value;
Michael Roth0b9d8542011-09-19 19:03:10 -050023 bool is_list_head;
Michael Rothd5f3c292011-07-19 14:50:35 -050024 QTAILQ_ENTRY(StackEntry) node;
25} StackEntry;
26
27struct QapiDeallocVisitor
28{
29 Visitor visitor;
30 QTAILQ_HEAD(, StackEntry) stack;
Michael Roth5666dd12011-09-15 14:39:52 -050031 bool is_list_head;
Michael Rothd5f3c292011-07-19 14:50:35 -050032};
33
34static QapiDeallocVisitor *to_qov(Visitor *v)
35{
36 return container_of(v, QapiDeallocVisitor, visitor);
37}
38
39static void qapi_dealloc_push(QapiDeallocVisitor *qov, void *value)
40{
Anthony Liguori7267c092011-08-20 22:09:37 -050041 StackEntry *e = g_malloc0(sizeof(*e));
Michael Rothd5f3c292011-07-19 14:50:35 -050042
43 e->value = value;
Michael Roth0b9d8542011-09-19 19:03:10 -050044
45 /* see if we're just pushing a list head tracker */
46 if (value == NULL) {
47 e->is_list_head = true;
48 }
Michael Rothd5f3c292011-07-19 14:50:35 -050049 QTAILQ_INSERT_HEAD(&qov->stack, e, node);
50}
51
52static void *qapi_dealloc_pop(QapiDeallocVisitor *qov)
53{
54 StackEntry *e = QTAILQ_FIRST(&qov->stack);
55 QObject *value;
56 QTAILQ_REMOVE(&qov->stack, e, node);
57 value = e->value;
Anthony Liguori7267c092011-08-20 22:09:37 -050058 g_free(e);
Michael Rothd5f3c292011-07-19 14:50:35 -050059 return value;
60}
61
62static void qapi_dealloc_start_struct(Visitor *v, void **obj, const char *kind,
63 const char *name, size_t unused,
64 Error **errp)
65{
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
79static void qapi_dealloc_start_list(Visitor *v, const char *name, Error **errp)
80{
Michael Roth5666dd12011-09-15 14:39:52 -050081 QapiDeallocVisitor *qov = to_qov(v);
Michael Roth0b9d8542011-09-19 19:03:10 -050082 qapi_dealloc_push(qov, NULL);
Michael Rothd5f3c292011-07-19 14:50:35 -050083}
84
Michael Roth5666dd12011-09-15 14:39:52 -050085static GenericList *qapi_dealloc_next_list(Visitor *v, GenericList **listp,
Michael Rothd5f3c292011-07-19 14:50:35 -050086 Error **errp)
87{
Michael Roth5666dd12011-09-15 14:39:52 -050088 GenericList *list = *listp;
89 QapiDeallocVisitor *qov = to_qov(v);
Michael Roth0b9d8542011-09-19 19:03:10 -050090 StackEntry *e = QTAILQ_FIRST(&qov->stack);
Michael Roth5666dd12011-09-15 14:39:52 -050091
Michael Roth0b9d8542011-09-19 19:03:10 -050092 if (e && e->is_list_head) {
93 e->is_list_head = false;
94 return list;
Michael Roth5666dd12011-09-15 14:39:52 -050095 }
96
Michael Roth0b9d8542011-09-19 19:03:10 -050097 if (list) {
98 list = list->next;
99 g_free(*listp);
100 return list;
101 }
102
103 return NULL;
Michael Rothd5f3c292011-07-19 14:50:35 -0500104}
105
106static void qapi_dealloc_end_list(Visitor *v, Error **errp)
107{
Michael Roth0b9d8542011-09-19 19:03:10 -0500108 QapiDeallocVisitor *qov = to_qov(v);
109 void *obj = qapi_dealloc_pop(qov);
110 assert(obj == NULL); /* should've been list head tracker with no payload */
Michael Rothd5f3c292011-07-19 14:50:35 -0500111}
112
113static void qapi_dealloc_type_str(Visitor *v, char **obj, const char *name,
114 Error **errp)
115{
116 if (obj) {
Anthony Liguori7267c092011-08-20 22:09:37 -0500117 g_free(*obj);
Michael Rothd5f3c292011-07-19 14:50:35 -0500118 }
119}
120
121static void qapi_dealloc_type_int(Visitor *v, int64_t *obj, const char *name,
122 Error **errp)
123{
124}
125
126static void qapi_dealloc_type_bool(Visitor *v, bool *obj, const char *name,
127 Error **errp)
128{
129}
130
131static void qapi_dealloc_type_number(Visitor *v, double *obj, const char *name,
132 Error **errp)
133{
134}
135
Bruce Rogers1d162522012-11-27 13:11:25 -0700136static void qapi_dealloc_type_size(Visitor *v, uint64_t *obj, const char *name,
Stefan Hajnoczi0c26f2e2012-11-26 13:10:12 +0100137 Error **errp)
138{
139}
140
Michael Rothd5f3c292011-07-19 14:50:35 -0500141static void qapi_dealloc_type_enum(Visitor *v, int *obj, const char *strings[],
142 const char *kind, const char *name,
143 Error **errp)
144{
145}
146
147Visitor *qapi_dealloc_get_visitor(QapiDeallocVisitor *v)
148{
149 return &v->visitor;
150}
151
152void qapi_dealloc_visitor_cleanup(QapiDeallocVisitor *v)
153{
Anthony Liguori7267c092011-08-20 22:09:37 -0500154 g_free(v);
Michael Rothd5f3c292011-07-19 14:50:35 -0500155}
156
157QapiDeallocVisitor *qapi_dealloc_visitor_new(void)
158{
159 QapiDeallocVisitor *v;
160
Anthony Liguori7267c092011-08-20 22:09:37 -0500161 v = g_malloc0(sizeof(*v));
Michael Rothd5f3c292011-07-19 14:50:35 -0500162
163 v->visitor.start_struct = qapi_dealloc_start_struct;
164 v->visitor.end_struct = qapi_dealloc_end_struct;
165 v->visitor.start_list = qapi_dealloc_start_list;
166 v->visitor.next_list = qapi_dealloc_next_list;
167 v->visitor.end_list = qapi_dealloc_end_list;
168 v->visitor.type_enum = qapi_dealloc_type_enum;
169 v->visitor.type_int = qapi_dealloc_type_int;
170 v->visitor.type_bool = qapi_dealloc_type_bool;
171 v->visitor.type_str = qapi_dealloc_type_str;
172 v->visitor.type_number = qapi_dealloc_type_number;
Stefan Hajnoczi0c26f2e2012-11-26 13:10:12 +0100173 v->visitor.type_size = qapi_dealloc_type_size;
Michael Rothd5f3c292011-07-19 14:50:35 -0500174
175 QTAILQ_INIT(&v->stack);
176
177 return v;
178}