NetworkAddress.h
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:7k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef NETWORKADDRESS_HXX_
  2. #define NETWORKADDRESS_HXX_
  3. /* ====================================================================
  4.  * The Vovida Software License, Version 1.0 
  5.  * 
  6.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  7.  * 
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in
  17.  *    the documentation and/or other materials provided with the
  18.  *    distribution.
  19.  * 
  20.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  21.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  22.  *    not be used to endorse or promote products derived from this
  23.  *    software without prior written permission. For written
  24.  *    permission, please contact vocal@vovida.org.
  25.  *
  26.  * 4. Products derived from this software may not be called "VOCAL", nor
  27.  *    may "VOCAL" appear in their name, without prior written
  28.  *    permission of Vovida Networks, Inc.
  29.  * 
  30.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  31.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  33.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  34.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  35.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  36.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  37.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  38.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  39.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  40.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  41.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  42.  * DAMAGE.
  43.  * 
  44.  * ====================================================================
  45.  * 
  46.  * This software consists of voluntary contributions made by Vovida
  47.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  48.  * Inc.  For more information on Vovida Networks, Inc., please see
  49.  * <http://www.vovida.org/>.
  50.  *
  51.  */
  52. static const char* const NetworkAddress_hxx_Version =
  53. "$Id: NetworkAddress.h,v 1.5 2001/06/29 03:56:00 bko Exp $";
  54. #include "global.h"
  55. #include "VMutex.h"
  56. #include <iostream>
  57. #include <string>
  58. #include "vtypes.h"
  59. #ifndef WIN32
  60. #include <netinet/in.h>
  61. #endif
  62. #define IPV4_LENGTH 4
  63. /** Class which implements a network address.  includes functionality
  64.  * to look up network addresses from hostnames or ip addresses as
  65.  * strings.
  66.  */
  67. class NetworkAddress
  68. {
  69.    public:
  70.       /// default constructor. The host is initially set to localhost.
  71.       NetworkAddress ( int port = -1 );
  72.       /** The host hostName can be in the same form as passed to
  73.        * setHostName()
  74.        */
  75.       NetworkAddress ( const string& hostName, int port = -1 );
  76.       /** takes IP or DNS with optional ":port" syntax.  Examples:
  77.           <P>lab1.vovida.com
  78.           <BR>192.168.4.5
  79.           <BR>lab1.vovoda.com:80
  80.           <BR>192.168.4.5:6000
  81.       */
  82.       void setHostName ( const string& theAddress );
  83.       /// set port
  84.       void setPort ( int port );
  85.       /// get hostname in the form "lab1.vovida.com"
  86.       string getHostName () const;
  87.       /// get IP address as a string in the form "192.168.4.5"
  88.       string getIpName () const;
  89.       /** return the IP4 address packed as an unsigned int, in
  90.        * network byte order.
  91.        */
  92.       u_int32_t getIp4Address () const;
  93.       /** return the address in a sockaddr.  This value is assigned
  94.        * @param socka    returned address
  95.        */
  96.       void getSockAddr(struct sockaddr & socka) const;
  97.       /// get the port
  98.       int getPort () const;
  99.       /// compare two IP addresses
  100.       friend bool operator < (const NetworkAddress & xAddress,
  101.                               const NetworkAddress & yAddress );
  102.       /// compare two IP addresses
  103.       friend bool operator == (const NetworkAddress & xAddress,
  104.                                const NetworkAddress & yAddress );
  105.       /// compare two IP addresses
  106.       friend bool operator != (const NetworkAddress & xAddress,
  107.                                const NetworkAddress & yAddress );
  108.       /// convert to string - returns same as getHostName
  109.       operator string() ;
  110.       /// printing operator -- calls print() fn.
  111.       friend ostream & operator<< ( ostream & xStream,
  112.                                     const NetworkAddress& rxObj );
  113.       /// copy constructor
  114.       NetworkAddress( const NetworkAddress& x);
  115.       /// assignment operator =
  116.       NetworkAddress& operator=( const NetworkAddress& x );
  117.       /// printing operator.  This should be replaced w/ Vocal::IO:Writer
  118.       ostream & print ( ostream & xStr ) const;
  119.       /** hash function, uses last 2 bytes of ip address + 2 bytes
  120.   of port the bits 15-0 of ipaddress (Bigendian) becomes the
  121.   Most Significant Byte(MSB) of hashkey, bits 15-0 of port
  122.   becomes LSB of hashkey.
  123.       */
  124.       u_int32_t hashIpPort( );
  125.       /// hash function, uses last 2 bytes of ip address + 2 bytes of port
  126.       static u_int32_t 
  127.       hashIpPort( const string& theAddress, const string& port );
  128.       /// hash function, uses last 2 bytes of ip address + 2 bytes of port
  129.       static u_int32_t 
  130.       hashIpPort( const u_int32_t ipAddress, const int port );
  131.       /// Mutexes the gethostbyname(), return 0 when successful
  132.       static int getHostByName(const char* hostName,
  133.                                struct hostent* hEnt,
  134.                                char* buf,
  135.                                int buflen,
  136.                                int* thrErrno);
  137. #ifndef WIN32
  138.      /// value if host lookup failed
  139.       static const int getHostLookupFailed = 1;
  140.       /// value if host lookup succeeded
  141.       static const int getHostLookupOK = 0;
  142. #else
  143.       /// value if host lookup failed
  144.         static const int getHostLookupFailed; // = 1;
  145.       /// value if host lookup succeeded
  146.         static const int getHostLookupOK; // = 0;
  147. #endif // WIN32
  148.    private:
  149.       /// Check if parameter is a valid IP address
  150.       bool is_valid_ip_addr (const string& ip_addr) const;
  151.       void initIpAddress() const;
  152.     
  153.       mutable char ipAddress[IPV4_LENGTH];  // it's in network byte order
  154.       int aPort;
  155.       string rawHostName;
  156.       mutable string hostName;
  157.       mutable bool ipAddressSet;
  158.       static VMutex mutex_;
  159. };
  160. inline std::ostream &
  161. operator<< ( std::ostream & xStream, const NetworkAddress& rxObj )
  162. {
  163.    return rxObj.print ( xStream );
  164. }
  165. // NETWORKADDRESS_HXX_
  166. #endif