qobject-input-visitor.c 20.1 KB
Newer Older
M
Michael Roth 已提交
1 2 3
/*
 * Input Visitor
 *
4
 * Copyright (C) 2012-2017 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 <math.h>
17
#include "qapi/error.h"
18
#include "qapi/qobject-input-visitor.h"
19
#include "qapi/visitor-impl.h"
20
#include "qemu/queue.h"
M
Michael Roth 已提交
21
#include "qemu-common.h"
22
#include "qapi/qmp/qjson.h"
M
Markus Armbruster 已提交
23
#include "qapi/qmp/qbool.h"
24
#include "qapi/qmp/qdict.h"
25
#include "qapi/qmp/qerror.h"
26
#include "qapi/qmp/qlist.h"
27 28
#include "qapi/qmp/qnull.h"
#include "qapi/qmp/qnum.h"
29
#include "qapi/qmp/qstring.h"
30
#include "qemu/cutils.h"
31
#include "qemu/option.h"
M
Michael Roth 已提交
32

33 34 35
typedef struct StackObject {
    const char *name;            /* Name of @obj in its parent, if any */
    QObject *obj;                /* QDict or QList being visited */
E
Eric Blake 已提交
36
    void *qapi; /* sanity check that caller uses same pointer */
E
Eric Blake 已提交
37

38 39 40
    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 */
41

42
    QSLIST_ENTRY(StackObject) node; /* parent */
M
Michael Roth 已提交
43 44
} StackObject;

45
struct QObjectInputVisitor {
M
Michael Roth 已提交
46
    Visitor visitor;
E
Eric Blake 已提交
47

48 49
    /* Root of visit at visitor creation. */
    QObject *root;
M
Markus Armbruster 已提交
50
    bool keyval;                /* Assume @root made with keyval_parse() */
51 52 53

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

56
    GString *errname;           /* Accumulator for full_name() */
M
Michael Roth 已提交
57 58
};

59
static QObjectInputVisitor *to_qiv(Visitor *v)
M
Michael Roth 已提交
60
{
61
    return container_of(v, QObjectInputVisitor, visitor);
M
Michael Roth 已提交
62 63
}

64 65 66 67 68 69 70 71 72 73 74
/*
 * Find the full name of something @qiv is currently visiting.
 * @qiv is visiting something named @name in the stack of containers
 * @qiv->stack.
 * If @n is zero, return its full name.
 * If @n is positive, return the full name of the @n-th container
 * counting from the top.  The stack of containers must have at least
 * @n elements.
 * The returned string is valid until the next full_name_nth(@v) or
 * destruction of @v.
 */
75 76
static const char *full_name_nth(QObjectInputVisitor *qiv, const char *name,
                                 int n)
77 78 79 80 81 82 83 84 85 86 87
{
    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) {
88 89 90 91
        if (n) {
            n--;
        } else if (qobject_type(so->obj) == QTYPE_QDICT) {
            g_string_prepend(qiv->errname, name ?: "<anonymous>");
92 93
            g_string_prepend_c(qiv->errname, '.');
        } else {
M
Markus Armbruster 已提交
94 95 96
            snprintf(buf, sizeof(buf),
                     qiv->keyval ? ".%u" : "[%u]",
                     so->index);
97 98 99 100
            g_string_prepend(qiv->errname, buf);
        }
        name = so->name;
    }
101
    assert(!n);
102 103 104 105 106

    if (name) {
        g_string_prepend(qiv->errname, name);
    } else if (qiv->errname->str[0] == '.') {
        g_string_erase(qiv->errname, 0, 1);
107
    } else if (!qiv->errname->str[0]) {
108 109 110 111 112 113
        return "<anonymous>";
    }

    return qiv->errname->str;
}

114 115 116 117 118
static const char *full_name(QObjectInputVisitor *qiv, const char *name)
{
    return full_name_nth(qiv, name, 0);
}

119 120 121
static QObject *qobject_input_try_get_object(QObjectInputVisitor *qiv,
                                             const char *name,
                                             bool consume)
M
Michael Roth 已提交
122
{
123 124
    StackObject *tos;
    QObject *qobj;
125
    QObject *ret;
E
Eric Blake 已提交
126

127
    if (QSLIST_EMPTY(&qiv->stack)) {
128
        /* Starting at root, name is ignored. */
129
        assert(qiv->root);
130 131 132 133
        return qiv->root;
    }

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

138 139
    if (qobject_type(qobj) == QTYPE_QDICT) {
        assert(name);
140
        ret = qdict_get(qobject_to(QDict, qobj), name);
141 142 143
        if (tos->h && consume && ret) {
            bool removed = g_hash_table_remove(tos->h, name);
            assert(removed);
144
        }
145
    } else {
E
Eric Blake 已提交
146
        assert(qobject_type(qobj) == QTYPE_QLIST);
147
        assert(!name);
148 149 150 151 152 153 154 155
        if (tos->entry) {
            ret = qlist_entry_obj(tos->entry);
            if (consume) {
                tos->entry = qlist_next(tos->entry);
            }
        } else {
            ret = NULL;
        }
156
        if (consume) {
157
            tos->index++;
158
        }
M
Michael Roth 已提交
159 160
    }

161
    return ret;
M
Michael Roth 已提交
162 163
}

164 165 166 167 168 169 170 171 172 173 174 175
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;
}

176 177 178 179 180 181 182 183 184 185 186 187
static const char *qobject_input_get_keyval(QObjectInputVisitor *qiv,
                                            const char *name,
                                            Error **errp)
{
    QObject *qobj;
    QString *qstr;

    qobj = qobject_input_get_object(qiv, name, true, errp);
    if (!qobj) {
        return NULL;
    }

188
    qstr = qobject_to(QString, qobj);
189
    if (!qstr) {
190 191 192 193 194 195 196 197 198 199 200 201
        switch (qobject_type(qobj)) {
        case QTYPE_QDICT:
        case QTYPE_QLIST:
            error_setg(errp, "Parameters '%s.*' are unexpected",
                       full_name(qiv, name));
            return NULL;
        default:
            /* Non-string scalar (should this be an assertion?) */
            error_setg(errp, "Internal error: parameter %s invalid",
                       full_name(qiv, name));
            return NULL;
        }
202 203 204 205 206
    }

    return qstring_get_str(qstr);
}

207 208 209 210 211 212
static void qdict_add_key(const char *key, QObject *obj, void *opaque)
{
    GHashTable *h = opaque;
    g_hash_table_insert(h, (gpointer) key, NULL);
}

213
static const QListEntry *qobject_input_push(QObjectInputVisitor *qiv,
214
                                            const char *name,
215
                                            QObject *obj, void *qapi)
M
Michael Roth 已提交
216
{
217
    GHashTable *h;
218
    StackObject *tos = g_new0(StackObject, 1);
M
Michael Roth 已提交
219

E
Eric Blake 已提交
220
    assert(obj);
221
    tos->name = name;
E
Eric Blake 已提交
222
    tos->obj = obj;
E
Eric Blake 已提交
223
    tos->qapi = qapi;
224

225
    if (qobject_type(obj) == QTYPE_QDICT) {
226
        h = g_hash_table_new(g_str_hash, g_str_equal);
227
        qdict_iter(qobject_to(QDict, obj), qdict_add_key, h);
E
Eric Blake 已提交
228
        tos->h = h;
229 230
    } else {
        assert(qobject_type(obj) == QTYPE_QLIST);
231
        tos->entry = qlist_first(qobject_to(QList, obj));
232
        tos->index = -1;
233 234
    }

235
    QSLIST_INSERT_HEAD(&qiv->stack, tos, node);
236
    return tos->entry;
M
Michael Roth 已提交
237 238
}

239

240
static void qobject_input_check_struct(Visitor *v, Error **errp)
M
Michael Roth 已提交
241
{
242
    QObjectInputVisitor *qiv = to_qiv(v);
243
    StackObject *tos = QSLIST_FIRST(&qiv->stack);
244 245
    GHashTableIter iter;
    const char *key;
246

247
    assert(tos && !tos->entry);
248 249 250 251 252

    g_hash_table_iter_init(&iter, tos->h);
    if (g_hash_table_iter_next(&iter, (void **)&key, NULL)) {
        error_setg(errp, "Parameter '%s' is unexpected",
                   full_name(qiv, key));
253 254 255
    }
}

256
static void qobject_input_stack_object_free(StackObject *tos)
257
{
258 259 260
    if (tos->h) {
        g_hash_table_unref(tos->h);
    }
261

262 263
    g_free(tos);
}
264

265
static void qobject_input_pop(Visitor *v, void **obj)
266
{
267
    QObjectInputVisitor *qiv = to_qiv(v);
268
    StackObject *tos = QSLIST_FIRST(&qiv->stack);
269

270 271
    assert(tos && tos->qapi == obj);
    QSLIST_REMOVE_HEAD(&qiv->stack, node);
272
    qobject_input_stack_object_free(tos);
M
Michael Roth 已提交
273 274
}

275 276
static void qobject_input_start_struct(Visitor *v, const char *name, void **obj,
                                       size_t size, Error **errp)
M
Michael Roth 已提交
277
{
278 279
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
M
Michael Roth 已提交
280

281 282 283
    if (obj) {
        *obj = NULL;
    }
284 285 286 287
    if (!qobj) {
        return;
    }
    if (qobject_type(qobj) != QTYPE_QDICT) {
288 289
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "object");
M
Michael Roth 已提交
290 291 292
        return;
    }

293
    qobject_input_push(qiv, name, qobj, obj);
M
Michael Roth 已提交
294 295

    if (obj) {
296
        *obj = g_malloc0(size);
M
Michael Roth 已提交
297 298 299
    }
}

300 301 302 303 304 305 306 307 308
static void qobject_input_end_struct(Visitor *v, void **obj)
{
    QObjectInputVisitor *qiv = to_qiv(v);
    StackObject *tos = QSLIST_FIRST(&qiv->stack);

    assert(qobject_type(tos->obj) == QTYPE_QDICT && tos->h);
    qobject_input_pop(v, obj);
}

M
Michael Roth 已提交
309

310 311 312
static void qobject_input_start_list(Visitor *v, const char *name,
                                     GenericList **list, size_t size,
                                     Error **errp)
M
Michael Roth 已提交
313
{
314 315
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
316
    const QListEntry *entry;
M
Michael Roth 已提交
317

318 319 320
    if (list) {
        *list = NULL;
    }
321 322 323 324
    if (!qobj) {
        return;
    }
    if (qobject_type(qobj) != QTYPE_QLIST) {
325 326
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "array");
M
Michael Roth 已提交
327 328 329
        return;
    }

330
    entry = qobject_input_push(qiv, name, qobj, list);
331 332
    if (entry && list) {
        *list = g_malloc0(size);
333
    }
M
Michael Roth 已提交
334 335
}

336 337
static GenericList *qobject_input_next_list(Visitor *v, GenericList *tail,
                                            size_t size)
M
Michael Roth 已提交
338
{
339
    QObjectInputVisitor *qiv = to_qiv(v);
340 341
    StackObject *tos = QSLIST_FIRST(&qiv->stack);

M
Max Reitz 已提交
342
    assert(tos && qobject_to(QList, tos->obj));
M
Michael Roth 已提交
343

344
    if (!tos->entry) {
M
Michael Roth 已提交
345 346
        return NULL;
    }
347 348
    tail->next = g_malloc0(size);
    return tail->next;
M
Michael Roth 已提交
349 350
}

351 352 353 354 355
static void qobject_input_check_list(Visitor *v, Error **errp)
{
    QObjectInputVisitor *qiv = to_qiv(v);
    StackObject *tos = QSLIST_FIRST(&qiv->stack);

M
Max Reitz 已提交
356
    assert(tos && qobject_to(QList, tos->obj));
357 358 359 360 361 362 363

    if (tos->entry) {
        error_setg(errp, "Only %u list elements expected in %s",
                   tos->index + 1, full_name_nth(qiv, NULL, 1));
    }
}

364 365 366 367 368 369 370 371
static void qobject_input_end_list(Visitor *v, void **obj)
{
    QObjectInputVisitor *qiv = to_qiv(v);
    StackObject *tos = QSLIST_FIRST(&qiv->stack);

    assert(qobject_type(tos->obj) == QTYPE_QLIST && !tos->h);
    qobject_input_pop(v, obj);
}
M
Michael Roth 已提交
372

373 374
static void qobject_input_start_alternate(Visitor *v, const char *name,
                                          GenericAlternate **obj, size_t size,
375
                                          Error **errp)
K
Kevin Wolf 已提交
376
{
377 378
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, false, errp);
K
Kevin Wolf 已提交
379 380

    if (!qobj) {
381
        *obj = NULL;
K
Kevin Wolf 已提交
382 383
        return;
    }
384 385
    *obj = g_malloc0(size);
    (*obj)->type = qobject_type(qobj);
K
Kevin Wolf 已提交
386 387
}

388 389
static void qobject_input_type_int64(Visitor *v, const char *name, int64_t *obj,
                                     Error **errp)
M
Michael Roth 已提交
390
{
391 392
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
393
    QNum *qnum;
M
Michael Roth 已提交
394

395 396 397
    if (!qobj) {
        return;
    }
398
    qnum = qobject_to(QNum, qobj);
399
    if (!qnum || !qnum_get_try_int(qnum, obj)) {
400 401
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "integer");
M
Michael Roth 已提交
402 403 404
    }
}

405 406 407 408
static void qobject_input_type_int64_keyval(Visitor *v, const char *name,
                                            int64_t *obj, Error **errp)
{
    QObjectInputVisitor *qiv = to_qiv(v);
409
    const char *str = qobject_input_get_keyval(qiv, name, errp);
410

411
    if (!str) {
412 413 414
        return;
    }

415
    if (qemu_strtoi64(str, NULL, 0, obj) < 0) {
416 417 418 419 420 421
        /* TODO report -ERANGE more nicely */
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
                   full_name(qiv, name), "integer");
    }
}

422 423
static void qobject_input_type_uint64(Visitor *v, const char *name,
                                      uint64_t *obj, Error **errp)
424
{
425 426
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
427 428
    QNum *qnum;
    int64_t val;
429

430 431 432
    if (!qobj) {
        return;
    }
433
    qnum = qobject_to(QNum, qobj);
434 435 436 437 438 439
    if (!qnum) {
        goto err;
    }

    if (qnum_get_try_uint(qnum, obj)) {
        return;
440
    }
441 442 443 444 445 446 447 448 449 450

    /* Need to accept negative values for backward compatibility */
    if (qnum_get_try_int(qnum, &val)) {
        *obj = val;
        return;
    }

err:
    error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
               full_name(qiv, name), "uint64");
451 452
}

453 454 455 456
static void qobject_input_type_uint64_keyval(Visitor *v, const char *name,
                                             uint64_t *obj, Error **errp)
{
    QObjectInputVisitor *qiv = to_qiv(v);
457
    const char *str = qobject_input_get_keyval(qiv, name, errp);
458

459
    if (!str) {
460 461 462
        return;
    }

463
    if (qemu_strtou64(str, NULL, 0, obj) < 0) {
464 465 466 467 468 469
        /* TODO report -ERANGE more nicely */
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
                   full_name(qiv, name), "integer");
    }
}

470 471
static void qobject_input_type_bool(Visitor *v, const char *name, bool *obj,
                                    Error **errp)
M
Michael Roth 已提交
472
{
473 474
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
475
    QBool *qbool;
M
Michael Roth 已提交
476

477 478 479
    if (!qobj) {
        return;
    }
480
    qbool = qobject_to(QBool, qobj);
481
    if (!qbool) {
482 483
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "boolean");
M
Michael Roth 已提交
484 485 486
        return;
    }

487
    *obj = qbool_get_bool(qbool);
M
Michael Roth 已提交
488 489
}

490 491 492 493
static void qobject_input_type_bool_keyval(Visitor *v, const char *name,
                                           bool *obj, Error **errp)
{
    QObjectInputVisitor *qiv = to_qiv(v);
494
    const char *str = qobject_input_get_keyval(qiv, name, errp);
495

496
    if (!str) {
497 498 499 500 501 502 503 504 505 506 507 508 509
        return;
    }

    if (!strcmp(str, "on")) {
        *obj = true;
    } else if (!strcmp(str, "off")) {
        *obj = false;
    } else {
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
                   full_name(qiv, name), "'on' or 'off'");
    }
}

510 511
static void qobject_input_type_str(Visitor *v, const char *name, char **obj,
                                   Error **errp)
M
Michael Roth 已提交
512
{
513 514
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
515
    QString *qstr;
M
Michael Roth 已提交
516

517 518 519 520
    *obj = NULL;
    if (!qobj) {
        return;
    }
521
    qstr = qobject_to(QString, qobj);
522
    if (!qstr) {
523 524
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "string");
M
Michael Roth 已提交
525 526 527
        return;
    }

528
    *obj = g_strdup(qstring_get_str(qstr));
M
Michael Roth 已提交
529 530
}

531 532 533 534 535 536 537 538 539
static void qobject_input_type_str_keyval(Visitor *v, const char *name,
                                          char **obj, Error **errp)
{
    QObjectInputVisitor *qiv = to_qiv(v);
    const char *str = qobject_input_get_keyval(qiv, name, errp);

    *obj = g_strdup(str);
}

540 541
static void qobject_input_type_number(Visitor *v, const char *name, double *obj,
                                      Error **errp)
M
Michael Roth 已提交
542
{
543 544
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
545
    QNum *qnum;
M
Michael Roth 已提交
546

547 548 549
    if (!qobj) {
        return;
    }
550
    qnum = qobject_to(QNum, qobj);
551
    if (!qnum) {
552 553
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "number");
554
        return;
555
    }
556

557
    *obj = qnum_get_double(qnum);
M
Michael Roth 已提交
558 559
}

560 561 562 563
static void qobject_input_type_number_keyval(Visitor *v, const char *name,
                                             double *obj, Error **errp)
{
    QObjectInputVisitor *qiv = to_qiv(v);
564
    const char *str = qobject_input_get_keyval(qiv, name, errp);
565 566
    char *endp;

567
    if (!str) {
568 569 570 571 572
        return;
    }

    errno = 0;
    *obj = strtod(str, &endp);
573
    if (errno || endp == str || *endp || !isfinite(*obj)) {
574 575 576 577 578 579
        /* TODO report -ERANGE more nicely */
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "number");
    }
}

580 581
static void qobject_input_type_any(Visitor *v, const char *name, QObject **obj,
                                   Error **errp)
582
{
583 584
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
585

586
    *obj = NULL;
587 588 589 590
    if (!qobj) {
        return;
    }

591
    *obj = qobject_ref(qobj);
592 593
}

594 595
static void qobject_input_type_null(Visitor *v, const char *name,
                                    QNull **obj, Error **errp)
E
Eric Blake 已提交
596
{
597 598
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
599

600
    *obj = NULL;
601 602 603 604
    if (!qobj) {
        return;
    }

605
    if (qobject_type(qobj) != QTYPE_QNULL) {
606 607
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE,
                   full_name(qiv, name), "null");
608
        return;
609
    }
610
    *obj = qnull();
E
Eric Blake 已提交
611 612
}

613 614 615 616
static void qobject_input_type_size_keyval(Visitor *v, const char *name,
                                           uint64_t *obj, Error **errp)
{
    QObjectInputVisitor *qiv = to_qiv(v);
617
    const char *str = qobject_input_get_keyval(qiv, name, errp);
618

619
    if (!str) {
620 621 622
        return;
    }

623
    if (qemu_strtosz(str, NULL, obj) < 0) {
624 625 626 627 628 629
        /* TODO report -ERANGE more nicely */
        error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
                   full_name(qiv, name), "size");
    }
}

630
static void qobject_input_optional(Visitor *v, const char *name, bool *present)
M
Michael Roth 已提交
631
{
632
    QObjectInputVisitor *qiv = to_qiv(v);
633
    QObject *qobj = qobject_input_try_get_object(qiv, name, false);
M
Michael Roth 已提交
634 635 636 637 638 639 640 641 642

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

    *present = true;
}

643
static void qobject_input_free(Visitor *v)
E
Eric Blake 已提交
644
{
645
    QObjectInputVisitor *qiv = to_qiv(v);
646

647 648 649 650
    while (!QSLIST_EMPTY(&qiv->stack)) {
        StackObject *tos = QSLIST_FIRST(&qiv->stack);

        QSLIST_REMOVE_HEAD(&qiv->stack, node);
651
        qobject_input_stack_object_free(tos);
652
    }
E
Eric Blake 已提交
653

654
    qobject_unref(qiv->root);
655 656 657
    if (qiv->errname) {
        g_string_free(qiv->errname, TRUE);
    }
658
    g_free(qiv);
E
Eric Blake 已提交
659 660
}

661
static QObjectInputVisitor *qobject_input_visitor_base_new(QObject *obj)
M
Michael Roth 已提交
662
{
663
    QObjectInputVisitor *v = g_malloc0(sizeof(*v));
M
Michael Roth 已提交
664

665
    assert(obj);
M
Michael Roth 已提交
666

667
    v->visitor.type = VISITOR_INPUT;
668 669
    v->visitor.start_struct = qobject_input_start_struct;
    v->visitor.check_struct = qobject_input_check_struct;
670
    v->visitor.end_struct = qobject_input_end_struct;
671 672
    v->visitor.start_list = qobject_input_start_list;
    v->visitor.next_list = qobject_input_next_list;
673
    v->visitor.check_list = qobject_input_check_list;
674
    v->visitor.end_list = qobject_input_end_list;
675
    v->visitor.start_alternate = qobject_input_start_alternate;
676 677 678
    v->visitor.optional = qobject_input_optional;
    v->visitor.free = qobject_input_free;

679
    v->root = qobject_ref(obj);
680 681 682 683 684 685 686 687

    return v;
}

Visitor *qobject_input_visitor_new(QObject *obj)
{
    QObjectInputVisitor *v = qobject_input_visitor_base_new(obj);

688 689 690 691 692 693 694
    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;
M
Michael Roth 已提交
695

696
    return &v->visitor;
M
Michael Roth 已提交
697
}
698 699 700

Visitor *qobject_input_visitor_new_keyval(QObject *obj)
{
701
    QObjectInputVisitor *v = qobject_input_visitor_base_new(obj);
702 703 704 705

    v->visitor.type_int64 = qobject_input_type_int64_keyval;
    v->visitor.type_uint64 = qobject_input_type_uint64_keyval;
    v->visitor.type_bool = qobject_input_type_bool_keyval;
706
    v->visitor.type_str = qobject_input_type_str_keyval;
707 708 709 710
    v->visitor.type_number = qobject_input_type_number_keyval;
    v->visitor.type_any = qobject_input_type_any;
    v->visitor.type_null = qobject_input_type_null;
    v->visitor.type_size = qobject_input_type_size_keyval;
M
Markus Armbruster 已提交
711
    v->keyval = true;
712 713 714

    return &v->visitor;
}
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729

Visitor *qobject_input_visitor_new_str(const char *str,
                                       const char *implied_key,
                                       Error **errp)
{
    bool is_json = str[0] == '{';
    QObject *obj;
    QDict *args;
    Visitor *v;

    if (is_json) {
        obj = qobject_from_json(str, errp);
        if (!obj) {
            return NULL;
        }
730
        args = qobject_to(QDict, obj);
731 732 733 734 735 736 737 738 739
        assert(args);
        v = qobject_input_visitor_new(QOBJECT(args));
    } else {
        args = keyval_parse(str, implied_key, errp);
        if (!args) {
            return NULL;
        }
        v = qobject_input_visitor_new_keyval(QOBJECT(args));
    }
740
    qobject_unref(args);
741 742 743

    return v;
}