qobject-input-visitor.c 11.6 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

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

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

    QSLIST_ENTRY(StackObject) node;
M
Michael Roth 已提交
33 34
} StackObject;

35
struct QObjectInputVisitor
M
Michael Roth 已提交
36 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;
M
Michael Roth 已提交
48 49
};

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

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

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

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

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

94
    return ret;
M
Michael Roth 已提交
95 96
}

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

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

E
Eric Blake 已提交
109 110
    assert(obj);
    tos->obj = obj;
E
Eric Blake 已提交
111
    tos->qapi = qapi;
112 113 114 115

    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 已提交
116
        tos->h = h;
117 118
    } else if (qobject_type(obj) == QTYPE_QLIST) {
        tos->entry = qlist_first(qobject_to_qlist(obj));
119 120
    }

121
    QSLIST_INSERT_HEAD(&qiv->stack, tos, node);
122
    return tos->entry;
M
Michael Roth 已提交
123 124
}

125

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

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

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

146
static void qobject_input_stack_object_free(StackObject *tos)
147
{
148 149 150
    if (tos->h) {
        g_hash_table_unref(tos->h);
    }
151

152 153
    g_free(tos);
}
154

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

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

165 166
static void qobject_input_start_struct(Visitor *v, const char *name, void **obj,
                                       size_t size, Error **errp)
M
Michael Roth 已提交
167
{
168 169
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
M
Michael Roth 已提交
170

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

183
    qobject_input_push(qiv, qobj, obj);
M
Michael Roth 已提交
184 185

    if (obj) {
186
        *obj = g_malloc0(size);
M
Michael Roth 已提交
187 188 189 190
    }
}


191 192 193
static void qobject_input_start_list(Visitor *v, const char *name,
                                     GenericList **list, size_t size,
                                     Error **errp)
M
Michael Roth 已提交
194
{
195 196
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
197
    const QListEntry *entry;
M
Michael Roth 已提交
198

199 200 201 202
    if (!qobj) {
        return;
    }
    if (qobject_type(qobj) != QTYPE_QLIST) {
203 204 205
        if (list) {
            *list = NULL;
        }
206 207
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "list");
M
Michael Roth 已提交
208 209 210
        return;
    }

211
    entry = qobject_input_push(qiv, qobj, list);
212 213 214 215 216 217 218
    if (list) {
        if (entry) {
            *list = g_malloc0(size);
        } else {
            *list = NULL;
        }
    }
M
Michael Roth 已提交
219 220
}

221 222
static GenericList *qobject_input_next_list(Visitor *v, GenericList *tail,
                                            size_t size)
M
Michael Roth 已提交
223
{
224
    QObjectInputVisitor *qiv = to_qiv(v);
225
    StackObject *so = QSLIST_FIRST(&qiv->stack);
M
Michael Roth 已提交
226

227
    if (!so->entry) {
M
Michael Roth 已提交
228 229
        return NULL;
    }
230 231
    tail->next = g_malloc0(size);
    return tail->next;
M
Michael Roth 已提交
232 233 234
}


235 236 237
static void qobject_input_start_alternate(Visitor *v, const char *name,
                                          GenericAlternate **obj, size_t size,
                                          bool promote_int, Error **errp)
K
Kevin Wolf 已提交
238
{
239 240
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, false, errp);
K
Kevin Wolf 已提交
241 242

    if (!qobj) {
243
        *obj = NULL;
K
Kevin Wolf 已提交
244 245
        return;
    }
246 247 248 249
    *obj = g_malloc0(size);
    (*obj)->type = qobject_type(qobj);
    if (promote_int && (*obj)->type == QTYPE_QINT) {
        (*obj)->type = QTYPE_QFLOAT;
250
    }
K
Kevin Wolf 已提交
251 252
}

253 254
static void qobject_input_type_int64(Visitor *v, const char *name, int64_t *obj,
                                     Error **errp)
M
Michael Roth 已提交
255
{
256 257
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
258
    QInt *qint;
M
Michael Roth 已提交
259

260 261 262 263
    if (!qobj) {
        return;
    }
    qint = qobject_to_qint(qobj);
264
    if (!qint) {
265 266
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "integer");
M
Michael Roth 已提交
267 268 269
        return;
    }

270
    *obj = qint_get_int(qint);
M
Michael Roth 已提交
271 272
}

273 274
static void qobject_input_type_uint64(Visitor *v, const char *name,
                                      uint64_t *obj, Error **errp)
275 276
{
    /* FIXME: qobject_to_qint mishandles values over INT64_MAX */
277 278
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
279
    QInt *qint;
280

281 282 283 284
    if (!qobj) {
        return;
    }
    qint = qobject_to_qint(qobj);
285 286 287 288 289 290 291 292 293
    if (!qint) {
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "integer");
        return;
    }

    *obj = qint_get_int(qint);
}

294 295
static void qobject_input_type_bool(Visitor *v, const char *name, bool *obj,
                                    Error **errp)
M
Michael Roth 已提交
296
{
297 298
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
299
    QBool *qbool;
M
Michael Roth 已提交
300

301 302 303 304
    if (!qobj) {
        return;
    }
    qbool = qobject_to_qbool(qobj);
305
    if (!qbool) {
306 307
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "boolean");
M
Michael Roth 已提交
308 309 310
        return;
    }

311
    *obj = qbool_get_bool(qbool);
M
Michael Roth 已提交
312 313
}

314 315
static void qobject_input_type_str(Visitor *v, const char *name, char **obj,
                                   Error **errp)
M
Michael Roth 已提交
316
{
317 318
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
319
    QString *qstr;
M
Michael Roth 已提交
320

321 322 323 324 325
    *obj = NULL;
    if (!qobj) {
        return;
    }
    qstr = qobject_to_qstring(qobj);
326
    if (!qstr) {
327 328
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "string");
M
Michael Roth 已提交
329 330 331
        return;
    }

332
    *obj = g_strdup(qstring_get_str(qstr));
M
Michael Roth 已提交
333 334
}

335 336
static void qobject_input_type_number(Visitor *v, const char *name, double *obj,
                                      Error **errp)
M
Michael Roth 已提交
337
{
338 339
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
340 341
    QInt *qint;
    QFloat *qfloat;
M
Michael Roth 已提交
342

343 344 345
    if (!qobj) {
        return;
    }
346 347 348
    qint = qobject_to_qint(qobj);
    if (qint) {
        *obj = qint_get_int(qobject_to_qint(qobj));
M
Michael Roth 已提交
349 350 351
        return;
    }

352 353
    qfloat = qobject_to_qfloat(qobj);
    if (qfloat) {
354
        *obj = qfloat_get_double(qobject_to_qfloat(qobj));
355
        return;
356
    }
357 358 359

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

362 363
static void qobject_input_type_any(Visitor *v, const char *name, QObject **obj,
                                   Error **errp)
364
{
365 366
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
367

368
    *obj = NULL;
369 370 371 372
    if (!qobj) {
        return;
    }

373 374 375 376
    qobject_incref(qobj);
    *obj = qobj;
}

377
static void qobject_input_type_null(Visitor *v, const char *name, Error **errp)
E
Eric Blake 已提交
378
{
379 380
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, true, errp);
381

382 383 384 385
    if (!qobj) {
        return;
    }

386 387 388 389
    if (qobject_type(qobj) != QTYPE_QNULL) {
        error_setg(errp, QERR_INVALID_PARAMETER_TYPE, name ? name : "null",
                   "null");
    }
E
Eric Blake 已提交
390 391
}

392
static void qobject_input_optional(Visitor *v, const char *name, bool *present)
M
Michael Roth 已提交
393
{
394 395
    QObjectInputVisitor *qiv = to_qiv(v);
    QObject *qobj = qobject_input_get_object(qiv, name, false, NULL);
M
Michael Roth 已提交
396 397 398 399 400 401 402 403 404

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

    *present = true;
}

405
static void qobject_input_free(Visitor *v)
E
Eric Blake 已提交
406
{
407
    QObjectInputVisitor *qiv = to_qiv(v);
408 409 410 411
    while (!QSLIST_EMPTY(&qiv->stack)) {
        StackObject *tos = QSLIST_FIRST(&qiv->stack);

        QSLIST_REMOVE_HEAD(&qiv->stack, node);
412
        qobject_input_stack_object_free(tos);
413
    }
E
Eric Blake 已提交
414

415 416
    qobject_decref(qiv->root);
    g_free(qiv);
E
Eric Blake 已提交
417 418
}

419
Visitor *qobject_input_visitor_new(QObject *obj, bool strict)
M
Michael Roth 已提交
420
{
421
    QObjectInputVisitor *v;
M
Michael Roth 已提交
422

423
    assert(obj);
424
    v = g_malloc0(sizeof(*v));
M
Michael Roth 已提交
425

426
    v->visitor.type = VISITOR_INPUT;
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
    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;
443
    v->strict = strict;
M
Michael Roth 已提交
444

445
    v->root = obj;
446
    qobject_incref(obj);
M
Michael Roth 已提交
447

448
    return &v->visitor;
M
Michael Roth 已提交
449
}