Socket.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. static const char* const Socket_cxx_Version = 
  51.     "$Id: Socket.cxx,v 1.14 2001/06/26 22:54:22 icahoon Exp $";
  52. #include "Socket.hxx"
  53. #include "TransportCommon.hxx"
  54. #include "SystemException.hxx"
  55. #include "TransportAddress.hxx"
  56. #include "SocketType.hxx"
  57. #include "VLog.hxx"
  58. #include <cerrno>
  59. #include <sys/types.h>
  60. using Vocal::IO::file_descriptor_t;
  61. using Vocal::IO::FileDescriptor;
  62. using Vocal::Transport::Socket;
  63. using Vocal::Transport::TransportAddress;
  64. using Vocal::Transport::AddressFamily;
  65. using Vocal::Transport::SocketType;
  66. using Vocal::Logging::VLog;
  67. Socket::Socket(
  68.     const AddressFamily     & addressFamily,
  69.     const SocketType      & socketType,
  70.     const char          * name,
  71.     file_descriptor_t      fd
  72. )
  73. throw ( Vocal::SystemException )
  74.     : FileDescriptor(fd),
  75.      localAddr_(TransportAddress::create(addressFamily())),
  76.      addressFamily_(addressFamily),
  77.      socketType_(socketType),
  78. totalBytesSent_(0),
  79. totalBytesReceived_(0),
  80. name_(name ? name : "")
  81. {
  82.     const string    fn("Socket::Socket");
  83.     VLog         log(fn);
  84.     // Finish the name.
  85.     //
  86.     name_ += "Socket";
  87.         
  88.     // File descriptor may have been passed in already.
  89.     // If so, assume it has already been bound.
  90.     //
  91.     if ( fd_ == INVALID )
  92.     {
  93.         fd_ = socket(addressFamily(), socketType_(), 0);
  94.     
  95.         if ( fd_ <= INVALID )
  96.         {
  97.          fd_ = INVALID;
  98.          throw Vocal::SystemException(fn + " on socket(): " + strerror(errno), 
  99.                          __FILE__, __LINE__, errno);
  100.      }
  101.     
  102. // Bind the socket.
  103. //
  104. if  (   bind(fd_, 
  105.                localAddr_->getAddress(), 
  106.      localAddr_->getAddressLength()) < SUCCESS
  107.          )
  108. {
  109.     close(); 
  110.          throw Vocal::SystemException(fn + " on bind(): " + strerror(errno), 
  111.                     __FILE__, __LINE__, errno);
  112. }
  113.     }
  114.         
  115.     // Update the transport address. Don't catch the exception, let it pass.
  116.     //
  117.     localAddr_->updateAddress(*this);
  118.     // Report back, for the curious among us.
  119.     //
  120.     VDEBUG(log) << fn << ": "  << *this << VDEBUG_END(log);
  121. }
  122. Socket::Socket(
  123.     const TransportAddress  &   localAddr,
  124.     const SocketType      &   socketType,
  125.     const char          * name
  126. )   
  127. throw ( Vocal::SystemException )
  128.     : localAddr_(localAddr.clone()),
  129.      addressFamily_(localAddr.getAddressFamily()),
  130.      socketType_(socketType),
  131. totalBytesSent_(0),
  132. totalBytesReceived_(0),
  133. name_(name ? name : "")
  134. {
  135.     const string    fn("Socket::Socket");
  136.     VLog         log(fn);
  137.     
  138.     // Finish the name.
  139.     //
  140.     name_ += "Socket";
  141.         
  142.     // Create the socket.
  143.     //
  144.     AddressFamily    addressType = localAddr_->getAddressFamily();
  145.     fd_ = socket(addressType(), socketType_(), 0);
  146.     
  147.     if ( fd_ <= INVALID )
  148.     {
  149.      fd_ = INVALID;
  150.      throw Vocal::SystemException(fn + " on socket(): " + strerror(errno), 
  151.                __FILE__, __LINE__, errno);
  152.     }
  153.     
  154.     // Bind the socket.
  155.     //
  156.     if  (   bind(fd_, 
  157.            localAddr_->getAddress(), 
  158.  localAddr_->getAddressLength()) < SUCCESS
  159.      )
  160.     {
  161.      close();
  162.      throw Vocal::SystemException(fn + " on bind(): " + strerror(errno), 
  163.                 __FILE__, __LINE__, errno);
  164.     }
  165.     
  166.     // Update the transport address. Don't catch the exception, let it pass.
  167.     //
  168.     localAddr_->updateAddress(*this);
  169.     
  170.     // Report back, for the curious among us.
  171.     //
  172.     VDEBUG(log) << fn << ": "  << *this << VDEBUG_END(log);
  173. }
  174.     
  175. Socket::~Socket()
  176. {
  177.     VLog    log("Socket::~Socket");
  178.     delete localAddr_;
  179. }
  180. const  TransportAddress &
  181. Socket::getLocalAddress() const
  182. {
  183.     return ( *localAddr_ );
  184. }
  185. const  AddressFamily &
  186. Socket::getAddressFamily() const
  187. {
  188.     return ( addressFamily_ );
  189. }
  190. const SocketType &     
  191. Socket::getSocketType() const
  192. {
  193.     return ( socketType_ );
  194. }
  195.     
  196. unsigned long     
  197. Socket::bytesSent() const
  198. {
  199.     return ( totalBytesSent_ );
  200. }
  201. unsigned long     
  202. Socket::bytesReceived() const
  203. {
  204.     return ( totalBytesReceived_ );
  205. }
  206. ostream &       
  207. Socket::writeTo(ostream & out) const
  208. {
  209.     out << name_ 
  210.      << ": protocol = " << addressFamily_
  211.      << ", type = "   << socketType_
  212. << ", ";
  213.     FileDescriptor::writeTo(out);
  214.     
  215.     out << ", local = "  << *localAddr_ 
  216. << ", sent = "   << totalBytesSent_
  217. << ", received = " << totalBytesReceived_;
  218.     return ( out );
  219. }