Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cf00544e1bc30b94d210cd3fa6c9f146bffed242
[simgrid.git] / include / xbt / dict.h
1 /* xbt/dict.h -- api to a generic dictionary                                */
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
10 #ifndef _XBT_DICT_H
11 #define _XBT_DICT_H
12
13 #include "xbt/misc.h"           /* SG_BEGIN_DECL */
14 #include "xbt/dynar.h"          /* void_f_pvoid_t */
15 #include <stdint.h>             /* uintptr_t */
16
17 SG_BEGIN_DECL()
18
19 /** @addtogroup XBT_dict
20  *  @brief The dictionary data structure (comparable to hash tables)
21  *
22  *  This section describes the API to a dictionary structure that
23  *  associates as string to a void* key. It provides the same
24  *  functionality than an hash table.
25  *
26  *  Here is a little example of use:
27
28 \verbatim
29  xbt_dict_t mydict = xbt_dict_new();
30  char buff[512];
31
32  sprintf(buff,"some very precious data");
33  xbt_dict_set(mydict,"my data", strdup(buff), free);
34
35  sprintf(buff,"another good stuff");
36  xbt_dict_set(mydict,"my data", strdup(buff), free); // previous data gets erased (and freed) by second add
37 \endverbatim
38  *
39  */
40
41 /** @defgroup XBT_dict_cons Dict constructor and destructor
42  *  @ingroup XBT_dict
43  *
44  *  @{
45  */
46
47   /** \brief Dictionary data type (opaque structure) */
48
49 typedef struct s_xbt_dict *xbt_dict_t;
50 typedef struct s_xbt_dictelm *xbt_dictelm_t;
51 typedef struct s_xbt_dictelm s_xbt_dictelm_t;
52 typedef struct s_xbt_dictelm {
53   char *key;
54   int key_len;
55   unsigned int hash_code;
56
57   void *content;
58
59   xbt_dictelm_t next;
60 } s_xbt_dictelm_t;
61
62 XBT_PUBLIC(xbt_dict_t) xbt_dict_new(void);
63 XBT_PUBLIC(xbt_dict_t) xbt_dict_new_homogeneous(void_f_pvoid_t free_ctn);
64 XBT_PUBLIC(void) xbt_dict_free(xbt_dict_t * dict);
65 XBT_PUBLIC(unsigned int) xbt_dict_size(xbt_dict_t dict);
66
67 /** @} */
68 /** @defgroup XBT_dict_basic Dictionaries basic usage
69  *  @ingroup XBT_dict
70  *
71  * Careful, those functions assume that the key is null-terminated.
72  *
73  *  @{
74  */
75
76 XBT_PUBLIC(void) xbt_dict_set(xbt_dict_t dict, const char *key, void *data,
77                               void_f_pvoid_t free_ctn);
78 XBT_PUBLIC(void *) xbt_dict_get(xbt_dict_t dict, const char *key);
79 XBT_PUBLIC(void *) xbt_dict_get_or_null(xbt_dict_t dict, const char *key);
80 XBT_PUBLIC(char *) xbt_dict_get_key(xbt_dict_t dict, const void *data);
81 XBT_PUBLIC(xbt_dictelm_t) xbt_dict_get_elm(xbt_dict_t dict, const char *key);
82 XBT_PUBLIC(xbt_dictelm_t) xbt_dict_get_elm_or_null(xbt_dict_t dict, const char *key);
83
84 XBT_PUBLIC(void) xbt_dict_remove(xbt_dict_t dict, const char *key);
85 XBT_PUBLIC(void) xbt_dict_reset(xbt_dict_t dict);
86 XBT_PUBLIC(int) xbt_dict_length(xbt_dict_t dict);
87 XBT_PUBLIC(void) xbt_dict_dump_output_string(void *s);
88 XBT_PUBLIC(void) xbt_dict_dump(xbt_dict_t dict, void (*output) (void *));
89 XBT_PUBLIC(void) xbt_dict_dump_sizes(xbt_dict_t dict);
90 XBT_PUBLIC(int) xbt_dict_is_empty(xbt_dict_t dict);
91
92
93 /** @} */
94 /** @defgroup XBT_dict_nnul Dictionaries with non-nul terminated keys
95  *  @ingroup XBT_dict
96  *
97  * Those functions work even with non-null terminated keys.
98  *
99  *  @{
100  */
101 XBT_PUBLIC(void) xbt_dict_set_ext(xbt_dict_t dict,
102                                   const char *key, int key_len,
103                                   void *data, void_f_pvoid_t free_ctn);
104 XBT_PUBLIC(void *) xbt_dict_get_ext(xbt_dict_t dict, const char *key,
105                                     int key_len);
106 XBT_PUBLIC(void *) xbt_dict_get_or_null_ext(xbt_dict_t dict,
107                                             const char *key, int key_len);
108 XBT_PUBLIC(void) xbt_dict_remove_ext(xbt_dict_t dict, const char *key,
109                                      int key_len);
110
111 #ifdef XBT_USE_DEPRECATED
112 XBT_PUBLIC(void) xbt_dicti_set(xbt_dict_t dict, uintptr_t key,
113                                uintptr_t data);
114 XBT_PUBLIC(uintptr_t) xbt_dicti_get(xbt_dict_t dict, uintptr_t key);
115 XBT_PUBLIC(void) xbt_dicti_remove(xbt_dict_t dict, uintptr_t key);
116 #endif
117
118 /** @} */
119 /** @defgroup XBT_dict_curs Cursors on dictionaries
120  *  @ingroup XBT_dict
121  *
122  *  Don't get impressed, there is a lot of functions here, but traversing a
123  *  dictionary is immediate with the xbt_dict_foreach macro.
124  *  You only need the other functions in rare cases (they are not used directly in SG itself).
125  *
126  *  Here is an example (assuming that the dictionary contains strings, ie
127  *  that the <tt>data</tt> argument of xbt_dict_set was always a null-terminated char*):
128 \verbatim xbt_dict_cursor_t cursor=NULL;
129  char *key,*data;
130
131  xbt_dict_foreach(dict,cursor,key,data) {
132     printf("   - Seen:  %s->%s\n",key,data);
133  }\endverbatim
134
135  *
136  *  \warning Do not add or remove entries to the cache while traversing !!
137  *
138  *  @{ */
139
140   /** @brief Cursor on dictionaries (opaque type) */
141 struct s_xbt_dict_cursor {
142   xbt_dictelm_t current;
143   int line;
144   xbt_dict_t dict;
145 };
146 typedef struct s_xbt_dict_cursor *xbt_dict_cursor_t;
147
148 static inline xbt_dictelm_t xbt_dict_cursor_get_elm(xbt_dict_cursor_t cursor) {
149   return cursor->current;
150 }
151
152 XBT_PUBLIC(xbt_dict_cursor_t) xbt_dict_cursor_new(const xbt_dict_t dict);
153 XBT_PUBLIC(void) xbt_dict_cursor_free(xbt_dict_cursor_t * cursor);
154
155 XBT_PUBLIC(void) xbt_dict_cursor_rewind(xbt_dict_cursor_t cursor);
156
157 xbt_dictelm_t xbt_dict_cursor_get_elm(xbt_dict_cursor_t cursor);
158 XBT_PUBLIC(char *) xbt_dict_cursor_get_key(xbt_dict_cursor_t cursor);
159 XBT_PUBLIC(void *) xbt_dict_cursor_get_data(xbt_dict_cursor_t cursor);
160 XBT_PUBLIC(void) xbt_dict_cursor_set_data(xbt_dict_cursor_t cursor,
161                                           void *data,
162                                           void_f_pvoid_t free_ctn);
163
164 XBT_PUBLIC(void) xbt_dict_cursor_first(const xbt_dict_t dict,
165                                        xbt_dict_cursor_t * cursor);
166 XBT_PUBLIC(void) xbt_dict_cursor_step(xbt_dict_cursor_t cursor);
167 XBT_PUBLIC(int) xbt_dict_cursor_get_or_free(xbt_dict_cursor_t * cursor,
168                                             char **key, void **data);
169 /** @def xbt_dict_foreach
170  *  @param dict a \ref xbt_dict_t iterator
171  *  @param cursor an \ref xbt_dict_cursor_t used as cursor
172  *  @param key a char*
173  *  @param data a void** output
174  *  @hideinitializer
175  *
176  * \note An example of usage:
177  * \code
178 xbt_dict_cursor_t cursor = NULL;
179 char *key;
180 char *data;
181
182 xbt_dict_foreach(head, cursor, key, data) {
183  printf("Key %s with data %s\n",key,data);
184 }
185 \endcode
186  */
187 #  define xbt_dict_foreach(dict,cursor,key,data)                       \
188     for (cursor=NULL, xbt_dict_cursor_first((dict),&(cursor)) ;        \
189          xbt_dict_cursor_get_or_free(&(cursor),(char**)&(key),(void**)(&data));\
190          xbt_dict_cursor_step(cursor) )
191
192 /** @} */
193
194 #ifdef XBT_USE_DEPRECATED
195 /** @defgroup XBT_dict_multi Multi-level dictionaries
196  *  @ingroup XBT_dict
197  *
198  * They can be seen as dictionary of multiple keys or as dictionary of
199  * dictionary of ... of data. Most of the functions here work the same way
200  * than their simple dictionary counterpart.
201  *
202  * Note that there is no xbt_multidict_free neither xbt_multi_dict_new functions.
203  * Use xbt_dict_free() and xbt_dict_new() instead.
204  *
205  * @{
206  */
207
208 /*----[ xbt_multidict_set ]--------------------------------------------------*/
209 XBT_PUBLIC(void)
210 xbt_multidict_set(xbt_dict_t mdict,
211                   xbt_dynar_t keys, void *data, void (*free_ctn) (void *));
212 XBT_PUBLIC(void)
213 xbt_multidict_set_ext(xbt_dict_t mdict,
214                       xbt_dynar_t keys, xbt_dynar_t lens,
215                       void *data, void_f_pvoid_t free_ctn);
216
217 /*----[ xbt_multidict_get ]--------------------------------------------------*/
218 XBT_PUBLIC(void *) xbt_multidict_get(xbt_dict_t mdict, xbt_dynar_t keys);
219 XBT_PUBLIC(void *) xbt_multidict_get_ext(xbt_dict_t mdict,
220                                          xbt_dynar_t keys,
221                                          xbt_dynar_t lens);
222
223 /*----[ xbt_multidict_remove ]-----------------------------------------------*/
224 /*---------------------------------------------------------------------------*/
225 XBT_PUBLIC(void) xbt_multidict_remove(xbt_dict_t mdict, xbt_dynar_t keys);
226 XBT_PUBLIC(void) xbt_multidict_remove_ext(xbt_dict_t mdict,
227                                           xbt_dynar_t keys,
228                                           xbt_dynar_t lens);
229
230 /** @} */
231 #endif
232
233 SG_END_DECL()
234 #endif                          /* _XBT_DICT_H */