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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * tcp.c: TCP input module
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 VideoLAN
  5.  * $Id: tcp.c 8606 2004-08-31 18:32:54Z hartman $
  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. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>
  27. #include <vlc/vlc.h>
  28. #include <vlc/input.h>
  29. #include "network.h"
  30. /*****************************************************************************
  31.  * Module descriptor
  32.  *****************************************************************************/
  33. #define CACHING_TEXT N_("Caching value in ms")
  34. #define CACHING_LONGTEXT N_( 
  35.     "Allows you to modify the default caching value for TCP streams. This " 
  36.     "value should be set in millisecond units." )
  37. static int  Open ( vlc_object_t * );
  38. static void Close( vlc_object_t * );
  39. vlc_module_begin();
  40.     set_description( _("TCP input") );
  41.     add_integer( "tcp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
  42.                  CACHING_LONGTEXT, VLC_TRUE );
  43.     set_capability( "access2", 0 );
  44.     add_shortcut( "tcp" );
  45.     set_callbacks( Open, Close );
  46. vlc_module_end();
  47. /*****************************************************************************
  48.  * Local prototypes
  49.  *****************************************************************************/
  50. struct access_sys_t
  51. {
  52.     int        fd;
  53. };
  54. static int Read( access_t *, uint8_t *, int );
  55. static int Control( access_t *, int, va_list );
  56. /*****************************************************************************
  57.  * Open: open the socket
  58.  *****************************************************************************/
  59. static int Open( vlc_object_t *p_this )
  60. {
  61.     access_t     *p_access = (access_t *)p_this;
  62.     access_sys_t *p_sys;
  63.     char         *psz_dup = strdup(p_access->psz_path);
  64.     char         *psz_parser = psz_dup;
  65.     /* Parse server:port */
  66.     while( *psz_parser && *psz_parser != ':' )
  67.     {
  68.         if( *psz_parser == '[' )
  69.         {
  70.             /* IPV6 */
  71.             while( *psz_parser && *psz_parser  != ']' )
  72.             {
  73.                 psz_parser++;
  74.             }
  75.         }
  76.         psz_parser++;
  77.     }
  78.     if( *psz_parser != ':' || psz_parser == psz_dup )
  79.     {
  80.         msg_Err( p_access, "you have to provide server:port addresse" );
  81.         free( psz_dup );
  82.         return VLC_EGENERIC;
  83.     }
  84.     *psz_parser++ = '';
  85.     if( atoi( psz_parser ) <= 0 )
  86.     {
  87.         msg_Err( p_access, "invalid port number (%d)", atoi( psz_parser ) );
  88.         free( psz_dup );
  89.         return VLC_EGENERIC;
  90.     }
  91.     /* Init p_access */
  92.     p_access->pf_read = Read;
  93.     p_access->pf_block = NULL;
  94.     p_access->pf_control = Control;
  95.     p_access->pf_seek = NULL;
  96.     p_access->info.i_update = 0;
  97.     p_access->info.i_size = 0;
  98.     p_access->info.i_pos = 0;
  99.     p_access->info.b_eof = VLC_FALSE;
  100.     p_access->info.i_title = 0;
  101.     p_access->info.i_seekpoint = 0;
  102.     p_access->p_sys = p_sys = malloc( sizeof( access_sys_t ) );
  103.     p_sys->fd = net_OpenTCP( p_access, psz_dup, atoi( psz_parser ) );
  104.     free( psz_dup );
  105.     if( p_sys->fd < 0 )
  106.     {
  107.         free( p_sys );
  108.         return VLC_EGENERIC;
  109.     }
  110.     /* Update default_pts to a suitable value for udp access */
  111.     var_Create( p_access, "tcp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  112.     return VLC_SUCCESS;
  113. }
  114. /*****************************************************************************
  115.  * Close: free unused data structures
  116.  *****************************************************************************/
  117. static void Close( vlc_object_t *p_this )
  118. {
  119.     access_t     *p_access = (access_t *)p_this;
  120.     access_sys_t *p_sys = p_access->p_sys;
  121.     net_Close( p_sys->fd );
  122.     free( p_sys );
  123. }
  124. /*****************************************************************************
  125.  * Read: read on a file descriptor, checking b_die periodically
  126.  *****************************************************************************/
  127. static int Read( access_t *p_access, uint8_t *p_buffer, int i_len )
  128. {
  129.     access_sys_t *p_sys = p_access->p_sys;
  130.     int i_read;
  131.     if( p_access->info.b_eof )
  132.         return 0;
  133.     i_read = net_Read( p_access, p_sys->fd, p_buffer, i_len, VLC_FALSE );
  134.     if( i_read == 0 )
  135.         p_access->info.b_eof = VLC_TRUE;
  136.     else if( i_read > 0 )
  137.         p_access->info.i_pos += i_read;
  138.     return i_read;
  139. }
  140. /*****************************************************************************
  141.  * Control:
  142.  *****************************************************************************/
  143. static int Control( access_t *p_access, int i_query, va_list args )
  144. {
  145.     vlc_bool_t   *pb_bool;
  146.     int          *pi_int;
  147.     int64_t      *pi_64;
  148.     switch( i_query )
  149.     {
  150.         /* */
  151.         case ACCESS_CAN_SEEK:
  152.         case ACCESS_CAN_FASTSEEK:
  153.             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
  154.             *pb_bool = VLC_FALSE;
  155.             break;
  156.         case ACCESS_CAN_PAUSE:
  157.             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
  158.             *pb_bool = VLC_TRUE;    /* FIXME */
  159.             break;
  160.         case ACCESS_CAN_CONTROL_PACE:
  161.             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
  162.             *pb_bool = VLC_TRUE;    /* FIXME */
  163.             break;
  164.         /* */
  165.         case ACCESS_GET_MTU:
  166.             pi_int = (int*)va_arg( args, int * );
  167.             *pi_int = 0;
  168.             break;
  169.         case ACCESS_GET_PTS_DELAY:
  170.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  171.             *pi_64 = (int64_t)var_GetInteger( p_access, "tcp-caching" ) * I64C(1000);
  172.             break;
  173.         /* */
  174.         case ACCESS_SET_PAUSE_STATE:
  175.             /* Nothing to do */
  176.             break;
  177.         case ACCESS_GET_TITLE_INFO:
  178.         case ACCESS_SET_TITLE:
  179.         case ACCESS_SET_SEEKPOINT:
  180.         case ACCESS_SET_PRIVATE_ID_STATE:
  181.             return VLC_EGENERIC;
  182.         default:
  183.             msg_Warn( p_access, "unimplemented query in control" );
  184.             return VLC_EGENERIC;
  185.     }
  186.     return VLC_SUCCESS;
  187. }