2 This file is part of PulseAudio.
4 Copyright 2004-2008 Lennart Poettering
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
28 #include <pulse/xmalloc.h>
29 #include <pulsecore/idxset.h>
30 #include <pulsecore/flist.h>
31 #include <pulsecore/macro.h>
37 struct hashmap_entry
{
41 struct hashmap_entry
*bucket_next
, *bucket_previous
;
42 struct hashmap_entry
*iterate_next
, *iterate_previous
;
46 pa_hash_func_t hash_func
;
47 pa_compare_func_t compare_func
;
49 struct hashmap_entry
*iterate_list_head
, *iterate_list_tail
;
53 #define BY_HASH(h) ((struct hashmap_entry**) ((uint8_t*) (h) + PA_ALIGN(sizeof(pa_hashmap))))
55 PA_STATIC_FLIST_DECLARE(entries
, 0, pa_xfree
);
57 pa_hashmap
*pa_hashmap_new(pa_hash_func_t hash_func
, pa_compare_func_t compare_func
) {
60 h
= pa_xmalloc0(PA_ALIGN(sizeof(pa_hashmap
)) + NBUCKETS
*sizeof(struct hashmap_entry
*));
62 h
->hash_func
= hash_func
? hash_func
: pa_idxset_trivial_hash_func
;
63 h
->compare_func
= compare_func
? compare_func
: pa_idxset_trivial_compare_func
;
66 h
->iterate_list_head
= h
->iterate_list_tail
= NULL
;
71 static void remove_entry(pa_hashmap
*h
, struct hashmap_entry
*e
) {
75 /* Remove from iteration list */
77 e
->iterate_next
->iterate_previous
= e
->iterate_previous
;
79 h
->iterate_list_tail
= e
->iterate_previous
;
81 if (e
->iterate_previous
)
82 e
->iterate_previous
->iterate_next
= e
->iterate_next
;
84 h
->iterate_list_head
= e
->iterate_next
;
86 /* Remove from hash table bucket list */
88 e
->bucket_next
->bucket_previous
= e
->bucket_previous
;
90 if (e
->bucket_previous
)
91 e
->bucket_previous
->bucket_next
= e
->bucket_next
;
93 unsigned hash
= h
->hash_func(e
->key
) % NBUCKETS
;
94 BY_HASH(h
)[hash
] = e
->bucket_next
;
97 if (pa_flist_push(PA_STATIC_FLIST_GET(entries
), e
) < 0)
100 pa_assert(h
->n_entries
>= 1);
104 void pa_hashmap_free(pa_hashmap
*h
, pa_free2_cb_t free_cb
, void *userdata
) {
107 while (h
->iterate_list_head
) {
109 data
= h
->iterate_list_head
->value
;
110 remove_entry(h
, h
->iterate_list_head
);
113 free_cb(data
, userdata
);
119 static struct hashmap_entry
*hash_scan(pa_hashmap
*h
, unsigned hash
, const void *key
) {
120 struct hashmap_entry
*e
;
122 pa_assert(hash
< NBUCKETS
);
124 for (e
= BY_HASH(h
)[hash
]; e
; e
= e
->bucket_next
)
125 if (h
->compare_func(e
->key
, key
) == 0)
131 int pa_hashmap_put(pa_hashmap
*h
, const void *key
, void *value
) {
132 struct hashmap_entry
*e
;
137 hash
= h
->hash_func(key
) % NBUCKETS
;
139 if (hash_scan(h
, hash
, key
))
142 if (!(e
= pa_flist_pop(PA_STATIC_FLIST_GET(entries
))))
143 e
= pa_xnew(struct hashmap_entry
, 1);
148 /* Insert into hash table */
149 e
->bucket_next
= BY_HASH(h
)[hash
];
150 e
->bucket_previous
= NULL
;
151 if (BY_HASH(h
)[hash
])
152 BY_HASH(h
)[hash
]->bucket_previous
= e
;
153 BY_HASH(h
)[hash
] = e
;
155 /* Insert into iteration list */
156 e
->iterate_previous
= h
->iterate_list_tail
;
157 e
->iterate_next
= NULL
;
158 if (h
->iterate_list_tail
) {
159 pa_assert(h
->iterate_list_head
);
160 h
->iterate_list_tail
->iterate_next
= e
;
162 pa_assert(!h
->iterate_list_head
);
163 h
->iterate_list_head
= e
;
165 h
->iterate_list_tail
= e
;
168 pa_assert(h
->n_entries
>= 1);
173 void* pa_hashmap_get(pa_hashmap
*h
, const void *key
) {
175 struct hashmap_entry
*e
;
179 hash
= h
->hash_func(key
) % NBUCKETS
;
181 if (!(e
= hash_scan(h
, hash
, key
)))
187 void* pa_hashmap_remove(pa_hashmap
*h
, const void *key
) {
188 struct hashmap_entry
*e
;
194 hash
= h
->hash_func(key
) % NBUCKETS
;
196 if (!(e
= hash_scan(h
, hash
, key
)))
205 void *pa_hashmap_iterate(pa_hashmap
*h
, void **state
, const void **key
) {
206 struct hashmap_entry
*e
;
211 if (*state
== (void*) -1)
214 if (!*state
&& !h
->iterate_list_head
)
217 e
= *state
? *state
: h
->iterate_list_head
;
220 *state
= e
->iterate_next
;
230 *state
= (void *) -1;
238 void *pa_hashmap_iterate_backwards(pa_hashmap
*h
, void **state
, const void **key
) {
239 struct hashmap_entry
*e
;
244 if (*state
== (void*) -1)
247 if (!*state
&& !h
->iterate_list_tail
)
250 e
= *state
? *state
: h
->iterate_list_tail
;
252 if (e
->iterate_previous
)
253 *state
= e
->iterate_previous
;
263 *state
= (void *) -1;
271 void* pa_hashmap_first(pa_hashmap
*h
) {
274 if (!h
->iterate_list_head
)
277 return h
->iterate_list_head
->value
;
280 void* pa_hashmap_last(pa_hashmap
*h
) {
283 if (!h
->iterate_list_tail
)
286 return h
->iterate_list_tail
->value
;
289 void* pa_hashmap_steal_first(pa_hashmap
*h
) {
294 if (!h
->iterate_list_head
)
297 data
= h
->iterate_list_head
->value
;
298 remove_entry(h
, h
->iterate_list_head
);
303 unsigned pa_hashmap_size(pa_hashmap
*h
) {
309 pa_bool_t
pa_hashmap_isempty(pa_hashmap
*h
) {
312 return h
->n_entries
== 0;