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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * udp.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2007 the VideoLAN team
  5.  * $Id: dae64f1e477c6adf1f2a42e85680276a67252dc7 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Eric Petit <titer@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <sys/types.h>
  33. #include <sys/stat.h>
  34. #include <errno.h>
  35. #include <fcntl.h>
  36. #include <assert.h>
  37. #include <vlc_sout.h>
  38. #include <vlc_block.h>
  39. #ifdef HAVE_UNISTD_H
  40. #   include <unistd.h>
  41. #endif
  42. #ifdef WIN32
  43. #   include <winsock2.h>
  44. #   include <ws2tcpip.h>
  45. #else
  46. #   include <sys/socket.h>
  47. #endif
  48. #include <vlc_network.h>
  49. #define MAX_EMPTY_BLOCKS 200
  50. /*****************************************************************************
  51.  * Module descriptor
  52.  *****************************************************************************/
  53. static int  Open ( vlc_object_t * );
  54. static void Close( vlc_object_t * );
  55. #define SOUT_CFG_PREFIX "sout-udp-"
  56. #define CACHING_TEXT N_("Caching value (ms)")
  57. #define CACHING_LONGTEXT N_( 
  58.     "Default caching value for outbound UDP streams. This " 
  59.     "value should be set in milliseconds." )
  60. #define GROUP_TEXT N_("Group packets")
  61. #define GROUP_LONGTEXT N_("Packets can be sent one by one at the right time " 
  62.                           "or by groups. You can choose the number " 
  63.                           "of packets that will be sent at a time. It " 
  64.                           "helps reducing the scheduling load on " 
  65.                           "heavily-loaded systems." )
  66. vlc_module_begin ()
  67.     set_description( N_("UDP stream output") )
  68.     set_shortname( "UDP" )
  69.     set_category( CAT_SOUT )
  70.     set_subcategory( SUBCAT_SOUT_ACO )
  71.     add_integer( SOUT_CFG_PREFIX "caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, true )
  72.     add_integer( SOUT_CFG_PREFIX "group", 1, NULL, GROUP_TEXT, GROUP_LONGTEXT,
  73.                                  true )
  74.     add_obsolete_integer( SOUT_CFG_PREFIX "late" )
  75.     add_obsolete_bool( SOUT_CFG_PREFIX "raw" )
  76.     set_capability( "sout access", 0 )
  77.     add_shortcut( "udp" )
  78.     set_callbacks( Open, Close )
  79. vlc_module_end ()
  80. /*****************************************************************************
  81.  * Exported prototypes
  82.  *****************************************************************************/
  83. static const char *const ppsz_sout_options[] = {
  84.     "caching",
  85.     "group",
  86.     NULL
  87. };
  88. /* Options handled by the libvlc network core */
  89. static const char *const ppsz_core_options[] = {
  90.     "dscp",
  91.     "ttl",
  92.     "miface",
  93.     "miface-addr",
  94.     NULL
  95. };
  96. static ssize_t Write   ( sout_access_out_t *, block_t * );
  97. static int  Seek    ( sout_access_out_t *, off_t  );
  98. static int Control( sout_access_out_t *, int, va_list );
  99. static void* ThreadWrite( void * );
  100. static block_t *NewUDPPacket( sout_access_out_t *, mtime_t );
  101. struct sout_access_out_sys_t
  102. {
  103.     mtime_t       i_caching;
  104.     int           i_handle;
  105.     bool          b_mtu_warning;
  106.     size_t        i_mtu;
  107.     block_fifo_t *p_fifo;
  108.     block_fifo_t *p_empty_blocks;
  109.     block_t      *p_buffer;
  110.     vlc_thread_t  thread;
  111. };
  112. #define DEFAULT_PORT 1234
  113. /*****************************************************************************
  114.  * Open: open the file
  115.  *****************************************************************************/
  116. static int Open( vlc_object_t *p_this )
  117. {
  118.     sout_access_out_t       *p_access = (sout_access_out_t*)p_this;
  119.     sout_access_out_sys_t   *p_sys;
  120.     char                *psz_dst_addr = NULL;
  121.     int                 i_dst_port;
  122.     int                 i_handle;
  123.     config_ChainParse( p_access, SOUT_CFG_PREFIX,
  124.                        ppsz_sout_options, p_access->p_cfg );
  125.     config_ChainParse( p_access, "",
  126.                        ppsz_core_options, p_access->p_cfg );
  127.     if (var_Create (p_access, "dst-port", VLC_VAR_INTEGER)
  128.      || var_Create (p_access, "src-port", VLC_VAR_INTEGER)
  129.      || var_Create (p_access, "dst-addr", VLC_VAR_STRING)
  130.      || var_Create (p_access, "src-addr", VLC_VAR_STRING))
  131.     {
  132.         return VLC_ENOMEM;
  133.     }
  134.     if( !( p_sys = malloc ( sizeof( *p_sys ) ) ) )
  135.         return VLC_ENOMEM;
  136.     p_access->p_sys = p_sys;
  137.     i_dst_port = DEFAULT_PORT;
  138.     char *psz_parser = psz_dst_addr = strdup( p_access->psz_path );
  139.     if( !psz_dst_addr )
  140.     {
  141.         free( p_sys );
  142.         return VLC_ENOMEM;
  143.     }
  144.     if (psz_parser[0] == '[')
  145.         psz_parser = strchr (psz_parser, ']');
  146.     psz_parser = strchr (psz_parser ? psz_parser : psz_dst_addr, ':');
  147.     if (psz_parser != NULL)
  148.     {
  149.         *psz_parser++ = '';
  150.         i_dst_port = atoi (psz_parser);
  151.     }
  152.     i_handle = net_ConnectDgram( p_this, psz_dst_addr, i_dst_port, -1,
  153.                                  IPPROTO_UDP );
  154.     free (psz_dst_addr);
  155.     if( i_handle == -1 )
  156.     {
  157.          msg_Err( p_access, "failed to create raw UDP socket" );
  158.          free (p_sys);
  159.          return VLC_EGENERIC;
  160.     }
  161.     else
  162.     {
  163.         char addr[NI_MAXNUMERICHOST];
  164.         int port;
  165.         if (net_GetSockAddress (i_handle, addr, &port) == 0)
  166.         {
  167.             msg_Dbg (p_access, "source: %s port %d", addr, port);
  168.             var_SetString (p_access, "src-addr", addr);
  169.             var_SetInteger (p_access, "src-port", port);
  170.         }
  171.         if (net_GetPeerAddress (i_handle, addr, &port) == 0)
  172.         {
  173.             msg_Dbg (p_access, "destination: %s port %d", addr, port);
  174.             var_SetString (p_access, "dst-addr", addr);
  175.             var_SetInteger (p_access, "dst-port", port);
  176.         }
  177.     }
  178.     shutdown( i_handle, SHUT_RD );
  179.     p_sys->i_caching = UINT64_C(1000)
  180.                      * var_GetInteger( p_access, SOUT_CFG_PREFIX "caching");
  181.     p_sys->i_handle = i_handle;
  182.     p_sys->i_mtu = var_CreateGetInteger( p_this, "mtu" );
  183.     p_sys->b_mtu_warning = false;
  184.     p_sys->p_fifo = block_FifoNew();
  185.     p_sys->p_empty_blocks = block_FifoNew();
  186.     p_sys->p_buffer = NULL;
  187.     if( vlc_clone( &p_sys->thread, ThreadWrite, p_access,
  188.                            VLC_THREAD_PRIORITY_HIGHEST ) )
  189.     {
  190.         msg_Err( p_access, "cannot spawn sout access thread" );
  191.         block_FifoRelease( p_sys->p_fifo );
  192.         block_FifoRelease( p_sys->p_empty_blocks );
  193.         net_Close (i_handle);
  194.         free (p_sys);
  195.         return VLC_EGENERIC;
  196.     }
  197.     p_access->pf_write = Write;
  198.     p_access->pf_seek = Seek;
  199.     p_access->pf_control = Control;
  200.     return VLC_SUCCESS;
  201. }
  202. /*****************************************************************************
  203.  * Close: close the target
  204.  *****************************************************************************/
  205. static void Close( vlc_object_t * p_this )
  206. {
  207.     sout_access_out_t     *p_access = (sout_access_out_t*)p_this;
  208.     sout_access_out_sys_t *p_sys = p_access->p_sys;
  209.     vlc_cancel( p_sys->thread );
  210.     vlc_join( p_sys->thread, NULL );
  211.     block_FifoRelease( p_sys->p_fifo );
  212.     block_FifoRelease( p_sys->p_empty_blocks );
  213.     if( p_sys->p_buffer ) block_Release( p_sys->p_buffer );
  214.     net_Close( p_sys->i_handle );
  215.     free( p_sys );
  216. }
  217. static int Control( sout_access_out_t *p_access, int i_query, va_list args )
  218. {
  219.     (void)p_access;
  220.     switch( i_query )
  221.     {
  222.         case ACCESS_OUT_CONTROLS_PACE:
  223.             *va_arg( args, bool * ) = false;
  224.             break;
  225.         default:
  226.             return VLC_EGENERIC;
  227.     }
  228.     return VLC_SUCCESS;
  229. }
  230. /*****************************************************************************
  231.  * Write: standard write on a file descriptor.
  232.  *****************************************************************************/
  233. static ssize_t Write( sout_access_out_t *p_access, block_t *p_buffer )
  234. {
  235.     sout_access_out_sys_t *p_sys = p_access->p_sys;
  236.     int i_len = 0;
  237.     while( p_buffer )
  238.     {
  239.         block_t *p_next;
  240.         int i_packets = 0;
  241.         mtime_t now = mdate();
  242.         if( !p_sys->b_mtu_warning && p_buffer->i_buffer > p_sys->i_mtu )
  243.         {
  244.             msg_Warn( p_access, "packet size > MTU, you should probably "
  245.                       "increase the MTU" );
  246.             p_sys->b_mtu_warning = true;
  247.         }
  248.         /* Check if there is enough space in the buffer */
  249.         if( p_sys->p_buffer &&
  250.             p_sys->p_buffer->i_buffer + p_buffer->i_buffer > p_sys->i_mtu )
  251.         {
  252.             if( p_sys->p_buffer->i_dts + p_sys->i_caching < now )
  253.             {
  254.                 msg_Dbg( p_access, "late packet for UDP input (%"PRId64 ")",
  255.                          now - p_sys->p_buffer->i_dts
  256.                           - p_sys->i_caching );
  257.             }
  258.             block_FifoPut( p_sys->p_fifo, p_sys->p_buffer );
  259.             p_sys->p_buffer = NULL;
  260.         }
  261.         i_len += p_buffer->i_buffer;
  262.         while( p_buffer->i_buffer )
  263.         {
  264.             size_t i_payload_size = p_sys->i_mtu;
  265.             size_t i_write = __MIN( p_buffer->i_buffer, i_payload_size );
  266.             i_packets++;
  267.             if( !p_sys->p_buffer )
  268.             {
  269.                 p_sys->p_buffer = NewUDPPacket( p_access, p_buffer->i_dts );
  270.                 if( !p_sys->p_buffer ) break;
  271.             }
  272.             memcpy( p_sys->p_buffer->p_buffer + p_sys->p_buffer->i_buffer,
  273.                     p_buffer->p_buffer, i_write );
  274.             p_sys->p_buffer->i_buffer += i_write;
  275.             p_buffer->p_buffer += i_write;
  276.             p_buffer->i_buffer -= i_write;
  277.             if ( p_buffer->i_flags & BLOCK_FLAG_CLOCK )
  278.             {
  279.                 if ( p_sys->p_buffer->i_flags & BLOCK_FLAG_CLOCK )
  280.                     msg_Warn( p_access, "putting two PCRs at once" );
  281.                 p_sys->p_buffer->i_flags |= BLOCK_FLAG_CLOCK;
  282.             }
  283.             if( p_sys->p_buffer->i_buffer == p_sys->i_mtu || i_packets > 1 )
  284.             {
  285.                 /* Flush */
  286.                 if( p_sys->p_buffer->i_dts + p_sys->i_caching < now )
  287.                 {
  288.                     msg_Dbg( p_access, "late packet for udp input (%"PRId64 ")",
  289.                              mdate() - p_sys->p_buffer->i_dts
  290.                               - p_sys->i_caching );
  291.                 }
  292.                 block_FifoPut( p_sys->p_fifo, p_sys->p_buffer );
  293.                 p_sys->p_buffer = NULL;
  294.             }
  295.         }
  296.         p_next = p_buffer->p_next;
  297.         block_Release( p_buffer );
  298.         p_buffer = p_next;
  299.     }
  300.     return i_len;
  301. }
  302. /*****************************************************************************
  303.  * Seek: seek to a specific location in a file
  304.  *****************************************************************************/
  305. static int Seek( sout_access_out_t *p_access, off_t i_pos )
  306. {
  307.     (void) i_pos;
  308.     msg_Err( p_access, "UDP sout access cannot seek" );
  309.     return -1;
  310. }
  311. /*****************************************************************************
  312.  * NewUDPPacket: allocate a new UDP packet of size p_sys->i_mtu
  313.  *****************************************************************************/
  314. static block_t *NewUDPPacket( sout_access_out_t *p_access, mtime_t i_dts)
  315. {
  316.     sout_access_out_sys_t *p_sys = p_access->p_sys;
  317.     block_t *p_buffer;
  318.     while ( block_FifoCount( p_sys->p_empty_blocks ) > MAX_EMPTY_BLOCKS )
  319.     {
  320.         p_buffer = block_FifoGet( p_sys->p_empty_blocks );
  321.         block_Release( p_buffer );
  322.     }
  323.     if( block_FifoCount( p_sys->p_empty_blocks ) == 0 )
  324.     {
  325.         p_buffer = block_Alloc( p_sys->i_mtu );
  326.     }
  327.     else
  328.     {
  329.         p_buffer = block_FifoGet(p_sys->p_empty_blocks );
  330.         p_buffer->i_flags = 0;
  331.         p_buffer = block_Realloc( p_buffer, 0, p_sys->i_mtu );
  332.     }
  333.     p_buffer->i_dts = i_dts;
  334.     p_buffer->i_buffer = 0;
  335.     return p_buffer;
  336. }
  337. /*****************************************************************************
  338.  * ThreadWrite: Write a packet on the network at the good time.
  339.  *****************************************************************************/
  340. static void* ThreadWrite( void *data )
  341. {
  342.     sout_access_out_t *p_access = data;
  343.     sout_access_out_sys_t *p_sys = p_access->p_sys;
  344.     mtime_t i_date_last = -1;
  345.     const unsigned i_group = var_GetInteger( p_access,
  346.                                              SOUT_CFG_PREFIX "group" );
  347.     mtime_t i_to_send = i_group;
  348.     unsigned i_dropped_packets = 0;
  349.     for (;;)
  350.     {
  351.         block_t *p_pk = block_FifoGet( p_sys->p_fifo );
  352.         mtime_t       i_date, i_sent;
  353.         i_date = p_sys->i_caching + p_pk->i_dts;
  354.         if( i_date_last > 0 )
  355.         {
  356.             if( i_date - i_date_last > 2000000 )
  357.             {
  358.                 if( !i_dropped_packets )
  359.                     msg_Dbg( p_access, "mmh, hole (%"PRId64" > 2s) -> drop",
  360.                              i_date - i_date_last );
  361.                 block_FifoPut( p_sys->p_empty_blocks, p_pk );
  362.                 i_date_last = i_date;
  363.                 i_dropped_packets++;
  364.                 continue;
  365.             }
  366.             else if( i_date - i_date_last < -1000 )
  367.             {
  368.                 if( !i_dropped_packets )
  369.                     msg_Dbg( p_access, "mmh, packets in the past (%"PRId64")",
  370.                              i_date_last - i_date );
  371.             }
  372.         }
  373.         block_cleanup_push( p_pk );
  374.         i_to_send--;
  375.         if( !i_to_send || (p_pk->i_flags & BLOCK_FLAG_CLOCK) )
  376.         {
  377.             mwait( i_date );
  378.             i_to_send = i_group;
  379.         }
  380.         if ( send( p_sys->i_handle, p_pk->p_buffer, p_pk->i_buffer, 0 ) == -1 )
  381.             msg_Warn( p_access, "send error: %m" );
  382.         vlc_cleanup_pop();
  383.         if( i_dropped_packets )
  384.         {
  385.             msg_Dbg( p_access, "dropped %i packets", i_dropped_packets );
  386.             i_dropped_packets = 0;
  387.         }
  388. #if 1
  389.         i_sent = mdate();
  390.         if ( i_sent > i_date + 20000 )
  391.         {
  392.             msg_Dbg( p_access, "packet has been sent too late (%"PRId64 ")",
  393.                      i_sent - i_date );
  394.         }
  395. #endif
  396.         block_FifoPut( p_sys->p_empty_blocks, p_pk );
  397.         i_date_last = i_date;
  398.     }
  399.     return NULL;
  400. }