qobject-input-visitor.c 13.1 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
typedef struct StackObject {
    const char *name;            /* Name of @obj in its parent, if any */
    QObject *obj;                /* QDict or QList being visited */
E
Eric Blake 已提交
27
    void *qapi; /* sanity check that caller uses same pointer */
E
Eric Blake 已提交
28

29 30 31
    GHashTable *h;              /* If @obj is QDict: unvisited keys */
    const QListEntry *entry;    /* If @obj is QList: unvisited tail */
    unsigned index;             /* If @obj is QList: list index of @entry */
32

33
    QSLIST_ENTRY(StackObject) node; /* parent */
M
Michael Roth 已提交
34 35
} StackObject;

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

39 40 41 42 43
    /* Root of visit at visitor creation. */
    QObject *root;

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

    /* True to reject parse in visit_end_struct() if unvisited keys remain. */
47
    bool strict;
48 49

    GString *errname;           /* Accumulator for full_name() */
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
static const char *full_name(QObjectInputVisitor *qiv, const char *name)
{
    StackObject *so;
    char buf[32];

    if (qiv->errname) {
        g_string_truncate(qiv->errname, 0);
    } else {
        qiv->errname = g_string_new("");
    }

    QSLIST_FOREACH(so , &qiv->stack, node) {
        if (qobject_type(so->obj) == QTYPE_QDICT) {
            g_string_prepend(qiv->errname, name);
            g_string_prepend_c(qiv->errname, '.');
        } else {
            snprintf(buf, sizeof(buf), "[%u]", so->index);
            g_string_prepend(qiv->errname, buf);
        }
        name = so->name;
    }

    if (name) {
        g_string_prepend(qiv->errname, name);
    } else if (qiv->errname->str[0] == '.') {
        g_string_erase(qiv->errname, 0, 1);
    } else {
        return "<anonymous>";
    }

    return qiv->errname->str;
}

static QObject *qobject_input_try_get_object(QObjectInputVisitor *qiv,
                                             const char *name,
                                             bool consume)
M
Michael Roth 已提交
93
{
94 95
    StackObject *tos;
    QObject *qobj;
96
    QObject *ret;
E
Eric Blake 已提交
97

98
    if (QSLIST_EMPTY(&qiv->stack)) {
99
        /* Starting at root, name is ignored. */
100
        assert(qiv->root);
101 102 103 104
        return qiv->root;
    }

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

109 110
    if (qobject_type(qobj) == QTYPE_QDICT) {
        assert(name);
111 112 113 114
        ret = qdict_get(qobject_to_qdict(qobj), name);
        if (tos->h && consume && ret) {
            bool removed = g_hash_table_remove(tos->h, name);
            assert(removed);
115
        }
116
    } else {
E
Eric Blake 已提交
117
        assert(qobject_type(qobj) == QTYPE_QLIST);
118 119
        assert(!name);
        ret = qlist_entry_obj(tos->entry);
120
        assert(ret);
121 122
        if (consume) {
            tos->entry = qlist_next(tos->entry);
123
            tos->index++;
124
        }
M
Michael Roth 已提交
125 126
    }

127
    return ret;
M
Michael Roth 已提交
128 129
}

130 131 132 133 134 135 136 137 138 139 140 141
static QObject *qobject_input_get_object(QObjectInputVisitor *qiv,
                                         const char *name,
                                         bool consume, Error **errp)
{
    QObject *obj = qobject_input_try_get_object(qiv, name, consume);

    if (!obj) {
        error_setg(errp, QERR_MISSING_PARAMETER, full_name(qiv, name));
    }
    return obj;
}

142 143 144 145 146 147
static void qdict_add_key(const char *key, QObject *obj, void *opaque)
{
    GHashTable *h = opaque;
    g_hash_table_insert(h, (gpointer) key, NULL);
}

148
static const QListEntry *qobject_input_push(QObjectInputVisitor *qiv,
149
                                            const char *name,
150
                                            QObject *obj, void *qapi)
M
Michael Roth 已提交
151
{
152
    GHashTable *h;
153
    StackObject *tos = g_new0(StackObject, 1);
M
Michael Roth 已提交
154

E
Eric Blake 已提交
155
    assert(obj);
156
    tos->name = name;
E
Eric Blake 已提交
157
    tos->obj = obj;
E
Eric Blake 已提交
158
    tos->qapi = qapi;
159 160 161 162

    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 已提交
163
        tos->h = h;
164 165
    } else if (qobject_type(obj) == QTYPE_QLIST) {
        tos->entry = qlist_first(qobject_to_qlist(obj));
166
        tos->index = -1;
167 168
    }

169
    QSLIST_INSERT_HEAD(&qiv->stack, tos, node);
170
    return tos->entry;
M
Michael Roth 已提交
171 172
}

173

174
static void qobject_input_check_struct(Visitor *v, Error **errp)
M
Michael Roth 已提交
175
{
176
    QObjectInputVisitor *qiv = to_qiv(v);
177
    StackObject *tos = QSLIST_FIRST(&qiv->stack);
178

179
    assert(tos && !tos->entry);
180
    if (qiv->strict) {
181
        GHashTable *const top_ht = tos->h;
182
        if (top_ht) {
183 184 185 186 187
            GHashTableIter iter;
            const char *key;

            g_hash_table_iter_init(&iter, top_ht);
            if (g_hash_table_iter_next(&iter, (void **)&key, NULL)) {
188 189
                error_setg(errp, "Parameter '%s' is unexpected",
                           full_name(qiv, key));
190
            }
191 192 193 194
        }
    }
}

195
static void qobject_input_stack_object_free(StackObject *tos)
196
{
197 198 199
    if (tos->h) {
        g_hash_table_unref(tos->h);
    }
200

201 202
    g_free(tos);
}
203

204
static void qobject_input_pop(Visitor *v, void **obj)
205
{
206
    QObjectInputVisitor *qiv = to_qiv(v);
207
    StackObject *tos = QSLIST_FIRST(&qiv->stack);
208

209 210
    assert(tos && tos->qapi == obj);
    QSLIST_REMOVE_HEAD(&qiv->stack, node);
211
    qobject_input_stack_object_free(tos);
M
Michael Roth 已提交
212 213
}

214 215
static void qobject_input_start_struct(Visitor *v, const char *name, void **obj,
                                       size_t size, Error **errp)
M
Michael Roth 已提交
216
{
217 218
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
M
Michael Roth 已提交
219

220 221 222
    if (obj) {
        *obj = NULL;
    }
223 224 225 226
    if (!qobj) {
        return;
    }
    if (qobject_type(qobj) != QTYPE_QDICT) {
227 228
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "object");
M
Michael Roth 已提交
229 230 231
        return;
    }

232
    qobject_input_push(qiv, name, qobj, obj);
M
Michael Roth 已提交
233 234

    if (obj) {
235
        *obj = g_malloc0(size);
M
Michael Roth 已提交
236 237 238 239
    }
}


240 241 242
static void qobject_input_start_list(Visitor *v, const char *name,
                                     GenericList **list, size_t size,
                                     Error **errp)
M
Michael Roth 已提交
243
{
244 245
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
246
    const QListEntry *entry;
M
Michael Roth 已提交
247

248 249 250
    if (list) {
        *list = NULL;
    }
251 252 253 254
    if (!qobj) {
        return;
    }
    if (qobject_type(qobj) != QTYPE_QLIST) {
255 256
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "array");
M
Michael Roth 已提交
257 258 259
        return;
    }

260
    entry = qobject_input_push(qiv, name, qobj, list);
261 262
    if (entry && list) {
        *list = g_malloc0(size);
263
    }
M
Michael Roth 已提交
264 265
}

266 267
static GenericList *qobject_input_next_list(Visitor *v, GenericList *tail,
                                            size_t size)
M
Michael Roth 已提交
268
{
269
    QObjectInputVisitor *qiv = to_qiv(v);
270
    StackObject *so = QSLIST_FIRST(&qiv->stack);
M
Michael Roth 已提交
271

272
    if (!so->entry) {
M
Michael Roth 已提交
273 274
        return NULL;
    }
275 276
    tail->next = g_malloc0(size);
    return tail->next;
M
Michael Roth 已提交
277 278 279
}


280 281 282
static void qobject_input_start_alternate(Visitor *v, const char *name,
                                          GenericAlternate **obj, size_t size,
                                          bool promote_int, Error **errp)
K
Kevin Wolf 已提交
283
{
284 285
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, false, errp);
K
Kevin Wolf 已提交
286 287

    if (!qobj) {
288
        *obj = NULL;
K
Kevin Wolf 已提交
289 290
        return;
    }
291 292 293 294
    *obj = g_malloc0(size);
    (*obj)->type = qobject_type(qobj);
    if (promote_int && (*obj)->type == QTYPE_QINT) {
        (*obj)->type = QTYPE_QFLOAT;
295
    }
K
Kevin Wolf 已提交
296 297
}

298 299
static void qobject_input_type_int64(Visitor *v, const char *name, int64_t *obj,
                                     Error **errp)
M
Michael Roth 已提交
300
{
301 302
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
303
    QInt *qint;
M
Michael Roth 已提交
304

305 306 307 308
    if (!qobj) {
        return;
    }
    qint = qobject_to_qint(qobj);
309
    if (!qint) {
310 311
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "integer");
M
Michael Roth 已提交
312 313 314
        return;
    }

315
    *obj = qint_get_int(qint);
M
Michael Roth 已提交
316 317
}

318 319
static void qobject_input_type_uint64(Visitor *v, const char *name,
                                      uint64_t *obj, Error **errp)
320 321
{
    /* FIXME: qobject_to_qint mishandles values over INT64_MAX */
322 323
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
324
    QInt *qint;
325

326 327 328 329
    if (!qobj) {
        return;
    }
    qint = qobject_to_qint(qobj);
330
    if (!qint) {
331 332
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "integer");
333 334 335 336 337 338
        return;
    }

    *obj = qint_get_int(qint);
}

339 340
static void qobject_input_type_bool(Visitor *v, const char *name, bool *obj,
                                    Error **errp)
M
Michael Roth 已提交
341
{
342 343
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
344
    QBool *qbool;
M
Michael Roth 已提交
345

346 347 348 349
    if (!qobj) {
        return;
    }
    qbool = qobject_to_qbool(qobj);
350
    if (!qbool) {
351 352
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "boolean");
M
Michael Roth 已提交
353 354 355
        return;
    }

356
    *obj = qbool_get_bool(qbool);
M
Michael Roth 已提交
357 358
}

359 360
static void qobject_input_type_str(Visitor *v, const char *name, char **obj,
                                   Error **errp)
M
Michael Roth 已提交
361
{
362 363
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
364
    QString *qstr;
M
Michael Roth 已提交
365

366 367 368 369 370
    *obj = NULL;
    if (!qobj) {
        return;
    }
    qstr = qobject_to_qstring(qobj);
371
    if (!qstr) {
372 373
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "string");
M
Michael Roth 已提交
374 375 376
        return;
    }

377
    *obj = g_strdup(qstring_get_str(qstr));
M
Michael Roth 已提交
378 379
}

380 381
static void qobject_input_type_number(Visitor *v, const char *name, double *obj,
                                      Error **errp)
M
Michael Roth 已提交
382
{
383 384
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
385 386
    QInt *qint;
    QFloat *qfloat;
M
Michael Roth 已提交
387

388 389 390
    if (!qobj) {
        return;
    }
391 392 393
    qint = qobject_to_qint(qobj);
    if (qint) {
        *obj = qint_get_int(qobject_to_qint(qobj));
M
Michael Roth 已提交
394 395 396
        return;
    }

397 398
    qfloat = qobject_to_qfloat(qobj);
    if (qfloat) {
399
        *obj = qfloat_get_double(qobject_to_qfloat(qobj));
400
        return;
401
    }
402

403 404
    error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
               full_name(qiv, name), "number");
M
Michael Roth 已提交
405 406
}

407 408
static void qobject_input_type_any(Visitor *v, const char *name, QObject **obj,
                                   Error **errp)
409
{
410 411
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
412

413
    *obj = NULL;
414 415 416 417
    if (!qobj) {
        return;
    }

418 419 420 421
    qobject_incref(qobj);
    *obj = qobj;
}

422
static void qobject_input_type_null(Visitor *v, const char *name, Error **errp)
E
Eric Blake 已提交
423
{
424 425
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
426

427 428 429 430
    if (!qobj) {
        return;
    }

431
    if (qobject_type(qobj) != QTYPE_QNULL) {
432 433
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "null");
434
    }
E
Eric Blake 已提交
435 436
}

437
static void qobject_input_optional(Visitor *v, const char *name, bool *present)
M
Michael Roth 已提交
438
{
439
    QObjectInputVisitor *qiv = to_qiv(v);
440
    QObject *qobj = qobject_input_try_get_object(qiv, name, false);
M
Michael Roth 已提交
441 442 443 444 445 446 447 448 449

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

    *present = true;
}

450
static void qobject_input_free(Visitor *v)
E
Eric Blake 已提交
451
{
452
    QObjectInputVisitor *qiv = to_qiv(v);
453

454 455 456 457
    while (!QSLIST_EMPTY(&qiv->stack)) {
        StackObject *tos = QSLIST_FIRST(&qiv->stack);

        QSLIST_REMOVE_HEAD(&qiv->stack, node);
458
        qobject_input_stack_object_free(tos);
459
    }
E
Eric Blake 已提交
460

461
    qobject_decref(qiv->root);
462 463 464
    if (qiv->errname) {
        g_string_free(qiv->errname, TRUE);
    }
465
    g_free(qiv);
E
Eric Blake 已提交
466 467
}

468
Visitor *qobject_input_visitor_new(QObject *obj, bool strict)
M
Michael Roth 已提交
469
{
470
    QObjectInputVisitor *v;
M
Michael Roth 已提交
471

472
    assert(obj);
473
    v = g_malloc0(sizeof(*v));
M
Michael Roth 已提交
474

475
    v->visitor.type = VISITOR_INPUT;
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
    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;
492
    v->strict = strict;
M
Michael Roth 已提交
493

494
    v->root = obj;
495
    qobject_incref(obj);
M
Michael Roth 已提交
496

497
    return &v->visitor;
M
Michael Roth 已提交
498
}