]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/strv.h
strv: add strv_copy_n() helper for copying part of a n strv
[thirdparty/systemd.git] / src / basic / strv.h
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
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
14337c37
ZJS
16char* strv_find(char * const *l, const char *name) _pure_;
17char* strv_find_case(char * const *l, const char *name) _pure_;
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
14337c37 24char** strv_free(char **l);
14bf2c9d 25DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free);
dfb33a97
LP
26#define _cleanup_strv_free_ _cleanup_(strv_freep)
27
14337c37 28char** strv_free_erase(char **l);
ab84f5b9
ZJS
29DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free_erase);
30#define _cleanup_strv_free_erase_ _cleanup_(strv_free_erasep)
31
4ea517a6
LP
32char** strv_copy_n(char * const *l, size_t n);
33static inline char** strv_copy(char * const *l) {
34 return strv_copy_n(l, SIZE_MAX);
35}
da6053d0 36size_t strv_length(char * const *l) _pure_;
60918275 37
479ddcdf
YW
38int strv_extend_strv(char ***a, char * const *b, bool filter_duplicates);
39int strv_extend_strv_concat(char ***a, char * const *b, const char *suffix);
82443be5 40int strv_prepend(char ***l, const char *value);
3ec3ae68
ZJS
41
42/* _with_size() are lower-level functions where the size can be provided externally,
43 * which allows us to skip iterating over the strv to find the end, which saves
44 * a bit of time and reduces the complexity of appending from O(n²) to O(n). */
45
46int strv_extend_with_size(char ***l, size_t *n, const char *value);
47static inline int strv_extend(char ***l, const char *value) {
48 return strv_extend_with_size(l, NULL, value);
49}
50
400102ec 51int strv_extendf(char ***l, const char *format, ...) _printf_(2,3);
4f4afc88 52int strv_extend_front(char ***l, const char *value);
3ec3ae68
ZJS
53
54int strv_push_with_size(char ***l, size_t *n, char *value);
55static inline int strv_push(char ***l, char *value) {
56 return strv_push_with_size(l, NULL, value);
57}
98940a3c 58int strv_push_pair(char ***l, char *a, char *b);
3ec3ae68 59
da6053d0 60int strv_insert(char ***l, size_t position, char *value);
6e888894
ZJS
61
62static inline int strv_push_prepend(char ***l, char *value) {
63 return strv_insert(l, 0, value);
64}
65
3ec3ae68
ZJS
66int strv_consume_with_size(char ***l, size_t *n, char *value);
67static inline int strv_consume(char ***l, char *value) {
68 return strv_consume_with_size(l, NULL, value);
69}
70
98940a3c 71int strv_consume_pair(char ***l, char *a, char *b);
9a00f57a 72int strv_consume_prepend(char ***l, char *value);
034c6ed7 73
14337c37
ZJS
74char** strv_remove(char **l, const char *s);
75char** strv_uniq(char **l);
479ddcdf 76bool strv_is_uniq(char * const *l);
5f9a22c3 77
8b75798d
YW
78int strv_compare(char * const *a, char * const *b);
79static inline bool strv_equal(char * const *a, char * const *b) {
80 return strv_compare(a, b) == 0;
81}
0f84a72e 82
14337c37
ZJS
83char** strv_new_internal(const char *x, ...) _sentinel_;
84char** strv_new_ap(const char *x, va_list ap);
bea1a013 85#define strv_new(...) strv_new_internal(__VA_ARGS__, NULL)
60918275 86
66032ef4 87#define STRV_IGNORE ((const char *) POINTER_MAX)
f9d14060 88
07719a21 89static inline const char* STRV_IFNOTNULL(const char *x) {
f9d14060 90 return x ? x : STRV_IGNORE;
07719a21
LP
91}
92
2fd9ae2e 93static inline bool strv_isempty(char * const *l) {
5f9a22c3
LP
94 return !l || !*l;
95}
96
90e30d76 97int strv_split_full(char ***t, const char *s, const char *separators, ExtractFlags flags);
14337c37 98static inline char** strv_split(const char *s, const char *separators) {
0645b83a 99 char **ret;
0645b83a 100
b38a9d2d 101 if (strv_split_full(&ret, s, separators, EXTRACT_RETAIN_ESCAPE) < 0)
f385c447
YW
102 return NULL;
103
104 return ret;
105}
106
3c318caa
FS
107int strv_split_and_extend_full(char ***t, const char *s, const char *separators, bool filter_duplicates, ExtractFlags flags);
108#define strv_split_and_extend(t, s, sep, dup) strv_split_and_extend_full(t, s, sep, dup, 0)
109
f385c447 110int strv_split_newlines_full(char ***ret, const char *s, ExtractFlags flags);
14337c37 111static inline char** strv_split_newlines(const char *s) {
f385c447
YW
112 char **ret;
113
114 if (strv_split_newlines_full(&ret, s, 0) < 0)
0645b83a
ZJS
115 return NULL;
116
117 return ret;
118}
f88e6be5 119
a082edd5
LB
120/* Given a string containing white-space separated tuples of words themselves separated by ':',
121 * returns a vector of strings. If the second element in a tuple is missing, the corresponding
122 * string in the vector is an empty string. */
123int strv_split_colon_pairs(char ***t, const char *s);
124
e5f2d77b 125char* strv_join_full(char * const *l, const char *separator, const char *prefix, bool escape_separator);
479ddcdf 126static inline char *strv_join(char * const *l, const char *separator) {
d4d9f034 127 return strv_join_full(l, separator, NULL, false);
2b9a7d2e 128}
5f9a22c3 129
479ddcdf 130bool strv_overlap(char * const *a, char * const *b) _pure_;
0c85a4f3 131
de010b0b
YW
132#define _STRV_FOREACH_BACKWARDS(s, l, h, i) \
133 for (typeof(*(l)) *s, *h = (l), *i = ({ \
134 size_t _len = strv_length(h); \
135 _len > 0 ? h + _len - 1 : NULL; \
136 }); \
9b01798b 137 (s = i); \
3e3ee420 138 i = PTR_SUB1(i, h))
de010b0b
YW
139
140#define STRV_FOREACH_BACKWARDS(s, l) \
141 _STRV_FOREACH_BACKWARDS(s, l, UNIQ_T(h, UNIQ), UNIQ_T(i, UNIQ))
60918275 142
de010b0b
YW
143#define _STRV_FOREACH_PAIR(x, y, l, i) \
144 for (typeof(*l) *x, *y, *i = (l); \
145 i && *(x = i) && *(y = i + 1); \
146 i += 2)
857a493d 147
de010b0b
YW
148#define STRV_FOREACH_PAIR(x, y, l) \
149 _STRV_FOREACH_PAIR(x, y, l, UNIQ_T(i, UNIQ))
246aa6dd 150
14337c37 151char** strv_sort(char **l);
479ddcdf 152void strv_print(char * const *l);
250a918d
LP
153
154#define strv_from_stdarg_alloca(first) \
155 ({ \
156 char **_l; \
157 \
158 if (!first) \
897e7561 159 _l = (char**) &first; \
250a918d 160 else { \
da6053d0 161 size_t _n; \
250a918d
LP
162 va_list _ap; \
163 \
164 _n = 1; \
165 va_start(_ap, first); \
166 while (va_arg(_ap, char*)) \
167 _n++; \
168 va_end(_ap); \
169 \
170 _l = newa(char*, _n+1); \
171 _l[_n = 0] = (char*) first; \
172 va_start(_ap, first); \
173 for (;;) { \
174 _l[++_n] = va_arg(_ap, char*); \
175 if (!_l[_n]) \
176 break; \
177 } \
178 va_end(_ap); \
179 } \
180 _l; \
181 })
53ede806
LP
182
183#define STR_IN_SET(x, ...) strv_contains(STRV_MAKE(__VA_ARGS__), x)
c7bf9d51
ZJS
184#define STRPTR_IN_SET(x, ...) \
185 ({ \
186 const char* _x = (x); \
187 _x && strv_contains(STRV_MAKE(__VA_ARGS__), _x); \
188 })
c4a7b2c5 189
ddd6a22a
LP
190#define STRCASE_IN_SET(x, ...) strv_contains_case(STRV_MAKE(__VA_ARGS__), x)
191#define STRCASEPTR_IN_SET(x, ...) \
192 ({ \
193 const char* _x = (x); \
194 _x && strv_contains_case(STRV_MAKE(__VA_ARGS__), _x); \
195 })
196
52f15520
LP
197#define STARTSWITH_SET(p, ...) \
198 ({ \
199 const char *_p = (p); \
de010b0b 200 char *_found = NULL; \
52f15520
LP
201 STRV_FOREACH(_i, STRV_MAKE(__VA_ARGS__)) { \
202 _found = startswith(_p, *_i); \
203 if (_found) \
204 break; \
205 } \
206 _found; \
207 })
208
890befcf
ZJS
209#define ENDSWITH_SET(p, ...) \
210 ({ \
211 const char *_p = (p); \
de010b0b 212 char *_found = NULL; \
890befcf
ZJS
213 STRV_FOREACH(_i, STRV_MAKE(__VA_ARGS__)) { \
214 _found = endswith(_p, *_i); \
215 if (_found) \
216 break; \
217 } \
218 _found; \
219 })
220
f85b12d6 221#define _FOREACH_STRING(uniq, x, y, ...) \
5980d463 222 for (const char *x, * const*UNIQ_T(l, uniq) = STRV_MAKE_CONST(({ x = y; }), ##__VA_ARGS__); \
66a64081 223 x; \
f85b12d6
LP
224 x = *(++UNIQ_T(l, uniq)))
225
226#define FOREACH_STRING(x, y, ...) \
227 _FOREACH_STRING(UNIQ, x, y, ##__VA_ARGS__)
e1dd6790 228
14337c37
ZJS
229char** strv_reverse(char **l);
230char** strv_shell_escape(char **l, const char *bad);
bceccd5e 231
bcfc0e88 232bool strv_fnmatch_full(char* const* patterns, const char *s, int flags, size_t *ret_matched_pos);
191a3f16
ZJS
233static inline bool strv_fnmatch(char* const* patterns, const char *s) {
234 return strv_fnmatch_full(patterns, s, 0, NULL);
0ef84b80 235}
bceccd5e 236
2404701e 237static inline bool strv_fnmatch_or_empty(char* const* patterns, const char *s, int flags) {
bceccd5e
ZJS
238 assert(s);
239 return strv_isempty(patterns) ||
191a3f16 240 strv_fnmatch_full(patterns, s, flags, NULL);
bceccd5e 241}
fe382237 242
14337c37 243char** strv_skip(char **l, size_t n);
8dd4c05b
LP
244
245int strv_extend_n(char ***l, const char *value, size_t n);
3df9bec5 246
6658f7c7
DDM
247int strv_extend_assignment(char ***l, const char *lhs, const char *rhs);
248
479ddcdf 249int fputstrv(FILE *f, char * const *l, const char *separator, bool *space);
b302a50d
LP
250
251#define strv_free_and_replace(a, b) \
fc4c10b2 252 free_and_replace_full(a, b, strv_free)
cde79109
ZJS
253
254extern const struct hash_ops string_strv_hash_ops;
856e5195
ZJS
255int _string_strv_hashmap_put(Hashmap **h, const char *key, const char *value HASHMAP_DEBUG_PARAMS);
256int _string_strv_ordered_hashmap_put(OrderedHashmap **h, const char *key, const char *value HASHMAP_DEBUG_PARAMS);
257#define string_strv_hashmap_put(h, k, v) _string_strv_hashmap_put(h, k, v HASHMAP_DEBUG_SRC_ARGS)
258#define string_strv_ordered_hashmap_put(h, k, v) _string_strv_ordered_hashmap_put(h, k, v HASHMAP_DEBUG_SRC_ARGS)