Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start deprecating xbt_dict
[simgrid.git] / include / xbt / dict.h
1 /* xbt/dict.h -- api to a generic dictionary                                */
2
3 /* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef XBT_DICT_H
9 #define XBT_DICT_H
10
11 #include "xbt/misc.h"           /* SG_BEGIN_DECL */
12 #include "xbt/dynar.h"          /* void_f_pvoid_t */
13 #include <stdint.h>             /* uintptr_t */
14
15 SG_BEGIN_DECL()
16
17 /** @addtogroup XBT_dict
18  *  @brief The dictionary data structure (comparable to hash tables)
19  *
20  *  This section describes the API to a dictionary structure that  associates as string to a void* key. It provides the
21  *  same functionality than an hash table.
22  *
23  *  @deprecated If you are using C++, you might want to use `std::unordered_map` instead.
24  *
25  *  Here is a little example of use:
26
27 \verbatim
28  xbt_dict_t mydict = xbt_dict_new();
29  char buff[512];
30
31  sprintf(buff,"some very precious data");
32  xbt_dict_set(mydict,"my data", strdup(buff), free);
33
34  sprintf(buff,"another good stuff");
35  xbt_dict_set(mydict,"my data", strdup(buff), free); // previous data gets erased (and freed) by second add
36 \endverbatim
37  */
38
39 /** @defgroup XBT_dict_cons Dict constructor and destructor
40  *  @ingroup XBT_dict
41  *
42  *  @{
43  */
44
45   /** \brief Dictionary data type (opaque structure) */
46 typedef struct s_xbt_dict *xbt_dict_t;
47 typedef struct s_xbt_dictelm *xbt_dictelm_t;
48 typedef struct s_xbt_dictelm {
49   char *key;
50   int key_len;
51   unsigned int hash_code;
52
53   void *content;
54
55   xbt_dictelm_t next;
56 } s_xbt_dictelm_t;
57
58 XBT_PUBLIC(xbt_dict_t)
59 XBT_ATTRIB_DEPRECATED_v319("Use xbt_dict_new_homogeneous(). v3.19 will turn this warning into an error.")
60     xbt_dict_new();
61 XBT_PUBLIC(xbt_dict_t) xbt_dict_new_homogeneous(void_f_pvoid_t free_ctn);
62 XBT_PUBLIC(void) xbt_dict_free(xbt_dict_t * dict);
63 XBT_PUBLIC(unsigned int) xbt_dict_size(xbt_dict_t dict);
64
65 /** @} */
66 /** @defgroup XBT_dict_basic Dictionaries basic usage
67  *  @ingroup XBT_dict
68  *
69  * Careful, those functions assume that the key is null-terminated.
70  *
71  *  @{
72  */
73
74 XBT_PUBLIC(void) xbt_dict_set(xbt_dict_t dict, const char *key, void *data, void_f_pvoid_t free_ctn);
75 XBT_PUBLIC(void *) xbt_dict_get(xbt_dict_t dict, const char *key);
76 XBT_PUBLIC(void *) xbt_dict_get_or_null(xbt_dict_t dict, const char *key);
77 XBT_PUBLIC(char*)
78 XBT_ATTRIB_DEPRECATED_v321("xbt_dict is dying. v3.21 will turn this warning into an error.")
79     xbt_dict_get_key(xbt_dict_t dict, const void* data);
80 XBT_PUBLIC(char*)
81 XBT_ATTRIB_DEPRECATED_v321("xbt_dict is dying. v3.21 will turn this warning into an error.")
82     xbt_dict_get_elm_key(xbt_dictelm_t elem);
83 XBT_PUBLIC(xbt_dictelm_t) xbt_dict_get_elm(xbt_dict_t dict, const char *key);
84 XBT_PUBLIC(xbt_dictelm_t) xbt_dict_get_elm_or_null(xbt_dict_t dict, const char *key);
85
86 XBT_PUBLIC(void) xbt_dict_remove(xbt_dict_t dict, const char *key);
87 XBT_PUBLIC(void) xbt_dict_reset(xbt_dict_t dict);
88 XBT_PUBLIC(int) xbt_dict_length(xbt_dict_t dict);
89 XBT_PUBLIC(void)
90 XBT_ATTRIB_DEPRECATED_v321("xbt_dict is dying. v3.21 will turn this warning into an error.")
91     xbt_dict_dump_output_string(void* s);
92 XBT_PUBLIC(void) xbt_dict_dump(xbt_dict_t dict, void (*output) (void *));
93 XBT_PUBLIC(void)
94 XBT_ATTRIB_DEPRECATED_v321("xbt_dict is dying. v3.21 will turn this warning into an error.")
95     xbt_dict_dump_sizes(xbt_dict_t dict);
96 XBT_PUBLIC(int) xbt_dict_is_empty(xbt_dict_t dict);
97
98 /** @} */
99 /** @defgroup XBT_dict_nnul Dictionaries with non-nul terminated keys
100  *  @ingroup XBT_dict
101  *
102  * Those functions work even with non-null terminated keys.
103  *
104  *  @{
105  */
106 XBT_PUBLIC(void) xbt_dict_set_ext(xbt_dict_t dict, const char *key, int key_len, void *data, void_f_pvoid_t free_ctn);
107 XBT_PUBLIC(void*)
108 XBT_ATTRIB_DEPRECATED_v321("xbt_dict is dying. v3.21 will turn this warning into an error.")
109     xbt_dict_get_ext(xbt_dict_t dict, const char* key, int key_len);
110 XBT_PUBLIC(void*)
111 XBT_ATTRIB_DEPRECATED_v321("xbt_dict is dying. v3.21 will turn this warning into an error.")
112     xbt_dict_get_or_null_ext(xbt_dict_t dict, const char* key, int key_len);
113 XBT_PUBLIC(void) xbt_dict_remove_ext(xbt_dict_t dict, const char *key, int key_len);
114
115 struct s_xbt_dict_cursor {
116   xbt_dictelm_t current;
117   int line;
118   xbt_dict_t dict;
119 };
120
121 /** @} */
122 /** @defgroup XBT_dict_curs Cursors on dictionaries
123  *  @ingroup XBT_dict
124  *
125  *  Don't get impressed, there is a lot of functions here, but traversing a dictionary is immediate with the
126  *  xbt_dict_foreach macro.
127  *  You only need the other functions in rare cases (they are not used directly in SG itself).
128  *
129  *  Here is an example (assuming that the dictionary contains strings, i.e., that the <tt>data</tt> argument of
130  *  xbt_dict_set was always a null-terminated char*):
131 \verbatim xbt_dict_cursor_t cursor=NULL;
132  char *key,*data;
133
134  xbt_dict_foreach(dict,cursor,key,data) {
135     printf("   - Seen:  %s->%s\n",key,data);
136  }\endverbatim
137
138  *
139  *  \warning Do not add or remove entries to the cache while traversing !!
140  *
141  *  @{ */
142
143 /** @brief Cursor on dictionaries (opaque type) */
144 typedef struct s_xbt_dict_cursor *xbt_dict_cursor_t;
145
146 static inline xbt_dictelm_t xbt_dict_cursor_get_elm(xbt_dict_cursor_t cursor) {
147   return cursor->current;
148 }
149
150 XBT_PUBLIC(xbt_dict_cursor_t) xbt_dict_cursor_new(const xbt_dict_t dict);
151 XBT_PUBLIC(void) xbt_dict_cursor_free(xbt_dict_cursor_t * cursor);
152
153 XBT_PUBLIC(void) xbt_dict_cursor_rewind(xbt_dict_cursor_t cursor);
154
155 XBT_PUBLIC(char *) xbt_dict_cursor_get_key(xbt_dict_cursor_t cursor);
156 XBT_PUBLIC(void *) xbt_dict_cursor_get_data(xbt_dict_cursor_t cursor);
157 XBT_PUBLIC(void)
158 XBT_ATTRIB_DEPRECATED_v321("xbt_dict is dying. v3.21 will turn this warning into an error.")
159     xbt_dict_cursor_set_data(xbt_dict_cursor_t cursor, void* data, void_f_pvoid_t free_ctn);
160
161 XBT_PUBLIC(void) xbt_dict_cursor_first(const xbt_dict_t dict, xbt_dict_cursor_t * cursor);
162 XBT_PUBLIC(void) xbt_dict_cursor_step(xbt_dict_cursor_t cursor);
163 XBT_PUBLIC(int) xbt_dict_cursor_get_or_free(xbt_dict_cursor_t * cursor, char **key, void **data);
164 /** @def xbt_dict_foreach
165  *  @param dict a \ref xbt_dict_t iterator
166  *  @param cursor an \ref xbt_dict_cursor_t used as cursor
167  *  @param key a char*
168  *  @param data a void** output
169  *  @hideinitializer
170  *
171  * \note An example of usage:
172  * \code
173 xbt_dict_cursor_t cursor = NULL;
174 char *key;
175 char *data;
176
177 xbt_dict_foreach(head, cursor, key, data) {
178  printf("Key %s with data %s\n",key,data);
179 }
180 \endcode
181  */
182 #  define xbt_dict_foreach(dict,cursor,key,data)                       \
183     for (cursor=NULL, xbt_dict_cursor_first((dict),&(cursor)) ;        \
184          xbt_dict_cursor_get_or_free(&(cursor),(char**)&(key),(void**)(&data));\
185          xbt_dict_cursor_step(cursor) )
186
187 /** @} */
188
189 SG_END_DECL()
190
191 #endif /* XBT_DICT_H */