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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. #ifdef WIN32
  51. #pragma warning(disable : 4786)
  52. #endif
  53. static const char* const HostMatch_cxx_Version =
  54.     "$Id: HostMatch.cxx,v 1.10 2001/06/29 03:56:00 bko Exp $";
  55. #include <deque>
  56. #include <string>
  57. #include "HostMatch.hxx"
  58. #include <iostream>
  59. #include <set>
  60. #include "NetworkAddress.h"
  61. #ifndef WIN32
  62. #include <netdb.h>
  63. #include <sys/socket.h>
  64. #include <netinet/in.h>
  65. #include <arpa/inet.h>
  66. #endif
  67. #include <algorithm>
  68. class SimpleAddress
  69. {
  70.     public:
  71.         SimpleAddress(const char* addr);
  72.         ostream& print(ostream& s) const;
  73.         friend ostream& operator<< ( ostream& s,
  74.                                      const SimpleAddress& obj );
  75.         friend bool operator<( const SimpleAddress& lhs ,
  76.                                const SimpleAddress& rhs );
  77.         friend bool operator==( const SimpleAddress& lhs ,
  78.                                 const SimpleAddress& rhs );
  79.     private:
  80.         char myAddr[4];
  81. };
  82. bool operator<( const SimpleAddress& lhs ,
  83.                 const SimpleAddress& rhs )
  84. {
  85.     if (memcmp(lhs.myAddr, rhs.myAddr, 4) < 0)
  86.     {
  87.         return true;
  88.     }
  89.     else
  90.     {
  91.         return false;
  92.     }
  93. }
  94. bool operator==( const SimpleAddress& lhs ,
  95.                  const SimpleAddress& rhs )
  96. {
  97.     if (memcmp(lhs.myAddr, rhs.myAddr, 4) == 0)
  98.     {
  99.         return true;
  100.     }
  101.     else
  102.     {
  103.         return false;
  104.     }
  105. }
  106. ostream& operator<< ( ostream& s, const SimpleAddress& obj )
  107. {
  108.     return obj.print(s);
  109. }
  110. SimpleAddress::SimpleAddress(const char* addr)
  111. {
  112.     memcpy(myAddr, addr, 4);
  113. }
  114. ostream& SimpleAddress::print(ostream& s) const
  115. {
  116.     unsigned int x;
  117.     memcpy(&x, myAddr, 4);
  118.     in_addr y;
  119.     y.s_addr = x;
  120.     s << inet_ntoa(y);
  121.     return s;
  122. }
  123. deque < SimpleAddress > getAddrList(const string& host)
  124. {
  125.     deque < SimpleAddress > list;
  126.     struct hostent ent;
  127.     char buf[2048];
  128.     int myErrno;
  129.     int retval =
  130.         NetworkAddress::getHostByName(host.c_str(), &ent, buf, 2048, &myErrno);
  131.     if (retval != NetworkAddress::getHostLookupOK)
  132.     {
  133.         return list;
  134.     }
  135.     char** addrPtr;
  136.     addrPtr = ent.h_addr_list;
  137.     while (addrPtr && *addrPtr)
  138.     {
  139.         list.push_back(SimpleAddress(*addrPtr));
  140.         addrPtr++;
  141.     }
  142.     return list;
  143. }
  144. set < SimpleAddress > getAddrSet(const string& host)
  145. {
  146.     set < SimpleAddress > list;
  147.     struct hostent ent;
  148.     char buf[2048];
  149.     int myErrno;
  150. #ifdef WIN32
  151.     // Handle the case where host is a dotted ip address; getHostByName does
  152.     // not do this properly on WIN32.
  153.     unsigned long addr = inet_addr(host.c_str());
  154.     if (addr != INADDR_NONE) 
  155.     {
  156. char * c = (char*)&addr;
  157. list.insert(SimpleAddress(c));
  158. return list;
  159.     }
  160. #endif
  161.     int retval =
  162.         NetworkAddress::getHostByName(host.c_str(), &ent, buf, 2048, &myErrno);
  163.     if (retval != NetworkAddress::getHostLookupOK)
  164.     {
  165.         return list;
  166.     }
  167.     char** addrPtr;
  168.     addrPtr = ent.h_addr_list;
  169.     while (addrPtr && *addrPtr)
  170.     {
  171.         list.insert(SimpleAddress(*addrPtr));
  172.         addrPtr++;
  173.     }
  174.     return list;
  175. }
  176. bool hostsEqual(const string& first, const string& second)
  177. {
  178.     set < SimpleAddress > firstSet;
  179.     set < SimpleAddress > secondSet;
  180.     firstSet = getAddrSet(first);
  181.     secondSet = getAddrSet(second);
  182.     if (firstSet.size() == 0)
  183.     {
  184.         return false;
  185.     }
  186.     return firstSet == secondSet;
  187. }
  188. int hostsCompare(const string& first, const string& second)
  189. {
  190.     set < SimpleAddress > firstSet;
  191.     set < SimpleAddress > secondSet;
  192.     firstSet = getAddrSet(first);
  193.     secondSet = getAddrSet(second);
  194.     if (firstSet < secondSet)
  195.     {
  196.         return -1;
  197.     }
  198.     else if (firstSet > secondSet)
  199.     {
  200.         return 1;
  201.     }
  202.     else
  203.     {
  204.         return 0;
  205.     }
  206. }
  207. bool hostsIntersect(const string& first, const string& second)
  208. {
  209.     set < SimpleAddress > firstSet;
  210.     set < SimpleAddress > secondSet;
  211.     firstSet = getAddrSet(first);
  212.     secondSet = getAddrSet(second);
  213.     deque < SimpleAddress > result;
  214.     // set_intersection is part of <algorithm> .  It calculates the
  215.     // intersection between firstSet and secondSet
  216.     set_intersection(firstSet.begin(), firstSet.end(),
  217.                      secondSet.begin(), secondSet.end(),
  218.                      back_inserter(result));
  219.     if (result.size() > 0)
  220.     {
  221.         return true;
  222.     }
  223.     else
  224.     {
  225.         return false;
  226.     }
  227. }