Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cda2c44aa9883623dd047b88e3de7a45278d38c2
[simgrid.git] / src / xbt / dict_elm.c
1 /* dict - a generic dictionary, variation over hash table                   */
2
3 /* Copyright (c) 2004-2011. 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 "dict_private.h"       /* prototypes of this module */
10
11 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict);
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_dict_elm, xbt_dict,
13                                 "Dictionaries internals");
14
15 XBT_LOG_NEW_SUBCATEGORY(xbt_dict_add, xbt_dict,
16                         "Dictionaries internals: elements addition");
17 XBT_LOG_NEW_SUBCATEGORY(xbt_dict_search, xbt_dict,
18                         "Dictionaries internals: searching");
19 XBT_LOG_NEW_SUBCATEGORY(xbt_dict_remove, xbt_dict,
20                         "Dictionaries internals: elements removal");
21 XBT_LOG_NEW_SUBCATEGORY(xbt_dict_collapse, xbt_dict,
22                         "Dictionaries internals: post-removal cleanup");
23
24 xbt_mallocator_t dict_elm_mallocator = NULL;
25
26 xbt_dictelm_t xbt_dictelm_new(const char *key,
27                               int key_len,
28                               unsigned int hash_code,
29                               void *content, void_f_pvoid_t free_f)
30 {
31   xbt_dictelm_t element = xbt_mallocator_get(dict_elm_mallocator);
32
33   element->key = xbt_new(char, key_len + 1);
34   memcpy((void *) element->key, (void *) key, key_len);
35   element->key[key_len] = '\0';
36
37   element->key_len = key_len;
38   element->hash_code = hash_code;
39
40   element->content = content;
41   element->free_f = free_f;
42   element->next = NULL;
43
44   return element;
45 }
46
47 void xbt_dictelm_free(xbt_dictelm_t element)
48 {
49   if (element != NULL) {
50     xbt_free(element->key);
51
52     if (element->free_f != NULL && element->content != NULL) {
53       element->free_f(element->content);
54     }
55
56     xbt_mallocator_release(dict_elm_mallocator, element);
57   }
58 }
59
60 void *dict_elm_mallocator_new_f(void)
61 {
62   return xbt_new(s_xbt_dictelm_t, 1);
63 }