2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 2005
5 Copyright (C) Jelmer Vernooij 2005
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "util_strlist.h"
31 * @brief String list manipulation
35 build an empty (only NULL terminated) list of strings (for expansion with str_list_add() etc)
37 _PUBLIC_
char **str_list_make_empty(TALLOC_CTX
*mem_ctx
)
39 char **ret
= talloc_zero_array(mem_ctx
, char *, 1);
44 place the only element 'entry' into a new, NULL terminated string list
46 _PUBLIC_
char **str_list_make_single(TALLOC_CTX
*mem_ctx
, const char *entry
)
50 ret
= talloc_array(mem_ctx
, char *, 2);
55 ret
[0] = talloc_strdup(ret
, entry
);
66 build a null terminated list of strings from a input string and a
67 separator list. The separator list must contain characters less than
68 or equal to 0x2f for this to work correctly on multi-byte strings
70 _PUBLIC_
char **str_list_make(TALLOC_CTX
*mem_ctx
, const char *string
, const char *sep
)
79 ret
= talloc_array(mem_ctx
, char *, 1);
84 while (string
&& *string
) {
85 size_t len
= strcspn(string
, sep
);
89 string
+= strspn(string
, sep
);
93 ret2
= talloc_realloc(mem_ctx
, ret
, char *,
101 ret
[num_elements
] = talloc_strndup(ret
, string
, len
);
102 if (ret
[num_elements
] == NULL
) {
111 ret
[num_elements
] = NULL
;
117 * build a null terminated list of strings from an argv-like input string
118 * Entries are separated by spaces and can be enclosed by quotes.
119 * Does NOT support escaping
121 _PUBLIC_
char **str_list_make_shell(TALLOC_CTX
*mem_ctx
, const char *string
, const char *sep
)
123 int num_elements
= 0;
126 ret
= talloc_array(mem_ctx
, char *, 1);
134 while (string
&& *string
) {
135 size_t len
= strcspn(string
, sep
);
140 string
+= strspn(string
, sep
);
144 if (*string
== '\"') {
146 len
= strcspn(string
, "\"");
147 element
= talloc_strndup(ret
, string
, len
);
150 element
= talloc_strndup(ret
, string
, len
);
154 if (element
== NULL
) {
159 ret2
= talloc_realloc(mem_ctx
, ret
, char *, num_elements
+2);
166 ret
[num_elements
] = element
;
171 ret
[num_elements
] = NULL
;
178 * join a list back to one string
180 _PUBLIC_
char *str_list_join(TALLOC_CTX
*mem_ctx
, const char **list
, char separator
)
186 return talloc_strdup(mem_ctx
, "");
188 ret
= talloc_strdup(mem_ctx
, list
[0]);
190 for (i
= 1; list
[i
]; i
++) {
191 talloc_asprintf_addbuf(&ret
, "%c%s", separator
, list
[i
]);
197 /** join a list back to one (shell-like) string; entries
198 * separated by spaces, using quotes where necessary */
199 _PUBLIC_
char *str_list_join_shell(TALLOC_CTX
*mem_ctx
, const char **list
, char sep
)
205 return talloc_strdup(mem_ctx
, "");
207 if (strchr(list
[0], ' ') || strlen(list
[0]) == 0)
208 ret
= talloc_asprintf(mem_ctx
, "\"%s\"", list
[0]);
210 ret
= talloc_strdup(mem_ctx
, list
[0]);
212 for (i
= 1; list
[i
]; i
++) {
213 if (strchr(list
[i
], ' ') || strlen(list
[i
]) == 0) {
214 talloc_asprintf_addbuf(&ret
, "%c\"%s\"", sep
, list
[i
]);
216 talloc_asprintf_addbuf(&ret
, "%c%s", sep
, list
[i
]);
224 return the number of elements in a string list
226 _PUBLIC_
size_t str_list_length(const char * const *list
)
229 for (ret
=0;list
&& list
[ret
];ret
++) /* noop */ ;
237 _PUBLIC_
char **str_list_copy(TALLOC_CTX
*mem_ctx
, const char **list
)
245 ret
= talloc_array(mem_ctx
, char *, str_list_length(list
)+1);
249 for (i
=0;list
&& list
[i
];i
++) {
250 ret
[i
] = talloc_strdup(ret
, list
[i
]);
251 if (ret
[i
] == NULL
) {
261 Return true if all the elements of the list match exactly.
263 _PUBLIC_
bool str_list_equal(const char * const *list1
,
264 const char * const *list2
)
268 if (list1
== NULL
|| list2
== NULL
) {
269 return (list1
== list2
);
272 for (i
=0;list1
[i
] && list2
[i
];i
++) {
273 if (strcmp(list1
[i
], list2
[i
]) != 0) {
277 if (list1
[i
] || list2
[i
]) {
285 add an entry to a string list
287 _PUBLIC_
const char **str_list_add(const char **list
, const char *s
)
289 size_t len
= str_list_length(list
);
292 ret
= talloc_realloc(NULL
, list
, const char *, len
+2);
293 if (ret
== NULL
) return NULL
;
295 ret
[len
] = talloc_strdup(ret
, s
);
296 if (ret
[len
] == NULL
) return NULL
;
304 * @brief Extend a talloc'ed string list with a printf'ed string
306 * str_list_add_printf() does nothing if *plist is NULL and it sets
307 * *plist to NULL on failure. It is designed to avoid intermediate
310 * argv = str_list_make_empty(ctx);
311 * str_list_add_printf(&argv, "smbstatus");
312 * str_list_add_printf(&argv, "--configfile=%s", config);
313 * if (argv == NULL) {
317 * @param[in,out] plist The talloc'ed list to extend
318 * @param[in] fmt The format string
320 void str_list_add_printf(char ***plist
, const char *fmt
, ...)
322 char **list
= *plist
;
330 len
= str_list_length((const char * const *)list
);
332 tmp
= talloc_realloc(NULL
, list
, char *, len
+2);
340 list
[len
] = talloc_vasprintf(list
, fmt
, ap
);
343 if (list
[len
] == NULL
) {
355 remove an entry from a string list
357 _PUBLIC_
void str_list_remove(const char **list
, const char *s
)
361 for (i
=0;list
[i
];i
++) {
362 if (strcmp(list
[i
], s
) == 0) break;
364 if (!list
[i
]) return;
373 return true if a string is in a list
375 _PUBLIC_
bool str_list_check(const char **list
, const char *s
)
379 for (i
=0; list
!= NULL
&& list
[i
] != NULL
; i
++) {
380 if (strcmp(list
[i
], s
) == 0) return true;
386 return true if a string is in a list, case insensitively
388 _PUBLIC_
bool str_list_check_ci(const char **list
, const char *s
)
392 for (i
=0; list
!= NULL
&& list
[i
] != NULL
; i
++) {
393 if (strcasecmp(list
[i
], s
) == 0) return true;
400 append one list to another - expanding list1
402 _PUBLIC_
const char **str_list_append(const char **list1
,
403 const char * const *list2
)
405 size_t len1
= str_list_length(list1
);
406 size_t len2
= str_list_length(list2
);
410 ret
= talloc_realloc(NULL
, list1
, const char *, len1
+len2
+1);
411 if (ret
== NULL
) return NULL
;
413 for (i
=len1
;i
<len1
+len2
;i
++) {
414 ret
[i
] = talloc_strdup(ret
, list2
[i
-len1
]);
415 if (ret
[i
] == NULL
) {
424 static int list_cmp(const char **el1
, const char **el2
)
426 return strcmp(*el1
, *el2
);
430 return a list that only contains the unique elements of a list,
431 removing any duplicates
433 _PUBLIC_
const char **str_list_unique(const char **list
)
435 size_t len
= str_list_length(list
);
441 list2
= (const char **)talloc_memdup(list
, list
,
442 sizeof(list
[0])*(len
+1));
443 TYPESAFE_QSORT(list2
, len
, list_cmp
);
445 for (i
=j
=1;i
<len
;i
++) {
446 if (strcmp(list2
[i
], list
[j
-1]) != 0) {
452 list
= talloc_realloc(NULL
, list
, const char *, j
+ 1);
458 very useful when debugging complex list related code
460 _PUBLIC_
void str_list_show(const char **list
)
464 for (i
=0;list
&& list
[i
];i
++) {
465 DEBUG(0,("\"%s\", ", list
[i
]));
473 append one list to another - expanding list1
474 this assumes the elements of list2 are const pointers, so we can re-use them
476 _PUBLIC_
const char **str_list_append_const(const char **list1
,
479 size_t len1
= str_list_length(list1
);
480 size_t len2
= str_list_length(list2
);
484 ret
= talloc_realloc(NULL
, list1
, const char *, len1
+len2
+1);
485 if (ret
== NULL
) return NULL
;
487 for (i
=len1
;i
<len1
+len2
;i
++) {
488 ret
[i
] = list2
[i
-len1
];
496 * Add a string to an array of strings.
498 * num should be a pointer to an integer that holds the current
499 * number of elements in strings. It will be updated by this function.
501 _PUBLIC_
bool add_string_to_array(TALLOC_CTX
*mem_ctx
,
502 const char *str
, const char ***strings
, size_t *num
)
504 char *dup_str
= talloc_strdup(mem_ctx
, str
);
506 *strings
= talloc_realloc(mem_ctx
,
508 const char *, ((*num
)+1));
510 if ((*strings
== NULL
) || (dup_str
== NULL
)) {
515 (*strings
)[*num
] = dup_str
;
522 add an entry to a string list
523 this assumes s will not change
525 _PUBLIC_
const char **str_list_add_const(const char **list
, const char *s
)
527 size_t len
= str_list_length(list
);
530 ret
= talloc_realloc(NULL
, list
, const char *, len
+2);
531 if (ret
== NULL
) return NULL
;
541 this assumes list will not change
543 _PUBLIC_
const char **str_list_copy_const(TALLOC_CTX
*mem_ctx
,
552 ret
= talloc_array(mem_ctx
, const char *, str_list_length(list
)+1);
556 for (i
=0;list
&& list
[i
];i
++) {