1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
31 #define MAKE_SET(h) ((Set*) (h))
32 #define MAKE_HASHMAP(s) ((Hashmap*) (s))
34 /* For now this is not much more than a wrapper around a hashmap */
36 Set
*set_new(hash_func_t hash_func
, compare_func_t compare_func
) {
37 return MAKE_SET(hashmap_new(hash_func
, compare_func
));
40 void set_free(Set
* s
) {
41 hashmap_free(MAKE_HASHMAP(s
));
44 int set_ensure_allocated(Set
**s
, hash_func_t hash_func
, compare_func_t compare_func
) {
45 return hashmap_ensure_allocated((Hashmap
**) s
, hash_func
, compare_func
);
48 int set_put(Set
*s
, void *value
) {
49 return hashmap_put(MAKE_HASHMAP(s
), value
, value
);
52 int set_replace(Set
*s
, void *value
) {
53 return hashmap_replace(MAKE_HASHMAP(s
), value
, value
);
56 void *set_get(Set
*s
, void *value
) {
57 return hashmap_get(MAKE_HASHMAP(s
), value
);
60 void *set_remove(Set
*s
, void *value
) {
61 return hashmap_remove(MAKE_HASHMAP(s
), value
);
64 unsigned set_size(Set
*s
) {
65 return hashmap_size(MAKE_HASHMAP(s
));
68 bool set_isempty(Set
*s
) {
69 return hashmap_isempty(MAKE_HASHMAP(s
));
72 void *set_iterate(Set
*s
, Iterator
*i
) {
73 return hashmap_iterate(MAKE_HASHMAP(s
), i
, NULL
);
76 void *set_iterate_backwards(Set
*s
, Iterator
*i
) {
77 return hashmap_iterate_backwards(MAKE_HASHMAP(s
), i
, NULL
);
80 void *set_iterate_skip(Set
*s
, void *value
, Iterator
*i
) {
81 return hashmap_iterate_skip(MAKE_HASHMAP(s
), value
, i
);
84 void *set_steal_first(Set
*s
) {
85 return hashmap_steal_first(MAKE_HASHMAP(s
));
88 void* set_first(Set
*s
) {
89 return hashmap_first(MAKE_HASHMAP(s
));
92 void* set_last(Set
*s
) {
93 return hashmap_last(MAKE_HASHMAP(s
));
96 int set_merge(Set
*s
, Set
*other
) {
97 return hashmap_merge(MAKE_HASHMAP(s
), MAKE_HASHMAP(other
));
100 Set
* set_copy(Set
*s
) {
101 return MAKE_SET(hashmap_copy(MAKE_HASHMAP(s
)));
104 void set_clear(Set
*s
) {
105 hashmap_clear(MAKE_HASHMAP(s
));