1 /*****************************************************************************
2 * vlc_arrays.h : Arrays and data structures handling
3 *****************************************************************************
4 * Copyright (C) 1999-2004 VLC authors and VideoLAN
7 * Authors: Samuel Hocevar <sam@zoy.org>
8 * Clément Stenac <zorglub@videolan.org>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
30 * This file defines functions, structures and macros for handling arrays in vlc
33 /* realloc() that never fails *if* downsizing */
34 static inline void *realloc_down( void *ptr
, size_t size
)
36 void *ret
= realloc( ptr
, size
);
37 return ret
? ret
: ptr
;
40 #define TAB_INIT( count, tab ) \
46 #define TAB_CLEAN( count, tab ) \
53 #define TAB_APPEND_CAST( cast, count, tab, p ) \
56 (tab) = cast realloc( tab, sizeof( *(tab) ) * ( (count) + 1 ) ); \
58 (tab) = cast malloc( sizeof( *(tab) ) ); \
59 if( !(tab) ) abort(); \
64 #define TAB_APPEND( count, tab, p ) \
65 TAB_APPEND_CAST( , count, tab, p )
67 #define TAB_FIND( count, tab, p, idx ) \
69 for( (idx) = 0; (idx) < (count); (idx)++ ) \
70 if( (tab)[(idx)] == (p) ) \
72 if( (idx) >= (count) ) \
77 #define TAB_ERASE( count, tab, index ) \
80 memmove( (tab) + (index), \
81 (tab) + (index) + 1, \
82 ((count) - (index) - 1 ) * sizeof( *(tab) ) );\
91 #define TAB_REMOVE( count, tab, p ) \
94 TAB_FIND( count, tab, p, i_index ); \
96 TAB_ERASE( count, tab, i_index ); \
99 #define TAB_INSERT_CAST( cast, count, tab, p, index ) do { \
101 (tab) = cast realloc( tab, sizeof( *(tab) ) * ( (count) + 1 ) ); \
103 (tab) = cast malloc( sizeof( *(tab) ) ); \
104 if( !(tab) ) abort(); \
105 if( (count) - (index) > 0 ) \
106 memmove( (tab) + (index) + 1, \
108 ((count) - (index)) * sizeof( *(tab) ) );\
109 (tab)[(index)] = (p); \
113 #define TAB_INSERT( count, tab, p, index ) \
114 TAB_INSERT_CAST( , count, tab, p, index )
117 * Binary search in a sorted array. The key must be comparable by < and >
118 * \param entries array of entries
119 * \param count number of entries
120 * \param elem key to check within an entry (like .id, or ->i_id)
121 * \param zetype type of the key
122 * \param key value of the key
123 * \param answer index of answer within the array. -1 if not found
125 #define BSEARCH( entries, count, elem, zetype, key, answer ) \
127 int low = 0, high = count - 1; \
129 while( low <= high ) {\
130 int mid = ((unsigned int)low + (unsigned int)high) >> 1;\
131 zetype mid_val = entries[mid] elem;\
132 if( mid_val < key ) \
134 else if ( mid_val > key ) \
138 answer = mid; break; \
144 /************************************************************************
145 * Dynamic arrays with progressive allocation
146 ************************************************************************/
148 /* Internal functions */
149 #define _ARRAY_ALLOC(array, newsize) { \
150 (array).i_alloc = newsize; \
151 (array).p_elems = realloc( (array).p_elems, (array).i_alloc * \
152 sizeof(*(array).p_elems) ); \
153 if( !(array).p_elems ) abort(); \
156 #define _ARRAY_GROW1(array) { \
157 if( (array).i_alloc < 10 ) \
158 _ARRAY_ALLOC(array, 10 ) \
159 else if( (array).i_alloc == (array).i_size ) \
160 _ARRAY_ALLOC(array, (int)((array).i_alloc * 1.5) ) \
163 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
166 #define DECL_ARRAY(type) struct { \
172 #define TYPEDEF_ARRAY(type, name) typedef DECL_ARRAY(type) name;
174 #define ARRAY_INIT(array) \
176 (array).i_alloc = 0; \
177 (array).i_size = 0; \
178 (array).p_elems = NULL; \
181 #define ARRAY_RESET(array) \
183 (array).i_alloc = 0; \
184 (array).i_size = 0; \
185 free( (array).p_elems ); (array).p_elems = NULL; \
188 #define ARRAY_APPEND(array, elem) \
190 _ARRAY_GROW1(array); \
191 (array).p_elems[(array).i_size] = elem; \
195 #define ARRAY_INSERT(array,elem,pos) \
197 _ARRAY_GROW1(array); \
198 if( (array).i_size - pos ) { \
199 memmove( (array).p_elems + pos + 1, (array).p_elems + pos, \
200 ((array).i_size-pos) * sizeof(*(array).p_elems) ); \
202 (array).p_elems[pos] = elem; \
206 #define _ARRAY_SHRINK(array) { \
207 if( (array).i_size > 10 && (array).i_size < (int)((array).i_alloc / 1.5) ) { \
208 _ARRAY_ALLOC(array, (array).i_size + 5); \
212 #define ARRAY_REMOVE(array,pos) \
214 if( (array).i_size - (pos) - 1 ) \
216 memmove( (array).p_elems + pos, (array).p_elems + pos + 1, \
217 ( (array).i_size - pos - 1 ) *sizeof(*(array).p_elems) ); \
220 _ARRAY_SHRINK(array); \
223 #define ARRAY_VAL(array, pos) array.p_elems[pos]
225 #define ARRAY_BSEARCH(array, elem, zetype, key, answer) \
226 BSEARCH( (array).p_elems, (array).i_size, elem, zetype, key, answer)
228 #define FOREACH_ARRAY( item, array ) { \
230 for( fe_idx = 0 ; fe_idx < (array).i_size ; fe_idx++ ) \
232 item = (array).p_elems[fe_idx];
234 #define FOREACH_END() } }
237 /************************************************************************
238 * Dynamic arrays with progressive allocation (Preferred API)
239 ************************************************************************/
240 typedef struct vlc_array_t
246 static inline void vlc_array_init( vlc_array_t
* p_array
)
248 p_array
->i_count
= 0;
249 p_array
->pp_elems
= NULL
;
252 static inline void vlc_array_clear( vlc_array_t
* p_array
)
254 free( p_array
->pp_elems
);
255 vlc_array_init( p_array
);
259 static inline size_t vlc_array_count( vlc_array_t
* p_array
)
261 return p_array
->i_count
;
264 #if defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)
265 # define vlc_array_item_at_index(ar, idx) \
267 const vlc_array_t *: ((ar)->pp_elems[idx]), \
268 vlc_array_t *: ((ar)->pp_elems[idx]))
269 #elif defined (__cplusplus)
270 static inline void *vlc_array_item_at_index( vlc_array_t
*ar
, size_t idx
)
272 return ar
->pp_elems
[idx
];
275 static inline const void *vlc_array_item_at_index( const vlc_array_t
*ar
,
278 return ar
->pp_elems
[idx
];
282 static inline ssize_t
vlc_array_index_of_item( const vlc_array_t
*ar
,
285 for( size_t i
= 0; i
< ar
->i_count
; i
++ )
287 if( ar
->pp_elems
[i
] == elem
)
294 static inline void vlc_array_insert( vlc_array_t
*ar
, void *elem
, int idx
)
296 void **pp
= (void **)realloc( ar
->pp_elems
,
297 sizeof( void * ) * (ar
->i_count
+ 1) );
298 if( unlikely(pp
== NULL
) )
301 size_t tail
= ar
->i_count
- idx
;
303 memmove( pp
+ idx
+ 1, pp
+ idx
, sizeof( void * ) * tail
);
310 static inline void vlc_array_append( vlc_array_t
*ar
, void *elem
)
312 void **pp
= (void **)realloc( ar
->pp_elems
,
313 sizeof( void * ) * (ar
->i_count
+ 1) );
314 if( unlikely(pp
== NULL
) )
317 pp
[ar
->i_count
++] = elem
;
321 static inline void vlc_array_remove( vlc_array_t
*ar
, size_t idx
)
323 void **pp
= ar
->pp_elems
;
324 size_t tail
= ar
->i_count
- idx
- 1;
327 memmove( pp
+ idx
, pp
+ idx
+ 1, sizeof( void * ) * tail
);
331 if( ar
->i_count
> 0 )
333 pp
= (void **)realloc( pp
, sizeof( void * ) * ar
->i_count
);
334 if( likely(pp
!= NULL
) )
345 /************************************************************************
347 ************************************************************************/
349 /* This function is not intended to be crypto-secure, we only want it to be
350 * fast and not suck too much. This one is pretty fast and did 0 collisions
351 * in wenglish's dictionary.
353 static inline uint64_t DictHash( const char *psz_string
, int hashsize
)
360 i_hash
+= *psz_string
++;
361 i_hash
+= i_hash
<< 10;
362 i_hash
^= i_hash
>> 8;
365 return i_hash
% hashsize
;
368 typedef struct vlc_dictionary_entry_t
372 struct vlc_dictionary_entry_t
* p_next
;
373 } vlc_dictionary_entry_t
;
375 typedef struct vlc_dictionary_t
378 vlc_dictionary_entry_t
** p_entries
;
381 static void * const kVLCDictionaryNotFound
= NULL
;
383 static inline void vlc_dictionary_init( vlc_dictionary_t
* p_dict
, int i_size
)
385 p_dict
->p_entries
= NULL
;
389 p_dict
->p_entries
= (vlc_dictionary_entry_t
**)calloc( i_size
, sizeof(*p_dict
->p_entries
) );
390 if( !p_dict
->p_entries
)
393 p_dict
->i_size
= i_size
;
396 static inline void vlc_dictionary_clear( vlc_dictionary_t
* p_dict
,
397 void ( * pf_free
)( void * p_data
, void * p_obj
),
400 if( p_dict
->p_entries
)
402 for( int i
= 0; i
< p_dict
->i_size
; i
++ )
404 vlc_dictionary_entry_t
* p_current
, * p_next
;
405 p_current
= p_dict
->p_entries
[i
];
408 p_next
= p_current
->p_next
;
409 if( pf_free
!= NULL
)
410 ( * pf_free
)( p_current
->p_value
, p_obj
);
411 free( p_current
->psz_key
);
416 free( p_dict
->p_entries
);
417 p_dict
->p_entries
= NULL
;
423 vlc_dictionary_has_key( const vlc_dictionary_t
* p_dict
, const char * psz_key
)
425 if( !p_dict
->p_entries
)
428 int i_pos
= DictHash( psz_key
, p_dict
->i_size
);
429 const vlc_dictionary_entry_t
* p_entry
= p_dict
->p_entries
[i_pos
];
430 for( ; p_entry
!= NULL
; p_entry
= p_entry
->p_next
)
432 if( !strcmp( psz_key
, p_entry
->psz_key
) )
435 return p_entry
!= NULL
;
439 vlc_dictionary_value_for_key( const vlc_dictionary_t
* p_dict
, const char * psz_key
)
441 if( !p_dict
->p_entries
)
442 return kVLCDictionaryNotFound
;
444 int i_pos
= DictHash( psz_key
, p_dict
->i_size
);
445 vlc_dictionary_entry_t
* p_entry
= p_dict
->p_entries
[i_pos
];
448 return kVLCDictionaryNotFound
;
450 /* Make sure we return the right item. (Hash collision) */
452 if( !strcmp( psz_key
, p_entry
->psz_key
) )
453 return p_entry
->p_value
;
454 p_entry
= p_entry
->p_next
;
457 return kVLCDictionaryNotFound
;
461 vlc_dictionary_keys_count( const vlc_dictionary_t
* p_dict
)
463 vlc_dictionary_entry_t
* p_entry
;
466 if( !p_dict
->p_entries
)
469 for( i
= 0; i
< p_dict
->i_size
; i
++ )
471 for( p_entry
= p_dict
->p_entries
[i
]; p_entry
; p_entry
= p_entry
->p_next
) count
++;
477 vlc_dictionary_is_empty( const vlc_dictionary_t
* p_dict
)
479 if( p_dict
->p_entries
)
480 for( int i
= 0; i
< p_dict
->i_size
; i
++ )
481 if( p_dict
->p_entries
[i
] )
486 static inline char **
487 vlc_dictionary_all_keys( const vlc_dictionary_t
* p_dict
)
489 vlc_dictionary_entry_t
* p_entry
;
491 int i
, count
= vlc_dictionary_keys_count( p_dict
);
493 ppsz_ret
= (char**)malloc(sizeof(char *) * (count
+ 1));
494 if( unlikely(!ppsz_ret
) )
498 for( i
= 0; i
< p_dict
->i_size
; i
++ )
500 for( p_entry
= p_dict
->p_entries
[i
]; p_entry
; p_entry
= p_entry
->p_next
)
501 ppsz_ret
[count
++] = strdup( p_entry
->psz_key
);
503 ppsz_ret
[count
] = NULL
;
508 vlc_dictionary_insert_impl_( vlc_dictionary_t
* p_dict
, const char * psz_key
,
509 void * p_value
, bool rebuild
)
511 if( !p_dict
->p_entries
)
512 vlc_dictionary_init( p_dict
, 1 );
514 int i_pos
= DictHash( psz_key
, p_dict
->i_size
);
515 vlc_dictionary_entry_t
* p_entry
;
517 p_entry
= (vlc_dictionary_entry_t
*)malloc(sizeof(*p_entry
));
518 p_entry
->psz_key
= strdup( psz_key
);
519 p_entry
->p_value
= p_value
;
520 p_entry
->p_next
= p_dict
->p_entries
[i_pos
];
521 p_dict
->p_entries
[i_pos
] = p_entry
;
524 /* Count how many items there was */
526 for( count
= 1; p_entry
->p_next
; count
++ )
527 p_entry
= p_entry
->p_next
;
528 if( count
> 3 ) /* XXX: this need tuning */
530 /* Here it starts to be not good, rebuild a bigger dictionary */
531 struct vlc_dictionary_t new_dict
;
532 int i_new_size
= ( (p_dict
->i_size
+2) * 3) / 2; /* XXX: this need tuning */
534 vlc_dictionary_init( &new_dict
, i_new_size
);
535 for( i
= 0; i
< p_dict
->i_size
; i
++ )
537 p_entry
= p_dict
->p_entries
[i
];
540 vlc_dictionary_insert_impl_( &new_dict
, p_entry
->psz_key
,
542 false /* To avoid multiple rebuild loop */);
543 p_entry
= p_entry
->p_next
;
547 vlc_dictionary_clear( p_dict
, NULL
, NULL
);
548 p_dict
->i_size
= new_dict
.i_size
;
549 p_dict
->p_entries
= new_dict
.p_entries
;
555 vlc_dictionary_insert( vlc_dictionary_t
* p_dict
, const char * psz_key
, void * p_value
)
557 vlc_dictionary_insert_impl_( p_dict
, psz_key
, p_value
, true );
561 vlc_dictionary_remove_value_for_key( const vlc_dictionary_t
* p_dict
, const char * psz_key
,
562 void ( * pf_free
)( void * p_data
, void * p_obj
),
565 if( !p_dict
->p_entries
)
568 int i_pos
= DictHash( psz_key
, p_dict
->i_size
);
569 vlc_dictionary_entry_t
* p_entry
= p_dict
->p_entries
[i_pos
];
570 vlc_dictionary_entry_t
* p_prev
;
573 return; /* Not found, nothing to do */
578 if( !strcmp( psz_key
, p_entry
->psz_key
) )
580 if( pf_free
!= NULL
)
581 ( * pf_free
)( p_entry
->p_value
, p_obj
);
583 p_dict
->p_entries
[i_pos
] = p_entry
->p_next
;
585 p_prev
->p_next
= p_entry
->p_next
;
586 free( p_entry
->psz_key
);
591 p_entry
= p_entry
->p_next
;
594 /* No key was found */
599 template <typename T
>
600 void vlc_delete_all( T
&container
)
602 typename
T::iterator it
= container
.begin();
603 while ( it
!= container
.end() )