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

流媒体/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 StreamClientSocket_cxx_Version = 
  51.     "$Id: StreamClientSocket.cxx,v 1.21 2001/06/26 22:54:22 icahoon Exp $";
  52. #include "StreamClientSocket.hxx"
  53. #include "TransportCommon.hxx"
  54. #include "SystemException.hxx"
  55. #include "SystemStatus.hxx"
  56. #include "ConnectionBrokenException.hxx"
  57. #include "VLog.hxx"
  58. #include <cerrno>
  59. using Vocal::Transport::StreamClientSocket;
  60. using Vocal::Transport::Socket;
  61. using Vocal::Transport::TransportAddress;
  62. using Vocal::Transport::AddressFamily;
  63. using Vocal::IO::file_descriptor_t;
  64. using Vocal::Logging::VLog;
  65. using Vocal::SystemException;
  66. using Vocal::SystemStatus;
  67. StreamClientSocket::StreamClientSocket(
  68.     const AddressFamily     &  addressFamily,
  69.     const char          * name
  70. )
  71. throw ( Vocal::SystemException )
  72.     :   Socket( addressFamily, 
  73.           SocketType(SOCK_STREAM), 
  74. (name ? name : "StreamClient")),
  75.      remoteAddr_(0),
  76. localAddrUpdated_(false),
  77. connectionCompleted_(false)
  78. {
  79. }
  80. StreamClientSocket::StreamClientSocket(
  81.     const TransportAddress  &  localAddr,
  82.     const char           * name
  83. )
  84. throw ( Vocal::SystemException )
  85.     : Socket( localAddr, 
  86.           SocketType(SOCK_STREAM), 
  87. (name ? name : "StreamClient")),
  88.      remoteAddr_(0),
  89. localAddrUpdated_(false)
  90. {
  91. }
  92. StreamClientSocket::StreamClientSocket(
  93.     const TransportAddress  &  localAddr,
  94.     const TransportAddress  &  remoteAddr,
  95.     const char           * name
  96. )
  97. throw ( Vocal::SystemException, Vocal::SystemStatus )
  98.     : Socket( localAddr, 
  99.           SocketType(SOCK_STREAM), 
  100. (name ? name : "StreamClient")),
  101.      remoteAddr_(0),
  102. localAddrUpdated_(false)
  103. {
  104.     // Connect to the remote address, Don't catch the exception or status,
  105.     // let it pass.
  106.     //
  107.     connect(remoteAddr);
  108. }
  109.     
  110. StreamClientSocket::StreamClientSocket(
  111.     file_descriptor_t       fd, 
  112.     const TransportAddress  &   remoteAddr,
  113.     const char           *  name
  114. )
  115. throw ( Vocal::SystemException, Vocal::SystemStatus )
  116.     : Socket( remoteAddr.getAddressFamily(), 
  117.           SocketType(SOCK_STREAM), 
  118. (name ? name : "StreamClient"),
  119. fd),
  120. remoteAddr_(remoteAddr.clone()),
  121. localAddrUpdated_(false)
  122. {
  123.     // If they gave us an invalid fd descriptor, the Socket constructor
  124.     // created one and bound it to ANY. Thus we haven't been connected,
  125.     // so let's try to connect.
  126.     //
  127.     if ( fd == INVALID )
  128.     {
  129.      connect(remoteAddr);
  130.     }
  131. }
  132. StreamClientSocket::~StreamClientSocket()
  133. {
  134. }
  135. void
  136. StreamClientSocket::connect(
  137.     const TransportAddress  &  remoteAddr
  138. )
  139. throw ( Vocal::SystemException, Vocal::SystemStatus )
  140. {
  141.     const string    fn("StreamClientSocket::connect");
  142.     VLog         log(fn);
  143.     if ( remoteAddr_ == 0 )
  144.     {    
  145.         remoteAddr_ = remoteAddr.clone();
  146.     }
  147.     if (    ::connect(fd_, 
  148.                remoteAddr_->getAddress(), 
  149.      remoteAddr_->getAddressLength()) < SUCCESS
  150. )
  151.     {
  152.      int error = errno;
  153.      // If the socket is nonblocking and the connection will take
  154. // a while to complete, we'll get EINPROGRESS back. This is
  155. // ok, just send a status with EINPROGRESS back. The user will
  156. // have to use completeConnection() later on.
  157. //
  158.      if ( error == EINPROGRESS )
  159. {
  160.     throw Vocal::SystemStatus(fn + " on connect(): " + strerror(error),
  161.                __FILE__, __LINE__, error);
  162. }
  163.      // Otherwise we have a problem. Signal it with an exception.
  164. //
  165.      throw Vocal::SystemException(fn + " on connect(): " + strerror(error), 
  166.                __FILE__, __LINE__, error);
  167.     }
  168.     else
  169.     {
  170.      connectionCompleted_ = true;
  171.     }
  172.     VDEBUG(log) << fn << ": fd = " << fd_ 
  173.           << " connected to remote address = "
  174. << *remoteAddr_ << VDEBUG_END(log);
  175. }
  176. void
  177. StreamClientSocket::completeConnection()
  178. throw ( Vocal::SystemException )
  179. {
  180.     if ( !remoteAddr_ )
  181.     {
  182.      return;
  183.     }
  184.     
  185.     const string    fn("StreamClientSocket::completeConnection");
  186.     VLog         log(fn);
  187.     int      connectCode = 0;
  188.     socklen_t connectCodeSize = sizeof(connectCode);
  189.     if ( connectionCompleted_ )
  190.     {
  191.      return;
  192.     }
  193.     if  (   getsockopt( fd_, SOL_SOCKET, SO_ERROR, 
  194.           #if defined(__sun)
  195. (char *)
  196. #endif // defined(__sun)
  197.                   &connectCode, 
  198.         &connectCodeSize) < SUCCESS
  199. ||  connectCode < SUCCESS 
  200. )
  201.     {
  202.      int error = ( connectCode < SUCCESS ? connectCode : errno );
  203.      throw Vocal::SystemException(fn + " on connect(): " + strerror(error), 
  204.                __FILE__, __LINE__, error);
  205.     }    
  206.     VDEBUG(log) << fn << ": fd = " << fd_ 
  207.           << " connection completed to remote address = "
  208. << *remoteAddr_ << VDEBUG_END(log);
  209. }
  210. int 
  211. StreamClientSocket::send(const string & message)
  212. throw ( Vocal::SystemException, 
  213.      Vocal::SystemStatus, 
  214. Vocal::Transport::ConnectionBrokenException )
  215. {
  216.     void * msg = reinterpret_cast<void *>(const_cast<char *>(message.c_str()));
  217.     return ( sendMessage(msg, message.size()) );
  218. }
  219. int 
  220. StreamClientSocket::send(const char * message)
  221. throw ( Vocal::SystemException, 
  222.      Vocal::SystemStatus, 
  223. Vocal::Transport::ConnectionBrokenException )
  224. {
  225.     int messageSize = ( message ? strlen(message) : 0 );
  226.     
  227.     void * msg = reinterpret_cast<void *>(const_cast<char *>(message));
  228.     
  229.     return ( sendMessage(msg, messageSize) );
  230. }
  231. int 
  232. StreamClientSocket::send(const vector<u_int8_t> & message)
  233. throw ( Vocal::SystemException, 
  234.      Vocal::SystemStatus, 
  235.      Vocal::Transport::ConnectionBrokenException )
  236. {
  237.     void * msg = reinterpret_cast<void *>(const_cast<u_int8_t *>(&message[0]));
  238.     return ( sendMessage(msg, message.size()) );
  239. }
  240. int 
  241. StreamClientSocket::send(const u_int8_t * message, size_t messageSize)
  242. throw ( Vocal::SystemException, 
  243.      Vocal::SystemStatus, 
  244. Vocal::Transport::ConnectionBrokenException )
  245. {
  246.     void * msg = reinterpret_cast<void *>(const_cast<u_int8_t *>(message));
  247.     return ( sendMessage(msg, messageSize) );
  248. }
  249. int 
  250. StreamClientSocket::receive(string & message)
  251. throw ( Vocal::SystemException, 
  252.      Vocal::SystemStatus, 
  253. Vocal::Transport::ConnectionBrokenException )
  254. {
  255.     void * msg = reinterpret_cast<void *>(const_cast<char *>(message.data()));
  256.     int bytesReceived = recvMessage(msg, message.capacity());
  257.     message.resize(bytesReceived);
  258.         
  259.     return ( bytesReceived );
  260. }
  261. int 
  262. StreamClientSocket::receive(char * message, size_t messageCapacity)
  263. throw ( Vocal::SystemException, 
  264.      Vocal::SystemStatus, 
  265. Vocal::Transport::ConnectionBrokenException )
  266. {
  267.     if ( message == 0 || messageCapacity == 0 )
  268.     {
  269.      return ( 0 );
  270.     }
  271.     
  272.     void * msg = reinterpret_cast<void *>(message);
  273.     int bytesReceived = recvMessage(msg, (messageCapacity > 1 ? messageCapacity-1 : 1 ));
  274.     if ( messageCapacity > 1 )
  275.     {    
  276.      message[bytesReceived] = '';
  277.     }
  278.     return ( bytesReceived );
  279. }
  280. int 
  281. StreamClientSocket::receive(vector<u_int8_t> & message)
  282. throw ( Vocal::SystemException, 
  283.      Vocal::SystemStatus, 
  284. Vocal::Transport::ConnectionBrokenException )
  285. {
  286.     message.clear();
  287.     
  288.     void * msg = reinterpret_cast<void *>(&message[0]);
  289.     int bytesReceived = recvMessage(msg, message.size());
  290.     message.resize(bytesReceived);
  291.     return ( bytesReceived );
  292. }
  293. int 
  294. StreamClientSocket::receive(u_int8_t * message, size_t messageCapacity)
  295. throw ( Vocal::SystemException, 
  296.      Vocal::SystemStatus, 
  297. Vocal::Transport::ConnectionBrokenException )
  298. {
  299.     if ( message == 0 || messageCapacity == 0 )
  300.     {
  301.      return ( 0 );
  302.     }
  303.     
  304.     void * msg = reinterpret_cast<void *>(message);
  305.     int bytesReceived = recvMessage(msg, messageCapacity);
  306.     
  307.     return ( bytesReceived );
  308. }
  309. Sptr<TransportAddress>
  310. StreamClientSocket::getRemoteAddress() const
  311. {
  312.     return ( remoteAddr_ );
  313. }
  314. ostream &           
  315. StreamClientSocket::writeTo(ostream & out) const
  316. {
  317.     Socket::writeTo(out);
  318.     
  319.     if ( remoteAddr_ != 0 )
  320.     {
  321.      out << ", remote = " << *remoteAddr_;
  322.     }
  323.     return ( out );
  324. }
  325. int 
  326. StreamClientSocket::sendMessage(
  327.     void              * message, 
  328.     int                messageLength
  329. )
  330. throw ( Vocal::SystemException, 
  331.      Vocal::SystemStatus, 
  332. Vocal::Transport::ConnectionBrokenException )
  333. {
  334.     const string    fn("StreamClientSocket::send");
  335.     VLog         log(fn);
  336.     int bytesSent = ::send( fd_, 
  337.                    message, 
  338.     messageLength, 
  339.     MSG_NOSIGNAL);
  340.     
  341.     if ( bytesSent < SUCCESS )
  342.     {
  343.      int error = errno;
  344. // If the other side disappeared we could get an EPIPE here.
  345. // Issue the ConnectionBroken exception since this is a situation 
  346. // that needs to be cleaned up by the user.
  347. //
  348. if ( error == EPIPE )
  349. {
  350.     throw Vocal::Transport::ConnectionBrokenException(
  351.               fn + " on send(): " + strerror(error), 
  352.               __FILE__, __LINE__, error);
  353. }
  354.      // If the socket is set nonblocking, we can get an EAGAIN
  355. // here, without sending the packet. If the socket is set 
  356. // blocking we can get an EINTR here, without sending the packet.
  357. // We'll throw a SystemStatus.
  358. // 
  359. if ( error == EAGAIN || error == EINTR )
  360. {
  361.             throw Vocal::SystemStatus(fn + " on send(): " + strerror(error), 
  362.                __FILE__, __LINE__, error);
  363.      }
  364.      throw Vocal::SystemException(fn + " on send(): " + strerror(error), 
  365.                __FILE__, __LINE__, error);
  366.     }
  367.     totalBytesSent_ += bytesSent;
  368.     VDEBUG(log) << fn << ": send on " << *this
  369. << ", bytes sent: " << bytesSent
  370. << ", of total: " << messageLength
  371. << VDEBUG_END(log);
  372.     return ( bytesSent );
  373. }
  374. int 
  375. StreamClientSocket::recvMessage(
  376.     void              * message, 
  377.     int                messageCapacity
  378. )
  379. throw ( Vocal::SystemException, 
  380.      Vocal::SystemStatus, 
  381. Vocal::Transport::ConnectionBrokenException )
  382. {
  383.     const string    fn("StreamClientSocket::recv");
  384.     VLog         log(fn);
  385.     int bytesReceived = ::recvfrom( fd_, 
  386.                         message, 
  387.     messageCapacity, 
  388.     MSG_NOSIGNAL,
  389.                    0, 
  390.     0);
  391.     if ( bytesReceived <= 0 )
  392.     {
  393.      int error = errno;
  394.      // If the other side has initiated a disconnect, we will get 0 bytes
  395. // received. If the other side disappeared we could get an EPIPE here.
  396. // Issue the ConnectionBroken exception since this is a situation 
  397. // that needs to be cleaned up by the user.
  398. //
  399. if ( bytesReceived == 0 || error == EPIPE )
  400. {
  401.     error = EPIPE;
  402.     
  403.     throw Vocal::Transport::ConnectionBrokenException(
  404.               fn + " on recv(): " + strerror(error), 
  405.               __FILE__, __LINE__, error);
  406. }
  407.      // If the socket is set nonblocking, we can get an EAGAIN
  408. // here, without receiving the packet. If the socket is set 
  409. // blocking we can get an EINTR here, without receiving the packet.
  410. // We'll throw a SystemStatus.
  411. // 
  412. if ( error == EAGAIN || error == EINTR )
  413. {
  414.             throw Vocal::SystemStatus(fn + " on recv(): " + strerror(error), 
  415.                __FILE__, __LINE__, error);
  416.      }
  417.      throw Vocal::SystemException(fn + " on recv(): " + strerror(error), 
  418.                __FILE__, __LINE__, error);
  419.     }
  420.     if ( !localAddrUpdated_ )
  421.     {
  422.      localAddrUpdated_ = true;
  423.      localAddr_->updateAddress(*this);
  424.     }
  425.         
  426.     totalBytesReceived_ += bytesReceived;
  427.     VDEBUG(log) << fn << ": received on " << *this
  428. << ", bytes received: " << bytesReceived
  429. << ", of capacity: " << messageCapacity
  430. << VDEBUG_END(log);
  431.     return ( bytesReceived );
  432. };