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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxstradv.cpp,v 1.10.32.3 2004/07/09 01:45:59 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 "hxstring.h"
  50. #include "hlxclib/string.h"
  51. #include "hlxclib/ctype.h"
  52. #include "hxassert.h"
  53. #include "hxstrutl.h"
  54. CHXString CHXString::SpanIncluding(const char* pCharSet) const
  55. {
  56.     if (m_pRep)
  57. return CHXString(m_pRep->GetBuffer(), 
  58.  strspn(m_pRep->GetBuffer(), pCharSet));
  59.     return CHXString();
  60. }
  61. CHXString CHXString::SpanExcluding(const char* pCharSet) const
  62. {
  63.     if (m_pRep)
  64. return CHXString(m_pRep->GetBuffer(), 
  65.  strcspn(m_pRep->GetBuffer(), pCharSet));
  66.     return CHXString();
  67. }
  68. void CHXString::MakeUpper()
  69. {
  70.     if (m_pRep)
  71.     {
  72. EnsureUnique();
  73. char* pCur = m_pRep->GetBuffer();
  74. for(; *pCur; ++pCur)
  75.     *pCur = toupper(*pCur);
  76.     }
  77. }
  78. void CHXString::MakeLower()
  79. {
  80.     if (m_pRep)
  81.     {
  82. EnsureUnique();
  83. char* pCur = m_pRep->GetBuffer();
  84. for(; *pCur; ++pCur)
  85.     *pCur = tolower(*pCur);
  86.     }
  87. }
  88. INT32 CHXString::Find(char ch) const
  89. {
  90.     INT32 ret = -1;
  91.     if (m_pRep)
  92.     {
  93. const char* pTmp = strchr(m_pRep->GetBuffer(), ch);
  94. if (pTmp)
  95.     ret = pTmp - m_pRep->GetBuffer();
  96.     }
  97.     return ret;
  98. }
  99. INT32 CHXString::ReverseFind(char ch) const
  100. {
  101.     INT32 ret = -1;
  102.     if (m_pRep)
  103.     {
  104. const char* pTmp = strrchr(m_pRep->GetBuffer(), ch);
  105. if (pTmp)
  106.     ret = pTmp - m_pRep->GetBuffer();
  107.     }
  108.     return ret;
  109. }
  110. INT32 CHXString::Find(const char* pStr) const
  111. {
  112.     INT32 ret = -1;
  113.     
  114.     if (m_pRep)
  115.     {
  116. const char* pTmp = strstr(m_pRep->GetBuffer(), pStr);
  117. if (pTmp)
  118.     ret = pTmp - m_pRep->GetBuffer();
  119.     }
  120.     return ret;
  121. }
  122. void CHXString::AppendULONG(ULONG32 value)
  123. {
  124.     static const int MaxULongString = 12;
  125.     char buf[MaxULongString]; /* Flawfinder: ignore */
  126.     int tmp = SafeSprintf(buf, MaxULongString, "%lu", value);
  127.     HX_ASSERT(tmp < MaxULongString);
  128.     *this += buf;
  129. }
  130. void CHXString::AppendEndOfLine()
  131. {
  132. #if defined(_WINDOWS) || defined(_SYMBIAN)
  133.     *this += "rn";
  134. #elif defined(_MACINTOSH)
  135.     *this += 'r';
  136. #else
  137.     *this += 'n';
  138. #endif /* defined(_WINDOWS) */
  139. }
  140. void CHXString::Center(short length)
  141. {
  142.     if (m_pRep)
  143.     {
  144. EnsureUnique();
  145. TrimLeft();
  146. TrimRight();
  147. int offset = 0;
  148. if (length > m_pRep->GetStringSize())
  149.     offset = length / 2 - m_pRep->GetStringSize() / 2;
  150. HX_ASSERT(offset >= 0);
  151. int newSize = offset + m_pRep->GetStringSize();
  152. if (m_pRep->GetBufferSize() < (newSize + 1))
  153.     m_pRep->ResizeAndCopy(newSize);
  154. char* pSrc = m_pRep->GetBuffer() + m_pRep->GetStringSize();
  155. char* pDest = m_pRep->GetBuffer() + newSize;
  156. // Copy the string so that it is located offset characters
  157. // from the start of the string
  158. while (pSrc >= m_pRep->GetBuffer())
  159.     *pDest-- = *pSrc--;
  160. // Put offset number of space characters at the start of the string
  161. while (pDest >= m_pRep->GetBuffer())
  162.     *pDest-- = ' ';
  163. m_pRep->SetStringSize(newSize);
  164.     }
  165.     else if (length > 0)
  166. m_pRep = new CHXStringRep(' ', length / 2);
  167. }
  168. CHXString CHXString::Mid(INT32 i, INT32 length) const
  169. {
  170.     HX_ASSERT(m_pRep && (i <= m_pRep->GetStringSize()));
  171.     
  172.     if (m_pRep)
  173.     {
  174. if ((i + length) > m_pRep->GetStringSize())
  175.     length = m_pRep->GetStringSize() - i;
  176. return CHXString(m_pRep->GetBuffer() + i, length);
  177.     }
  178.     return CHXString();
  179. }
  180. CHXString CHXString::Mid(INT32 i) const
  181. {
  182.     HX_ASSERT(m_pRep &&(i <= m_pRep->GetStringSize()));
  183.     if (m_pRep)
  184. return CHXString(m_pRep->GetBuffer() + i);
  185.     return CHXString();
  186. }
  187. CHXString CHXString::Left(INT32 length) const
  188. {
  189.     HX_ASSERT(length >= 0);
  190.     
  191.     if (m_pRep)
  192.     {
  193. if (length > m_pRep->GetStringSize())
  194.     length = m_pRep->GetStringSize();
  195. return CHXString(m_pRep->GetBuffer(), length);
  196.     }
  197.     return CHXString();
  198. }
  199. CHXString CHXString::Right(INT32 length) const
  200. {
  201.     HX_ASSERT(length >= 0);
  202.     
  203.     if (m_pRep)
  204.     {
  205. if (length > m_pRep->GetStringSize())
  206.     length = m_pRep->GetStringSize();
  207. int offset = m_pRep->GetStringSize() - length;
  208. return CHXString(m_pRep->GetBuffer() + offset, length);
  209.     }
  210.     return CHXString();
  211. }
  212. ULONG32 CHXString::CountFields(char delim) const
  213. {
  214.     ULONG32 ret = 0;
  215.     if (m_pRep && m_pRep->GetStringSize())
  216.     {
  217. ret++; // If the string is not empty we have at least 1 field.
  218. for (const char* pCur = m_pRep->GetBuffer(); *pCur; pCur++)
  219.     if (*pCur == delim)
  220. ret++;
  221.     }
  222.     return ret;
  223. }
  224. static UINT64 PackState(ULONG32 index, ULONG32 offset)
  225. {
  226.     return (((UINT64)index) << 32) | offset;
  227. }
  228. static void UnpackState(UINT64 state, ULONG32& index, ULONG32& offset)
  229. {
  230.     index = INT64_TO_ULONG32(state >> 32);
  231.     offset = INT64_TO_ULONG32((state & 0x0ffffffff));
  232. }
  233. CHXString CHXString::GetNthField(char delim, ULONG32 i, UINT64& state) const
  234. {
  235.     CHXString ret;
  236.     if (m_pRep)
  237.     {
  238. ULONG32 index = 0;
  239. ULONG32 offset = 0;
  240. // Get the state values
  241. UnpackState(state, index, offset);
  242. if (offset >= (ULONG32)(m_pRep->GetStringSize()))
  243.     offset = 0;
  244. // 'i' passed in as a 1 based, with the exception that 0 also means 1.
  245. // This converts the 1 based index into a 0 base index
  246. if (i > 0)
  247.     i = i - 1;
  248. if (i >= index)
  249. {
  250.     const char* pStart = m_pRep->GetBuffer();
  251.     
  252.     // Apply state information
  253.     pStart += offset;
  254.     
  255.     // Find the start of the field
  256.     for(;(*pStart) && (index < i); pStart++)
  257. if (*pStart == delim)
  258.     index++;
  259.     
  260.     const char* pEnd = pStart;
  261.     
  262.     // Find the end of the field
  263.     for (; (*pEnd) && (*pEnd != delim); pEnd++);
  264.     
  265.     if (pStart != pEnd)
  266. ret = CHXString(pStart, pEnd - pStart);
  267.     
  268.     // Update the state
  269.     PackState(index, pEnd - m_pRep->GetBuffer());
  270. }
  271.     }
  272.     return ret;
  273. }
  274. CHXString CHXString::NthField(char delim, ULONG32 i) const
  275. {
  276.     UINT64 state = PackState(0,0);
  277.     return GetNthField(delim, i, state);
  278. }
  279. void CHXString::TrimRight()
  280. {
  281.     if (m_pRep)
  282.     {
  283. EnsureUnique();
  284. INT32 strSize = m_pRep->GetStringSize();
  285. if (strSize)
  286. {
  287.     char* pCur = m_pRep->GetBuffer() + strSize - 1;
  288.     
  289.     for(;(pCur >= m_pRep->GetBuffer()) && (isspace(*pCur)); pCur--, strSize--);
  290.     
  291.     // Null terminate the string
  292.     m_pRep->GetBuffer()[strSize] = '';
  293.     
  294.     m_pRep->SetStringSize(strSize);
  295. }
  296.     }
  297. }
  298. void CHXString::TrimLeft()
  299. {
  300.     if (m_pRep)
  301.     {
  302. EnsureUnique();
  303. char* pStart = m_pRep->GetBuffer();
  304. for(; (*pStart) && (isspace(*pStart)); pStart++);
  305. INT32 newSize = m_pRep->GetStringSize() - (pStart - m_pRep->GetBuffer());
  306. memmove(m_pRep->GetBuffer(), pStart, newSize + 1);
  307. m_pRep->SetStringSize(newSize);
  308.     }
  309. }
  310. BOOL CHXString::FindAndReplace(const char* pSearch , const char* pReplace,
  311. BOOL bReplaceAll)
  312. {
  313.     BOOL ret = FALSE;
  314.     if (m_pRep)
  315.     {
  316. const char* pStart = m_pRep->GetBuffer();
  317. const char* pMatch = strstr(pStart, pSearch);
  318.     
  319. if (pMatch)
  320. {
  321.     INT32 searchLen = SafeStrlen(pSearch);
  322.     CHXString buf;
  323.     while(pMatch)
  324.     {
  325. // Append any data that was between pStart and pMatch
  326. buf.Append(pStart, pMatch - pStart);
  327. // Append the replacement string to our buffer
  328. buf += pReplace;
  329. // Update search start position
  330. pStart = pMatch + searchLen;
  331. // See if we need to do more replacements
  332. if (bReplaceAll)
  333.     pMatch = strstr(pStart, pSearch);
  334. else
  335.     pMatch = 0;
  336.     }
  337.     // Append trailing part of the string
  338.     buf += pStart;
  339.     // Update the this objects m_pRep with the one we 
  340.     // just constructed in buf
  341.     *this = buf;
  342.     ret = TRUE;
  343. }
  344.     }
  345.     return ret;
  346. }