72cf2d4f0e
Problem: Our file sys-queue.h is a copy of the BSD file, but there are some additions and it's not entirely compatible. Because of that, there have been conflicts with system headers on BSD systems. Some hacks have been introduced in the commits15cc923584
,f40d753718
,96555a96d7
and3990d09adf
but the fixes were fragile. Solution: Avoid the conflict entirely by renaming the functions and the file. Revert the previous hacks. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
#ifndef QDICT_H
|
|
#define QDICT_H
|
|
|
|
#include "qobject.h"
|
|
#include "qemu-queue.h"
|
|
#include <stdint.h>
|
|
|
|
#define QDICT_HASH_SIZE 512
|
|
|
|
typedef struct QDictEntry {
|
|
char *key;
|
|
QObject *value;
|
|
QLIST_ENTRY(QDictEntry) next;
|
|
} QDictEntry;
|
|
|
|
typedef struct QDict {
|
|
QObject_HEAD;
|
|
size_t size;
|
|
QLIST_HEAD(,QDictEntry) table[QDICT_HASH_SIZE];
|
|
} QDict;
|
|
|
|
/* Object API */
|
|
QDict *qdict_new(void);
|
|
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);
|
|
|
|
/* Helper to qdict_put_obj(), accepts any object */
|
|
#define qdict_put(qdict, key, obj) \
|
|
qdict_put_obj(qdict, key, QOBJECT(obj))
|
|
|
|
/* High level helpers */
|
|
int64_t qdict_get_int(const QDict *qdict, const char *key);
|
|
const char *qdict_get_str(const QDict *qdict, const char *key);
|
|
int64_t qdict_get_try_int(const QDict *qdict, const char *key,
|
|
int64_t err_value);
|
|
const char *qdict_get_try_str(const QDict *qdict, const char *key);
|
|
|
|
#endif /* QDICT_H */
|