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