chiark / gitweb /
improve dump output for sockets
[elogind.git] / set.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef foosethfoo
4 #define foosethfoo
5
6 /* Pretty straightforward set implementation. Internally based on the
7  * hashmap. That means that as a minor optimization a NULL set
8  * object will be treated as empty set for all read
9  * operations. That way it is not necessary to instantiate an object
10  * for each set use. */
11
12 #include "hashmap.h"
13
14 typedef struct Set Set;
15
16 Set *set_new(hash_func_t hash_func, compare_func_t compare_func);
17 void set_free(Set* s);
18 Set* set_copy(Set *s);
19 int set_ensure_allocated(Set **s, hash_func_t hash_func, compare_func_t compare_func);
20
21 int set_put(Set *s, void *value);
22 int set_replace(Set *s, void *value);
23 void *set_get(Set *s, void *value);
24 void *set_remove(Set *s, void *value);
25
26 int set_merge(Set *s, Set *other);
27
28 unsigned set_size(Set *s);
29 bool set_isempty(Set *s);
30
31 void *set_iterate(Set *s, Iterator *i);
32 void *set_iterate_backwards(Set *s, Iterator *i);
33 void *set_iterate_skip(Set *s, void *value, Iterator *i);
34
35 void set_clear(Set *s);
36 void *set_steal_first(Set *s);
37 void* set_first(Set *s);
38 void* set_last(Set *s);
39
40 #define SET_FOREACH(e, s, i) \
41         for ((i) = ITERATOR_FIRST, (e) = set_iterate((s), &(i)); (e); (e) = set_iterate((s), &(i)))
42
43 #define SET_FOREACH_BACKWARDS(e, s, i) \
44         for ((i) = ITERATOR_LAST, (e) = set_iterate_backwards((s), &(i)); (e); (e) = set_iterate_backwards((s), &(i)))
45
46 #endif