SH PCI Host: convert to realize()
[qemu/ar7.git] / qapi / qmp-input-visitor.c
blob932b5f3cedd48f581646f26e307c529f0dcf3e47
1 /*
2 * Input Visitor
4 * Copyright IBM, Corp. 2011
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
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.
14 #include "qapi/qmp-input-visitor.h"
15 #include "qapi/visitor-impl.h"
16 #include "qemu/queue.h"
17 #include "qemu-common.h"
18 #include "qapi/qmp/types.h"
19 #include "qapi/qmp/qerror.h"
21 #define QIV_STACK_SIZE 1024
23 typedef struct StackObject
25 QObject *obj;
26 const QListEntry *entry;
27 GHashTable *h;
28 } StackObject;
30 struct QmpInputVisitor
32 Visitor visitor;
33 StackObject stack[QIV_STACK_SIZE];
34 int nb_stack;
35 bool strict;
38 static QmpInputVisitor *to_qiv(Visitor *v)
40 return container_of(v, QmpInputVisitor, visitor);
43 static QObject *qmp_input_get_object(QmpInputVisitor *qiv,
44 const char *name,
45 bool consume)
47 QObject *qobj = qiv->stack[qiv->nb_stack - 1].obj;
49 if (qobj) {
50 if (name && qobject_type(qobj) == QTYPE_QDICT) {
51 if (qiv->stack[qiv->nb_stack - 1].h && consume) {
52 g_hash_table_remove(qiv->stack[qiv->nb_stack - 1].h, name);
54 return qdict_get(qobject_to_qdict(qobj), name);
55 } else if (qiv->stack[qiv->nb_stack - 1].entry) {
56 return qlist_entry_obj(qiv->stack[qiv->nb_stack - 1].entry);
60 return qobj;
63 static void qdict_add_key(const char *key, QObject *obj, void *opaque)
65 GHashTable *h = opaque;
66 g_hash_table_insert(h, (gpointer) key, NULL);
69 static void qmp_input_push(QmpInputVisitor *qiv, QObject *obj, Error **errp)
71 GHashTable *h;
73 if (qiv->nb_stack >= QIV_STACK_SIZE) {
74 error_setg(errp, "An internal buffer overran");
75 return;
78 qiv->stack[qiv->nb_stack].obj = obj;
79 qiv->stack[qiv->nb_stack].entry = NULL;
80 qiv->stack[qiv->nb_stack].h = NULL;
82 if (qiv->strict && qobject_type(obj) == QTYPE_QDICT) {
83 h = g_hash_table_new(g_str_hash, g_str_equal);
84 qdict_iter(qobject_to_qdict(obj), qdict_add_key, h);
85 qiv->stack[qiv->nb_stack].h = h;
88 qiv->nb_stack++;
91 /** Only for qmp_input_pop. */
92 static gboolean always_true(gpointer key, gpointer val, gpointer user_pkey)
94 *(const char **)user_pkey = (const char *)key;
95 return TRUE;
98 static void qmp_input_pop(QmpInputVisitor *qiv, Error **errp)
100 assert(qiv->nb_stack > 0);
102 if (qiv->strict) {
103 GHashTable * const top_ht = qiv->stack[qiv->nb_stack - 1].h;
104 if (top_ht) {
105 if (g_hash_table_size(top_ht)) {
106 const char *key;
107 g_hash_table_find(top_ht, always_true, &key);
108 error_setg(errp, QERR_QMP_EXTRA_MEMBER, key);
110 g_hash_table_unref(top_ht);
114 qiv->nb_stack--;
117 static void qmp_input_start_struct(Visitor *v, void **obj, const char *kind,
118 const char *name, size_t size, Error **errp)
120 QmpInputVisitor *qiv = to_qiv(v);
121 QObject *qobj = qmp_input_get_object(qiv, name, true);
122 Error *err = NULL;
124 if (!qobj || qobject_type(qobj) != QTYPE_QDICT) {
125 error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
126 "QDict");
127 return;
130 qmp_input_push(qiv, qobj, &err);
131 if (err) {
132 error_propagate(errp, err);
133 return;
136 if (obj) {
137 *obj = g_malloc0(size);
141 static void qmp_input_end_struct(Visitor *v, Error **errp)
143 QmpInputVisitor *qiv = to_qiv(v);
145 qmp_input_pop(qiv, errp);
148 static void qmp_input_start_implicit_struct(Visitor *v, void **obj,
149 size_t size, Error **errp)
151 if (obj) {
152 *obj = g_malloc0(size);
156 static void qmp_input_end_implicit_struct(Visitor *v, Error **errp)
160 static void qmp_input_start_list(Visitor *v, const char *name, Error **errp)
162 QmpInputVisitor *qiv = to_qiv(v);
163 QObject *qobj = qmp_input_get_object(qiv, name, true);
165 if (!qobj || qobject_type(qobj) != QTYPE_QLIST) {
166 error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
167 "list");
168 return;
171 qmp_input_push(qiv, qobj, errp);
174 static GenericList *qmp_input_next_list(Visitor *v, GenericList **list,
175 Error **errp)
177 QmpInputVisitor *qiv = to_qiv(v);
178 GenericList *entry;
179 StackObject *so = &qiv->stack[qiv->nb_stack - 1];
180 bool first;
182 if (so->entry == NULL) {
183 so->entry = qlist_first(qobject_to_qlist(so->obj));
184 first = true;
185 } else {
186 so->entry = qlist_next(so->entry);
187 first = false;
190 if (so->entry == NULL) {
191 return NULL;
194 entry = g_malloc0(sizeof(*entry));
195 if (first) {
196 *list = entry;
197 } else {
198 (*list)->next = entry;
201 return entry;
204 static void qmp_input_end_list(Visitor *v, Error **errp)
206 QmpInputVisitor *qiv = to_qiv(v);
208 qmp_input_pop(qiv, errp);
211 static void qmp_input_get_next_type(Visitor *v, QType *type, bool promote_int,
212 const char *name, Error **errp)
214 QmpInputVisitor *qiv = to_qiv(v);
215 QObject *qobj = qmp_input_get_object(qiv, name, false);
217 if (!qobj) {
218 error_setg(errp, QERR_MISSING_PARAMETER, name ? name : "null");
219 return;
221 *type = qobject_type(qobj);
222 if (promote_int && *type == QTYPE_QINT) {
223 *type = QTYPE_QFLOAT;
227 static void qmp_input_type_int(Visitor *v, int64_t *obj, const char *name,
228 Error **errp)
230 QmpInputVisitor *qiv = to_qiv(v);
231 QInt *qint = qobject_to_qint(qmp_input_get_object(qiv, name, true));
233 if (!qint) {
234 error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
235 "integer");
236 return;
239 *obj = qint_get_int(qint);
242 static void qmp_input_type_bool(Visitor *v, bool *obj, const char *name,
243 Error **errp)
245 QmpInputVisitor *qiv = to_qiv(v);
246 QBool *qbool = qobject_to_qbool(qmp_input_get_object(qiv, name, true));
248 if (!qbool) {
249 error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
250 "boolean");
251 return;
254 *obj = qbool_get_bool(qbool);
257 static void qmp_input_type_str(Visitor *v, char **obj, const char *name,
258 Error **errp)
260 QmpInputVisitor *qiv = to_qiv(v);
261 QString *qstr = qobject_to_qstring(qmp_input_get_object(qiv, name, true));
263 if (!qstr) {
264 error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
265 "string");
266 return;
269 *obj = g_strdup(qstring_get_str(qstr));
272 static void qmp_input_type_number(Visitor *v, double *obj, const char *name,
273 Error **errp)
275 QmpInputVisitor *qiv = to_qiv(v);
276 QObject *qobj = qmp_input_get_object(qiv, name, true);
277 QInt *qint;
278 QFloat *qfloat;
280 qint = qobject_to_qint(qobj);
281 if (qint) {
282 *obj = qint_get_int(qobject_to_qint(qobj));
283 return;
286 qfloat = qobject_to_qfloat(qobj);
287 if (qfloat) {
288 *obj = qfloat_get_double(qobject_to_qfloat(qobj));
289 return;
292 error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
293 "number");
296 static void qmp_input_type_any(Visitor *v, QObject **obj, const char *name,
297 Error **errp)
299 QmpInputVisitor *qiv = to_qiv(v);
300 QObject *qobj = qmp_input_get_object(qiv, name, true);
302 qobject_incref(qobj);
303 *obj = qobj;
306 static void qmp_input_optional(Visitor *v, bool *present, const char *name)
308 QmpInputVisitor *qiv = to_qiv(v);
309 QObject *qobj = qmp_input_get_object(qiv, name, true);
311 if (!qobj) {
312 *present = false;
313 return;
316 *present = true;
319 Visitor *qmp_input_get_visitor(QmpInputVisitor *v)
321 return &v->visitor;
324 void qmp_input_visitor_cleanup(QmpInputVisitor *v)
326 qobject_decref(v->stack[0].obj);
327 g_free(v);
330 QmpInputVisitor *qmp_input_visitor_new(QObject *obj)
332 QmpInputVisitor *v;
334 v = g_malloc0(sizeof(*v));
336 v->visitor.start_struct = qmp_input_start_struct;
337 v->visitor.end_struct = qmp_input_end_struct;
338 v->visitor.start_implicit_struct = qmp_input_start_implicit_struct;
339 v->visitor.end_implicit_struct = qmp_input_end_implicit_struct;
340 v->visitor.start_list = qmp_input_start_list;
341 v->visitor.next_list = qmp_input_next_list;
342 v->visitor.end_list = qmp_input_end_list;
343 v->visitor.type_enum = input_type_enum;
344 v->visitor.type_int = qmp_input_type_int;
345 v->visitor.type_bool = qmp_input_type_bool;
346 v->visitor.type_str = qmp_input_type_str;
347 v->visitor.type_number = qmp_input_type_number;
348 v->visitor.type_any = qmp_input_type_any;
349 v->visitor.optional = qmp_input_optional;
350 v->visitor.get_next_type = qmp_input_get_next_type;
352 qmp_input_push(v, obj, NULL);
353 qobject_incref(obj);
355 return v;
358 QmpInputVisitor *qmp_input_visitor_new_strict(QObject *obj)
360 QmpInputVisitor *v;
362 v = qmp_input_visitor_new(obj);
363 v->strict = true;
365 return v;