udev: String substitutions can be done in ENV, too
[systemd_ALT.git] / src / basic / set.h
blob618e729744662b29938db978573cd49da8b6cfc0
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
4 #include "extract-word.h"
5 #include "hashmap.h"
6 #include "macro.h"
8 #define set_free_and_replace(a, b) \
9 free_and_replace_full(a, b, set_free)
11 Set* _set_new(const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS);
12 #define set_new(ops) _set_new(ops HASHMAP_DEBUG_SRC_ARGS)
14 static inline Set* set_free(Set *s) {
15 return (Set*) _hashmap_free(HASHMAP_BASE(s), NULL, NULL);
18 static inline Set* set_free_free(Set *s) {
19 return (Set*) _hashmap_free(HASHMAP_BASE(s), free, NULL);
22 /* no set_free_free_free */
24 #define set_copy(s) ((Set*) _hashmap_copy(HASHMAP_BASE(s) HASHMAP_DEBUG_SRC_ARGS))
26 int _set_ensure_allocated(Set **s, const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS);
27 #define set_ensure_allocated(h, ops) _set_ensure_allocated(h, ops HASHMAP_DEBUG_SRC_ARGS)
29 int set_put(Set *s, const void *key);
30 /* no set_update */
31 /* no set_replace */
32 static inline void *set_get(const Set *s, const void *key) {
33 return _hashmap_get(HASHMAP_BASE((Set *) s), key);
35 /* no set_get2 */
37 static inline bool set_contains(const Set *s, const void *key) {
38 return _hashmap_contains(HASHMAP_BASE((Set *) s), key);
41 static inline void *set_remove(Set *s, const void *key) {
42 return _hashmap_remove(HASHMAP_BASE(s), key);
45 /* no set_remove2 */
46 /* no set_remove_value */
47 int set_remove_and_put(Set *s, const void *old_key, const void *new_key);
48 /* no set_remove_and_replace */
49 int set_merge(Set *s, Set *other);
51 static inline int set_reserve(Set *h, unsigned entries_add) {
52 return _hashmap_reserve(HASHMAP_BASE(h), entries_add);
55 static inline int set_move(Set *s, Set *other) {
56 return _hashmap_move(HASHMAP_BASE(s), HASHMAP_BASE(other));
59 static inline int set_move_one(Set *s, Set *other, const void *key) {
60 return _hashmap_move_one(HASHMAP_BASE(s), HASHMAP_BASE(other), key);
63 static inline unsigned set_size(const Set *s) {
64 return _hashmap_size(HASHMAP_BASE((Set *) s));
67 static inline bool set_isempty(const Set *s) {
68 return set_size(s) == 0;
71 static inline unsigned set_buckets(const Set *s) {
72 return _hashmap_buckets(HASHMAP_BASE((Set *) s));
75 static inline bool set_iterate(const Set *s, Iterator *i, void **value) {
76 return _hashmap_iterate(HASHMAP_BASE((Set*) s), i, value, NULL);
79 static inline void set_clear(Set *s) {
80 _hashmap_clear(HASHMAP_BASE(s), NULL, NULL);
83 static inline void set_clear_free(Set *s) {
84 _hashmap_clear(HASHMAP_BASE(s), free, NULL);
87 /* no set_clear_free_free */
89 static inline void *set_steal_first(Set *s) {
90 return _hashmap_first_key_and_value(HASHMAP_BASE(s), true, NULL);
93 #define set_clear_with_destructor(s, f) \
94 ({ \
95 Set *_s = (s); \
96 void *_item; \
97 while ((_item = set_steal_first(_s))) \
98 f(_item); \
99 _s; \
101 #define set_free_with_destructor(s, f) \
102 set_free(set_clear_with_destructor(s, f))
104 /* no set_steal_first_key */
105 /* no set_first_key */
107 static inline void *set_first(const Set *s) {
108 return _hashmap_first_key_and_value(HASHMAP_BASE((Set *) s), false, NULL);
111 /* no set_next */
113 static inline char **set_get_strv(Set *s) {
114 return _hashmap_get_strv(HASHMAP_BASE(s));
117 int _set_ensure_put(Set **s, const struct hash_ops *hash_ops, const void *key HASHMAP_DEBUG_PARAMS);
118 #define set_ensure_put(s, hash_ops, key) _set_ensure_put(s, hash_ops, key HASHMAP_DEBUG_SRC_ARGS)
120 int _set_ensure_consume(Set **s, const struct hash_ops *hash_ops, void *key HASHMAP_DEBUG_PARAMS);
121 #define set_ensure_consume(s, hash_ops, key) _set_ensure_consume(s, hash_ops, key HASHMAP_DEBUG_SRC_ARGS)
123 int set_consume(Set *s, void *value);
125 int _set_put_strndup_full(Set **s, const struct hash_ops *hash_ops, const char *p, size_t n HASHMAP_DEBUG_PARAMS);
126 #define set_put_strndup_full(s, hash_ops, p, n) _set_put_strndup_full(s, hash_ops, p, n HASHMAP_DEBUG_SRC_ARGS)
127 #define set_put_strdup_full(s, hash_ops, p) set_put_strndup_full(s, hash_ops, p, SIZE_MAX)
128 #define set_put_strndup(s, p, n) set_put_strndup_full(s, &string_hash_ops_free, p, n)
129 #define set_put_strdup(s, p) set_put_strndup(s, p, SIZE_MAX)
131 int _set_put_strdupv_full(Set **s, const struct hash_ops *hash_ops, char **l HASHMAP_DEBUG_PARAMS);
132 #define set_put_strdupv_full(s, hash_ops, l) _set_put_strdupv_full(s, hash_ops, l HASHMAP_DEBUG_SRC_ARGS)
133 #define set_put_strdupv(s, l) set_put_strdupv_full(s, &string_hash_ops_free, l)
135 int set_put_strsplit(Set *s, const char *v, const char *separators, ExtractFlags flags);
137 #define _SET_FOREACH(e, s, i) \
138 for (Iterator i = ITERATOR_FIRST; set_iterate((s), &i, (void**)&(e)); )
139 #define SET_FOREACH(e, s) \
140 _SET_FOREACH(e, s, UNIQ_T(i, UNIQ))
142 #define SET_FOREACH_MOVE(e, d, s) \
143 for (; ({ e = set_first(s); assert_se(!e || set_move_one(d, s, e) >= 0); e; }); )
145 DEFINE_TRIVIAL_CLEANUP_FUNC(Set*, set_free);
146 DEFINE_TRIVIAL_CLEANUP_FUNC(Set*, set_free_free);
148 #define _cleanup_set_free_ _cleanup_(set_freep)
149 #define _cleanup_set_free_free_ _cleanup_(set_free_freep)
151 int set_strjoin(Set *s, const char *separator, bool wrap_with_separator, char **ret);
153 bool set_equal(Set *a, Set *b);
155 bool set_fnmatch(Set *include_patterns, Set *exclude_patterns, const char *needle);