stream.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:35k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * stream.c
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2004 VideoLAN
  5.  * $Id: stream.c 8928 2004-10-06 10:50:35Z gbazin $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include <stdlib.h>
  24. #include <vlc/vlc.h>
  25. #include <vlc/input.h>
  26. #include "input_internal.h"
  27. /* TODO:
  28.  *  - tune the 2 methods
  29.  *  - compute cost for seek
  30.  *  - improve stream mode seeking with closest segments
  31.  *  - ...
  32.  */
  33. /* Two methods:
  34.  *  - using pf_block
  35.  *      One linked list of data read
  36.  *  - using pf_read
  37.  *      More complex scheme using mutliple track to avoid seeking
  38.  */
  39. /* How many track we have, currently only used for stream mode */
  40. #define STREAM_CACHE_TRACK 3
  41. /* Max size of our cache 4Mo per track */
  42. #define STREAM_CACHE_SIZE  (4*STREAM_CACHE_TRACK*1024*1024)
  43.   /* How many data we try to prebuffer */
  44. #define STREAM_CACHE_PREBUFFER_SIZE (32767)
  45. /* Maximum time we take to pre-buffer */
  46. #define STREAM_CACHE_PREBUFFER_LENGTH (100*1000)
  47. /* Method1: Simple, for pf_block.
  48.  *  We get blocks and put them in the linked list.
  49.  *  We release blocks once the total size is bigger than CACHE_BLOCK_SIZE
  50.  */
  51. #define STREAM_DATA_WAIT 40000       /* Time between before a pf_block retry */
  52. /* Method2: A bit more complex, for pf_read
  53.  *  - We use ring buffers, only one if unseekable, all if seekable
  54.  *  - Upon seek date current ring, then search if one ring match the pos,
  55.  *      yes: switch to it, seek the access to match the end of the ring
  56.  *      no: search the ring with i_end the closer to i_pos,
  57.  *          if close enough, read data and use this ring
  58.  *          else use the oldest ring, seek and use it.
  59.  *
  60.  *  TODO: - with access non seekable: use all space available for only one ring, but
  61.  *          we have to support seekable/non-seekable switch on the fly.
  62.  *        - compute a good value for i_read_size
  63.  *        - ?
  64.  */
  65. #define STREAM_READ_ATONCE 32767
  66. #define STREAM_CACHE_TRACK_SIZE (STREAM_CACHE_SIZE/STREAM_CACHE_TRACK)
  67. typedef struct
  68. {
  69.     int64_t i_date;
  70.     int64_t i_start;
  71.     int64_t i_end;
  72.     uint8_t *p_buffer;
  73. } stream_track_t;
  74. struct stream_sys_t
  75. {
  76.     access_t    *p_access;
  77.     vlc_bool_t  b_block;    /* Block method (1) or stream */
  78.     int64_t     i_pos;      /* Current reading offset */
  79.     /* Method 1: pf_block */
  80.     struct
  81.     {
  82.         int64_t i_start;        /* Offset of block for p_first */
  83.         int     i_offset;       /* Offset for data in p_current */
  84.         block_t *p_current;     /* Current block */
  85.         int     i_size;         /* Total amount of data in the list */
  86.         block_t *p_first;
  87.         block_t **pp_last;
  88.     } block;
  89.     /* Method 2: for pf_read */
  90.     struct
  91.     {
  92.         int i_offset;   /* Buffer offset in the current track */
  93.         int i_tk;       /* Current track */
  94.         stream_track_t tk[STREAM_CACHE_TRACK];
  95.         /* Global buffer */
  96.         uint8_t *p_buffer;
  97.         /* */
  98.         int i_used; /* Used since last read */
  99.         int i_read_size;
  100.     } stream;
  101.     /* Peek temporary buffer */
  102.     int     i_peek;
  103.     uint8_t *p_peek;
  104.     /* Stat for both method */
  105.     struct
  106.     {
  107.         vlc_bool_t b_fastseek;  /* From access */
  108.         /* Stat about reading data */
  109.         int64_t i_read_count;
  110.         int64_t i_bytes;
  111.         int64_t i_read_time;
  112.         /* Stat about seek */
  113.         int     i_seek_count;
  114.         int64_t i_seek_time;
  115.     } stat;
  116. };
  117. /* Method 1: */
  118. static int  AStreamReadBlock( stream_t *, void *p_read, int i_read );
  119. static int  AStreamPeekBlock( stream_t *, uint8_t **p_peek, int i_read );
  120. static int  AStreamSeekBlock( stream_t *s, int64_t i_pos );
  121. static void AStreamPrebufferBlock( stream_t * );
  122. /* Method 2 */
  123. static int  AStreamReadStream( stream_t *, void *p_read, int i_read );
  124. static int  AStreamPeekStream( stream_t *, uint8_t **pp_peek, int i_read );
  125. static int  AStreamSeekStream( stream_t *s, int64_t i_pos );
  126. static void AStreamPrebufferStream( stream_t * );
  127. /* Common */
  128. static int AStreamControl( stream_t *, int i_query, va_list );
  129. /****************************************************************************
  130.  * stream_AccessNew: create a stream from a access
  131.  ****************************************************************************/
  132. stream_t *stream_AccessNew( access_t *p_access )
  133. {
  134.     stream_t *s = vlc_object_create( p_access, VLC_OBJECT_STREAM );
  135.     stream_sys_t *p_sys;
  136.     if( !s )
  137.         return NULL;
  138.     /* Attach it now, needed for b_die */
  139.     vlc_object_attach( s, p_access );
  140.     s->pf_block  = NULL;
  141.     s->pf_read   = NULL;    /* Set up later */
  142.     s->pf_peek   = NULL;
  143.     s->pf_control= AStreamControl;
  144.     s->p_sys = p_sys = malloc( sizeof( stream_sys_t ) );
  145.     /* Common field */
  146.     p_sys->p_access = p_access;
  147.     p_sys->b_block = p_access->pf_block ? VLC_TRUE : VLC_FALSE;
  148.     p_sys->i_pos = p_access->info.i_pos;
  149.     /* Stats */
  150.     access2_Control( p_access, ACCESS_CAN_FASTSEEK, &p_sys->stat.b_fastseek );
  151.     p_sys->stat.i_bytes = 0;
  152.     p_sys->stat.i_read_time = 0;
  153.     p_sys->stat.i_read_count = 0;
  154.     p_sys->stat.i_seek_count = 0;
  155.     p_sys->stat.i_seek_time = 0;
  156.     /* Peek */
  157.     p_sys->i_peek = 0;
  158.     p_sys->p_peek = NULL;
  159.     if( p_sys->b_block )
  160.     {
  161.         s->pf_read = AStreamReadBlock;
  162.         s->pf_peek = AStreamPeekBlock;
  163.         /* Init all fields of p_sys->block */
  164.         p_sys->block.i_start = p_sys->i_pos;
  165.         p_sys->block.i_offset = 0;
  166.         p_sys->block.p_current = NULL;
  167.         p_sys->block.i_size = 0;
  168.         p_sys->block.p_first = NULL;
  169.         p_sys->block.pp_last = &p_sys->block.p_first;
  170.         /* Do the prebuffering */
  171.         AStreamPrebufferBlock( s );
  172.         if( p_sys->block.i_size <= 0 )
  173.         {
  174.             msg_Err( s, "cannot pre fill buffer" );
  175.             goto error;
  176.         }
  177.     }
  178.     else
  179.     {
  180.         int i;
  181.         s->pf_read = AStreamReadStream;
  182.         s->pf_peek = AStreamPeekStream;
  183.         /* Allocate/Setup our tracks */
  184.         p_sys->stream.i_offset = 0;
  185.         p_sys->stream.i_tk     = 0;
  186.         p_sys->stream.p_buffer = malloc( STREAM_CACHE_SIZE );
  187.         p_sys->stream.i_used   = 0;
  188.         access2_Control( p_access, ACCESS_GET_MTU,
  189.                          &p_sys->stream.i_read_size );
  190.         if( p_sys->stream.i_read_size <= 0 )
  191.             p_sys->stream.i_read_size = STREAM_READ_ATONCE;
  192.         else if( p_sys->stream.i_read_size <= 256 )
  193.             p_sys->stream.i_read_size = 256;
  194.         for( i = 0; i < STREAM_CACHE_TRACK; i++ )
  195.         {
  196.             p_sys->stream.tk[i].i_date  = 0;
  197.             p_sys->stream.tk[i].i_start = p_sys->i_pos;
  198.             p_sys->stream.tk[i].i_end   = p_sys->i_pos;
  199.             p_sys->stream.tk[i].p_buffer=
  200.                 &p_sys->stream.p_buffer[i * STREAM_CACHE_TRACK_SIZE];
  201.         }
  202.         /* Do the prebuffering */
  203.         AStreamPrebufferStream( s );
  204.         if( p_sys->stream.tk[p_sys->stream.i_tk].i_end <= 0 )
  205.         {
  206.             msg_Err( s, "cannot pre fill buffer" );
  207.             goto error;
  208.         }
  209.     }
  210.     return s;
  211. error:
  212.     if( p_sys->b_block )
  213.     {
  214.         /* Nothing yet */
  215.     }
  216.     else
  217.     {
  218.         free( p_sys->stream.p_buffer );
  219.     }
  220.     free( s->p_sys );
  221.     vlc_object_detach( s );
  222.     vlc_object_destroy( s );
  223.     return NULL;
  224. }
  225. /****************************************************************************
  226.  * stream_AccessDelete:
  227.  ****************************************************************************/
  228. void stream_AccessDelete( stream_t *s )
  229. {
  230.     stream_sys_t *p_sys = s->p_sys;
  231.     vlc_object_detach( s );
  232.     if( p_sys->b_block )
  233.     {
  234.         block_ChainRelease( p_sys->block.p_first );
  235.     }
  236.     else
  237.     {
  238.         free( p_sys->stream.p_buffer );
  239.     }
  240.     if( p_sys->p_peek )
  241.         free( p_sys->p_peek );
  242.     free( s->p_sys );
  243.     vlc_object_destroy( s );
  244. }
  245. /****************************************************************************
  246.  * stream_AccessReset:
  247.  ****************************************************************************/
  248. void stream_AccessReset( stream_t *s )
  249. {
  250.     stream_sys_t *p_sys = s->p_sys;
  251.     p_sys->i_pos = p_sys->p_access->info.i_pos;
  252.     if( p_sys->b_block )
  253.     {
  254.         block_ChainRelease( p_sys->block.p_first );
  255.         /* Init all fields of p_sys->block */
  256.         p_sys->block.i_start = p_sys->i_pos;
  257.         p_sys->block.i_offset = 0;
  258.         p_sys->block.p_current = NULL;
  259.         p_sys->block.i_size = 0;
  260.         p_sys->block.p_first = NULL;
  261.         p_sys->block.pp_last = &p_sys->block.p_first;
  262.         /* Do the prebuffering */
  263.         AStreamPrebufferBlock( s );
  264.     }
  265.     else
  266.     {
  267.         int i;
  268.         /* Setup our tracks */
  269.         p_sys->stream.i_offset = 0;
  270.         p_sys->stream.i_tk     = 0;
  271.         p_sys->stream.i_used   = 0;
  272.         for( i = 0; i < STREAM_CACHE_TRACK; i++ )
  273.         {
  274.             p_sys->stream.tk[i].i_date  = 0;
  275.             p_sys->stream.tk[i].i_start = p_sys->i_pos;
  276.             p_sys->stream.tk[i].i_end   = p_sys->i_pos;
  277.         }
  278.         /* Do the prebuffering */
  279.         AStreamPrebufferStream( s );
  280.     }
  281. }
  282. /****************************************************************************
  283.  * stream_AccessUpdate:
  284.  ****************************************************************************/
  285. void stream_AccessUpdate( stream_t *s )
  286. {
  287.     stream_sys_t *p_sys = s->p_sys;
  288.     p_sys->i_pos = p_sys->p_access->info.i_pos;
  289. }
  290. /****************************************************************************
  291.  * AStreamControl:
  292.  ****************************************************************************/
  293. static int AStreamControl( stream_t *s, int i_query, va_list args )
  294. {
  295.     stream_sys_t *p_sys = s->p_sys;
  296.     access_t     *p_access = p_sys->p_access;
  297.     vlc_bool_t *p_bool;
  298.     int64_t    *pi_64, i_64;
  299.     int        i_int;
  300.     switch( i_query )
  301.     {
  302.         case STREAM_GET_SIZE:
  303.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  304.             *pi_64 = p_access->info.i_size;
  305.             break;
  306.         case STREAM_CAN_SEEK:
  307.             p_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
  308.             access2_Control( p_access, ACCESS_CAN_SEEK, p_bool );
  309.             break;
  310.         case STREAM_CAN_FASTSEEK:
  311.             p_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
  312.             access2_Control( p_access, ACCESS_CAN_FASTSEEK, p_bool );
  313.             break;
  314.         case STREAM_GET_POSITION:
  315.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  316.             *pi_64 = p_sys->i_pos;
  317.             break;
  318.         case STREAM_SET_POSITION:
  319.             i_64 = (int64_t)va_arg( args, int64_t );
  320.             if( p_sys->b_block )
  321.                 return AStreamSeekBlock( s, i_64 );
  322.             else
  323.                 return AStreamSeekStream( s, i_64 );
  324.         case STREAM_GET_MTU:
  325.             return VLC_EGENERIC;
  326.         case STREAM_CONTROL_ACCESS:
  327.             i_int = (int) va_arg( args, int );
  328.             if( i_int != ACCESS_SET_PRIVATE_ID_STATE
  329.                  && i_int != ACCESS_SET_PRIVATE_ID_CA )
  330.             {
  331.                 msg_Err( s, "Hey, what are you thinking ?"
  332.                             "DON'T USE STREAM_CONTROL_ACCESS !!!" );
  333.                 return VLC_EGENERIC;
  334.             }
  335.             return access2_vaControl( p_access, i_int, args );
  336.         default:
  337.             msg_Err( s, "invalid stream_vaControl query=0x%x", i_query );
  338.             return VLC_EGENERIC;
  339.     }
  340.     return VLC_SUCCESS;
  341. }
  342. /****************************************************************************
  343.  * Method 1:
  344.  ****************************************************************************/
  345. static void AStreamPrebufferBlock( stream_t *s )
  346. {
  347.     stream_sys_t *p_sys = s->p_sys;
  348.     access_t     *p_access = p_sys->p_access;
  349.     int64_t i_first = 0;
  350.     int64_t i_start;
  351.     msg_Dbg( s, "pre buffering" );
  352.     i_start = mdate();
  353.     for( ;; )
  354.     {
  355.         int64_t i_date = mdate();
  356.         block_t *b;
  357.         if( s->b_die || p_sys->block.i_size > STREAM_CACHE_PREBUFFER_SIZE ||
  358.             ( i_first > 0 && i_first + STREAM_CACHE_PREBUFFER_LENGTH < i_date ) )
  359.         {
  360.             int64_t i_byterate;
  361.             /* Update stat */
  362.             p_sys->stat.i_bytes = p_sys->block.i_size;
  363.             p_sys->stat.i_read_time = i_date - i_start;
  364.             i_byterate = ( I64C(1000000) * p_sys->stat.i_bytes ) /
  365.                          (p_sys->stat.i_read_time + 1);
  366.             msg_Dbg( s, "prebuffering done "I64Fd" bytes in "I64Fd"s - "
  367.                      I64Fd" kbytes/s",
  368.                      p_sys->stat.i_bytes,
  369.                      p_sys->stat.i_read_time / I64C(1000000),
  370.                      i_byterate / 1024 );
  371.             break;
  372.         }
  373.         /* Fetch a block */
  374.         if( ( b = p_access->pf_block( p_access ) ) == NULL )
  375.         {
  376.             if( p_access->info.b_eof )
  377.                 break;
  378.             msleep( STREAM_DATA_WAIT );
  379.             continue;
  380.         }
  381.         if( i_first == 0 )
  382.         {
  383.             i_first = mdate();
  384.             msg_Dbg( s, "received first data for our buffer");
  385.         }
  386.         /* Append the block */
  387.         p_sys->block.i_size += b->i_buffer;
  388.         *p_sys->block.pp_last = b;
  389.         p_sys->block.pp_last = &b->p_next;
  390.         p_sys->stat.i_read_count++;
  391.     }
  392.     p_sys->block.p_current = p_sys->block.p_first;
  393. }
  394. static int AStreamRefillBlock( stream_t *s );
  395. static int AStreamReadBlock( stream_t *s, void *p_read, int i_read )
  396. {
  397.     stream_sys_t *p_sys = s->p_sys;
  398.     uint8_t *p_data= (uint8_t*)p_read;
  399.     int     i_data = 0;
  400.     /* It means EOF */
  401.     if( p_sys->block.p_current == NULL )
  402.         return 0;
  403.     if( p_read == NULL )
  404.     {
  405. /* seek within this stream if possible, else use plain old read and discard */
  406.         stream_sys_t *p_sys = s->p_sys;
  407.         access_t     *p_access = p_sys->p_access;
  408.         vlc_bool_t   b_aseek;
  409.         access2_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
  410.         if( b_aseek )
  411.             return AStreamSeekBlock( s, p_sys->i_pos + i_read ) ? 0 : i_read;
  412.     }
  413.     while( i_data < i_read )
  414.     {
  415.         int i_current =
  416.             p_sys->block.p_current->i_buffer - p_sys->block.i_offset;
  417.         int i_copy = __MIN( i_current, i_read - i_data);
  418.         /* Copy data */
  419.         if( p_data )
  420.         {
  421.             memcpy( p_data,
  422.                     &p_sys->block.p_current->p_buffer[p_sys->block.i_offset],
  423.                     i_copy );
  424.             p_data += i_copy;
  425.         }
  426.         i_data += i_copy;
  427.         p_sys->block.i_offset += i_copy;
  428.         if( p_sys->block.i_offset >= p_sys->block.p_current->i_buffer )
  429.         {
  430.             /* Current block is now empty, switch to next */
  431.             if( p_sys->block.p_current )
  432.             {
  433.                 p_sys->block.i_offset = 0;
  434.                 p_sys->block.p_current = p_sys->block.p_current->p_next;
  435.             }
  436.             /*Get a new block */
  437.             if( AStreamRefillBlock( s ) )
  438.             {
  439.                 break;
  440.             }
  441.         }
  442.     }
  443.     p_sys->i_pos += i_data;
  444.     return i_data;
  445. }
  446. static int AStreamPeekBlock( stream_t *s, uint8_t **pp_peek, int i_read )
  447. {
  448.     stream_sys_t *p_sys = s->p_sys;
  449.     uint8_t *p_data;
  450.     int      i_data = 0;
  451.     block_t *b;
  452.     int      i_offset;
  453.     if( p_sys->block.p_current == NULL ) return 0; /* EOF */
  454.     /* We can directly give a pointer over our buffer */
  455.     if( i_read <= p_sys->block.p_current->i_buffer - p_sys->block.i_offset )
  456.     {
  457.         *pp_peek = &p_sys->block.p_current->p_buffer[p_sys->block.i_offset];
  458.         return i_read;
  459.     }
  460.     /* We need to create a local copy */
  461.     if( p_sys->i_peek < i_read )
  462.     {
  463.         if( p_sys->p_peek )
  464.             free( p_sys->p_peek );
  465.         p_sys->i_peek = i_read;
  466.         p_sys->p_peek = malloc( p_sys->i_peek );
  467.     }
  468.     /* Fill enough data */
  469.     while( p_sys->block.i_size - (p_sys->i_pos - p_sys->block.i_start)
  470.            < i_read )
  471.     {
  472.         block_t **pp_last = p_sys->block.pp_last;
  473.         if( AStreamRefillBlock( s ) )
  474.             break;
  475.         /* Our buffer are probably filled enough, don't try anymore */
  476.         if( pp_last == p_sys->block.pp_last )
  477.             break;
  478.     }
  479.     /* Copy what we have */
  480.     b = p_sys->block.p_current;
  481.     i_offset = p_sys->block.i_offset;
  482.     p_data = p_sys->p_peek;
  483.     while( b && i_data < i_read )
  484.     {
  485.         int i_current = b->i_buffer - i_offset;
  486.         int i_copy = __MIN( i_current, i_read - i_data );
  487.         memcpy( p_data, &b->p_buffer[i_offset], i_copy );
  488.         i_data += i_copy;
  489.         p_data += i_copy;
  490.         i_offset += i_copy;
  491.         if( i_offset >= b->i_buffer )
  492.         {
  493.             i_offset = 0;
  494.             b = b->p_next;
  495.         }
  496.     }
  497.     *pp_peek = p_sys->p_peek;
  498.     return i_data;
  499. }
  500. static int AStreamSeekBlock( stream_t *s, int64_t i_pos )
  501. {
  502.     stream_sys_t *p_sys = s->p_sys;
  503.     access_t   *p_access = p_sys->p_access;
  504.     int64_t    i_offset = i_pos - p_sys->block.i_start;
  505.     vlc_bool_t b_seek;
  506.     /* We already have thoses data, just update p_current/i_offset */
  507.     if( i_offset >= 0 && i_offset < p_sys->block.i_size )
  508.     {
  509.         block_t *b = p_sys->block.p_first;
  510.         int i_current = 0;
  511.         while( i_current + b->i_buffer < i_offset )
  512.         {
  513.             i_current += b->i_buffer;
  514.             b = b->p_next;
  515.         }
  516.         p_sys->block.p_current = b;
  517.         p_sys->block.i_offset = i_offset - i_current;
  518.         p_sys->i_pos = i_pos;
  519.         return VLC_SUCCESS;
  520.     }
  521.     /* We may need to seek or to read data */
  522.     if( i_offset < 0 )
  523.     {
  524.         vlc_bool_t b_aseek;
  525.         access2_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
  526.         if( !b_aseek )
  527.         {
  528.             msg_Err( s, "backward seek impossible (access non seekable)" );
  529.             return VLC_EGENERIC;
  530.         }
  531.         b_seek = VLC_TRUE;
  532.     }
  533.     else
  534.     {
  535.         vlc_bool_t b_aseek, b_aseekfast;
  536.         access2_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
  537.         access2_Control( p_access, ACCESS_CAN_FASTSEEK, &b_aseekfast );
  538.         if( !b_aseek )
  539.         {
  540.             b_seek = VLC_FALSE;
  541.             msg_Warn( s, I64Fd" bytes need to be skipped "
  542.                       "(access non seekable)",
  543.                       i_offset - p_sys->block.i_size );
  544.         }
  545.         else
  546.         {
  547.             int64_t i_skip = i_offset - p_sys->block.i_size;
  548.             /* Avg bytes per packets */
  549.             int i_avg = p_sys->stat.i_bytes / p_sys->stat.i_read_count;
  550.             /* TODO compute a seek cost instead of fixed threshold */
  551.             int i_th = b_aseekfast ? 1 : 5;
  552.             if( i_skip <= i_th * i_avg &&
  553.                 i_skip < STREAM_CACHE_SIZE )
  554.                 b_seek = VLC_FALSE;
  555.             else
  556.                 b_seek = VLC_TRUE;
  557.             msg_Dbg( s, "b_seek=%d th*avg=%d skip="I64Fd,
  558.                      b_seek, i_th*i_avg, i_skip );
  559.         }
  560.     }
  561.     if( b_seek )
  562.     {
  563.         int64_t i_start, i_end;
  564.         /* Do the access seek */
  565.         i_start = mdate();
  566.         if( p_access->pf_seek( p_access, i_pos ) )
  567.             return VLC_EGENERIC;
  568.         i_end = mdate();
  569.         /* Release data */
  570.         block_ChainRelease( p_sys->block.p_first );
  571.         /* Reinit */
  572.         p_sys->block.i_start = p_sys->i_pos = i_pos;
  573.         p_sys->block.i_offset = 0;
  574.         p_sys->block.p_current = NULL;
  575.         p_sys->block.i_size = 0;
  576.         p_sys->block.p_first = NULL;
  577.         p_sys->block.pp_last = &p_sys->block.p_first;
  578.         /* Refill a block */
  579.         if( AStreamRefillBlock( s ) )
  580.         {
  581.             msg_Err( s, "cannot re fill buffer" );
  582.             return VLC_EGENERIC;
  583.         }
  584.         /* Update stat */
  585.         p_sys->stat.i_seek_time += i_end - i_start;
  586.         p_sys->stat.i_seek_count++;
  587.         return VLC_SUCCESS;
  588.     }
  589.     else
  590.     {
  591.         /* Read enought data */
  592.         while( p_sys->block.i_start + p_sys->block.i_size < i_pos )
  593.         {
  594.             if( AStreamRefillBlock( s ) )
  595.             {
  596.                 msg_Err( s, "can't read enough data in seek" );
  597.                 return VLC_EGENERIC;
  598.             }
  599.             while( p_sys->block.p_current &&
  600.                    p_sys->i_pos + p_sys->block.p_current->i_buffer < i_pos )
  601.             {
  602.                 p_sys->i_pos += p_sys->block.p_current->i_buffer;
  603.                 p_sys->block.p_current = p_sys->block.p_current->p_next;
  604.             }
  605.         }
  606.         p_sys->block.i_offset = i_pos - p_sys->i_pos;
  607.         p_sys->i_pos = i_pos;
  608.         /* TODO read data */
  609.         return VLC_SUCCESS;
  610.     }
  611.     return VLC_EGENERIC;
  612. }
  613. static int AStreamRefillBlock( stream_t *s )
  614. {
  615.     stream_sys_t *p_sys = s->p_sys;
  616.     access_t     *p_access = p_sys->p_access;
  617.     int64_t      i_start, i_stop;
  618.     block_t      *b;
  619.     /* Release data */
  620.     while( p_sys->block.i_size >= STREAM_CACHE_SIZE &&
  621.            p_sys->block.p_first != p_sys->block.p_current )
  622.     {
  623.         block_t *b = p_sys->block.p_first;
  624.         p_sys->block.i_start += b->i_buffer;
  625.         p_sys->block.i_size  -= b->i_buffer;
  626.         p_sys->block.p_first  = b->p_next;
  627.         block_Release( b );
  628.     }
  629.     if( p_sys->block.i_size >= STREAM_CACHE_SIZE &&
  630.         p_sys->block.p_current == p_sys->block.p_first &&
  631.         p_sys->block.p_current->p_next )    /* At least 2 packets */
  632.     {
  633.         /* Enough data, don't read more */
  634.         return VLC_SUCCESS;
  635.     }
  636.     /* Now read a new block */
  637.     i_start = mdate();
  638.     for( ;; )
  639.     {
  640.         if( s->b_die )
  641.             return VLC_EGENERIC;
  642.         /* Fetch a block */
  643.         if( ( b = p_access->pf_block( p_access ) ) )
  644.             break;
  645.         if( p_access->info.b_eof )
  646.             return VLC_EGENERIC;
  647.         msleep( STREAM_DATA_WAIT );
  648.     }
  649.     i_stop = mdate();
  650.     /* Append the block */
  651.     p_sys->block.i_size += b->i_buffer;
  652.     *p_sys->block.pp_last = b;
  653.     p_sys->block.pp_last = &b->p_next;
  654.     /* Fix p_current */
  655.     if( p_sys->block.p_current == NULL )
  656.         p_sys->block.p_current = b;
  657.     /* Update stat */
  658.     p_sys->stat.i_bytes += b->i_buffer;
  659.     p_sys->stat.i_read_time += i_stop - i_start;
  660.     p_sys->stat.i_read_count++;
  661.     return VLC_SUCCESS;
  662. }
  663. /****************************************************************************
  664.  * Method 2:
  665.  ****************************************************************************/
  666. static int AStreamRefillStream( stream_t *s );
  667. static int AStreamReadStream( stream_t *s, void *p_read, int i_read )
  668. {
  669.     stream_sys_t *p_sys = s->p_sys;
  670.     stream_track_t *tk = &p_sys->stream.tk[p_sys->stream.i_tk];
  671.     uint8_t *p_data = (uint8_t *)p_read;
  672.     int      i_data = 0;
  673.     if( tk->i_start >= tk->i_end ) return 0; /* EOF */
  674.     if( p_read == NULL )
  675.     {
  676. /* seek within this stream if possible, else use plain old read and discard */
  677.         stream_sys_t *p_sys = s->p_sys;
  678.         access_t     *p_access = p_sys->p_access;
  679.         vlc_bool_t   b_aseek;
  680.         access2_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
  681.         if( b_aseek )
  682.             return AStreamSeekStream( s, p_sys->i_pos + i_read ) ? 0 : i_read;
  683.     }
  684. #if 0
  685.     msg_Dbg( s, "AStreamReadStream: %d pos="I64Fd" tk=%d start="I64Fd
  686.              " offset=%d end="I64Fd,
  687.              i_read, p_sys->i_pos, p_sys->stream.i_tk,
  688.              tk->i_start, p_sys->stream.i_offset, tk->i_end );
  689. #endif
  690.     while( i_data < i_read )
  691.     {
  692.         int i_off = (tk->i_start + p_sys->stream.i_offset) %
  693.                     STREAM_CACHE_TRACK_SIZE;
  694.         int i_current =
  695.             __MIN( tk->i_end - tk->i_start - p_sys->stream.i_offset,
  696.                    STREAM_CACHE_TRACK_SIZE - i_off );
  697.         int i_copy = __MIN( i_current, i_read - i_data );
  698.         if( i_copy <= 0 ) break; /* EOF */
  699.         /* Copy data */
  700.         /* msg_Dbg( s, "AStreamReadStream: copy %d", i_copy ); */
  701.         if( p_data )
  702.         {
  703.             memcpy( p_data, &tk->p_buffer[i_off], i_copy );
  704.             p_data += i_copy;
  705.         }
  706.         i_data += i_copy;
  707.         p_sys->stream.i_offset += i_copy;
  708.         /* Update pos now */
  709.         p_sys->i_pos += i_copy;
  710.         /* */
  711.         p_sys->stream.i_used += i_copy;
  712.         if( tk->i_start + p_sys->stream.i_offset >= tk->i_end ||
  713.             p_sys->stream.i_used >= p_sys->stream.i_read_size )
  714.         {
  715.             if( AStreamRefillStream( s ) )
  716.             {
  717.                 /* EOF */
  718.                 if( tk->i_start >= tk->i_end ) break;
  719.             }
  720.         }
  721.     }
  722.     return i_data;
  723. }
  724. static int AStreamPeekStream( stream_t *s, uint8_t **pp_peek, int i_read )
  725. {
  726.     stream_sys_t *p_sys = s->p_sys;
  727.     stream_track_t *tk = &p_sys->stream.tk[p_sys->stream.i_tk];
  728.     int64_t i_off;
  729.     if( tk->i_start >= tk->i_end ) return 0; /* EOF */
  730. #if 0
  731.     msg_Dbg( s, "AStreamPeekStream: %d pos="I64Fd" tk=%d "
  732.              "start="I64Fd" offset=%d end="I64Fd,
  733.              i_read, p_sys->i_pos, p_sys->stream.i_tk,
  734.              tk->i_start, p_sys->stream.i_offset, tk->i_end );
  735. #endif
  736.     /* Avoid problem, but that should *never* happen */
  737.     if( i_read > STREAM_CACHE_TRACK_SIZE / 2 )
  738.         i_read = STREAM_CACHE_TRACK_SIZE / 2;
  739.     while( tk->i_end - tk->i_start - p_sys->stream.i_offset < i_read )
  740.     {
  741.         if( p_sys->stream.i_used <= 1 )
  742.         {
  743.             /* Be sure we will read something */
  744.             p_sys->stream.i_used += i_read - (tk->i_end - tk->i_start - p_sys->stream.i_offset);
  745.         }
  746.         if( AStreamRefillStream( s ) )
  747.             break;
  748.     }
  749.     if( tk->i_end - tk->i_start - p_sys->stream.i_offset < i_read )
  750.         i_read = tk->i_end - tk->i_start - p_sys->stream.i_offset;
  751.     /* Now, direct pointer or a copy ? */
  752.     i_off = (tk->i_start + p_sys->stream.i_offset) % STREAM_CACHE_TRACK_SIZE;
  753.     if( i_off + i_read <= STREAM_CACHE_TRACK_SIZE )
  754.     {
  755.         *pp_peek = &tk->p_buffer[i_off];
  756.         return i_read;
  757.     }
  758.     if( p_sys->i_peek < i_read )
  759.     {
  760.         if( p_sys->p_peek ) free( p_sys->p_peek );
  761.         p_sys->i_peek = i_read;
  762.         p_sys->p_peek = malloc( i_read );
  763.     }
  764.     memcpy( p_sys->p_peek, &tk->p_buffer[i_off],
  765.             STREAM_CACHE_TRACK_SIZE - i_off );
  766.     memcpy( &p_sys->p_peek[STREAM_CACHE_TRACK_SIZE - i_off],
  767.             &tk->p_buffer[0], i_read - (STREAM_CACHE_TRACK_SIZE - i_off) );
  768.     *pp_peek = p_sys->p_peek;
  769.     return i_read;
  770. }
  771. static int AStreamSeekStream( stream_t *s, int64_t i_pos )
  772. {
  773.     stream_sys_t *p_sys = s->p_sys;
  774.     access_t     *p_access = p_sys->p_access;
  775.     vlc_bool_t   b_aseek;
  776.     vlc_bool_t   b_afastseek;
  777.     int i_maxth;
  778.     int i_new;
  779.     int i;
  780. #if 0
  781.     msg_Dbg( s, "AStreamSeekStream: to "I64Fd" pos="I64Fd
  782.              "tk=%d start="I64Fd" offset=%d end="I64Fd,
  783.              i_pos, p_sys->i_pos, p_sys->stream.i_tk,
  784.              p_sys->stream.tk[p_sys->stream.i_tk].i_start,
  785.              p_sys->stream.i_offset,
  786.              p_sys->stream.tk[p_sys->stream.i_tk].i_end );
  787. #endif
  788.     /* Seek in our current track ? */
  789.     if( i_pos >= p_sys->stream.tk[p_sys->stream.i_tk].i_start &&
  790.         i_pos < p_sys->stream.tk[p_sys->stream.i_tk].i_end )
  791.     {
  792.         //msg_Dbg( s, "AStreamSeekStream: current track" );
  793.         p_sys->i_pos = i_pos;
  794.         p_sys->stream.i_offset = i_pos - p_sys->stream.tk[p_sys->stream.i_tk].i_start;
  795.         return VLC_SUCCESS;
  796.     }
  797.     access2_Control( p_access, ACCESS_CAN_SEEK, &b_aseek );
  798.     if( !b_aseek )
  799.     {
  800.         /* We can't do nothing */
  801.         msg_Dbg( s, "AStreamSeekStream: can't seek" );
  802.         return VLC_EGENERIC;
  803.     }
  804.     /* Date the current track */
  805.     p_sys->stream.tk[p_sys->stream.i_tk].i_date = mdate();
  806.     /* Try to reuse already read data */
  807.     for( i = 0; i < STREAM_CACHE_TRACK; i++ )
  808.     {
  809.         stream_track_t *tk = &p_sys->stream.tk[i];
  810.         if( i_pos >= tk->i_start && i_pos <= tk->i_end )
  811.         {
  812. #if 0
  813.             msg_Dbg( s, "AStreamSeekStream: reusing %d start="I64Fd
  814.                      " end="I64Fd, i, tk->i_start, tk->i_end );
  815. #endif
  816.             /* Seek at the end of the buffer */
  817.             if( p_access->pf_seek( p_access, tk->i_end ) )
  818.                 return VLC_EGENERIC;
  819.             /* That's it */
  820.             p_sys->i_pos = i_pos;
  821.             p_sys->stream.i_tk = i;
  822.             p_sys->stream.i_offset = i_pos - tk->i_start;
  823.             if( p_sys->stream.i_used < 1024 )
  824.                 p_sys->stream.i_used = 1024;
  825.             if( AStreamRefillStream( s ) )
  826.                 return VLC_EGENERIC;
  827.             return VLC_SUCCESS;
  828.         }
  829.     }
  830.     access2_Control( p_access, ACCESS_CAN_SEEK, &b_afastseek );
  831.     /* FIXME compute seek cost (instead of static 'stupid' value) */
  832.     i_maxth = __MIN( p_sys->stream.i_read_size, STREAM_READ_ATONCE / 2 );
  833.     if( !b_afastseek )
  834.         i_maxth *= 3;
  835.     /* FIXME TODO */
  836. #if 0
  837.     /* Search closest segment TODO */
  838.     for( i = 0; i < STREAM_CACHE_TRACK; i++ )
  839.     {
  840.         stream_track_t *tk = &p_sys->stream.tk[i];
  841.         if( i_pos + i_maxth >= tk->i_start )
  842.         {
  843.             msg_Dbg( s, "good segment before current pos, TODO" );
  844.         }
  845.         if( i_pos - i_maxth <= tk->i_end )
  846.         {
  847.             msg_Dbg( s, "good segment after current pos, TODO" );
  848.         }
  849.     }
  850. #endif
  851.     /* Nothing good, seek and choose oldest segment */
  852.     if( p_access->pf_seek( p_access, i_pos ) )
  853.         return VLC_EGENERIC;
  854.     p_sys->i_pos = i_pos;
  855.     i_new = 0;
  856.     for( i = 1; i < STREAM_CACHE_TRACK; i++ )
  857.     {
  858.         if( p_sys->stream.tk[i].i_date < p_sys->stream.tk[i_new].i_date )
  859.             i_new = i;
  860.     }
  861.     /* Reset the segment */
  862.     p_sys->stream.i_tk     = i_new;
  863.     p_sys->stream.i_offset =  0;
  864.     p_sys->stream.tk[i_new].i_start = i_pos;
  865.     p_sys->stream.tk[i_new].i_end   = i_pos;
  866.     /* Read data */
  867.     if( p_sys->stream.i_used < STREAM_READ_ATONCE / 2 )
  868.         p_sys->stream.i_used = STREAM_READ_ATONCE / 2;
  869.     if( AStreamRefillStream( s ) )
  870.         return VLC_EGENERIC;
  871.     return VLC_SUCCESS;
  872. }
  873. static int AStreamRefillStream( stream_t *s )
  874. {
  875.     stream_sys_t *p_sys = s->p_sys;
  876.     access_t     *p_access = p_sys->p_access;
  877.     stream_track_t *tk = &p_sys->stream.tk[p_sys->stream.i_tk];
  878.     /* We read but won't increase i_start after initial start + offset */
  879.     int i_toread =
  880.         __MIN( p_sys->stream.i_used, STREAM_CACHE_TRACK_SIZE -
  881.                (tk->i_end - tk->i_start - p_sys->stream.i_offset) );
  882.     vlc_bool_t b_read = VLC_FALSE;
  883.     int64_t i_start, i_stop;
  884.     if( i_toread <= 0 ) return VLC_EGENERIC; /* EOF */
  885.     /* msg_Dbg( s, "AStreamRefillStream: toread=%d", i_toread ); */
  886.     i_start = mdate();
  887.     while( i_toread > 0 )
  888.     {
  889.         int i_off = tk->i_end % STREAM_CACHE_TRACK_SIZE;
  890.         int i_read;
  891.         if( s->b_die )
  892.             return VLC_EGENERIC;
  893.         i_read = __MIN( i_toread, STREAM_CACHE_TRACK_SIZE - i_off );
  894.         i_read = p_access->pf_read( p_access, &tk->p_buffer[i_off], i_read );
  895.         /* msg_Dbg( s, "AStreamRefillStream: read=%d", i_read ); */
  896.         if( i_read <  0 )
  897.         {
  898.             msleep( STREAM_DATA_WAIT );
  899.             continue;
  900.         }
  901.         else if( i_read == 0 )
  902.         {
  903.             if( !b_read )
  904.                 return VLC_EGENERIC;
  905.             return VLC_SUCCESS;
  906.         }
  907.         b_read = VLC_TRUE;
  908.         /* Update end */
  909.         tk->i_end += i_read;
  910.         /* Windows of STREAM_CACHE_TRACK_SIZE */
  911.         if( tk->i_end - tk->i_start > STREAM_CACHE_TRACK_SIZE )
  912.         {
  913.             int i_invalid = tk->i_end - tk->i_start - STREAM_CACHE_TRACK_SIZE;
  914.             tk->i_start += i_invalid;
  915.             p_sys->stream.i_offset -= i_invalid;
  916.         }
  917.         i_toread -= i_read;
  918.         p_sys->stream.i_used -= i_read;
  919.         p_sys->stat.i_bytes += i_read;
  920.         p_sys->stat.i_read_count++;
  921.     }
  922.     i_stop = mdate();
  923.     p_sys->stat.i_read_time += i_stop - i_start;
  924.     return VLC_SUCCESS;
  925. }
  926. static void AStreamPrebufferStream( stream_t *s )
  927. {
  928.     stream_sys_t *p_sys = s->p_sys;
  929.     access_t     *p_access = p_sys->p_access;
  930.     int64_t i_first = 0;
  931.     int64_t i_start;
  932.     int64_t i_prebuffer = (s->p_sys->p_access->info.i_title > 1 ||
  933.                            s->p_sys->p_access->info.i_seekpoint > 1) ? STREAM_CACHE_PREBUFFER_SIZE : STREAM_CACHE_TRACK_SIZE / 3;
  934.     msg_Dbg( s, "pre buffering" );
  935.     i_start = mdate();
  936.     for( ;; )
  937.     {
  938.         stream_track_t *tk = &p_sys->stream.tk[p_sys->stream.i_tk];
  939.         int64_t i_date = mdate();
  940.         int i_read;
  941.         if( s->b_die || tk->i_end >= i_prebuffer ||
  942.             (i_first > 0 && i_first + STREAM_CACHE_PREBUFFER_LENGTH < i_date) )
  943.         {
  944.             int64_t i_byterate;
  945.             /* Update stat */
  946.             p_sys->stat.i_bytes = tk->i_end - tk->i_start;
  947.             p_sys->stat.i_read_time = i_date - i_start;
  948.             i_byterate = ( I64C(1000000) * p_sys->stat.i_bytes ) /
  949.                          (p_sys->stat.i_read_time+1);
  950.             msg_Dbg( s, "prebuffering done "I64Fd" bytes in "I64Fd"s - "
  951.                      I64Fd" kbytes/s",
  952.                      p_sys->stat.i_bytes,
  953.                      p_sys->stat.i_read_time / I64C(1000000),
  954.                      i_byterate / 1024 );
  955.             break;
  956.         }
  957.         /* */
  958.         i_read = STREAM_CACHE_TRACK_SIZE - tk->i_end;
  959.         i_read = __MIN( p_sys->stream.i_read_size, i_read );
  960.         i_read = p_access->pf_read( p_access, &tk->p_buffer[tk->i_end],
  961.                                     i_read );
  962.         if( i_read <  0 )
  963.         {
  964.             msleep( STREAM_DATA_WAIT );
  965.             continue;
  966.         }
  967.         else if( i_read == 0 )
  968.         {
  969.             /* EOF */
  970.             break;
  971.         }
  972.         if( i_first == 0 )
  973.         {
  974.             i_first = mdate();
  975.             msg_Dbg( s, "received first data for our buffer");
  976.         }
  977.         tk->i_end += i_read;
  978.         p_sys->stat.i_read_count++;
  979.     }
  980. }
  981. /****************************************************************************
  982.  * stream_ReadLine:
  983.  ****************************************************************************/
  984. /**
  985.  * Read from the stream untill first newline.
  986.  * param s Stream handle to read from
  987.  * return A null-terminated string. This must be freed,
  988.  */
  989. #define STREAM_PROBE_LINE 2048
  990. #define STREAM_LINE_MAX (2048*100)
  991. char *stream_ReadLine( stream_t *s )
  992. {
  993.     char *p_line = NULL;
  994.     int i_line = 0, i_read = 0;
  995.     while( i_read < STREAM_LINE_MAX )
  996.     {
  997.         char *psz_eol;
  998.         uint8_t *p_data;
  999.         int i_data;
  1000.         /* Probe new data */
  1001.         i_data = stream_Peek( s, &p_data, STREAM_PROBE_LINE );
  1002.         if( i_data <= 0 ) break; /* No more data */
  1003.         /* Check if there is an EOL */
  1004.         if( ( psz_eol = memchr( p_data, 'n', i_data ) ) )
  1005.         {
  1006.             i_data = (psz_eol - (char *)p_data) + 1;
  1007.             p_line = realloc( p_line, i_line + i_data + 1 );
  1008.             i_data = stream_Read( s, &p_line[i_line], i_data );
  1009.             if( i_data <= 0 ) break; /* Hmmm */
  1010.             i_line += (i_data - 1);
  1011.             i_read += i_data;
  1012.             /* We have our line */
  1013.             break;
  1014.         }
  1015.         /* Read data (+1 for easy  append) */
  1016.         p_line = realloc( p_line, i_line + STREAM_PROBE_LINE + 1 );
  1017.         i_data = stream_Read( s, &p_line[i_line], STREAM_PROBE_LINE );
  1018.         if( i_data <= 0 ) break; /* Hmmm */
  1019.         i_line += i_data;
  1020.         i_read += i_data;
  1021.     }
  1022.     /* Remove trailing LF/CR */
  1023.     while( i_line > 0 && ( p_line[i_line-1] == 'r' ||
  1024.            p_line[i_line-1] == 'n') ) i_line--;
  1025.     if( i_read > 0 )
  1026.     {
  1027.         p_line[i_line] = '';
  1028.         return p_line;
  1029.     }
  1030.     /* We failed to read any data, probably EOF */
  1031.     if( p_line ) free( p_line );
  1032.     return NULL;
  1033. }