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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: dbcs.cpp,v 1.12.2.3 2004/07/09 01:48:15 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 "hxtypes.h"
  50. #include "hlxclib/string.h"
  51. #if defined( _WIN32 ) || defined( _WINDOWS )
  52. #include <windows.h> // for AnsiNext(), AnsiPrev()
  53. #include <ctype.h> // for isleadbyte()
  54. #endif
  55. #ifdef _MACINTOSH
  56. #ifndef _MAC_MACHO
  57. #include <script.h> // for CharByte()
  58. #endif
  59. // These aren't defined by the OS headers, so I define them here. 
  60. #define  MBCS_LEADBYTE      -1
  61. #define  MBCS_SINGLEBYTE    0
  62. #define  MBCS_LASTBYTE      1
  63. #define  MBCS_MIDDLEBYTE    2
  64. // Functions used to simplify the logic of moving to either end of a character.
  65. char* MoveToLeadByte(char *pChar);
  66. char* MoveToLastByte(char *pChar);
  67. #endif
  68. #include "dbcs.h"
  69. #include "hxassert.h"
  70. #include "hxheap.h"
  71. #ifdef _DEBUG
  72. #undef HX_THIS_FILE
  73. static const char HX_THIS_FILE[] = __FILE__;
  74. #endif
  75. /* optimized implementations for Unix are in dbcs.h */
  76. #if !defined(_UNIX) && !defined(_SYMBIAN)
  77. BOOL HXIsDBCSEnabled()
  78. {
  79. #if (defined( _WIN32 ) || defined( _WINDOWS )) && !defined(WIN32_PLATFORM_PSPC)
  80.     static int DBCSEnabled = -1;
  81.     if(DBCSEnabled < 0)
  82.         DBCSEnabled = GetSystemMetrics(SM_DBCSENABLED); 
  83. #elif defined(_MACINTOSH)
  84.     int DBCSEnabled = 1;
  85. #else
  86.     int DBCSEnabled = 0;
  87. #endif
  88.     return DBCSEnabled;
  89. }
  90. // returns pointer to the next character in multi-bytes CS string
  91. char*
  92. HXGetNextChar(const char* pChar)
  93. {
  94. if(!pChar)
  95. return NULL;
  96. if(!HXIsDBCSEnabled())
  97.     return (char *)(pChar + 1);
  98. char * pNext = NULL;
  99. #if (defined( _WIN32 ) || defined( _WINDOWS )) && !defined(WIN32_PLATFORM_PSPC)
  100. pNext = AnsiNext(pChar);
  101. #elif defined (_MACINTOSH)
  102. pNext=(char*)pChar;
  103. // If this is a multi-byte character then return the last byte of the character.
  104. // If it is a singbyte character then do nothing.
  105. pNext=MoveToLastByte(pNext);
  106. // If this is a single byte character then move to the next byte.
  107. // If this is a multi-byte character then we know we are at the end of the character,
  108. // so moving + 1 would correct.
  109. pNext=pNext+1;
  110. #else  //unix
  111. pNext = (char*)pChar + 1;
  112. #endif 
  113. if(pNext == pChar)
  114. return pNext + 1;
  115. return pNext;
  116. }
  117. // returns pointer to the previous character in multi-bytes CS string
  118. char*
  119. HXGetPrevChar(const char* pStart, const char* pChar)
  120. {
  121. if(!pChar)
  122. return NULL;
  123. if(!HXIsDBCSEnabled())
  124.     return (char *)(pChar - 1);
  125. char * pPrev = NULL;
  126. #if (defined( _WIN32 ) || defined( _WINDOWS )) && !defined(WIN32_PLATFORM_PSPC)
  127. pPrev = AnsiPrev(pStart, pChar);
  128. #elif defined(_MACINTOSH)
  129. // Since there is no AnsiPrev equivalent on the Macintosh. 
  130.      
  131.     pPrev=(char*)pChar;
  132.     
  133.     //Move to LeadByte of current character.
  134.     // If single byte do nothing.
  135.     pPrev=MoveToLeadByte(pPrev);
  136.     
  137.     //Move back one byte.
  138.     pPrev=pPrev-1;
  139.     
  140.     //Move to leadbyte of this character.
  141.     //If single byte do nothing. 
  142.     pPrev=MoveToLeadByte(pPrev);
  143. #else // unix
  144. pPrev = (char*)pChar - 1;
  145. #endif
  146. if(pPrev == pChar)
  147. return pPrev - 1;
  148. return pPrev;
  149. }
  150. BOOL
  151. HXIsEqual(const char* pChar, char CharToCompare)
  152. {
  153. if(!pChar)
  154. return FALSE;
  155. if(!HXIsDBCSEnabled())
  156.     return (* pChar == CharToCompare);
  157. char * pNext = HXGetNextChar(pChar);
  158. if(!pNext || pNext - pChar == 1)
  159. {
  160. if(*pChar == CharToCompare)
  161. return TRUE;
  162. }
  163. return FALSE;
  164. }
  165. char*
  166. HXFindChar(const char* pStart, char CharToFind)
  167. {
  168. if(!HXIsDBCSEnabled())
  169.     return (char*)strchr(pStart, CharToFind);
  170. const char * pCurrent = pStart;
  171. while(pCurrent && *pCurrent)
  172. {
  173. char * pNext;
  174. pNext = HXGetNextChar(pCurrent);
  175. if(!pNext || pNext - pCurrent == 1)
  176. if(*pCurrent == CharToFind)
  177.     return (char *)pCurrent;
  178. pCurrent = pNext;
  179. }
  180. return NULL;
  181. }
  182. char*
  183. HXReverseFindChar(const char* pStart, char CharToFind)
  184. {
  185. if(!HXIsDBCSEnabled())
  186. return (char*)strrchr(pStart, CharToFind);
  187. const char * pCurrent = pStart;
  188.     
  189. char * pLastFound = NULL;
  190. while(*pCurrent)
  191. {
  192. char * pNext;
  193. pNext = HXGetNextChar(pCurrent);
  194. if(!pNext || pNext - pCurrent == 1)
  195. if(*pCurrent == CharToFind)
  196. pLastFound = (char *)pCurrent;
  197. pCurrent = pNext;
  198. }
  199. return pLastFound;
  200. }
  201. char*
  202. HXFindString(const char* pStart, const char * pString)
  203. {
  204. if(!HXIsDBCSEnabled())
  205.     return (char*)strstr(pStart, pString);
  206. const char * pCurrent = pStart;
  207.     int Length = strlen(pString);
  208. while(*pCurrent)
  209. {
  210. if(!memcmp(pCurrent, pString, Length))
  211. {
  212. const char * pTest = pCurrent;
  213. while(pTest < pCurrent + Length)
  214. pTest = HXGetNextChar(pTest);
  215. if(pTest == pCurrent + Length)
  216.     return (char *)pCurrent;
  217. }
  218. pCurrent = HXGetNextChar(pCurrent);
  219. }
  220. return NULL;
  221. }
  222. int
  223. HXCompareStrings(const char* pString1, const char* pString2, size_t count)
  224. {
  225. if(!pString1 && !pString2)
  226. return 0;
  227. if(!pString1)
  228. return -1;
  229. if(!pString2)
  230. return 1;
  231. if(!HXIsDBCSEnabled())
  232. return strncmp(pString1,pString2, count);
  233. const char * pEnd1 = pString1;
  234. const char * pEnd2 = pString2;
  235. while(*pEnd1 && (size_t)(pEnd1 - pString1) < count)
  236. pEnd1 = HXGetNextChar( pEnd1 );
  237. while(*pEnd2 && (size_t)(pEnd2 - pString2) < count)
  238. pEnd2 = HXGetNextChar( pEnd2 );
  239. if(pEnd1 - pString1 < pEnd2 - pString2)
  240. return -1;
  241. if(pEnd1 - pString1 > pEnd2 - pString2)
  242. return 1;
  243. return memcmp(pString1, pString2, pEnd1 - pString1);
  244. }
  245. BOOL
  246. HXIsLeadByte(char Byte)
  247. {
  248. if(!HXIsDBCSEnabled()) return(FALSE);
  249. #if (defined( _WIN32 ) || defined( _WINDOWS )) && !defined(WIN32_PLATFORM_PSPC)
  250. return _ismbblead((unsigned int)Byte);
  251. #elif defined(_MACINTOSH) || defined(_MAC_UNIX)
  252. #if defined(_CARBON) || defined(_MAC_UNIX)
  253. return (CharacterType((Ptr)&Byte,0, smRoman) == MBCS_LEADBYTE);
  254. #else
  255. return (CharType((Ptr)&Byte,0) == MBCS_LEADBYTE);
  256. #endif
  257. #else
  258. return FALSE;
  259. #endif
  260. }
  261. // We do not want a LeadByte to be hanging loose.  If the last character
  262. // to copy is a LeadByte, replace it with a null character.
  263. char* HXCopyStringN(char* pOutput, const char* pInput, size_t count)
  264. {
  265. HX_ASSERT(count > 0);
  266. if(!HXIsDBCSEnabled() || count == 0 || strlen(pInput) <= count)
  267. return (char*)strncpy(pOutput, pInput, count); /* Flawfinder: ignore */
  268. const char * pEnd = pInput + count;
  269. const char * pPrev = HXGetPrevChar(pInput, pEnd);
  270. if (pEnd != HXGetNextChar(pPrev))
  271. {
  272. memset(pOutput, 0, count);
  273. pEnd = pPrev;
  274. }
  275. return (char*)strncpy(pOutput, pInput, pEnd - pInput); /* Flawfinder: ignore */
  276. }
  277. //
  278. // Please return 0 on a non-dbcs machine.  on a dbcs machine, return the code page number active.
  279. //
  280. INT32
  281. GetDBCSCodePage(void) 
  282. {
  283. #if defined( _WINDOWS ) && !defined( WIN32_PLATFORM_PSPC )
  284. return _getmbcp(); 
  285. #else 
  286. return 0; 
  287. #endif
  288. }
  289. //////////////////////////////
  290. // MACINTOSH ONLY FUNCTIONS
  291. //
  292. #ifdef _MACINTOSH
  293. //* Move to the first byte of the current character.
  294. //* Does nothing if the current character is a single byte.
  295. char* MoveToLeadByte(char* pChar) {
  296. char *pPrev=pChar;
  297. #if 0 /* CharByte can't be executed at interrupt time */
  298. if (CharByte((Ptr)pPrev,0) != MBCS_SINGLEBYTE) {
  299. while (CharByte((Ptr)pPrev,0) != MBCS_LEADBYTE) 
  300.        pPrev=pPrev-1;
  301. }//*if
  302. #endif
  303. return(pPrev);
  304. }
  305. //* Move to the last byte of the current character.
  306. //* Okay this is strange logic, CharByte searches upto the offset that is specified.
  307. //* It never looks back, so it must always be at the beginning of a character in order to 
  308. //* ever return a correct value, with the exception of the MBCS_LEADBYTE which could be specified
  309. //* as 1 byte.
  310. //* Does nothing if the current character is a single byte.
  311. char* MoveToLastByte(char *pChar) {
  312. char *pNext=pChar;
  313. #if 0 /* CharByte can't be executed at interrupt time */
  314. if (CharByte((Ptr)pNext,1) != MBCS_SINGLEBYTE) {
  315. if (CharByte((Ptr)pNext,1) == MBCS_LASTBYTE) 
  316.        pNext=pNext+1;
  317. }//*if
  318. #endif
  319. return(pNext);
  320. }
  321. #endif
  322. #endif // !defined(_UNIX)