mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
86d4b528d8
Teach the string-list API how to remove an entry in O(1) runtime by moving the last entry to the vacated spot. As such, the routine works only for unsorted lists. Signed-off-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
48 lines
2.1 KiB
C
48 lines
2.1 KiB
C
#ifndef STRING_LIST_H
|
|
#define STRING_LIST_H
|
|
|
|
struct string_list_item {
|
|
char *string;
|
|
void *util;
|
|
};
|
|
struct string_list {
|
|
struct string_list_item *items;
|
|
unsigned int nr, alloc;
|
|
unsigned int strdup_strings:1;
|
|
};
|
|
|
|
#define STRING_LIST_INIT_NODUP { NULL, 0, 0, 0 }
|
|
#define STRING_LIST_INIT_DUP { NULL, 0, 0, 1 }
|
|
|
|
void print_string_list(const struct string_list *p, const char *text);
|
|
void string_list_clear(struct string_list *list, int free_util);
|
|
|
|
/* Use this function to call a custom clear function on each util pointer */
|
|
/* The string associated with the util pointer is passed as the second argument */
|
|
typedef void (*string_list_clear_func_t)(void *p, const char *str);
|
|
void string_list_clear_func(struct string_list *list, string_list_clear_func_t clearfunc);
|
|
|
|
/* Use this function or the macro below to iterate over each item */
|
|
typedef int (*string_list_each_func_t)(struct string_list_item *, void *);
|
|
int for_each_string_list(struct string_list *list,
|
|
string_list_each_func_t, void *cb_data);
|
|
#define for_each_string_list_item(item,list) \
|
|
for (item = (list)->items; item < (list)->items + (list)->nr; ++item)
|
|
|
|
/* Use these functions only on sorted lists: */
|
|
int string_list_has_string(const struct string_list *list, const char *string);
|
|
int string_list_find_insert_index(const struct string_list *list, const char *string,
|
|
int negative_existing_index);
|
|
struct string_list_item *string_list_insert(struct string_list *list, const char *string);
|
|
struct string_list_item *string_list_insert_at_index(struct string_list *list,
|
|
int insert_at, const char *string);
|
|
struct string_list_item *string_list_lookup(struct string_list *list, const char *string);
|
|
|
|
/* Use these functions only on unsorted lists: */
|
|
struct string_list_item *string_list_append(struct string_list *list, const char *string);
|
|
void sort_string_list(struct string_list *list);
|
|
int unsorted_string_list_has_string(struct string_list *list, const char *string);
|
|
struct string_list_item *unsorted_string_list_lookup(struct string_list *list,
|
|
const char *string);
|
|
void unsorted_string_list_delete_item(struct string_list *list, int i, int free_util);
|
|
#endif /* STRING_LIST_H */
|