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

Symbian

开发平台:

Visual C++

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