Search for location of waf script
[Samba.git] / lib / util / util_strlist_v3.c
blobc248575c5255cceec8b38977b1c21c64fa3b16b7
1 /*
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/>.
21 #include "includes.h"
22 #include "system/locale.h"
23 #include "lib/util/tsort.h"
25 #undef strcasecmp
27 /**
28 * @file
29 * @brief String list manipulation v3
32 /**
33 * Needed for making an "unconst" list "const"
35 _PUBLIC_ const char **const_str_list(char **list)
37 return discard_const_p(const char *, list);
40 /**
41 * str_list_make, v3 version. The v4 version does not
42 * look at quoted strings with embedded blanks, so
43 * do NOT merge this function please!
45 #define S_LIST_ABS 16 /* List Allocation Block Size */
47 char **str_list_make_v3(TALLOC_CTX *mem_ctx, const char *string,
48 const char *sep)
50 char **list;
51 const char *str;
52 char *s, *tok;
53 int num, lsize;
55 if (!string || !*string)
56 return NULL;
58 list = talloc_array(mem_ctx, char *, S_LIST_ABS+1);
59 if (list == NULL) {
60 return NULL;
62 lsize = S_LIST_ABS;
64 s = talloc_strdup(list, string);
65 if (s == NULL) {
66 DEBUG(0,("str_list_make: Unable to allocate memory"));
67 TALLOC_FREE(list);
68 return NULL;
72 * DON'T REPLACE THIS BY "LIST_SEP". The common version of
73 * LIST_SEP does not contain the ;, which used to be accepted
74 * by Samba 4.0 before param merges. It would be the far
75 * better solution to split the _v3 version again to source3/
76 * where it belongs, see the _v3 in its name.
78 * Unfortunately it is referenced in /lib/param/loadparm.c,
79 * which depends on the version that the AD-DC mandates,
80 * namely without the ; as part of the list separator. I am
81 * missing the waf fu to properly work around the wrong
82 * include paths here for this defect.
84 if (sep == NULL) {
85 sep = " \t,;\n\r";
88 num = 0;
89 str = s;
91 while (next_token_talloc(list, &str, &tok, sep)) {
93 if (num == lsize) {
94 char **tmp;
96 lsize += S_LIST_ABS;
98 tmp = talloc_realloc(mem_ctx, list, char *,
99 lsize + 1);
100 if (tmp == NULL) {
101 DEBUG(0,("str_list_make: "
102 "Unable to allocate memory"));
103 TALLOC_FREE(list);
104 return NULL;
107 list = tmp;
109 memset (&list[num], 0,
110 ((sizeof(char*)) * (S_LIST_ABS +1)));
113 list[num] = tok;
114 num += 1;
117 list[num] = NULL;
119 TALLOC_FREE(s);
120 return list;
123 const char **str_list_make_v3_const(TALLOC_CTX *mem_ctx,
124 const char *string,
125 const char *sep)
127 return const_str_list(str_list_make_v3(mem_ctx, string, sep));