blob: aabb25ef4c1040dde015d6ac37b8213d9bc958ea [file] [log] [blame]
Johannes Schindelinc455c872008-07-21 19:03:49 +01001#include "cache.h"
2#include "string-list.h"
3
4/* if there is no exact match, point to the index where the entry could be
5 * inserted */
6static int get_entry_index(const struct string_list *list, const char *string,
7 int *exact_match)
8{
9 int left = -1, right = list->nr;
Junio C Hamano8dd5afc2013-01-07 12:24:55 -080010 compare_strings_fn cmp = list->cmp ? list->cmp : strcmp;
Johannes Schindelinc455c872008-07-21 19:03:49 +010011
12 while (left + 1 < right) {
13 int middle = (left + right) / 2;
Junio C Hamano8dd5afc2013-01-07 12:24:55 -080014 int compare = cmp(string, list->items[middle].string);
Johannes Schindelinc455c872008-07-21 19:03:49 +010015 if (compare < 0)
16 right = middle;
17 else if (compare > 0)
18 left = middle;
19 else {
20 *exact_match = 1;
21 return middle;
22 }
23 }
24
25 *exact_match = 0;
26 return right;
27}
28
29/* returns -1-index if already exists */
Marius Storm-Olsencfa1ee62009-02-08 15:34:28 +010030static int add_entry(int insert_at, struct string_list *list, const char *string)
Johannes Schindelinc455c872008-07-21 19:03:49 +010031{
Marius Storm-Olsencfa1ee62009-02-08 15:34:28 +010032 int exact_match = 0;
33 int index = insert_at != -1 ? insert_at : get_entry_index(list, string, &exact_match);
Johannes Schindelinc455c872008-07-21 19:03:49 +010034
35 if (exact_match)
36 return -1 - index;
37
38 if (list->nr + 1 >= list->alloc) {
39 list->alloc += 32;
40 list->items = xrealloc(list->items, list->alloc
41 * sizeof(struct string_list_item));
42 }
43 if (index < list->nr)
44 memmove(list->items + index + 1, list->items + index,
45 (list->nr - index)
46 * sizeof(struct string_list_item));
47 list->items[index].string = list->strdup_strings ?
48 xstrdup(string) : (char *)string;
49 list->items[index].util = NULL;
50 list->nr++;
51
52 return index;
53}
54
Julian Phillips78a395d2010-06-26 00:41:35 +010055struct string_list_item *string_list_insert(struct string_list *list, const char *string)
Johannes Schindelinc455c872008-07-21 19:03:49 +010056{
Julian Phillipsaadceea2010-06-26 00:41:36 +010057 return string_list_insert_at_index(list, -1, string);
Marius Storm-Olsencfa1ee62009-02-08 15:34:28 +010058}
59
Julian Phillipsaadceea2010-06-26 00:41:36 +010060struct string_list_item *string_list_insert_at_index(struct string_list *list,
61 int insert_at, const char *string)
Marius Storm-Olsencfa1ee62009-02-08 15:34:28 +010062{
63 int index = add_entry(insert_at, list, string);
Johannes Schindelinc455c872008-07-21 19:03:49 +010064
65 if (index < 0)
66 index = -1 - index;
67
68 return list->items + index;
69}
70
71int string_list_has_string(const struct string_list *list, const char *string)
72{
73 int exact_match;
74 get_entry_index(list, string, &exact_match);
75 return exact_match;
76}
77
Marius Storm-Olsencfa1ee62009-02-08 15:34:28 +010078int string_list_find_insert_index(const struct string_list *list, const char *string,
79 int negative_existing_index)
80{
81 int exact_match;
82 int index = get_entry_index(list, string, &exact_match);
83 if (exact_match)
84 index = -1 - (negative_existing_index ? index : 0);
85 return index;
86}
87
Julian Phillipse8c8b712010-06-26 00:41:37 +010088struct string_list_item *string_list_lookup(struct string_list *list, const char *string)
Johannes Schindelinc455c872008-07-21 19:03:49 +010089{
90 int exact_match, i = get_entry_index(list, string, &exact_match);
91 if (!exact_match)
92 return NULL;
93 return list->items + i;
94}
95
Michael Haggerty31d54512012-09-12 16:04:45 +020096void string_list_remove_duplicates(struct string_list *list, int free_util)
97{
98 if (list->nr > 1) {
99 int src, dst;
Junio C Hamano8dd5afc2013-01-07 12:24:55 -0800100 compare_strings_fn cmp = list->cmp ? list->cmp : strcmp;
Michael Haggerty31d54512012-09-12 16:04:45 +0200101 for (src = dst = 1; src < list->nr; src++) {
Junio C Hamano8dd5afc2013-01-07 12:24:55 -0800102 if (!cmp(list->items[dst - 1].string, list->items[src].string)) {
Michael Haggerty31d54512012-09-12 16:04:45 +0200103 if (list->strdup_strings)
104 free(list->items[src].string);
105 if (free_util)
106 free(list->items[src].util);
107 } else
108 list->items[dst++] = list->items[src];
109 }
110 list->nr = dst;
111 }
112}
113
Julian Phillipsb684e972010-06-26 00:41:34 +0100114int for_each_string_list(struct string_list *list,
115 string_list_each_func_t fn, void *cb_data)
Jay Soffianc6f5a7a2009-02-25 03:32:18 -0500116{
117 int i, ret = 0;
118 for (i = 0; i < list->nr; i++)
119 if ((ret = fn(&list->items[i], cb_data)))
120 break;
121 return ret;
122}
123
Michael Haggertyeb5f0c72012-09-12 16:04:44 +0200124void filter_string_list(struct string_list *list, int free_util,
125 string_list_each_func_t want, void *cb_data)
126{
127 int src, dst = 0;
128 for (src = 0; src < list->nr; src++) {
129 if (want(&list->items[src], cb_data)) {
130 list->items[dst++] = list->items[src];
131 } else {
132 if (list->strdup_strings)
133 free(list->items[src].string);
134 if (free_util)
135 free(list->items[src].util);
136 }
137 }
138 list->nr = dst;
139}
140
Michael Haggerty6bb2a132012-11-04 08:07:06 +0100141static int item_is_not_empty(struct string_list_item *item, void *unused)
142{
143 return *item->string != '\0';
144}
145
146void string_list_remove_empty_items(struct string_list *list, int free_util) {
147 filter_string_list(list, free_util, item_is_not_empty, NULL);
148}
149
Johannes Schindelinc455c872008-07-21 19:03:49 +0100150void string_list_clear(struct string_list *list, int free_util)
151{
152 if (list->items) {
153 int i;
154 if (list->strdup_strings) {
155 for (i = 0; i < list->nr; i++)
156 free(list->items[i].string);
157 }
158 if (free_util) {
159 for (i = 0; i < list->nr; i++)
160 free(list->items[i].util);
161 }
162 free(list->items);
163 }
164 list->items = NULL;
165 list->nr = list->alloc = 0;
166}
167
Marius Storm-Olsencfa1ee62009-02-08 15:34:28 +0100168void string_list_clear_func(struct string_list *list, string_list_clear_func_t clearfunc)
169{
170 if (list->items) {
171 int i;
172 if (clearfunc) {
173 for (i = 0; i < list->nr; i++)
174 clearfunc(list->items[i].util, list->items[i].string);
175 }
176 if (list->strdup_strings) {
177 for (i = 0; i < list->nr; i++)
178 free(list->items[i].string);
179 }
180 free(list->items);
181 }
182 list->items = NULL;
183 list->nr = list->alloc = 0;
184}
185
186
Julian Phillipscb944f62010-06-26 00:41:33 +0100187void print_string_list(const struct string_list *p, const char *text)
Johannes Schindelinc455c872008-07-21 19:03:49 +0100188{
189 int i;
190 if ( text )
191 printf("%s\n", text);
192 for (i = 0; i < p->nr; i++)
193 printf("%s:%p\n", p->items[i].string, p->items[i].util);
194}
195
Michael Haggertye448fed2012-09-12 16:04:42 +0200196struct string_list_item *string_list_append_nodup(struct string_list *list,
197 char *string)
Johannes Schindelinc455c872008-07-21 19:03:49 +0100198{
Michael Haggertye448fed2012-09-12 16:04:42 +0200199 struct string_list_item *retval;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100200 ALLOC_GROW(list->items, list->nr + 1, list->alloc);
Michael Haggertye448fed2012-09-12 16:04:42 +0200201 retval = &list->items[list->nr++];
202 retval->string = string;
203 retval->util = NULL;
204 return retval;
205}
206
207struct string_list_item *string_list_append(struct string_list *list,
208 const char *string)
209{
210 return string_list_append_nodup(
211 list,
212 list->strdup_strings ? xstrdup(string) : (char *)string);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100213}
214
Junio C Hamano8dd5afc2013-01-07 12:24:55 -0800215/* Yuck */
216static compare_strings_fn compare_for_qsort;
217
218/* Only call this from inside sort_string_list! */
Johannes Schindelinc455c872008-07-21 19:03:49 +0100219static int cmp_items(const void *a, const void *b)
220{
221 const struct string_list_item *one = a;
222 const struct string_list_item *two = b;
Junio C Hamano8dd5afc2013-01-07 12:24:55 -0800223 return compare_for_qsort(one->string, two->string);
Johannes Schindelinc455c872008-07-21 19:03:49 +0100224}
225
226void sort_string_list(struct string_list *list)
227{
Junio C Hamano8dd5afc2013-01-07 12:24:55 -0800228 compare_for_qsort = list->cmp ? list->cmp : strcmp;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100229 qsort(list->items, list->nr, sizeof(*list->items), cmp_items);
230}
231
Stephen Boyde2421482010-03-24 00:16:02 -0700232struct string_list_item *unsorted_string_list_lookup(struct string_list *list,
233 const char *string)
Johannes Schindelinc455c872008-07-21 19:03:49 +0100234{
235 int i;
Junio C Hamano8dd5afc2013-01-07 12:24:55 -0800236 compare_strings_fn cmp = list->cmp ? list->cmp : strcmp;
237
Johannes Schindelinc455c872008-07-21 19:03:49 +0100238 for (i = 0; i < list->nr; i++)
Junio C Hamano8dd5afc2013-01-07 12:24:55 -0800239 if (!cmp(string, list->items[i].string))
Stephen Boyde2421482010-03-24 00:16:02 -0700240 return list->items + i;
241 return NULL;
242}
243
244int unsorted_string_list_has_string(struct string_list *list,
245 const char *string)
246{
247 return unsorted_string_list_lookup(list, string) != NULL;
Johannes Schindelinc455c872008-07-21 19:03:49 +0100248}
249
Johannes Sixt86d4b522011-08-11 23:20:00 -0600250void unsorted_string_list_delete_item(struct string_list *list, int i, int free_util)
251{
252 if (list->strdup_strings)
253 free(list->items[i].string);
254 if (free_util)
255 free(list->items[i].util);
256 list->items[i] = list->items[list->nr-1];
257 list->nr--;
258}
Michael Haggertyff919f92012-09-12 16:04:43 +0200259
260int string_list_split(struct string_list *list, const char *string,
261 int delim, int maxsplit)
262{
263 int count = 0;
264 const char *p = string, *end;
265
266 if (!list->strdup_strings)
267 die("internal error in string_list_split(): "
268 "list->strdup_strings must be set");
269 for (;;) {
270 count++;
271 if (maxsplit >= 0 && count > maxsplit) {
272 string_list_append(list, p);
273 return count;
274 }
275 end = strchr(p, delim);
276 if (end) {
277 string_list_append_nodup(list, xmemdupz(p, end - p));
278 p = end + 1;
279 } else {
280 string_list_append(list, p);
281 return count;
282 }
283 }
284}
285
286int string_list_split_in_place(struct string_list *list, char *string,
287 int delim, int maxsplit)
288{
289 int count = 0;
290 char *p = string, *end;
291
292 if (list->strdup_strings)
293 die("internal error in string_list_split_in_place(): "
294 "list->strdup_strings must not be set");
295 for (;;) {
296 count++;
297 if (maxsplit >= 0 && count > maxsplit) {
298 string_list_append(list, p);
299 return count;
300 }
301 end = strchr(p, delim);
302 if (end) {
303 *end = '\0';
304 string_list_append(list, p);
305 p = end + 1;
306 } else {
307 string_list_append(list, p);
308 return count;
309 }
310 }
311}