transmission/libtransmission/ptrarray.c

254 lines
5.1 KiB
C
Raw Normal View History

/*
* This file Copyright (C) 2008-2014 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
2007-08-18 17:19:49 +00:00
*
*/
2007-11-09 20:07:52 +00:00
#include <assert.h>
#include <string.h> /* memmove */
#include "ptrarray.h"
#include "utils.h"
#define FLOOR 32
tr_ptrArray const TR_PTR_ARRAY_INIT = TR_PTR_ARRAY_INIT_STATIC;
void tr_ptrArrayDestruct(tr_ptrArray* p, PtrArrayForeachFunc func)
{
assert(p != NULL);
assert(p->items || !p->n_items);
if (func)
{
tr_ptrArrayForeach(p, func);
}
tr_free(p->items);
}
void tr_ptrArrayForeach(tr_ptrArray* t, PtrArrayForeachFunc func)
{
int i;
2007-09-30 23:55:49 +00:00
assert(t);
assert(t->items || !t->n_items);
assert(func);
2007-09-30 23:55:49 +00:00
for (i = 0; i < t->n_items; ++i)
{
func(t->items[i]);
}
2007-09-30 23:55:49 +00:00
}
void** tr_ptrArrayPeek(tr_ptrArray* t, int* size)
{
*size = t->n_items;
return t->items;
}
int tr_ptrArrayInsert(tr_ptrArray* t, void* ptr, int pos)
{
if (t->n_items >= t->n_alloc)
{
t->n_alloc = MAX(FLOOR, t->n_alloc * 2);
t->items = tr_renew(void*, t->items, t->n_alloc);
}
if (pos < 0 || pos > t->n_items)
{
pos = t->n_items;
}
else
{
memmove(t->items + pos + 1, t->items + pos, sizeof(void*) * (t->n_items - pos));
}
t->items[pos] = ptr;
t->n_items++;
return pos;
}
void* tr_ptrArrayPop(tr_ptrArray* t)
{
void* ret = NULL;
if (t->n_items)
{
ret = t->items[--t->n_items];
}
return ret;
}
void tr_ptrArrayErase(tr_ptrArray* t, int begin, int end)
{
if (end < 0)
{
end = t->n_items;
}
2012-12-13 01:47:40 +00:00
assert(begin >= 0);
assert(begin < end);
assert(end <= t->n_items);
memmove(t->items + begin, t->items + end, sizeof(void*) * (t->n_items - end));
t->n_items -= (end - begin);
}
/**
***
**/
int tr_ptrArrayLowerBound(tr_ptrArray const* t, void const* ptr, int (* compare)(void const*, void const*), bool* exact_match)
{
int pos = -1;
bool match = false;
if (t->n_items == 0)
{
pos = 0;
}
else
{
int first = 0;
int last = t->n_items - 1;
for (;;)
{
int const half = (last - first) / 2;
int const c = compare(t->items[first + half], ptr);
2012-12-13 01:47:40 +00:00
if (c < 0)
2012-12-13 01:47:40 +00:00
{
int const new_first = first + half + 1;
if (new_first > last)
2012-12-13 01:47:40 +00:00
{
pos = new_first;
break;
}
first = new_first;
}
else if (c > 0)
2012-12-13 01:47:40 +00:00
{
int const new_last = first + half - 1;
if (new_last < first)
2012-12-13 01:47:40 +00:00
{
pos = first;
break;
}
last = new_last;
}
else
2012-12-13 01:47:40 +00:00
{
match = true;
pos = first + half;
break;
}
}
}
if (exact_match != NULL)
{
*exact_match = match;
}
2012-12-13 01:47:40 +00:00
return pos;
}
#ifdef NDEBUG
#define assertArrayIsSortedAndUnique(array, compare) /* no-op */
#define assertIndexIsSortedAndUnique(array, pos, compare) /* no-op */
#else
static void assertArrayIsSortedAndUnique(tr_ptrArray const* t, int (* compare)(void const*, void const*))
{
int i;
for (i = 0; i < t->n_items - 2; ++i)
{
assert(compare(t->items[i], t->items[i + 1]) < 0);
}
}
static void assertIndexIsSortedAndUnique(tr_ptrArray const* t, int pos, int (* compare)(void const*, void const*))
{
if (pos > 0)
{
assert(compare(t->items[pos - 1], t->items[pos]) < 0);
}
if ((pos + 1) < t->n_items)
{
assert(compare(t->items[pos], t->items[pos + 1]) < 0);
}
}
#endif
int tr_ptrArrayInsertSorted(tr_ptrArray* t, void* ptr, int (* compare)(void const*, void const*))
{
int pos;
int ret;
assertArrayIsSortedAndUnique(t, compare);
pos = tr_ptrArrayLowerBound(t, ptr, compare, NULL);
ret = tr_ptrArrayInsert(t, ptr, pos);
assertIndexIsSortedAndUnique(t, ret, compare);
return ret;
}
void* tr_ptrArrayFindSorted(tr_ptrArray* t, void const* ptr, int (* compare)(void const*, void const*))
{
bool match = false;
int const pos = tr_ptrArrayLowerBound(t, ptr, compare, &match);
return match ? t->items[pos] : NULL;
}
static void* tr_ptrArrayRemoveSortedValue(tr_ptrArray* t, void const* ptr, int (* compare)(void const*, void const*))
{
int pos;
bool match;
void* ret = NULL;
assertArrayIsSortedAndUnique(t, compare);
pos = tr_ptrArrayLowerBound(t, ptr, compare, &match);
2012-12-13 01:47:40 +00:00
if (match)
{
ret = t->items[pos];
assert(compare(ret, ptr) == 0);
tr_ptrArrayErase(t, pos, pos + 1);
}
2012-12-13 01:47:40 +00:00
assert((ret == NULL) || (compare(ret, ptr) == 0));
return ret;
}
void tr_ptrArrayRemoveSortedPointer(tr_ptrArray* t, void const* ptr, int (* compare)(void const*, void const*))
{
#ifdef NDEBUG
tr_ptrArrayRemoveSortedValue(t, ptr, compare);
#else
void* removed = tr_ptrArrayRemoveSortedValue(t, ptr, compare);
assert(removed != NULL);
assert(removed == ptr);
assert(tr_ptrArrayFindSorted(t, ptr, compare) == NULL);
#endif
}