4 * Copyright (C) 2009 Red Hat Inc.
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"
22 * qdict_new(): Create a new QDict
24 * Return strong reference.
26 QDict
*qdict_new(void)
30 qdict
= g_malloc0(sizeof(*qdict
));
31 qobject_init(QOBJECT(qdict
), QTYPE_QDICT
);
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);
53 * alloc_entry(): allocate a new QDictEntry
55 static QDictEntry
*alloc_entry(const char *key
, QObject
*value
)
59 entry
= g_malloc0(sizeof(*entry
));
60 entry
->key
= g_strdup(key
);
67 * qdict_entry_value(): Return qdict entry value
69 * Return weak reference.
71 QObject
*qdict_entry_value(const QDictEntry
*entry
)
77 * qdict_entry_key(): Return qdict entry key
79 * Return a *pointer* to the string, it has to be duplicated before being
82 const char *qdict_entry_key(const QDictEntry
*entry
)
88 * qdict_find(): List lookup function
90 static QDictEntry
*qdict_find(const QDict
*qdict
,
91 const char *key
, unsigned int bucket
)
95 QLIST_FOREACH(entry
, &qdict
->table
[bucket
], next
)
96 if (!strcmp(entry
->key
, key
))
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
)
118 bucket
= tdb_hash(key
) % QDICT_BUCKET_MAX
;
119 entry
= qdict_find(qdict
, key
, bucket
);
121 /* replace key's value */
122 qobject_unref(entry
->value
);
123 entry
->value
= value
;
125 /* allocate a new entry */
126 entry
= alloc_entry(key
, value
);
127 QLIST_INSERT_HEAD(&qdict
->table
[bucket
], entry
, next
);
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
)
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
)
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
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
243 * This function assumes that 'key' exists and it stores a
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
,
263 QNum
*qnum
= qobject_to(QNum
, qdict_get(qdict
, key
));
266 if (!qnum
|| !qnum_get_try_int(qnum
, &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
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
)
306 for (i
= first_bucket
; i
< QDICT_BUCKET_MAX
; i
++) {
307 if (!QLIST_EMPTY(&qdict
->table
[i
])) {
308 return QLIST_FIRST(&qdict
->table
[i
]);
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
)
330 ret
= QLIST_NEXT(entry
, next
);
332 unsigned int bucket
= tdb_hash(entry
->key
) % QDICT_BUCKET_MAX
;
333 ret
= qdict_next_entry(qdict
, bucket
+ 1);
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
)
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
));
361 * qentry_destroy(): Free all the memory allocated by a QDictEntry
363 static void qentry_destroy(QDictEntry
*e
)
366 assert(e
->key
!= NULL
);
367 assert(e
->value
!= NULL
);
369 qobject_unref(e
->value
);
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
)
383 entry
= qdict_find(qdict
, key
, tdb_hash(key
) % QDICT_BUCKET_MAX
);
385 QLIST_REMOVE(entry
, next
);
386 qentry_destroy(entry
);
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
);
404 if (qdict_size(dict_x
) != qdict_size(dict_y
)) {
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
)) {
421 * qdict_destroy_obj(): Free all the memory allocated by a QDict
423 void qdict_destroy_obj(QObject
*obj
)
429 qdict
= qobject_to(QDict
, obj
);
431 for (i
= 0; i
< QDICT_BUCKET_MAX
; i
++) {
432 QDictEntry
*entry
= QLIST_FIRST(&qdict
->table
[i
]);
434 QDictEntry
*tmp
= QLIST_NEXT(entry
, next
);
435 QLIST_REMOVE(entry
, next
);
436 qentry_destroy(entry
);