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

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. /*
  36.  * Base class for all HTTP messages
  37.  */
  38. #ifndef _HTTPMSG_H_
  39. #define _HTTPMSG_H_
  40. #include "mimehead.h"
  41. struct IHXValues;
  42. class HTTPAuthentication: public MIMEHeaderValue
  43. {
  44. public:
  45.     enum AuthenticationType { AU_BASIC, AU_DIGEST, AU_HX_PRIVATE } m_authType;
  46.     HTTPAuthentication(const char* authString, AuthenticationType authType);
  47.     HTTPAuthentication(IHXValues* authValues);
  48.     ~HTTPAuthentication();
  49.     void asString(CHXString& str);
  50.     CHXString asString();
  51.     CHXString   m_authString;
  52.     IHXValues* m_authValues;
  53. };
  54. class HTTPMessage
  55. {
  56. public:
  57.     HTTPMessage();
  58.     virtual ~HTTPMessage();
  59.     static const int MAJ_VERSION;
  60.     static const int MIN_VERSION;
  61.     enum Tag { T_UNKNOWN, T_RESP, T_GET, T_POST, T_HEAD };
  62.     virtual Tag tag() const = 0;
  63.     virtual const char* tagStr() const = 0;
  64.     void setVersion(int maj, int min) { m_nMajorVersion = maj;
  65.                                         m_nMinorVersion = min; }
  66.     int majorVersion() { return m_nMajorVersion; }
  67.     int minorVersion() { return m_nMinorVersion; }
  68.     void setContent(const char* pStr) { m_content = pStr; }
  69.     void setContent(BYTE* pBuf, UINT32 pBufLen);
  70.     const char* getContent() { return m_content; }
  71.     int contentLength();
  72.     MIMEHeader* getHeader(const char* pName);
  73.     MIMEHeader* getFirstHeader();
  74.     MIMEHeader* getNextHeader();
  75.     // special case retrieval for simple Header: value situations
  76.     CHXString getHeaderValue(const char* pName);
  77.     int getHeaderValue(const char* pName, UINT32& value);
  78.     void addHeader(MIMEHeader* pHeader);
  79.     void addHeader(const char* pName, const char* pValue);
  80.     void setCloakedMsgFlag(BOOL flag) { m_isCloakedMsg = flag; }
  81.     BOOL isCloakedMsg() { return m_isCloakedMsg; }
  82.     virtual void asString(char* pBuf, int& msgLen, UINT32 ulBufLen) = 0;
  83. private:
  84.     void clearHeaderList();
  85.     int m_nMajorVersion;
  86.     int m_nMinorVersion;
  87.     CHXString m_content;
  88.     CHXSimpleList m_headers;
  89.     LISTPOSITION m_listpos;
  90.     BOOL m_isCloakedMsg;
  91. };
  92. /*
  93.  * HTTP request is in form:
  94.  *
  95.  *      method url version <CRLF>
  96.  *      *(header<CRLF>)
  97.  *      <CRLF>
  98.  */
  99. class HTTPRequestMessage: public HTTPMessage
  100. {
  101. public:
  102.     virtual HTTPMessage::Tag tag() const = 0;
  103.     virtual const char* tagStr() const = 0;
  104.     void setURL(const char* pURL) { m_url = pURL; }
  105.     const char* url() const { return m_url; }
  106.     virtual void asString(char* pBuf, int& msgLen, UINT32 ulBufLen);
  107. private:
  108.     CHXString m_url;
  109. };
  110. /*
  111.  * HTTP response is in form:
  112.  *
  113.  *      version error-code error-text <CRLF>
  114.  *      *(header<CRLF>)
  115.  *      <CRLF>
  116.  *
  117.  */
  118. class HTTPResponseMessage: public HTTPMessage
  119. {
  120. public:
  121.     HTTPMessage::Tag tag() const { return HTTPMessage::T_RESP; }
  122.     const char* tagStr() const { return ""; }
  123.     void setErrorCode(const char* eCode) { m_errorCode = eCode; }
  124.     const char* errorCode() { return m_errorCode; }
  125.     void setErrorMsg(const char* eMsg) { m_errorMsg = eMsg; }
  126.     const char* errorMsg() { return m_errorMsg; }
  127.     virtual void asString(char* pBuf, int& msgLen, UINT32 ulBufLen);
  128. private:
  129.     CHXString m_errorCode;
  130.     CHXString m_errorMsg;
  131. };
  132. class HTTPUnknownMessage: public HTTPRequestMessage
  133. {
  134. public:
  135.     HTTPMessage::Tag tag() const { return HTTPMessage::T_UNKNOWN; }
  136.     const char* tagStr() const { return "UNKNOWN"; }
  137. };
  138. class HTTPGetMessage: public HTTPRequestMessage
  139. {
  140. public:
  141.     HTTPMessage::Tag tag() const { return HTTPMessage::T_GET; }
  142.     const char* tagStr() const { return "GET"; }
  143. };
  144. class HTTPPostMessage: public HTTPRequestMessage
  145. {
  146. public:
  147.     HTTPMessage::Tag tag() const { return HTTPMessage::T_POST; }
  148.     const char* tagStr() const { return "POST"; }
  149. };
  150. class HTTPHeadMessage: public HTTPRequestMessage
  151. {
  152. public:
  153.     HTTPMessage::Tag tag() const { return HTTPMessage::T_HEAD; }
  154.     const char* tagStr() const { return "HEAD"; }
  155. };
  156. #endif /* _HTTPMSG_H_ */