block: trickle down the fallback image creation function use to the block drivers
[qemu/ar7.git] / qapi / qapi-dealloc-visitor.c
blobd192724b13829b3a6d6037091764c480abcabe00
1 /*
2 * Dealloc Visitor
4 * Copyright (C) 2012-2016 Red Hat, Inc.
5 * Copyright IBM, Corp. 2011
7 * Authors:
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 "qapi/visitor-impl.h"
20 struct QapiDeallocVisitor
22 Visitor visitor;
25 static void qapi_dealloc_start_struct(Visitor *v, const char *name, void **obj,
26 size_t unused, Error **errp)
30 static void qapi_dealloc_end_struct(Visitor *v, void **obj)
32 if (obj) {
33 g_free(*obj);
37 static void qapi_dealloc_start_alternate(Visitor *v, const char *name,
38 GenericAlternate **obj, size_t size,
39 Error **errp)
43 static void qapi_dealloc_end_alternate(Visitor *v, void **obj)
45 if (obj) {
46 g_free(*obj);
50 static void qapi_dealloc_start_list(Visitor *v, const char *name,
51 GenericList **list, size_t size,
52 Error **errp)
56 static GenericList *qapi_dealloc_next_list(Visitor *v, GenericList *tail,
57 size_t size)
59 GenericList *next = tail->next;
60 g_free(tail);
61 return next;
64 static void qapi_dealloc_end_list(Visitor *v, void **obj)
68 static void qapi_dealloc_type_str(Visitor *v, const char *name, char **obj,
69 Error **errp)
71 if (obj) {
72 g_free(*obj);
76 static void qapi_dealloc_type_int64(Visitor *v, const char *name, int64_t *obj,
77 Error **errp)
81 static void qapi_dealloc_type_uint64(Visitor *v, const char *name,
82 uint64_t *obj, Error **errp)
86 static void qapi_dealloc_type_bool(Visitor *v, const char *name, bool *obj,
87 Error **errp)
91 static void qapi_dealloc_type_number(Visitor *v, const char *name, double *obj,
92 Error **errp)
96 static void qapi_dealloc_type_anything(Visitor *v, const char *name,
97 QObject **obj, Error **errp)
99 if (obj) {
100 qobject_unref(*obj);
104 static void qapi_dealloc_type_null(Visitor *v, const char *name,
105 QNull **obj, Error **errp)
107 if (obj) {
108 qobject_unref(*obj);
112 static void qapi_dealloc_free(Visitor *v)
114 g_free(container_of(v, QapiDeallocVisitor, visitor));
117 Visitor *qapi_dealloc_visitor_new(void)
119 QapiDeallocVisitor *v;
121 v = g_malloc0(sizeof(*v));
123 v->visitor.type = VISITOR_DEALLOC;
124 v->visitor.start_struct = qapi_dealloc_start_struct;
125 v->visitor.end_struct = qapi_dealloc_end_struct;
126 v->visitor.start_alternate = qapi_dealloc_start_alternate;
127 v->visitor.end_alternate = qapi_dealloc_end_alternate;
128 v->visitor.start_list = qapi_dealloc_start_list;
129 v->visitor.next_list = qapi_dealloc_next_list;
130 v->visitor.end_list = qapi_dealloc_end_list;
131 v->visitor.type_int64 = qapi_dealloc_type_int64;
132 v->visitor.type_uint64 = qapi_dealloc_type_uint64;
133 v->visitor.type_bool = qapi_dealloc_type_bool;
134 v->visitor.type_str = qapi_dealloc_type_str;
135 v->visitor.type_number = qapi_dealloc_type_number;
136 v->visitor.type_any = qapi_dealloc_type_anything;
137 v->visitor.type_null = qapi_dealloc_type_null;
138 v->visitor.free = qapi_dealloc_free;
140 return &v->visitor;