4 * Copyright (C) 2012-2016 Red Hat, Inc.
5 * Copyright IBM, Corp. 2011
8 * Michael Roth <mdroth@linux.vnet.ibm.com>
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.
15 #include "qemu/osdep.h"
16 #include "qapi/dealloc-visitor.h"
17 #include "qapi/qmp/qnull.h"
18 #include "qemu/queue.h"
19 #include "qemu-common.h"
20 #include "qapi/visitor-impl.h"
22 struct QapiDeallocVisitor
27 static void qapi_dealloc_start_struct(Visitor
*v
, const char *name
, void **obj
,
28 size_t unused
, Error
**errp
)
32 static void qapi_dealloc_end_struct(Visitor
*v
, void **obj
)
39 static void qapi_dealloc_start_alternate(Visitor
*v
, const char *name
,
40 GenericAlternate
**obj
, size_t size
,
45 static void qapi_dealloc_end_alternate(Visitor
*v
, void **obj
)
52 static void qapi_dealloc_start_list(Visitor
*v
, const char *name
,
53 GenericList
**list
, size_t size
,
58 static GenericList
*qapi_dealloc_next_list(Visitor
*v
, GenericList
*tail
,
61 GenericList
*next
= tail
->next
;
66 static void qapi_dealloc_end_list(Visitor
*v
, void **obj
)
70 static void qapi_dealloc_type_str(Visitor
*v
, const char *name
, char **obj
,
78 static void qapi_dealloc_type_int64(Visitor
*v
, const char *name
, int64_t *obj
,
83 static void qapi_dealloc_type_uint64(Visitor
*v
, const char *name
,
84 uint64_t *obj
, Error
**errp
)
88 static void qapi_dealloc_type_bool(Visitor
*v
, const char *name
, bool *obj
,
93 static void qapi_dealloc_type_number(Visitor
*v
, const char *name
, double *obj
,
98 static void qapi_dealloc_type_anything(Visitor
*v
, const char *name
,
99 QObject
**obj
, Error
**errp
)
102 qobject_decref(*obj
);
106 static void qapi_dealloc_type_null(Visitor
*v
, const char *name
,
107 QNull
**obj
, Error
**errp
)
114 static void qapi_dealloc_free(Visitor
*v
)
116 g_free(container_of(v
, QapiDeallocVisitor
, visitor
));
119 Visitor
*qapi_dealloc_visitor_new(void)
121 QapiDeallocVisitor
*v
;
123 v
= g_malloc0(sizeof(*v
));
125 v
->visitor
.type
= VISITOR_DEALLOC
;
126 v
->visitor
.start_struct
= qapi_dealloc_start_struct
;
127 v
->visitor
.end_struct
= qapi_dealloc_end_struct
;
128 v
->visitor
.start_alternate
= qapi_dealloc_start_alternate
;
129 v
->visitor
.end_alternate
= qapi_dealloc_end_alternate
;
130 v
->visitor
.start_list
= qapi_dealloc_start_list
;
131 v
->visitor
.next_list
= qapi_dealloc_next_list
;
132 v
->visitor
.end_list
= qapi_dealloc_end_list
;
133 v
->visitor
.type_int64
= qapi_dealloc_type_int64
;
134 v
->visitor
.type_uint64
= qapi_dealloc_type_uint64
;
135 v
->visitor
.type_bool
= qapi_dealloc_type_bool
;
136 v
->visitor
.type_str
= qapi_dealloc_type_str
;
137 v
->visitor
.type_number
= qapi_dealloc_type_number
;
138 v
->visitor
.type_any
= qapi_dealloc_type_anything
;
139 v
->visitor
.type_null
= qapi_dealloc_type_null
;
140 v
->visitor
.free
= qapi_dealloc_free
;