mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
object_array: add function object_array_filter()
Add a function that allows unwanted entries in an object_array to be removed. This encapsulation is a step towards giving object_array ownership of its entries' name memory. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
ff5f5f268f
commit
aeb4a51ef8
16
object.c
16
object.c
@@ -278,6 +278,22 @@ void add_object_array_with_mode(struct object *obj, const char *name, struct obj
|
||||
array->nr = ++nr;
|
||||
}
|
||||
|
||||
void object_array_filter(struct object_array *array,
|
||||
object_array_each_func_t want, void *cb_data)
|
||||
{
|
||||
unsigned nr = array->nr, src, dst;
|
||||
struct object_array_entry *objects = array->objects;
|
||||
|
||||
for (src = dst = 0; src < nr; src++) {
|
||||
if (want(&objects[src], cb_data)) {
|
||||
if (src != dst)
|
||||
objects[dst] = objects[src];
|
||||
dst++;
|
||||
}
|
||||
}
|
||||
array->nr = dst;
|
||||
}
|
||||
|
||||
void object_array_remove_duplicates(struct object_array *array)
|
||||
{
|
||||
unsigned int ref, src, dst;
|
||||
|
||||
Reference in New Issue
Block a user