]> git.ipfire.org Git - people/ms/systemd.git/blame - set.c
implement hashmap_replace() and hashmap_remove_value()
[people/ms/systemd.git] / set.c
CommitLineData
60918275
LP
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
17Set *set_new(hash_func_t hash_func, compare_func_t compare_func) {
18 return MAKE_SET(hashmap_new(hash_func, compare_func));
19}
20
21void set_free(Set* s) {
22 hashmap_free(MAKE_HASHMAP(s));
23}
24
25int set_put(Set *s, void *value) {
26 return hashmap_put(MAKE_HASHMAP(s), value, value);
27}
28
29void *set_get(Set *s, void *value) {
30 return hashmap_get(MAKE_HASHMAP(s), value);
31}
32
33void *set_remove(Set *s, void *value) {
34 return hashmap_remove(MAKE_HASHMAP(s), value);
35}
36
37unsigned set_size(Set *s) {
38 return hashmap_size(MAKE_HASHMAP(s));
39}
40
41bool set_isempty(Set *s) {
42 return hashmap_isempty(MAKE_HASHMAP(s));
43}
44
45void *set_iterate(Set *s, void **state) {
46 return hashmap_iterate(MAKE_HASHMAP(s), state, NULL);
47}
48
49void *set_iterate_backwards(Set *s, void **state) {
50 return hashmap_iterate_backwards(MAKE_HASHMAP(s), state, NULL);
51}
52
53void *set_steal_first(Set *s) {
54 return hashmap_steal_first(MAKE_HASHMAP(s));
55}
56
57void* set_first(Set *s) {
58 return hashmap_first(MAKE_HASHMAP(s));
59}
60
61void* set_last(Set *s) {
62 return hashmap_last(MAKE_HASHMAP(s));
63}
91cdde8a
LP
64
65int set_merge(Set *s, Set *other) {
66 return hashmap_merge(MAKE_HASHMAP(s), MAKE_HASHMAP(other));
67}
68
69Set* set_copy(Set *s) {
70 return MAKE_SET(hashmap_copy(MAKE_HASHMAP(s)));
71}
11dd41ce
LP
72
73void set_clear(Set *s) {
74 hashmap_clear(MAKE_HASHMAP(s));
75}