rtspbase.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _RTSPBASE_H_
  36. #define _RTSPBASE_H_
  37. #include "rtspif.h"
  38. #include "hxslist.h"
  39. //#include "trmimemp.h"
  40. const UINT16 MAX_RTSP_MSG   = 4096; // XXXBAB adjust this
  41. const UINT16 MAX_QUEUE_SIZE = (UINT16)0x7fff; // XXXGLENN adjust this
  42. const UINT32 MAX_RECVBUF_SIZE = 1000000;
  43. struct RTSPRequireOptions
  44. {
  45.     const char* pcharOption;
  46.     const char* pcharMessagesSupporting;
  47.     UINT32 ulMsgsSupLen;
  48. };
  49. struct RTSPAcceptEncodingOptions
  50. {
  51.     const char* pcharOption;
  52.     const char* pcharMessagesSupporting;
  53.     UINT32 ulMsgsSupLen;
  54. };
  55. struct RTSPTransportMimeType 
  56. {
  57.     RTSPTransportTypeEnum m_lTransportType;
  58.     RTSPTransportSubTypeEnum m_lTransportSubType;
  59.     const char* m_pMimeType;
  60. };
  61. class RTSPMessage;
  62. class RTSPRequestMessage;
  63. class RTSPResponseMessage;
  64. class MIMEHeaderValue;
  65. class RTSPBaseProtocol
  66. {
  67. public:
  68.     RTSPBaseProtocol();
  69.     ~RTSPBaseProtocol();
  70.     enum { RTSP_REQUIRE_ENTITY = 0, RTSP_REQUIRE_LOADTEST,
  71.         m_NumRTSPRequireOptions };
  72.     static const RTSPRequireOptions RTSPRequireOptionsTable[
  73.         m_NumRTSPRequireOptions];
  74.     enum { RTSP_ENCODING_MEI_DESCRIBE = 0, RTSP_ENCODING_MEI_SETUP,
  75.         m_NumRTSPAcceptEncodingOptions };
  76.     static const RTSPAcceptEncodingOptions RTSPAcceptEncodingOptionsTable[
  77.         m_NumRTSPAcceptEncodingOptions];
  78.     BOOL isRequired
  79. (
  80.     RTSPMessage* pRTSPMessageToSearch, 
  81.     UINT32 ulOptionToFind
  82. );
  83. protected:
  84.     HX_RESULT  enqueueMessage(RTSPMessage* pMsg);
  85.     RTSPMessage*  dequeueMessage(UINT32 seqNo);
  86.     void clearMessages();
  87.     virtual HX_RESULT sendRequest(RTSPRequestMessage* pMsg, UINT32 seqNo);
  88.     virtual HX_RESULT sendRequest(RTSPRequestMessage* pMsg,
  89. const char* pContent,
  90. const char* pMimeType, UINT32 seqNo);
  91.     RTSPResponseMessage* makeResponseMessage(UINT32 seqNo, const char* pErrNo);
  92.     HX_RESULT sendResponse(UINT32 seqNo, const char* pErrNo);
  93.     HX_RESULT sendResponse(RTSPResponseMessage* pMsg,
  94.      const char* pContent = 0,
  95. const char* pMimeType = 0);
  96.     const char*  getErrorText(const char* pErrNo);
  97.     void addRFC822Headers(RTSPMessage* pMsg,
  98. IHXValues* pRFC822Headers);
  99.     void getRFC822Headers(RTSPMessage* pMsg,
  100. REF(IHXValues*) pRFC822Headers);
  101.     HX_RESULT sendControlMessage(IHXBuffer* pBuffer);
  102.     HX_RESULT handleACK(IHXPacketResend* pPacketResend,
  103. RTSPResendBuffer* pResendBuffer,
  104. UINT16 uStreamNumber,
  105. UINT16* pAckList, UINT32 uAckListCount,
  106. UINT16* pNakList, UINT32 uNakListCount,
  107. BOOL bIgnoreACK);
  108.     RTPInfoEnum parseRTPInfoHeader(MIMEHeaderValue* pSeqValue,
  109. UINT16& streamID, UINT16& seqNum,
  110. UINT32& ulTimestamp, const char*& pControl);
  111.     virtual HX_RESULT closeSocket() {return HXR_OK;}
  112.     virtual HX_RESULT reopenSocket() {return HXR_OK;}
  113.     virtual void handleDebug(IHXBuffer* pMsgBuf, BOOL bInbound);
  114.     virtual void handleTiming(IHXBuffer* pMsgBuf, BOOL bInbound);
  115.     virtual void handleSendEvent(RTSPRequestMessage* pReqMsg);
  116.     virtual void handleSendEvent(RTSPResponseMessage* pRespMsg);
  117.     IUnknown* m_pContext;
  118.     IHXCommonClassFactory* m_pCommonClassFactory;
  119.     IHXTCPSocket* m_pSocket;
  120.     IHXBufferedSocket* m_pFastSocket;
  121.     UINT32 m_uControlBytesSent;
  122.     BOOL m_bConnectionlessControl;
  123.     IHXBuffer* m_pControlBuffer;
  124. private:
  125.     CHXSimpleList m_msgQueue;
  126. };
  127. #endif /* _RTSPBASE_H_ */