]> git.sesse.net Git - vlc/blob - src/misc/block.c
pda gui: Set prio to 0, so it is not eligible for automatic selection. This is bad...
[vlc] / src / misc / block.c
1 /*****************************************************************************
2  * block.c: Data blocks management functions
3  *****************************************************************************
4  * Copyright (C) 2003-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <sys/stat.h>
33 #include "vlc_block.h"
34
35 /*****************************************************************************
36  * Block functions.
37  *****************************************************************************/
38 /* private */
39 struct block_sys_t
40 {
41     block_t     self;
42     size_t      i_allocated_buffer;
43     uint8_t     p_allocated_buffer[0];
44 };
45
46 #ifndef NDEBUG
47 static void BlockNoRelease( block_t *b )
48 {
49     fprintf( stderr, "block %p has no release callback! This is a bug!\n", b );
50     abort();
51 }
52 #endif
53
54 void block_Init( block_t *restrict b, void *buf, size_t size )
55 {
56     /* Fill all fields to their default */
57     b->p_next = b->p_prev = NULL;
58     b->i_flags = 0;
59     b->i_pts = b->i_dts = b->i_length = 0;
60     b->i_rate = 0;
61     b->p_buffer = buf;
62     b->i_buffer = size;
63 #ifndef NDEBUG
64     b->pf_release = BlockNoRelease;
65 #endif
66 }
67
68 static void BlockRelease( block_t *p_block )
69 {
70     free( p_block );
71 }
72
73 /* Memory alignment */
74 #define BLOCK_ALIGN        16
75 /* Initial size of reserved header and footer */
76 #define BLOCK_PADDING_SIZE 32
77 /* Maximum size of reserved footer before we release with realloc() */
78 #define BLOCK_WASTE_SIZE   2048
79
80 block_t *block_Alloc( size_t i_size )
81 {
82     /* We do only one malloc
83      * TODO: bench if doing 2 malloc but keeping a pool of buffer is better
84      * TODO: use memalign
85      * 16 -> align on 16
86      * 2 * BLOCK_PADDING_SIZE -> pre + post padding
87      */
88     const size_t i_alloc = i_size + 2 * BLOCK_PADDING_SIZE + BLOCK_ALIGN;
89     block_sys_t *p_sys = malloc( sizeof( *p_sys ) + i_alloc );
90
91     if( p_sys == NULL )
92         return NULL;
93
94     /* Fill opaque data */
95     p_sys->i_allocated_buffer = i_alloc;
96
97     block_Init( &p_sys->self, p_sys->p_allocated_buffer + BLOCK_PADDING_SIZE
98                 + BLOCK_ALIGN
99                 - ((uintptr_t)p_sys->p_allocated_buffer % BLOCK_ALIGN),
100                 i_size );
101     p_sys->self.pf_release    = BlockRelease;
102
103     return &p_sys->self;
104 }
105
106 block_t *block_Realloc( block_t *p_block, ssize_t i_prebody, size_t i_body )
107 {
108     block_sys_t *p_sys = (block_sys_t *)p_block;
109     ssize_t i_buffer_size = i_prebody + i_body;
110
111     if( i_buffer_size <= 0 )
112     {
113         block_Release( p_block );
114         return NULL;
115     }
116
117     if( p_block->pf_release != BlockRelease )
118     {
119         /* Special case when pf_release if overloaded
120          * TODO if used one day, then implement it in a smarter way */
121         block_t *p_dup = block_Duplicate( p_block );
122         block_Release( p_block );
123         if( !p_dup )
124             return NULL;
125
126         p_block = p_dup;
127     }
128
129     /* Adjust reserved header if there is enough room */
130     if( p_block->p_buffer - i_prebody > p_sys->p_allocated_buffer &&
131         p_block->p_buffer - i_prebody < p_sys->p_allocated_buffer +
132         p_sys->i_allocated_buffer )
133     {
134         p_block->p_buffer -= i_prebody;
135         p_block->i_buffer += i_prebody;
136         i_prebody = 0;
137     }
138
139     /* Adjust payload size if there is enough room */
140     if( p_block->p_buffer + i_body < p_sys->p_allocated_buffer +
141         p_sys->i_allocated_buffer )
142     {
143         p_block->i_buffer = i_buffer_size;
144         i_body = 0;
145     }
146
147     /* Not enough room, reallocate the buffer */
148     if( i_body > 0 || i_prebody > 0 )
149     {
150         /* FIXME: this is really dumb, we should use realloc() */
151         block_t *p_rea = block_New( NULL, i_buffer_size );
152
153         if( p_rea )
154         {
155             p_rea->i_dts     = p_block->i_dts;
156             p_rea->i_pts     = p_block->i_pts;
157             p_rea->i_flags   = p_block->i_flags;
158             p_rea->i_length  = p_block->i_length;
159             p_rea->i_rate    = p_block->i_rate;
160             p_rea->i_samples = p_block->i_samples;
161
162             memcpy( p_rea->p_buffer + i_prebody, p_block->p_buffer,
163                     __MIN( p_block->i_buffer, p_rea->i_buffer - i_prebody ) );
164         }
165
166         block_Release( p_block );
167
168         return p_rea;
169     }
170
171     /* We have a very large reserved footer now? Release some of it. */
172     if ((p_sys->p_allocated_buffer + p_sys->i_allocated_buffer) -
173         (p_block->p_buffer + p_block->i_buffer) > BLOCK_WASTE_SIZE)
174     {
175         const size_t news = p_block->i_buffer + 2 * BLOCK_PADDING_SIZE + 16;
176         block_sys_t *newb = realloc (p_sys, sizeof (*p_sys) + news);
177
178         if (newb != NULL)
179         {
180             p_sys = newb;
181             p_sys->i_allocated_buffer = news;
182             p_block = &p_sys->self;
183             p_block->p_buffer = p_sys->p_allocated_buffer + BLOCK_PADDING_SIZE
184                 + BLOCK_ALIGN
185                 - ((uintptr_t)p_sys->p_allocated_buffer % BLOCK_ALIGN);
186         }
187     }
188
189     return p_block;
190 }
191
192 #ifdef HAVE_MMAP
193 # include <sys/mman.h>
194
195 typedef struct block_mmap_t
196 {
197     block_t     self;
198     void       *base_addr;
199     size_t      length;
200 } block_mmap_t;
201
202 static void block_mmap_Release (block_t *block)
203 {
204     block_mmap_t *p_sys = (block_mmap_t *)block;
205
206     munmap (p_sys->base_addr, p_sys->length);
207     free (p_sys);
208 }
209
210 /**
211  * Creates a block from a virtual address memory mapping (mmap).
212  * This is provided by LibVLC so that mmap blocks can safely be deallocated
213  * even after the allocating plugin has been unloaded from memory.
214  *
215  * @param addr base address of the mapping (as returned by mmap)
216  * @param length length (bytes) of the mapping (as passed to mmap)
217  * @return NULL if addr is MAP_FAILED, or an error occurred (in the later
218  * case, munmap(addr, length) is invoked before returning).
219  */
220 block_t *block_mmap_Alloc (void *addr, size_t length)
221 {
222     if (addr == MAP_FAILED)
223         return NULL;
224
225     block_mmap_t *block = malloc (sizeof (*block));
226     if (block == NULL)
227     {
228         munmap (addr, length);
229         return NULL;
230     }
231
232     block_Init (&block->self, (uint8_t *)addr, length);
233     block->self.pf_release = block_mmap_Release;
234     block->base_addr = addr;
235     block->length = length;
236     return &block->self;
237 }
238 #else
239 block_t *block_mmap_Alloc (void *addr, size_t length)
240 {
241     (void)addr; (void)length; return NULL;
242 }
243 #endif
244
245
246 #ifdef WIN32
247 static
248 ssize_t pread (int fd, void *buf, size_t count, off_t offset)
249 {
250     HANDLE handle = (HANDLE)(intptr_t)_get_osfhandle (fd);
251     if (handle == INVALID_HANDLE_VALUE)
252         return -1;
253
254     OVERLAPPED olap = { .Offset = offset, .OffsetHigh = (offset >> 32), };
255     DWORD written;
256     /* This braindead API will override the file pointer even if we specify
257      * an explicit read offset... So do not expect this to mix well with
258      * regular read() calls. */
259     if (ReadFile (handle, buf, count, &written, &olap))
260         return written;
261     return -1;
262 }
263 #endif
264
265 /**
266  * Loads a file into a block of memory. If possible a private file mapping is
267  * created. Otherwise, the file is read normally. On 32-bits platforms, this
268  * function will not work for very large files, due to memory space
269  * constraints.
270  *
271  * @param fd file descriptor to load from
272  * @return a new block with the file content at p_buffer, and file length at
273  * i_buffer (release it with block_Release()), or NULL upon error (see errno).
274  */
275 block_t *block_File (int fd)
276 {
277     size_t length;
278     struct stat st;
279
280     /* First, get the file size */
281     if (fstat (fd, &st))
282         return NULL;
283
284     /* st_size is meaningful for regular files, shared memory and typed memory.
285      * It's also meaning for symlinks, but that's not possible with fstat().
286      * In other cases, it's undefined, and we should really not go further. */
287 #ifndef S_TYPEISSHM
288 # define S_TYPEISSHM( buf ) (0)
289 #endif
290     if (S_ISDIR (st.st_mode))
291     {
292         errno = EISDIR;
293         return NULL;
294     }
295     if (!S_ISREG (st.st_mode) && !S_TYPEISSHM (&st))
296     {
297         errno = ESPIPE;
298         return NULL;
299     }
300
301     /* Prevent an integer overflow in mmap() and malloc() */
302     if (st.st_size >= SIZE_MAX)
303     {
304         errno = ENOMEM;
305         return NULL;
306     }
307     length = (size_t)st.st_size;
308
309 #ifdef HAVE_MMAP
310     if (length > 0)
311     {
312         void *addr;
313
314         addr = mmap (NULL, length, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
315         if (addr != MAP_FAILED)
316             return block_mmap_Alloc (addr, length);
317     }
318 #endif
319
320     /* If mmap() is not implemented by the OS _or_ the filesystem... */
321     block_t *block = block_Alloc (length);
322     if (block == NULL)
323         return NULL;
324
325     for (size_t i = 0; i < length;)
326     {
327         ssize_t len = pread (fd, block->p_buffer + i, length - i, i);
328         if (len == -1)
329         {
330             block_Release (block);
331             return NULL;
332         }
333         i += len;
334     }
335     return block;
336 }
337
338 /*****************************************************************************
339  * block_fifo_t management
340  *****************************************************************************/
341 struct block_fifo_t
342 {
343     vlc_mutex_t         lock;                         /* fifo data lock */
344     vlc_cond_t          wait;         /* fifo data conditional variable */
345
346     block_t             *p_first;
347     block_t             **pp_last;
348     size_t              i_depth;
349     size_t              i_size;
350     bool          b_force_wake;
351 };
352
353 block_fifo_t *block_FifoNew( void )
354 {
355     block_fifo_t *p_fifo = malloc( sizeof( block_fifo_t ) );
356     if( !p_fifo )
357         return NULL;
358
359     vlc_mutex_init( &p_fifo->lock );
360     vlc_cond_init( NULL, &p_fifo->wait );
361     p_fifo->p_first = NULL;
362     p_fifo->pp_last = &p_fifo->p_first;
363     p_fifo->i_depth = p_fifo->i_size = 0;
364     p_fifo->b_force_wake = false;
365
366     return p_fifo;
367 }
368
369 void block_FifoRelease( block_fifo_t *p_fifo )
370 {
371     block_FifoEmpty( p_fifo );
372     vlc_cond_destroy( &p_fifo->wait );
373     vlc_mutex_destroy( &p_fifo->lock );
374     free( p_fifo );
375 }
376
377 void block_FifoEmpty( block_fifo_t *p_fifo )
378 {
379     block_t *b;
380
381     vlc_mutex_lock( &p_fifo->lock );
382     for( b = p_fifo->p_first; b != NULL; )
383     {
384         block_t *p_next;
385
386         p_next = b->p_next;
387         block_Release( b );
388         b = p_next;
389     }
390
391     p_fifo->i_depth = p_fifo->i_size = 0;
392     p_fifo->p_first = NULL;
393     p_fifo->pp_last = &p_fifo->p_first;
394     vlc_mutex_unlock( &p_fifo->lock );
395 }
396
397 size_t block_FifoPut( block_fifo_t *p_fifo, block_t *p_block )
398 {
399     size_t i_size = 0;
400     vlc_mutex_lock( &p_fifo->lock );
401
402     do
403     {
404         i_size += p_block->i_buffer;
405
406         *p_fifo->pp_last = p_block;
407         p_fifo->pp_last = &p_block->p_next;
408         p_fifo->i_depth++;
409         p_fifo->i_size += p_block->i_buffer;
410
411         p_block = p_block->p_next;
412
413     } while( p_block );
414
415     /* warn there is data in this fifo */
416     vlc_cond_signal( &p_fifo->wait );
417     vlc_mutex_unlock( &p_fifo->lock );
418
419     return i_size;
420 }
421
422 void block_FifoWake( block_fifo_t *p_fifo )
423 {
424     vlc_mutex_lock( &p_fifo->lock );
425     if( p_fifo->p_first == NULL )
426         p_fifo->b_force_wake = true;
427     vlc_cond_signal( &p_fifo->wait );
428     vlc_mutex_unlock( &p_fifo->lock );
429 }
430
431 block_t *block_FifoGet( block_fifo_t *p_fifo )
432 {
433     block_t *b;
434
435     vlc_mutex_lock( &p_fifo->lock );
436
437     /* Remember vlc_cond_wait() may cause spurious wakeups
438      * (on both Win32 and POSIX) */
439     while( ( p_fifo->p_first == NULL ) && !p_fifo->b_force_wake )
440     {
441         vlc_cond_wait( &p_fifo->wait, &p_fifo->lock );
442     }
443
444     b = p_fifo->p_first;
445
446     p_fifo->b_force_wake = false;
447     if( b == NULL )
448     {
449         /* Forced wakeup */
450         vlc_mutex_unlock( &p_fifo->lock );
451         return NULL;
452     }
453
454     p_fifo->p_first = b->p_next;
455     p_fifo->i_depth--;
456     p_fifo->i_size -= b->i_buffer;
457
458     if( p_fifo->p_first == NULL )
459     {
460         p_fifo->pp_last = &p_fifo->p_first;
461     }
462
463     vlc_mutex_unlock( &p_fifo->lock );
464
465     b->p_next = NULL;
466     return b;
467 }
468
469 block_t *block_FifoShow( block_fifo_t *p_fifo )
470 {
471     block_t *b;
472
473     vlc_mutex_lock( &p_fifo->lock );
474
475     if( p_fifo->p_first == NULL )
476     {
477         vlc_cond_wait( &p_fifo->wait, &p_fifo->lock );
478     }
479
480     b = p_fifo->p_first;
481
482     vlc_mutex_unlock( &p_fifo->lock );
483
484     return( b );
485 }
486
487 size_t block_FifoSize( const block_fifo_t *p_fifo )
488 {
489     return p_fifo->i_size;
490 }
491
492 size_t block_FifoCount( const block_fifo_t *p_fifo )
493 {
494     return p_fifo->i_depth;
495 }