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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * udp.c: raw UDP input module
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2005 the VideoLAN team
  5.  * Copyright (C) 2007 Remi Denis-Courmont
  6.  * $Id: 433ccfb98e822b13217c07391cfaaea885f89ecb $
  7.  *
  8.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  9.  *          Tristan Leteurtre <tooney@via.ecp.fr>
  10.  *          Laurent Aimar <fenrir@via.ecp.fr>
  11.  *          Jean-Paul Saman <jpsaman #_at_# m2x dot nl>
  12.  *          Remi Denis-Courmont
  13.  *
  14.  * Reviewed: 23 October 2003, Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
  15.  *
  16.  * This program is free software; you can redistribute it and/or modify
  17.  * it under the terms of the GNU General Public License as published by
  18.  * the Free Software Foundation; either version 2 of the License, or
  19.  * (at your option) any later version.
  20.  *
  21.  * This program is distributed in the hope that it will be useful,
  22.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24.  * GNU General Public License for more details.
  25.  *
  26.  * You should have received a copy of the GNU General Public License
  27.  * along with this program; if not, write to the Free Software
  28.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  29.  *****************************************************************************/
  30. /*****************************************************************************
  31.  * Preamble
  32.  *****************************************************************************/
  33. #ifdef HAVE_CONFIG_H
  34. # include "config.h"
  35. #endif
  36. #include <vlc_common.h>
  37. #include <vlc_plugin.h>
  38. #include <vlc_access.h>
  39. #include <vlc_network.h>
  40. #define MTU 65535
  41. /*****************************************************************************
  42.  * Module descriptor
  43.  *****************************************************************************/
  44. #define CACHING_TEXT N_("Caching value in ms")
  45. #define CACHING_LONGTEXT N_( 
  46.     "Caching value for UDP streams. This " 
  47.     "value should be set in milliseconds." )
  48. static int  Open ( vlc_object_t * );
  49. static void Close( vlc_object_t * );
  50. vlc_module_begin ()
  51.     set_shortname( N_("UDP" ) )
  52.     set_description( N_("UDP input") )
  53.     set_category( CAT_INPUT )
  54.     set_subcategory( SUBCAT_INPUT_ACCESS )
  55.     add_integer( "udp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
  56.                  CACHING_LONGTEXT, true )
  57.         change_safe()
  58.     add_obsolete_integer( "rtp-late" )
  59.     add_obsolete_bool( "udp-auto-mtu" )
  60.     set_capability( "access", 0 )
  61.     add_shortcut( "udp" )
  62.     add_shortcut( "udpstream" )
  63.     add_shortcut( "udp4" )
  64.     add_shortcut( "udp6" )
  65.     set_callbacks( Open, Close )
  66. vlc_module_end ()
  67. /*****************************************************************************
  68.  * Local prototypes
  69.  *****************************************************************************/
  70. #define RTP_HEADER_LEN 12
  71. static block_t *BlockUDP( access_t * );
  72. static int Control( access_t *, int, va_list );
  73. /*****************************************************************************
  74.  * Open: open the socket
  75.  *****************************************************************************/
  76. static int Open( vlc_object_t *p_this )
  77. {
  78.     access_t     *p_access = (access_t*)p_this;
  79.     char *psz_name = strdup( p_access->psz_path );
  80.     char *psz_parser;
  81.     const char *psz_server_addr, *psz_bind_addr = "";
  82.     int  i_bind_port, i_server_port = 0;
  83.     int fam = AF_UNSPEC;
  84.     int fd;
  85.     /* Set up p_access */
  86.     access_InitFields( p_access );
  87.     ACCESS_SET_CALLBACKS( NULL, BlockUDP, Control, NULL );
  88.     if (strlen (p_access->psz_access) > 0)
  89.     {
  90.         switch (p_access->psz_access[strlen (p_access->psz_access) - 1])
  91.         {
  92.             case '4':
  93.                 fam = AF_INET;
  94.                 break;
  95.             case '6':
  96.                 fam = AF_INET6;
  97.                 break;
  98.         }
  99.     }
  100.     i_bind_port = var_CreateGetInteger( p_access, "server-port" );
  101.     /* Parse psz_name syntax :
  102.      * [serveraddr[:serverport]][@[bindaddr]:[bindport]] */
  103.     psz_parser = strchr( psz_name, '@' );
  104.     if( psz_parser != NULL )
  105.     {
  106.         /* Found bind address and/or bind port */
  107.         *psz_parser++ = '';
  108.         psz_bind_addr = psz_parser;
  109.         if( psz_bind_addr[0] == '[' )
  110.             /* skips bracket'd IPv6 address */
  111.             psz_parser = strchr( psz_parser, ']' );
  112.         if( psz_parser != NULL )
  113.         {
  114.             psz_parser = strchr( psz_parser, ':' );
  115.             if( psz_parser != NULL )
  116.             {
  117.                 *psz_parser++ = '';
  118.                 i_bind_port = atoi( psz_parser );
  119.             }
  120.         }
  121.     }
  122.     psz_server_addr = psz_name;
  123.     psz_parser = ( psz_server_addr[0] == '[' )
  124.         ? strchr( psz_name, ']' ) /* skips bracket'd IPv6 address */
  125.         : psz_name;
  126.     if( psz_parser != NULL )
  127.     {
  128.         psz_parser = strchr( psz_parser, ':' );
  129.         if( psz_parser != NULL )
  130.         {
  131.             *psz_parser++ = '';
  132.             i_server_port = atoi( psz_parser );
  133.         }
  134.     }
  135.     msg_Dbg( p_access, "opening server=%s:%d local=%s:%d",
  136.              psz_server_addr, i_server_port, psz_bind_addr, i_bind_port );
  137.     fd = net_OpenDgram( p_access, psz_bind_addr, i_bind_port,
  138.                         psz_server_addr, i_server_port, fam, IPPROTO_UDP );
  139.     free (psz_name);
  140.     if( fd == -1 )
  141.     {
  142.         msg_Err( p_access, "cannot open socket" );
  143.         return VLC_EGENERIC;
  144.     }
  145.     p_access->p_sys = (void *)(intptr_t)fd;
  146.     /* Update default_pts to a suitable value for udp access */
  147.     var_Create( p_access, "udp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  148.     return VLC_SUCCESS;
  149. }
  150. /*****************************************************************************
  151.  * Close: free unused data structures
  152.  *****************************************************************************/
  153. static void Close( vlc_object_t *p_this )
  154. {
  155.     access_t     *p_access = (access_t*)p_this;
  156.     net_Close( (intptr_t)p_access->p_sys );
  157. }
  158. /*****************************************************************************
  159.  * Control:
  160.  *****************************************************************************/
  161. static int Control( access_t *p_access, int i_query, va_list args )
  162. {
  163.     bool    *pb_bool;
  164.     int64_t *pi_64;
  165.     switch( i_query )
  166.     {
  167.         /* */
  168.         case ACCESS_CAN_SEEK:
  169.         case ACCESS_CAN_FASTSEEK:
  170.         case ACCESS_CAN_PAUSE:
  171.         case ACCESS_CAN_CONTROL_PACE:
  172.             pb_bool = (bool*)va_arg( args, bool* );
  173.             *pb_bool = false;
  174.             break;
  175.         /* */
  176.         case ACCESS_GET_PTS_DELAY:
  177.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  178.             *pi_64 = var_GetInteger( p_access, "udp-caching" ) * 1000;
  179.             break;
  180.         /* */
  181.         case ACCESS_SET_PAUSE_STATE:
  182.         case ACCESS_GET_TITLE_INFO:
  183.         case ACCESS_SET_TITLE:
  184.         case ACCESS_SET_SEEKPOINT:
  185.         case ACCESS_SET_PRIVATE_ID_STATE:
  186.         case ACCESS_GET_CONTENT_TYPE:
  187.             return VLC_EGENERIC;
  188.         default:
  189.             msg_Warn( p_access, "unimplemented query in control" );
  190.             return VLC_EGENERIC;
  191.     }
  192.     return VLC_SUCCESS;
  193. }
  194. /*****************************************************************************
  195.  * BlockUDP:
  196.  *****************************************************************************/
  197. static block_t *BlockUDP( access_t *p_access )
  198. {
  199.     access_sys_t *p_sys = p_access->p_sys;
  200.     block_t      *p_block;
  201.     ssize_t len;
  202.     if( p_access->info.b_eof )
  203.         return NULL;
  204.     /* Read data */
  205.     p_block = block_New( p_access, MTU );
  206.     len = net_Read( p_access, (intptr_t)p_sys, NULL,
  207.                     p_block->p_buffer, MTU, false );
  208.     if( len < 0 )
  209.     {
  210.         block_Release( p_block );
  211.         return NULL;
  212.     }
  213.     return block_Realloc( p_block, 0, len );
  214. }