chiark / gitweb /
0b4ff30e940730462e7230260b7f2d7c1ed2dfd3
[elogind.git] / src / basic / strv.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
10 #include <fnmatch.h>
11 #include <stdarg.h>
12 #include <stdbool.h>
13 #include <stddef.h>
14
15 #include "alloc-util.h"
16 #include "extract-word.h"
17 #include "macro.h"
18 #include "util.h"
19
20 char *strv_find(char **l, const char *name) _pure_;
21 char *strv_find_prefix(char **l, const char *name) _pure_;
22 char *strv_find_startswith(char **l, const char *name) _pure_;
23
24 char **strv_free(char **l);
25 DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free);
26 #define _cleanup_strv_free_ _cleanup_(strv_freep)
27
28 char **strv_free_erase(char **l);
29 DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free_erase);
30 #define _cleanup_strv_free_erase_ _cleanup_(strv_free_erasep)
31
32 void strv_clear(char **l);
33
34 char **strv_copy(char * const *l);
35 size_t strv_length(char * const *l) _pure_;
36
37 #if 0 /// UNNEEDED by elogind
38 int strv_extend_strv(char ***a, char **b, bool filter_duplicates);
39 int strv_extend_strv_concat(char ***a, char **b, const char *suffix);
40 #endif // 0
41 int strv_extend(char ***l, const char *value);
42 #if 0 /// UNNEEDED by elogind
43 int strv_extendf(char ***l, const char *format, ...) _printf_(2,0);
44 #endif // 0
45 int strv_extend_front(char ***l, const char *value);
46 int strv_push(char ***l, char *value);
47 int strv_push_pair(char ***l, char *a, char *b);
48 int strv_insert(char ***l, size_t position, char *value);
49
50 static inline int strv_push_prepend(char ***l, char *value) {
51         return strv_insert(l, 0, value);
52 }
53
54 int strv_consume(char ***l, char *value);
55 #if 0 /// UNNEEDED by elogind
56 int strv_consume_pair(char ***l, char *a, char *b);
57 #endif // 0
58 int strv_consume_prepend(char ***l, char *value);
59
60 char **strv_remove(char **l, const char *s);
61 char **strv_uniq(char **l);
62 #if 0 /// UNNEEDED by elogind
63 bool strv_is_uniq(char **l);
64 #endif // 0
65
66 bool strv_equal(char **a, char **b);
67
68 #define strv_contains(l, s) (!!strv_find((l), (s)))
69
70 char **strv_new(const char *x, ...) _sentinel_;
71 char **strv_new_ap(const char *x, va_list ap);
72
73 #define STRV_IGNORE ((const char *) -1)
74
75 static inline const char* STRV_IFNOTNULL(const char *x) {
76         return x ? x : STRV_IGNORE;
77 }
78
79 static inline bool strv_isempty(char * const *l) {
80         return !l || !*l;
81 }
82
83 char **strv_split(const char *s, const char *separator);
84 #if 0 /// UNNEEDED by elogind
85 char **strv_split_newlines(const char *s);
86 #endif // 0
87
88 int strv_split_extract(char ***t, const char *s, const char *separators, ExtractFlags flags);
89
90 char *strv_join(char **l, const char *separator);
91 #if 0 /// UNNEEDED by elogind
92 #endif // 0
93
94 char **strv_parse_nulstr(const char *s, size_t l);
95 char **strv_split_nulstr(const char *s);
96 #if 0 /// UNNEEDED by elogind
97 int strv_make_nulstr(char **l, char **p, size_t *n);
98
99 bool strv_overlap(char **a, char **b) _pure_;
100 #endif // 0
101
102 #define STRV_FOREACH(s, l)                      \
103         for ((s) = (l); (s) && *(s); (s)++)
104
105 #define STRV_FOREACH_BACKWARDS(s, l)                                \
106         for (s = ({                                                 \
107                         char **_l = l;                              \
108                         _l ? _l + strv_length(_l) - 1U : NULL;      \
109                         });                                         \
110              (l) && ((s) >= (l));                                   \
111              (s)--)
112
113 #define STRV_FOREACH_PAIR(x, y, l)               \
114         for ((x) = (l), (y) = (x+1); (x) && *(x) && *(y); (x) += 2, (y) = (x + 1))
115
116 char **strv_sort(char **l);
117 void strv_print(char **l);
118
119 #define STRV_MAKE(...) ((char**) ((const char*[]) { __VA_ARGS__, NULL }))
120
121 #define STRV_MAKE_EMPTY ((char*[1]) { NULL })
122
123 #define strv_from_stdarg_alloca(first)                          \
124         ({                                                      \
125                 char **_l;                                      \
126                                                                 \
127                 if (!first)                                     \
128                         _l = (char**) &first;                   \
129                 else {                                          \
130                         size_t _n;                              \
131                         va_list _ap;                            \
132                                                                 \
133                         _n = 1;                                 \
134                         va_start(_ap, first);                   \
135                         while (va_arg(_ap, char*))              \
136                                 _n++;                           \
137                         va_end(_ap);                            \
138                                                                 \
139                         _l = newa(char*, _n+1);                 \
140                         _l[_n = 0] = (char*) first;             \
141                         va_start(_ap, first);                   \
142                         for (;;) {                              \
143                                 _l[++_n] = va_arg(_ap, char*);  \
144                                 if (!_l[_n])                    \
145                                         break;                  \
146                         }                                       \
147                         va_end(_ap);                            \
148                 }                                               \
149                 _l;                                             \
150         })
151
152 #define STR_IN_SET(x, ...) strv_contains(STRV_MAKE(__VA_ARGS__), x)
153 #define STRPTR_IN_SET(x, ...)                                    \
154         ({                                                       \
155                 const char* _x = (x);                            \
156                 _x && strv_contains(STRV_MAKE(__VA_ARGS__), _x); \
157         })
158
159 #define FOREACH_STRING(x, ...)                               \
160         for (char **_l = ({                                  \
161                 char **_ll = STRV_MAKE(__VA_ARGS__);         \
162                 x = _ll ? _ll[0] : NULL;                     \
163                 _ll;                                         \
164         });                                                  \
165         _l && *_l;                                           \
166         x = ({                                               \
167                 _l ++;                                       \
168                 _l[0];                                       \
169         }))
170
171 #if 0 /// UNNEEDED by elogind
172 char **strv_reverse(char **l);
173 char **strv_shell_escape(char **l, const char *bad);
174
175 bool strv_fnmatch(char* const* patterns, const char *s, int flags);
176
177 static inline bool strv_fnmatch_or_empty(char* const* patterns, const char *s, int flags) {
178         assert(s);
179         return strv_isempty(patterns) ||
180                strv_fnmatch(patterns, s, flags);
181 }
182
183 char ***strv_free_free(char ***l);
184 DEFINE_TRIVIAL_CLEANUP_FUNC(char***, strv_free_free);
185
186 char **strv_skip(char **l, size_t n);
187 #endif // 0
188
189 int strv_extend_n(char ***l, const char *value, size_t n);
190
191 #if 0 /// UNNEEDED by elogind
192 int fputstrv(FILE *f, char **l, const char *separator, bool *space);
193 #endif // 0
194
195 #define strv_free_and_replace(a, b)             \
196         ({                                      \
197                 strv_free(a);                   \
198                 (a) = (b);                      \
199                 (b) = NULL;                     \
200                 0;                              \
201         })