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