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