Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Propagate the change of prototype (use exceptions, not int return) of context factori...
[simgrid.git] / src / xbt / dict_elm.c
1 /* $Id$ */
2
3 /* dict - a generic dictionnary, variation over the B-tree concept          */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "dict_private.h"  /* prototypes of this module */
11
12 XBT_LOG_EXTERNAL_CATEGORY(xbt_dict);
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_dict_elm,xbt_dict,"Dictionaries internals");
14
15 XBT_LOG_NEW_SUBCATEGORY(xbt_dict_add,xbt_dict,"Dictionaries internals: elements addition");
16 XBT_LOG_NEW_SUBCATEGORY(xbt_dict_search,xbt_dict,"Dictionaries internals: searching");
17 XBT_LOG_NEW_SUBCATEGORY(xbt_dict_remove,xbt_dict,"Dictionaries internals: elements removal");
18 XBT_LOG_NEW_SUBCATEGORY(xbt_dict_collapse,xbt_dict,"Dictionaries internals: post-removal cleanup");
19
20 xbt_mallocator_t dict_elm_mallocator = NULL;
21
22 xbt_dictelm_t xbt_dictelm_new(const char *key,
23                               int key_len,
24                               unsigned int hash_code,
25                               void *content,
26                               void_f_pvoid_t free_f) {
27   xbt_dictelm_t element = xbt_mallocator_get(dict_elm_mallocator);
28   
29   element->key = xbt_new(char, key_len + 1);
30   strncpy(element->key, key, key_len);
31   element->key[key_len] = '\0';
32
33   element->key_len = key_len;
34   element->hash_code = hash_code;
35    
36   element->content = content;
37   element->free_f = free_f;
38   element->next = NULL;
39   
40   return element;
41 }
42
43 void xbt_dictelm_free(xbt_dictelm_t element) {
44   if (element != NULL) {
45     xbt_free(element->key);
46     
47     if (element->free_f != NULL && element->content != NULL) {
48       element->free_f(element->content);
49     }
50    
51     xbt_mallocator_release(dict_elm_mallocator, element);
52   }
53 }
54
55 void* dict_elm_mallocator_new_f(void) {
56   return xbt_new(s_xbt_dictelm_t, 1);
57 }
58
59 void dict_elm_mallocator_free_f(void* elem) {
60   xbt_free(elem);
61 }
62
63 void dict_elm_mallocator_reset_f(void* elem) {
64
65 }