]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/strv.h
basic/hashmap,set: change "internal_" to "_" as the prefix
[thirdparty/systemd.git] / src / basic / strv.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
c2f1db8f 2#pragma once
60918275 3
84ac7bea 4#include <fnmatch.h>
15ae422b
LP
5#include <stdarg.h>
6#include <stdbool.h>
11c3a366 7#include <stddef.h>
ca78ad1d 8#include <stdio.h>
15ae422b 9
11c3a366 10#include "alloc-util.h"
93cc7779 11#include "extract-word.h"
cde79109 12#include "hashmap.h"
11c3a366 13#include "macro.h"
8059aa9c 14#include "string-util.h"
60918275 15
479ddcdf 16char *strv_find(char * const *l, const char *name) _pure_;
ddd6a22a 17char *strv_find_case(char * const *l, const char *name) _pure_;
479ddcdf
YW
18char *strv_find_prefix(char * const *l, const char *name) _pure_;
19char *strv_find_startswith(char * const *l, const char *name) _pure_;
a4bfb399 20
ddd6a22a
LP
21#define strv_contains(l, s) (!!strv_find((l), (s)))
22#define strv_contains_case(l, s) (!!strv_find_case((l), (s)))
23
33c2ce7b 24char **strv_free(char **l);
14bf2c9d 25DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free);
dfb33a97
LP
26#define _cleanup_strv_free_ _cleanup_(strv_freep)
27
ab84f5b9
ZJS
28char **strv_free_erase(char **l);
29DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free_erase);
30#define _cleanup_strv_free_erase_ _cleanup_(strv_free_erasep)
31
b231b547 32char **strv_copy(char * const *l);
da6053d0 33size_t strv_length(char * const *l) _pure_;
60918275 34
479ddcdf
YW
35int strv_extend_strv(char ***a, char * const *b, bool filter_duplicates);
36int strv_extend_strv_concat(char ***a, char * const *b, const char *suffix);
5926ccca 37int strv_extend(char ***l, const char *value);
20e265d4 38int strv_extendf(char ***l, const char *format, ...) _printf_(2,0);
4f4afc88 39int strv_extend_front(char ***l, const char *value);
4468addc 40int strv_push(char ***l, char *value);
98940a3c 41int strv_push_pair(char ***l, char *a, char *b);
da6053d0 42int strv_insert(char ***l, size_t position, char *value);
6e888894
ZJS
43
44static inline int strv_push_prepend(char ***l, char *value) {
45 return strv_insert(l, 0, value);
46}
47
6e18964d 48int strv_consume(char ***l, char *value);
98940a3c 49int strv_consume_pair(char ***l, char *a, char *b);
9a00f57a 50int strv_consume_prepend(char ***l, char *value);
034c6ed7 51
5f9a22c3
LP
52char **strv_remove(char **l, const char *s);
53char **strv_uniq(char **l);
479ddcdf 54bool strv_is_uniq(char * const *l);
5f9a22c3 55
8b75798d
YW
56int strv_compare(char * const *a, char * const *b);
57static inline bool strv_equal(char * const *a, char * const *b) {
58 return strv_compare(a, b) == 0;
59}
0f84a72e 60
bea1a013 61char **strv_new_internal(const char *x, ...) _sentinel_;
b231b547 62char **strv_new_ap(const char *x, va_list ap);
bea1a013 63#define strv_new(...) strv_new_internal(__VA_ARGS__, NULL)
60918275 64
f9d14060
AK
65#define STRV_IGNORE ((const char *) -1)
66
07719a21 67static inline const char* STRV_IFNOTNULL(const char *x) {
f9d14060 68 return x ? x : STRV_IGNORE;
07719a21
LP
69}
70
2fd9ae2e 71static inline bool strv_isempty(char * const *l) {
5f9a22c3
LP
72 return !l || !*l;
73}
74
8059aa9c 75char **strv_split_full(const char *s, const char *separator, SplitFlags flags);
af0b60b3 76static inline char **strv_split(const char *s, const char *separator) {
8059aa9c 77 return strv_split_full(s, separator, 0);
af0b60b3 78}
b231b547 79char **strv_split_newlines(const char *s);
5f9a22c3 80
8adaf7bd 81int strv_split_extract(char ***t, const char *s, const char *separators, ExtractFlags flags);
f88e6be5 82
479ddcdf
YW
83char *strv_join_prefix(char * const *l, const char *separator, const char *prefix);
84static inline char *strv_join(char * const *l, const char *separator) {
2b9a7d2e
YW
85 return strv_join_prefix(l, separator, NULL);
86}
5f9a22c3 87
21bc923a 88char **strv_parse_nulstr(const char *s, size_t l);
fabe5c0e 89char **strv_split_nulstr(const char *s);
479ddcdf 90int strv_make_nulstr(char * const *l, char **p, size_t *n);
21bc923a 91
a7addf32
ZJS
92static inline int strv_from_nulstr(char ***a, const char *nulstr) {
93 char **t;
94
95 t = strv_split_nulstr(nulstr);
96 if (!t)
97 return -ENOMEM;
98 *a = t;
99 return 0;
100}
101
479ddcdf 102bool strv_overlap(char * const *a, char * const *b) _pure_;
0c85a4f3 103
60918275 104#define STRV_FOREACH(s, l) \
cba8922f 105 for ((s) = (l); (s) && *(s); (s)++)
60918275 106
4a39c774
LP
107#define STRV_FOREACH_BACKWARDS(s, l) \
108 for (s = ({ \
147d8fc1 109 typeof(l) _l = l; \
4a39c774
LP
110 _l ? _l + strv_length(_l) - 1U : NULL; \
111 }); \
112 (l) && ((s) >= (l)); \
113 (s)--)
857a493d 114
246aa6dd 115#define STRV_FOREACH_PAIR(x, y, l) \
0cd41757 116 for ((x) = (l), (y) = (x) ? (x+1) : NULL; (x) && *(x) && *(y); (x) += 2, (y) = (x + 1))
246aa6dd 117
857a493d 118char **strv_sort(char **l);
479ddcdf 119void strv_print(char * const *l);
250a918d 120
897e7561
LP
121#define STRV_MAKE(...) ((char**) ((const char*[]) { __VA_ARGS__, NULL }))
122
123#define STRV_MAKE_EMPTY ((char*[1]) { NULL })
124
250a918d
LP
125#define strv_from_stdarg_alloca(first) \
126 ({ \
127 char **_l; \
128 \
129 if (!first) \
897e7561 130 _l = (char**) &first; \
250a918d 131 else { \
da6053d0 132 size_t _n; \
250a918d
LP
133 va_list _ap; \
134 \
135 _n = 1; \
136 va_start(_ap, first); \
137 while (va_arg(_ap, char*)) \
138 _n++; \
139 va_end(_ap); \
140 \
141 _l = newa(char*, _n+1); \
142 _l[_n = 0] = (char*) first; \
143 va_start(_ap, first); \
144 for (;;) { \
145 _l[++_n] = va_arg(_ap, char*); \
146 if (!_l[_n]) \
147 break; \
148 } \
149 va_end(_ap); \
150 } \
151 _l; \
152 })
53ede806
LP
153
154#define STR_IN_SET(x, ...) strv_contains(STRV_MAKE(__VA_ARGS__), x)
c7bf9d51
ZJS
155#define STRPTR_IN_SET(x, ...) \
156 ({ \
157 const char* _x = (x); \
158 _x && strv_contains(STRV_MAKE(__VA_ARGS__), _x); \
159 })
c4a7b2c5 160
ddd6a22a
LP
161#define STRCASE_IN_SET(x, ...) strv_contains_case(STRV_MAKE(__VA_ARGS__), x)
162#define STRCASEPTR_IN_SET(x, ...) \
163 ({ \
164 const char* _x = (x); \
165 _x && strv_contains_case(STRV_MAKE(__VA_ARGS__), _x); \
166 })
167
52f15520
LP
168#define STARTSWITH_SET(p, ...) \
169 ({ \
170 const char *_p = (p); \
171 char *_found = NULL, **_i; \
172 STRV_FOREACH(_i, STRV_MAKE(__VA_ARGS__)) { \
173 _found = startswith(_p, *_i); \
174 if (_found) \
175 break; \
176 } \
177 _found; \
178 })
179
890befcf
ZJS
180#define ENDSWITH_SET(p, ...) \
181 ({ \
182 const char *_p = (p); \
183 char *_found = NULL, **_i; \
184 STRV_FOREACH(_i, STRV_MAKE(__VA_ARGS__)) { \
185 _found = endswith(_p, *_i); \
186 if (_found) \
187 break; \
188 } \
189 _found; \
190 })
191
66a64081
LP
192#define FOREACH_STRING(x, y, ...) \
193 for (char **_l = STRV_MAKE(({ x = y; }), ##__VA_ARGS__); \
194 x; \
195 x = *(++_l))
e1dd6790
LP
196
197char **strv_reverse(char **l);
04c14b25 198char **strv_shell_escape(char **l, const char *bad);
bceccd5e 199
0ef84b80 200bool strv_fnmatch_full(char* const* patterns, const char *s, int flags, size_t *matched_pos);
191a3f16
ZJS
201static inline bool strv_fnmatch(char* const* patterns, const char *s) {
202 return strv_fnmatch_full(patterns, s, 0, NULL);
0ef84b80 203}
bceccd5e 204
2404701e 205static inline bool strv_fnmatch_or_empty(char* const* patterns, const char *s, int flags) {
bceccd5e
ZJS
206 assert(s);
207 return strv_isempty(patterns) ||
191a3f16 208 strv_fnmatch_full(patterns, s, flags, NULL);
bceccd5e 209}
fe382237
LP
210
211char ***strv_free_free(char ***l);
9ecdba8c 212DEFINE_TRIVIAL_CLEANUP_FUNC(char***, strv_free_free);
e3ead6bb
LP
213
214char **strv_skip(char **l, size_t n);
8dd4c05b
LP
215
216int strv_extend_n(char ***l, const char *value, size_t n);
3df9bec5 217
479ddcdf 218int fputstrv(FILE *f, char * const *l, const char *separator, bool *space);
b302a50d
LP
219
220#define strv_free_and_replace(a, b) \
221 ({ \
222 strv_free(a); \
223 (a) = (b); \
224 (b) = NULL; \
225 0; \
226 })
cde79109
ZJS
227
228extern const struct hash_ops string_strv_hash_ops;
229int string_strv_hashmap_put(Hashmap **h, const char *key, const char *value);
230int string_strv_ordered_hashmap_put(OrderedHashmap **h, const char *key, const char *value);