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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef RtspTcpBuffer_Hxx
  2. #define RtspTcpBuffer_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 281421,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 RtspTcpBuffer_hxx_Version =
  53.     "$Id: RtspTcpBuffer.hxx,v 1.16 2001/05/16 00:49:32 kle Exp $";
  54. #include "RtspBadDataException.hxx"
  55. #include "vtypes.h"
  56. #include "Sptr.hxx"
  57. #include "Fifo.h"
  58. #include "Connection.hxx"
  59. #include "VNetworkException.hxx"
  60. class RtspMsg;
  61. /** RtspTcpBuffer
  62.     Receives a message from a tcp connection, and adds the rtsp messages into
  63.     into a shraed recvFifo.
  64.  */
  65. class RtspTcpBuffer
  66. {
  67.     public:
  68.         /** Constructor
  69.          *  Process data on TCP connection
  70.          *  @param conn TCP socket connection
  71.          *  @param keepAliveCounter counter until self destruct
  72.          *  @param recvFifo fifo to insert new RTSP messages
  73.          *  @param bufferSize size of raw data buffer from socket
  74.          */
  75.         RtspTcpBuffer( Connection conn, int keepAliveCounter,
  76.                        Fifo< Sptr<RtspMsg> >& recvFifo, int bufferSize = 1024 );
  77.         /** Deconstructor */
  78.         virtual ~RtspTcpBuffer();
  79.         /** accessor function */
  80.         int getMapIndex() const { return myMapIndex; }
  81.         /** accessor function */
  82.         Connection getConnection() const { return myConnection; }
  83.         /** accessor function */
  84.         string getDescription() const { return myConnection.getDescription(); }
  85.         /** process data from TCP connect and add new RTSP message into recvFifo
  86.          *  @return true if sucessful
  87.          */
  88.         bool processConnection( Sptr<RtspTcpBuffer> tcpBufferObj );
  89.         /** closes the TCP connection */
  90.         void closeConnection();
  91.         
  92.         /** true if this TCP connection has been active */
  93.         bool isAlive();
  94.     private:
  95.         /** read TCP data into myCharBuf[0, bufferSize-1] 
  96.          *  adds new RTSP message to fifo if one is complete;
  97.          *  If it's not, save it in myRtspMsg and wait for future data to
  98.          *  make it complete
  99.          */
  100.         bool readTcpData( Sptr<RtspTcpBuffer> tcpBufferObj )
  101.         throw( VNetworkException&, RtspBadDataException& );
  102.         /** map index this object is stored under */
  103.         int myMapIndex;
  104.         /** TCP socket connection */
  105.         Connection myConnection;
  106.         /** max keepa alive counter */
  107.         int myMaxKeepAliveCounter;
  108.         /** keep alive counter */
  109.         int myKeepAliveCounter;
  110.         /** receiving char buffer */
  111. char* myCharBuf;
  112.         /** size of receiving char buffer */
  113. int myBufferSize;
  114.         /** hold the incomplete msg */
  115.         Sptr<RtspMsg> mySavedRtspMsg;
  116.         /** recv fifo from RtspTransceiver */
  117.         Fifo< Sptr<RtspMsg> >& myRecvFifo;
  118.     protected:
  119.         /** suppress copy constructor */
  120.         RtspTcpBuffer( const RtspTcpBuffer& );
  121.         /** suppress assignment operator */
  122.         RtspTcpBuffer& operator=( const RtspTcpBuffer& );
  123. };
  124. /* Local Variables: */
  125. /* c-file-style: "stroustrup" */
  126. /* indent-tabs-mode: nil */
  127. /* c-file-offsets: ((access-label . -) (inclass . ++)) */
  128. /* c-basic-offset: 4 */
  129. /* End: */
  130. #endif