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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef Connection_hxx
  2. #define Connection_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 ConnectionHeaderVersion =
  53.     "$Id: Connection.hxx,v 1.1 2001/03/30 02:49:23 icahoon Exp $";
  54. #include "vin.h"
  55. #include "global.h"
  56. #include <string.h>
  57. #include <string>
  58. #include <sys/types.h>
  59. #include <sys/socket.h>
  60. #include <sys/uio.h>
  61. #if defined(__svr4__) || defined(__SUNPRO_CC)
  62. #include <netinet/in.h>
  63. #include <arpa/nameser.h>
  64. #include <resolv.h>
  65. #include <xil/xil.h>
  66. #if (XIL_API_MINOR_VERSION - 0 == 3)
  67. typedef int socklen_t;
  68. #endif
  69. #endif
  70. #include "VNetworkException.hxx"
  71. //User define class
  72. class TcpServerSocket;
  73. class TcpClientSocket;
  74. typedef struct sockaddr SA;
  75. #define MAXLINE   256
  76. class Connection
  77. {
  78.     public:
  79.         Connection(bool blocking = true)
  80.         : _connId(0), _live(false), _connAddrLen(0), _blocking(blocking)
  81.         {
  82.             initialize();
  83.         }
  84.         Connection(int conId, bool blocking = true)
  85.         : _connId(conId), _live(true), _connAddrLen(0), _blocking(blocking)
  86.         {
  87.             initialize();
  88.         }
  89.         inline int getConnId() const
  90.         {
  91.             return _connId;
  92.         }
  93.         inline struct sockaddr_in& getConnAddr()
  94.         {
  95.             return _connAddr;
  96.         }
  97.         inline socklen_t getConnAddrLen() const
  98.         {
  99.             return _connAddrLen;
  100.         }
  101.         Connection(const Connection& other)
  102.         {
  103.             _connId = other._connId;
  104.             _live = other._live;
  105.             _connAddrLen = other._connAddrLen;
  106.             _blocking = other._blocking;
  107.             memcpy((void*)&_connAddr, (void*)&other._connAddr, sizeof(_connAddr));
  108.             setState();
  109.         }
  110.         virtual ~Connection()
  111.         {
  112.             //if(_connId !=0)
  113.             //close();
  114.         }
  115.         Connection& operator=(const Connection& other)
  116.         {
  117.             if (this != &other)
  118.             {
  119.                 _connId = other._connId;
  120.                 _live = other._live;
  121.                 _connAddrLen = other._connAddrLen;
  122.                 _blocking = other._blocking;
  123.                 memcpy((void*)&_connAddr, (void*)&other._connAddr, sizeof(_connAddr));
  124.                 setState();
  125.             }
  126.             return *this;
  127.         }
  128.         bool operator==(const Connection& other)
  129.         {
  130.             return (_connId == other._connId);
  131.         }
  132.         bool operator!=(const Connection& other)
  133.         {
  134.             return (_connId != other._connId);
  135.         }
  136.         /**Reads line till 'n' is encountered or data ends.
  137.            Returns 0 if no more data, else return number of bytes read
  138.            Returns -1 if connection is closed
  139.          */
  140.         int readLine(void* data, size_t maxlen, int &bytesRead) throw (VNetworkException&);
  141.         /**Reads nchar from the connection.
  142.            Returns 0 if no more data, else return number of bytes read
  143.            Returns -1 if connection is closed
  144.          */
  145.         int readn(void* data, size_t nchar, int &bytesRead) throw (VNetworkException&);
  146.         int readn(void *data, size_t nchar) throw (VNetworkException&);
  147.         ///Writes data to the connection
  148.         void writeData(void* data, size_t n) throw (VNetworkException&);
  149.         void writeData(string& data) throw (VNetworkException&);
  150.         //Gets the connection description IP_ADDRESSS:Port
  151.         string getDescription() const;
  152.         ///Gets the IP of the destination 
  153.         string getIp() const;
  154.         /// Still connected?
  155.         bool isLive() const
  156.         {
  157.             return (_live);
  158.         }
  159.         void close();
  160.         ///Check if data is ready to be read within given seconds and microseconds
  161.         bool isReadReady(int seconds = 0, int mSecconds = 20000) const;
  162.         /// initialize the SIGPIPE signal handler (for broken pipes)
  163.         void initialize();
  164.         /// handler for SIGPIPE signal
  165.         static void signalHandler(int signo);
  166.         ///
  167.         void
  168.         deepCopy(const Connection& src, char** bufPtr, int* bufLenPtr);
  169.     private:
  170.         ssize_t effRead(char* ptr);
  171.         /**Sets the connection state to be blocking or non-blocking
  172.            based on the type of the connection.
  173.          */
  174.         void setState();
  175.         friend class TcpServerSocket;
  176.         friend class TcpClientSocket;
  177.         int _connId;
  178.         bool _live;
  179.         socklen_t _connAddrLen;
  180.         struct sockaddr_in _connAddr;
  181.         bool _blocking;
  182.         static bool _init;  /// Set to true if signal handler initialized
  183. }
  184. ;
  185. #endif