Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7db9869605b4c5e13549f7ade11f6bc195f16b07
[simgrid.git] / src / xbt / dict_private.h
1 /* dict_elm - elements of generic dictionnaries                             */
2 /* This file is not to be loaded from anywhere but dict.c                   */
3
4 /* Copyright (c) 2004-2011, 2013-2014. The SimGrid Team.
5  * 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 #ifndef _XBT_DICT_PRIVATE_H__
11 #define _XBT_DICT_PRIVATE_H__
12
13 #include "xbt/base.h"
14 #include "xbt/sysdep.h"
15 #include "xbt/log.h"
16 #include "xbt/ex.h"
17 #include "xbt/dynar.h"
18 #include "xbt/dict.h"
19 #include "xbt/mallocator.h"
20
21 #define MAX_FILL_PERCENT 80
22
23
24 typedef struct s_xbt_het_dictelm {
25   s_xbt_dictelm_t element;
26   void_f_pvoid_t free_f;
27 } s_xbt_het_dictelm_t, *xbt_het_dictelm_t;
28
29 typedef struct s_xbt_dict {
30   void_f_pvoid_t free_f;
31   xbt_dictelm_t *table;
32   int table_size;
33   int count;
34   int fill;
35   int homogeneous;
36 } s_xbt_dict_t;
37
38 typedef struct s_xbt_dict_cursor s_xbt_dict_cursor_t;
39
40 extern XBT_PRIVATE xbt_mallocator_t dict_elm_mallocator;
41 XBT_PRIVATE void * dict_elm_mallocator_new_f(void);
42 #define dict_elm_mallocator_free_f xbt_free_f
43 #define dict_elm_mallocator_reset_f ((void_f_pvoid_t)NULL)
44
45 extern XBT_PRIVATE xbt_mallocator_t dict_het_elm_mallocator;
46 extern XBT_PRIVATE void * dict_het_elm_mallocator_new_f(void);
47 #define dict_het_elm_mallocator_free_f xbt_free_f
48 #define dict_het_elm_mallocator_reset_f ((void_f_pvoid_t)NULL)
49
50 /*####[ Function prototypes ]################################################*/
51 XBT_PRIVATE xbt_dictelm_t xbt_dictelm_new(xbt_dict_t dict, const char *key, int key_len,
52                               unsigned int hash_code, void *content,
53                               void_f_pvoid_t free_f);
54 XBT_PRIVATE void xbt_dictelm_free(xbt_dict_t dict, xbt_dictelm_t element);
55 XBT_PRIVATE void xbt_dictelm_set_data(xbt_dict_t dict, xbt_dictelm_t element,
56                           void *data, void_f_pvoid_t free_ctn);
57
58 #endif                          /* _XBT_DICT_PRIVATE_H_ */