string-list: remove unused function print_string_list
[git] / string-list.c
1 #include "cache.h"
2 #include "string-list.h"
3
4 void string_list_init(struct string_list *list, int strdup_strings)
5 {
6         memset(list, 0, sizeof(*list));
7         list->strdup_strings = strdup_strings;
8 }
9
10 /* if there is no exact match, point to the index where the entry could be
11  * inserted */
12 static int get_entry_index(const struct string_list *list, const char *string,
13                 int *exact_match)
14 {
15         int left = -1, right = list->nr;
16         compare_strings_fn cmp = list->cmp ? list->cmp : strcmp;
17
18         while (left + 1 < right) {
19                 int middle = left + (right - left) / 2;
20                 int compare = cmp(string, list->items[middle].string);
21                 if (compare < 0)
22                         right = middle;
23                 else if (compare > 0)
24                         left = middle;
25                 else {
26                         *exact_match = 1;
27                         return middle;
28                 }
29         }
30
31         *exact_match = 0;
32         return right;
33 }
34
35 /* returns -1-index if already exists */
36 static int add_entry(int insert_at, struct string_list *list, const char *string)
37 {
38         int exact_match = 0;
39         int index = insert_at != -1 ? insert_at : get_entry_index(list, string, &exact_match);
40
41         if (exact_match)
42                 return -1 - index;
43
44         ALLOC_GROW(list->items, list->nr+1, list->alloc);
45         if (index < list->nr)
46                 MOVE_ARRAY(list->items + index + 1, list->items + index,
47                            list->nr - index);
48         list->items[index].string = list->strdup_strings ?
49                 xstrdup(string) : (char *)string;
50         list->items[index].util = NULL;
51         list->nr++;
52
53         return index;
54 }
55
56 struct string_list_item *string_list_insert(struct string_list *list, const char *string)
57 {
58         int index = add_entry(-1, list, string);
59
60         if (index < 0)
61                 index = -1 - index;
62
63         return list->items + index;
64 }
65
66 void string_list_remove(struct string_list *list, const char *string,
67                         int free_util)
68 {
69         int exact_match;
70         int i = get_entry_index(list, string, &exact_match);
71
72         if (exact_match) {
73                 if (list->strdup_strings)
74                         free(list->items[i].string);
75                 if (free_util)
76                         free(list->items[i].util);
77
78                 list->nr--;
79                 MOVE_ARRAY(list->items + i, list->items + i + 1, list->nr - i);
80         }
81 }
82
83 int string_list_has_string(const struct string_list *list, const char *string)
84 {
85         int exact_match;
86         get_entry_index(list, string, &exact_match);
87         return exact_match;
88 }
89
90 int string_list_find_insert_index(const struct string_list *list, const char *string,
91                                   int negative_existing_index)
92 {
93         int exact_match;
94         int index = get_entry_index(list, string, &exact_match);
95         if (exact_match)
96                 index = -1 - (negative_existing_index ? index : 0);
97         return index;
98 }
99
100 struct string_list_item *string_list_lookup(struct string_list *list, const char *string)
101 {
102         int exact_match, i = get_entry_index(list, string, &exact_match);
103         if (!exact_match)
104                 return NULL;
105         return list->items + i;
106 }
107
108 void string_list_remove_duplicates(struct string_list *list, int free_util)
109 {
110         if (list->nr > 1) {
111                 int src, dst;
112                 compare_strings_fn cmp = list->cmp ? list->cmp : strcmp;
113                 for (src = dst = 1; src < list->nr; src++) {
114                         if (!cmp(list->items[dst - 1].string, list->items[src].string)) {
115                                 if (list->strdup_strings)
116                                         free(list->items[src].string);
117                                 if (free_util)
118                                         free(list->items[src].util);
119                         } else
120                                 list->items[dst++] = list->items[src];
121                 }
122                 list->nr = dst;
123         }
124 }
125
126 int for_each_string_list(struct string_list *list,
127                          string_list_each_func_t fn, void *cb_data)
128 {
129         int i, ret = 0;
130         for (i = 0; i < list->nr; i++)
131                 if ((ret = fn(&list->items[i], cb_data)))
132                         break;
133         return ret;
134 }
135
136 void filter_string_list(struct string_list *list, int free_util,
137                         string_list_each_func_t want, void *cb_data)
138 {
139         int src, dst = 0;
140         for (src = 0; src < list->nr; src++) {
141                 if (want(&list->items[src], cb_data)) {
142                         list->items[dst++] = list->items[src];
143                 } else {
144                         if (list->strdup_strings)
145                                 free(list->items[src].string);
146                         if (free_util)
147                                 free(list->items[src].util);
148                 }
149         }
150         list->nr = dst;
151 }
152
153 static int item_is_not_empty(struct string_list_item *item, void *unused)
154 {
155         return *item->string != '\0';
156 }
157
158 void string_list_remove_empty_items(struct string_list *list, int free_util) {
159         filter_string_list(list, free_util, item_is_not_empty, NULL);
160 }
161
162 void string_list_clear(struct string_list *list, int free_util)
163 {
164         if (list->items) {
165                 int i;
166                 if (list->strdup_strings) {
167                         for (i = 0; i < list->nr; i++)
168                                 free(list->items[i].string);
169                 }
170                 if (free_util) {
171                         for (i = 0; i < list->nr; i++)
172                                 free(list->items[i].util);
173                 }
174                 free(list->items);
175         }
176         list->items = NULL;
177         list->nr = list->alloc = 0;
178 }
179
180 void string_list_clear_func(struct string_list *list, string_list_clear_func_t clearfunc)
181 {
182         if (list->items) {
183                 int i;
184                 if (clearfunc) {
185                         for (i = 0; i < list->nr; i++)
186                                 clearfunc(list->items[i].util, list->items[i].string);
187                 }
188                 if (list->strdup_strings) {
189                         for (i = 0; i < list->nr; i++)
190                                 free(list->items[i].string);
191                 }
192                 free(list->items);
193         }
194         list->items = NULL;
195         list->nr = list->alloc = 0;
196 }
197
198 struct string_list_item *string_list_append_nodup(struct string_list *list,
199                                                   char *string)
200 {
201         struct string_list_item *retval;
202         ALLOC_GROW(list->items, list->nr + 1, list->alloc);
203         retval = &list->items[list->nr++];
204         retval->string = string;
205         retval->util = NULL;
206         return retval;
207 }
208
209 struct string_list_item *string_list_append(struct string_list *list,
210                                             const char *string)
211 {
212         return string_list_append_nodup(
213                         list,
214                         list->strdup_strings ? xstrdup(string) : (char *)string);
215 }
216
217 static int cmp_items(const void *a, const void *b, void *ctx)
218 {
219         compare_strings_fn cmp = ctx;
220         const struct string_list_item *one = a;
221         const struct string_list_item *two = b;
222         return cmp(one->string, two->string);
223 }
224
225 void string_list_sort(struct string_list *list)
226 {
227         QSORT_S(list->items, list->nr, cmp_items,
228                 list->cmp ? list->cmp : strcmp);
229 }
230
231 struct string_list_item *unsorted_string_list_lookup(struct string_list *list,
232                                                      const char *string)
233 {
234         struct string_list_item *item;
235         compare_strings_fn cmp = list->cmp ? list->cmp : strcmp;
236
237         for_each_string_list_item(item, list)
238                 if (!cmp(string, item->string))
239                         return item;
240         return NULL;
241 }
242
243 int unsorted_string_list_has_string(struct string_list *list,
244                                     const char *string)
245 {
246         return unsorted_string_list_lookup(list, string) != NULL;
247 }
248
249 void unsorted_string_list_delete_item(struct string_list *list, int i, int free_util)
250 {
251         if (list->strdup_strings)
252                 free(list->items[i].string);
253         if (free_util)
254                 free(list->items[i].util);
255         list->items[i] = list->items[list->nr-1];
256         list->nr--;
257 }
258
259 int string_list_split(struct string_list *list, const char *string,
260                       int delim, int maxsplit)
261 {
262         int count = 0;
263         const char *p = string, *end;
264
265         if (!list->strdup_strings)
266                 die("internal error in string_list_split(): "
267                     "list->strdup_strings must be set");
268         for (;;) {
269                 count++;
270                 if (maxsplit >= 0 && count > maxsplit) {
271                         string_list_append(list, p);
272                         return count;
273                 }
274                 end = strchr(p, delim);
275                 if (end) {
276                         string_list_append_nodup(list, xmemdupz(p, end - p));
277                         p = end + 1;
278                 } else {
279                         string_list_append(list, p);
280                         return count;
281                 }
282         }
283 }
284
285 int string_list_split_in_place(struct string_list *list, char *string,
286                                int delim, int maxsplit)
287 {
288         int count = 0;
289         char *p = string, *end;
290
291         if (list->strdup_strings)
292                 die("internal error in string_list_split_in_place(): "
293                     "list->strdup_strings must not 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                         *end = '\0';
303                         string_list_append(list, p);
304                         p = end + 1;
305                 } else {
306                         string_list_append(list, p);
307                         return count;
308                 }
309         }
310 }