1 | /****************************************************************************** |
---|
2 | * $Id: ptrarray.h 7404 2008-12-16 00:20:44Z charles $ |
---|
3 | * |
---|
4 | * This file Copyright (C) 2007-2008 Charles Kerr <charles@transmissionbt.com> |
---|
5 | * |
---|
6 | * Permission is hereby granted, free of charge, to any person obtaining a |
---|
7 | * copy of this software and associated documentation files (the "Software"), |
---|
8 | * to deal in the Software without restriction, including without limitation |
---|
9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
---|
10 | * and/or sell copies of the Software, and to permit persons to whom the |
---|
11 | * Software is furnished to do so, subject to the following conditions: |
---|
12 | * |
---|
13 | * The above copyright notice and this permission notice shall be included in |
---|
14 | * all copies or substantial portions of the Software. |
---|
15 | * |
---|
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
---|
21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
22 | * DEALINGS IN THE SOFTWARE. |
---|
23 | *****************************************************************************/ |
---|
24 | |
---|
25 | #ifndef __TRANSMISSION__ |
---|
26 | #error only libtransmission should #include this header. |
---|
27 | #endif |
---|
28 | |
---|
29 | #ifndef _TR_PTR_ARRAY_H_ |
---|
30 | #define _TR_PTR_ARRAY_H_ |
---|
31 | |
---|
32 | /** |
---|
33 | * A simple pointer array that resizes itself dynamically. |
---|
34 | */ |
---|
35 | typedef struct tr_ptrArray tr_ptrArray; |
---|
36 | |
---|
37 | typedef void ( *PtrArrayForeachFunc )( void * ); |
---|
38 | |
---|
39 | tr_ptrArray * tr_ptrArrayNew( void ); |
---|
40 | |
---|
41 | tr_ptrArray * tr_ptrArrayDup( tr_ptrArray* ); |
---|
42 | |
---|
43 | void tr_ptrArrayForeach( tr_ptrArray * array, |
---|
44 | PtrArrayForeachFunc func ); |
---|
45 | |
---|
46 | void tr_ptrArrayFree( tr_ptrArray * array, |
---|
47 | PtrArrayForeachFunc func ); |
---|
48 | |
---|
49 | void* tr_ptrArrayNth( tr_ptrArray * array, |
---|
50 | int nth ); |
---|
51 | |
---|
52 | void* tr_ptrArrayBack( tr_ptrArray * array ); |
---|
53 | |
---|
54 | void** tr_ptrArrayPeek( tr_ptrArray * array, |
---|
55 | int * size ); |
---|
56 | |
---|
57 | void** tr_ptrArrayBase( tr_ptrArray * array ); |
---|
58 | |
---|
59 | void tr_ptrArrayClear( tr_ptrArray * array ); |
---|
60 | |
---|
61 | int tr_ptrArrayInsert( tr_ptrArray * array, |
---|
62 | void * insertMe, |
---|
63 | int pos ); |
---|
64 | |
---|
65 | int tr_ptrArrayAppend( tr_ptrArray * array, |
---|
66 | void * appendMe ); |
---|
67 | |
---|
68 | void* tr_ptrArrayPop( tr_ptrArray * array ); |
---|
69 | |
---|
70 | void tr_ptrArrayErase( tr_ptrArray * array, |
---|
71 | int begin, |
---|
72 | int end ); |
---|
73 | |
---|
74 | int tr_ptrArraySize( const tr_ptrArray* ); |
---|
75 | |
---|
76 | int tr_ptrArrayEmpty( const tr_ptrArray* ); |
---|
77 | |
---|
78 | int tr_ptrArrayInsertSorted( tr_ptrArray * array, |
---|
79 | void * value, |
---|
80 | int compare(const void*, const void*) ); |
---|
81 | |
---|
82 | void* tr_ptrArrayRemoveSorted( tr_ptrArray * array, |
---|
83 | void * value, |
---|
84 | int compare(const void*, const void*) ); |
---|
85 | |
---|
86 | void* tr_ptrArrayFindSorted( tr_ptrArray * array, |
---|
87 | const void * key, |
---|
88 | int compare(const void*, const void*) ); |
---|
89 | |
---|
90 | #endif |
---|