Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / xbt / dict.cpp
1 /* dict - a generic dictionary, variation over hash table                   */
2
3 /* Copyright (c) 2004-2017. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <string.h>
10 #include <stdio.h>
11
12 #include "xbt/dict.h"
13 #include "xbt/ex.h"
14 #include <xbt/ex.hpp>
15 #include "xbt/log.h"
16 #include "xbt/mallocator.h"
17 #include "src/xbt_modinter.h"
18 #include "xbt/str.h"
19 #include "dict_private.h"
20
21 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_dict, xbt, "Dictionaries provide the same functionalities as hash tables");
22
23 /**
24  * \brief Constructor
25  * \return pointer to the destination
26  * \see xbt_dict_new_homogenous(), xbt_dict_free()
27  *
28  * Creates and initialize a new dictionary with a default hashtable size.
29  * The dictionary is heterogeneous: each element can have a different free function.
30  */
31 xbt_dict_t xbt_dict_new()
32 {
33   XBT_WARN("Function xbt_dict_new() will soon be dropped. Please switch to xbt_dict_new_homogeneous()");
34   xbt_dict_t dict = xbt_dict_new_homogeneous(nullptr);
35   dict->homogeneous = 0;
36
37   return dict;
38 }
39
40 /**
41  * \brief Constructor
42  * \param free_ctn function to call with (\a data as argument) when \a data is removed from the dictionary
43  * \return pointer to the destination
44  * \see xbt_dict_new(), xbt_dict_free()
45  *
46  * Creates and initialize a new dictionary with a default hashtable size.
47  * The dictionary is homogeneous: each element share the same free function.
48  */
49 xbt_dict_t xbt_dict_new_homogeneous(void_f_pvoid_t free_ctn)
50 {
51   if (dict_elm_mallocator == nullptr)
52     xbt_dict_preinit();
53
54   xbt_dict_t dict;
55
56   dict = xbt_new(s_xbt_dict_t, 1);
57   dict->free_f = free_ctn;
58   dict->table_size = 127;
59   dict->table = xbt_new0(xbt_dictelm_t, dict->table_size + 1);
60   dict->count = 0;
61   dict->fill = 0;
62   dict->homogeneous = 1;
63
64   return dict;
65 }
66
67 /**
68  * \brief Destructor
69  * \param dict the dictionary to be freed
70  *
71  * Frees a dictionary with all the data
72  */
73 void xbt_dict_free(xbt_dict_t * dict)
74 {
75   if (dict != nullptr && *dict != nullptr) {
76     int table_size       = (*dict)->table_size;
77     xbt_dictelm_t* table = (*dict)->table;
78     /* Warning: the size of the table is 'table_size+1'...
79      * This is because table_size is used as a binary mask in xbt_dict_rehash */
80     for (int i = 0; (*dict)->count && i <= table_size; i++) {
81       xbt_dictelm_t current = table[i];
82       xbt_dictelm_t previous;
83
84       while (current != nullptr) {
85         previous = current;
86         current = current->next;
87         xbt_dictelm_free(*dict, previous);
88         (*dict)->count--;
89       }
90     }
91     xbt_free(table);
92     xbt_free(*dict);
93     *dict = nullptr;
94   }
95 }
96
97 /** Returns the amount of elements in the dict */
98 unsigned int xbt_dict_size(xbt_dict_t dict)
99 {
100   return (dict != nullptr ? static_cast<unsigned int>(dict->count) : static_cast<unsigned int>(0));
101 }
102
103 /* Expend the size of the dict */
104 static void xbt_dict_rehash(xbt_dict_t dict)
105 {
106   const unsigned oldsize = dict->table_size + 1;
107   unsigned newsize = oldsize * 2;
108
109   xbt_dictelm_t *currcell = (xbt_dictelm_t *) xbt_realloc((char *) dict->table, newsize * sizeof(xbt_dictelm_t));
110   memset(&currcell[oldsize], 0, oldsize * sizeof(xbt_dictelm_t));       /* zero second half */
111   newsize--;
112   dict->table_size = newsize;
113   dict->table = currcell;
114   XBT_DEBUG("REHASH (%d->%d)", oldsize, newsize);
115
116   for (unsigned i = 0; i < oldsize; i++, currcell++) {
117     if (*currcell == nullptr) /* empty cell */
118       continue;
119
120     xbt_dictelm_t *twincell = currcell + oldsize;
121     xbt_dictelm_t *pprev = currcell;
122     xbt_dictelm_t bucklet = *currcell;
123     for (; bucklet != nullptr; bucklet = *pprev) {
124       /* Since we use "& size" instead of "%size" and since the size was doubled, each bucklet of this cell must either:
125          - stay  in  cell i (ie, currcell)
126          - go to the cell i+oldsize (ie, twincell) */
127       if ((bucklet->hash_code & newsize) != i) {        /* Move to b */
128         *pprev = bucklet->next;
129         bucklet->next = *twincell;
130         if (*twincell == nullptr)
131           dict->fill++;
132         *twincell = bucklet;
133       } else {
134         pprev = &bucklet->next;
135       }
136     }
137
138     if (*currcell == nullptr) /* everything moved */
139       dict->fill--;
140   }
141 }
142
143 /**
144  * \brief Add data to the dict (arbitrary key)
145  * \param dict the container
146  * \param key the key to set the new data
147  * \param key_len the size of the \a key
148  * \param data the data to add in the dict
149  * \param free_ctn function to call with (\a data as argument) when \a data is removed from the dictionary. This param
150  *        will only be considered when the dict was instantiated with xbt_dict_new() and not xbt_dict_new_homogeneous()
151  *
152  * 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
153  * in \a key_len.
154  */
155 void xbt_dict_set_ext(xbt_dict_t dict, const char *key, int key_len, void *data, void_f_pvoid_t free_ctn)
156 {
157   unsigned int hash_code = xbt_str_hash_ext(key, key_len);
158
159   xbt_dictelm_t current;
160   xbt_dictelm_t previous = nullptr;
161
162   xbt_assert(not free_ctn, "Cannot set an individual free function in homogeneous dicts.");
163   XBT_CDEBUG(xbt_dict, "ADD %.*s hash = %u, size = %d, & = %u", key_len, key, hash_code,
164              dict->table_size, hash_code & dict->table_size);
165   current = dict->table[hash_code & dict->table_size];
166   while (current != nullptr && (hash_code != current->hash_code || key_len != current->key_len
167           || memcmp(key, current->key, key_len))) {
168     previous = current;
169     current = current->next;
170   }
171
172   if (current == nullptr) {
173     /* this key doesn't exist yet */
174     current = xbt_dictelm_new(key, key_len, hash_code, data);
175     dict->count++;
176     if (previous == nullptr) {
177       dict->table[hash_code & dict->table_size] = current;
178       dict->fill++;
179       if ((dict->fill * 100) / (dict->table_size + 1) > MAX_FILL_PERCENT)
180         xbt_dict_rehash(dict);
181     } else {
182       previous->next = current;
183     }
184   } else {
185     XBT_CDEBUG(xbt_dict, "Replace %.*s by %.*s under key %.*s",
186                key_len, (char *) current->content, key_len, (char *) data, key_len, (char *) key);
187     /* there is already an element with the same key: overwrite it */
188     xbt_dictelm_set_data(dict, current, data, free_ctn);
189   }
190 }
191
192 /**
193  * \brief Add data to the dict (null-terminated key)
194  *
195  * \param dict the dict
196  * \param key the key to set the new data
197  * \param data the data to add in the dict
198  * \param free_ctn function to call with (\a data as argument) when \a data is removed from the dictionary. This param
199  *        will only be considered when the dict was instantiated with xbt_dict_new() and not xbt_dict_new_homogeneous()
200  *
201  * set the \a data in the structure under the \a key, which is anull terminated string.
202  */
203 void xbt_dict_set(xbt_dict_t dict, const char *key, void *data, void_f_pvoid_t free_ctn)
204 {
205   xbt_dict_set_ext(dict, key, strlen(key), data, free_ctn);
206 }
207
208 /**
209  * \brief Retrieve data from the dict (arbitrary key)
210  *
211  * \param dict the dealer of data
212  * \param key the key to find data
213  * \param key_len the size of the \a key
214  * \return the data that we are looking for
215  *
216  * Search the given \a key. Throws not_found_error when not found.
217  */
218 void *xbt_dict_get_ext(xbt_dict_t dict, const char *key, int key_len)
219 {
220   unsigned int hash_code = xbt_str_hash_ext(key, key_len);
221   xbt_dictelm_t current = dict->table[hash_code & dict->table_size];
222
223   while (current != nullptr && (hash_code != current->hash_code || key_len != current->key_len
224           || memcmp(key, current->key, key_len))) {
225     current = current->next;
226   }
227
228   if (current == nullptr)
229     THROWF(not_found_error, 0, "key %.*s not found", key_len, key);
230
231   return current->content;
232 }
233
234 /** @brief like xbt_dict_get_ext(), but returning nullptr when not found */
235 void *xbt_dict_get_or_null_ext(xbt_dict_t dict, const char *key, int key_len)
236 {
237   unsigned int hash_code = xbt_str_hash_ext(key, key_len);
238   xbt_dictelm_t current = dict->table[hash_code & dict->table_size];
239
240   while (current != nullptr && (hash_code != current->hash_code || key_len != current->key_len
241           || memcmp(key, current->key, key_len))) {
242     current = current->next;
243   }
244
245   if (current == nullptr)
246     return nullptr;
247
248   return current->content;
249 }
250
251 /**
252  * @brief retrieve the key associated to that object. Warning, that's a linear search
253  *
254  * Returns nullptr if the object cannot be found
255  */
256 char *xbt_dict_get_key(xbt_dict_t dict, const void *data)
257 {
258   for (int i = 0; i <= dict->table_size; i++) {
259     xbt_dictelm_t current = dict->table[i];
260     while (current != nullptr) {
261       if (current->content == data)
262         return current->key;
263       current = current->next;
264     }
265   }
266   return nullptr;
267 }
268
269 /** @brief retrieve the key associated to that xbt_dictelm_t. */
270 char *xbt_dict_get_elm_key(xbt_dictelm_t elm)
271 {
272   return elm->key;
273 }
274
275 /**
276  * \brief Retrieve data from the dict (null-terminated key)
277  *
278  * \param dict the dealer of data
279  * \param key the key to find data
280  * \return the data that we are looking for
281  *
282  * Search the given \a key. Throws not_found_error when not found.
283  * Check xbt_dict_get_or_null() for a version returning nullptr without exception when not found.
284  */
285 void *xbt_dict_get(xbt_dict_t dict, const char *key)
286 {
287   return xbt_dict_get_elm(dict, key)->content;
288 }
289
290 /**
291  * \brief Retrieve element from the dict (null-terminated key)
292  *
293  * \param dict the dealer of data
294  * \param key the key to find data
295  * \return the s_xbt_dictelm_t that we are looking for
296  *
297  * Search the given \a key. Throws not_found_error when not found.
298  * Check xbt_dict_get_or_null() for a version returning nullptr without exception when not found.
299  */
300 xbt_dictelm_t xbt_dict_get_elm(xbt_dict_t dict, const char *key)
301 {
302   xbt_dictelm_t current = xbt_dict_get_elm_or_null(dict, key);
303
304   if (current == nullptr)
305     THROWF(not_found_error, 0, "key %s not found", key);
306
307   return current;
308 }
309
310 /**
311  * \brief like xbt_dict_get(), but returning nullptr when not found
312  */
313 void *xbt_dict_get_or_null(xbt_dict_t dict, const char *key)
314 {
315   xbt_dictelm_t current = xbt_dict_get_elm_or_null(dict, key);
316
317   if (current == nullptr)
318     return nullptr;
319
320   return current->content;
321 }
322
323 /**
324  * \brief like xbt_dict_get_elm(), but returning nullptr when not found
325  */
326 xbt_dictelm_t xbt_dict_get_elm_or_null(xbt_dict_t dict, const char *key)
327 {
328   unsigned int hash_code = xbt_str_hash(key);
329   xbt_dictelm_t current = dict->table[hash_code & dict->table_size];
330
331   while (current != nullptr && (hash_code != current->hash_code || strcmp(key, current->key)))
332     current = current->next;
333   return current;
334 }
335
336 /**
337  * \brief Remove data from the dict (arbitrary key)
338  *
339  * \param dict the trash can
340  * \param key the key of the data to be removed
341  * \param key_len the size of the \a key
342  *
343  * Remove the entry associated with the given \a key (throws not_found)
344  */
345 void xbt_dict_remove_ext(xbt_dict_t dict, const char *key, int key_len)
346 {
347   unsigned int hash_code = xbt_str_hash_ext(key, key_len);
348   xbt_dictelm_t previous = nullptr;
349   xbt_dictelm_t current = dict->table[hash_code & dict->table_size];
350
351   while (current != nullptr && (hash_code != current->hash_code || key_len != current->key_len
352           || strncmp(key, current->key, key_len))) {
353     previous = current;         /* save the previous node */
354     current = current->next;
355   }
356
357   if (current == nullptr)
358     THROWF(not_found_error, 0, "key %.*s not found", key_len, key);
359   else {
360     if (previous != nullptr) {
361       previous->next = current->next;
362     } else {
363       dict->table[hash_code & dict->table_size] = current->next;
364     }
365   }
366
367   if (not dict->table[hash_code & dict->table_size])
368     dict->fill--;
369
370   xbt_dictelm_free(dict, current);
371   dict->count--;
372 }
373
374 /**
375  * \brief Remove data from the dict (null-terminated key)
376  *
377  * \param dict the dict
378  * \param key the key of the data to be removed
379  *
380  * Remove the entry associated with the given \a key
381  */
382 void xbt_dict_remove(xbt_dict_t dict, const char *key)
383 {
384   xbt_dict_remove_ext(dict, key, strlen(key));
385 }
386
387 /** @brief Remove all data from the dict */
388 void xbt_dict_reset(xbt_dict_t dict)
389 {
390   if (dict->count == 0)
391     return;
392
393   for (int i = 0; i <= dict->table_size; i++) {
394     xbt_dictelm_t previous = nullptr;
395     xbt_dictelm_t current = dict->table[i];
396     while (current != nullptr) {
397       previous = current;
398       current = current->next;
399       xbt_dictelm_free(dict, previous);
400     }
401     dict->table[i] = nullptr;
402   }
403
404   dict->count = 0;
405   dict->fill = 0;
406 }
407
408 /**
409  * \brief Return the number of elements in the dict.
410  * \param dict a dictionary
411  */
412 int xbt_dict_length(xbt_dict_t dict)
413 {
414   return dict->count;
415 }
416
417 /** @brief function to be used in xbt_dict_dump as long as the stored values are strings */
418 void xbt_dict_dump_output_string(void *s)
419 {
420   fputs((char*) s, stdout);
421 }
422
423 /**
424  * \brief test if the dict is empty or not
425  */
426 int xbt_dict_is_empty(xbt_dict_t dict)
427 {
428   return not dict || (xbt_dict_length(dict) == 0);
429 }
430
431 /**
432  * \brief Outputs the content of the structure (debugging purpose)
433  *
434  * \param dict the exibitionist
435  * \param output a function to dump each data in the tree (check @ref xbt_dict_dump_output_string)
436  *
437  * Outputs the content of the structure. (for debugging purpose). \a output is a function to output the data. If nullptr,
438  * data won't be displayed.
439  */
440 void xbt_dict_dump(xbt_dict_t dict, void_f_pvoid_t output)
441 {
442   int i;
443   xbt_dictelm_t element;
444   printf("Dict %p:\n", dict);
445   if (dict != nullptr) {
446     for (i = 0; i < dict->table_size; i++) {
447       element = dict->table[i];
448       if (element) {
449         printf("[\n");
450         while (element != nullptr) {
451           printf(" %s -> '", element->key);
452           if (output != nullptr) {
453             output(element->content);
454           }
455           printf("'\n");
456           element = element->next;
457         }
458         printf("]\n");
459       } else {
460         printf("[]\n");
461       }
462     }
463   }
464 }
465
466 xbt_dynar_t all_sizes = nullptr;
467 /** @brief shows some debugging info about the bucklet repartition */
468 void xbt_dict_dump_sizes(xbt_dict_t dict)
469 {
470   unsigned int count;
471   unsigned int size;
472
473   printf("Dict %p: %d bucklets, %d used cells (of %d) ", dict, dict->count, dict->fill, dict->table_size);
474
475   if (not dict) {
476     printf("\n");
477     return;
478   }
479   xbt_dynar_t sizes = xbt_dynar_new(sizeof(int), nullptr);
480
481   for (int i = 0; i < dict->table_size; i++) {
482     xbt_dictelm_t element = dict->table[i];
483     size = 0;
484     if (element) {
485       while (element != nullptr) {
486         size++;
487         element = element->next;
488       }
489     }
490     if (xbt_dynar_length(sizes) <= size) {
491       int prevsize = 1;
492       xbt_dynar_set(sizes, size, &prevsize);
493     } else {
494       int prevsize;
495       xbt_dynar_get_cpy(sizes, size, &prevsize);
496       prevsize++;
497       xbt_dynar_set(sizes, size, &prevsize);
498     }
499   }
500   if (not all_sizes)
501     all_sizes = xbt_dynar_new(sizeof(int), nullptr);
502
503   xbt_dynar_foreach(sizes, count, size) {
504     /* Copy values of this one into all_sizes */
505     int prevcount;
506     if (xbt_dynar_length(all_sizes) <= count) {
507       prevcount = size;
508       xbt_dynar_set(all_sizes, count, &prevcount);
509     } else {
510       xbt_dynar_get_cpy(all_sizes, count, &prevcount);
511       prevcount += size;
512       xbt_dynar_set(all_sizes, count, &prevcount);
513     }
514
515     /* Report current sizes */
516     if (count != 0 && size != 0)
517       printf("%uelm x %u cells; ", count, size);
518   }
519   printf("\n");
520   xbt_dynar_free(&sizes);
521 }
522
523 /**
524  * Create the dict mallocators.
525  * This is an internal XBT function called during the lib initialization.
526  * It can be used several times to recreate the mallocator, for example when you switch to MC mode
527  */
528 void xbt_dict_preinit()
529 {
530   if (dict_elm_mallocator == nullptr)
531     dict_elm_mallocator = xbt_mallocator_new(256, dict_elm_mallocator_new_f, dict_elm_mallocator_free_f,
532       dict_elm_mallocator_reset_f);
533 }
534
535 /**
536  * Destroy the dict mallocators.
537  * This is an internal XBT function during the lib initialization
538  */
539 void xbt_dict_postexit()
540 {
541   if (dict_elm_mallocator != nullptr) {
542     xbt_mallocator_free(dict_elm_mallocator);
543     dict_elm_mallocator = nullptr;
544   }
545   if (all_sizes) {
546     unsigned int count;
547     int size;
548     double avg = 0;
549     int total_count = 0;
550     printf("Overall stats:");
551     xbt_dynar_foreach(all_sizes, count, size) {
552       if (count != 0 && size != 0) {
553         printf("%uelm x %d cells; ", count, size);
554         avg += count * size;
555         total_count += size;
556       }
557     }
558     if (total_count > 0)
559       printf("; %f elm per cell\n", avg / (double)total_count);
560     else
561       printf("; 0 elm per cell\n");
562   }
563 }
564
565 #ifdef SIMGRID_TEST
566 #include <time.h>
567 #include "xbt.h"
568 #include "xbt/ex.h"
569 #include <xbt/ex.hpp>
570 #include "src/internal_config.h"
571
572 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_dict);
573
574 XBT_TEST_SUITE("dict", "Dict data container");
575
576 static void debugged_add_ext(xbt_dict_t head, const char* key, const char* data_to_fill)
577 {
578   char *data = xbt_strdup(data_to_fill);
579
580   xbt_test_log("Add %s under %s", data_to_fill, key);
581
582   xbt_dict_set(head, key, data, nullptr);
583   if (XBT_LOG_ISENABLED(xbt_dict, xbt_log_priority_debug)) {
584     xbt_dict_dump(head, (void (*)(void *)) &printf);
585     fflush(stdout);
586   }
587 }
588
589 static void debugged_add(xbt_dict_t head, const char* key)
590 {
591   debugged_add_ext(head, key, key);
592 }
593
594 static xbt_dict_t new_fixture()
595 {
596   xbt_test_add("Fill in the dictionnary");
597
598   xbt_dict_t head = xbt_dict_new_homogeneous(&free);
599   debugged_add(head, "12");
600   debugged_add(head, "12a");
601   debugged_add(head, "12b");
602   debugged_add(head, "123");
603   debugged_add(head, "123456");
604   debugged_add(head, "1234");
605   debugged_add(head, "123457");
606
607   return head;
608 }
609
610 static void search_ext(xbt_dict_t head, const char *key, const char *data)
611 {
612   xbt_test_add("Search %s", key);
613   char *found = (char*) xbt_dict_get(head, key);
614   xbt_test_log("Found %s", found);
615   if (data) {
616     xbt_test_assert(found, "data do not match expectations: found nullptr while searching for %s", data);
617     if (found)
618       xbt_test_assert(not strcmp(data, found), "data do not match expectations: found %s while searching for %s", found,
619                       data);
620   } else {
621     xbt_test_assert(not found, "data do not match expectations: found %s while searching for nullptr", found);
622   }
623 }
624
625 static void search(xbt_dict_t head, const char *key)
626 {
627   search_ext(head, key, key);
628 }
629
630 static void debugged_remove(xbt_dict_t head, const char* key)
631 {
632   xbt_test_add("Remove '%s'", key);
633   xbt_dict_remove(head, key);
634   /*  xbt_dict_dump(head,(void (*)(void*))&printf); */
635 }
636
637 static void traverse(xbt_dict_t head)
638 {
639   xbt_dict_cursor_t cursor = nullptr;
640   char *key;
641   char *data;
642   int i = 0;
643
644   xbt_dict_foreach(head, cursor, key, data) {
645     if (not key || not data || strcmp(key, data)) {
646       xbt_test_log("Seen #%d:  %s->%s", ++i, key, data);
647     } else {
648       xbt_test_log("Seen #%d:  %s", ++i, key);
649     }
650     xbt_test_assert(not data || not strcmp(key, data), "Key(%s) != value(%s). Aborting", key, data);
651   }
652 }
653
654 static void search_not_found(xbt_dict_t head, const char *data)
655 {
656   int ok = 0;
657   xbt_test_add("Search %s (expected not to be found)", data);
658
659   try {
660     data = (const char*) xbt_dict_get(head, data);
661     THROWF(unknown_error, 0, "Found something which shouldn't be there (%s)", data);
662   }
663   catch(xbt_ex& e) {
664     if (e.category != not_found_error)
665       xbt_test_exception(e);
666     ok = 1;
667   }
668   xbt_test_assert(ok, "Exception not raised");
669 }
670
671 static void count(xbt_dict_t dict, int length)
672 {
673   xbt_test_add("Count elements (expecting %d)", length);
674   xbt_test_assert(xbt_dict_length(dict) == length, "Announced length(%d) != %d.", xbt_dict_length(dict), length);
675
676   xbt_dict_cursor_t cursor;
677   char *key;
678   void *data;
679   int effective = 0;
680   xbt_dict_foreach(dict, cursor, key, data)
681       effective++;
682
683   xbt_test_assert(effective == length, "Effective length(%d) != %d.", effective, length);
684 }
685
686 static void count_check_get_key(xbt_dict_t dict, int length)
687 {
688   xbt_dict_cursor_t cursor;
689   char *key;
690   void *data;
691   int effective = 0;
692
693   xbt_test_add("Count elements (expecting %d), and test the getkey function", length);
694   xbt_test_assert(xbt_dict_length(dict) == length, "Announced length(%d) != %d.", xbt_dict_length(dict), length);
695
696   xbt_dict_foreach(dict, cursor, key, data) {
697     effective++;
698     char* key2 = xbt_dict_get_key(dict, data);
699     xbt_assert(not strcmp(key, key2), "The data was registered under %s instead of %s as expected", key2, key);
700   }
701
702   xbt_test_assert(effective == length, "Effective length(%d) != %d.", effective, length);
703 }
704
705 XBT_TEST_UNIT("basic", test_dict_basic, "Basic usage: change, retrieve and traverse homogeneous dicts")
706 {
707   xbt_test_add("Traversal the null dictionary");
708   traverse(nullptr);
709
710   xbt_test_add("Traversal and search the empty dictionary");
711   xbt_dict_t head = xbt_dict_new_homogeneous(&free);
712   traverse(head);
713   try {
714     debugged_remove(head, "12346");
715   }
716   catch(xbt_ex& e) {
717     if (e.category != not_found_error)
718       xbt_test_exception(e);
719   }
720   xbt_dict_free(&head);
721
722   xbt_test_add("Traverse the full dictionary");
723   head = new_fixture();
724   count_check_get_key(head, 7);
725
726   debugged_add_ext(head, "toto", "tutu");
727   search_ext(head, "toto", "tutu");
728   debugged_remove(head, "toto");
729
730   search(head, "12a");
731   traverse(head);
732
733   xbt_test_add("Free the dictionary (twice)");
734   xbt_dict_free(&head);
735   xbt_dict_free(&head);
736
737   /* CHANGING */
738   head = new_fixture();
739   count_check_get_key(head, 7);
740   xbt_test_add("Change 123 to 'Changed 123'");
741   xbt_dict_set(head, "123", xbt_strdup("Changed 123"), nullptr);
742   count_check_get_key(head, 7);
743
744   xbt_test_add("Change 123 back to '123'");
745   xbt_dict_set(head, "123", xbt_strdup("123"), nullptr);
746   count_check_get_key(head, 7);
747
748   xbt_test_add("Change 12a to 'Dummy 12a'");
749   xbt_dict_set(head, "12a", xbt_strdup("Dummy 12a"), nullptr);
750   count_check_get_key(head, 7);
751
752   xbt_test_add("Change 12a to '12a'");
753   xbt_dict_set(head, "12a", xbt_strdup("12a"), nullptr);
754   count_check_get_key(head, 7);
755
756   xbt_test_add("Traverse the resulting dictionary");
757   traverse(head);
758
759   /* RETRIEVE */
760   xbt_test_add("Search 123");
761   char* data = (char*)xbt_dict_get(head, "123");
762   xbt_test_assert(data);
763   xbt_test_assert(not strcmp("123", data));
764
765   search_not_found(head, "Can't be found");
766   search_not_found(head, "123 Can't be found");
767   search_not_found(head, "12345678 NOT");
768
769   search(head, "12a");
770   search(head, "12b");
771   search(head, "12");
772   search(head, "123456");
773   search(head, "1234");
774   search(head, "123457");
775
776   xbt_test_add("Traverse the resulting dictionary");
777   traverse(head);
778
779   /*  xbt_dict_dump(head,(void (*)(void*))&printf); */
780
781   xbt_test_add("Free the dictionary twice");
782   xbt_dict_free(&head);
783   xbt_dict_free(&head);
784
785   xbt_test_add("Traverse the resulting dictionary");
786   traverse(head);
787 }
788
789 XBT_TEST_UNIT("remove_homogeneous", test_dict_remove, "Removing some values from homogeneous dicts")
790 {
791   xbt_dict_t head = new_fixture();
792   count(head, 7);
793   xbt_test_add("Remove non existing data");
794   try {
795     debugged_remove(head, "Does not exist");
796   }
797   catch(xbt_ex& e) {
798     if (e.category != not_found_error)
799       xbt_test_exception(e);
800   }
801   traverse(head);
802
803   xbt_dict_free(&head);
804
805   xbt_test_add("Remove each data manually (traversing the resulting dictionary each time)");
806   head = new_fixture();
807   debugged_remove(head, "12a");
808   traverse(head);
809   count(head, 6);
810   debugged_remove(head, "12b");
811   traverse(head);
812   count(head, 5);
813   debugged_remove(head, "12");
814   traverse(head);
815   count(head, 4);
816   debugged_remove(head, "123456");
817   traverse(head);
818   count(head, 3);
819   try {
820     debugged_remove(head, "12346");
821   }
822   catch(xbt_ex& e) {
823     if (e.category != not_found_error)
824       xbt_test_exception(e);
825     traverse(head);
826   }
827   debugged_remove(head, "1234");
828   traverse(head);
829   debugged_remove(head, "123457");
830   traverse(head);
831   debugged_remove(head, "123");
832   traverse(head);
833   try {
834     debugged_remove(head, "12346");
835   }
836   catch(xbt_ex& e) {
837     if (e.category != not_found_error)
838       xbt_test_exception(e);
839   }
840   traverse(head);
841
842   xbt_test_add("Free dict, create new fresh one, and then reset the dict");
843   xbt_dict_free(&head);
844   head = new_fixture();
845   xbt_dict_reset(head);
846   count(head, 0);
847   traverse(head);
848
849   xbt_test_add("Free the dictionary twice");
850   xbt_dict_free(&head);
851   xbt_dict_free(&head);
852 }
853
854 XBT_TEST_UNIT("nulldata", test_dict_nulldata, "nullptr data management")
855 {
856   xbt_dict_t head = new_fixture();
857
858   xbt_test_add("Store nullptr under 'null'");
859   xbt_dict_set(head, "null", nullptr, nullptr);
860   search_ext(head, "null", nullptr);
861
862   xbt_test_add("Check whether I see it while traversing...");
863   {
864     xbt_dict_cursor_t cursor = nullptr;
865     char *key;
866     int found = 0;
867     char* data;
868
869     xbt_dict_foreach(head, cursor, key, data) {
870       if (not key || not data || strcmp(key, data)) {
871         xbt_test_log("Seen:  %s->%s", key, data);
872       } else {
873         xbt_test_log("Seen:  %s", key);
874       }
875
876       if (not strcmp(key, "null"))
877         found = 1;
878     }
879     xbt_test_assert(found, "the key 'null', associated to nullptr is not found");
880   }
881   xbt_dict_free(&head);
882 }
883
884 #define NB_ELM 20000
885 #define SIZEOFKEY 1024
886 static int countelems(xbt_dict_t head)
887 {
888   xbt_dict_cursor_t cursor;
889   char *key;
890   void *data;
891   int res = 0;
892
893   xbt_dict_foreach(head, cursor, key, data) {
894     res++;
895   }
896   return res;
897 }
898
899 XBT_TEST_UNIT("crash", test_dict_crash, "Crash test")
900 {
901   srand((unsigned int) time(nullptr));
902
903   for (int i = 0; i < 10; i++) {
904     xbt_test_add("CRASH test number %d (%d to go)", i + 1, 10 - i - 1);
905     xbt_test_log("Fill the struct, count its elems and frees the structure");
906     xbt_test_log("using 1000 elements with %d chars long randomized keys.", SIZEOFKEY);
907     xbt_dict_t head = xbt_dict_new_homogeneous(free);
908     /* if (i%10) printf("."); else printf("%d",i/10); fflush(stdout); */
909     for (int j = 0; j < 1000; j++) {
910       char* data = nullptr;
911       char* key  = (char*)xbt_malloc(SIZEOFKEY);
912
913       do {
914         for (int k         = 0; k < SIZEOFKEY - 1; k++)
915           key[k] = rand() % ('z' - 'a') + 'a';
916         key[SIZEOFKEY - 1] = '\0';
917         /*      printf("[%d %s]\n",j,key); */
918         data = (char*) xbt_dict_get_or_null(head, key);
919       } while (data != nullptr);
920
921       xbt_dict_set(head, key, key, nullptr);
922       data = (char*) xbt_dict_get(head, key);
923       xbt_test_assert(not strcmp(key, data), "Retrieved value (%s) != Injected value (%s)", key, data);
924
925       count(head, j + 1);
926     }
927     /*    xbt_dict_dump(head,(void (*)(void*))&printf); */
928     traverse(head);
929     xbt_dict_free(&head);
930     xbt_dict_free(&head);
931   }
932
933   xbt_dict_t head = xbt_dict_new_homogeneous(&free);
934   xbt_test_add("Fill %d elements, with keys being the number of element", NB_ELM);
935   for (int j = 0; j < NB_ELM; j++) {
936     char* key = (char*)xbt_malloc(10);
937
938     snprintf(key,10, "%d", j);
939     xbt_dict_set(head, key, key, nullptr);
940   }
941   /*xbt_dict_dump(head,(void (*)(void*))&printf); */
942
943   xbt_test_add("Count the elements (retrieving the key and data for each)");
944   xbt_test_log("There is %d elements", countelems(head));
945
946   xbt_test_add("Search my %d elements 20 times", NB_ELM);
947   char* key = (char*)xbt_malloc(10);
948   for (int i = 0; i < 20; i++) {
949     /* if (i%10) printf("."); else printf("%d",i/10); fflush(stdout); */
950     for (int j = 0; j < NB_ELM; j++) {
951       snprintf(key,10, "%d", j);
952       void* data = xbt_dict_get(head, key);
953       xbt_test_assert(not strcmp(key, (char*)data), "with get, key=%s != data=%s", key, (char*)data);
954       data = xbt_dict_get_ext(head, key, strlen(key));
955       xbt_test_assert(not strcmp(key, (char*)data), "with get_ext, key=%s != data=%s", key, (char*)data);
956     }
957   }
958   free(key);
959
960   xbt_test_add("Remove my %d elements", NB_ELM);
961   key = (char*) xbt_malloc(10);
962   for (int j = 0; j < NB_ELM; j++) {
963     snprintf(key,10, "%d", j);
964     xbt_dict_remove(head, key);
965   }
966   free(key);
967
968   xbt_test_add("Free the object (twice)");
969   xbt_dict_free(&head);
970   xbt_dict_free(&head);
971 }
972
973 XBT_TEST_UNIT("ext", test_dict_int, "Test dictionnary with int keys")
974 {
975   xbt_dict_t dict = xbt_dict_new_homogeneous(nullptr);
976   int count = 500;
977
978   xbt_test_add("Insert elements");
979   for (int i = 0; i < count; ++i)
980     xbt_dict_set_ext(dict, (char*) &i, sizeof(i), (void*) (intptr_t) i, nullptr);
981   xbt_test_assert(xbt_dict_size(dict) == (unsigned) count, "Bad number of elements in the dictionnary");
982
983   xbt_test_add("Check elements");
984   for (int i = 0; i < count; ++i) {
985     int res = (int) (intptr_t) xbt_dict_get_ext(dict, (char*) &i, sizeof(i));
986     xbt_test_assert(xbt_dict_size(dict) == (unsigned) count, "Unexpected value at index %i, expected %i but was %i", i, i, res);
987   }
988
989   xbt_test_add("Free the array");
990   xbt_dict_free(&dict);
991 }
992 #endif                          /* SIMGRID_TEST */