Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Drop unused xbt dict functions.
[simgrid.git] / src / xbt / dict.cpp
1 /* dict - a generic dictionary, variation over hash table                   */
2
3 /* Copyright (c) 2004-2020. 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(const_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. Returns nullptr when not found.
196  */
197 void* xbt_dict_get_or_null_ext(const_xbt_dict_t dict, const char* key, int key_len)
198 {
199   unsigned int hash_code = xbt_str_hash_ext(key, key_len);
200   const s_xbt_dictelm* 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     return nullptr;
209
210   return current->content;
211 }
212
213 /**
214  * @brief Retrieve data from the dict (null-terminated key)
215  *
216  * @param dict the dealer of data
217  * @param key the key to find data
218  * @return the data that we are looking for
219  *
220  * Search the given @a key. Returns nullptr when not found.
221  */
222 void* xbt_dict_get_or_null(const_xbt_dict_t dict, const char* key)
223 {
224   const s_xbt_dictelm* current = xbt_dict_get_elm_or_null(dict, key);
225
226   if (current == nullptr)
227     return nullptr;
228
229   return current->content;
230 }
231
232 /**
233  * @brief Retrieve element from the dict (null-terminated key)
234  *
235  * @param dict the dealer of data
236  * @param key the key to find data
237  * @return the s_xbt_dictelm_t that we are looking for
238  *
239  * Search the given @a key. Returns nullptr when not found.
240  */
241 xbt_dictelm_t xbt_dict_get_elm_or_null(const_xbt_dict_t dict, const char* key)
242 {
243   unsigned int hash_code = xbt_str_hash(key);
244   xbt_dictelm_t current = dict->table[hash_code & dict->table_size];
245
246   while (current != nullptr && (hash_code != current->hash_code || strcmp(key, current->key)))
247     current = current->next;
248   return current;
249 }
250
251 /**
252  * @brief Remove data from the dict (arbitrary key)
253  *
254  * @param dict the trash can
255  * @param key the key of the data to be removed
256  * @param key_len the size of the @a key
257  *
258  * Remove the entry associated with the given @a key (throws std::out_of_range)
259  */
260 void xbt_dict_remove_ext(xbt_dict_t dict, const char *key, int key_len)
261 {
262   unsigned int hash_code = xbt_str_hash_ext(key, key_len);
263   xbt_dictelm_t previous = nullptr;
264   xbt_dictelm_t current = dict->table[hash_code & dict->table_size];
265
266   while (current != nullptr && (hash_code != current->hash_code || key_len != current->key_len
267           || strncmp(key, current->key, key_len))) {
268     previous = current;         /* save the previous node */
269     current = current->next;
270   }
271
272   if (current == nullptr)
273     throw std::out_of_range(simgrid::xbt::string_printf("key %.*s not found", key_len, key));
274   else {
275     if (previous != nullptr) {
276       previous->next = current->next;
277     } else {
278       dict->table[hash_code & dict->table_size] = current->next;
279     }
280   }
281
282   if (not dict->table[hash_code & dict->table_size])
283     dict->fill--;
284
285   xbt_dictelm_free(dict, current);
286   dict->count--;
287 }
288
289 /**
290  * @brief Return the number of elements in the dict.
291  * @param dict a dictionary
292  */
293 int xbt_dict_length(const_xbt_dict_t dict)
294 {
295   return dict->count;
296 }
297
298 /**
299  * @brief test if the dict is empty or not
300  */
301 int xbt_dict_is_empty(const_xbt_dict_t dict)
302 {
303   return not dict || (xbt_dict_length(dict) == 0);
304 }
305
306 /**
307  * Create the dict mallocators.
308  * This is an internal XBT function called during the lib initialization.
309  * It can be used several times to recreate the mallocator, for example when you switch to MC mode
310  */
311 void xbt_dict_preinit()
312 {
313   if (dict_elm_mallocator == nullptr)
314     dict_elm_mallocator = xbt_mallocator_new(256, dict_elm_mallocator_new_f, dict_elm_mallocator_free_f,
315       dict_elm_mallocator_reset_f);
316 }
317
318 /**
319  * Destroy the dict mallocators.
320  * This is an internal XBT function during the lib initialization
321  */
322 void xbt_dict_postexit()
323 {
324   if (dict_elm_mallocator != nullptr) {
325     xbt_mallocator_free(dict_elm_mallocator);
326     dict_elm_mallocator = nullptr;
327   }
328 }