Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unused parameter 'free_ctn' for xbt_dict_set() and xbt_dict_set_ext().
[simgrid.git] / src / xbt / dict.cpp
1 /* dict - a generic dictionary, variation over hash table                   */
2
3 /* Copyright (c) 2004-2019. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "xbt/dict.h"
9 #include "dict_private.h"
10 #include "simgrid/Exception.hpp"
11 #include "src/xbt_modinter.h"
12 #include "xbt/ex.h"
13 #include "xbt/log.h"
14 #include "xbt/mallocator.h"
15 #include "xbt/str.h"
16 #include "xbt/string.hpp"
17
18 #include <cstdio>
19 #include <cstring>
20
21 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_dict, xbt, "Dictionaries provide the same functionalities as hash tables");
22
23 constexpr int MAX_FILL_PERCENT = 80;
24
25 /**
26  * @brief Constructor
27  * @param free_ctn function to call with (@a data as argument) when @a data is removed from the dictionary
28  * @return pointer to the destination
29  * @see xbt_dict_free()
30  *
31  * Creates and initialize a new dictionary with a default hashtable size.
32  * The dictionary is homogeneous: each element share the same free function.
33  */
34 xbt_dict_t xbt_dict_new_homogeneous(void_f_pvoid_t free_ctn)
35 {
36   if (dict_elm_mallocator == nullptr)
37     xbt_dict_preinit();
38
39   xbt_dict_t dict;
40
41   dict = xbt_new(s_xbt_dict_t, 1);
42   dict->free_f = free_ctn;
43   dict->table_size = 127;
44   dict->table = xbt_new0(xbt_dictelm_t, dict->table_size + 1);
45   dict->count = 0;
46   dict->fill = 0;
47
48   return dict;
49 }
50
51 /**
52  * @brief Destructor
53  * @param dict the dictionary to be freed
54  *
55  * Frees a dictionary with all the data
56  */
57 void xbt_dict_free(xbt_dict_t * dict)
58 {
59   if (dict != nullptr && *dict != nullptr) {
60     int table_size       = (*dict)->table_size;
61     xbt_dictelm_t* table = (*dict)->table;
62     /* Warning: the size of the table is 'table_size+1'...
63      * This is because table_size is used as a binary mask in xbt_dict_rehash */
64     for (int i = 0; (*dict)->count && i <= table_size; i++) {
65       xbt_dictelm_t current = table[i];
66       xbt_dictelm_t previous;
67
68       while (current != nullptr) {
69         previous = current;
70         current = current->next;
71         xbt_dictelm_free(*dict, previous);
72         (*dict)->count--;
73       }
74     }
75     xbt_free(table);
76     xbt_free(*dict);
77     *dict = nullptr;
78   }
79 }
80
81 /** Returns the amount of elements in the dict */
82 unsigned int xbt_dict_size(xbt_dict_t dict)
83 {
84   return (dict != nullptr ? static_cast<unsigned int>(dict->count) : static_cast<unsigned int>(0));
85 }
86
87 /* Expend the size of the dict */
88 static void xbt_dict_rehash(xbt_dict_t dict)
89 {
90   const unsigned oldsize = dict->table_size + 1;
91   unsigned newsize = oldsize * 2;
92
93   xbt_dictelm_t *currcell = (xbt_dictelm_t *) xbt_realloc((char *) dict->table, newsize * sizeof(xbt_dictelm_t));
94   memset(&currcell[oldsize], 0, oldsize * sizeof(xbt_dictelm_t));       /* zero second half */
95   newsize--;
96   dict->table_size = newsize;
97   dict->table = currcell;
98   XBT_DEBUG("REHASH (%u->%u)", oldsize, newsize);
99
100   for (unsigned i = 0; i < oldsize; i++, currcell++) {
101     if (*currcell == nullptr) /* empty cell */
102       continue;
103
104     xbt_dictelm_t *twincell = currcell + oldsize;
105     xbt_dictelm_t *pprev = currcell;
106     xbt_dictelm_t bucklet = *currcell;
107     for (; bucklet != nullptr; bucklet = *pprev) {
108       /* Since we use "& size" instead of "%size" and since the size was doubled, each bucklet of this cell must either:
109          - stay  in  cell i (ie, currcell)
110          - go to the cell i+oldsize (ie, twincell) */
111       if ((bucklet->hash_code & newsize) != i) {        /* Move to b */
112         *pprev = bucklet->next;
113         bucklet->next = *twincell;
114         if (*twincell == nullptr)
115           dict->fill++;
116         *twincell = bucklet;
117       } else {
118         pprev = &bucklet->next;
119       }
120     }
121
122     if (*currcell == nullptr) /* everything moved */
123       dict->fill--;
124   }
125 }
126
127 /**
128  * @brief Add data to the dict (arbitrary key)
129  * @param dict the container
130  * @param key the key to set the new data
131  * @param key_len the size of the @a key
132  * @param data the data to add in the dict
133  *
134  * Set the @a data in the structure under the @a key, which can be any kind of data, as long as its length is provided
135  * in @a key_len.
136  */
137 void xbt_dict_set_ext(xbt_dict_t dict, const char* key, int key_len, void* data)
138 {
139   unsigned int hash_code = xbt_str_hash_ext(key, key_len);
140
141   xbt_dictelm_t current;
142   xbt_dictelm_t previous = nullptr;
143
144   XBT_CDEBUG(xbt_dict, "ADD %.*s hash = %u, size = %d, & = %u", key_len, key, hash_code,
145              dict->table_size, hash_code & dict->table_size);
146   current = dict->table[hash_code & dict->table_size];
147   while (current != nullptr && (hash_code != current->hash_code || key_len != current->key_len
148           || memcmp(key, current->key, key_len))) {
149     previous = current;
150     current = current->next;
151   }
152
153   if (current == nullptr) {
154     /* this key doesn't exist yet */
155     current = xbt_dictelm_new(key, key_len, hash_code, data);
156     dict->count++;
157     if (previous == nullptr) {
158       dict->table[hash_code & dict->table_size] = current;
159       dict->fill++;
160       if ((dict->fill * 100) / (dict->table_size + 1) > MAX_FILL_PERCENT)
161         xbt_dict_rehash(dict);
162     } else {
163       previous->next = current;
164     }
165   } else {
166     XBT_CDEBUG(xbt_dict, "Replace %.*s by %.*s under key %.*s",
167                key_len, (char *) current->content, key_len, (char *) data, key_len, (char *) key);
168     /* there is already an element with the same key: overwrite it */
169     xbt_dictelm_set_data(dict, current, data);
170   }
171 }
172
173 /**
174  * @brief Add data to the dict (null-terminated key)
175  *
176  * @param dict the dict
177  * @param key the key to set the new data
178  * @param data the data to add in the dict
179  *
180  * set the @a data in the structure under the @a key, which is a null terminated string.
181  */
182 void xbt_dict_set(xbt_dict_t dict, const char* key, void* data)
183 {
184   xbt_dict_set_ext(dict, key, strlen(key), data);
185 }
186
187 /**
188  * @brief Retrieve data from the dict (arbitrary key)
189  *
190  * @param dict the dealer of data
191  * @param key the key to find data
192  * @param key_len the size of the @a key
193  * @return the data that we are looking for
194  *
195  * Search the given @a key. Throws std::out_of_range when not found.
196  */
197 void *xbt_dict_get_ext(xbt_dict_t dict, const char *key, int key_len)
198 {
199   unsigned int hash_code = xbt_str_hash_ext(key, key_len);
200   xbt_dictelm_t current = dict->table[hash_code & dict->table_size];
201
202   while (current != nullptr && (hash_code != current->hash_code || key_len != current->key_len
203           || memcmp(key, current->key, key_len))) {
204     current = current->next;
205   }
206
207   if (current == nullptr)
208     throw std::out_of_range(simgrid::xbt::string_printf("key %.*s not found", key_len, key));
209
210   return current->content;
211 }
212
213 /** @brief like xbt_dict_get_ext(), but returning nullptr when not found */
214 void *xbt_dict_get_or_null_ext(xbt_dict_t dict, const char *key, int key_len)
215 {
216   unsigned int hash_code = xbt_str_hash_ext(key, key_len);
217   xbt_dictelm_t current = dict->table[hash_code & dict->table_size];
218
219   while (current != nullptr && (hash_code != current->hash_code || key_len != current->key_len
220           || memcmp(key, current->key, key_len))) {
221     current = current->next;
222   }
223
224   if (current == nullptr)
225     return nullptr;
226
227   return current->content;
228 }
229
230 /**
231  * @brief retrieve the key associated to that object. Warning, that's a linear search
232  *
233  * Returns nullptr if the object cannot be found
234  */
235 char *xbt_dict_get_key(xbt_dict_t dict, const void *data)
236 {
237   for (int i = 0; i <= dict->table_size; i++) {
238     xbt_dictelm_t current = dict->table[i];
239     while (current != nullptr) {
240       if (current->content == data)
241         return current->key;
242       current = current->next;
243     }
244   }
245   return nullptr;
246 }
247
248 /**
249  * @brief Retrieve data from the dict (null-terminated key)
250  *
251  * @param dict the dealer of data
252  * @param key the key to find data
253  * @return the data that we are looking for
254  *
255  * Search the given @a key. Throws std::out_of_range when not found.
256  * Check xbt_dict_get_or_null() for a version returning nullptr without exception when not found.
257  */
258 void *xbt_dict_get(xbt_dict_t dict, const char *key)
259 {
260   return xbt_dict_get_elm(dict, key)->content;
261 }
262
263 /**
264  * @brief Retrieve element from the dict (null-terminated key)
265  *
266  * @param dict the dealer of data
267  * @param key the key to find data
268  * @return the s_xbt_dictelm_t that we are looking for
269  *
270  * Search the given @a key. Throws std::out_of_range when not found.
271  * Check xbt_dict_get_or_null() for a version returning nullptr without exception when not found.
272  */
273 xbt_dictelm_t xbt_dict_get_elm(xbt_dict_t dict, const char *key)
274 {
275   xbt_dictelm_t current = xbt_dict_get_elm_or_null(dict, key);
276
277   if (current == nullptr)
278     throw std::out_of_range(simgrid::xbt::string_printf("key %s not found", key));
279
280   return current;
281 }
282
283 /**
284  * @brief like xbt_dict_get(), but returning nullptr when not found
285  */
286 void *xbt_dict_get_or_null(xbt_dict_t dict, const char *key)
287 {
288   xbt_dictelm_t current = xbt_dict_get_elm_or_null(dict, key);
289
290   if (current == nullptr)
291     return nullptr;
292
293   return current->content;
294 }
295
296 /**
297  * @brief like xbt_dict_get_elm(), but returning nullptr when not found
298  */
299 xbt_dictelm_t xbt_dict_get_elm_or_null(xbt_dict_t dict, const char *key)
300 {
301   unsigned int hash_code = xbt_str_hash(key);
302   xbt_dictelm_t current = dict->table[hash_code & dict->table_size];
303
304   while (current != nullptr && (hash_code != current->hash_code || strcmp(key, current->key)))
305     current = current->next;
306   return current;
307 }
308
309 /**
310  * @brief Remove data from the dict (arbitrary key)
311  *
312  * @param dict the trash can
313  * @param key the key of the data to be removed
314  * @param key_len the size of the @a key
315  *
316  * Remove the entry associated with the given @a key (throws std::out_of_range)
317  */
318 void xbt_dict_remove_ext(xbt_dict_t dict, const char *key, int key_len)
319 {
320   unsigned int hash_code = xbt_str_hash_ext(key, key_len);
321   xbt_dictelm_t previous = nullptr;
322   xbt_dictelm_t current = dict->table[hash_code & dict->table_size];
323
324   while (current != nullptr && (hash_code != current->hash_code || key_len != current->key_len
325           || strncmp(key, current->key, key_len))) {
326     previous = current;         /* save the previous node */
327     current = current->next;
328   }
329
330   if (current == nullptr)
331     throw std::out_of_range(simgrid::xbt::string_printf("key %.*s not found", key_len, key));
332   else {
333     if (previous != nullptr) {
334       previous->next = current->next;
335     } else {
336       dict->table[hash_code & dict->table_size] = current->next;
337     }
338   }
339
340   if (not dict->table[hash_code & dict->table_size])
341     dict->fill--;
342
343   xbt_dictelm_free(dict, current);
344   dict->count--;
345 }
346
347 /**
348  * @brief Remove data from the dict (null-terminated key)
349  *
350  * @param dict the dict
351  * @param key the key of the data to be removed
352  *
353  * Remove the entry associated with the given @a key
354  */
355 void xbt_dict_remove(xbt_dict_t dict, const char *key)
356 {
357   xbt_dict_remove_ext(dict, key, strlen(key));
358 }
359
360 /** @brief Remove all data from the dict */
361 void xbt_dict_reset(xbt_dict_t dict)
362 {
363   if (dict->count == 0)
364     return;
365
366   for (int i = 0; i <= dict->table_size; i++) {
367     xbt_dictelm_t previous = nullptr;
368     xbt_dictelm_t current = dict->table[i];
369     while (current != nullptr) {
370       previous = current;
371       current = current->next;
372       xbt_dictelm_free(dict, previous);
373     }
374     dict->table[i] = nullptr;
375   }
376
377   dict->count = 0;
378   dict->fill = 0;
379 }
380
381 /**
382  * @brief Return the number of elements in the dict.
383  * @param dict a dictionary
384  */
385 int xbt_dict_length(xbt_dict_t dict)
386 {
387   return dict->count;
388 }
389
390 /**
391  * @brief test if the dict is empty or not
392  */
393 int xbt_dict_is_empty(xbt_dict_t dict)
394 {
395   return not dict || (xbt_dict_length(dict) == 0);
396 }
397
398 /**
399  * Create the dict mallocators.
400  * This is an internal XBT function called during the lib initialization.
401  * It can be used several times to recreate the mallocator, for example when you switch to MC mode
402  */
403 void xbt_dict_preinit()
404 {
405   if (dict_elm_mallocator == nullptr)
406     dict_elm_mallocator = xbt_mallocator_new(256, dict_elm_mallocator_new_f, dict_elm_mallocator_free_f,
407       dict_elm_mallocator_reset_f);
408 }
409
410 /**
411  * Destroy the dict mallocators.
412  * This is an internal XBT function during the lib initialization
413  */
414 void xbt_dict_postexit()
415 {
416   if (dict_elm_mallocator != nullptr) {
417     xbt_mallocator_free(dict_elm_mallocator);
418     dict_elm_mallocator = nullptr;
419   }
420 }