Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use s4u API in example.
[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.cpp                 */
3
4 /* Copyright (c) 2004-2017. The SimGrid Team. 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 #ifndef XBT_DICT_PRIVATE_H
10 #define XBT_DICT_PRIVATE_H
11
12 #include "xbt/base.h"
13 #include "xbt/sysdep.h"
14 #include "xbt/log.h"
15 #include "xbt/ex.h"
16 #include "xbt/dynar.h"
17 #include "xbt/dict.h"
18 #include "xbt/mallocator.h"
19
20 SG_BEGIN_DECL()
21
22 #define MAX_FILL_PERCENT 80
23
24 typedef struct s_xbt_dict {
25   void_f_pvoid_t free_f;
26   xbt_dictelm_t *table;
27   int table_size;
28   int count;
29   int fill;
30   int homogeneous;
31 } s_xbt_dict_t;
32
33 typedef struct s_xbt_dict_cursor s_xbt_dict_cursor_t;
34
35 extern XBT_PRIVATE xbt_mallocator_t dict_elm_mallocator;
36 XBT_PRIVATE void * dict_elm_mallocator_new_f(void);
37 #define dict_elm_mallocator_free_f xbt_free_f
38 #define dict_elm_mallocator_reset_f ((void_f_pvoid_t)NULL)
39
40 /*####[ Function prototypes ]################################################*/
41 XBT_PRIVATE xbt_dictelm_t xbt_dictelm_new(const char* key, int key_len, unsigned int hash_code, void* content);
42 XBT_PRIVATE void xbt_dictelm_free(xbt_dict_t dict, xbt_dictelm_t element);
43 XBT_PRIVATE void xbt_dictelm_set_data(xbt_dict_t dict, xbt_dictelm_t element, void *data, void_f_pvoid_t free_ctn);
44
45 SG_END_DECL()
46
47 #endif