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

流媒体/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 TcpClientSocket_cxx_Version =
  51.     "$Id: Tcp_ClientSocket.cxx,v 1.1 2001/06/29 03:44:01 bko Exp $";
  52. #ifndef __vxworks
  53. #include <errno.h>
  54. #include <unistd.h>
  55. #include <netinet/in.h>
  56. #include <arpa/inet.h>
  57. #include <stdio.h>
  58. #include <sys/socket.h>
  59. #ifndef WIN32
  60. #include <strings.h>
  61. #else
  62. #include <string.h>
  63. #endif
  64. #include "VNetworkException.hxx"
  65. #include "Tcp_ClientSocket.hxx"
  66. #include "VEnvVar.hxx"
  67. #include "NetworkAddress.h"
  68. #include "cpLog.h"
  69. TcpClientSocket::TcpClientSocket(const string& hostName,
  70.                                  bool closeCon, bool blocking)
  71.         : _conn(blocking),
  72.         _hostName(hostName),
  73.         _serverPort( -1),
  74.         _closeCon(closeCon),
  75.         _blocking(blocking)
  76. {
  77.     initalize();
  78. }
  79. TcpClientSocket::TcpClientSocket(const string& hostName, int servPort,
  80.                                  bool closeCon, bool blocking)
  81.         : _conn(blocking),
  82.         _hostName(hostName),
  83.         _serverPort(servPort),
  84.         _closeCon(closeCon),
  85.         _blocking(blocking)
  86. {
  87.     initalize();
  88. }
  89. TcpClientSocket::TcpClientSocket(const NetworkAddress& server,
  90.                                  bool closeCon, bool blocking)
  91.         : _conn(blocking),
  92.         _closeCon(closeCon),
  93.         _blocking(blocking)
  94. {
  95.     _hostName = server.getIpName();
  96.     _serverPort = server.getPort();
  97.     cpLog(LOG_INFO, "%s %d", _hostName.c_str(), _serverPort);
  98.     if (_serverPort == -1 )
  99.     {
  100.         _serverPort = VEnvVar::VPS_PORT;
  101.     }
  102.     initalize();
  103. }
  104. TcpClientSocket::TcpClientSocket(const TcpClientSocket& other)
  105.         : _conn(other._blocking)
  106. {
  107.     _conn = other._conn;
  108. }
  109. TcpClientSocket&
  110. TcpClientSocket::operator=(TcpClientSocket& other)
  111. {
  112.     if (this != &other)
  113.     {
  114.         _conn = other._conn;
  115.         _hostName = other._hostName;
  116.         _serverPort = other._serverPort;
  117.         _closeCon = other._closeCon;
  118.         _blocking = other._blocking;
  119.     }
  120.     return *this;
  121. }
  122. void
  123. TcpClientSocket::initalize()
  124. {
  125.     _conn._connId = ::socket(AF_INET, SOCK_STREAM, 0);
  126.     if (_conn._connId == -1)
  127.     {
  128.         char buf[256];
  129.         sprintf(buf, "Failed to connect to fserver %s, reason %s",
  130.                 _hostName.c_str(), strerror(errno));
  131.         throw VNetworkException(buf, __FILE__, __LINE__, errno);
  132.     }
  133. #ifndef WIN32
  134.     bzero(&_conn._connAddr, sizeof(_conn._connAddr));
  135. #else
  136. memset(&_conn._connAddr, 0, sizeof(_conn._connAddr));
  137. #endif
  138.     _conn._connAddr.sin_family = AF_INET;
  139.     NetworkAddress na(_hostName, _serverPort);
  140.     _conn._connAddr.sin_addr.s_addr = inet_addr(na.getIpName().c_str());
  141.     _conn._connAddr.sin_port = htons(na.getPort());
  142. }
  143. TcpClientSocket::~TcpClientSocket()
  144. {
  145.     close();
  146. }
  147. void
  148. TcpClientSocket::connect() throw (VNetworkException&)
  149. {
  150.     if (::connect(_conn._connId,
  151.                   (SA*)&_conn._connAddr,
  152.                   sizeof(_conn._connAddr)) < 0)
  153.     {
  154.         char buf[256];
  155.         sprintf(buf, "Failed to connect to server %s, reason %s",
  156.                 _hostName.c_str(), strerror(errno));
  157.         cpLog(LOG_DEBUG, buf);
  158.         _conn.close();
  159.         throw VNetworkException(buf, __FILE__, __LINE__, errno);
  160.     }
  161.     _conn.setState();
  162. }
  163. void
  164. TcpClientSocket::close()
  165. {
  166.     if (_closeCon && _conn.getConnId() > 2)
  167.         _conn.close();
  168. }
  169. #endif