chiark / gitweb /
implement proper binding on ports
[elogind.git] / set.c
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifdef HAVE_CONFIG_H
4 #include <config.h>
5 #endif
6
7 #include <stdlib.h>
8
9 #include "set.h"
10 #include "hashmap.h"
11
12 #define MAKE_SET(h) ((Set*) (h))
13 #define MAKE_HASHMAP(s) ((Hashmap*) (s))
14
15 /* For now this is not much more than a wrapper around a hashmap */
16
17 Set *set_new(hash_func_t hash_func, compare_func_t compare_func) {
18         return MAKE_SET(hashmap_new(hash_func, compare_func));
19 }
20
21 void set_free(Set* s) {
22         hashmap_free(MAKE_HASHMAP(s));
23 }
24
25 int set_put(Set *s, void *value) {
26         return hashmap_put(MAKE_HASHMAP(s), value, value);
27 }
28
29 int set_replace(Set *s, void *value) {
30         return hashmap_replace(MAKE_HASHMAP(s), value, value);
31 }
32
33 void *set_get(Set *s, void *value) {
34         return hashmap_get(MAKE_HASHMAP(s), value);
35 }
36
37 void *set_remove(Set *s, void *value) {
38         return hashmap_remove(MAKE_HASHMAP(s), value);
39 }
40
41 unsigned set_size(Set *s) {
42         return hashmap_size(MAKE_HASHMAP(s));
43 }
44
45 bool set_isempty(Set *s) {
46         return hashmap_isempty(MAKE_HASHMAP(s));
47 }
48
49 void *set_iterate(Set *s, void **state) {
50         return hashmap_iterate(MAKE_HASHMAP(s), state, NULL);
51 }
52
53 void *set_iterate_backwards(Set *s, void **state) {
54         return hashmap_iterate_backwards(MAKE_HASHMAP(s), state, NULL);
55 }
56
57 void *set_steal_first(Set *s) {
58         return hashmap_steal_first(MAKE_HASHMAP(s));
59 }
60
61 void* set_first(Set *s) {
62         return hashmap_first(MAKE_HASHMAP(s));
63 }
64
65 void* set_last(Set *s) {
66         return hashmap_last(MAKE_HASHMAP(s));
67 }
68
69 int set_merge(Set *s, Set *other) {
70         return hashmap_merge(MAKE_HASHMAP(s), MAKE_HASHMAP(other));
71 }
72
73 Set* set_copy(Set *s) {
74         return MAKE_SET(hashmap_copy(MAKE_HASHMAP(s)));
75 }
76
77 void set_clear(Set *s) {
78         hashmap_clear(MAKE_HASHMAP(s));
79 }