]> git.sesse.net Git - vlc/blob - include/vlc_arrays.h
(oops)
[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: vlc_playlist.h 17108 2006-10-15 15:28:34Z zorglub $
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 #define TAB_REMOVE( count, tab, p )             \
121   do {                                          \
122         int _i_index_;                          \
123         TAB_FIND( count, tab, p, _i_index_ );   \
124         if( _i_index_ >= 0 )                    \
125         {                                       \
126             if( (count) > 1 )                   \
127             {                                   \
128                 memmove( ((void**)(tab) + _i_index_),    \
129                          ((void**)(tab) + _i_index_+1),  \
130                          ( (count) - _i_index_ - 1 ) * sizeof( void* ) );\
131             }                                   \
132             (count)--;                          \
133             if( (count) == 0 )                  \
134             {                                   \
135                 free( tab );                    \
136                 (tab) = NULL;                   \
137             }                                   \
138         }                                       \
139   } while(0)
140
141 #define TAB_INSERT_CAST( cast, count, tab, p, index ) do { \
142     if( (count) > 0 )                           \
143         (tab) = cast realloc( tab, sizeof( void ** ) * ( (count) + 1 ) ); \
144     else                                        \
145         (tab) = cast malloc( sizeof( void ** ) );       \
146     if( (count) - (index) > 0 )                 \
147         memmove( (void**)(tab) + (index) + 1,   \
148                  (void**)(tab) + (index),       \
149                  ((count) - (index)) * sizeof(*(tab)) );\
150     (tab)[(index)] = (p);                       \
151     (count)++;                                  \
152 } while(0)
153
154 #define TAB_INSERT( count, tab, p, index )      \
155     TAB_INSERT_CAST( , count, tab, p, index )
156
157 /**
158  * Binary search in a sorted array. The key must be comparable by < and >
159  * \param entries array of entries
160  * \param count number of entries
161  * \param elem key to check within an entry (like .id, or ->i_id)
162  * \param zetype type of the key
163  * \param key value of the key
164  * \param answer index of answer within the array. -1 if not found
165  */
166 #define BSEARCH( entries, count, elem, zetype, key, answer ) \
167    do {  \
168     int low = 0, high = count - 1;   \
169     answer = -1; \
170     while( low <= high ) {\
171         int mid = (low + high ) / 2; /* Just don't care about 2^30 tables */ \
172         zetype mid_val = entries[mid] elem;\
173         if( mid_val < key ) \
174             low = mid + 1; \
175         else if ( mid_val > key ) \
176             high = mid -1;  \
177         else    \
178         {   \
179             answer = mid;  break;   \
180         }\
181     } \
182  } while(0)
183
184 /************************************************************************
185  * Dictionaries
186  ************************************************************************/
187
188 #ifdef __cplusplus__
189 extern "C"
190 {
191 #endif
192 /* This function is not intended to be crypto-secure, we only want it to be
193  * fast and not suck too much. This one is pretty fast and did 0 collisions
194  * in wenglish's dictionary.
195  */
196 static inline uint64_t DictHash( const char *psz_string )
197 {
198     uint64_t i_hash = 0;
199     if( psz_string )
200     {
201         while( *psz_string )
202         {
203             i_hash += *psz_string++;
204             i_hash += i_hash << 10;
205             i_hash ^= i_hash >> 8;
206         }
207     }
208     return i_hash;
209 }
210
211 typedef struct vlc_dictionary_t
212 {
213     struct vlc_dictionary_entries_t
214     {
215         char *   psz_key;
216         uint64_t i_hash;
217         void *   p_value;
218     } * p_entries;
219     int i_entries;
220 } vlc_dictionary_t;
221
222 static void * const kVLCDictionaryNotFound = (void *)-1;
223
224 static inline void vlc_dictionary_init( vlc_dictionary_t * p_dict )
225 {
226     p_dict->i_entries = 0;
227     p_dict->p_entries = NULL;
228 }
229
230 static inline void vlc_dictionary_clear( vlc_dictionary_t * p_dict )
231 {
232     int i;
233     for ( i = 0; i < p_dict->i_entries; i++ )
234     {
235         free( p_dict->p_entries[i].psz_key );
236     }
237     free( p_dict->p_entries );
238     p_dict->i_entries = 0;
239     p_dict->p_entries = NULL;
240 }
241
242
243 static inline void *
244 vlc_dictionary_value_for_key( vlc_dictionary_t * p_dict, const char * psz_key )
245 {
246     uint64_t i_hash;
247     int i, i_pos;
248     
249     if( p_dict->i_entries == 0 )
250         return kVLCDictionaryNotFound;
251
252     i_hash = DictHash( psz_key );
253     BSEARCH( p_dict->p_entries, p_dict->i_entries, .i_hash, uint64_t,
254              i_hash, i_pos );
255     if( i_pos == -1 )
256         return kVLCDictionaryNotFound;
257
258     /* Hash found, let's check it looks like the entry */
259     if( !strcmp( psz_key, p_dict->p_entries[i_pos].psz_key ) )
260         return p_dict->p_entries[i_pos].p_value;
261
262     /* Hash collision! This should be very rare, but we cannot guarantee
263      * it will never happen. Just do an exhaustive search amongst all
264      * entries with the same hash. */
265     for( i = i_pos - 1 ; i > 0 && i_hash == p_dict->p_entries[i].i_hash ; i-- )
266     {
267         if( !strcmp( psz_key, p_dict->p_entries[i].psz_key ) )
268             return p_dict->p_entries[i_pos].p_value;
269     }
270     for( i = i_pos + 1 ; i < p_dict->i_entries &&
271                          i_hash == p_dict->p_entries[i].i_hash ; i++ )
272     {
273          if( !strcmp( psz_key, p_dict->p_entries[i].psz_key ))
274             return p_dict->p_entries[i_pos].p_value;
275     }
276     /* Hash found, but entry not found (shouldn't happen!) */
277     return kVLCDictionaryNotFound;
278 }
279
280 static inline void
281 vlc_dictionary_insert( vlc_dictionary_t * p_dict, const char * psz_key, void * p_value )
282 {
283     uint64_t i_hash = DictHash( psz_key );
284     int i_new;
285
286     /* First, caller should take care not to insert twice the same key */
287     /* This could be removed for optimization */
288     assert( vlc_dictionary_value_for_key( p_dict, psz_key ) == kVLCDictionaryNotFound );
289
290     /* Find a free slot */
291     if( p_dict->i_entries == 0 || i_hash <= p_dict->p_entries[0].i_hash )
292         i_new = 0;
293     else if( i_hash >= p_dict->p_entries[p_dict->i_entries-1].i_hash )
294         i_new = p_dict->i_entries;
295     else
296     {
297         int i_low = 0, i_high = p_dict->i_entries - 1;
298         while( i_high - i_low > 1 )
299         {
300             int i_mid = (i_low + i_high)/2;
301             if( p_dict->p_entries[i_mid].i_hash < i_hash ) {
302                 i_low = i_mid;
303             } else if( p_dict->p_entries[i_mid].i_hash > i_hash ) {
304                 i_high = i_mid;
305             }
306         }
307         if( p_dict->p_entries[i_low].i_hash < i_hash )
308             i_new = i_high;
309         else
310             i_new = i_low;
311     }
312     p_dict->p_entries = realloc( p_dict->p_entries, (p_dict->i_entries + 1) *
313         sizeof(struct vlc_dictionary_entries_t) );
314     p_dict->i_entries++;
315     if( i_new != p_dict->i_entries -1 )
316     {
317         memmove( &p_dict->p_entries[i_new+1], &p_dict->p_entries[i_new],
318          ( p_dict->i_entries - i_new - 1 ) *
319          sizeof(struct vlc_dictionary_entries_t) );
320     }
321
322     p_dict->p_entries[i_new].i_hash  = i_hash;
323     p_dict->p_entries[i_new].psz_key = strdup( psz_key );
324     p_dict->p_entries[i_new].p_value = p_value;
325 }
326 #ifdef __cplusplus__
327 } /* extern "C" */
328 #endif
329 /************************************************************************
330  * Dynamic arrays with progressive allocation
331  ************************************************************************/
332
333 /* Internal functions */
334 #define _ARRAY_ALLOC(array, newsize) {                                      \
335     array.i_alloc = newsize;                                                \
336     array.p_elems = VLCCVP realloc( array.p_elems, array.i_alloc *          \
337                                     sizeof(*array.p_elems) );               \
338     assert(array.p_elems);                                                  \
339 }
340
341 #define _ARRAY_GROW1(array) {                                               \
342     if( array.i_alloc < 10 )                                                \
343         _ARRAY_ALLOC(array, 10 )                                            \
344     else if( array.i_alloc == array.i_size )                                \
345         _ARRAY_ALLOC(array, (int)(array.i_alloc * 1.5) )                    \
346 }
347
348 #define _ARRAY_GROW(array,additional) {                                     \
349      int i_first = array.i_alloc;                                           \
350      while( array.i_alloc - i_first < additional )                          \
351      {                                                                      \
352          if( array.i_alloc < 10 )                                           \
353             _ARRAY_ALLOC(array, 10 )                                        \
354         else if( array.i_alloc == array.i_size )                            \
355             _ARRAY_ALLOC(array, (int)(array.i_alloc * 1.5) )                \
356         else break;                                                         \
357      }                                                                      \
358 }
359
360 #define _ARRAY_SHRINK(array) {                                              \
361     if( array.i_size > 10 && array.i_size < (int)(array.i_alloc / 1.5) ) {  \
362         _ARRAY_ALLOC(array, array.i_size + 5);                              \
363     }                                                                       \
364 }
365
366
367 /* API */
368 #define DECL_ARRAY(type) struct {                                           \
369     int i_alloc;                                                            \
370     int i_size;                                                             \
371     type *p_elems;                                                          \
372 }
373
374 #define TYPEDEF_ARRAY(type, name) typedef DECL_ARRAY(type) name;
375
376 #define ARRAY_INIT(array)                                                   \
377     array.i_alloc = 0;                                                      \
378     array.i_size = 0;                                                       \
379     array.p_elems = NULL;
380
381 #define ARRAY_RESET(array)                                                  \
382     array.i_alloc = 0;                                                      \
383     array.i_size = 0;                                                       \
384     free( array.p_elems ); array.p_elems = NULL;
385
386 #define ARRAY_APPEND(array, elem) {                                         \
387     _ARRAY_GROW1(array);                                                    \
388     array.p_elems[array.i_size] = elem;                                     \
389     array.i_size++;                                                         \
390 }
391
392 #define ARRAY_INSERT(array,elem,pos) {                                      \
393     _ARRAY_GROW1(array);                                                    \
394     if( array.i_size - pos ) {                                              \
395         memmove( array.p_elems + pos + 1, array.p_elems + pos,              \
396                  (array.i_size-pos) * sizeof(*array.p_elems) );             \
397     }                                                                       \
398     array.p_elems[pos] = elem;                                              \
399     array.i_size++;                                                         \
400 }
401
402 #define ARRAY_REMOVE(array,pos) {                                           \
403     if( array.i_size - (pos) - 1 )                                          \
404     {                                                                       \
405         memmove( array.p_elems + pos, array.p_elems + pos + 1,              \
406                  ( array.i_size - pos - 1 ) *sizeof(*array.p_elems) );      \
407     }                                                                       \
408     array.i_size--;                                                         \
409     _ARRAY_SHRINK(array);                                                   \
410 }
411
412 #define ARRAY_VAL(array, pos) array.p_elems[pos]
413
414 #define ARRAY_BSEARCH(array, elem, zetype, key, answer) \
415     BSEARCH( array.p_elems, array.i_size, elem, zetype, key, answer)
416
417 #define FOREACH_ARRAY( item, array ) { \
418     int fe_idx; \
419     for( fe_idx = 0 ; fe_idx < array.i_size ; fe_idx++ ) \
420     { \
421         item = array.p_elems[fe_idx];
422
423 #define FOREACH_END() } }
424
425 #endif