]> git.proxmox.com Git - systemd.git/blame - src/shared/strv.h
Imported Upstream version 219
[systemd.git] / src / shared / strv.h
CommitLineData
663996b3
MS
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3#pragma once
4
5/***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
24#include <stdarg.h>
25#include <stdbool.h>
e735f4d4 26#include <fnmatch.h>
663996b3 27
60f067b4 28#include "util.h"
663996b3
MS
29
30char *strv_find(char **l, const char *name) _pure_;
31char *strv_find_prefix(char **l, const char *name) _pure_;
5eef597e 32char *strv_find_startswith(char **l, const char *name) _pure_;
663996b3
MS
33
34void strv_free(char **l);
60f067b4 35DEFINE_TRIVIAL_CLEANUP_FUNC(char**, strv_free);
663996b3
MS
36#define _cleanup_strv_free_ _cleanup_(strv_freep)
37
e735f4d4
MP
38void strv_clear(char **l);
39
663996b3
MS
40char **strv_copy(char * const *l);
41unsigned strv_length(char * const *l) _pure_;
42
60f067b4
JS
43int strv_extend_strv(char ***a, char **b);
44int strv_extend_strv_concat(char ***a, char **b, const char *suffix);
663996b3 45int strv_extend(char ***l, const char *value);
60f067b4 46int strv_extendf(char ***l, const char *format, ...) _printf_(2,0);
663996b3 47int strv_push(char ***l, char *value);
f47781d8 48int strv_push_pair(char ***l, char *a, char *b);
e842803a 49int strv_push_prepend(char ***l, char *value);
60f067b4 50int strv_consume(char ***l, char *value);
f47781d8 51int strv_consume_pair(char ***l, char *a, char *b);
e842803a 52int strv_consume_prepend(char ***l, char *value);
663996b3
MS
53
54char **strv_remove(char **l, const char *s);
663996b3 55char **strv_uniq(char **l);
e735f4d4 56bool strv_is_uniq(char **l);
663996b3 57
f47781d8
MP
58bool strv_equal(char **a, char **b);
59
663996b3
MS
60#define strv_contains(l, s) (!!strv_find((l), (s)))
61
62char **strv_new(const char *x, ...) _sentinel_;
63char **strv_new_ap(const char *x, va_list ap);
64
65static inline const char* STRV_IFNOTNULL(const char *x) {
66 return x ? x : (const char *) -1;
67}
68
69static inline bool strv_isempty(char * const *l) {
70 return !l || !*l;
71}
72
73char **strv_split(const char *s, const char *separator);
663996b3
MS
74char **strv_split_newlines(const char *s);
75
f47781d8
MP
76int strv_split_quoted(char ***t, const char *s, bool relax);
77
663996b3 78char *strv_join(char **l, const char *separator);
14228c0d 79char *strv_join_quoted(char **l);
663996b3
MS
80
81char **strv_parse_nulstr(const char *s, size_t l);
82char **strv_split_nulstr(const char *s);
83
84bool strv_overlap(char **a, char **b) _pure_;
85
86#define STRV_FOREACH(s, l) \
87 for ((s) = (l); (s) && *(s); (s)++)
88
89#define STRV_FOREACH_BACKWARDS(s, l) \
60f067b4
JS
90 STRV_FOREACH(s, l) \
91 ; \
92 for ((s)--; (l) && ((s) >= (l)); (s)--)
663996b3
MS
93
94#define STRV_FOREACH_PAIR(x, y, l) \
95 for ((x) = (l), (y) = (x+1); (x) && *(x) && *(y); (x) += 2, (y) = (x + 1))
96
663996b3
MS
97char **strv_sort(char **l);
98void strv_print(char **l);
60f067b4
JS
99
100#define STRV_MAKE(...) ((char**) ((const char*[]) { __VA_ARGS__, NULL }))
101
102#define STRV_MAKE_EMPTY ((char*[1]) { NULL })
103
104#define strv_from_stdarg_alloca(first) \
105 ({ \
106 char **_l; \
107 \
108 if (!first) \
109 _l = (char**) &first; \
110 else { \
111 unsigned _n; \
112 va_list _ap; \
113 \
114 _n = 1; \
115 va_start(_ap, first); \
116 while (va_arg(_ap, char*)) \
117 _n++; \
118 va_end(_ap); \
119 \
120 _l = newa(char*, _n+1); \
121 _l[_n = 0] = (char*) first; \
122 va_start(_ap, first); \
123 for (;;) { \
124 _l[++_n] = va_arg(_ap, char*); \
125 if (!_l[_n]) \
126 break; \
127 } \
128 va_end(_ap); \
129 } \
130 _l; \
131 })
132
133#define STR_IN_SET(x, ...) strv_contains(STRV_MAKE(__VA_ARGS__), x)
134
135#define FOREACH_STRING(x, ...) \
136 for (char **_l = ({ \
137 char **_ll = STRV_MAKE(__VA_ARGS__); \
138 x = _ll ? _ll[0] : NULL; \
139 _ll; \
140 }); \
141 _l && *_l; \
142 x = ({ \
143 _l ++; \
144 _l[0]; \
145 }))
e735f4d4
MP
146
147char **strv_reverse(char **l);
148
149bool strv_fnmatch(char* const* patterns, const char *s, int flags);
150
151static inline bool strv_fnmatch_or_empty(char* const* patterns, const char *s, int flags) {
152 assert(s);
153 return strv_isempty(patterns) ||
154 strv_fnmatch(patterns, s, flags);
155}