]>
Commit | Line | Data |
---|---|---|
bb742ede | 1 | /* |
5e0de328 | 2 | * Copyright (C) 2009-2012 the libgit2 contributors |
bb742ede VM |
3 | * |
4 | * This file is part of libgit2, distributed under the GNU GPL v2 with | |
5 | * a Linking Exception. For full terms see the included COPYING file. | |
6 | */ | |
c4034e63 VM |
7 | #ifndef INCLUDE_vector_h__ |
8 | #define INCLUDE_vector_h__ | |
9 | ||
44908fe7 | 10 | #include "git2/common.h" |
c4034e63 | 11 | |
c4034e63 | 12 | typedef int (*git_vector_cmp)(const void *, const void *); |
c4034e63 VM |
13 | |
14 | typedef struct git_vector { | |
15 | unsigned int _alloc_size; | |
16 | git_vector_cmp _cmp; | |
c4034e63 VM |
17 | void **contents; |
18 | unsigned int length; | |
86d7e1ca | 19 | int sorted; |
c4034e63 VM |
20 | } git_vector; |
21 | ||
ee1f0b1a RB |
22 | #define GIT_VECTOR_INIT {0} |
23 | ||
86d7e1ca | 24 | int git_vector_init(git_vector *v, unsigned int initial_size, git_vector_cmp cmp); |
c4034e63 VM |
25 | void git_vector_free(git_vector *v); |
26 | void git_vector_clear(git_vector *v); | |
27 | ||
86d7e1ca VM |
28 | int git_vector_search(git_vector *v, const void *entry); |
29 | int git_vector_search2(git_vector *v, git_vector_cmp cmp, const void *key); | |
30 | ||
31 | int git_vector_bsearch(git_vector *v, const void *entry); | |
32 | int git_vector_bsearch2(git_vector *v, git_vector_cmp cmp, const void *key); | |
33 | ||
c4034e63 VM |
34 | void git_vector_sort(git_vector *v); |
35 | ||
86194b24 VM |
36 | GIT_INLINE(void *) git_vector_get(git_vector *v, unsigned int position) |
37 | { | |
38 | return (position < v->length) ? v->contents[position] : NULL; | |
39 | } | |
c4034e63 | 40 | |
bcf21c55 CMN |
41 | #define git_vector_foreach(v, iter, elem) \ |
42 | for ((iter) = 0; (iter) < (v)->length && ((elem) = (v)->contents[(iter)], 1); (iter)++ ) | |
43 | ||
ee1f0b1a RB |
44 | #define git_vector_rforeach(v, iter, elem) \ |
45 | for ((iter) = (v)->length; (iter) > 0 && ((elem) = (v)->contents[(iter)-1], 1); (iter)-- ) | |
46 | ||
c4034e63 | 47 | int git_vector_insert(git_vector *v, void *element); |
bd370b14 RB |
48 | int git_vector_insert_sorted(git_vector *v, void *element, |
49 | int (*on_dup)(void **old, void *new)); | |
c4034e63 | 50 | int git_vector_remove(git_vector *v, unsigned int idx); |
476c42ac | 51 | void git_vector_uniq(git_vector *v); |
bd370b14 | 52 | |
c4034e63 | 53 | #endif |