curl: remove compatibility code, require 7.29.0
[qemu/ar7.git] / qobject / qdict.c
blobd84443391eed5c1f0b2e5ddcb2e2369ecadca1e9
1 /*
2 * QDict Module
4 * Copyright (C) 2009 Red Hat Inc.
6 * Authors:
7 * Luiz Capitulino <lcapitulino@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qapi/qmp/qnum.h"
15 #include "qapi/qmp/qdict.h"
16 #include "qapi/qmp/qbool.h"
17 #include "qapi/qmp/qnull.h"
18 #include "qapi/qmp/qstring.h"
19 #include "qobject-internal.h"
21 /**
22 * qdict_new(): Create a new QDict
24 * Return strong reference.
26 QDict *qdict_new(void)
28 QDict *qdict;
30 qdict = g_malloc0(sizeof(*qdict));
31 qobject_init(QOBJECT(qdict), QTYPE_QDICT);
33 return qdict;
36 /**
37 * tdb_hash(): based on the hash algorithm from gdbm, via tdb
38 * (from module-init-tools)
40 static unsigned int tdb_hash(const char *name)
42 unsigned value; /* Used to compute the hash value. */
43 unsigned i; /* Used to cycle through random values. */
45 /* Set the initial value from the key size. */
46 for (value = 0x238F13AF * strlen(name), i=0; name[i]; i++)
47 value = (value + (((const unsigned char *)name)[i] << (i*5 % 24)));
49 return (1103515243 * value + 12345);
52 /**
53 * alloc_entry(): allocate a new QDictEntry
55 static QDictEntry *alloc_entry(const char *key, QObject *value)
57 QDictEntry *entry;
59 entry = g_malloc0(sizeof(*entry));
60 entry->key = g_strdup(key);
61 entry->value = value;
63 return entry;
66 /**
67 * qdict_entry_value(): Return qdict entry value
69 * Return weak reference.
71 QObject *qdict_entry_value(const QDictEntry *entry)
73 return entry->value;
76 /**
77 * qdict_entry_key(): Return qdict entry key
79 * Return a *pointer* to the string, it has to be duplicated before being
80 * stored.
82 const char *qdict_entry_key(const QDictEntry *entry)
84 return entry->key;
87 /**
88 * qdict_find(): List lookup function
90 static QDictEntry *qdict_find(const QDict *qdict,
91 const char *key, unsigned int bucket)
93 QDictEntry *entry;
95 QLIST_FOREACH(entry, &qdict->table[bucket], next)
96 if (!strcmp(entry->key, key))
97 return entry;
99 return NULL;
103 * qdict_put_obj(): Put a new QObject into the dictionary
105 * Insert the pair 'key:value' into 'qdict', if 'key' already exists
106 * its 'value' will be replaced.
108 * This is done by freeing the reference to the stored QObject and
109 * storing the new one in the same entry.
111 * NOTE: ownership of 'value' is transferred to the QDict
113 void qdict_put_obj(QDict *qdict, const char *key, QObject *value)
115 unsigned int bucket;
116 QDictEntry *entry;
118 bucket = tdb_hash(key) % QDICT_BUCKET_MAX;
119 entry = qdict_find(qdict, key, bucket);
120 if (entry) {
121 /* replace key's value */
122 qobject_unref(entry->value);
123 entry->value = value;
124 } else {
125 /* allocate a new entry */
126 entry = alloc_entry(key, value);
127 QLIST_INSERT_HEAD(&qdict->table[bucket], entry, next);
128 qdict->size++;
132 void qdict_put_int(QDict *qdict, const char *key, int64_t value)
134 qdict_put(qdict, key, qnum_from_int(value));
137 void qdict_put_bool(QDict *qdict, const char *key, bool value)
139 qdict_put(qdict, key, qbool_from_bool(value));
142 void qdict_put_str(QDict *qdict, const char *key, const char *value)
144 qdict_put(qdict, key, qstring_from_str(value));
147 void qdict_put_null(QDict *qdict, const char *key)
149 qdict_put(qdict, key, qnull());
153 * qdict_get(): Lookup for a given 'key'
155 * Return a weak reference to the QObject associated with 'key' if
156 * 'key' is present in the dictionary, NULL otherwise.
158 QObject *qdict_get(const QDict *qdict, const char *key)
160 QDictEntry *entry;
162 entry = qdict_find(qdict, key, tdb_hash(key) % QDICT_BUCKET_MAX);
163 return (entry == NULL ? NULL : entry->value);
167 * qdict_haskey(): Check if 'key' exists
169 * Return 1 if 'key' exists in the dict, 0 otherwise
171 int qdict_haskey(const QDict *qdict, const char *key)
173 unsigned int bucket = tdb_hash(key) % QDICT_BUCKET_MAX;
174 return (qdict_find(qdict, key, bucket) == NULL ? 0 : 1);
178 * qdict_size(): Return the size of the dictionary
180 size_t qdict_size(const QDict *qdict)
182 return qdict->size;
186 * qdict_get_double(): Get an number mapped by 'key'
188 * This function assumes that 'key' exists and it stores a QNum.
190 * Return number mapped by 'key'.
192 double qdict_get_double(const QDict *qdict, const char *key)
194 return qnum_get_double(qobject_to(QNum, qdict_get(qdict, key)));
198 * qdict_get_int(): Get an integer mapped by 'key'
200 * This function assumes that 'key' exists and it stores a
201 * QNum representable as int.
203 * Return integer mapped by 'key'.
205 int64_t qdict_get_int(const QDict *qdict, const char *key)
207 return qnum_get_int(qobject_to(QNum, qdict_get(qdict, key)));
211 * qdict_get_bool(): Get a bool mapped by 'key'
213 * This function assumes that 'key' exists and it stores a
214 * QBool object.
216 * Return bool mapped by 'key'.
218 bool qdict_get_bool(const QDict *qdict, const char *key)
220 return qbool_get_bool(qobject_to(QBool, qdict_get(qdict, key)));
224 * qdict_get_qlist(): If @qdict maps @key to a QList, return it, else NULL.
226 QList *qdict_get_qlist(const QDict *qdict, const char *key)
228 return qobject_to(QList, qdict_get(qdict, key));
232 * qdict_get_qdict(): If @qdict maps @key to a QDict, return it, else NULL.
234 QDict *qdict_get_qdict(const QDict *qdict, const char *key)
236 return qobject_to(QDict, qdict_get(qdict, key));
240 * qdict_get_str(): Get a pointer to the stored string mapped
241 * by 'key'
243 * This function assumes that 'key' exists and it stores a
244 * QString object.
246 * Return pointer to the string mapped by 'key'.
248 const char *qdict_get_str(const QDict *qdict, const char *key)
250 return qstring_get_str(qobject_to(QString, qdict_get(qdict, key)));
254 * qdict_get_try_int(): Try to get integer mapped by 'key'
256 * Return integer mapped by 'key', if it is not present in the
257 * dictionary or if the stored object is not a QNum representing an
258 * integer, 'def_value' will be returned.
260 int64_t qdict_get_try_int(const QDict *qdict, const char *key,
261 int64_t def_value)
263 QNum *qnum = qobject_to(QNum, qdict_get(qdict, key));
264 int64_t val;
266 if (!qnum || !qnum_get_try_int(qnum, &val)) {
267 return def_value;
270 return val;
274 * qdict_get_try_bool(): Try to get a bool mapped by 'key'
276 * Return bool mapped by 'key', if it is not present in the
277 * dictionary or if the stored object is not of QBool type
278 * 'def_value' will be returned.
280 bool qdict_get_try_bool(const QDict *qdict, const char *key, bool def_value)
282 QBool *qbool = qobject_to(QBool, qdict_get(qdict, key));
284 return qbool ? qbool_get_bool(qbool) : def_value;
288 * qdict_get_try_str(): Try to get a pointer to the stored string
289 * mapped by 'key'
291 * Return a pointer to the string mapped by 'key', if it is not present
292 * in the dictionary or if the stored object is not of QString type
293 * NULL will be returned.
295 const char *qdict_get_try_str(const QDict *qdict, const char *key)
297 QString *qstr = qobject_to(QString, qdict_get(qdict, key));
299 return qstr ? qstring_get_str(qstr) : NULL;
302 static QDictEntry *qdict_next_entry(const QDict *qdict, int first_bucket)
304 int i;
306 for (i = first_bucket; i < QDICT_BUCKET_MAX; i++) {
307 if (!QLIST_EMPTY(&qdict->table[i])) {
308 return QLIST_FIRST(&qdict->table[i]);
312 return NULL;
316 * qdict_first(): Return first qdict entry for iteration.
318 const QDictEntry *qdict_first(const QDict *qdict)
320 return qdict_next_entry(qdict, 0);
324 * qdict_next(): Return next qdict entry in an iteration.
326 const QDictEntry *qdict_next(const QDict *qdict, const QDictEntry *entry)
328 QDictEntry *ret;
330 ret = QLIST_NEXT(entry, next);
331 if (!ret) {
332 unsigned int bucket = tdb_hash(entry->key) % QDICT_BUCKET_MAX;
333 ret = qdict_next_entry(qdict, bucket + 1);
336 return ret;
340 * qdict_clone_shallow(): Clones a given QDict. Its entries are not copied, but
341 * another reference is added.
343 QDict *qdict_clone_shallow(const QDict *src)
345 QDict *dest;
346 QDictEntry *entry;
347 int i;
349 dest = qdict_new();
351 for (i = 0; i < QDICT_BUCKET_MAX; i++) {
352 QLIST_FOREACH(entry, &src->table[i], next) {
353 qdict_put_obj(dest, entry->key, qobject_ref(entry->value));
357 return dest;
361 * qentry_destroy(): Free all the memory allocated by a QDictEntry
363 static void qentry_destroy(QDictEntry *e)
365 assert(e != NULL);
366 assert(e->key != NULL);
367 assert(e->value != NULL);
369 qobject_unref(e->value);
370 g_free(e->key);
371 g_free(e);
375 * qdict_del(): Delete a 'key:value' pair from the dictionary
377 * This will destroy all data allocated by this entry.
379 void qdict_del(QDict *qdict, const char *key)
381 QDictEntry *entry;
383 entry = qdict_find(qdict, key, tdb_hash(key) % QDICT_BUCKET_MAX);
384 if (entry) {
385 QLIST_REMOVE(entry, next);
386 qentry_destroy(entry);
387 qdict->size--;
392 * qdict_is_equal(): Test whether the two QDicts are equal
394 * Here, equality means whether they contain the same keys and whether
395 * the respective values are in turn equal (i.e. invoking
396 * qobject_is_equal() on them yields true).
398 bool qdict_is_equal(const QObject *x, const QObject *y)
400 const QDict *dict_x = qobject_to(QDict, x);
401 const QDict *dict_y = qobject_to(QDict, y);
402 const QDictEntry *e;
404 if (qdict_size(dict_x) != qdict_size(dict_y)) {
405 return false;
408 for (e = qdict_first(dict_x); e; e = qdict_next(dict_x, e)) {
409 const QObject *obj_x = qdict_entry_value(e);
410 const QObject *obj_y = qdict_get(dict_y, qdict_entry_key(e));
412 if (!qobject_is_equal(obj_x, obj_y)) {
413 return false;
417 return true;
421 * qdict_destroy_obj(): Free all the memory allocated by a QDict
423 void qdict_destroy_obj(QObject *obj)
425 int i;
426 QDict *qdict;
428 assert(obj != NULL);
429 qdict = qobject_to(QDict, obj);
431 for (i = 0; i < QDICT_BUCKET_MAX; i++) {
432 QDictEntry *entry = QLIST_FIRST(&qdict->table[i]);
433 while (entry) {
434 QDictEntry *tmp = QLIST_NEXT(entry, next);
435 QLIST_REMOVE(entry, next);
436 qentry_destroy(entry);
437 entry = tmp;
441 g_free(qdict);