rtspmsg.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:10k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: rtspmsg.h,v 1.1.1.1.50.1 2004/07/09 02:04:48 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. /*
  50.  * RTSP/1.0 message and helper classes 
  51.  *
  52.  */
  53. #ifndef _RTSPMSG_H_
  54. #define _RTSPMSG_H_
  55. #include "hxrtsp2.h"
  56. #include "mimehead.h"
  57. class CHXString;
  58. class CHXSimpleList;
  59. struct IHXValues;
  60. const UINT32 RTSP_PLAY_RANGE_BLANK = (UINT32)-1;
  61. /*
  62.  * Contains a begin/end pair (expressed in millisecs)
  63.  */
  64. class RTSPRange: public MIMEHeaderValue
  65. {
  66. public:
  67.     enum RangeType { TR_SMPTE, TR_CLOCK, TR_NPT } m_rangeType;
  68.     RTSPRange(UINT32 begin, UINT32 end, RangeType rType);
  69.     UINT32 m_begin;
  70.     UINT32 m_end;
  71.     void asString(CHXString& str);
  72.     CHXString asString();
  73. };
  74. class RTSPAuthentication: public MIMEHeaderValue
  75. {
  76. public:
  77.     enum AuthenticationType { AU_BASIC, AU_DIGEST, AU_HX_PRIVATE } m_authType;
  78.     RTSPAuthentication(const char* authString, AuthenticationType authType);
  79.     RTSPAuthentication(IHXValues* authValues);
  80.     ~RTSPAuthentication();
  81.     void asString(CHXString& str);
  82.     CHXString asString();
  83.     CHXString   m_authString;
  84.     IHXValues* m_authValues;
  85. };
  86. class RTSPDigestAuthorization: public MIMEHeaderValue
  87. {
  88. public:
  89.     RTSPDigestAuthorization(IHXValues* pValues);
  90.     void asString(CHXString& str);
  91.     CHXString asString();
  92.     IHXValues* m_values;
  93. };
  94. class RTSPPEPInfo: public MIMEHeaderValue
  95. {
  96. public:
  97.     RTSPPEPInfo(BOOL bStrengthMust);
  98.     ~RTSPPEPInfo();
  99.     void asString(CHXString& str);
  100.     CHXString asString();
  101.     BOOL m_bStrengthMust;
  102. };
  103. /*
  104.  * Base class for all RTSP messages
  105.  */
  106. class RTSPMessage
  107. {
  108. public:
  109.     RTSPMessage();
  110.     virtual ~RTSPMessage();
  111.     static const int MAJ_VERSION;
  112.     static const int MIN_VERSION;
  113.     enum Tag { T_UNKNOWN, T_RESP, T_SETUP, T_REDIRECT, 
  114.        T_PLAY, T_PAUSE, T_SET_PARAM, T_GET_PARAM,
  115.        T_OPTIONS, T_DESCRIBE, T_TEARDOWN, T_RECORD,
  116.        T_ANNOUNCE };
  117.     virtual RTSPMessage::Tag tag() const = 0;
  118.     virtual RTSPMethod GetMethod() const = 0;
  119.     virtual const char* tagStr() const = 0;
  120.     void setVersion(int maj, int min) { m_nMajorVersion = maj;
  121.                                         m_nMinorVersion = min; }
  122.     int majorVersion() { return m_nMajorVersion; }
  123.     int minorVersion() { return m_nMinorVersion; }
  124.     void setContent(const char* pStr) { m_content = pStr; }
  125.     const char* getContent() { return m_content; }
  126.     int contentLength();
  127.     MIMEHeader* getHeader(const char* pName);
  128.     MIMEHeader* getFirstHeader();
  129.     MIMEHeader* getNextHeader();
  130.     // special case retrieval for simple Header: value situations
  131.     CHXString getHeaderValue(const char* pName);
  132.     int getHeaderValue(const char* pName, UINT32& value);
  133.     void addHeader(MIMEHeader* pHeader, BOOL bAtHead = FALSE);
  134.     void addHeader(const char* pName, const char* pValue, BOOL bAtHead = FALSE);
  135.     void setSeqNo(UINT32 seqNo) { m_seqNo = seqNo; }
  136.     UINT32 seqNo() const { return m_seqNo; }
  137.     virtual void asString(char* pBuf, int& msgLen) = 0;
  138.     virtual CHXString asString() = 0;
  139.     HX_RESULT AsValues(REF(IHXValues*) pIHXValuesHeaders);
  140. private:
  141.     void clearHeaderList();
  142.     int m_nMajorVersion;
  143.     int m_nMinorVersion;
  144.     UINT32 m_seqNo;
  145.     CHXString m_content;
  146.     CHXSimpleList m_headers;
  147.     LISTPOSITION m_listpos;
  148. };
  149. /*
  150.  * RTSP request is in form:
  151.  *
  152.  *  method url version sequence-number<CRLF>
  153.  *      *(header<CRLF>)
  154.  *      <CRLF>
  155.  */
  156. class RTSPRequestMessage: public RTSPMessage
  157. {
  158. public:
  159.     virtual RTSPMessage::Tag tag() const = 0;
  160.     virtual RTSPMethod GetMethod() const = 0;
  161.     virtual const char* tagStr() const = 0;
  162.     void setURL(const char* pURL) { m_url = pURL; }
  163.     const char* url() const { return m_url; }
  164.     void asString(char* pBuf, int& msgLen);
  165.     CHXString asString();
  166. private:
  167.     CHXString m_url;
  168. };
  169. /*
  170.  * RTSP response is in form:
  171.  *
  172.  * version error-code sequence-number error-text<CRLF>
  173.  *      *(header<CRLF>)
  174.  * <CRLF>
  175.  *
  176.  */
  177. class RTSPResponseMessage: public RTSPMessage
  178. {
  179. public:
  180.     virtual RTSPMessage::Tag tag() const { return RTSPMessage::T_RESP; }
  181.     virtual RTSPMethod GetMethod() const { return RTSP_RESP; }
  182.     const char* tagStr() const { return ""; }
  183.     void setErrorCode(const char* eCode) 
  184.     {
  185. m_errorCode = eCode; 
  186. m_ulErrorCode = atol(eCode);
  187.     }
  188.     const char* errorCode() { return m_errorCode; }
  189.     const UINT32 errorCodeAsUINT32() { return m_ulErrorCode; }
  190.     void setErrorMsg(const char* eMsg) { m_errorMsg = eMsg; }
  191.     const char* errorMsg() { return m_errorMsg; }
  192.     void asString(char* pBuf, int& msgLen);
  193.     CHXString asString();
  194. private:
  195.     CHXString m_errorCode;
  196.     CHXString m_errorMsg;
  197.     UINT32 m_ulErrorCode;
  198. };
  199. /*
  200.  *  Request messgage objects are separated by tags for the RTSP
  201.  *  state machine to dispatch events.
  202.  */
  203. class RTSPUnknownMessage: public RTSPRequestMessage
  204. {
  205. public:
  206.     RTSPMessage::Tag tag() const { return RTSPMessage::T_UNKNOWN; }
  207.     RTSPMethod GetMethod() const { return RTSP_UNKNOWN; }
  208.     const char* tagStr() const { return "UNKNOWN"; }
  209. };
  210. class RTSPSetupMessage: public RTSPRequestMessage
  211. {
  212. public:
  213.     RTSPMessage::Tag tag() const { return RTSPMessage::T_SETUP; }
  214.     RTSPMethod GetMethod() const { return RTSP_SETUP; }
  215.     const char* tagStr() const { return "SETUP"; }
  216. };
  217. class RTSPRedirectMessage: public RTSPRequestMessage
  218. {
  219. public:
  220.     RTSPMessage::Tag tag() const { return RTSPMessage::T_REDIRECT; }
  221.     RTSPMethod GetMethod() const { return RTSP_REDIRECT; }
  222.     const char* tagStr() const { return "REDIRECT"; }
  223. };
  224. class RTSPPlayMessage: public RTSPRequestMessage
  225. {
  226. public:
  227.     RTSPMessage::Tag tag() const { return RTSPMessage::T_PLAY; }
  228.     RTSPMethod GetMethod() const { return RTSP_PLAY; }
  229.     const char* tagStr() const { return "PLAY"; }
  230. };
  231. class RTSPPauseMessage: public RTSPRequestMessage
  232. {
  233. public:
  234.     RTSPMessage::Tag tag() const { return RTSPMessage::T_PAUSE; }
  235.     RTSPMethod GetMethod() const { return RTSP_PAUSE; }
  236.     const char* tagStr() const { return "PAUSE"; }
  237. };
  238. class RTSPSetParamMessage: public RTSPRequestMessage
  239. {
  240. public:
  241.     RTSPMessage::Tag tag() const { return RTSPMessage::T_SET_PARAM; }
  242.     RTSPMethod GetMethod() const { return RTSP_SET_PARAM; }
  243.     const char* tagStr() const { return "SET_PARAMETER"; }
  244. };
  245. class RTSPGetParamMessage: public RTSPRequestMessage
  246. {
  247. public:
  248.     RTSPMessage::Tag tag() const { return RTSPMessage::T_GET_PARAM; }
  249.     RTSPMethod GetMethod() const { return RTSP_GET_PARAM; }
  250.     const char* tagStr() const { return "GET_PARAMETER"; }
  251. };
  252. class RTSPTeardownMessage: public RTSPRequestMessage
  253. {
  254. public:
  255.     RTSPMessage::Tag tag() const { return RTSPMessage::T_TEARDOWN; }
  256.     RTSPMethod GetMethod() const { return RTSP_TEARDOWN; }
  257.     const char* tagStr() const { return "TEARDOWN"; }
  258. };
  259. class RTSPOptionsMessage: public RTSPRequestMessage
  260. {
  261. public:
  262.     RTSPMessage::Tag tag() const { return RTSPMessage::T_OPTIONS; }
  263.     RTSPMethod GetMethod() const { return RTSP_OPTIONS; }
  264.     const char* tagStr() const { return "OPTIONS"; }
  265. };
  266. class RTSPDescribeMessage: public RTSPRequestMessage
  267. {
  268. public:
  269.     RTSPMessage::Tag tag() const { return RTSPMessage::T_DESCRIBE; }
  270.     RTSPMethod GetMethod() const { return RTSP_DESCRIBE; }
  271.     const char* tagStr() const { return "DESCRIBE"; }
  272. };
  273. class RTSPRecordMessage: public RTSPRequestMessage
  274. {
  275. public:
  276.     RTSPMessage::Tag tag() const { return RTSPMessage::T_RECORD; }
  277.     RTSPMethod GetMethod() const { return RTSP_RECORD; }
  278.     const char* tagStr() const { return "RECORD"; }
  279. };
  280. class RTSPAnnounceMessage: public RTSPRequestMessage
  281. {
  282. public:
  283.     RTSPMessage::Tag tag() const { return RTSPMessage::T_ANNOUNCE; }
  284.     RTSPMethod GetMethod() const { return RTSP_ANNOUNCE; }
  285.     const char* tagStr() const { return "ANNOUNCE"; }
  286. };
  287. #endif /* _RTSPMSG_H_ */