blob: 954569f381d8d7ea2e1c6f1333b1e8379ffe2fe8 [file] [log] [blame]
Elijah Newren36bf1952023-02-24 00:09:24 +00001#include "git-compat-util.h"
Johannes Schindelinc455c872008-07-21 19:03:49 +01002#include "string-list.h"
3
Ævar Arnfjörð Bjarmason770feda2021-07-01 12:51:28 +02004void string_list_init_nodup(struct string_list *list)
5{
6 struct string_list blank = STRING_LIST_INIT_NODUP;
7 memcpy(list, &blank, sizeof(*list));
8}
9
10void string_list_init_dup(struct string_list *list)
11{
12 struct string_list blank = STRING_LIST_INIT_DUP;
13 memcpy(list, &blank, sizeof(*list));
14}
15
Johannes Schindelinc455c872008-07-21 19:03:49 +010016/* if there is no exact match, point to the index where the entry could be
17 * inserted */
18static int get_entry_index(const struct string_list *list, const char *string,
19 int *exact_match)
20{
21 int left = -1, right = list->nr;
Junio C Hamano8dd5afc2013-01-07 12:24:55 -080022 compare_strings_fn cmp = list->cmp ? list->cmp : strcmp;
Johannes Schindelinc455c872008-07-21 19:03:49 +010023
24 while (left + 1 < right) {
Derrick Stolee19716b22017-10-08 14:29:37 -040025 int middle = left + (right - left) / 2;
Junio C Hamano8dd5afc2013-01-07 12:24:55 -080026 int compare = cmp(string, list->items[middle].string);
Johannes Schindelinc455c872008-07-21 19:03:49 +010027 if (compare < 0)
28 right = middle;
29 else if (compare > 0)
30 left = middle;
31 else {
32 *exact_match = 1;
33 return middle;
34 }
35 }
36
37 *exact_match = 0;
38 return right;
39}
40
41/* returns -1-index if already exists */
Marius Storm-Olsencfa1ee62009-02-08 15:34:28 +010042static int add_entry(int insert_at, struct string_list *list, const char *string)
Johannes Schindelinc455c872008-07-21 19:03:49 +010043{
Marius Storm-Olsencfa1ee62009-02-08 15:34:28 +010044 int exact_match = 0;
45 int index = insert_at != -1 ? insert_at : get_entry_index(list, string, &exact_match);
Johannes Schindelinc455c872008-07-21 19:03:49 +010046
47 if (exact_match)
48 return -1 - index;
49
Jeff Hostetler950a2342017-04-14 19:51:52 +000050 ALLOC_GROW(list->items, list->nr+1, list->alloc);
Johannes Schindelinc455c872008-07-21 19:03:49 +010051 if (index < list->nr)
René Scharfef331ab92017-07-15 22:00:45 +020052 MOVE_ARRAY(list->items + index + 1, list->items + index,
53 list->nr - index);
Johannes Schindelinc455c872008-07-21 19:03:49 +010054 list->items[index].string = list->strdup_strings ?
55 xstrdup(string) : (char *)string;
56 list->items[index].util = NULL;
57 list->nr++;
58
59 return index;
60}
61
Julian Phillips78a395d2010-06-26 00:41:35 +010062struct string_list_item *string_list_insert(struct string_list *list, const char *string)
Johannes Schindelinc455c872008-07-21 19:03:49 +010063{
Stefan Bellerf8c4ab62014-11-24 13:22:04 -080064 int index = add_entry(-1, list, string);
Johannes Schindelinc455c872008-07-21 19:03:49 +010065
66 if (index < 0)
67 index = -1 - index;
68
69 return list->items + index;
70}
71
Brandon Williams3a300332017-04-19 16:13:21 -070072void string_list_remove(struct string_list *list, const char *string,
73 int free_util)
74{
75 int exact_match;
76 int i = get_entry_index(list, string, &exact_match);
77
78 if (exact_match) {
79 if (list->strdup_strings)
80 free(list->items[i].string);
81 if (free_util)
82 free(list->items[i].util);
83
84 list->nr--;
René Scharfef331ab92017-07-15 22:00:45 +020085 MOVE_ARRAY(list->items + i, list->items + i + 1, list->nr - i);
Brandon Williams3a300332017-04-19 16:13:21 -070086 }
87}
88
Johannes Schindelinc455c872008-07-21 19:03:49 +010089int string_list_has_string(const struct string_list *list, const char *string)
90{
91 int exact_match;
92 get_entry_index(list, string, &exact_match);
93 return exact_match;
94}
95
Marius Storm-Olsencfa1ee62009-02-08 15:34:28 +010096int string_list_find_insert_index(const struct string_list *list, const char *string,
97 int negative_existing_index)
98{
99 int exact_match;
100 int index = get_entry_index(list, string, &exact_match);
101 if (exact_match)
102 index = -1 - (negative_existing_index ? index : 0);
103 return index;
104}
105
Julian Phillipse8c8b712010-06-26 00:41:37 +0100106struct string_list_item *string_list_lookup(struct string_list *list, const char *string)
Johannes Schindelinc455c872008-07-21 19:03:49 +0100107{
108 int exact_match, i = get_entry_index(list, string, &exact_match);
109 if (!exact_match)
110 return NULL;
111 return list->items + i;
112}
113
Michael Haggerty31d54512012-09-12 16:04:45 +0200114void string_list_remove_duplicates(struct string_list *list, int free_util)
115{
116 if (list->nr > 1) {
117 int src, dst;
Junio C Hamano8dd5afc2013-01-07 12:24:55 -0800118 compare_strings_fn cmp = list->cmp ? list->cmp : strcmp;
Michael Haggerty31d54512012-09-12 16:04:45 +0200119 for (src = dst = 1; src < list->nr; src++) {
Junio C Hamano8dd5afc2013-01-07 12:24:55 -0800120 if (!cmp(list->items[dst - 1].string, list->items[src].string)) {
Michael Haggerty31d54512012-09-12 16:04:45 +0200121 if (list->strdup_strings)
122 free(list->items[src].string);
123 if (free_util)
124 free(list->items[src].util);
125 } else
126 list->items[dst++] = list->items[src];
127 }
128 list->nr = dst;
129 }
130}
131
Julian Phillipsb684e972010-06-26 00:41:34 +0100132int for_each_string_list(struct string_list *list,
133 string_list_each_func_t fn, void *cb_data)
Jay Soffianc6f5a7a2009-02-25 03:32:18 -0500134{
135 int i, ret = 0;
136 for (i = 0; i < list->nr; i++)
137 if ((ret = fn(&list->items[i], cb_data)))
138 break;
139 return ret;
140}
141
Michael Haggertyeb5f0c72012-09-12 16:04:44 +0200142void filter_string_list(struct string_list *list, int free_util,
143 string_list_each_func_t want, void *cb_data)
144{
145 int src, dst = 0;
146 for (src = 0; src < list->nr; src++) {
147 if (want(&list->items[src], cb_data)) {
148 list->items[dst++] = list->items[src];
149 } else {
150 if (list->strdup_strings)
151 free(list->items[src].string);
152 if (free_util)
153 free(list->items[src].util);
154 }
155 }
156 list->nr = dst;
157}
158
Jeff King1ee34712022-10-17 21:05:32 -0400159static int item_is_not_empty(struct string_list_item *item, void *data UNUSED)
Michael Haggerty6bb2a132012-11-04 08:07:06 +0100160{
161 return *item->string != '\0';
162}
163
Nguyễn Thái Ngọc Duy3b335762018-12-09 11:25:21 +0100164void string_list_remove_empty_items(struct string_list *list, int free_util)
165{
Michael Haggerty6bb2a132012-11-04 08:07:06 +0100166 filter_string_list(list, free_util, item_is_not_empty, NULL);
167}
168
Johannes Schindelinc455c872008-07-21 19:03:49 +0100169void string_list_clear(struct string_list *list, int free_util)
170{
171 if (list->items) {
172 int i;
173 if (list->strdup_strings) {
174 for (i = 0; i < list->nr; i++)
175 free(list->items[i].string);
176 }
177 if (free_util) {
178 for (i = 0; i < list->nr; i++)
179 free(list->items[i].util);
180 }
181 free(list->items);
182 }
183 list->items = NULL;
184 list->nr = list->alloc = 0;
185}
186
Marius Storm-Olsencfa1ee62009-02-08 15:34:28 +0100187void string_list_clear_func(struct string_list *list, string_list_clear_func_t clearfunc)
188{
189 if (list->items) {
190 int i;
191 if (clearfunc) {
192 for (i = 0; i < list->nr; i++)
193 clearfunc(list->items[i].util, list->items[i].string);
194 }
195 if (list->strdup_strings) {
196 for (i = 0; i < list->nr; i++)
197 free(list->items[i].string);
198 }
199 free(list->items);
200 }
201 list->items = NULL;
202 list->nr = list->alloc = 0;
203}
204
Taylor Blau492ba812023-04-24 18:20:14 -0400205void string_list_setlen(struct string_list *list, size_t nr)
206{
207 if (list->strdup_strings)
208 BUG("cannot setlen a string_list which owns its entries");
209 if (nr > list->nr)
210 BUG("cannot grow a string_list with setlen");
211 list->nr = nr;
212}
213
Michael Haggertye448fed2012-09-12 16:04:42 +0200214struct string_list_item *string_list_append_nodup(struct string_list *list,
215 char *string)
Johannes Schindelinc455c872008-07-21 19:03:49 +0100216{
Michael Haggertye448fed2012-09-12 16:04:42 +0200217 struct string_list_item *retval;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100218 ALLOC_GROW(list->items, list->nr + 1, list->alloc);
Michael Haggertye448fed2012-09-12 16:04:42 +0200219 retval = &list->items[list->nr++];
220 retval->string = string;
221 retval->util = NULL;
222 return retval;
223}
224
225struct string_list_item *string_list_append(struct string_list *list,
226 const char *string)
227{
228 return string_list_append_nodup(
229 list,
230 list->strdup_strings ? xstrdup(string) : (char *)string);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100231}
232
Beat Bollib6d3f5a2018-07-09 21:25:36 +0200233/*
234 * Encapsulate the compare function pointer because ISO C99 forbids
235 * casting from void * to a function pointer and vice versa.
236 */
237struct string_list_sort_ctx
238{
239 compare_strings_fn cmp;
240};
241
René Scharfe5ebd9472017-01-22 18:57:09 +0100242static int cmp_items(const void *a, const void *b, void *ctx)
Johannes Schindelinc455c872008-07-21 19:03:49 +0100243{
Beat Bollib6d3f5a2018-07-09 21:25:36 +0200244 struct string_list_sort_ctx *sort_ctx = ctx;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100245 const struct string_list_item *one = a;
246 const struct string_list_item *two = b;
Beat Bollib6d3f5a2018-07-09 21:25:36 +0200247 return sort_ctx->cmp(one->string, two->string);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100248}
249
Michael Haggerty3383e192014-11-25 09:02:35 +0100250void string_list_sort(struct string_list *list)
Johannes Schindelinc455c872008-07-21 19:03:49 +0100251{
Beat Bollib6d3f5a2018-07-09 21:25:36 +0200252 struct string_list_sort_ctx sort_ctx = {list->cmp ? list->cmp : strcmp};
253
254 QSORT_S(list->items, list->nr, cmp_items, &sort_ctx);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100255}
256
Stephen Boyde2421482010-03-24 00:16:02 -0700257struct string_list_item *unsorted_string_list_lookup(struct string_list *list,
258 const char *string)
Johannes Schindelinc455c872008-07-21 19:03:49 +0100259{
Ralf Thielowd16df0c2016-04-25 19:40:00 +0200260 struct string_list_item *item;
Junio C Hamano8dd5afc2013-01-07 12:24:55 -0800261 compare_strings_fn cmp = list->cmp ? list->cmp : strcmp;
262
Ralf Thielowd16df0c2016-04-25 19:40:00 +0200263 for_each_string_list_item(item, list)
264 if (!cmp(string, item->string))
265 return item;
Stephen Boyde2421482010-03-24 00:16:02 -0700266 return NULL;
267}
268
269int unsorted_string_list_has_string(struct string_list *list,
270 const char *string)
271{
272 return unsorted_string_list_lookup(list, string) != NULL;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100273}
274
Johannes Sixt86d4b522011-08-11 23:20:00 -0600275void unsorted_string_list_delete_item(struct string_list *list, int i, int free_util)
276{
277 if (list->strdup_strings)
278 free(list->items[i].string);
279 if (free_util)
280 free(list->items[i].util);
281 list->items[i] = list->items[list->nr-1];
282 list->nr--;
283}
Michael Haggertyff919f92012-09-12 16:04:43 +0200284
285int string_list_split(struct string_list *list, const char *string,
286 int delim, int maxsplit)
287{
288 int count = 0;
289 const char *p = string, *end;
290
291 if (!list->strdup_strings)
292 die("internal error in string_list_split(): "
293 "list->strdup_strings must be set");
294 for (;;) {
295 count++;
296 if (maxsplit >= 0 && count > maxsplit) {
297 string_list_append(list, p);
298 return count;
299 }
300 end = strchr(p, delim);
301 if (end) {
302 string_list_append_nodup(list, xmemdupz(p, end - p));
303 p = end + 1;
304 } else {
305 string_list_append(list, p);
306 return count;
307 }
308 }
309}
310
311int string_list_split_in_place(struct string_list *list, char *string,
Taylor Blau52acddf2023-04-24 18:20:10 -0400312 const char *delim, int maxsplit)
Michael Haggertyff919f92012-09-12 16:04:43 +0200313{
314 int count = 0;
315 char *p = string, *end;
316
317 if (list->strdup_strings)
318 die("internal error in string_list_split_in_place(): "
319 "list->strdup_strings must not be set");
320 for (;;) {
321 count++;
322 if (maxsplit >= 0 && count > maxsplit) {
323 string_list_append(list, p);
324 return count;
325 }
Taylor Blau52acddf2023-04-24 18:20:10 -0400326 end = strpbrk(p, delim);
Michael Haggertyff919f92012-09-12 16:04:43 +0200327 if (end) {
328 *end = '\0';
329 string_list_append(list, p);
330 p = end + 1;
331 } else {
332 string_list_append(list, p);
333 return count;
334 }
335 }
336}