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

Symbian

开发平台:

Visual C++

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