hxunicod.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

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 "hxtypes.h"
  36. #include "hlxclib/string.h"
  37. #include "hxassert.h"
  38. #include "hxunicod.h"
  39. #include "hxresult.h"
  40. #include "hxheap.h"
  41. #ifdef _DEBUG
  42. #undef HX_THIS_FILE
  43. static const char HX_THIS_FILE[] = __FILE__;
  44. #endif
  45. //
  46. // Currently this function does a really simple conversion.
  47. // This is a cheater version, and it needs to be investigated.
  48. //
  49. HX_RESULT CHXUnicode::ProcessFromUnicode(const char*  stringin, UINT16 length, char* stringout, UINT16 outlength)
  50. {
  51. HX_ASSERT(stringin);
  52. HX_ASSERT(stringout);
  53. ULONG32  newlength=0;
  54. char* newstring=new char[length];
  55. HX_RESULT result=HXR_OK;
  56. HX_ASSERT(newstring);
  57. if (!newstring) 
  58. {
  59. return NULL;
  60. }
  61. const char*  bytesin=NULL;
  62. char*  bytesout=NULL;
  63. bytesin=stringin;
  64. bytesout=newstring;
  65. while (1)
  66. {
  67. if (bytesin[0]==0 && bytesin[1]==0)
  68. {
  69. break;
  70. }
  71. if (bytesin[1]==0)
  72. {
  73.    newlength++;
  74.    bytesout[0]=bytesin[0];
  75.    bytesout++;
  76.    bytesin+=2;
  77. }
  78. else
  79. {
  80. newlength+=2;
  81. bytesout[0]=bytesin[0];
  82. bytesout[1]=bytesin[1];
  83. bytesout+=2;
  84. bytesin+=2;
  85. }
  86. }
  87. HX_ASSERT(outlength >= newlength+1);
  88. if (outlength < newlength+1)
  89. {
  90. result=HXR_BUFFERTOOSMALL;
  91. goto CleanUp;
  92. }
  93. ::memset(stringout,NULL,(int)newlength+1);
  94. ::memcpy(stringout,newstring,(int)newlength); /* Flawfinder: ignore */
  95. CleanUp:
  96. if (newstring != NULL)
  97. {
  98. delete [] newstring;
  99. newstring=NULL;
  100. }
  101. return result;
  102. }
  103. //
  104. // Determine the length of the string.
  105. // This works for WIDE STRINGS ONLY!
  106. // This function does not returns the number of the characters only. 
  107. // It does not return the length including the two trailing bytes.
  108. //
  109. ULONG32 CHXUnicode::StringLength(const char* stringin)
  110. {
  111. HX_ASSERT(stringin);
  112. ULONG32 length=0;
  113. const char* p=stringin;
  114. while (TRUE)
  115. {
  116. if  (p[0]==0 && p[1]==0)
  117. {
  118. break;
  119. }
  120. length+=1;
  121. p+=2;
  122. }
  123. return length;
  124. }
  125. //
  126. // Determine the size of string.
  127. // This works for WIDE STRINGS ONLY!
  128. // This function returns the memory footprint of the string.  Which is the
  129. // length of the string + 2 bytes.
  130. //
  131. ULONG32 CHXUnicode::StringMemLength(const char* stringin)
  132. {
  133. HX_ASSERT(stringin);
  134. ULONG32 length=0;
  135. const char* p=stringin;
  136. while (TRUE)
  137. {
  138. if  (p[0]==0 && p[1]==0)
  139. {
  140. length+=2;
  141. p+=2;
  142. break;
  143. }
  144. length+=2;
  145. p+=2;
  146. }
  147. return length;
  148. }