34 static inline void *
realloc_down(
void *ptr,
size_t size )
36 void *ret = realloc( ptr, size );
37 return ret ? ret : ptr;
43 #define INSERT_ELEM( p_ar, i_oldsize, i_pos, elem ) \
46 if( !(i_oldsize) ) (p_ar) = NULL; \
47 (p_ar) = realloc( p_ar, ((i_oldsize) + 1) * sizeof(*(p_ar)) ); \
48 if( !(p_ar) ) abort(); \
49 if( (i_oldsize) - (i_pos) ) \
51 memmove( (p_ar) + (i_pos) + 1, (p_ar) + (i_pos), \
52 ((i_oldsize) - (i_pos)) * sizeof( *(p_ar) ) ); \
54 (p_ar)[(i_pos)] = elem; \
59 #define REMOVE_ELEM( p_ar, i_size, i_pos ) \
62 if( (i_size) - (i_pos) - 1 ) \
64 memmove( (p_ar) + (i_pos), \
65 (p_ar) + (i_pos) + 1, \
66 ((i_size) - (i_pos) - 1) * sizeof( *(p_ar) ) ); \
69 (p_ar) = realloc_down( p_ar, ((i_size) - 1) * sizeof( *(p_ar) ) );\
79 #define TAB_INIT( count, tab ) \
85 #define TAB_CLEAN( count, tab ) \
92 #define TAB_APPEND_CAST( cast, count, tab, p ) \
95 (tab) = cast realloc( tab, sizeof( void ** ) * ( (count) + 1 ) ); \
97 (tab) = cast malloc( sizeof( void ** ) ); \
98 if( !(tab) ) abort(); \
103 #define TAB_APPEND( count, tab, p ) \
104 TAB_APPEND_CAST( , count, tab, p )
106 #define TAB_FIND( count, tab, p, idx ) \
108 for( (idx) = 0; (idx) < (count); (idx)++ ) \
109 if( (tab)[(idx)] == (p) ) \
111 if( (idx) >= (count) ) \
116 #define TAB_REMOVE( count, tab, p ) \
119 TAB_FIND( count, tab, p, i_index ); \
124 memmove( ((void**)(tab) + i_index), \
125 ((void**)(tab) + i_index+1), \
126 ( (count) - i_index - 1 ) * sizeof( void* ) );\
137 #define TAB_INSERT_CAST( cast, count, tab, p, index ) do { \
139 (tab) = cast realloc( tab, sizeof( void ** ) * ( (count) + 1 ) ); \
141 (tab) = cast malloc( sizeof( void ** ) ); \
142 if( !(tab) ) abort(); \
143 if( (count) - (index) > 0 ) \
144 memmove( (void**)(tab) + (index) + 1, \
145 (void**)(tab) + (index), \
146 ((count) - (index)) * sizeof(*(tab)) );\
147 (tab)[(index)] = (p); \
151 #define TAB_INSERT( count, tab, p, index ) \
152 TAB_INSERT_CAST( , count, tab, p, index )
163 #define BSEARCH( entries, count, elem, zetype, key, answer ) \
165 int low = 0, high = count - 1; \
167 while( low <= high ) {\
168 int mid = (low + high ) / 2; \
169 zetype mid_val = entries[mid] elem;\
170 if( mid_val < key ) \
172 else if ( mid_val > key ) \
176 answer = mid; break; \
187 #define _ARRAY_ALLOC(array, newsize) { \
188 (array).i_alloc = newsize; \
189 (array).p_elems = realloc( (array).p_elems, (array).i_alloc * \
190 sizeof(*(array).p_elems) ); \
191 if( !(array).p_elems ) abort(); \
194 #define _ARRAY_GROW1(array) { \
195 if( (array).i_alloc < 10 ) \
196 _ARRAY_ALLOC(array, 10 ) \
197 else if( (array).i_alloc == (array).i_size ) \
198 _ARRAY_ALLOC(array, (int)(array.i_alloc * 1.5) ) \
201 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
204 #define DECL_ARRAY(type) struct { \
210 #define TYPEDEF_ARRAY(type, name) typedef DECL_ARRAY(type) name;
212 #define ARRAY_INIT(array) \
214 (array).i_alloc = 0; \
215 (array).i_size = 0; \
216 (array).p_elems = NULL; \
219 #define ARRAY_RESET(array) \
221 (array).i_alloc = 0; \
222 (array).i_size = 0; \
223 free( (array).p_elems ); (array).p_elems = NULL; \
226 #define ARRAY_APPEND(array, elem) \
228 _ARRAY_GROW1(array); \
229 (array).p_elems[(array).i_size] = elem; \
233 #define ARRAY_INSERT(array,elem,pos) \
235 _ARRAY_GROW1(array); \
236 if( (array).i_size - pos ) { \
237 memmove( (array).p_elems + pos + 1, (array).p_elems + pos, \
238 ((array).i_size-pos) * sizeof(*(array).p_elems) ); \
240 (array).p_elems[pos] = elem; \
244 #define _ARRAY_SHRINK(array) { \
245 if( (array).i_size > 10 && (array).i_size < (int)((array).i_alloc / 1.5) ) { \
246 _ARRAY_ALLOC(array, (array).i_size + 5); \
250 #define ARRAY_REMOVE(array,pos) \
252 if( (array).i_size - (pos) - 1 ) \
254 memmove( (array).p_elems + pos, (array).p_elems + pos + 1, \
255 ( (array).i_size - pos - 1 ) *sizeof(*(array).p_elems) ); \
258 _ARRAY_SHRINK(array); \
261 #define ARRAY_VAL(array, pos) array.p_elems[pos]
263 #define ARRAY_BSEARCH(array, elem, zetype, key, answer) \
264 BSEARCH( (array).p_elems, (array).i_size, elem, zetype, key, answer)
266 #define FOREACH_ARRAY( item, array ) { \
268 for( fe_idx = 0 ; fe_idx < (array).i_size ; fe_idx++ ) \
270 item = (array).p_elems[fe_idx];
272 #define FOREACH_END() } }
328 for( i = 0; i < p_array->
i_count; i++)
356 memmove( p_array->
pp_elems + i_index,
358 ( p_array->
i_count - i_index - 1 ) *
sizeof(
void* ) );
378 static inline uint64_t
DictHash(
const char *psz_string,
int hashsize )
385 i_hash += *psz_string++;
386 i_hash += i_hash << 10;
387 i_hash ^= i_hash >> 8;
390 return i_hash % hashsize;
422 void ( * pf_free )(
void * p_data,
void * p_obj ),
427 for(
int i = 0; i < p_dict->
i_size; i++ )
433 p_next = p_current->
p_next;
434 if( pf_free != NULL )
435 ( * pf_free )( p_current->
p_value, p_obj );
471 if( !strcmp( psz_key, p_entry->
psz_key ) )
473 p_entry = p_entry->
p_next;
488 for( i = 0; i < p_dict->
i_size; i++ )
490 for( p_entry = p_dict->
p_entries[i]; p_entry; p_entry = p_entry->
p_next ) count++;
495 static inline char **
502 ppsz_ret = (
char**)malloc(
sizeof(
char *) * (count + 1));
507 for( i = 0; i < p_dict->
i_size; i++ )
509 for( p_entry = p_dict->
p_entries[i]; p_entry; p_entry = p_entry->
p_next )
512 ppsz_ret[
count] = NULL;
518 void * p_value,
bool rebuild )
535 for( count = 1; p_entry->
p_next; count++ )
536 p_entry = p_entry->
p_next;
541 int i_new_size = ( (p_dict->
i_size+2) * 3) / 2;
544 for( i = 0; i < p_dict->
i_size; i++ )
552 p_entry = p_entry->
p_next;
571 void ( * pf_free )(
void * p_data,
void * p_obj ),
587 if( !strcmp( psz_key, p_entry->
psz_key ) )
589 if( pf_free != NULL )
590 ( * pf_free )( p_entry->
p_value, p_obj );
600 p_entry = p_entry->
p_next;
608 template <
typename T>
609 void vlc_delete_all( T &container )
611 typename T::iterator it = container.begin();
612 while ( it != container.end() )