2010-05-12 23:34:42 +04:00
|
|
|
/*
|
|
|
|
* QDict Module
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Luiz Capitulino <lcapitulino@redhat.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.
|
|
|
|
*/
|
|
|
|
|
2009-08-28 22:27:07 +04:00
|
|
|
#ifndef QDICT_H
|
|
|
|
#define QDICT_H
|
|
|
|
|
2012-12-17 21:19:43 +04:00
|
|
|
#include "qapi/qmp/qobject.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/queue.h"
|
2009-08-28 22:27:07 +04:00
|
|
|
|
2010-06-07 22:45:22 +04:00
|
|
|
#define QDICT_BUCKET_MAX 512
|
2009-08-28 22:27:07 +04:00
|
|
|
|
|
|
|
typedef struct QDictEntry {
|
|
|
|
char *key;
|
|
|
|
QObject *value;
|
2009-09-12 11:36:22 +04:00
|
|
|
QLIST_ENTRY(QDictEntry) next;
|
2009-08-28 22:27:07 +04:00
|
|
|
} QDictEntry;
|
|
|
|
|
2018-02-01 14:18:34 +03:00
|
|
|
struct QDict {
|
2018-04-19 18:01:42 +03:00
|
|
|
struct QObjectBase_ base;
|
2009-08-28 22:27:07 +04:00
|
|
|
size_t size;
|
2010-06-07 22:45:22 +04:00
|
|
|
QLIST_HEAD(,QDictEntry) table[QDICT_BUCKET_MAX];
|
2018-02-01 14:18:34 +03:00
|
|
|
};
|
2009-08-28 22:27:07 +04:00
|
|
|
|
|
|
|
/* Object API */
|
|
|
|
QDict *qdict_new(void);
|
2010-06-07 23:53:51 +04:00
|
|
|
const char *qdict_entry_key(const QDictEntry *entry);
|
|
|
|
QObject *qdict_entry_value(const QDictEntry *entry);
|
2009-08-28 22:27:07 +04:00
|
|
|
size_t qdict_size(const QDict *qdict);
|
|
|
|
void qdict_put_obj(QDict *qdict, const char *key, QObject *value);
|
|
|
|
void qdict_del(QDict *qdict, const char *key);
|
|
|
|
int qdict_haskey(const QDict *qdict, const char *key);
|
|
|
|
QObject *qdict_get(const QDict *qdict, const char *key);
|
2010-06-07 23:07:29 +04:00
|
|
|
const QDictEntry *qdict_first(const QDict *qdict);
|
|
|
|
const QDictEntry *qdict_next(const QDict *qdict, const QDictEntry *entry);
|
2009-08-28 22:27:07 +04:00
|
|
|
|
|
|
|
/* Helper to qdict_put_obj(), accepts any object */
|
|
|
|
#define qdict_put(qdict, key, obj) \
|
|
|
|
qdict_put_obj(qdict, key, QOBJECT(obj))
|
|
|
|
|
2018-02-01 14:18:36 +03:00
|
|
|
void qdict_put_bool(QDict *qdict, const char *key, bool value);
|
|
|
|
void qdict_put_int(QDict *qdict, const char *key, int64_t value);
|
|
|
|
void qdict_put_null(QDict *qdict, const char *key);
|
|
|
|
void qdict_put_str(QDict *qdict, const char *key, const char *value);
|
2017-04-28 00:58:16 +03:00
|
|
|
|
2010-01-27 19:16:38 +03:00
|
|
|
double qdict_get_double(const QDict *qdict, const char *key);
|
2009-08-28 22:27:07 +04:00
|
|
|
int64_t qdict_get_int(const QDict *qdict, const char *key);
|
2015-05-16 01:25:00 +03:00
|
|
|
bool qdict_get_bool(const QDict *qdict, const char *key);
|
2009-12-10 22:15:54 +03:00
|
|
|
QList *qdict_get_qlist(const QDict *qdict, const char *key);
|
2010-01-22 00:15:39 +03:00
|
|
|
QDict *qdict_get_qdict(const QDict *qdict, const char *key);
|
2009-08-28 22:27:07 +04:00
|
|
|
const char *qdict_get_str(const QDict *qdict, const char *key);
|
|
|
|
int64_t qdict_get_try_int(const QDict *qdict, const char *key,
|
2010-06-05 02:20:54 +04:00
|
|
|
int64_t def_value);
|
2015-05-16 01:25:00 +03:00
|
|
|
bool qdict_get_try_bool(const QDict *qdict, const char *key, bool def_value);
|
2009-08-28 22:27:07 +04:00
|
|
|
const char *qdict_get_try_str(const QDict *qdict, const char *key);
|
|
|
|
|
2013-03-15 13:35:03 +04:00
|
|
|
QDict *qdict_clone_shallow(const QDict *src);
|
2018-02-01 22:00:44 +03:00
|
|
|
|
2021-05-24 13:57:51 +03:00
|
|
|
QObject *qdict_crumple(const QDict *src, Error **errp);
|
|
|
|
void qdict_flatten(QDict *qdict);
|
|
|
|
|
2009-08-28 22:27:07 +04:00
|
|
|
#endif /* QDICT_H */
|