4 * Copyright (C) 2009 Red Hat Inc.
7 * Luiz Capitulino <lcapitulino@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
19 #include "qemu-queue.h"
20 #include "qemu-common.h"
22 static void qdict_destroy_obj(QObject
*obj
);
24 static const QType qdict_type
= {
26 .destroy
= qdict_destroy_obj
,
30 * qdict_new(): Create a new QDict
32 * Return strong reference.
34 QDict
*qdict_new(void)
38 qdict
= qemu_mallocz(sizeof(*qdict
));
39 QOBJECT_INIT(qdict
, &qdict_type
);
45 * qobject_to_qdict(): Convert a QObject into a QDict
47 QDict
*qobject_to_qdict(const QObject
*obj
)
49 if (qobject_type(obj
) != QTYPE_QDICT
)
52 return container_of(obj
, QDict
, base
);
56 * tdb_hash(): based on the hash agorithm from gdbm, via tdb
57 * (from module-init-tools)
59 static unsigned int tdb_hash(const char *name
)
61 unsigned value
; /* Used to compute the hash value. */
62 unsigned i
; /* Used to cycle through random values. */
64 /* Set the initial value from the key size. */
65 for (value
= 0x238F13AF * strlen(name
), i
=0; name
[i
]; i
++)
66 value
= (value
+ (((const unsigned char *)name
)[i
] << (i
*5 % 24)));
68 return (1103515243 * value
+ 12345);
72 * alloc_entry(): allocate a new QDictEntry
74 static QDictEntry
*alloc_entry(const char *key
, QObject
*value
)
78 entry
= qemu_mallocz(sizeof(*entry
));
79 entry
->key
= qemu_strdup(key
);
86 * qdict_find(): List lookup function
88 static QDictEntry
*qdict_find(const QDict
*qdict
,
89 const char *key
, unsigned int hash
)
93 QLIST_FOREACH(entry
, &qdict
->table
[hash
], next
)
94 if (!strcmp(entry
->key
, key
))
101 * qdict_put_obj(): Put a new QObject into the dictionary
103 * Insert the pair 'key:value' into 'qdict', if 'key' already exists
104 * its 'value' will be replaced.
106 * This is done by freeing the reference to the stored QObject and
107 * storing the new one in the same entry.
109 * NOTE: ownership of 'value' is transferred to the QDict
111 void qdict_put_obj(QDict
*qdict
, const char *key
, QObject
*value
)
116 hash
= tdb_hash(key
) % QDICT_HASH_SIZE
;
117 entry
= qdict_find(qdict
, key
, hash
);
119 /* replace key's value */
120 qobject_decref(entry
->value
);
121 entry
->value
= value
;
123 /* allocate a new entry */
124 entry
= alloc_entry(key
, value
);
125 QLIST_INSERT_HEAD(&qdict
->table
[hash
], entry
, next
);
131 * qdict_get(): Lookup for a given 'key'
133 * Return a weak reference to the QObject associated with 'key' if
134 * 'key' is present in the dictionary, NULL otherwise.
136 QObject
*qdict_get(const QDict
*qdict
, const char *key
)
140 entry
= qdict_find(qdict
, key
, tdb_hash(key
) % QDICT_HASH_SIZE
);
141 return (entry
== NULL
? NULL
: entry
->value
);
145 * qdict_haskey(): Check if 'key' exists
147 * Return 1 if 'key' exists in the dict, 0 otherwise
149 int qdict_haskey(const QDict
*qdict
, const char *key
)
151 unsigned int hash
= tdb_hash(key
) % QDICT_HASH_SIZE
;
152 return (qdict_find(qdict
, key
, hash
) == NULL
? 0 : 1);
156 * qdict_size(): Return the size of the dictionary
158 size_t qdict_size(const QDict
*qdict
)
164 * qdict_get_obj(): Get a QObject of a specific type
166 static QObject
*qdict_get_obj(const QDict
*qdict
, const char *key
,
171 obj
= qdict_get(qdict
, key
);
173 assert(qobject_type(obj
) == type
);
179 * qdict_get_double(): Get an number mapped by 'key'
181 * This function assumes that 'key' exists and it stores a
182 * QFloat or QInt object.
184 * Return number mapped by 'key'.
186 double qdict_get_double(const QDict
*qdict
, const char *key
)
188 QObject
*obj
= qdict_get(qdict
, key
);
191 switch (qobject_type(obj
)) {
193 return qfloat_get_double(qobject_to_qfloat(obj
));
195 return qint_get_int(qobject_to_qint(obj
));
202 * qdict_get_int(): Get an integer mapped by 'key'
204 * This function assumes that 'key' exists and it stores a
207 * Return integer mapped by 'key'.
209 int64_t qdict_get_int(const QDict
*qdict
, const char *key
)
211 QObject
*obj
= qdict_get_obj(qdict
, key
, QTYPE_QINT
);
212 return qint_get_int(qobject_to_qint(obj
));
216 * qdict_get_bool(): Get a bool mapped by 'key'
218 * This function assumes that 'key' exists and it stores a
221 * Return bool mapped by 'key'.
223 int qdict_get_bool(const QDict
*qdict
, const char *key
)
225 QObject
*obj
= qdict_get_obj(qdict
, key
, QTYPE_QBOOL
);
226 return qbool_get_int(qobject_to_qbool(obj
));
230 * qdict_get_qlist(): Get the QList mapped by 'key'
232 * This function assumes that 'key' exists and it stores a
235 * Return QList mapped by 'key'.
237 QList
*qdict_get_qlist(const QDict
*qdict
, const char *key
)
239 return qobject_to_qlist(qdict_get_obj(qdict
, key
, QTYPE_QLIST
));
243 * qdict_get_qdict(): Get the QDict mapped by 'key'
245 * This function assumes that 'key' exists and it stores a
248 * Return QDict mapped by 'key'.
250 QDict
*qdict_get_qdict(const QDict
*qdict
, const char *key
)
252 return qobject_to_qdict(qdict_get_obj(qdict
, key
, QTYPE_QDICT
));
256 * qdict_get_str(): Get a pointer to the stored string mapped
259 * This function assumes that 'key' exists and it stores a
262 * Return pointer to the string mapped by 'key'.
264 const char *qdict_get_str(const QDict
*qdict
, const char *key
)
266 QObject
*obj
= qdict_get_obj(qdict
, key
, QTYPE_QSTRING
);
267 return qstring_get_str(qobject_to_qstring(obj
));
271 * qdict_get_try_int(): Try to get integer mapped by 'key'
273 * Return integer mapped by 'key', if it is not present in
274 * the dictionary or if the stored object is not of QInt type
275 * 'err_value' will be returned.
277 int64_t qdict_get_try_int(const QDict
*qdict
, const char *key
,
282 obj
= qdict_get(qdict
, key
);
283 if (!obj
|| qobject_type(obj
) != QTYPE_QINT
)
286 return qint_get_int(qobject_to_qint(obj
));
290 * qdict_get_try_str(): Try to get a pointer to the stored string
293 * Return a pointer to the string mapped by 'key', if it is not present
294 * in the dictionary or if the stored object is not of QString type
295 * NULL will be returned.
297 const char *qdict_get_try_str(const QDict
*qdict
, const char *key
)
301 obj
= qdict_get(qdict
, key
);
302 if (!obj
|| qobject_type(obj
) != QTYPE_QSTRING
)
305 return qstring_get_str(qobject_to_qstring(obj
));
309 * qdict_iter(): Iterate over all the dictionary's stored values.
311 * This function allows the user to provide an iterator, which will be
312 * called for each stored value in the dictionary.
314 void qdict_iter(const QDict
*qdict
,
315 void (*iter
)(const char *key
, QObject
*obj
, void *opaque
),
321 for (i
= 0; i
< QDICT_HASH_SIZE
; i
++) {
322 QLIST_FOREACH(entry
, &qdict
->table
[i
], next
)
323 iter(entry
->key
, entry
->value
, opaque
);
328 * qentry_destroy(): Free all the memory allocated by a QDictEntry
330 static void qentry_destroy(QDictEntry
*e
)
333 assert(e
->key
!= NULL
);
334 assert(e
->value
!= NULL
);
336 qobject_decref(e
->value
);
342 * qdict_del(): Delete a 'key:value' pair from the dictionary
344 * This will destroy all data allocated by this entry.
346 void qdict_del(QDict
*qdict
, const char *key
)
350 entry
= qdict_find(qdict
, key
, tdb_hash(key
) % QDICT_HASH_SIZE
);
352 QLIST_REMOVE(entry
, next
);
353 qentry_destroy(entry
);
359 * qdict_destroy_obj(): Free all the memory allocated by a QDict
361 static void qdict_destroy_obj(QObject
*obj
)
367 qdict
= qobject_to_qdict(obj
);
369 for (i
= 0; i
< QDICT_HASH_SIZE
; i
++) {
370 QDictEntry
*entry
= QLIST_FIRST(&qdict
->table
[i
]);
372 QDictEntry
*tmp
= QLIST_NEXT(entry
, next
);
373 QLIST_REMOVE(entry
, next
);
374 qentry_destroy(entry
);