Merge branch 'tb/pack-revindex-on-disk'
[git/debian.git] / strmap.h
blob1e152d832d6fca0da719763dd01ed416ed5d3301
1 #ifndef STRMAP_H
2 #define STRMAP_H
4 #include "hashmap.h"
6 struct mem_pool;
7 struct strmap {
8 struct hashmap map;
9 struct mem_pool *pool;
10 unsigned int strdup_strings:1;
13 struct strmap_entry {
14 struct hashmap_entry ent;
15 const char *key;
16 void *value;
17 /* strmap_entry may be allocated extra space to store the key at end */
20 int cmp_strmap_entry(const void *hashmap_cmp_fn_data,
21 const struct hashmap_entry *entry1,
22 const struct hashmap_entry *entry2,
23 const void *keydata);
25 #define STRMAP_INIT { \
26 .map = HASHMAP_INIT(cmp_strmap_entry, NULL), \
27 .strdup_strings = 1, \
29 #define STRINTMAP_INIT { \
30 .map = STRMAP_INIT, \
31 .default_value = 0, \
33 #define STRSET_INIT { .map = STRMAP_INIT }
36 * Initialize the members of the strmap. Any keys added to the strmap will
37 * be strdup'ed with their memory managed by the strmap.
39 void strmap_init(struct strmap *map);
42 * Same as strmap_init, but for those who want to control the memory management
43 * carefully instead of using the default of strdup_strings=1 and pool=NULL.
45 void strmap_init_with_options(struct strmap *map,
46 struct mem_pool *pool,
47 int strdup_strings);
50 * Remove all entries from the map, releasing any allocated resources.
52 void strmap_clear(struct strmap *map, int free_values);
55 * Similar to strmap_clear() but leaves map->map->table allocated and
56 * pre-sized so that subsequent uses won't need as many rehashings.
58 void strmap_partial_clear(struct strmap *map, int free_values);
61 * Insert "str" into the map, pointing to "data".
63 * If an entry for "str" already exists, its data pointer is overwritten, and
64 * the original data pointer returned. Otherwise, returns NULL.
66 void *strmap_put(struct strmap *map, const char *str, void *data);
69 * Return the strmap_entry mapped by "str", or NULL if there is not such
70 * an item in map.
72 struct strmap_entry *strmap_get_entry(struct strmap *map, const char *str);
75 * Return the data pointer mapped by "str", or NULL if the entry does not
76 * exist.
78 void *strmap_get(struct strmap *map, const char *str);
81 * Return non-zero iff "str" is present in the map. This differs from
82 * strmap_get() in that it can distinguish entries with a NULL data pointer.
84 int strmap_contains(struct strmap *map, const char *str);
87 * Remove the given entry from the strmap. If the string isn't in the
88 * strmap, the map is not altered.
90 void strmap_remove(struct strmap *map, const char *str, int free_value);
93 * Return how many entries the strmap has.
95 static inline unsigned int strmap_get_size(struct strmap *map)
97 return hashmap_get_size(&map->map);
101 * Return whether the strmap is empty.
103 static inline int strmap_empty(struct strmap *map)
105 return strmap_get_size(map) == 0;
109 * iterate through @map using @iter, @var is a pointer to a type strmap_entry
111 #define strmap_for_each_entry(mystrmap, iter, var) \
112 hashmap_for_each_entry(&(mystrmap)->map, iter, var, ent)
116 * strintmap:
117 * A map of string -> int, typecasting the void* of strmap to an int.
119 * Primary differences:
120 * 1) Since the void* value is just an int in disguise, there is no value
121 * to free. (Thus one fewer argument to strintmap_clear)
122 * 2) strintmap_get() returns an int, or returns the default_value if the
123 * key is not found in the strintmap.
124 * 3) No strmap_put() equivalent; strintmap_set() and strintmap_incr()
125 * instead.
128 struct strintmap {
129 struct strmap map;
130 int default_value;
133 #define strintmap_for_each_entry(mystrmap, iter, var) \
134 strmap_for_each_entry(&(mystrmap)->map, iter, var)
136 static inline void strintmap_init(struct strintmap *map, int default_value)
138 strmap_init(&map->map);
139 map->default_value = default_value;
142 static inline void strintmap_init_with_options(struct strintmap *map,
143 int default_value,
144 struct mem_pool *pool,
145 int strdup_strings)
147 strmap_init_with_options(&map->map, pool, strdup_strings);
148 map->default_value = default_value;
151 static inline void strintmap_clear(struct strintmap *map)
153 strmap_clear(&map->map, 0);
156 static inline void strintmap_partial_clear(struct strintmap *map)
158 strmap_partial_clear(&map->map, 0);
161 static inline int strintmap_contains(struct strintmap *map, const char *str)
163 return strmap_contains(&map->map, str);
166 static inline void strintmap_remove(struct strintmap *map, const char *str)
168 strmap_remove(&map->map, str, 0);
171 static inline int strintmap_empty(struct strintmap *map)
173 return strmap_empty(&map->map);
176 static inline unsigned int strintmap_get_size(struct strintmap *map)
178 return strmap_get_size(&map->map);
182 * Returns the value for str in the map. If str isn't found in the map,
183 * the map's default_value is returned.
185 static inline int strintmap_get(struct strintmap *map, const char *str)
187 struct strmap_entry *result = strmap_get_entry(&map->map, str);
188 if (!result)
189 return map->default_value;
190 return (intptr_t)result->value;
193 static inline void strintmap_set(struct strintmap *map, const char *str,
194 intptr_t v)
196 strmap_put(&map->map, str, (void *)v);
200 * Increment the value for str by amt. If str isn't in the map, add it and
201 * set its value to default_value + amt.
203 void strintmap_incr(struct strintmap *map, const char *str, intptr_t amt);
206 * strset:
207 * A set of strings.
209 * Primary differences with strmap:
210 * 1) The value is always NULL, and ignored. As there is no value to free,
211 * there is one fewer argument to strset_clear
212 * 2) No strset_get() because there is no value.
213 * 3) No strset_put(); use strset_add() instead.
216 struct strset {
217 struct strmap map;
220 #define strset_for_each_entry(mystrset, iter, var) \
221 strmap_for_each_entry(&(mystrset)->map, iter, var)
223 static inline void strset_init(struct strset *set)
225 strmap_init(&set->map);
228 static inline void strset_init_with_options(struct strset *set,
229 struct mem_pool *pool,
230 int strdup_strings)
232 strmap_init_with_options(&set->map, pool, strdup_strings);
235 static inline void strset_clear(struct strset *set)
237 strmap_clear(&set->map, 0);
240 static inline void strset_partial_clear(struct strset *set)
242 strmap_partial_clear(&set->map, 0);
245 static inline int strset_contains(struct strset *set, const char *str)
247 return strmap_contains(&set->map, str);
250 static inline void strset_remove(struct strset *set, const char *str)
252 strmap_remove(&set->map, str, 0);
255 static inline int strset_empty(struct strset *set)
257 return strmap_empty(&set->map);
260 static inline unsigned int strset_get_size(struct strset *set)
262 return strmap_get_size(&set->map);
265 /* Returns 1 if str is added to the set; returns 0 if str was already in set */
266 int strset_add(struct strset *set, const char *str);
268 #endif /* STRMAP_H */