stdio.h, stdlib.h, string.h, stdarg.h and ctype.h inclusion done in setup_once.h
[platform/upstream/curl.git] / lib / hash.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at http://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22
23 #include "setup.h"
24
25 #include "hash.h"
26 #include "llist.h"
27
28 #define _MPRINTF_REPLACE /* use our functions only */
29 #include <curl/mprintf.h>
30
31 #include "curl_memory.h"
32 /* The last #include file should be: */
33 #include "memdebug.h"
34
35 static void
36 hash_element_dtor(void *user, void *element)
37 {
38   struct curl_hash *h = (struct curl_hash *) user;
39   struct curl_hash_element *e = (struct curl_hash_element *) element;
40
41   if(e->key)
42     free(e->key);
43
44   if(e->ptr)
45     h->dtor(e->ptr);
46
47   free(e);
48 }
49
50 /* return 1 on error, 0 is fine */
51 int
52 Curl_hash_init(struct curl_hash *h,
53                int slots,
54                hash_function hfunc,
55                comp_function comparator,
56                curl_hash_dtor dtor)
57 {
58   int i;
59
60   if(!slots || !hfunc || !comparator ||!dtor) {
61     return 1; /* failure */
62   }
63
64   h->hash_func = hfunc;
65   h->comp_func = comparator;
66   h->dtor = dtor;
67   h->size = 0;
68   h->slots = slots;
69
70   h->table = malloc(slots * sizeof(struct curl_llist *));
71   if(h->table) {
72     for(i = 0; i < slots; ++i) {
73       h->table[i] = Curl_llist_alloc((curl_llist_dtor) hash_element_dtor);
74       if(!h->table[i]) {
75         while(i--)
76           Curl_llist_destroy(h->table[i], NULL);
77         free(h->table);
78         return 1; /* failure */
79       }
80     }
81     return 0; /* fine */
82   }
83   else
84     return 1; /* failure */
85 }
86
87 struct curl_hash *
88 Curl_hash_alloc(int slots,
89                 hash_function hfunc,
90                 comp_function comparator,
91                 curl_hash_dtor dtor)
92 {
93   struct curl_hash *h;
94
95   if(!slots || !hfunc || !comparator ||!dtor) {
96     return NULL; /* failure */
97   }
98
99   h = malloc(sizeof(struct curl_hash));
100   if(h) {
101     if(Curl_hash_init(h, slots, hfunc, comparator, dtor)) {
102       /* failure */
103       free(h);
104       h = NULL;
105     }
106   }
107
108   return h;
109 }
110
111
112
113 static struct curl_hash_element *
114 mk_hash_element(const void *key, size_t key_len, const void *p)
115 {
116   struct curl_hash_element *he = malloc(sizeof(struct curl_hash_element));
117
118   if(he) {
119     void *dupkey = malloc(key_len);
120     if(dupkey) {
121       /* copy the key */
122       memcpy(dupkey, key, key_len);
123
124       he->key = dupkey;
125       he->key_len = key_len;
126       he->ptr = (void *) p;
127     }
128     else {
129       /* failed to duplicate the key, free memory and fail */
130       free(he);
131       he = NULL;
132     }
133   }
134   return he;
135 }
136
137 #define FETCH_LIST(x,y,z) x->table[x->hash_func(y, z, x->slots)]
138
139 /* Insert the data in the hash. If there already was a match in the hash,
140  * that data is replaced.
141  *
142  * @unittest: 1305
143  */
144 void *
145 Curl_hash_add(struct curl_hash *h, void *key, size_t key_len, void *p)
146 {
147   struct curl_hash_element  *he;
148   struct curl_llist_element *le;
149   struct curl_llist *l = FETCH_LIST (h, key, key_len);
150
151   for(le = l->head; le; le = le->next) {
152     he = (struct curl_hash_element *) le->ptr;
153     if(h->comp_func(he->key, he->key_len, key, key_len)) {
154       Curl_llist_remove(l, le, (void *)h);
155       --h->size;
156       break;
157     }
158   }
159
160   he = mk_hash_element(key, key_len, p);
161   if(he) {
162     if(Curl_llist_insert_next(l, l->tail, he)) {
163       ++h->size;
164       return p; /* return the new entry */
165     }
166     /*
167      * Couldn't insert it, destroy the 'he' element and the key again. We
168      * don't call hash_element_dtor() since that would also call the
169      * "destructor" for the actual data 'p'. When we fail, we shall not touch
170      * that data.
171      */
172     free(he->key);
173     free(he);
174   }
175
176   return NULL; /* failure */
177 }
178
179 /* remove the identified hash entry, returns non-zero on failure */
180 int Curl_hash_delete(struct curl_hash *h, void *key, size_t key_len)
181 {
182   struct curl_llist_element *le;
183   struct curl_hash_element  *he;
184   struct curl_llist *l = FETCH_LIST(h, key, key_len);
185
186   for(le = l->head; le; le = le->next) {
187     he = le->ptr;
188     if(h->comp_func(he->key, he->key_len, key, key_len)) {
189       Curl_llist_remove(l, le, (void *) h);
190       return 0;
191     }
192   }
193   return 1;
194 }
195
196 void *
197 Curl_hash_pick(struct curl_hash *h, void *key, size_t key_len)
198 {
199   struct curl_llist_element *le;
200   struct curl_hash_element  *he;
201   struct curl_llist *l = FETCH_LIST(h, key, key_len);
202
203   for(le = l->head; le; le = le->next) {
204     he = le->ptr;
205     if(h->comp_func(he->key, he->key_len, key, key_len)) {
206       return he->ptr;
207     }
208   }
209
210   return NULL;
211 }
212
213 #if defined(DEBUGBUILD) && defined(AGGRESIVE_TEST)
214 void
215 Curl_hash_apply(curl_hash *h, void *user,
216                 void (*cb)(void *user, void *ptr))
217 {
218   struct curl_llist_element  *le;
219   int                  i;
220
221   for(i = 0; i < h->slots; ++i) {
222     for(le = (h->table[i])->head;
223         le;
224         le = le->next) {
225       curl_hash_element *el = le->ptr;
226       cb(user, el->ptr);
227     }
228   }
229 }
230 #endif
231
232 void
233 Curl_hash_clean(struct curl_hash *h)
234 {
235   int i;
236
237   for(i = 0; i < h->slots; ++i) {
238     Curl_llist_destroy(h->table[i], (void *) h);
239     h->table[i] = NULL;
240   }
241
242   free(h->table);
243 }
244
245 void
246 Curl_hash_clean_with_criterium(struct curl_hash *h, void *user,
247                                int (*comp)(void *, void *))
248 {
249   struct curl_llist_element *le;
250   struct curl_llist_element *lnext;
251   struct curl_llist *list;
252   int i;
253
254   for(i = 0; i < h->slots; ++i) {
255     list = h->table[i];
256     le = list->head; /* get first list entry */
257     while(le) {
258       struct curl_hash_element *he = le->ptr;
259       lnext = le->next;
260       /* ask the callback function if we shall remove this entry or not */
261       if(comp(user, he->ptr)) {
262         Curl_llist_remove(list, le, (void *) h);
263         --h->size; /* one less entry in the hash now */
264       }
265       le = lnext;
266     }
267   }
268 }
269
270 void
271 Curl_hash_destroy(struct curl_hash *h)
272 {
273   if(!h)
274     return;
275
276   Curl_hash_clean(h);
277
278   free(h);
279 }
280
281 size_t Curl_hash_str(void* key, size_t key_length, size_t slots_num)
282 {
283   const char* key_str = (const char *) key;
284   const char *end = key_str + key_length;
285   unsigned long h = 5381;
286
287   while(key_str < end) {
288     h += h << 5;
289     h ^= (unsigned long) *key_str++;
290   }
291
292   return (h % slots_num);
293 }
294
295 size_t Curl_str_key_compare(void*k1, size_t key1_len, void*k2, size_t key2_len)
296 {
297   char *key1 = (char *)k1;
298   char *key2 = (char *)k2;
299
300   if(key1_len == key2_len &&
301       *key1 == *key2 &&
302       memcmp(key1, key2, key1_len) == 0) {
303     return 1;
304   }
305
306   return 0;
307 }
308
309 #if 0 /* useful function for debugging hashes and their contents */
310 void Curl_hash_print(struct curl_hash *h,
311                      void (*func)(void *))
312 {
313   int i;
314   struct curl_llist_element *le;
315   struct curl_llist *list;
316   struct curl_hash_element  *he;
317   if(!h)
318     return;
319
320   fprintf(stderr, "=Hash dump=\n");
321
322   for(i = 0; i < h->slots; i++) {
323     list = h->table[i];
324     le = list->head; /* get first list entry */
325     if(le) {
326       fprintf(stderr, "index %d:", i);
327       while(le) {
328         he = le->ptr;
329         if(func)
330           func(he->ptr);
331         else
332           fprintf(stderr, " [%p]", he->ptr);
333         le = le->next;
334       }
335       fprintf(stderr, "\n");
336     }
337   }
338 }
339 #endif