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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #if !defined(SOCKET_DOT_H)
  2. #define SOCKET_DOT_H
  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 Socket_hxx_Version = 
  53.     "$Id: Socket.hxx,v 1.15 2001/06/26 22:54:22 icahoon Exp $";
  54. #include "TransportCommon.hxx"
  55. #include "FileDescriptor.hxx"
  56. #include "AddressFamily.hxx"
  57. #include "SocketType.hxx"
  58. #include "SystemException.hxx"
  59. #include <string>
  60. /** Infrastructure common to VOCAL.
  61.  */
  62. namespace Vocal 
  63. {
  64. /** Infrastructure in VOCAL related to making network transport layer 
  65.  *  connections.<br><br>
  66.  */
  67. namespace Transport 
  68. {
  69. class AddressFamily;
  70. class TransportAddress;
  71. class SocketType;
  72. /** A Socket extends a FileDescriptor, specializing it with
  73.  *  transport related properties like an address type, a socket type
  74.  *  and a local transport address.<br><br>
  75.  *
  76.  *  @see    Vocal::IO::FileDescriptor
  77.  *  @see    Vocal::Transport::AddressFamily
  78.  *  @see    Vocal::Transport::TransportAddress
  79.  *  @see    Vocal::Transport::SocketType
  80.  *  @see    Vocal::SystemException
  81.  *  @see    Vocal::IO::file_descriptor_t
  82.  */
  83. class Socket : public Vocal::IO::FileDescriptor
  84. {
  85.     protected:
  86.      /** Construct given the AddressFamily, SocketType, the optional
  87.  *  name, and an optional already existing native file descriptor.
  88.  *  This will create the socket and bind the socket to the next
  89.  *  available port.
  90.  *
  91.  *  @exception Vocal::SystemException
  92.  */
  93.      Socket(
  94.     const AddressFamily     &  addressFamily,
  95.     const SocketType      & sockType,
  96.     const char           *  name = 0,
  97.     IO::file_descriptor_t    fd = INVALID
  98. )
  99.      throw ( Vocal::SystemException );
  100.      /** Construct given the local transport address, the SocketType
  101.  *  and the optional socket name. The socket will be created and
  102.  *  it will be bound to the local transport address.
  103.  *
  104.  *  @exception Vocal::SystemException
  105.  */
  106.      Socket(
  107.     const TransportAddress  &  localAddr,
  108.     const SocketType      &  sockType,
  109.     const char           *  name = 0
  110. )
  111. throw ( Vocal::SystemException );
  112.     public:
  113.     
  114.      /** Virtual destructor.
  115.  */
  116. virtual ~Socket();
  117.      /** Returns the local address to which the socket is bound.
  118.  */
  119.      const  TransportAddress &   getLocalAddress() const;
  120.      /** Returns the address family of the socket.
  121.  */
  122. const AddressFamily &      getAddressFamily() const;
  123.      /** Returns the socket type.
  124.  */
  125.      const SocketType &      getSocketType() const;    
  126.      /** Returns the number of bytes sent on this socket.
  127.  */
  128.      unsigned long           bytesSent() const;
  129.      /** Returns the number of bytes received on this socket.
  130.  */
  131. unsigned long           bytesReceived() const;
  132.      /** Write this Socket to an ostream.
  133.  */
  134. virtual ostream &            writeTo(ostream &) const;
  135.     
  136.     protected:
  137.      /** The local address this socket is bound to.
  138.  */
  139.      TransportAddress         * localAddr_;
  140.      /** The addressFamily of this socket.
  141.  */
  142. AddressFamily           addressFamily_;
  143.      /** The socket type.
  144.  */
  145. SocketType             socketType_;
  146.      /** The number of bytes sent.
  147.  */
  148. unsigned long           totalBytesSent_;
  149.      /** The number of bytes received.
  150.  */
  151. unsigned long           totalBytesReceived_;
  152.      /** The name of the socket.
  153.  */
  154.      string                name_;
  155.     private:
  156.      /** Copying is suppressed.
  157.  */
  158. Socket(const Socket &);
  159.      /** Copying is suppressed.
  160.  */
  161.      Socket &               operator=(const Socket &);
  162. };
  163. } // namespace Transport
  164. } // namespace Vocal
  165. #endif // !defined(SOCKET_DOT_H)