tcp.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:6k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * tcp.c: TCP input module
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 the VideoLAN team
  5.  * $Id: 6c2d50aecacbdedec92cceac1bc2fb0286fe6f6b $
  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.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_access.h>
  32. #include <vlc_network.h>
  33. /*****************************************************************************
  34.  * Module descriptor
  35.  *****************************************************************************/
  36. #define CACHING_TEXT N_("Caching value in ms")
  37. #define CACHING_LONGTEXT N_( 
  38.     "Caching value for TCP streams. This " 
  39.     "value should be set in milliseconds." )
  40. static int  Open ( vlc_object_t * );
  41. static void Close( vlc_object_t * );
  42. vlc_module_begin ()
  43.     set_shortname( N_("TCP") )
  44.     set_description( N_("TCP input") )
  45.     set_category( CAT_INPUT )
  46.     set_subcategory( SUBCAT_INPUT_ACCESS )
  47.     add_integer( "tcp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
  48.                  CACHING_LONGTEXT, true )
  49.         change_safe()
  50.     set_capability( "access", 0 )
  51.     add_shortcut( "tcp" )
  52.     set_callbacks( Open, Close )
  53. vlc_module_end ()
  54. /*****************************************************************************
  55.  * Local prototypes
  56.  *****************************************************************************/
  57. struct access_sys_t
  58. {
  59.     int        fd;
  60. };
  61. static ssize_t Read( access_t *, uint8_t *, size_t );
  62. static int Control( access_t *, int, va_list );
  63. /*****************************************************************************
  64.  * Open: open the socket
  65.  *****************************************************************************/
  66. static int Open( vlc_object_t *p_this )
  67. {
  68.     access_t     *p_access = (access_t *)p_this;
  69.     access_sys_t *p_sys;
  70.     char         *psz_dup = strdup(p_access->psz_path);
  71.     char         *psz_parser = psz_dup;
  72.     /* Parse server:port */
  73.     if( *psz_parser == '[' )
  74.     {
  75.         psz_parser = strchr( psz_parser, ']' );
  76.         if( psz_parser == NULL )
  77.             psz_parser = psz_dup;
  78.     }
  79.     psz_parser = strchr( psz_parser, ':' );
  80.     if( psz_parser == NULL )
  81.     {
  82.         msg_Err( p_access, "missing port number : %s", psz_dup );
  83.         free( psz_dup );
  84.         return VLC_EGENERIC;
  85.     }
  86.     *psz_parser++ = '';
  87.     /* Init p_access */
  88.     access_InitFields( p_access );
  89.     ACCESS_SET_CALLBACKS( Read, NULL, Control, NULL );
  90.     p_sys = p_access->p_sys = calloc( 1, sizeof( access_sys_t ) );
  91.     if( !p_sys )
  92.     {
  93.         free( psz_dup );
  94.         return VLC_ENOMEM;
  95.     }
  96.     p_sys->fd = net_ConnectTCP( p_access, psz_dup, atoi( psz_parser ) );
  97.     free( psz_dup );
  98.     if( p_sys->fd < 0 )
  99.     {
  100.         free( p_sys );
  101.         return VLC_EGENERIC;
  102.     }
  103.     /* Update default_pts to a suitable value for udp access */
  104.     var_Create( p_access, "tcp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  105.     return VLC_SUCCESS;
  106. }
  107. /*****************************************************************************
  108.  * Close: free unused data structures
  109.  *****************************************************************************/
  110. static void Close( vlc_object_t *p_this )
  111. {
  112.     access_t     *p_access = (access_t *)p_this;
  113.     access_sys_t *p_sys = p_access->p_sys;
  114.     net_Close( p_sys->fd );
  115.     free( p_sys );
  116. }
  117. /*****************************************************************************
  118.  * Read: read on a file descriptor
  119.  *****************************************************************************/
  120. static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len )
  121. {
  122.     access_sys_t *p_sys = p_access->p_sys;
  123.     int i_read;
  124.     if( p_access->info.b_eof )
  125.         return 0;
  126.     i_read = net_Read( p_access, p_sys->fd, NULL, p_buffer, i_len,
  127.                        false );
  128.     if( i_read == 0 )
  129.         p_access->info.b_eof = true;
  130.     else if( i_read > 0 )
  131.         p_access->info.i_pos += i_read;
  132.     return i_read;
  133. }
  134. /*****************************************************************************
  135.  * Control:
  136.  *****************************************************************************/
  137. static int Control( access_t *p_access, int i_query, va_list args )
  138. {
  139.     bool    *pb_bool;
  140.     int64_t *pi_64;
  141.     switch( i_query )
  142.     {
  143.         /* */
  144.         case ACCESS_CAN_SEEK:
  145.         case ACCESS_CAN_FASTSEEK:
  146.             pb_bool = (bool*)va_arg( args, bool* );
  147.             *pb_bool = false;
  148.             break;
  149.         case ACCESS_CAN_PAUSE:
  150.             pb_bool = (bool*)va_arg( args, bool* );
  151.             *pb_bool = true;    /* FIXME */
  152.             break;
  153.         case ACCESS_CAN_CONTROL_PACE:
  154.             pb_bool = (bool*)va_arg( args, bool* );
  155.             *pb_bool = true;    /* FIXME */
  156.             break;
  157.         case ACCESS_GET_PTS_DELAY:
  158.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  159.             *pi_64 = (int64_t)var_GetInteger( p_access, "tcp-caching" ) * INT64_C(1000);
  160.             break;
  161.         /* */
  162.         case ACCESS_SET_PAUSE_STATE:
  163.             /* Nothing to do */
  164.             break;
  165.         case ACCESS_GET_TITLE_INFO:
  166.         case ACCESS_SET_TITLE:
  167.         case ACCESS_SET_SEEKPOINT:
  168.         case ACCESS_SET_PRIVATE_ID_STATE:
  169.         case ACCESS_GET_CONTENT_TYPE:
  170.             return VLC_EGENERIC;
  171.         default:
  172.             msg_Warn( p_access, "unimplemented query in control" );
  173.             return VLC_EGENERIC;
  174.     }
  175.     return VLC_SUCCESS;
  176. }