qobject-input-visitor.c 11.8 KB
Newer Older
M
Michael Roth 已提交
1 2 3
/*
 * Input Visitor
 *
4
 * Copyright (C) 2012-2016 Red Hat, Inc.
M
Michael Roth 已提交
5 6 7 8 9 10 11 12 13 14
 * Copyright IBM, Corp. 2011
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.com>
 *
 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
 * See the COPYING.LIB file in the top-level directory.
 *
 */

P
Peter Maydell 已提交
15
#include "qemu/osdep.h"
16
#include "qapi/error.h"
17
#include "qapi/qobject-input-visitor.h"
18
#include "qapi/visitor-impl.h"
19
#include "qemu/queue.h"
M
Michael Roth 已提交
20
#include "qemu-common.h"
21 22
#include "qapi/qmp/types.h"
#include "qapi/qmp/qerror.h"
M
Michael Roth 已提交
23 24 25 26 27

#define QIV_STACK_SIZE 1024

typedef struct StackObject
{
E
Eric Blake 已提交
28
    QObject *obj; /* Object being visited */
E
Eric Blake 已提交
29
    void *qapi; /* sanity check that caller uses same pointer */
E
Eric Blake 已提交
30 31 32

    GHashTable *h;           /* If obj is dict: unvisited keys */
    const QListEntry *entry; /* If obj is list: unvisited tail */
33 34

    QSLIST_ENTRY(StackObject) node;
M
Michael Roth 已提交
35 36
} StackObject;

37
struct QObjectInputVisitor
M
Michael Roth 已提交
38 39
{
    Visitor visitor;
E
Eric Blake 已提交
40

41 42 43 44 45
    /* Root of visit at visitor creation. */
    QObject *root;

    /* Stack of objects being visited (all entries will be either
     * QDict or QList). */
46
    QSLIST_HEAD(, StackObject) stack;
E
Eric Blake 已提交
47 48

    /* True to reject parse in visit_end_struct() if unvisited keys remain. */
49
    bool strict;
M
Michael Roth 已提交
50 51
};

52
static QObjectInputVisitor *to_qiv(Visitor *v)
M
Michael Roth 已提交
53
{
54
    return container_of(v, QObjectInputVisitor, visitor);
M
Michael Roth 已提交
55 56
}

57 58 59
static QObject *qobject_input_get_object(QObjectInputVisitor *qiv,
                                         const char *name,
                                         bool consume, Error **errp)
M
Michael Roth 已提交
60
{
61 62
    StackObject *tos;
    QObject *qobj;
63
    QObject *ret;
E
Eric Blake 已提交
64

65
    if (QSLIST_EMPTY(&qiv->stack)) {
66
        /* Starting at root, name is ignored. */
67
        assert(qiv->root);
68 69 70 71
        return qiv->root;
    }

    /* We are in a container; find the next element. */
72
    tos = QSLIST_FIRST(&qiv->stack);
73
    qobj = tos->obj;
E
Eric Blake 已提交
74 75
    assert(qobj);

76 77
    if (qobject_type(qobj) == QTYPE_QDICT) {
        assert(name);
78 79 80 81
        ret = qdict_get(qobject_to_qdict(qobj), name);
        if (tos->h && consume && ret) {
            bool removed = g_hash_table_remove(tos->h, name);
            assert(removed);
82
        }
83 84 85
        if (!ret) {
            error_setg(errp, QERR_MISSING_PARAMETER, name);
        }
86
    } else {
E
Eric Blake 已提交
87
        assert(qobject_type(qobj) == QTYPE_QLIST);
88 89
        assert(!name);
        ret = qlist_entry_obj(tos->entry);
90
        assert(ret);
91 92 93
        if (consume) {
            tos->entry = qlist_next(tos->entry);
        }
M
Michael Roth 已提交
94 95
    }

96
    return ret;
M
Michael Roth 已提交
97 98
}

99 100 101 102 103 104
static void qdict_add_key(const char *key, QObject *obj, void *opaque)
{
    GHashTable *h = opaque;
    g_hash_table_insert(h, (gpointer) key, NULL);
}

105 106 107
static const QListEntry *qobject_input_push(QObjectInputVisitor *qiv,
                                            QObject *obj, void *qapi,
                                            Error **errp)
M
Michael Roth 已提交
108
{
109
    GHashTable *h;
110
    StackObject *tos = g_new0(StackObject, 1);
M
Michael Roth 已提交
111

E
Eric Blake 已提交
112 113
    assert(obj);
    tos->obj = obj;
E
Eric Blake 已提交
114
    tos->qapi = qapi;
115 116 117 118

    if (qiv->strict && qobject_type(obj) == QTYPE_QDICT) {
        h = g_hash_table_new(g_str_hash, g_str_equal);
        qdict_iter(qobject_to_qdict(obj), qdict_add_key, h);
E
Eric Blake 已提交
119
        tos->h = h;
120 121
    } else if (qobject_type(obj) == QTYPE_QLIST) {
        tos->entry = qlist_first(qobject_to_qlist(obj));
122 123
    }

124
    QSLIST_INSERT_HEAD(&qiv->stack, tos, node);
125
    return tos->entry;
M
Michael Roth 已提交
126 127
}

128

129
static void qobject_input_check_struct(Visitor *v, Error **errp)
M
Michael Roth 已提交
130
{
131
    QObjectInputVisitor *qiv = to_qiv(v);
132
    StackObject *tos = QSLIST_FIRST(&qiv->stack);
133

134
    assert(tos && !tos->entry);
135
    if (qiv->strict) {
136
        GHashTable *const top_ht = tos->h;
137
        if (top_ht) {
138 139 140 141 142
            GHashTableIter iter;
            const char *key;

            g_hash_table_iter_init(&iter, top_ht);
            if (g_hash_table_iter_next(&iter, (void **)&key, NULL)) {
143
                error_setg(errp, "Parameter '%s' is unexpected", key);
144
            }
145 146 147 148
        }
    }
}

149
static void qobject_input_stack_object_free(StackObject *tos)
150
{
151 152 153
    if (tos->h) {
        g_hash_table_unref(tos->h);
    }
154

155 156
    g_free(tos);
}
157

158
static void qobject_input_pop(Visitor *v, void **obj)
159
{
160
    QObjectInputVisitor *qiv = to_qiv(v);
161
    StackObject *tos = QSLIST_FIRST(&qiv->stack);
162

163 164
    assert(tos && tos->qapi == obj);
    QSLIST_REMOVE_HEAD(&qiv->stack, node);
165
    qobject_input_stack_object_free(tos);
M
Michael Roth 已提交
166 167
}

168 169
static void qobject_input_start_struct(Visitor *v, const char *name, void **obj,
                                       size_t size, Error **errp)
M
Michael Roth 已提交
170
{
171 172
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
P
Paolo Bonzini 已提交
173
    Error *err = NULL;
M
Michael Roth 已提交
174

175 176 177
    if (obj) {
        *obj = NULL;
    }
178 179 180 181
    if (!qobj) {
        return;
    }
    if (qobject_type(qobj) != QTYPE_QDICT) {
182 183
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "QDict");
M
Michael Roth 已提交
184 185 186
        return;
    }

187
    qobject_input_push(qiv, qobj, obj, &err);
P
Paolo Bonzini 已提交
188 189
    if (err) {
        error_propagate(errp, err);
M
Michael Roth 已提交
190 191 192 193
        return;
    }

    if (obj) {
194
        *obj = g_malloc0(size);
M
Michael Roth 已提交
195 196 197 198
    }
}


199 200 201
static void qobject_input_start_list(Visitor *v, const char *name,
                                     GenericList **list, size_t size,
                                     Error **errp)
M
Michael Roth 已提交
202
{
203 204
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
205
    const QListEntry *entry;
M
Michael Roth 已提交
206

207 208 209 210
    if (!qobj) {
        return;
    }
    if (qobject_type(qobj) != QTYPE_QLIST) {
211 212 213
        if (list) {
            *list = NULL;
        }
214 215
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "list");
M
Michael Roth 已提交
216 217 218
        return;
    }

219
    entry = qobject_input_push(qiv, qobj, list, errp);
220 221 222 223 224 225 226
    if (list) {
        if (entry) {
            *list = g_malloc0(size);
        } else {
            *list = NULL;
        }
    }
M
Michael Roth 已提交
227 228
}

229 230
static GenericList *qobject_input_next_list(Visitor *v, GenericList *tail,
                                            size_t size)
M
Michael Roth 已提交
231
{
232
    QObjectInputVisitor *qiv = to_qiv(v);
233
    StackObject *so = QSLIST_FIRST(&qiv->stack);
M
Michael Roth 已提交
234

235
    if (!so->entry) {
M
Michael Roth 已提交
236 237
        return NULL;
    }
238 239
    tail->next = g_malloc0(size);
    return tail->next;
M
Michael Roth 已提交
240 241 242
}


243 244 245
static void qobject_input_start_alternate(Visitor *v, const char *name,
                                          GenericAlternate **obj, size_t size,
                                          bool promote_int, Error **errp)
K
Kevin Wolf 已提交
246
{
247 248
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, false, errp);
K
Kevin Wolf 已提交
249 250

    if (!qobj) {
251
        *obj = NULL;
K
Kevin Wolf 已提交
252 253
        return;
    }
254 255 256 257
    *obj = g_malloc0(size);
    (*obj)->type = qobject_type(qobj);
    if (promote_int && (*obj)->type == QTYPE_QINT) {
        (*obj)->type = QTYPE_QFLOAT;
258
    }
K
Kevin Wolf 已提交
259 260
}

261 262
static void qobject_input_type_int64(Visitor *v, const char *name, int64_t *obj,
                                     Error **errp)
M
Michael Roth 已提交
263
{
264 265
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
266
    QInt *qint;
M
Michael Roth 已提交
267

268 269 270 271
    if (!qobj) {
        return;
    }
    qint = qobject_to_qint(qobj);
272
    if (!qint) {
273 274
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "integer");
M
Michael Roth 已提交
275 276 277
        return;
    }

278
    *obj = qint_get_int(qint);
M
Michael Roth 已提交
279 280
}

281 282
static void qobject_input_type_uint64(Visitor *v, const char *name,
                                      uint64_t *obj, Error **errp)
283 284
{
    /* FIXME: qobject_to_qint mishandles values over INT64_MAX */
285 286
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
287
    QInt *qint;
288

289 290 291 292
    if (!qobj) {
        return;
    }
    qint = qobject_to_qint(qobj);
293 294 295 296 297 298 299 300 301
    if (!qint) {
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "integer");
        return;
    }

    *obj = qint_get_int(qint);
}

302 303
static void qobject_input_type_bool(Visitor *v, const char *name, bool *obj,
                                    Error **errp)
M
Michael Roth 已提交
304
{
305 306
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
307
    QBool *qbool;
M
Michael Roth 已提交
308

309 310 311 312
    if (!qobj) {
        return;
    }
    qbool = qobject_to_qbool(qobj);
313
    if (!qbool) {
314 315
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "boolean");
M
Michael Roth 已提交
316 317 318
        return;
    }

319
    *obj = qbool_get_bool(qbool);
M
Michael Roth 已提交
320 321
}

322 323
static void qobject_input_type_str(Visitor *v, const char *name, char **obj,
                                   Error **errp)
M
Michael Roth 已提交
324
{
325 326
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
327
    QString *qstr;
M
Michael Roth 已提交
328

329 330 331 332 333
    *obj = NULL;
    if (!qobj) {
        return;
    }
    qstr = qobject_to_qstring(qobj);
334
    if (!qstr) {
335 336
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "string");
M
Michael Roth 已提交
337 338 339
        return;
    }

340
    *obj = g_strdup(qstring_get_str(qstr));
M
Michael Roth 已提交
341 342
}

343 344
static void qobject_input_type_number(Visitor *v, const char *name, double *obj,
                                      Error **errp)
M
Michael Roth 已提交
345
{
346 347
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
348 349
    QInt *qint;
    QFloat *qfloat;
M
Michael Roth 已提交
350

351 352 353
    if (!qobj) {
        return;
    }
354 355 356
    qint = qobject_to_qint(qobj);
    if (qint) {
        *obj = qint_get_int(qobject_to_qint(qobj));
M
Michael Roth 已提交
357 358 359
        return;
    }

360 361
    qfloat = qobject_to_qfloat(qobj);
    if (qfloat) {
362
        *obj = qfloat_get_double(qobject_to_qfloat(qobj));
363
        return;
364
    }
365 366 367

    error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
               "number");
M
Michael Roth 已提交
368 369
}

370 371
static void qobject_input_type_any(Visitor *v, const char *name, QObject **obj,
                                   Error **errp)
372
{
373 374
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
375

376
    *obj = NULL;
377 378 379 380
    if (!qobj) {
        return;
    }

381 382 383 384
    qobject_incref(qobj);
    *obj = qobj;
}

385
static void qobject_input_type_null(Visitor *v, const char *name, Error **errp)
E
Eric Blake 已提交
386
{
387 388
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
389

390 391 392 393
    if (!qobj) {
        return;
    }

394 395 396 397
    if (qobject_type(qobj) != QTYPE_QNULL) {
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "null");
    }
E
Eric Blake 已提交
398 399
}

400
static void qobject_input_optional(Visitor *v, const char *name, bool *present)
M
Michael Roth 已提交
401
{
402 403
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, false, NULL);
M
Michael Roth 已提交
404 405 406 407 408 409 410 411 412

    if (!qobj) {
        *present = false;
        return;
    }

    *present = true;
}

413
static void qobject_input_free(Visitor *v)
E
Eric Blake 已提交
414
{
415
    QObjectInputVisitor *qiv = to_qiv(v);
416 417 418 419
    while (!QSLIST_EMPTY(&qiv->stack)) {
        StackObject *tos = QSLIST_FIRST(&qiv->stack);

        QSLIST_REMOVE_HEAD(&qiv->stack, node);
420
        qobject_input_stack_object_free(tos);
421
    }
E
Eric Blake 已提交
422

423 424
    qobject_decref(qiv->root);
    g_free(qiv);
E
Eric Blake 已提交
425 426
}

427
Visitor *qobject_input_visitor_new(QObject *obj, bool strict)
M
Michael Roth 已提交
428
{
429
    QObjectInputVisitor *v;
M
Michael Roth 已提交
430

431
    assert(obj);
432
    v = g_malloc0(sizeof(*v));
M
Michael Roth 已提交
433

434
    v->visitor.type = VISITOR_INPUT;
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
    v->visitor.start_struct = qobject_input_start_struct;
    v->visitor.check_struct = qobject_input_check_struct;
    v->visitor.end_struct = qobject_input_pop;
    v->visitor.start_list = qobject_input_start_list;
    v->visitor.next_list = qobject_input_next_list;
    v->visitor.end_list = qobject_input_pop;
    v->visitor.start_alternate = qobject_input_start_alternate;
    v->visitor.type_int64 = qobject_input_type_int64;
    v->visitor.type_uint64 = qobject_input_type_uint64;
    v->visitor.type_bool = qobject_input_type_bool;
    v->visitor.type_str = qobject_input_type_str;
    v->visitor.type_number = qobject_input_type_number;
    v->visitor.type_any = qobject_input_type_any;
    v->visitor.type_null = qobject_input_type_null;
    v->visitor.optional = qobject_input_optional;
    v->visitor.free = qobject_input_free;
451
    v->strict = strict;
M
Michael Roth 已提交
452

453
    v->root = obj;
454
    qobject_incref(obj);
M
Michael Roth 已提交
455

456
    return &v->visitor;
M
Michael Roth 已提交
457
}