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