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