]> git.sesse.net Git - vlc/blob - src/input/stream.c
567c11593e929f9617cb729bf6642f08814654b4
[vlc] / src / input / stream.c
1 /*****************************************************************************
2  * stream.c
3  *****************************************************************************
4  * Copyright (C) 1999-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
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 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <vlc_common.h>
29
30 #include <assert.h>
31
32 #include "input_internal.h"
33
34 #undef STREAM_DEBUG
35
36 /* TODO:
37  *  - tune the 2 methods (block/stream)
38  *  - compute cost for seek
39  *  - improve stream mode seeking with closest segments
40  *  - ...
41  *  - Maybe remove (block/stream) in favour of immediate
42  */
43
44 /* Two methods:
45  *  - using pf_block
46  *      One linked list of data read
47  *  - using pf_read
48  *      More complex scheme using mutliple track to avoid seeking
49  *  - using directly the access (only indirection for peeking).
50  *      This method is known to introduce much less latency.
51  *      It should probably defaulted (instead of the stream method (2)).
52  */
53
54 /* How many tracks we have, currently only used for stream mode */
55 #ifdef OPTIMIZE_MEMORY
56 #   define STREAM_CACHE_TRACK 1
57     /* Max size of our cache 128Ko per track */
58 #   define STREAM_CACHE_SIZE  (STREAM_CACHE_TRACK*1024*128)
59 #else
60 #   define STREAM_CACHE_TRACK 3
61     /* Max size of our cache 4Mo per track */
62 #   define STREAM_CACHE_SIZE  (4*STREAM_CACHE_TRACK*1024*1024)
63 #endif
64
65 /* How many data we try to prebuffer */
66 #define STREAM_CACHE_PREBUFFER_SIZE (32767)
67 /* Maximum time we take to pre-buffer */
68 #define STREAM_CACHE_PREBUFFER_LENGTH (100*1000)
69
70 /* Method1: Simple, for pf_block.
71  *  We get blocks and put them in the linked list.
72  *  We release blocks once the total size is bigger than CACHE_BLOCK_SIZE
73  */
74 #define STREAM_DATA_WAIT 40000       /* Time between before a pf_block retry */
75
76 /* Method2: A bit more complex, for pf_read
77  *  - We use ring buffers, only one if unseekable, all if seekable
78  *  - Upon seek date current ring, then search if one ring match the pos,
79  *      yes: switch to it, seek the access to match the end of the ring
80  *      no: search the ring with i_end the closer to i_pos,
81  *          if close enough, read data and use this ring
82  *          else use the oldest ring, seek and use it.
83  *
84  *  TODO: - with access non seekable: use all space available for only one ring, but
85  *          we have to support seekable/non-seekable switch on the fly.
86  *        - compute a good value for i_read_size
87  *        - ?
88  */
89 #define STREAM_READ_ATONCE 32767
90 #define STREAM_CACHE_TRACK_SIZE (STREAM_CACHE_SIZE/STREAM_CACHE_TRACK)
91
92 typedef struct
93 {
94     int64_t i_date;
95
96     int64_t i_start;
97     int64_t i_end;
98
99     uint8_t *p_buffer;
100
101 } stream_track_t;
102
103 typedef struct
104 {
105     char     *psz_path;
106     int64_t  i_size;
107
108 } access_entry_t;
109
110 typedef enum stream_read_method_t
111 {
112     Immediate,
113     Block,
114     Stream
115 } stream_read_method_t;
116
117 struct stream_sys_t
118 {
119     access_t    *p_access;
120
121     stream_read_method_t   method;    /* method to use */
122
123     int64_t     i_pos;      /* Current reading offset */
124
125     /* Method 1: pf_block */
126     struct
127     {
128         int64_t i_start;        /* Offset of block for p_first */
129         int     i_offset;       /* Offset for data in p_current */
130         block_t *p_current;     /* Current block */
131
132         int     i_size;         /* Total amount of data in the list */
133         block_t *p_first;
134         block_t **pp_last;
135
136     } block;
137
138     /* Method 2: for pf_read */
139     struct
140     {
141         int i_offset;   /* Buffer offset in the current track */
142         int i_tk;       /* Current track */
143         stream_track_t tk[STREAM_CACHE_TRACK];
144
145         /* Global buffer */
146         uint8_t *p_buffer;
147
148         /* */
149         int i_used; /* Used since last read */
150         int i_read_size;
151
152     } stream;
153
154     /* Method 3: for pf_read */
155     struct
156     {
157         int64_t i_end;
158         uint8_t *p_buffer;
159     } immediate;
160
161     /* Peek temporary buffer */
162     int     i_peek;
163     uint8_t *p_peek;
164
165     /* Stat for both method */
166     struct
167     {
168         bool b_fastseek;  /* From access */
169
170         /* Stat about reading data */
171         int64_t i_read_count;
172         int64_t i_bytes;
173         int64_t i_read_time;
174
175         /* Stat about seek */
176         int     i_seek_count;
177         int64_t i_seek_time;
178
179     } stat;
180
181     /* Streams list */
182     int            i_list;
183     access_entry_t **list;
184     int            i_list_index;
185     access_t       *p_list_access;
186
187     /* Preparse mode ? */
188     bool      b_quick;
189 };
190
191 /* Method 1: */
192 static int  AStreamReadBlock( stream_t *s, void *p_read, int i_read );
193 static int  AStreamPeekBlock( stream_t *s, const uint8_t **p_peek, int i_read );
194 static int  AStreamSeekBlock( stream_t *s, int64_t i_pos );
195 static void AStreamPrebufferBlock( stream_t *s );
196 static block_t *AReadBlock( stream_t *s, bool *pb_eof );
197
198 /* Method 2 */
199 static int  AStreamReadStream( stream_t *s, void *p_read, int i_read );
200 static int  AStreamPeekStream( stream_t *s, const uint8_t **pp_peek, int i_read );
201 static int  AStreamSeekStream( stream_t *s, int64_t i_pos );
202 static void AStreamPrebufferStream( stream_t *s );
203 static int  AReadStream( stream_t *s, void *p_read, int i_read );
204
205 /* Method 3 */
206 static int  AStreamReadImmediate( stream_t *s, void *p_read, int i_read );
207 static int  AStreamPeekImmediate( stream_t *s, const uint8_t **pp_peek, int i_read );
208 static int  AStreamSeekImmediate( stream_t *s, int64_t i_pos );
209
210 /* Common */
211 static int AStreamControl( stream_t *s, int i_query, va_list );
212 static void AStreamDestroy( stream_t *s );
213 static void UStreamDestroy( stream_t *s );
214 static int  ASeek( stream_t *s, int64_t i_pos );
215
216 /****************************************************************************
217  * Method 3 helpers:
218  ****************************************************************************/
219
220 static inline int64_t stream_buffered_size( stream_t *s )
221 {
222     return s->p_sys->immediate.i_end;
223 }
224
225 static inline void stream_buffer_empty( stream_t *s, int length )
226 {
227     length = __MAX( stream_buffered_size( s ), length );
228     if( length )
229     {
230         memmove( s->p_sys->immediate.p_buffer,
231                  s->p_sys->immediate.p_buffer + length,
232                  stream_buffered_size( s ) - length );
233     }
234     s->p_sys->immediate.i_end -= length;
235 }
236
237 static inline void stream_buffer_fill( stream_t *s, int length )
238 {
239     s->p_sys->immediate.i_end += length;
240 }
241
242 static inline uint8_t * stream_buffer( stream_t *s )
243 {
244     return s->p_sys->immediate.p_buffer;
245 }
246
247 /****************************************************************************
248  * stream_UrlNew: create a stream from a access
249  ****************************************************************************/
250 stream_t *__stream_UrlNew( vlc_object_t *p_parent, const char *psz_url )
251 {
252     const char *psz_access, *psz_demux;
253     char *psz_path;
254     access_t *p_access;
255     stream_t *p_res;
256
257     if( !psz_url ) return 0;
258
259     char psz_dup[strlen (psz_url) + 1];
260     strcpy (psz_dup, psz_url);;
261     MRLSplit( psz_dup, &psz_access, &psz_demux, &psz_path );
262
263     /* Now try a real access */
264     p_access = access_New( p_parent, psz_access, psz_demux, psz_path );
265
266     if( p_access == NULL )
267     {
268         msg_Err( p_parent, "no suitable access module for `%s'", psz_url );
269         return NULL;
270     }
271
272     if( !( p_res = stream_AccessNew( p_access, true ) ) )
273     {
274         access_Delete( p_access );
275         return NULL;
276     }
277
278     p_res->pf_destroy = UStreamDestroy;
279     return p_res;
280 }
281
282 stream_t *stream_AccessNew( access_t *p_access, bool b_quick )
283 {
284     stream_t *s = vlc_stream_create( VLC_OBJECT(p_access) );
285     stream_sys_t *p_sys;
286     char *psz_list = NULL;
287
288     if( !s ) return NULL;
289
290     /* Attach it now, needed for b_die */
291     vlc_object_attach( s, p_access );
292
293     s->pf_read   = NULL;    /* Set up later */
294     s->pf_peek   = NULL;
295     s->pf_control = AStreamControl;
296     s->pf_destroy = AStreamDestroy;
297
298     s->p_sys = p_sys = malloc( sizeof( stream_sys_t ) );
299     if( p_sys == NULL )
300         goto error;
301
302     /* UTF16 and UTF32 text file conversion */
303     s->i_char_width = 1;
304     s->b_little_endian = false;
305     s->conv = (vlc_iconv_t)(-1);
306
307     /* Common field */
308     p_sys->p_access = p_access;
309     if( p_access->pf_block )
310         p_sys->method = Block;
311     else if (var_CreateGetBool( s, "use-stream-immediate"))
312         p_sys->method = Immediate;
313     else
314         p_sys->method = Stream;
315
316     p_sys->i_pos = p_access->info.i_pos;
317
318     /* Stats */
319     access_Control( p_access, ACCESS_CAN_FASTSEEK, &p_sys->stat.b_fastseek );
320     p_sys->stat.i_bytes = 0;
321     p_sys->stat.i_read_time = 0;
322     p_sys->stat.i_read_count = 0;
323     p_sys->stat.i_seek_count = 0;
324     p_sys->stat.i_seek_time = 0;
325
326     p_sys->i_list = 0;
327     p_sys->list = 0;
328     p_sys->i_list_index = 0;
329     p_sys->p_list_access = 0;
330
331     p_sys->b_quick = b_quick;
332
333     /* Get the additional list of inputs if any (for concatenation) */
334     if( (psz_list = var_CreateGetString( s, "input-list" )) && *psz_list )
335     {
336         access_entry_t *p_entry = malloc( sizeof(access_entry_t) );
337         if( p_entry == NULL )
338             goto error;
339         char *psz_name, *psz_parser = psz_name = psz_list;
340
341         p_sys->p_list_access = p_access;
342         p_entry->i_size = p_access->info.i_size;
343         p_entry->psz_path = strdup( p_access->psz_path );
344         if( p_entry->psz_path == NULL )
345         {
346             free( p_entry );
347             goto error;
348         }
349         TAB_APPEND( p_sys->i_list, p_sys->list, p_entry );
350         msg_Dbg( p_access, "adding file `%s', (%"PRId64" bytes)",
351                  p_entry->psz_path, p_access->info.i_size );
352
353         while( psz_name && *psz_name )
354         {
355             psz_parser = strchr( psz_name, ',' );
356             if( psz_parser ) *psz_parser = 0;
357
358             psz_name = strdup( psz_name );
359             if( psz_name )
360             {
361                 access_t *p_tmp = access_New( p_access, p_access->psz_access,
362                                                "", psz_name );
363
364                 if( !p_tmp )
365                 {
366                     psz_name = psz_parser;
367                     if( psz_name ) psz_name++;
368                     continue;
369                 }
370
371                 msg_Dbg( p_access, "adding file `%s', (%"PRId64" bytes)",
372                          psz_name, p_tmp->info.i_size );
373
374                 p_entry = malloc( sizeof(access_entry_t) );
375                 if( p_entry == NULL )
376                     goto error;
377                 p_entry->i_size = p_tmp->info.i_size;
378                 p_entry->psz_path = psz_name;
379                 TAB_APPEND( p_sys->i_list, p_sys->list, p_entry );
380
381                 access_Delete( p_tmp );
382             }
383
384             psz_name = psz_parser;
385             if( psz_name ) psz_name++;
386         }
387     }
388     FREENULL( psz_list );
389
390     /* Peek */
391     p_sys->i_peek = 0;
392     p_sys->p_peek = NULL;
393
394     if( p_sys->method == Block )
395     {
396         msg_Dbg( s, "Using AStream*Block" );
397         s->pf_read = AStreamReadBlock;
398         s->pf_peek = AStreamPeekBlock;
399
400         /* Init all fields of p_sys->block */
401         p_sys->block.i_start = p_sys->i_pos;
402         p_sys->block.i_offset = 0;
403         p_sys->block.p_current = NULL;
404         p_sys->block.i_size = 0;
405         p_sys->block.p_first = NULL;
406         p_sys->block.pp_last = &p_sys->block.p_first;
407
408         /* Do the prebuffering */
409         AStreamPrebufferBlock( s );
410
411         if( p_sys->block.i_size <= 0 )
412         {
413             msg_Err( s, "cannot pre fill buffer" );
414             goto error;
415         }
416     }
417     else if (p_sys->method == Immediate)
418     {
419         msg_Dbg( s, "Using AStream*Immediate" );
420
421         s->pf_read = AStreamReadImmediate;
422         s->pf_peek = AStreamPeekImmediate;
423
424         /* Allocate/Setup our tracks (useful to peek)*/
425         p_sys->immediate.i_end = 0;
426         p_sys->immediate.p_buffer = malloc( STREAM_CACHE_SIZE );
427
428         msg_Dbg( s, "p_buffer %p-%p", p_sys->immediate.p_buffer,
429                 p_sys->immediate.p_buffer + STREAM_CACHE_SIZE );
430
431         if( p_sys->immediate.p_buffer == NULL )
432         {
433             msg_Err( s, "Out of memory when allocating stream cache (%d bytes)",
434                         STREAM_CACHE_SIZE );
435             goto error;
436         }
437     }
438     else /* ( p_sys->method == Stream ) */
439     {
440         int i;
441
442         msg_Dbg( s, "Using AStream*Stream" );
443
444         s->pf_read = AStreamReadStream;
445         s->pf_peek = AStreamPeekStream;
446
447         /* Allocate/Setup our tracks */
448         p_sys->stream.i_offset = 0;
449         p_sys->stream.i_tk     = 0;
450         p_sys->stream.p_buffer = malloc( STREAM_CACHE_SIZE );
451         if( p_sys->stream.p_buffer == NULL )
452         {
453             msg_Err( s, "Out of memory when allocating stream cache (%d bytes)",
454                         STREAM_CACHE_SIZE );
455             goto error;
456         }
457         p_sys->stream.i_used   = 0;
458         access_Control( p_access, ACCESS_GET_MTU,
459                          &p_sys->stream.i_read_size );
460         if( p_sys->stream.i_read_size <= 0 )
461             p_sys->stream.i_read_size = STREAM_READ_ATONCE;
462         else if( p_sys->stream.i_read_size <= 256 )
463             p_sys->stream.i_read_size = 256;
464
465         for( i = 0; i < STREAM_CACHE_TRACK; i++ )
466         {
467             p_sys->stream.tk[i].i_date  = 0;
468             p_sys->stream.tk[i].i_start = p_sys->i_pos;
469             p_sys->stream.tk[i].i_end   = p_sys->i_pos;
470             p_sys->stream.tk[i].p_buffer=
471                 &p_sys->stream.p_buffer[i * STREAM_CACHE_TRACK_SIZE];
472         }
473
474         /* Do the prebuffering */
475         AStreamPrebufferStream( s );
476
477         if( p_sys->stream.tk[p_sys->stream.i_tk].i_end <= 0 )
478         {
479             msg_Err( s, "cannot pre fill buffer" );
480             goto error;
481         }
482     }
483
484     return s;
485
486 error:
487     if( p_sys->method == Block )
488     {
489         /* Nothing yet */
490     }
491     else
492     {
493         free( p_sys->stream.p_buffer );
494     }
495     while( p_sys->i_list > 0 )
496         free( p_sys->list[--(p_sys->i_list)] );
497     free( p_sys->list );
498     free( psz_list );
499     free( s->p_sys );
500     vlc_object_detach( s );
501     vlc_object_release( s );
502     return NULL;
503 }
504
505 /****************************************************************************
506  * AStreamDestroy:
507  ****************************************************************************/
508 static void AStreamDestroy( stream_t *s )
509 {
510     stream_sys_t *p_sys = s->p_sys;
511
512     vlc_object_detach( s );
513
514     if( p_sys->method == Block ) block_ChainRelease( p_sys->block.p_first );
515     else free( p_sys->stream.p_buffer );
516
517     free( p_sys->p_peek );
518
519     if( p_sys->p_list_access && p_sys->p_list_access != p_sys->p_access )
520         access_Delete( p_sys->p_list_access );
521
522     while( p_sys->i_list-- )
523     {
524         free( p_sys->list[p_sys->i_list]->psz_path );
525         free( p_sys->list[p_sys->i_list] );
526     }
527
528     free( p_sys->list );
529     free( p_sys );
530
531     vlc_object_release( s );
532 }
533
534 static void UStreamDestroy( stream_t *s )
535 {
536     access_t *p_access = (access_t *)s->p_parent;
537     AStreamDestroy( s );
538     access_Delete( p_access );
539 }
540
541 /****************************************************************************
542  * stream_AccessReset:
543  ****************************************************************************/
544 void stream_AccessReset( stream_t *s )
545 {
546     stream_sys_t *p_sys = s->p_sys;
547
548     p_sys->i_pos = p_sys->p_access->info.i_pos;
549
550     if( p_sys->method == Block )
551     {
552         block_ChainRelease( p_sys->block.p_first );
553
554         /* Init all fields of p_sys->block */
555         p_sys->block.i_start = p_sys->i_pos;
556         p_sys->block.i_offset = 0;
557         p_sys->block.p_current = NULL;
558         p_sys->block.i_size = 0;
559         p_sys->block.p_first = NULL;
560         p_sys->block.pp_last = &p_sys->block.p_first;
561
562         /* Do the prebuffering */
563         AStreamPrebufferBlock( s );
564     }
565     else if( p_sys->method == Immediate )
566     {
567         stream_buffer_empty( s, stream_buffered_size( s ) );
568     }
569     else /* ( p_sys->method == Stream ) */
570     {
571         int i;
572
573         /* Setup our tracks */
574         p_sys->stream.i_offset = 0;
575         p_sys->stream.i_tk     = 0;
576         p_sys->stream.i_used   = 0;
577
578         for( i = 0; i < STREAM_CACHE_TRACK; i++ )
579         {
580             p_sys->stream.tk[i].i_date  = 0;
581             p_sys->stream.tk[i].i_start = p_sys->i_pos;
582             p_sys->stream.tk[i].i_end   = p_sys->i_pos;
583         }
584
585         /* Do the prebuffering */
586         AStreamPrebufferStream( s );
587     }
588 }
589
590 /****************************************************************************
591  * stream_AccessUpdate:
592  ****************************************************************************/
593 void stream_AccessUpdate( stream_t *s )
594 {
595     stream_sys_t *p_sys = s->p_sys;
596
597     p_sys->i_pos = p_sys->p_access->info.i_pos;
598
599     if( p_sys->i_list )
600     {
601         int i;
602         for( i = 0; i < p_sys->i_list_index; i++ )
603         {
604             p_sys->i_pos += p_sys->list[i]->i_size;
605         }
606     }
607 }
608
609 /****************************************************************************
610  * AStreamControl:
611  ****************************************************************************/
612 static int AStreamControl( stream_t *s, int i_query, va_list args )
613 {
614     stream_sys_t *p_sys = s->p_sys;
615     access_t     *p_access = p_sys->p_access;
616
617     bool *p_bool;
618     int64_t    *pi_64, i_64;
619     int        i_int;
620
621     switch( i_query )
622     {
623         case STREAM_GET_SIZE:
624             pi_64 = (int64_t*)va_arg( args, int64_t * );
625             if( s->p_sys->i_list )
626             {
627                 int i;
628                 *pi_64 = 0;
629                 for( i = 0; i < s->p_sys->i_list; i++ )
630                     *pi_64 += s->p_sys->list[i]->i_size;
631                 break;
632             }
633             *pi_64 = p_access->info.i_size;
634             break;
635
636         case STREAM_CAN_SEEK:
637             p_bool = (bool*)va_arg( args, bool * );
638             access_Control( p_access, ACCESS_CAN_SEEK, p_bool );
639             break;
640
641         case STREAM_CAN_FASTSEEK:
642             p_bool = (bool*)va_arg( args, bool * );
643             access_Control( p_access, ACCESS_CAN_FASTSEEK, p_bool );
644             break;
645
646         case STREAM_GET_POSITION:
647             pi_64 = (int64_t*)va_arg( args, int64_t * );
648             *pi_64 = p_sys->i_pos;
649             break;
650
651         case STREAM_SET_POSITION:
652             i_64 = (int64_t)va_arg( args, int64_t );
653             if( p_sys->method == Block )
654                 return AStreamSeekBlock( s, i_64 );
655             else if( p_sys->method == Immediate )
656                 return AStreamSeekImmediate( s, i_64 );
657             else /* ( p_sys->method == Stream ) */
658                 return AStreamSeekStream( s, i_64 );
659
660         case STREAM_GET_MTU:
661             return VLC_EGENERIC;
662
663         case STREAM_CONTROL_ACCESS:
664             i_int = (int) va_arg( args, int );
665             if( i_int != ACCESS_SET_PRIVATE_ID_STATE &&
666                 i_int != ACCESS_SET_PRIVATE_ID_CA &&
667                 i_int != ACCESS_GET_PRIVATE_ID_STATE )
668             {
669                 msg_Err( s, "Hey, what are you thinking ?"
670                             "DON'T USE STREAM_CONTROL_ACCESS !!!" );
671                 return VLC_EGENERIC;
672             }
673             return access_vaControl( p_access, i_int, args );
674
675         case STREAM_GET_CONTENT_TYPE:
676             return access_Control( p_access, ACCESS_GET_CONTENT_TYPE,
677                                     va_arg( args, char ** ) );
678
679         default:
680             msg_Err( s, "invalid stream_vaControl query=0x%x", i_query );
681             return VLC_EGENERIC;
682     }
683     return VLC_SUCCESS;
684 }
685
686
687
688 /****************************************************************************
689  * Method 1:
690  ****************************************************************************/
691 static void AStreamPrebufferBlock( stream_t *s )
692 {
693     stream_sys_t *p_sys = s->p_sys;
694     access_t     *p_access = p_sys->p_access;
695
696     int64_t i_first = 0;
697     int64_t i_start;
698
699     msg_Dbg( s, "pre buffering" );
700     i_start = mdate();
701     for( ;; )
702     {
703         int64_t i_date = mdate();
704         bool b_eof;
705         block_t *b;
706
707         if( s->b_die || p_sys->block.i_size > STREAM_CACHE_PREBUFFER_SIZE ||
708             ( i_first > 0 && i_first + STREAM_CACHE_PREBUFFER_LENGTH < i_date ) )
709         {
710             int64_t i_byterate;
711
712             /* Update stat */
713             p_sys->stat.i_bytes = p_sys->block.i_size;
714             p_sys->stat.i_read_time = i_date - i_start;
715             i_byterate = ( INT64_C(1000000) * p_sys->stat.i_bytes ) /
716                          (p_sys->stat.i_read_time + 1);
717
718             msg_Dbg( s, "prebuffering done %"PRId64" bytes in %"PRId64"s - "
719                      "%"PRId64" kbytes/s",
720                      p_sys->stat.i_bytes,
721                      p_sys->stat.i_read_time / INT64_C(1000000),
722                      i_byterate / 1024 );
723             break;
724         }
725
726         /* Fetch a block */
727         if( ( b = AReadBlock( s, &b_eof ) ) == NULL )
728         {
729             if( b_eof ) break;
730
731             msleep( STREAM_DATA_WAIT );
732             continue;
733         }
734
735         while( b )
736         {
737             /* Append the block */
738             p_sys->block.i_size += b->i_buffer;
739             *p_sys->block.pp_last = b;
740             p_sys->block.pp_last = &b->p_next;
741
742             p_sys->stat.i_read_count++;
743             b = b->p_next;
744         }
745
746         if( p_access->info.b_prebuffered )
747         {
748             /* Access has already prebufferred - update stats and exit */
749             p_sys->stat.i_bytes = p_sys->block.i_size;
750             p_sys->stat.i_read_time = mdate() - i_start;
751             break;
752         }
753
754         if( i_first == 0 )
755         {
756             i_first = mdate();
757             msg_Dbg( s, "received first data for our buffer");
758         }
759
760     }
761
762     p_sys->block.p_current = p_sys->block.p_first;
763 }
764
765 static int AStreamRefillBlock( stream_t *s );
766
767 static int AStreamReadBlock( stream_t *s, void *p_read, int i_read )
768 {
769     stream_sys_t *p_sys = s->p_sys;
770
771     uint8_t *p_data= (uint8_t*)p_read;
772     int     i_data = 0;
773
774     /* It means EOF */
775     if( p_sys->block.p_current == NULL )
776         return 0;
777
778     if( p_read == NULL )
779     {
780         /* seek within this stream if possible, else use plain old read and discard */
781         stream_sys_t *p_sys = s->p_sys;
782         access_t     *p_access = p_sys->p_access;
783         bool   b_aseek;
784         access_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
785         if( b_aseek )
786             return AStreamSeekBlock( s, p_sys->i_pos + i_read ) ? 0 : i_read;
787     }
788
789     while( i_data < i_read )
790     {
791         int i_current =
792             p_sys->block.p_current->i_buffer - p_sys->block.i_offset;
793         int i_copy = __MIN( i_current, i_read - i_data);
794
795         /* Copy data */
796         if( p_data )
797         {
798             memcpy( p_data,
799                     &p_sys->block.p_current->p_buffer[p_sys->block.i_offset],
800                     i_copy );
801             p_data += i_copy;
802         }
803         i_data += i_copy;
804
805         p_sys->block.i_offset += i_copy;
806         if( p_sys->block.i_offset >= p_sys->block.p_current->i_buffer )
807         {
808             /* Current block is now empty, switch to next */
809             if( p_sys->block.p_current )
810             {
811                 p_sys->block.i_offset = 0;
812                 p_sys->block.p_current = p_sys->block.p_current->p_next;
813             }
814             /*Get a new block if needed */
815             if( !p_sys->block.p_current && AStreamRefillBlock( s ) )
816             {
817                 break;
818             }
819         }
820     }
821
822     p_sys->i_pos += i_data;
823     return i_data;
824 }
825
826 static int AStreamPeekBlock( stream_t *s, const uint8_t **pp_peek, int i_read )
827 {
828     stream_sys_t *p_sys = s->p_sys;
829     uint8_t *p_data;
830     int      i_data = 0;
831     block_t *b;
832     int      i_offset;
833
834     if( p_sys->block.p_current == NULL ) return 0; /* EOF */
835
836     /* We can directly give a pointer over our buffer */
837     if( i_read <= p_sys->block.p_current->i_buffer - p_sys->block.i_offset )
838     {
839         *pp_peek = &p_sys->block.p_current->p_buffer[p_sys->block.i_offset];
840         return i_read;
841     }
842
843     /* We need to create a local copy */
844     if( p_sys->i_peek < i_read )
845     {
846         p_sys->p_peek = realloc( p_sys->p_peek, i_read );
847         if( !p_sys->p_peek )
848         {
849             p_sys->i_peek = 0;
850             return 0;
851         }
852         p_sys->i_peek = i_read;
853     }
854
855     /* Fill enough data */
856     while( p_sys->block.i_size - (p_sys->i_pos - p_sys->block.i_start)
857            < i_read )
858     {
859         block_t **pp_last = p_sys->block.pp_last;
860
861         if( AStreamRefillBlock( s ) ) break;
862
863         /* Our buffer are probably filled enough, don't try anymore */
864         if( pp_last == p_sys->block.pp_last ) break;
865     }
866
867     /* Copy what we have */
868     b = p_sys->block.p_current;
869     i_offset = p_sys->block.i_offset;
870     p_data = p_sys->p_peek;
871
872     while( b && i_data < i_read )
873     {
874         int i_current = b->i_buffer - i_offset;
875         int i_copy = __MIN( i_current, i_read - i_data );
876
877         memcpy( p_data, &b->p_buffer[i_offset], i_copy );
878         i_data += i_copy;
879         p_data += i_copy;
880         i_offset += i_copy;
881
882         if( i_offset >= b->i_buffer )
883         {
884             i_offset = 0;
885             b = b->p_next;
886         }
887     }
888
889     *pp_peek = p_sys->p_peek;
890     return i_data;
891 }
892
893 static int AStreamSeekBlock( stream_t *s, int64_t i_pos )
894 {
895     stream_sys_t *p_sys = s->p_sys;
896     access_t   *p_access = p_sys->p_access;
897     int64_t    i_offset = i_pos - p_sys->block.i_start;
898     bool b_seek;
899
900     /* We already have thoses data, just update p_current/i_offset */
901     if( i_offset >= 0 && i_offset < p_sys->block.i_size )
902     {
903         block_t *b = p_sys->block.p_first;
904         int i_current = 0;
905
906         while( i_current + b->i_buffer < i_offset )
907         {
908             i_current += b->i_buffer;
909             b = b->p_next;
910         }
911
912         p_sys->block.p_current = b;
913         p_sys->block.i_offset = i_offset - i_current;
914
915         p_sys->i_pos = i_pos;
916
917         return VLC_SUCCESS;
918     }
919
920     /* We may need to seek or to read data */
921     if( i_offset < 0 )
922     {
923         bool b_aseek;
924         access_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
925
926         if( !b_aseek )
927         {
928             msg_Err( s, "backward seeking impossible (access not seekable)" );
929             return VLC_EGENERIC;
930         }
931
932         b_seek = true;
933     }
934     else
935     {
936         bool b_aseek, b_aseekfast;
937
938         access_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
939         access_Control( p_access, ACCESS_CAN_FASTSEEK, &b_aseekfast );
940
941         if( !b_aseek )
942         {
943             b_seek = false;
944             msg_Warn( s, "%"PRId64" bytes need to be skipped "
945                       "(access non seekable)",
946                       i_offset - p_sys->block.i_size );
947         }
948         else
949         {
950             int64_t i_skip = i_offset - p_sys->block.i_size;
951
952             /* Avg bytes per packets */
953             int i_avg = p_sys->stat.i_bytes / p_sys->stat.i_read_count;
954             /* TODO compute a seek cost instead of fixed threshold */
955             int i_th = b_aseekfast ? 1 : 5;
956
957             if( i_skip <= i_th * i_avg &&
958                 i_skip < STREAM_CACHE_SIZE )
959                 b_seek = false;
960             else
961                 b_seek = true;
962
963             msg_Dbg( s, "b_seek=%d th*avg=%d skip=%"PRId64,
964                      b_seek, i_th*i_avg, i_skip );
965         }
966     }
967
968     if( b_seek )
969     {
970         int64_t i_start, i_end;
971         /* Do the access seek */
972         i_start = mdate();
973         if( ASeek( s, i_pos ) ) return VLC_EGENERIC;
974         i_end = mdate();
975
976         /* Release data */
977         block_ChainRelease( p_sys->block.p_first );
978
979         /* Reinit */
980         p_sys->block.i_start = p_sys->i_pos = i_pos;
981         p_sys->block.i_offset = 0;
982         p_sys->block.p_current = NULL;
983         p_sys->block.i_size = 0;
984         p_sys->block.p_first = NULL;
985         p_sys->block.pp_last = &p_sys->block.p_first;
986
987         /* Refill a block */
988         if( AStreamRefillBlock( s ) )
989             return VLC_EGENERIC;
990
991         /* Update stat */
992         p_sys->stat.i_seek_time += i_end - i_start;
993         p_sys->stat.i_seek_count++;
994         return VLC_SUCCESS;
995     }
996     else
997     {
998         /* Read enough data */
999         while( p_sys->block.i_start + p_sys->block.i_size < i_pos )
1000         {
1001             if( AStreamRefillBlock( s ) )
1002                 return VLC_EGENERIC;
1003
1004             while( p_sys->block.p_current &&
1005                    p_sys->i_pos + p_sys->block.p_current->i_buffer < i_pos )
1006             {
1007                 p_sys->i_pos += p_sys->block.p_current->i_buffer;
1008                 p_sys->block.p_current = p_sys->block.p_current->p_next;
1009             }
1010         }
1011
1012         p_sys->block.i_offset = i_pos - p_sys->i_pos;
1013         p_sys->i_pos = i_pos;
1014
1015         return VLC_SUCCESS;
1016     }
1017
1018     return VLC_EGENERIC;
1019 }
1020
1021 static int AStreamRefillBlock( stream_t *s )
1022 {
1023     stream_sys_t *p_sys = s->p_sys;
1024     int64_t      i_start, i_stop;
1025     block_t      *b;
1026
1027     /* Release data */
1028     while( p_sys->block.i_size >= STREAM_CACHE_SIZE &&
1029            p_sys->block.p_first != p_sys->block.p_current )
1030     {
1031         block_t *b = p_sys->block.p_first;
1032
1033         p_sys->block.i_start += b->i_buffer;
1034         p_sys->block.i_size  -= b->i_buffer;
1035         p_sys->block.p_first  = b->p_next;
1036
1037         block_Release( b );
1038     }
1039     if( p_sys->block.i_size >= STREAM_CACHE_SIZE &&
1040         p_sys->block.p_current == p_sys->block.p_first &&
1041         p_sys->block.p_current->p_next )    /* At least 2 packets */
1042     {
1043         /* Enough data, don't read more */
1044         return VLC_SUCCESS;
1045     }
1046
1047     /* Now read a new block */
1048     i_start = mdate();
1049     for( ;; )
1050     {
1051         bool b_eof;
1052
1053         if( s->b_die ) return VLC_EGENERIC;
1054
1055
1056         /* Fetch a block */
1057         if( ( b = AReadBlock( s, &b_eof ) ) ) break;
1058
1059         if( b_eof ) return VLC_EGENERIC;
1060
1061         msleep( STREAM_DATA_WAIT );
1062     }
1063
1064     while( b )
1065     {
1066         i_stop = mdate();
1067
1068         /* Append the block */
1069         p_sys->block.i_size += b->i_buffer;
1070         *p_sys->block.pp_last = b;
1071         p_sys->block.pp_last = &b->p_next;
1072
1073         /* Fix p_current */
1074         if( p_sys->block.p_current == NULL )
1075             p_sys->block.p_current = b;
1076
1077         /* Update stat */
1078         p_sys->stat.i_bytes += b->i_buffer;
1079         p_sys->stat.i_read_time += i_stop - i_start;
1080         p_sys->stat.i_read_count++;
1081
1082         b = b->p_next;
1083         i_start = mdate();
1084     }
1085     return VLC_SUCCESS;
1086 }
1087
1088
1089 /****************************************************************************
1090  * Method 2:
1091  ****************************************************************************/
1092 static int AStreamRefillStream( stream_t *s );
1093
1094 static int AStreamReadStream( stream_t *s, void *p_read, int i_read )
1095 {
1096     stream_sys_t *p_sys = s->p_sys;
1097     stream_track_t *tk = &p_sys->stream.tk[p_sys->stream.i_tk];
1098
1099     uint8_t *p_data = (uint8_t *)p_read;
1100     int      i_data = 0;
1101
1102     if( tk->i_start >= tk->i_end ) return 0; /* EOF */
1103
1104     if( p_read == NULL )
1105     {
1106         /* seek within this stream if possible, else use plain old read and discard */
1107         stream_sys_t *p_sys = s->p_sys;
1108         access_t     *p_access = p_sys->p_access;
1109
1110         /* seeking after EOF is not what we want */
1111         if( !( p_access->info.b_eof ) )
1112         {
1113             bool   b_aseek;
1114             access_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
1115             if( b_aseek )
1116                 return AStreamSeekStream( s, p_sys->i_pos + i_read ) ? 0 : i_read;
1117         }
1118     }
1119
1120 #ifdef STREAM_DEBUG
1121     msg_Dbg( s, "AStreamReadStream: %d pos=%"PRId64" tk=%d start=%"PRId64
1122              " offset=%d end=%"PRId64,
1123              i_read, p_sys->i_pos, p_sys->stream.i_tk,
1124              tk->i_start, p_sys->stream.i_offset, tk->i_end );
1125 #endif
1126
1127     while( i_data < i_read )
1128     {
1129         int i_off = (tk->i_start + p_sys->stream.i_offset) %
1130                     STREAM_CACHE_TRACK_SIZE;
1131         int i_current =
1132             __MIN( tk->i_end - tk->i_start - p_sys->stream.i_offset,
1133                    STREAM_CACHE_TRACK_SIZE - i_off );
1134         int i_copy = __MIN( i_current, i_read - i_data );
1135
1136         if( i_copy <= 0 ) break; /* EOF */
1137
1138         /* Copy data */
1139         /* msg_Dbg( s, "AStreamReadStream: copy %d", i_copy ); */
1140         if( p_data )
1141         {
1142             memcpy( p_data, &tk->p_buffer[i_off], i_copy );
1143             p_data += i_copy;
1144         }
1145         i_data += i_copy;
1146         p_sys->stream.i_offset += i_copy;
1147
1148         /* Update pos now */
1149         p_sys->i_pos += i_copy;
1150
1151         /* */
1152         p_sys->stream.i_used += i_copy;
1153         if( tk->i_start + p_sys->stream.i_offset >= tk->i_end ||
1154             p_sys->stream.i_used >= p_sys->stream.i_read_size )
1155         {
1156             if( AStreamRefillStream( s ) )
1157             {
1158                 /* EOF */
1159                 if( tk->i_start >= tk->i_end ) break;
1160             }
1161         }
1162     }
1163
1164     return i_data;
1165 }
1166
1167 static int AStreamPeekStream( stream_t *s, const uint8_t **pp_peek, int i_read )
1168 {
1169     stream_sys_t *p_sys = s->p_sys;
1170     stream_track_t *tk = &p_sys->stream.tk[p_sys->stream.i_tk];
1171     int64_t i_off;
1172
1173     if( tk->i_start >= tk->i_end ) return 0; /* EOF */
1174
1175 #ifdef STREAM_DEBUG
1176     msg_Dbg( s, "AStreamPeekStream: %d pos=%"PRId64" tk=%d "
1177              "start=%"PRId64" offset=%d end=%"PRId64,
1178              i_read, p_sys->i_pos, p_sys->stream.i_tk,
1179              tk->i_start, p_sys->stream.i_offset, tk->i_end );
1180 #endif
1181
1182     /* Avoid problem, but that should *never* happen */
1183     if( i_read > STREAM_CACHE_TRACK_SIZE / 2 )
1184         i_read = STREAM_CACHE_TRACK_SIZE / 2;
1185
1186     while( tk->i_end - tk->i_start - p_sys->stream.i_offset < i_read )
1187     {
1188         if( p_sys->stream.i_used <= 1 )
1189         {
1190             /* Be sure we will read something */
1191             p_sys->stream.i_used += i_read -
1192                 (tk->i_end - tk->i_start - p_sys->stream.i_offset);
1193         }
1194         if( AStreamRefillStream( s ) ) break;
1195     }
1196
1197     if( tk->i_end - tk->i_start - p_sys->stream.i_offset < i_read )
1198         i_read = tk->i_end - tk->i_start - p_sys->stream.i_offset;
1199
1200     /* Now, direct pointer or a copy ? */
1201     i_off = (tk->i_start + p_sys->stream.i_offset) % STREAM_CACHE_TRACK_SIZE;
1202     if( i_off + i_read <= STREAM_CACHE_TRACK_SIZE )
1203     {
1204         *pp_peek = &tk->p_buffer[i_off];
1205         return i_read;
1206     }
1207
1208     if( p_sys->i_peek < i_read )
1209     {
1210         p_sys->p_peek = realloc( p_sys->p_peek, i_read );
1211         if( !p_sys->p_peek )
1212         {
1213             p_sys->i_peek = 0;
1214             return 0;
1215         }
1216         p_sys->i_peek = i_read;
1217     }
1218
1219     memcpy( p_sys->p_peek, &tk->p_buffer[i_off],
1220             STREAM_CACHE_TRACK_SIZE - i_off );
1221     memcpy( &p_sys->p_peek[STREAM_CACHE_TRACK_SIZE - i_off],
1222             &tk->p_buffer[0], i_read - (STREAM_CACHE_TRACK_SIZE - i_off) );
1223
1224     *pp_peek = p_sys->p_peek;
1225     return i_read;
1226 }
1227
1228 static int AStreamSeekStream( stream_t *s, int64_t i_pos )
1229 {
1230     stream_sys_t *p_sys = s->p_sys;
1231     access_t     *p_access = p_sys->p_access;
1232     bool   b_aseek;
1233     bool   b_afastseek;
1234     int i_maxth;
1235     int i_new;
1236     int i;
1237
1238 #ifdef STREAM_DEBUG
1239     msg_Dbg( s, "AStreamSeekStream: to %"PRId64" pos=%"PRId64
1240              " tk=%d start=%"PRId64" offset=%d end=%"PRId64,
1241              i_pos, p_sys->i_pos, p_sys->stream.i_tk,
1242              p_sys->stream.tk[p_sys->stream.i_tk].i_start,
1243              p_sys->stream.i_offset,
1244              p_sys->stream.tk[p_sys->stream.i_tk].i_end );
1245 #endif
1246
1247
1248     /* Seek in our current track ? */
1249     if( i_pos >= p_sys->stream.tk[p_sys->stream.i_tk].i_start &&
1250         i_pos < p_sys->stream.tk[p_sys->stream.i_tk].i_end )
1251     {
1252         stream_track_t *tk = &p_sys->stream.tk[p_sys->stream.i_tk];
1253 #ifdef STREAM_DEBUG
1254         msg_Dbg( s, "AStreamSeekStream: current track" );
1255 #endif
1256         p_sys->i_pos = i_pos;
1257         p_sys->stream.i_offset = i_pos - tk->i_start;
1258
1259         /* If there is not enough data left in the track, refill  */
1260         /* \todo How to get a correct value for
1261          *    - refilling threshold
1262          *    - how much to refill
1263          */
1264         if( (tk->i_end - tk->i_start ) - p_sys->stream.i_offset <
1265                                              p_sys->stream.i_read_size )
1266         {
1267             if( p_sys->stream.i_used < STREAM_READ_ATONCE / 2  )
1268             {
1269                 p_sys->stream.i_used = STREAM_READ_ATONCE / 2 ;
1270                 AStreamRefillStream( s );
1271             }
1272         }
1273         return VLC_SUCCESS;
1274     }
1275
1276     access_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
1277     if( !b_aseek )
1278     {
1279         /* We can't do nothing */
1280         msg_Dbg( s, "AStreamSeekStream: can't seek" );
1281         return VLC_EGENERIC;
1282     }
1283
1284     /* Date the current track */
1285     p_sys->stream.tk[p_sys->stream.i_tk].i_date = mdate();
1286
1287     /* Try to reuse already read data */
1288     for( i = 0; i < STREAM_CACHE_TRACK; i++ )
1289     {
1290         stream_track_t *tk = &p_sys->stream.tk[i];
1291
1292         if( i_pos >= tk->i_start && i_pos <= tk->i_end )
1293         {
1294 #ifdef STREAM_DEBUG
1295             msg_Dbg( s, "AStreamSeekStream: reusing %d start=%"PRId64
1296                      " end=%"PRId64, i, tk->i_start, tk->i_end );
1297 #endif
1298
1299             /* Seek at the end of the buffer */
1300             if( ASeek( s, tk->i_end ) ) return VLC_EGENERIC;
1301
1302             /* That's it */
1303             p_sys->i_pos = i_pos;
1304             p_sys->stream.i_tk = i;
1305             p_sys->stream.i_offset = i_pos - tk->i_start;
1306
1307             if( p_sys->stream.i_used < 1024 )
1308                 p_sys->stream.i_used = 1024;
1309
1310             if( AStreamRefillStream( s ) && i_pos == tk->i_end )
1311                 return VLC_EGENERIC;
1312
1313             return VLC_SUCCESS;
1314         }
1315     }
1316
1317     access_Control( p_access, ACCESS_CAN_SEEK, &b_afastseek );
1318     /* FIXME compute seek cost (instead of static 'stupid' value) */
1319     i_maxth = __MIN( p_sys->stream.i_read_size, STREAM_READ_ATONCE / 2 );
1320     if( !b_afastseek )
1321         i_maxth *= 3;
1322
1323     /* FIXME TODO */
1324 #if 0
1325     /* Search closest segment TODO */
1326     for( i = 0; i < STREAM_CACHE_TRACK; i++ )
1327     {
1328         stream_track_t *tk = &p_sys->stream.tk[i];
1329
1330         if( i_pos + i_maxth >= tk->i_start )
1331         {
1332             msg_Dbg( s, "good segment before current pos, TODO" );
1333         }
1334         if( i_pos - i_maxth <= tk->i_end )
1335         {
1336             msg_Dbg( s, "good segment after current pos, TODO" );
1337         }
1338     }
1339 #endif
1340
1341     /* Nothing good, seek and choose oldest segment */
1342     if( ASeek( s, i_pos ) ) return VLC_EGENERIC;
1343     p_sys->i_pos = i_pos;
1344
1345     i_new = 0;
1346     for( i = 1; i < STREAM_CACHE_TRACK; i++ )
1347     {
1348         if( p_sys->stream.tk[i].i_date < p_sys->stream.tk[i_new].i_date )
1349             i_new = i;
1350     }
1351
1352     /* Reset the segment */
1353     p_sys->stream.i_tk     = i_new;
1354     p_sys->stream.i_offset =  0;
1355     p_sys->stream.tk[i_new].i_start = i_pos;
1356     p_sys->stream.tk[i_new].i_end   = i_pos;
1357
1358     /* Read data */
1359     if( p_sys->stream.i_used < STREAM_READ_ATONCE / 2 )
1360         p_sys->stream.i_used = STREAM_READ_ATONCE / 2;
1361
1362     if( AStreamRefillStream( s ) )
1363         return VLC_EGENERIC;
1364
1365     return VLC_SUCCESS;
1366 }
1367
1368 static int AStreamRefillStream( stream_t *s )
1369 {
1370     stream_sys_t *p_sys = s->p_sys;
1371     stream_track_t *tk = &p_sys->stream.tk[p_sys->stream.i_tk];
1372
1373     /* We read but won't increase i_start after initial start + offset */
1374     int i_toread =
1375         __MIN( p_sys->stream.i_used, STREAM_CACHE_TRACK_SIZE -
1376                (tk->i_end - tk->i_start - p_sys->stream.i_offset) );
1377     bool b_read = false;
1378     int64_t i_start, i_stop;
1379
1380     if( i_toread <= 0 ) return VLC_EGENERIC; /* EOF */
1381
1382 #ifdef STREAM_DEBUG
1383     msg_Dbg( s, "AStreamRefillStream: used=%d toread=%d",
1384                  p_sys->stream.i_used, i_toread );
1385 #endif
1386
1387     i_start = mdate();
1388     while( i_toread > 0 )
1389     {
1390         int i_off = tk->i_end % STREAM_CACHE_TRACK_SIZE;
1391         int i_read;
1392
1393         if( s->b_die )
1394             return VLC_EGENERIC;
1395
1396         i_read = __MIN( i_toread, STREAM_CACHE_TRACK_SIZE - i_off );
1397         i_read = AReadStream( s, &tk->p_buffer[i_off], i_read );
1398
1399         /* msg_Dbg( s, "AStreamRefillStream: read=%d", i_read ); */
1400         if( i_read <  0 )
1401         {
1402             msleep( STREAM_DATA_WAIT );
1403             continue;
1404         }
1405         else if( i_read == 0 )
1406         {
1407             if( !b_read ) return VLC_EGENERIC;
1408             return VLC_SUCCESS;
1409         }
1410         b_read = true;
1411
1412         /* Update end */
1413         tk->i_end += i_read;
1414
1415         /* Windows of STREAM_CACHE_TRACK_SIZE */
1416         if( tk->i_end - tk->i_start > STREAM_CACHE_TRACK_SIZE )
1417         {
1418             int i_invalid = tk->i_end - tk->i_start - STREAM_CACHE_TRACK_SIZE;
1419
1420             tk->i_start += i_invalid;
1421             p_sys->stream.i_offset -= i_invalid;
1422         }
1423
1424         i_toread -= i_read;
1425         p_sys->stream.i_used -= i_read;
1426
1427         p_sys->stat.i_bytes += i_read;
1428         p_sys->stat.i_read_count++;
1429     }
1430     i_stop = mdate();
1431
1432     p_sys->stat.i_read_time += i_stop - i_start;
1433
1434     return VLC_SUCCESS;
1435 }
1436
1437 static void AStreamPrebufferStream( stream_t *s )
1438 {
1439     stream_sys_t *p_sys = s->p_sys;
1440     access_t     *p_access = p_sys->p_access;
1441
1442     int64_t i_first = 0;
1443     int64_t i_start;
1444     int64_t i_prebuffer = p_sys->b_quick ? STREAM_CACHE_TRACK_SIZE /100 :
1445         ( (p_access->info.i_title > 1 || p_access->info.i_seekpoint > 1) ?
1446           STREAM_CACHE_PREBUFFER_SIZE : STREAM_CACHE_TRACK_SIZE / 3 );
1447
1448     msg_Dbg( s, "pre-buffering..." );
1449     i_start = mdate();
1450     for( ;; )
1451     {
1452         stream_track_t *tk = &p_sys->stream.tk[p_sys->stream.i_tk];
1453
1454         int64_t i_date = mdate();
1455         int i_read;
1456
1457         if( s->b_die || tk->i_end >= i_prebuffer ||
1458             (i_first > 0 && i_first + STREAM_CACHE_PREBUFFER_LENGTH < i_date) )
1459         {
1460             int64_t i_byterate;
1461
1462             /* Update stat */
1463             p_sys->stat.i_bytes = tk->i_end - tk->i_start;
1464             p_sys->stat.i_read_time = i_date - i_start;
1465             i_byterate = ( INT64_C(1000000) * p_sys->stat.i_bytes ) /
1466                          (p_sys->stat.i_read_time+1);
1467
1468             msg_Dbg( s, "pre-buffering done %"PRId64" bytes in %"PRId64"s - "
1469                      "%"PRId64" kbytes/s",
1470                      p_sys->stat.i_bytes,
1471                      p_sys->stat.i_read_time / INT64_C(1000000),
1472                      i_byterate / 1024 );
1473             break;
1474         }
1475
1476         /* */
1477         i_read = STREAM_CACHE_TRACK_SIZE - tk->i_end;
1478         i_read = __MIN( p_sys->stream.i_read_size, i_read );
1479         i_read = AReadStream( s, &tk->p_buffer[tk->i_end], i_read );
1480         if( i_read <  0 )
1481         {
1482             msleep( STREAM_DATA_WAIT );
1483             continue;
1484         }
1485         else if( i_read == 0 )
1486         {
1487             /* EOF */
1488             break;
1489         }
1490
1491         if( i_first == 0 )
1492         {
1493             i_first = mdate();
1494             msg_Dbg( s, "received first data for our buffer");
1495         }
1496
1497         tk->i_end += i_read;
1498
1499         p_sys->stat.i_read_count++;
1500     }
1501 }
1502
1503 /****************************************************************************
1504  * Method 3:
1505  ****************************************************************************/
1506
1507 static int AStreamReadImmediate( stream_t *s, void *p_read, int i_read )
1508 {
1509     stream_sys_t *p_sys = s->p_sys;
1510
1511 #ifdef STREAM_DEBUG
1512     msg_Dbg( s, "AStreamReadImmediate p_read=%p i_read=%d",
1513              p_read, i_read );
1514 #endif
1515
1516     /* First, check if we already have some data in the buffer,
1517      * that we could copy directly */
1518     int i_copy = __MIN( stream_buffered_size( s ), i_read );
1519     if( i_copy )
1520     {
1521 #ifdef STREAM_DEBUG
1522         msg_Dbg( s, "AStreamReadImmediate: copy %d from %p", i_copy, stream_buffer( s ) );
1523 #endif
1524
1525         assert( i_copy <= STREAM_CACHE_SIZE );
1526
1527         if( p_read )
1528         {
1529             memcpy( p_read, stream_buffer( s ), i_copy );
1530             p_read = (uint8_t *)p_read + i_copy;
1531         }
1532     }
1533
1534     /* Now that we've read our buffer we don't need its i_copy bytes */
1535     stream_buffer_empty( s, i_copy );
1536
1537     /* Now check if we have still to really read some data */
1538     int i_to_read = i_read - i_copy;
1539     if( i_to_read )
1540     {
1541         if( p_read )
1542             i_to_read = AReadStream( s, p_read, i_to_read );
1543         else
1544         {
1545             void * dummy = malloc(i_to_read);
1546             i_to_read = AReadStream( s, dummy, i_to_read );
1547             free(dummy);
1548         }
1549     }
1550
1551     p_sys->i_pos += i_to_read;
1552
1553     return i_to_read + i_copy;
1554 }
1555
1556 static int AStreamPeekImmediate( stream_t *s, const uint8_t **pp_peek, int i_read )
1557 {
1558 #ifdef STREAM_DEBUG
1559     msg_Dbg( s, "AStreamPeekImmediate: %d  size=%"PRId64,
1560              i_read, size_buffered_size( s ) );
1561 #endif
1562
1563     /* Avoid problem, but that shouldn't happen */
1564     if( i_read > STREAM_CACHE_SIZE / 2 )
1565         i_read = STREAM_CACHE_SIZE / 2;
1566
1567     int i_to_read = i_read - stream_buffered_size( s );
1568     if( i_to_read > 0 )
1569     {
1570 #ifdef STREAM_DEBUG
1571         msg_Dbg( s, "AStreamPeekImmediate: Reading %d",
1572              i_to_read );
1573 #endif
1574         i_to_read = AReadStream( s, stream_buffer( s ) + stream_buffered_size( s ),
1575                                  i_to_read );
1576
1577         if( i_to_read > 0 )
1578             stream_buffer_fill( s, i_to_read );
1579     }
1580
1581     *pp_peek = stream_buffer( s );
1582
1583     return __MIN(stream_buffered_size( s ), i_read);
1584 }
1585
1586 static int AStreamSeekImmediate( stream_t *s, int64_t i_pos )
1587 {
1588     stream_sys_t *p_sys = s->p_sys;
1589     access_t     *p_access = p_sys->p_access;
1590     bool   b_aseek;
1591
1592 #ifdef STREAM_DEBUG
1593     msg_Dbg( s, "AStreamSeekImmediate to %"PRId64" pos=%"PRId64
1594              i_pos, p_sys->i_pos );
1595 #endif
1596
1597     access_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
1598     if( !b_aseek )
1599     {
1600         /* We can't do nothing */
1601         msg_Dbg( s, "AStreamSeekImmediate: can't seek" );
1602         return VLC_EGENERIC;
1603     }
1604
1605     /* Just reset our buffer */
1606     stream_buffer_empty( s, stream_buffered_size( s ) );
1607
1608     if( ASeek( s, i_pos ) ) return VLC_EGENERIC;
1609
1610     return VLC_SUCCESS;
1611 }
1612
1613 /****************************************************************************
1614  * stream_ReadLine:
1615  ****************************************************************************/
1616 /**
1617  * Read from the stream untill first newline.
1618  * \param s Stream handle to read from
1619  * \return A pointer to the allocated output string. You need to free this when you are done.
1620  */
1621 #define STREAM_PROBE_LINE 2048
1622 #define STREAM_LINE_MAX (2048*100)
1623 char * stream_ReadLine( stream_t *s )
1624 {
1625     char *p_line = NULL;
1626     int i_line = 0, i_read = 0;
1627
1628     while( i_read < STREAM_LINE_MAX )
1629     {
1630         char *psz_eol;
1631         const uint8_t *p_data;
1632         int i_data;
1633         int64_t i_pos;
1634
1635         /* Probe new data */
1636         i_data = stream_Peek( s, &p_data, STREAM_PROBE_LINE );
1637         if( i_data <= 0 ) break; /* No more data */
1638
1639         /* BOM detection */
1640         i_pos = stream_Tell( s );
1641         if( i_pos == 0 && i_data > 4 )
1642         {
1643             int i_bom_size = 0;
1644             char *psz_encoding = NULL;
1645
1646             if( p_data[0] == 0xEF && p_data[1] == 0xBB && p_data[2] == 0xBF )
1647             {
1648                 psz_encoding = strdup( "UTF-8" );
1649                 i_bom_size = 3;
1650             }
1651             else if( p_data[0] == 0x00 && p_data[1] == 0x00 )
1652             {
1653                 if( p_data[2] == 0xFE && p_data[3] == 0xFF )
1654                 {
1655                     psz_encoding = strdup( "UTF-32BE" );
1656                     s->i_char_width = 4;
1657                     i_bom_size = 4;
1658                 }
1659             }
1660             else if( p_data[0] == 0xFF && p_data[1] == 0xFE )
1661             {
1662                 if( p_data[2] == 0x00 && p_data[3] == 0x00 )
1663                 {
1664                     psz_encoding = strdup( "UTF-32LE" );
1665                     s->i_char_width = 4;
1666                     s->b_little_endian = true;
1667                     i_bom_size = 4;
1668                 }
1669                 else
1670                 {
1671                     psz_encoding = strdup( "UTF-16LE" );
1672                     s->b_little_endian = true;
1673                     s->i_char_width = 2;
1674                     i_bom_size = 2;
1675                 }
1676             }
1677             else if( p_data[0] == 0xFE && p_data[1] == 0xFF )
1678             {
1679                 psz_encoding = strdup( "UTF-16BE" );
1680                 s->i_char_width = 2;
1681                 i_bom_size = 2;
1682             }
1683
1684             /* Seek past the BOM */
1685             if( i_bom_size )
1686             {
1687                 stream_Seek( s, i_bom_size );
1688                 p_data += i_bom_size;
1689                 i_data -= i_bom_size;
1690             }
1691
1692             /* Open the converter if we need it */
1693             if( psz_encoding != NULL )
1694             {
1695                 input_thread_t *p_input;
1696                 msg_Dbg( s, "%s BOM detected", psz_encoding );
1697                 p_input = (input_thread_t *)vlc_object_find( s, VLC_OBJECT_INPUT, FIND_PARENT );
1698                 if( s->i_char_width > 1 )
1699                 {
1700                     s->conv = vlc_iconv_open( "UTF-8", psz_encoding );
1701                     if( s->conv == (vlc_iconv_t)-1 )
1702                     {
1703                         msg_Err( s, "iconv_open failed" );
1704                     }
1705                 }
1706                 if( p_input != NULL)
1707                 {
1708                     var_Create( p_input, "subsdec-encoding", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
1709                     var_SetString( p_input, "subsdec-encoding", "UTF-8" );
1710                     vlc_object_release( p_input );
1711                 }
1712                 free( psz_encoding );
1713             }
1714         }
1715
1716         if( i_data % s->i_char_width )
1717         {
1718             /* keep i_char_width boundary */
1719             i_data = i_data - ( i_data % s->i_char_width );
1720             msg_Warn( s, "the read is not i_char_width compatible");
1721         }
1722
1723         if( i_data == 0 )
1724             break;
1725
1726         /* Check if there is an EOL */
1727         if( s->i_char_width == 1 )
1728         {
1729             /* UTF-8: 0A <LF> */
1730             psz_eol = memchr( p_data, '\n', i_data );
1731         }
1732         else
1733         {
1734             const uint8_t *p = p_data;
1735             const uint8_t *p_last = p + i_data - s->i_char_width;
1736
1737             if( s->i_char_width == 2 )
1738             {
1739                 if( s->b_little_endian == true)
1740                 {
1741                     /* UTF-16LE: 0A 00 <LF> */
1742                     while( p <= p_last && ( p[0] != 0x0A || p[1] != 0x00 ) )
1743                         p += 2;
1744                 }
1745                 else
1746                 {
1747                     /* UTF-16BE: 00 0A <LF> */
1748                     while( p <= p_last && ( p[1] != 0x0A || p[0] != 0x00 ) )
1749                         p += 2;
1750                 }
1751             }
1752             else if( s->i_char_width == 4 )
1753             {
1754                 if( s->b_little_endian == true)
1755                 {
1756                     /* UTF-32LE: 0A 00 00 00 <LF> */
1757                     while( p <= p_last && ( p[0] != 0x0A || p[1] != 0x00 ||
1758                            p[2] != 0x00 || p[3] != 0x00 ) )
1759                         p += 4;
1760                 }
1761                 else
1762                 {
1763                     /* UTF-32BE: 00 00 00 0A <LF> */
1764                     while( p <= p_last && ( p[3] != 0x0A || p[2] != 0x00 ||
1765                            p[1] != 0x00 || p[0] != 0x00 ) )
1766                         p += 4;
1767                 }
1768             }
1769
1770             if( p > p_last )
1771             {
1772                 psz_eol = NULL;
1773             }
1774             else
1775             {
1776                 psz_eol = (char *)p + ( s->i_char_width - 1 );
1777             }
1778         }
1779
1780         if(psz_eol)
1781         {
1782             i_data = (psz_eol - (char *)p_data) + 1;
1783             p_line = realloc( p_line, i_line + i_data + s->i_char_width ); /* add \0 */
1784             if( !p_line )
1785                 goto error;
1786             i_data = stream_Read( s, &p_line[i_line], i_data );
1787             if( i_data <= 0 ) break; /* Hmmm */
1788             i_line += i_data - s->i_char_width; /* skip \n */;
1789             i_read += i_data;
1790
1791             /* We have our line */
1792             break;
1793         }
1794
1795         /* Read data (+1 for easy \0 append) */
1796         p_line = realloc( p_line, i_line + STREAM_PROBE_LINE + s->i_char_width );
1797         if( !p_line )
1798             goto error;
1799         i_data = stream_Read( s, &p_line[i_line], STREAM_PROBE_LINE );
1800         if( i_data <= 0 ) break; /* Hmmm */
1801         i_line += i_data;
1802         i_read += i_data;
1803     }
1804
1805     if( i_read > 0 )
1806     {
1807         int j;
1808         for( j = 0; j < s->i_char_width; j++ )
1809         {
1810             p_line[i_line + j] = '\0';
1811         }
1812         i_line += s->i_char_width; /* the added \0 */
1813         if( s->i_char_width > 1 )
1814         {
1815             size_t i_in = 0, i_out = 0;
1816             const char * p_in = NULL;
1817             char * p_out = NULL;
1818             char * psz_new_line = NULL;
1819
1820             /* iconv */
1821             psz_new_line = malloc( i_line );
1822             if( psz_new_line == NULL )
1823                 goto error;
1824             i_in = i_out = (size_t)i_line;
1825             p_in = p_line;
1826             p_out = psz_new_line;
1827
1828             if( vlc_iconv( s->conv, &p_in, &i_in, &p_out, &i_out ) == (size_t)-1 )
1829             {
1830                 msg_Err( s, "iconv failed" );
1831                 msg_Dbg( s, "original: %d, in %d, out %d", i_line, (int)i_in, (int)i_out );
1832             }
1833             free( p_line );
1834             p_line = psz_new_line;
1835             i_line = (size_t)i_line - i_out; /* does not include \0 */
1836         }
1837
1838         /* Remove trailing LF/CR */
1839         while( i_line >= 2 && ( p_line[i_line-2] == '\r' ||
1840             p_line[i_line-2] == '\n') ) i_line--;
1841
1842         /* Make sure the \0 is there */
1843         p_line[i_line-1] = '\0';
1844
1845         return p_line;
1846     }
1847
1848 error:
1849
1850     /* We failed to read any data, probably EOF */
1851     free( p_line );
1852     if( s->conv != (vlc_iconv_t)(-1) ) vlc_iconv_close( s->conv );
1853     return NULL;
1854 }
1855
1856 /****************************************************************************
1857  * Access reading/seeking wrappers to handle concatenated streams.
1858  ****************************************************************************/
1859 static int AReadStream( stream_t *s, void *p_read, int i_read )
1860 {
1861     stream_sys_t *p_sys = s->p_sys;
1862     access_t *p_access = p_sys->p_access;
1863     input_thread_t *p_input = NULL;
1864     int i_read_orig = i_read;
1865     int i_total = 0;
1866
1867     if( s->p_parent && s->p_parent->p_parent &&
1868         s->p_parent->p_parent->i_object_type == VLC_OBJECT_INPUT )
1869         p_input = (input_thread_t *)s->p_parent->p_parent;
1870
1871     if( !p_sys->i_list )
1872     {
1873         i_read = p_access->pf_read( p_access, p_read, i_read );
1874         if( p_access->b_die )
1875             vlc_object_kill( s );
1876         if( p_input )
1877         {
1878             vlc_mutex_lock( &p_input->p->counters.counters_lock );
1879             stats_UpdateInteger( s, p_input->p->counters.p_read_bytes, i_read,
1880                              &i_total );
1881             stats_UpdateFloat( s, p_input->p->counters.p_input_bitrate,
1882                            (float)i_total, NULL );
1883             stats_UpdateInteger( s, p_input->p->counters.p_read_packets, 1, NULL );
1884             vlc_mutex_unlock( &p_input->p->counters.counters_lock );
1885         }
1886         return i_read;
1887     }
1888
1889     i_read = p_sys->p_list_access->pf_read( p_sys->p_list_access, p_read,
1890                                             i_read );
1891     if( p_access->b_die )
1892         vlc_object_kill( s );
1893
1894     /* If we reached an EOF then switch to the next stream in the list */
1895     if( i_read == 0 && p_sys->i_list_index + 1 < p_sys->i_list )
1896     {
1897         char *psz_name = p_sys->list[++p_sys->i_list_index]->psz_path;
1898         access_t *p_list_access;
1899
1900         msg_Dbg( s, "opening input `%s'", psz_name );
1901
1902         p_list_access = access_New( s, p_access->psz_access, "", psz_name );
1903
1904         if( !p_list_access ) return 0;
1905
1906         if( p_sys->p_list_access != p_access )
1907             access_Delete( p_sys->p_list_access );
1908
1909         p_sys->p_list_access = p_list_access;
1910
1911         /* We have to read some data */
1912         return AReadStream( s, p_read, i_read_orig );
1913     }
1914
1915     /* Update read bytes in input */
1916     if( p_input )
1917     {
1918         vlc_mutex_lock( &p_input->p->counters.counters_lock );
1919         stats_UpdateInteger( s, p_input->p->counters.p_read_bytes, i_read, &i_total );
1920         stats_UpdateFloat( s, p_input->p->counters.p_input_bitrate,
1921                        (float)i_total, NULL );
1922         stats_UpdateInteger( s, p_input->p->counters.p_read_packets, 1, NULL );
1923         vlc_mutex_unlock( &p_input->p->counters.counters_lock );
1924     }
1925     return i_read;
1926 }
1927
1928 static block_t *AReadBlock( stream_t *s, bool *pb_eof )
1929 {
1930     stream_sys_t *p_sys = s->p_sys;
1931     access_t *p_access = p_sys->p_access;
1932     input_thread_t *p_input = NULL;
1933     block_t *p_block;
1934     bool b_eof;
1935     int i_total = 0;
1936
1937     if( s->p_parent && s->p_parent->p_parent &&
1938         s->p_parent->p_parent->i_object_type == VLC_OBJECT_INPUT )
1939         p_input = (input_thread_t *)s->p_parent->p_parent;
1940
1941     if( !p_sys->i_list )
1942     {
1943         p_block = p_access->pf_block( p_access );
1944         if( p_access->b_die )
1945             vlc_object_kill( s );
1946         if( pb_eof ) *pb_eof = p_access->info.b_eof;
1947         if( p_input && p_block && libvlc_stats (p_access) )
1948         {
1949             vlc_mutex_lock( &p_input->p->counters.counters_lock );
1950             stats_UpdateInteger( s, p_input->p->counters.p_read_bytes,
1951                                  p_block->i_buffer, &i_total );
1952             stats_UpdateFloat( s, p_input->p->counters.p_input_bitrate,
1953                               (float)i_total, NULL );
1954             stats_UpdateInteger( s, p_input->p->counters.p_read_packets, 1, NULL );
1955             vlc_mutex_unlock( &p_input->p->counters.counters_lock );
1956         }
1957         return p_block;
1958     }
1959
1960     p_block = p_sys->p_list_access->pf_block( p_access );
1961     if( p_access->b_die )
1962         vlc_object_kill( s );
1963     b_eof = p_sys->p_list_access->info.b_eof;
1964     if( pb_eof ) *pb_eof = b_eof;
1965
1966     /* If we reached an EOF then switch to the next stream in the list */
1967     if( !p_block && b_eof && p_sys->i_list_index + 1 < p_sys->i_list )
1968     {
1969         char *psz_name = p_sys->list[++p_sys->i_list_index]->psz_path;
1970         access_t *p_list_access;
1971
1972         msg_Dbg( s, "opening input `%s'", psz_name );
1973
1974         p_list_access = access_New( s, p_access->psz_access, "", psz_name );
1975
1976         if( !p_list_access ) return 0;
1977
1978         if( p_sys->p_list_access != p_access )
1979             access_Delete( p_sys->p_list_access );
1980
1981         p_sys->p_list_access = p_list_access;
1982
1983         /* We have to read some data */
1984         return AReadBlock( s, pb_eof );
1985     }
1986     if( p_block )
1987     {
1988         if( p_input )
1989         {
1990             vlc_mutex_lock( &p_input->p->counters.counters_lock );
1991             stats_UpdateInteger( s, p_input->p->counters.p_read_bytes,
1992                                  p_block->i_buffer, &i_total );
1993             stats_UpdateFloat( s, p_input->p->counters.p_input_bitrate,
1994                               (float)i_total, NULL );
1995             stats_UpdateInteger( s, p_input->p->counters.p_read_packets,
1996                                  1 , NULL);
1997             vlc_mutex_unlock( &p_input->p->counters.counters_lock );
1998         }
1999     }
2000     return p_block;
2001 }
2002
2003 static int ASeek( stream_t *s, int64_t i_pos )
2004 {
2005     stream_sys_t *p_sys = s->p_sys;
2006     access_t *p_access = p_sys->p_access;
2007
2008     /* Check which stream we need to access */
2009     if( p_sys->i_list )
2010     {
2011         int i;
2012         char *psz_name;
2013         int64_t i_size = 0;
2014         access_t *p_list_access = 0;
2015
2016         for( i = 0; i < p_sys->i_list - 1; i++ )
2017         {
2018             if( i_pos < p_sys->list[i]->i_size + i_size ) break;
2019             i_size += p_sys->list[i]->i_size;
2020         }
2021         psz_name = p_sys->list[i]->psz_path;
2022
2023         if( i != p_sys->i_list_index )
2024             msg_Dbg( s, "opening input `%s'", psz_name );
2025
2026         if( i != p_sys->i_list_index && i != 0 )
2027         {
2028             p_list_access =
2029                 access_New( s, p_access->psz_access, "", psz_name );
2030         }
2031         else if( i != p_sys->i_list_index )
2032         {
2033             p_list_access = p_access;
2034         }
2035
2036         if( p_list_access )
2037         {
2038             if( p_sys->p_list_access != p_access )
2039                 access_Delete( p_sys->p_list_access );
2040
2041             p_sys->p_list_access = p_list_access;
2042         }
2043
2044         p_sys->i_list_index = i;
2045         return p_sys->p_list_access->pf_seek( p_sys->p_list_access,
2046                                               i_pos - i_size );
2047     }
2048
2049     return p_access->pf_seek( p_access, i_pos );
2050 }
2051
2052
2053 /**
2054  * Try to read "i_read" bytes into a buffer pointed by "p_read".  If
2055  * "p_read" is NULL then data are skipped instead of read.  The return
2056  * value is the real numbers of bytes read/skip. If this value is less
2057  * than i_read that means that it's the end of the stream.
2058  */
2059 int stream_Read( stream_t *s, void *p_read, int i_read )
2060 {
2061     return s->pf_read( s, p_read, i_read );
2062 }
2063
2064 /**
2065  * Store in pp_peek a pointer to the next "i_peek" bytes in the stream
2066  * \return The real numbers of valid bytes, if it's less
2067  * or equal to 0, *pp_peek is invalid.
2068  * \note pp_peek is a pointer to internal buffer and it will be invalid as
2069  * soons as other stream_* functions are called.
2070  * \note Due to input limitation, it could be less than i_peek without meaning
2071  * the end of the stream (but only when you have i_peek >=
2072  * p_input->i_bufsize)
2073  */
2074 int stream_Peek( stream_t *s, const uint8_t **pp_peek, int i_peek )
2075 {
2076     return s->pf_peek( s, pp_peek, i_peek );
2077 }
2078
2079 /**
2080  * Use to control the "stream_t *". Look at #stream_query_e for
2081  * possible "i_query" value and format arguments.  Return VLC_SUCCESS
2082  * if ... succeed ;) and VLC_EGENERIC if failed or unimplemented
2083  */
2084 int stream_vaControl( stream_t *s, int i_query, va_list args )
2085 {
2086     return s->pf_control( s, i_query, args );
2087 }
2088
2089 /**
2090  * Destroy a stream
2091  */
2092 void stream_Delete( stream_t *s )
2093 {
2094     s->pf_destroy( s );
2095 }
2096
2097 int stream_Control( stream_t *s, int i_query, ... )
2098 {
2099     va_list args;
2100     int     i_result;
2101
2102     if ( s == NULL )
2103         return VLC_EGENERIC;
2104
2105     va_start( args, i_query );
2106     i_result = s->pf_control( s, i_query, args );
2107     va_end( args );
2108     return i_result;
2109 }
2110
2111 /**
2112  * Read "i_size" bytes and store them in a block_t.
2113  * It always read i_size bytes unless you are at the end of the stream
2114  * where it return what is available.
2115  */
2116 block_t *stream_Block( stream_t *s, int i_size )
2117 {
2118     if( i_size <= 0 ) return NULL;
2119
2120     /* emulate block read */
2121     block_t *p_bk = block_New( s, i_size );
2122     if( p_bk )
2123     {
2124         p_bk->i_buffer = stream_Read( s, p_bk->p_buffer, i_size );
2125         if( p_bk->i_buffer > 0 )
2126         {
2127             return p_bk;
2128         }
2129     }
2130     if( p_bk ) block_Release( p_bk );
2131     return NULL;
2132 }