chiark / gitweb /
f8e86478cb83b905b8e26f4bd744114c95c325b7
[elogind.git] / src / basic / set.h
1 #pragma once
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
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   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include "hashmap.h"
23 #include "macro.h"
24
25 Set *internal_set_new(const struct hash_ops *hash_ops  HASHMAP_DEBUG_PARAMS);
26 #define set_new(ops) internal_set_new(ops  HASHMAP_DEBUG_SRC_ARGS)
27
28 static inline Set *set_free(Set *s) {
29         internal_hashmap_free(HASHMAP_BASE(s));
30         return NULL;
31 }
32
33 static inline Set *set_free_free(Set *s) {
34         internal_hashmap_free_free(HASHMAP_BASE(s));
35         return NULL;
36 }
37
38 /* no set_free_free_free */
39
40 static inline Set *set_copy(Set *s) {
41         return (Set*) internal_hashmap_copy(HASHMAP_BASE(s));
42 }
43
44 int internal_set_ensure_allocated(Set **s, const struct hash_ops *hash_ops  HASHMAP_DEBUG_PARAMS);
45 #define set_ensure_allocated(h, ops) internal_set_ensure_allocated(h, ops  HASHMAP_DEBUG_SRC_ARGS)
46
47 int set_put(Set *s, const void *key);
48 /* no set_update */
49 /* no set_replace */
50 static inline void *set_get(Set *s, void *key) {
51         return internal_hashmap_get(HASHMAP_BASE(s), key);
52 }
53 /* no set_get2 */
54
55 static inline bool set_contains(Set *s, const void *key) {
56         return internal_hashmap_contains(HASHMAP_BASE(s), key);
57 }
58
59 static inline void *set_remove(Set *s, const void *key) {
60         return internal_hashmap_remove(HASHMAP_BASE(s), key);
61 }
62
63 /* no set_remove2 */
64 /* no set_remove_value */
65 #if 0 /// UNNEEDED by elogind
66 int set_remove_and_put(Set *s, const void *old_key, const void *new_key);
67 #endif // 0
68 /* no set_remove_and_replace */
69 int set_merge(Set *s, Set *other);
70
71 static inline int set_reserve(Set *h, unsigned entries_add) {
72         return internal_hashmap_reserve(HASHMAP_BASE(h), entries_add);
73 }
74
75 static inline int set_move(Set *s, Set *other) {
76         return internal_hashmap_move(HASHMAP_BASE(s), HASHMAP_BASE(other));
77 }
78
79 static inline int set_move_one(Set *s, Set *other, const void *key) {
80         return internal_hashmap_move_one(HASHMAP_BASE(s), HASHMAP_BASE(other), key);
81 }
82
83 static inline unsigned set_size(Set *s) {
84         return internal_hashmap_size(HASHMAP_BASE(s));
85 }
86
87 static inline bool set_isempty(Set *s) {
88         return set_size(s) == 0;
89 }
90
91 static inline unsigned set_buckets(Set *s) {
92         return internal_hashmap_buckets(HASHMAP_BASE(s));
93 }
94
95 bool set_iterate(Set *s, Iterator *i, void **value);
96
97 static inline void set_clear(Set *s) {
98         internal_hashmap_clear(HASHMAP_BASE(s));
99 }
100
101 static inline void set_clear_free(Set *s) {
102         internal_hashmap_clear_free(HASHMAP_BASE(s));
103 }
104
105 /* no set_clear_free_free */
106
107 static inline void *set_steal_first(Set *s) {
108         return internal_hashmap_steal_first(HASHMAP_BASE(s));
109 }
110
111 /* no set_steal_first_key */
112 /* no set_first_key */
113
114 static inline void *set_first(Set *s) {
115         return internal_hashmap_first(HASHMAP_BASE(s));
116 }
117
118 /* no set_next */
119
120 static inline char **set_get_strv(Set *s) {
121         return internal_hashmap_get_strv(HASHMAP_BASE(s));
122 }
123
124 int set_consume(Set *s, void *value);
125 int set_put_strdup(Set *s, const char *p);
126 #if 0 /// UNNEEDED by elogind
127 int set_put_strdupv(Set *s, char **l);
128 #endif // 0
129
130 #define SET_FOREACH(e, s, i) \
131         for ((i) = ITERATOR_FIRST; set_iterate((s), &(i), (void**)&(e)); )
132
133 DEFINE_TRIVIAL_CLEANUP_FUNC(Set*, set_free);
134 DEFINE_TRIVIAL_CLEANUP_FUNC(Set*, set_free_free);
135
136 #define _cleanup_set_free_ _cleanup_(set_freep)
137 #define _cleanup_set_free_free_ _cleanup_(set_free_freep)