]> git.ipfire.org Git - thirdparty/systemd.git/blame_incremental - src/basic/strv.h
man: improve Description= documentation (#38101)
[thirdparty/systemd.git] / src / basic / strv.h
... / ...
CommitLineData
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2#pragma once
3
4#include "forward.h"
5#include "strv-fundamental.h" /* IWYU pragma: export */
6
7char* strv_find(char * const *l, const char *name) _pure_;
8char* strv_find_case(char * const *l, const char *name) _pure_;
9char* strv_find_prefix(char * const *l, const char *name) _pure_;
10char* strv_find_startswith(char * const *l, const char *name) _pure_;
11char* strv_find_closest(char * const *l, const char *name) _pure_;
12/* Given two vectors, the first a list of keys and the second a list of key-value pairs, returns the value
13 * of the first key from the first vector that is found in the second vector. */
14char* strv_find_first_field(char * const *needles, char * const *haystack) _pure_;
15
16#define strv_contains(l, s) (!!strv_find((l), (s)))
17#define strv_contains_case(l, s) (!!strv_find_case((l), (s)))
18
19char** strv_free(char **l);
20DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free);
21#define _cleanup_strv_free_ _cleanup_(strv_freep)
22
23char** strv_free_erase(char **l);
24DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free_erase);
25#define _cleanup_strv_free_erase_ _cleanup_(strv_free_erasep)
26
27void strv_free_many(char ***strvs, size_t n) _nonnull_if_nonzero_(1, 2);
28
29char** strv_copy_n(char * const *l, size_t n);
30static inline char** strv_copy(char * const *l) {
31 return strv_copy_n(l, SIZE_MAX);
32}
33int strv_copy_unless_empty(char * const *l, char ***ret);
34
35size_t strv_length(char * const *l) _pure_;
36
37int strv_extend_strv(char ***a, char * const *b, bool filter_duplicates);
38int strv_extend_strv_consume(char ***a, char **b, bool filter_duplicates);
39
40int strv_extend_strv_biconcat(char ***a, const char *prefix, const char* const *b, const char *suffix);
41static inline int strv_extend_strv_concat(char ***a, const char* const *b, const char *suffix) {
42 return strv_extend_strv_biconcat(a, NULL, b, suffix);
43}
44
45int strv_prepend(char ***l, const char *value);
46
47/* _with_size() are lower-level functions where the size can be provided externally,
48 * which allows us to skip iterating over the strv to find the end, which saves
49 * a bit of time and reduces the complexity of appending from O(n²) to O(n). */
50
51int strv_extend_with_size(char ***l, size_t *n, const char *value);
52static inline int strv_extend(char ***l, const char *value) {
53 return strv_extend_with_size(l, NULL, value);
54}
55
56int strv_extend_many_internal(char ***l, const char *value, ...);
57#define strv_extend_many(l, ...) strv_extend_many_internal(l, __VA_ARGS__, POINTER_MAX)
58
59int strv_extendf(char ***l, const char *format, ...) _printf_(2,3);
60
61int strv_push_with_size(char ***l, size_t *n, char *value);
62static inline int strv_push(char ***l, char *value) {
63 return strv_push_with_size(l, NULL, value);
64}
65int strv_push_pair(char ***l, char *a, char *b);
66
67int strv_insert(char ***l, size_t position, char *value);
68
69static inline int strv_push_prepend(char ***l, char *value) {
70 return strv_insert(l, 0, value);
71}
72
73int strv_consume_with_size(char ***l, size_t *n, char *value);
74static inline int strv_consume(char ***l, char *value) {
75 return strv_consume_with_size(l, NULL, value);
76}
77
78int strv_consume_pair(char ***l, char *a, char *b);
79int strv_consume_prepend(char ***l, char *value);
80
81char** strv_remove(char **l, const char *s);
82char** strv_uniq(char **l);
83bool strv_is_uniq(char * const *l) _pure_;
84
85int strv_compare(char * const *a, char * const *b) _pure_;
86static inline bool strv_equal(char * const *a, char * const *b) {
87 return strv_compare(a, b) == 0;
88}
89
90bool strv_equal_ignore_order(char * const *a, char * const *b) _pure_;
91
92char** strv_new_internal(const char *x, ...) _sentinel_;
93char** strv_new_ap(const char *x, va_list ap);
94#define strv_new(...) strv_new_internal(__VA_ARGS__, NULL)
95
96#define STRV_IGNORE ((const char *) POINTER_MAX)
97
98static inline const char* STRV_IFNOTNULL(const char *x) {
99 return x ?: STRV_IGNORE;
100}
101
102static inline bool strv_isempty(char * const *l) {
103 return !l || !*l;
104}
105
106int strv_split_full(char ***t, const char *s, const char *separators, ExtractFlags flags);
107char** strv_split(const char *s, const char *separators);
108
109int strv_split_and_extend_full(char ***t, const char *s, const char *separators, bool filter_duplicates, ExtractFlags flags);
110int strv_split_and_extend(char ***t, const char *s, const char *separators, bool filter_duplicates);
111
112int strv_split_newlines_full(char ***ret, const char *s, ExtractFlags flags);
113char** strv_split_newlines(const char *s);
114
115/* Given a string containing white-space separated tuples of words themselves separated by ':',
116 * returns a vector of strings. If the second element in a tuple is missing, the corresponding
117 * string in the vector is an empty string. */
118int strv_split_colon_pairs(char ***t, const char *s);
119
120char* strv_join_full(char * const *l, const char *separator, const char *prefix, bool escape_separator);
121static inline char *strv_join(char * const *l, const char *separator) {
122 return strv_join_full(l, separator, NULL, false);
123}
124
125bool strv_overlap(char * const *a, char * const *b) _pure_;
126
127#define _STRV_FOREACH_BACKWARDS(s, l, h, i) \
128 for (typeof(*(l)) *s, *h = (l), *i = ({ \
129 size_t _len = strv_length(h); \
130 _len > 0 ? h + _len - 1 : NULL; \
131 }); \
132 (s = i); \
133 i = PTR_SUB1(i, h))
134
135#define STRV_FOREACH_BACKWARDS(s, l) \
136 _STRV_FOREACH_BACKWARDS(s, l, UNIQ_T(h, UNIQ), UNIQ_T(i, UNIQ))
137
138#define _STRV_FOREACH_PAIR(x, y, l, i) \
139 for (typeof(*(l)) *x, *y, *i = (l); \
140 i && *(x = i) && *(y = i + 1); \
141 i += 2)
142
143#define STRV_FOREACH_PAIR(x, y, l) \
144 _STRV_FOREACH_PAIR(x, y, l, UNIQ_T(i, UNIQ))
145
146char** strv_sort(char **l);
147char** strv_sort_uniq(char **l);
148void strv_print_full(char * const *l, const char *prefix);
149static inline void strv_print(char * const *l) {
150 strv_print_full(l, NULL);
151}
152
153char* startswith_strv(const char *s, char * const *l);
154
155#define STARTSWITH_SET(p, ...) \
156 startswith_strv(p, STRV_MAKE(__VA_ARGS__))
157
158char* endswith_strv(const char *s, char * const *l);
159
160#define ENDSWITH_SET(p, ...) \
161 endswith_strv(p, STRV_MAKE(__VA_ARGS__))
162
163#define STR_IN_SET(x, ...) strv_contains(STRV_MAKE(__VA_ARGS__), x)
164#define STRPTR_IN_SET(x, ...) \
165 ({ \
166 const char* _x = (x); \
167 _x && strv_contains(STRV_MAKE(__VA_ARGS__), _x); \
168 })
169
170#define STRCASE_IN_SET(x, ...) strv_contains_case(STRV_MAKE(__VA_ARGS__), x)
171#define STRCASEPTR_IN_SET(x, ...) \
172 ({ \
173 const char* _x = (x); \
174 _x && strv_contains_case(STRV_MAKE(__VA_ARGS__), _x); \
175 })
176
177#define _FOREACH_STRING(uniq, x, y, ...) \
178 for (const char *x, * const*UNIQ_T(l, uniq) = STRV_MAKE_CONST(({ x = y; }), ##__VA_ARGS__); \
179 x; \
180 x = *(++UNIQ_T(l, uniq)))
181
182#define FOREACH_STRING(x, y, ...) \
183 _FOREACH_STRING(UNIQ, x, y, ##__VA_ARGS__)
184
185char** strv_reverse(char **l);
186char** strv_shell_escape(char **l, const char *bad);
187
188bool strv_fnmatch_full(char* const* patterns, const char *s, int flags, size_t *ret_matched_pos);
189static inline bool strv_fnmatch(char* const* patterns, const char *s) {
190 return strv_fnmatch_full(patterns, s, 0, NULL);
191}
192static inline bool strv_fnmatch_or_empty(char* const* patterns, const char *s, int flags) {
193 assert(s);
194 return strv_isempty(patterns) ||
195 strv_fnmatch_full(patterns, s, flags, NULL);
196}
197
198char** strv_skip(char **l, size_t n);
199
200int strv_extend_n(char ***l, const char *value, size_t n);
201
202int strv_extend_assignment(char ***l, const char *lhs, const char *rhs);
203
204int fputstrv(FILE *f, char * const *l, const char *separator, bool *space);
205
206#define strv_free_and_replace(a, b) \
207 free_and_replace_full(a, b, strv_free)
208
209void string_strv_hashmap_remove(Hashmap *h, const char *key, const char *value);
210void string_strv_ordered_hashmap_remove(OrderedHashmap *h, const char *key, const char *value);
211int string_strv_hashmap_put(Hashmap **h, const char *key, const char *value);
212int string_strv_ordered_hashmap_put(OrderedHashmap **h, const char *key, const char *value);
213
214int strv_rebreak_lines(char **l, size_t width, char ***ret);
215
216char** strv_filter_prefix(char * const *l, const char *prefix);