2008-07-22 23:28:28 +00:00
|
|
|
/*
|
2011-01-19 13:48:47 +00:00
|
|
|
* This file Copyright (C) Mnemosyne LLC
|
2007-08-14 20:45:23 +00:00
|
|
|
*
|
2010-12-27 19:18:17 +00:00
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
2008-07-22 23:28:28 +00:00
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2008-09-23 19:11:04 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2008-07-22 23:28:28 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
2007-08-18 17:19:49 +00:00
|
|
|
*
|
2008-07-22 23:28:28 +00:00
|
|
|
* $Id$
|
|
|
|
*/
|
2007-08-14 20:45:23 +00:00
|
|
|
|
2007-11-09 20:07:52 +00:00
|
|
|
#include <assert.h>
|
2011-06-24 18:25:56 +00:00
|
|
|
#include <stdlib.h> /* tr_renew() -> realloc() */
|
2007-08-14 20:45:23 +00:00
|
|
|
#include <string.h> /* memmove */
|
|
|
|
|
|
|
|
#include "ptrarray.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2010-02-15 16:44:02 +00:00
|
|
|
#define FLOOR 32
|
2007-08-14 20:45:23 +00:00
|
|
|
|
2008-12-29 08:54:36 +00:00
|
|
|
const tr_ptrArray TR_PTR_ARRAY_INIT = { NULL, 0, 0 };
|
|
|
|
|
|
|
|
void
|
|
|
|
tr_ptrArrayDestruct( tr_ptrArray * p, PtrArrayForeachFunc func )
|
2007-08-14 20:45:23 +00:00
|
|
|
{
|
2008-12-29 08:54:36 +00:00
|
|
|
assert( p );
|
|
|
|
assert( p->items || !p->n_items );
|
|
|
|
|
|
|
|
if( func )
|
|
|
|
tr_ptrArrayForeach( p, func );
|
|
|
|
|
|
|
|
tr_free( p->items );
|
|
|
|
|
|
|
|
memset( p, ~0, sizeof( tr_ptrArray ) );
|
|
|
|
}
|
2007-08-14 20:45:23 +00:00
|
|
|
|
|
|
|
void
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_ptrArrayForeach( tr_ptrArray * t,
|
|
|
|
PtrArrayForeachFunc func )
|
2007-08-14 20:45:23 +00:00
|
|
|
{
|
2007-09-30 23:55:49 +00:00
|
|
|
int i;
|
|
|
|
|
2008-08-01 16:43:22 +00:00
|
|
|
assert( t );
|
2008-10-25 02:15:37 +00:00
|
|
|
assert( t->items || !t->n_items );
|
2008-08-01 16:43:22 +00:00
|
|
|
assert( func );
|
2007-09-30 23:55:49 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
for( i = 0; i < t->n_items; ++i )
|
2007-09-30 23:55:49 +00:00
|
|
|
func( t->items[i] );
|
|
|
|
}
|
|
|
|
|
2007-08-14 20:45:23 +00:00
|
|
|
void**
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_ptrArrayPeek( tr_ptrArray * t,
|
|
|
|
int * size )
|
2007-08-14 20:45:23 +00:00
|
|
|
{
|
|
|
|
*size = t->n_items;
|
|
|
|
return t->items;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_ptrArrayInsert( tr_ptrArray * t,
|
2009-01-06 03:22:10 +00:00
|
|
|
void * ptr,
|
2008-09-23 19:11:04 +00:00
|
|
|
int pos )
|
2007-08-14 20:45:23 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
if( t->n_items >= t->n_alloc )
|
|
|
|
{
|
2010-02-15 16:44:02 +00:00
|
|
|
t->n_alloc = MAX( FLOOR, t->n_alloc * 2 );
|
2007-08-14 20:45:23 +00:00
|
|
|
t->items = tr_renew( void*, t->items, t->n_alloc );
|
|
|
|
}
|
|
|
|
|
2010-03-10 16:35:12 +00:00
|
|
|
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 ) );
|
2007-08-14 20:45:23 +00:00
|
|
|
|
|
|
|
t->items[pos] = ptr;
|
|
|
|
t->n_items++;
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
2008-01-31 02:24:43 +00:00
|
|
|
void*
|
|
|
|
tr_ptrArrayPop( tr_ptrArray* t )
|
|
|
|
{
|
|
|
|
void * ret = NULL;
|
|
|
|
|
|
|
|
if( t->n_items )
|
|
|
|
ret = t->items[--t->n_items];
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-01-31 02:24:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-06-19 14:25:11 +00:00
|
|
|
void
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_ptrArrayErase( tr_ptrArray * t,
|
|
|
|
int begin,
|
|
|
|
int end )
|
2007-08-14 20:45:23 +00:00
|
|
|
{
|
|
|
|
assert( begin >= 0 );
|
|
|
|
if( end < 0 ) end = t->n_items;
|
2010-02-15 16:15:37 +00:00
|
|
|
assert( begin < end );
|
2007-08-14 20:45:23 +00:00
|
|
|
assert( end <= t->n_items );
|
|
|
|
|
|
|
|
memmove( t->items + begin,
|
2011-06-24 18:25:56 +00:00
|
|
|
t->items + end,
|
|
|
|
sizeof( void* ) * ( t->n_items - end ) );
|
2007-08-14 20:45:23 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
t->n_items -= ( end - begin );
|
2007-08-14 20:45:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2011-06-24 18:25:56 +00:00
|
|
|
int
|
|
|
|
tr_ptrArrayLowerBound( const tr_ptrArray * t,
|
|
|
|
const void * ptr,
|
|
|
|
int compare( const void *, const void * ),
|
|
|
|
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( ;; )
|
2008-09-23 19:11:04 +00:00
|
|
|
{
|
2011-06-24 18:25:56 +00:00
|
|
|
const int half = (last - first) / 2;
|
|
|
|
const int c = compare( t->items[first + half], ptr );
|
|
|
|
|
|
|
|
if( c < 0 ) {
|
|
|
|
const int new_first = first + half + 1;
|
|
|
|
if( new_first > last ) {
|
|
|
|
pos = new_first;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
first = new_first;
|
|
|
|
}
|
|
|
|
else if( c > 0 ) {
|
|
|
|
const int new_last = first + half - 1;
|
|
|
|
if( new_last < first ) {
|
|
|
|
pos = first;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
last = new_last;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
match = true;
|
|
|
|
pos = first + half;
|
|
|
|
break;
|
|
|
|
}
|
2007-08-14 20:45:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-24 18:25:56 +00:00
|
|
|
if( exact_match )
|
|
|
|
*exact_match = match;
|
|
|
|
return pos;
|
2007-09-28 15:05:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-07-17 14:33:20 +00:00
|
|
|
assertSortedAndUnique( const tr_ptrArray * t UNUSED,
|
|
|
|
int compare(const void*, const void*) UNUSED )
|
2007-09-28 15:05:42 +00:00
|
|
|
{
|
2011-07-31 14:04:43 +00:00
|
|
|
#ifndef NDEBUG
|
2007-09-28 15:05:42 +00:00
|
|
|
int i;
|
2008-09-23 19:11:04 +00:00
|
|
|
|
|
|
|
for( i = 0; i < t->n_items - 2; ++i )
|
2011-06-24 18:25:56 +00:00
|
|
|
assert( compare( t->items[i], t->items[i + 1] ) < 0 );
|
2009-12-28 23:27:17 +00:00
|
|
|
#endif
|
2011-06-24 18:25:56 +00:00
|
|
|
}
|
2007-08-14 20:45:23 +00:00
|
|
|
|
|
|
|
int
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_ptrArrayInsertSorted( tr_ptrArray * t,
|
|
|
|
void * ptr,
|
2010-02-15 16:15:37 +00:00
|
|
|
int compare(const void*, const void*) )
|
2007-08-14 20:45:23 +00:00
|
|
|
{
|
2011-06-24 18:25:56 +00:00
|
|
|
int pos;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
assertSortedAndUnique( t, compare );
|
|
|
|
|
|
|
|
pos = tr_ptrArrayLowerBound( t, ptr, compare, NULL );
|
|
|
|
ret = tr_ptrArrayInsert( t, ptr, pos );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2011-06-24 18:25:56 +00:00
|
|
|
assertSortedAndUnique( t, compare );
|
2007-09-28 15:05:42 +00:00
|
|
|
return ret;
|
2007-08-14 20:45:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_ptrArrayFindSorted( tr_ptrArray * t,
|
|
|
|
const void * ptr,
|
2010-02-15 16:15:37 +00:00
|
|
|
int compare(const void*, const void*) )
|
2007-08-14 20:45:23 +00:00
|
|
|
{
|
2011-06-24 18:25:56 +00:00
|
|
|
bool match = false;
|
2007-08-14 20:45:23 +00:00
|
|
|
const int pos = tr_ptrArrayLowerBound( t, ptr, compare, &match );
|
|
|
|
return match ? t->items[pos] : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_ptrArrayRemoveSorted( tr_ptrArray * t,
|
2010-02-15 16:15:37 +00:00
|
|
|
const void * ptr,
|
|
|
|
int compare(const void*, const void*) )
|
2007-08-14 20:45:23 +00:00
|
|
|
{
|
2011-06-24 18:25:56 +00:00
|
|
|
bool match;
|
|
|
|
void * ret = NULL;
|
2007-08-14 20:45:23 +00:00
|
|
|
const int pos = tr_ptrArrayLowerBound( t, ptr, compare, &match );
|
2011-06-24 18:25:56 +00:00
|
|
|
assertSortedAndUnique( t, compare );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
|
|
|
if( match )
|
|
|
|
{
|
2007-08-14 20:45:23 +00:00
|
|
|
ret = t->items[pos];
|
2011-06-24 18:25:56 +00:00
|
|
|
assert( compare( ret, ptr ) == 0 );
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_ptrArrayErase( t, pos, pos + 1 );
|
2007-08-14 20:45:23 +00:00
|
|
|
}
|
2007-09-28 15:05:42 +00:00
|
|
|
assertSortedAndUnique( t, compare );
|
2011-06-24 18:25:56 +00:00
|
|
|
assert( ( ret == NULL ) || ( compare( ret, ptr ) == 0 ) );
|
2007-08-14 20:45:23 +00:00
|
|
|
return ret;
|
|
|
|
}
|