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

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/stdio.h"
  36. #include "hlxclib/stdlib.h"
  37. #include "hlxclib/string.h"
  38. #include "hlxclib/windows.h"
  39. #include "hlxclib/assert.h"
  40. char * __helix_itoa(int val, char *str, int radix)
  41. {
  42.     char IsNegative = 0;
  43.     int theNum = val;
  44.     int StrIndex = 0;
  45.     
  46.     if (theNum < 0) {
  47. theNum = -theNum;
  48. IsNegative = 1;
  49.     }
  50.     
  51.     do {
  52. int CurDigit = theNum % radix;
  53. if (CurDigit > 9)
  54.     str[StrIndex++] = CurDigit + 'A' - 10;
  55. else
  56.     str[StrIndex++] = CurDigit + '0';
  57. theNum /= radix;
  58.     } while (theNum);
  59.     
  60.     if (IsNegative) {
  61. str[StrIndex++] = '-';
  62.     }
  63.     str[StrIndex++] = 0;
  64.     
  65.     // Now reverse the string.
  66.     strrev(str);
  67.     
  68.     return str;
  69. }
  70. char * __helix_i64toa(INT64 val, char *str, int radix)
  71. {
  72.     char IsNegative = 0;
  73.     INT64 theNum = val;
  74.     int StrIndex = 0;
  75.     if (theNum < (INT64)0) {
  76. theNum = -theNum;
  77. IsNegative = 1;
  78.     }
  79.     do {
  80. int CurDigit = INT64_TO_INT32(theNum % radix);
  81. if (CurDigit > 9)
  82.     str[StrIndex++] = CurDigit + 'A' - 10;
  83. else
  84.     str[StrIndex++] = CurDigit + '0';
  85. theNum /= radix;
  86.     } while (theNum!=0);
  87.     if (IsNegative) {
  88. str[StrIndex++] = '-';
  89.     }
  90.     str[StrIndex++] = 0;
  91.     // Now reverse the string.
  92.     strrev(str);
  93.     return str;
  94. }
  95.  
  96. /*
  97.  * Note: This is a fast but very basic implementation of atoi64. If you need 
  98.  * something more robust in the future, consider replacing this with the 
  99.  * following FreeBSD function:
  100.  *
  101.  * /usr/src/lib/libc/stdlib/strtoq.c
  102.  */
  103. INT64 __helix_atoi64(char* str)
  104. {
  105.     char IsNegative = 0;
  106.     INT64 lTotal = 0;
  107.     
  108.     if (str)
  109.     {
  110. if (*str == '-')
  111. {
  112.     IsNegative = 1;
  113.     str++;
  114. }
  115. else if (*str == '+')
  116. {
  117.     str++;
  118. }
  119. for ( ; *str; str++)
  120. {
  121.     if (*str < '0' || *str > '9')
  122.     {
  123. break;
  124.     }
  125.     
  126.     lTotal *= 10;
  127.     lTotal += (*str - '0');
  128. }
  129.     }
  130.     
  131.     if (IsNegative)
  132.     {
  133. lTotal = -lTotal;
  134.     }
  135.     return lTotal;
  136. }
  137. #if defined(WIN32_PLATFORM_PSPC)
  138. int __helix_remove(const char* pPath)
  139. {
  140.     int ret = -1;
  141.     if (GetFileAttributes(OS_STRING(pPath)) & FILE_ATTRIBUTE_DIRECTORY)
  142.     {
  143. if (RemoveDirectory(OS_STRING(pPath)))
  144.     ret = 0;
  145.     }
  146.     else if (DeleteFile(OS_STRING(pPath)))
  147. ret = 0;
  148.     return ret;
  149. }
  150. #endif /* defined(WIN32_PLATFORM_PSPC) */
  151. #if defined (_OPENWAVE)
  152. int __helix_remove(const char* pPath)
  153. {
  154.     int ret = -1;
  155.     if (kOpFsErrAny != OpFsRemove(pPath))
  156.     {
  157.         return ret = 0;
  158.     }
  159.     return ret;
  160. }
  161. int __helix_putenv(const char* pStr)
  162. {
  163.     int ret = -1;
  164.     assert(!"__helix_putenv(): Not implemented on OPENWAVE yetn");
  165.     return ret;
  166. }
  167. #endif // defined(_OPENWAVE)
  168. #if defined (_SYMBIAN)
  169. int __helix_putenv(const char* pStr)
  170. {
  171.     int ret = -1;
  172.     if (pStr)
  173.     {
  174. char* pTmpBuf = new_string(pStr);
  175. char* pCur = pTmpBuf;
  176. const char* pKey = pCur;
  177. const char* pValue = 0;
  178. int done = 0;
  179. while(!done)
  180. {
  181.     // Look for the end of the key
  182.     for (;*pCur && (*pCur != '='); pCur++)
  183. ;
  184.     
  185.     if (*pCur == '=')
  186.     {
  187. // Replace the '=' with a null terminator
  188. *pCur++ = '';
  189. // Store where the value starts
  190. pValue = pCur;
  191. // Look for the end of the value
  192. for (;*pCur && (*pCur != ';'); pCur++)
  193.     ;
  194. if (*pCur == ';')
  195. {
  196.     // Replace the ';' with a null terminator
  197.     *pCur++ = '';
  198. }
  199. else
  200.     done = 1;
  201. ret = setenv(pKey, pValue, 1);
  202. if (!done)
  203.     pKey = pCur;
  204.     }
  205.     else
  206. done = 1;
  207. }
  208. delete [] pTmpBuf;
  209.     }
  210.     return ret;
  211. }
  212. #endif /* defined (_SYMBIAN) */
  213. // The Helix implementation will act
  214. // like the environment variable doesn't
  215. // exist
  216. char* __helix_getenv(const char* pName)
  217. {
  218.     return 0;
  219. }