1 | /****************************************************************************** |
---|
2 | * $Id: ptrarray.h 7614 2009-01-04 16:59:15Z 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 | #include "transmission.h" |
---|
33 | |
---|
34 | /** |
---|
35 | * A simple pointer array that resizes itself dynamically. |
---|
36 | */ |
---|
37 | typedef struct tr_ptrArray |
---|
38 | { |
---|
39 | void ** items; |
---|
40 | int n_items; |
---|
41 | int n_alloc; |
---|
42 | } |
---|
43 | tr_ptrArray; |
---|
44 | |
---|
45 | typedef void ( *PtrArrayForeachFunc )( void * ); |
---|
46 | |
---|
47 | extern const tr_ptrArray TR_PTR_ARRAY_INIT; |
---|
48 | |
---|
49 | void tr_ptrArrayDestruct( tr_ptrArray*, PtrArrayForeachFunc func ); |
---|
50 | |
---|
51 | tr_ptrArray * tr_ptrArrayNew( void ); |
---|
52 | |
---|
53 | tr_ptrArray * tr_ptrArrayDup( tr_ptrArray* ); |
---|
54 | |
---|
55 | void tr_ptrArrayForeach( tr_ptrArray * array, |
---|
56 | PtrArrayForeachFunc func ); |
---|
57 | |
---|
58 | void tr_ptrArrayFree( tr_ptrArray * array, |
---|
59 | PtrArrayForeachFunc func ); |
---|
60 | |
---|
61 | void* tr_ptrArrayNth( tr_ptrArray * array, |
---|
62 | int nth ); |
---|
63 | |
---|
64 | void* tr_ptrArrayBack( tr_ptrArray * array ); |
---|
65 | |
---|
66 | void** tr_ptrArrayPeek( tr_ptrArray * array, |
---|
67 | int * size ); |
---|
68 | |
---|
69 | static inline void tr_ptrArrayClear( tr_ptrArray * a ) { a->n_items = 0; } |
---|
70 | |
---|
71 | int tr_ptrArrayInsert( tr_ptrArray * array, |
---|
72 | void * insertMe, |
---|
73 | int pos ); |
---|
74 | |
---|
75 | static inline int tr_ptrArrayAppend( tr_ptrArray * array, void * appendMe ) |
---|
76 | { |
---|
77 | return tr_ptrArrayInsert( array, appendMe, -1 ); |
---|
78 | } |
---|
79 | |
---|
80 | void* tr_ptrArrayPop( tr_ptrArray * array ); |
---|
81 | |
---|
82 | void tr_ptrArrayErase( tr_ptrArray * array, |
---|
83 | int begin, |
---|
84 | int end ); |
---|
85 | |
---|
86 | static inline void** tr_ptrArrayBase( const tr_ptrArray * a ) |
---|
87 | { |
---|
88 | return a->items; |
---|
89 | } |
---|
90 | |
---|
91 | static inline int tr_ptrArraySize( const tr_ptrArray * a ) |
---|
92 | { |
---|
93 | return a->n_items; |
---|
94 | } |
---|
95 | |
---|
96 | static inline tr_bool tr_ptrArrayEmpty( const tr_ptrArray * a ) |
---|
97 | { |
---|
98 | return tr_ptrArraySize(a) == 0; |
---|
99 | } |
---|
100 | |
---|
101 | int tr_ptrArrayInsertSorted( tr_ptrArray * array, |
---|
102 | void * value, |
---|
103 | int compare(const void*, const void*) ); |
---|
104 | |
---|
105 | void* tr_ptrArrayRemoveSorted( tr_ptrArray * array, |
---|
106 | void * value, |
---|
107 | int compare(const void*, const void*) ); |
---|
108 | |
---|
109 | void* tr_ptrArrayFindSorted( tr_ptrArray * array, |
---|
110 | const void * key, |
---|
111 | int compare(const void*, const void*) ); |
---|
112 | |
---|
113 | #endif |
---|