1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
31 char *strv_find(char **l, const char *name) {
43 char *strv_find_prefix(char **l, const char *name) {
49 if (startswith(*i, name))
55 void strv_free(char **l) {
67 char **strv_copy(char * const *l) {
70 k = r = new(char*, strv_length(l) + 1);
75 for (; *l; k++, l++) {
87 unsigned strv_length(char * const *l) {
99 char **strv_new_ap(const char *x, va_list ap) {
102 unsigned n = 0, i = 0;
105 /* As a special trick we ignore all listed strings that equal
106 * (const char*) -1. This is supposed to be used with the
107 * STRV_IFNOTNULL() macro to include possibly NULL strings in
108 * the string list. */
111 n = x == (const char*) -1 ? 0 : 1;
114 while ((s = va_arg(aq, const char*))) {
115 if (s == (const char*) -1)
129 if (x != (const char*) -1) {
136 while ((s = va_arg(ap, const char*))) {
138 if (s == (const char*) -1)
158 char **strv_new(const char *x, ...) {
163 r = strv_new_ap(x, ap);
169 char **strv_merge(char **a, char **b) {
178 r = new(char*, strv_length(a) + strv_length(b) + 1);
182 for (k = r; *a; k++, a++) {
188 for (; *b; k++, b++) {
202 char **strv_merge_concat(char **a, char **b, const char *suffix) {
205 /* Like strv_merge(), but appends suffix to all strings in b, before adding */
210 r = new(char*, strv_length(a) + strv_length(b) + 1);
216 for (; *a; k++, a++) {
222 for (; *b; k++, b++) {
223 *k = strappend(*b, suffix);
237 char **strv_split(const char *s, const char *separator) {
247 FOREACH_WORD_SEPARATOR(w, l, s, separator, state)
255 FOREACH_WORD_SEPARATOR(w, l, s, separator, state) {
256 r[i] = strndup(w, l);
269 char **strv_split_quoted(const char *s) {
279 FOREACH_WORD_QUOTED(w, l, s, state)
287 FOREACH_WORD_QUOTED(w, l, s, state) {
288 r[i] = cunescape_length(w, l);
300 char **strv_split_newlines(const char *s) {
306 /* Special version of strv_split() that splits on newlines and
307 * suppresses an empty string at the end */
309 l = strv_split(s, NEWLINE);
317 if (isempty(l[n-1])) {
325 char *strv_join(char **l, const char *separator) {
333 k = strlen(separator);
349 e = stpcpy(e, separator);
359 char *strv_join_quoted(char **l) {
362 size_t allocated = 0, len = 0;
365 /* assuming here that escaped string cannot be more
366 * than twice as long, and reserving space for the
367 * separator and quotes.
369 _cleanup_free_ char *esc = NULL;
372 if (!GREEDY_REALLOC(buf, allocated,
373 len + strlen(*s) * 2 + 3))
380 needed = snprintf(buf + len, allocated - len, "%s\"%s\"",
381 len > 0 ? " " : "", esc);
382 assert(needed < allocated - len);
396 char **strv_append(char **l, const char *s) {
400 return strv_new(s, NULL);
405 r = new(char*, strv_length(l)+2);
409 for (k = r; *l; k++, l++) {
427 int strv_push(char ***l, char *value) {
435 c = realloc(*l, sizeof(char*) * (n + 2));
446 int strv_extend(char ***l, const char *value) {
464 char **strv_uniq(char **l) {
467 /* Drops duplicate entries. The first identical string will be
468 * kept, the others dropped */
471 strv_remove(i+1, *i);
476 char **strv_remove(char **l, const char *s) {
484 /* Drops every occurrence of s in the string list, edits
487 for (f = t = l; *f; f++) {
501 char **strv_remove_prefix(char **l, const char *s) {
509 /* Drops every occurrence of a string prefixed with s in the
510 * string list, edits in-place. */
512 for (f = t = l; *f; f++) {
514 if (startswith(*f, s)) {
526 char **strv_parse_nulstr(const char *s, size_t l) {
528 unsigned c = 0, i = 0;
534 return strv_new(NULL, NULL);
536 for (p = s; p < s + l; p++)
543 v = new0(char*, c+1);
551 e = memchr(p, 0, s + l - p);
553 v[i] = strndup(p, e ? e - p : s + l - p);
572 char **strv_split_nulstr(const char *s) {
577 if (strv_extend(&r, i) < 0) {
583 return strv_new(NULL, NULL);
588 bool strv_overlap(char **a, char **b) {
601 static int str_compare(const void *_a, const void *_b) {
602 const char **a = (const char**) _a, **b = (const char**) _b;
604 return strcmp(*a, *b);
607 char **strv_sort(char **l) {
612 qsort(l, strv_length(l), sizeof(char*), str_compare);
616 void strv_print(char **l) {