Logo AND Algorithmique Numérique Distribuée

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