]> git.sesse.net Git - vlc/blob - include/vlc_arrays.h
vlc_arrays.h: Don't use calloc, seems unreliable.
[vlc] / include / vlc_arrays.h
1 /*****************************************************************************
2  * vlc_arrays.h : Arrays and data structures handling
3  *****************************************************************************
4  * Copyright (C) 1999-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          ClĂ©ment Stenac <zorglub@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
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 General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/
23
24 #if !defined( __LIBVLC__ )
25   #error You are not libvlc or one of its plugins. You cannot include this file
26 #endif
27
28 #ifndef _VLC_ARRAYS_H_
29 #define _VLC_ARRAYS_H_
30
31 #include <assert.h>
32
33 /**
34  * Simple dynamic array handling. Array is realloced at each insert/removal
35  */
36 #if defined( _MSC_VER ) && _MSC_VER < 1300 && !defined( UNDER_CE )
37 #   define VLCCVP (void**) /* Work-around for broken compiler */
38 #else
39 #   define VLCCVP
40 #endif
41 #define INSERT_ELEM( p_ar, i_oldsize, i_pos, elem )                           \
42     do                                                                        \
43     {                                                                         \
44         if( !i_oldsize ) (p_ar) = NULL;                                       \
45         (p_ar) = VLCCVP realloc( p_ar, ((i_oldsize) + 1) * sizeof(*(p_ar)) ); \
46         if( (i_oldsize) - (i_pos) )                                           \
47         {                                                                     \
48             memmove( (p_ar) + (i_pos) + 1, (p_ar) + (i_pos),                  \
49                      ((i_oldsize) - (i_pos)) * sizeof( *(p_ar) ) );           \
50         }                                                                     \
51         (p_ar)[i_pos] = elem;                                                 \
52         (i_oldsize)++;                                                        \
53     }                                                                         \
54     while( 0 )
55
56 #define REMOVE_ELEM( p_ar, i_oldsize, i_pos )                                 \
57     do                                                                        \
58     {                                                                         \
59         if( (i_oldsize) - (i_pos) - 1 )                                       \
60         {                                                                     \
61             memmove( (p_ar) + (i_pos),                                        \
62                      (p_ar) + (i_pos) + 1,                                    \
63                      ((i_oldsize) - (i_pos) - 1) * sizeof( *(p_ar) ) );       \
64         }                                                                     \
65         if( i_oldsize > 1 )                                                   \
66         {                                                                     \
67             (p_ar) = realloc( p_ar, ((i_oldsize) - 1) * sizeof( *(p_ar) ) );  \
68         }                                                                     \
69         else                                                                  \
70         {                                                                     \
71             free( p_ar );                                                     \
72             (p_ar) = NULL;                                                    \
73         }                                                                     \
74         (i_oldsize)--;                                                        \
75     }                                                                         \
76     while( 0 )
77
78 #define TAB_INIT( count, tab )                  \
79   do {                                          \
80     (count) = 0;                                \
81     (tab) = NULL;                               \
82   } while(0)
83
84 #define TAB_CLEAN( count, tab )                 \
85   do {                                          \
86     if( tab ) free( tab );                      \
87     (count)= 0;                                 \
88     (tab)= NULL;                                \
89   } while(0)
90
91 #define TAB_APPEND_CAST( cast, count, tab, p )             \
92   do {                                          \
93     if( (count) > 0 )                           \
94         (tab) = cast realloc( tab, sizeof( void ** ) * ( (count) + 1 ) ); \
95     else                                        \
96         (tab) = cast malloc( sizeof( void ** ) );    \
97     (tab)[count] = (p);                         \
98     (count)++;                                  \
99   } while(0)
100
101 #define TAB_APPEND( count, tab, p )             \
102     TAB_APPEND_CAST( , count, tab, p )
103 #define TAB_APPEND_CPP( type, count, tab, p )   \
104     TAB_APPEND_CAST( (type**), count, tab, p )
105
106 #define TAB_FIND( count, tab, p, index )        \
107   do {                                          \
108         int _i_;                                \
109         (index) = -1;                           \
110         for( _i_ = 0; _i_ < (count); _i_++ )    \
111         {                                       \
112             if( (tab)[_i_] == (p) )             \
113             {                                   \
114                 (index) = _i_;                  \
115                 break;                          \
116             }                                   \
117         }                                       \
118   } while(0)
119
120
121 #define TAB_REMOVE( count, tab, p )             \
122   do {                                          \
123         int _i_index_;                          \
124         TAB_FIND( count, tab, p, _i_index_ );   \
125         if( _i_index_ >= 0 )                    \
126         {                                       \
127             if( (count) > 1 )                   \
128             {                                   \
129                 memmove( ((void**)(tab) + _i_index_),    \
130                          ((void**)(tab) + _i_index_+1),  \
131                          ( (count) - _i_index_ - 1 ) * sizeof( void* ) );\
132             }                                   \
133             (count)--;                          \
134             if( (count) == 0 )                  \
135             {                                   \
136                 free( tab );                    \
137                 (tab) = NULL;                   \
138             }                                   \
139         }                                       \
140   } while(0)
141
142 #define TAB_INSERT_CAST( cast, count, tab, p, index ) do { \
143     if( (count) > 0 )                           \
144         (tab) = cast realloc( tab, sizeof( void ** ) * ( (count) + 1 ) ); \
145     else                                        \
146         (tab) = cast malloc( sizeof( void ** ) );       \
147     if( (count) - (index) > 0 )                 \
148         memmove( (void**)(tab) + (index) + 1,   \
149                  (void**)(tab) + (index),       \
150                  ((count) - (index)) * sizeof(*(tab)) );\
151     (tab)[(index)] = (p);                       \
152     (count)++;                                  \
153 } while(0)
154
155 #define TAB_INSERT( count, tab, p, index )      \
156     TAB_INSERT_CAST( , count, tab, p, index )
157
158 /**
159  * Binary search in a sorted array. The key must be comparable by < and >
160  * \param entries array of entries
161  * \param count number of entries
162  * \param elem key to check within an entry (like .id, or ->i_id)
163  * \param zetype type of the key
164  * \param key value of the key
165  * \param answer index of answer within the array. -1 if not found
166  */
167 #define BSEARCH( entries, count, elem, zetype, key, answer ) \
168    do {  \
169     int low = 0, high = count - 1;   \
170     answer = -1; \
171     while( low <= high ) {\
172         int mid = (low + high ) / 2; /* Just don't care about 2^30 tables */ \
173         zetype mid_val = entries[mid] elem;\
174         if( mid_val < key ) \
175             low = mid + 1; \
176         else if ( mid_val > key ) \
177             high = mid -1;  \
178         else    \
179         {   \
180             answer = mid;  break;   \
181         }\
182     } \
183  } while(0)
184
185
186 /************************************************************************
187  * Dynamic arrays with progressive allocation
188  ************************************************************************/
189
190 /* Internal functions */
191 #define _ARRAY_ALLOC(array, newsize) {                                      \
192     array.i_alloc = newsize;                                                \
193     array.p_elems = VLCCVP realloc( array.p_elems, array.i_alloc *          \
194                                     sizeof(*array.p_elems) );               \
195     assert(array.p_elems);                                                  \
196 }
197
198 #define _ARRAY_GROW1(array) {                                               \
199     if( array.i_alloc < 10 )                                                \
200         _ARRAY_ALLOC(array, 10 )                                            \
201     else if( array.i_alloc == array.i_size )                                \
202         _ARRAY_ALLOC(array, (int)(array.i_alloc * 1.5) )                    \
203 }
204
205 #define _ARRAY_GROW(array,additional) {                                     \
206      int i_first = array.i_alloc;                                           \
207      while( array.i_alloc - i_first < additional )                          \
208      {                                                                      \
209          if( array.i_alloc < 10 )                                           \
210             _ARRAY_ALLOC(array, 10 )                                        \
211         else if( array.i_alloc == array.i_size )                            \
212             _ARRAY_ALLOC(array, (int)(array.i_alloc * 1.5) )                \
213         else break;                                                         \
214      }                                                                      \
215 }
216
217 #define _ARRAY_SHRINK(array) {                                              \
218     if( array.i_size > 10 && array.i_size < (int)(array.i_alloc / 1.5) ) {  \
219         _ARRAY_ALLOC(array, array.i_size + 5);                              \
220     }                                                                       \
221 }
222
223 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
224
225 /* API */
226 #define DECL_ARRAY(type) struct {                                           \
227     int i_alloc;                                                            \
228     int i_size;                                                             \
229     type *p_elems;                                                          \
230 }
231
232 #define TYPEDEF_ARRAY(type, name) typedef DECL_ARRAY(type) name;
233
234 #define ARRAY_INIT(array)                                                   \
235     array.i_alloc = 0;                                                      \
236     array.i_size = 0;                                                       \
237     array.p_elems = NULL;
238
239 #define ARRAY_RESET(array)                                                  \
240     array.i_alloc = 0;                                                      \
241     array.i_size = 0;                                                       \
242     free( array.p_elems ); array.p_elems = NULL;
243
244 #define ARRAY_APPEND(array, elem) {                                         \
245     _ARRAY_GROW1(array);                                                    \
246     array.p_elems[array.i_size] = elem;                                     \
247     array.i_size++;                                                         \
248 }
249
250 #define ARRAY_INSERT(array,elem,pos) {                                      \
251     _ARRAY_GROW1(array);                                                    \
252     if( array.i_size - pos ) {                                              \
253         memmove( array.p_elems + pos + 1, array.p_elems + pos,              \
254                  (array.i_size-pos) * sizeof(*array.p_elems) );             \
255     }                                                                       \
256     array.p_elems[pos] = elem;                                              \
257     array.i_size++;                                                         \
258 }
259
260 #define ARRAY_REMOVE(array,pos) {                                           \
261     if( array.i_size - (pos) - 1 )                                          \
262     {                                                                       \
263         memmove( array.p_elems + pos, array.p_elems + pos + 1,              \
264                  ( array.i_size - pos - 1 ) *sizeof(*array.p_elems) );      \
265     }                                                                       \
266     array.i_size--;                                                         \
267     _ARRAY_SHRINK(array);                                                   \
268 }
269
270 #define ARRAY_VAL(array, pos) array.p_elems[pos]
271
272 #define ARRAY_BSEARCH(array, elem, zetype, key, answer) \
273     BSEARCH( array.p_elems, array.i_size, elem, zetype, key, answer)
274
275 #define FOREACH_ARRAY( item, array ) { \
276     int fe_idx; \
277     for( fe_idx = 0 ; fe_idx < array.i_size ; fe_idx++ ) \
278     { \
279         item = array.p_elems[fe_idx];
280
281 #define FOREACH_END() } }
282
283
284 /************************************************************************
285  * Dynamic arrays with progressive allocation (Prefered API)
286  ************************************************************************/
287 typedef struct vlc_array_t
288 {
289     int i_count;
290     void ** pp_elems;
291 } vlc_array_t;
292
293 static inline void vlc_array_init( vlc_array_t * p_array )
294 {
295     memset( p_array, 0, sizeof(vlc_array_t) );
296 }
297
298 static inline void vlc_array_clear( vlc_array_t * p_array )
299 {
300     free( p_array->pp_elems );
301     memset( p_array, 0, sizeof(vlc_array_t) );
302 }
303
304 static inline vlc_array_t * vlc_array_new( void )
305 {
306     vlc_array_t * ret = malloc( sizeof(vlc_array_t) );
307     vlc_array_init( ret );
308     return ret;
309 }
310
311 static inline void vlc_array_destroy( vlc_array_t * p_array )
312 {
313     vlc_array_clear( p_array );
314     free( p_array );
315 }
316
317
318 /* Read */
319 static inline int
320 vlc_array_count( vlc_array_t * p_array )
321 {
322     return p_array->i_count;
323 }
324
325 static inline void *
326 vlc_array_item_at_index( vlc_array_t * p_array, int i_index )
327 {
328     return p_array->pp_elems[i_index];
329 }
330
331 static inline int
332 vlc_array_index_of_item( vlc_array_t * p_array, void * item )
333 {
334     int i;
335     for( i = 0; i < p_array->i_count; i++)
336     {
337         if( p_array->pp_elems[i] == item )
338             return i;
339     }
340     return -1;
341 }
342
343 /* Write */
344 static inline void
345 vlc_array_insert( vlc_array_t * p_array, void * p_elem, int i_index )
346 {
347     TAB_INSERT_CAST( (void **), p_array->i_count, p_array->pp_elems, p_elem, i_index );
348 }
349
350 static inline void
351 vlc_array_append( vlc_array_t * p_array, void * p_elem )
352 {
353     vlc_array_insert( p_array, p_elem, p_array->i_count );
354 }
355
356 static inline void
357 vlc_array_remove( vlc_array_t * p_array, int i_index )
358 {
359     if( i_index >= 0 )
360     {
361         if( p_array->i_count > 1 )
362         {
363             memmove( p_array->pp_elems + i_index,
364                      p_array->pp_elems + i_index+1,
365                      ( p_array->i_count - i_index - 1 ) * sizeof( void* ) );
366         }
367         p_array->i_count--;
368         if( p_array->i_count == 0 )
369         {
370             free( p_array->pp_elems );
371             p_array->pp_elems = NULL;
372         }
373     }
374 }
375
376
377 /************************************************************************
378  * Dictionaries
379  ************************************************************************/
380
381 /* This function is not intended to be crypto-secure, we only want it to be
382  * fast and not suck too much. This one is pretty fast and did 0 collisions
383  * in wenglish's dictionary.
384  */
385 static inline uint64_t DictHash( const char *psz_string, int hashsize )
386 {
387     uint64_t i_hash = 0;
388     if( psz_string )
389     {
390         while( *psz_string )
391         {
392             i_hash += *psz_string++;
393             i_hash += i_hash << 10;
394             i_hash ^= i_hash >> 8;
395         }
396     }
397     return i_hash % hashsize;
398 }
399
400 struct vlc_dictionary_entry_t
401 {
402     char *   psz_key;
403     void *   p_value;
404     struct vlc_dictionary_entry_t * p_next;
405 };
406
407 typedef struct vlc_dictionary_t
408 {
409     int i_size;
410     struct vlc_dictionary_entry_t ** p_entries;
411 } vlc_dictionary_t;
412
413 static void * const kVLCDictionaryNotFound = NULL;
414
415 static inline void vlc_dictionary_init( vlc_dictionary_t * p_dict, int i_size )
416 {
417     if( i_size > 0 )
418     {
419         p_dict->p_entries = (struct vlc_dictionary_entry_t **)malloc(sizeof(struct vlc_dictionary_entry_t *) * i_size);
420         assert( p_dict->p_entries );
421         memset( p_dict->p_entries, 0, sizeof(struct vlc_dictionary_entry_t *) * i_size );
422     }
423     else
424         p_dict->p_entries = NULL;
425     p_dict->i_size = i_size;
426 }
427
428 static inline void vlc_dictionary_clear( vlc_dictionary_t * p_dict )
429 {
430     int i;
431     struct vlc_dictionary_entry_t * p_current, * p_next;
432     for( i = 0; i < p_dict->i_size; i++ )
433     {
434         p_current = p_dict->p_entries[i];
435         while( p_current )
436         {
437             p_next = p_dict->p_entries[i]->p_next;
438             free( p_dict->p_entries[i]->psz_key );
439             free( p_current );
440             p_current = p_next;
441         }
442     }
443     free( p_dict->p_entries );
444     p_dict->i_size = 0;
445 }
446
447
448
449 static inline void *
450 vlc_dictionary_value_for_key( const vlc_dictionary_t * p_dict, const char * psz_key )
451 {
452     if( !p_dict->p_entries )
453         return kVLCDictionaryNotFound;
454
455     int i_pos = DictHash( psz_key, p_dict->i_size );
456     struct vlc_dictionary_entry_t * p_entry = p_dict->p_entries[i_pos];
457
458     if( p_entry && !p_entry->p_next )
459         return p_entry->p_value;
460
461     if( !p_entry )
462         return kVLCDictionaryNotFound;
463
464     /* Hash collision */
465     do {
466         if( !strcmp( psz_key, p_entry->psz_key ) )
467             return p_entry->p_value;
468         p_entry = p_entry->p_next;
469     } while( p_entry );
470
471     return kVLCDictionaryNotFound;
472 }
473
474 static inline int
475 vlc_dictionary_keys_count( const vlc_dictionary_t * p_dict )
476 {
477     struct vlc_dictionary_entry_t * p_entry;
478     int i, count = 0;
479     for( i = 0; i < p_dict->i_size; i++ )
480     {
481         for( p_entry = p_dict->p_entries[i]; p_entry; p_entry = p_entry->p_next ) count++;
482     }
483     return count;
484 }
485
486 static inline char **
487 vlc_dictionary_all_keys( const vlc_dictionary_t * p_dict )
488 {
489     struct vlc_dictionary_entry_t * p_entry;
490     char ** ppsz_ret;
491     int i, count = vlc_dictionary_keys_count( p_dict );
492
493     ppsz_ret = (char**)malloc(sizeof(char *) * (count + 1));
494     assert( ppsz_ret );
495
496     count = 0;
497     for( i = 0; i < p_dict->i_size; i++ )
498     {
499         for( p_entry = p_dict->p_entries[i]; p_entry; p_entry = p_entry->p_next )
500         {
501             ppsz_ret[count++] = strdup( p_entry->psz_key );
502             assert( ppsz_ret );
503         }
504     }
505     ppsz_ret[count] = NULL;
506     return ppsz_ret;
507 }
508
509 static inline void
510 __vlc_dictionary_insert( vlc_dictionary_t * p_dict, const char * psz_key,
511                          void * p_value, vlc_bool_t rebuild )
512 {
513     if( !p_dict->p_entries )
514         vlc_dictionary_init( p_dict, 1 );
515
516     int i_pos = DictHash( psz_key, p_dict->i_size );
517     struct vlc_dictionary_entry_t * p_entry = p_dict->p_entries[i_pos];
518
519     if( !p_entry )
520     {
521         p_entry = p_dict->p_entries[i_pos] = (struct vlc_dictionary_entry_t *)malloc(
522                 sizeof(struct vlc_dictionary_entry_t));
523         assert( p_entry );
524
525         p_entry->psz_key = strdup( psz_key );
526         assert( p_entry->psz_key );
527         p_entry->p_value = p_value;
528         p_dict->p_entries[i_pos]->p_next = NULL;
529         return;
530     }
531     if( p_entry->p_value == kVLCDictionaryNotFound )
532     {
533         /* This one is fine, just high jack */
534         p_entry->psz_key = strdup( psz_key );
535         p_entry->p_value = p_value;
536         return;
537     }
538
539     /* Hash collision here */
540     p_entry = (struct vlc_dictionary_entry_t *)malloc(sizeof(struct vlc_dictionary_entry_t));
541     assert( p_entry );
542     p_entry->psz_key = strdup( psz_key );
543     p_entry->p_value = p_value;
544     p_entry->p_next = p_dict->p_entries[i_pos];
545     p_dict->p_entries[i_pos] = p_entry;
546
547     if( rebuild )
548     {
549         /* Count how many items there was */
550         int count;
551         for( count = 1; p_entry->p_next; count++ ) p_entry = p_entry->p_next;
552         if( count > 3 ) /* XXX: this need tuning */
553         {
554             /* Here it starts to be not good, rebuild a bigger dictionary */
555             struct vlc_dictionary_t new_dict;
556             int i_new_size = ( (p_dict->i_size+2) * 3) / 2; /* XXX: this need tuning */
557             int i;
558
559             vlc_dictionary_init( &new_dict, i_new_size );
560             for( i = 0; i < p_dict->i_size; i++ )
561             {
562                 p_entry = p_dict->p_entries[i];
563                 while( p_entry );
564                 {
565                     __vlc_dictionary_insert( &new_dict, p_entry->psz_key,
566                                              p_entry->p_value,
567                                              0 /* To avoid multiple rebuild loop */);
568                     p_entry = p_entry->p_next;
569                 }
570             }
571             vlc_dictionary_clear( p_dict );
572             p_dict->i_size = new_dict.i_size;
573             p_dict->p_entries= new_dict.p_entries;
574         }
575     }
576 }
577
578 static inline void
579 vlc_dictionary_insert( vlc_dictionary_t * p_dict, const char * psz_key, void * p_value )
580 {
581     __vlc_dictionary_insert( p_dict, psz_key, p_value, 1 );
582 }
583
584 static inline void
585 vlc_dictionary_remove_value_for_key( const vlc_dictionary_t * p_dict, const char * psz_key )
586 {
587     if( !p_dict->p_entries )
588         return;
589
590     int i_pos = DictHash( psz_key, p_dict->i_size );
591     struct vlc_dictionary_entry_t * p_entry = p_dict->p_entries[i_pos];
592     struct vlc_dictionary_entry_t * p_prev;
593
594     if( !p_entry )
595         return; /* Not found, nothing to do */
596
597     if( !p_entry->p_next )
598     {
599         free( p_entry->psz_key );
600         free( p_entry );
601         p_dict->p_entries[i_pos] = NULL;
602         return;
603     }
604
605     /* Hash collision */
606     p_prev = NULL;
607     do {
608         if( !strcmp( psz_key, p_entry->psz_key ) )
609         {
610             if( !p_prev )
611                 p_dict->p_entries[i_pos] = p_entry->p_next;
612             else
613                 p_prev->p_next = p_entry->p_next;
614             free( p_entry->psz_key );
615             free( p_entry );
616             return;
617         }
618         p_prev = p_entry;
619         p_entry = p_entry->p_next;
620     } while( p_entry );
621
622     /* No key was found */
623 }
624
625 #endif