2010-05-12 21:34:42 +02: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 20:27:07 +02:00
|
|
|
#ifndef QDICT_H
|
|
|
|
#define QDICT_H
|
|
|
|
|
|
|
|
#include "qobject.h"
|
2009-12-10 20:15:54 +01:00
|
|
|
#include "qlist.h"
|
2009-09-12 09:36:22 +02:00
|
|
|
#include "qemu-queue.h"
|
2009-08-28 20:27:07 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2010-06-07 20:45:22 +02:00
|
|
|
#define QDICT_BUCKET_MAX 512
|
2009-08-28 20:27:07 +02:00
|
|
|
|
|
|
|
typedef struct QDictEntry {
|
|
|
|
char *key;
|
|
|
|
QObject *value;
|
2009-09-12 09:36:22 +02:00
|
|
|
QLIST_ENTRY(QDictEntry) next;
|
2009-08-28 20:27:07 +02:00
|
|
|
} QDictEntry;
|
|
|
|
|
|
|
|
typedef struct QDict {
|
|
|
|
QObject_HEAD;
|
|
|
|
size_t size;
|
2010-06-07 20:45:22 +02:00
|
|
|
QLIST_HEAD(,QDictEntry) table[QDICT_BUCKET_MAX];
|
2009-08-28 20:27:07 +02:00
|
|
|
} QDict;
|
|
|
|
|
|
|
|
/* Object API */
|
|
|
|
QDict *qdict_new(void);
|
2010-06-07 21:53:51 +02:00
|
|
|
const char *qdict_entry_key(const QDictEntry *entry);
|
|
|
|
QObject *qdict_entry_value(const QDictEntry *entry);
|
2009-08-28 20:27:07 +02: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);
|
|
|
|
QDict *qobject_to_qdict(const QObject *obj);
|
2009-10-13 18:56:58 +02:00
|
|
|
void qdict_iter(const QDict *qdict,
|
|
|
|
void (*iter)(const char *key, QObject *obj, void *opaque),
|
|
|
|
void *opaque);
|
2010-06-07 21:07:29 +02:00
|
|
|
const QDictEntry *qdict_first(const QDict *qdict);
|
|
|
|
const QDictEntry *qdict_next(const QDict *qdict, const QDictEntry *entry);
|
2009-08-28 20:27:07 +02:00
|
|
|
|
|
|
|
/* Helper to qdict_put_obj(), accepts any object */
|
|
|
|
#define qdict_put(qdict, key, obj) \
|
|
|
|
qdict_put_obj(qdict, key, QOBJECT(obj))
|
|
|
|
|
|
|
|
/* High level helpers */
|
2010-01-27 17:16:38 +01:00
|
|
|
double qdict_get_double(const QDict *qdict, const char *key);
|
2009-08-28 20:27:07 +02:00
|
|
|
int64_t qdict_get_int(const QDict *qdict, const char *key);
|
2009-12-10 20:15:53 +01:00
|
|
|
int qdict_get_bool(const QDict *qdict, const char *key);
|
2009-12-10 20:15:54 +01:00
|
|
|
QList *qdict_get_qlist(const QDict *qdict, const char *key);
|
2010-01-21 22:15:39 +01:00
|
|
|
QDict *qdict_get_qdict(const QDict *qdict, const char *key);
|
2009-08-28 20:27:07 +02: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 00:20:54 +02:00
|
|
|
int64_t def_value);
|
2010-06-07 22:25:04 +02:00
|
|
|
int qdict_get_try_bool(const QDict *qdict, const char *key, int def_value);
|
2009-08-28 20:27:07 +02:00
|
|
|
const char *qdict_get_try_str(const QDict *qdict, const char *key);
|
|
|
|
|
|
|
|
#endif /* QDICT_H */
|