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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: mimehead.cpp,v 1.3.32.1 2004/07/09 02:05:26 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. //#include "hlxclib/stdlib.h"
  50. //#include "hlxclib/stdio.h"
  51. #include "hxstring.h"
  52. #include "hxslist.h"
  53. #include "hxstrutl.h"
  54. #include "hxtypes.h"
  55. #include "mimehead.h"
  56. #include "hxheap.h"
  57. #ifdef _DEBUG
  58. #undef HX_THIS_FILE
  59. static const char HX_THIS_FILE[] = __FILE__;
  60. #endif
  61. void
  62. MIMEParameter::asString(CHXString& str)
  63. {
  64.     if(m_value.GetLength() > 0)
  65.     {
  66.      str = m_attribute + "=" + m_value;
  67.     }
  68.     else
  69.     {
  70. str = m_attribute;
  71.     }
  72. }
  73. MIMEHeaderValue::MIMEHeaderValue()
  74. {
  75. }
  76. MIMEHeaderValue::MIMEHeaderValue(const char* pAttribute)
  77. {
  78.     addParameter(pAttribute);
  79. }
  80. MIMEHeaderValue::MIMEHeaderValue(const char* pAttribute, const char* pValue)
  81. {
  82.     addParameter(pAttribute, pValue);
  83. }
  84. MIMEHeaderValue::~MIMEHeaderValue()
  85. {
  86.     clearParameterList();
  87. }
  88. void
  89. MIMEHeaderValue::addParameter(const char* pAttribute, const char* pValue)
  90. {
  91.     MIMEParameter* pParam = new MIMEParameter;
  92.     pParam->m_attribute = pAttribute;
  93.     pParam->m_value = pValue;
  94.     m_parameters.AddTail(pParam);
  95. }
  96. void
  97. MIMEHeaderValue::addParameter(const char* pAttribute)
  98. {
  99.     addParameter(pAttribute, "");
  100. }
  101. void
  102. MIMEHeaderValue::addParameter(MIMEParameter* pParam)
  103. {
  104.     m_parameters.AddTail(pParam);
  105. }
  106. MIMEParameter*
  107. MIMEHeaderValue::getParameter(const char* pAttribute)
  108. {
  109.     LISTPOSITION pos = m_parameters.GetHeadPosition();
  110.     while(pos)
  111.     {
  112. MIMEParameter* pParam = (MIMEParameter*)m_parameters.GetNext(pos);
  113. if(strcasecmp(pParam->m_attribute, pAttribute) == 0)
  114. {
  115.     return pParam;
  116. }
  117.     }
  118.     return 0;
  119. }
  120. const char*
  121. MIMEHeaderValue::getParameterValue(const char* pAttribute)
  122. {
  123.     MIMEParameter* pParam = getParameter(pAttribute);
  124.     if(pParam)
  125. return pParam->m_attribute;
  126.     return 0;
  127. }
  128. MIMEParameter*
  129. MIMEHeaderValue::getFirstParameter()
  130. {
  131.     m_listpos = m_parameters.GetHeadPosition();
  132.     if(m_listpos)
  133. return (MIMEParameter*)m_parameters.GetNext(m_listpos);
  134.     return 0;
  135. }
  136. MIMEParameter*
  137. MIMEHeaderValue::getNextParameter()
  138. {
  139.     if(m_listpos)
  140. return (MIMEParameter*)m_parameters.GetNext(m_listpos);
  141.     return 0;
  142. }
  143. void
  144. MIMEHeaderValue::clearParameterList()
  145. {
  146.     MIMEParameter* pParam = getFirstParameter();
  147.     while(pParam)
  148.     {
  149. delete pParam;
  150. pParam = getNextParameter();
  151.     }
  152. }
  153. void
  154. MIMEHeaderValue::asString(CHXString& str)
  155. {
  156.     BOOL bFirstParam = TRUE;
  157.     MIMEParameter* pValueRep = getFirstParameter();
  158.     while(pValueRep)
  159.     {
  160. CHXString tmpStr;
  161. pValueRep->asString(tmpStr);
  162. if(bFirstParam)
  163. {
  164.     str = tmpStr;
  165.     bFirstParam = FALSE;
  166. }
  167. else
  168. {
  169.     str += ";" + tmpStr;
  170. }
  171. pValueRep = getNextParameter();
  172.     }
  173. }
  174. CHXString
  175. MIMEHeaderValue::value()
  176. {
  177.     CHXString str;
  178.     asString(str);
  179.     return str;
  180. }
  181. MIMEHeader::MIMEHeader(const char* pName):
  182.     m_name(pName)
  183. {
  184. }
  185. MIMEHeader::~MIMEHeader()
  186. {
  187.     clearHeaderValueList();
  188. }
  189. void
  190. MIMEHeader::addHeaderValue(MIMEHeaderValue* pHeaderValue)
  191. {
  192.     m_headerValues.AddTail(pHeaderValue);
  193. }
  194. void
  195. MIMEHeader::addHeaderValue(const char* pValue)
  196. {
  197.     addHeaderValue(new MIMEHeaderValue(pValue));
  198. MIMEHeaderValue*
  199. MIMEHeader::getHeaderValue(const char* pValue)
  200. {
  201.     LISTPOSITION pos = m_headerValues.GetHeadPosition();
  202.     while(pos)
  203.     {
  204. MIMEHeaderValue* pHeaderValue = 
  205.     (MIMEHeaderValue*)m_headerValues.GetNext(pos);
  206. if(strcasecmp(pHeaderValue->value(), pValue) == 0)
  207. {
  208.     return pHeaderValue;
  209. }
  210.     }
  211.     return 0;
  212. }
  213. MIMEHeaderValue*
  214. MIMEHeader::getFirstHeaderValue()
  215. {
  216.     m_listpos = m_headerValues.GetHeadPosition();
  217.     if(m_listpos)
  218. return (MIMEHeaderValue*)m_headerValues.GetNext(m_listpos);
  219.     return 0;
  220. }
  221. MIMEHeaderValue*
  222. MIMEHeader::getNextHeaderValue()
  223. {
  224.     if(m_listpos)
  225. return (MIMEHeaderValue*)m_headerValues.GetNext(m_listpos);
  226.     return 0;
  227. }
  228. void
  229. MIMEHeader::clearHeaderValueList()
  230. {
  231.     MIMEHeaderValue* pHeaderValue = getFirstHeaderValue();
  232.     while(pHeaderValue)
  233.     {
  234. delete pHeaderValue;
  235. pHeaderValue = getNextHeaderValue();
  236.     }
  237. }
  238. void
  239. MIMEHeader::asString(CHXString& msgStr)
  240. {
  241.     MIMEHeaderValue* pHeaderValue = (MIMEHeaderValue*)getFirstHeaderValue();
  242.     int firstValue = 1;
  243.     while(pHeaderValue)
  244.     {
  245. if(!firstValue)
  246. {
  247.     msgStr += ",";
  248. }
  249. else
  250. {
  251.     // msgStr += " ";
  252.     firstValue = 0;
  253. }
  254. CHXString tmpStr;
  255. pHeaderValue->asString(tmpStr);
  256. msgStr += tmpStr;
  257. pHeaderValue = (MIMEHeaderValue*)getNextHeaderValue();
  258.     }
  259.     msgStr += "rn";
  260. }