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