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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * network.h: interface to communicate with network plug-ins
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: network.h 9219 2004-11-07 11:17:37Z courmisch $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  8.  *          Laurent Aimar <fenrir@via.ecp.fr>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #ifndef __VLC_NETWORK_H
  25. # define __VLC_NETWORK_H
  26. /*****************************************************************************
  27.  * network_socket_t: structure passed to a network plug-in to define the
  28.  *                   kind of socket we want
  29.  *****************************************************************************/
  30. struct network_socket_t
  31. {
  32.     unsigned int i_type;
  33.     char * psz_bind_addr;
  34.     int i_bind_port;
  35.     char * psz_server_addr;
  36.     int i_server_port;
  37.     int i_ttl;
  38.     /* Return values */
  39.     int i_handle;
  40.     size_t i_mtu;
  41. };
  42. /* Socket types */
  43. #define NETWORK_UDP 1
  44. #define NETWORK_TCP 2
  45. #define NETWORK_TCP_PASSIVE 3
  46. typedef struct
  47. {
  48.     char *psz_protocol;
  49.     char *psz_host;
  50.     int  i_port;
  51.     char *psz_path;
  52.     char *psz_option;
  53. } vlc_url_t;
  54. /*****************************************************************************
  55.  * vlc_UrlParse:
  56.  *****************************************************************************
  57.  * option : if != 0 then path is split at this char
  58.  *
  59.  * format [protocol://][host[:port]]/path[OPTIONoption]
  60.  *****************************************************************************/
  61. static inline void vlc_UrlParse( vlc_url_t *url, char *psz_url, char option )
  62. {
  63.     char *psz_dup = psz_url ? strdup( psz_url ) : 0;
  64.     char *psz_parse = psz_dup;
  65.     char *p;
  66.     url->psz_protocol = NULL;
  67.     url->psz_host     = NULL;
  68.     url->i_port       = 0;
  69.     url->psz_path     = NULL;
  70.     url->psz_option   = NULL;
  71.     if( !psz_url ) return;
  72.     if( ( p  = strstr( psz_parse, ":/" ) ) )
  73.     {
  74.         /* we have a protocol */
  75.         /* skip :// */
  76.         *p++ = '';
  77.         if( p[0] == '/' && p[1] == '/' )
  78.         {
  79.             p += 2;
  80.         }
  81.         url->psz_protocol = strdup( psz_dup );
  82.         psz_parse = p;
  83.     }
  84.     p = strchr( psz_parse, '/' );
  85.     if( !p || psz_parse < p )
  86.     {
  87.         char *p2;
  88.         /* We have a host[:port] */
  89.         url->psz_host = strdup( psz_parse );
  90.         if( p )
  91.         {
  92.             url->psz_host[p - psz_parse] = '';
  93.         }
  94.         if( *url->psz_host == '[' )
  95.         {
  96.             /* Ipv6 address */
  97.             p2 = strchr( url->psz_host, ']' );
  98.             if( p2 )
  99.             {
  100.                 p2 = strchr( p2, ':' );
  101.             }
  102.         }
  103.         else
  104.         {
  105.             p2 = strchr( url->psz_host, ':' );
  106.         }
  107.         if( p2 )
  108.         {
  109.             *p2++ = '';
  110.             url->i_port = atoi( p2 );
  111.         }
  112.     }
  113.     psz_parse = p;
  114.     /* Now parse psz_path and psz_option */
  115.     if( psz_parse )
  116.     {
  117.         url->psz_path = strdup( psz_parse );
  118.         if( option != '' )
  119.         {
  120.             p = strchr( url->psz_path, option );
  121.             if( p )
  122.             {
  123.                 *p++ = '';
  124.                 url->psz_option = strdup( p );
  125.             }
  126.         }
  127.     }
  128.     free( psz_dup );
  129. }
  130. /*****************************************************************************
  131.  * vlc_UrlClean:
  132.  *****************************************************************************
  133.  *
  134.  *****************************************************************************/
  135. static inline void vlc_UrlClean( vlc_url_t *url )
  136. {
  137.     if( url->psz_protocol ) free( url->psz_protocol );
  138.     if( url->psz_host )     free( url->psz_host );
  139.     if( url->psz_path )     free( url->psz_path );
  140.     if( url->psz_option )   free( url->psz_option );
  141.     url->psz_protocol = NULL;
  142.     url->psz_host     = NULL;
  143.     url->i_port       = 0;
  144.     url->psz_path     = NULL;
  145.     url->psz_option   = NULL;
  146. }
  147.                     
  148. /*****************************************************************************
  149.  * vlc_b64_encode:
  150.  *****************************************************************************
  151.  *
  152.  *****************************************************************************/
  153. static inline char *vlc_b64_encode( unsigned char *src )
  154. {
  155.     static const char b64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  156.                                                                                 
  157.     char *dst = malloc( strlen( src ) * 4 / 3 + 12 );
  158.     char *ret = dst;
  159.     unsigned i_bits = 0;
  160.     unsigned i_shift = 0;
  161.                                                                                 
  162.     for( ;; )
  163.     {
  164.         if( *src )
  165.         {
  166.             i_bits = ( i_bits << 8 )|( *src++ );
  167.             i_shift += 8;
  168.         }
  169.         else if( i_shift > 0 )
  170.         {
  171.            i_bits <<= 6 - i_shift;
  172.            i_shift = 6;
  173.         }
  174.         else
  175.         {
  176.             *dst++ = '=';
  177.             break;
  178.         }
  179.                                                                                 
  180.         while( i_shift >= 6 )
  181.         {
  182.             i_shift -= 6;
  183.             *dst++ = b64[(i_bits >> i_shift)&0x3f];
  184.         }
  185.     }
  186.                                                                                 
  187.     *dst++ = '';
  188.                                                                                 
  189.     return ret;
  190. }
  191. #define net_OpenTCP(a, b, c) __net_OpenTCP(VLC_OBJECT(a), b, c)
  192. VLC_EXPORT( int, __net_OpenTCP, ( vlc_object_t *p_this, const char *psz_host, int i_port ) );
  193. #define net_ListenTCP(a, b, c) __net_ListenTCP(VLC_OBJECT(a), b, c)
  194. VLC_EXPORT( int, __net_ListenTCP, ( vlc_object_t *p_this, char *psz_localaddr, int i_port ) );
  195. #define net_Accept(a, b, c) __net_Accept(VLC_OBJECT(a), b, c)
  196. VLC_EXPORT( int, __net_Accept, ( vlc_object_t *p_this, int fd_listen, mtime_t i_wait ) );
  197. #define net_OpenUDP(a, b, c, d, e ) __net_OpenUDP(VLC_OBJECT(a), b, c, d, e)
  198. VLC_EXPORT( int, __net_OpenUDP, ( vlc_object_t *p_this, char *psz_bind, int i_bind, char *psz_server, int i_server ) );
  199. VLC_EXPORT( void, net_Close, ( int fd ) );
  200. #define net_Read(a,b,c,d,e) __net_Read(VLC_OBJECT(a),b,c,d,e)
  201. VLC_EXPORT( int, __net_Read, ( vlc_object_t *p_this, int fd, uint8_t *p_data, int i_data, vlc_bool_t b_retry ) );
  202. #define net_ReadNonBlock(a,b,c,d,e) __net_ReadNonBlock(VLC_OBJECT(a),b,c,d,e)
  203. VLC_EXPORT( int, __net_ReadNonBlock, ( vlc_object_t *p_this, int fd, uint8_t *p_data, int i_data, mtime_t i_wait ) );
  204. #define net_Select(a,b,c,d,e,f) __net_Select(VLC_OBJECT(a),b,c,d,e,f)
  205. VLC_EXPORT( int, __net_Select, ( vlc_object_t *p_this, int *pi_fd, int i_fd,uint8_t *p_data, int i_data, mtime_t i_wait ) );
  206. #define net_Write(a,b,c,d) __net_Write(VLC_OBJECT(a),b,c,d)
  207. VLC_EXPORT( int, __net_Write, ( vlc_object_t *p_this, int fd, uint8_t *p_data, int i_data ) );
  208. #define net_Gets(a,b) __net_Gets(VLC_OBJECT(a),b)
  209. VLC_EXPORT( char *, __net_Gets, ( vlc_object_t *p_this, int fd ) );
  210. VLC_EXPORT( int, net_Printf, ( vlc_object_t *p_this, int fd, const char *psz_fmt, ... ) );
  211. #define net_vaPrintf(a,b,c,d) __net_vaPrintf(VLC_OBJECT(a),b,c,d)
  212. VLC_EXPORT( int, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const char *psz_fmt, va_list args ) );
  213. #endif