strto.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*
  18.   strtol,strtoul,strtoll,strtoull
  19.   convert string to long, unsigned long, long long or unsigned long long.
  20.   strtoxx(char *src,char **ptr,int base)
  21.   converts the string pointed to by src to an long of appropriate long and
  22.   returnes it. It skips leading spaces and tabs (but not newlines, formfeeds,
  23.   backspaces), then it accepts an optional sign and a sequence of digits
  24.   in the specified radix.
  25.   If the value of ptr is not (char **)NULL, a pointer to the character
  26.   terminating the scan is returned in the location pointed to by ptr.
  27.   Trailing spaces will NOT be skipped.
  28.   If an error is detected, the result will be LONG_MIN, 0 or LONG_MAX,
  29.   (or LONGLONG..)  and errno will be set to
  30. EDOM if there are no digits
  31. ERANGE if the result would overflow.
  32.   the ptr will be set to src.
  33.   This file is based on the strtol from the the GNU C Library.
  34.   it can be compiled with the UNSIGNED and/or LONGLONG flag set
  35. */
  36. #include <global.h>
  37. #include "m_string.h"
  38. #include "m_ctype.h"
  39. #include "my_sys.h" /* defines errno */
  40. #include <errno.h>
  41. #ifdef LONGLONG
  42. #define UTYPE_MAX (~(ulonglong) 0)
  43. #define TYPE_MIN LONGLONG_MIN
  44. #define TYPE_MAX LONGLONG_MAX
  45. #define longtype longlong
  46. #define ulongtype ulonglong
  47. #ifdef UNSIGNED
  48. #define function ulongtype strtoull
  49. #else
  50. #define function longtype strtoll
  51. #endif
  52. #else
  53. #define UTYPE_MAX (ulong) ~0L
  54. #define TYPE_MIN LONG_MIN
  55. #define TYPE_MAX LONG_MAX
  56. #define longtype long
  57. #define ulongtype unsigned long
  58. #ifdef UNSIGNED
  59. #define function ulongtype strtoul
  60. #else
  61. #define function longtype strtol
  62. #endif
  63. #endif
  64. /* Convert NPTR to an `unsigned long int' or `long int' in base BASE.
  65.    If BASE is 0 the base is determined by the presence of a leading
  66.    zero, indicating octal or a leading "0x" or "0X", indicating hexadecimal.
  67.    If BASE is < 2 or > 36, it is reset to 10.
  68.    If ENDPTR is not NULL, a pointer to the character after the last
  69.    one converted is stored in *ENDPTR. */
  70. function (const char *nptr,char **endptr,int base)
  71. {
  72.   int negative;
  73.   register ulongtype cutoff;
  74.   register unsigned int cutlim;
  75.   register ulongtype i;
  76.   register const char *s;
  77.   register unsigned char c;
  78.   const char *save;
  79.   int overflow;
  80.   if (base < 0 || base == 1 || base > 36)
  81.     base = 10;
  82.   s = nptr;
  83.   /* Skip white space. */
  84.   while (isspace (*s))
  85.     ++s;
  86.   if (*s == '')
  87.   {
  88.     goto noconv;
  89.   }
  90.   /* Check for a sign. */
  91.   if (*s == '-')
  92.   {
  93.     negative = 1;
  94.     ++s;
  95.   }
  96.   else if (*s == '+')
  97.   {
  98.     negative = 0;
  99.     ++s;
  100.   }
  101.   else
  102.     negative = 0;
  103.   if (base == 16 && s[0] == '0' && toupper (s[1]) == 'X')
  104.     s += 2;
  105.   /* If BASE is zero, figure it out ourselves. */
  106.   if (base == 0)
  107.   {
  108.     if (*s == '0')
  109.     {
  110.       if (toupper (s[1]) == 'X')
  111.       {
  112. s += 2;
  113. base = 16;
  114.       }
  115.       else
  116. base = 8;
  117.     }
  118.     else
  119.       base = 10;
  120.   }
  121.   /* Save the pointer so we can check later if anything happened.  */
  122.   save = s;
  123.   cutoff = UTYPE_MAX / (unsigned long int) base;
  124.   cutlim = (uint) (UTYPE_MAX % (unsigned long int) base);
  125.   overflow = 0;
  126.   i = 0;
  127.   for (c = *s; c != ''; c = *++s)
  128.   {
  129.     if (isdigit (c))
  130.       c -= '0';
  131.     else if (isalpha (c))
  132.       c = toupper (c) - 'A' + 10;
  133.     else
  134.       break;
  135.     if (c >= base)
  136.       break;
  137.     /* Check for overflow.  */
  138.     if (i > cutoff || (i == cutoff && c > cutlim))
  139.       overflow = 1;
  140.     else
  141.     {
  142.       i *= (ulongtype) base;
  143.       i += c;
  144.     }
  145.   }
  146.   /* Check if anything actually happened.  */
  147.   if (s == save)
  148.     goto noconv;
  149.   /* Store in ENDPTR the address of one character
  150.      past the last character we converted.  */
  151.   if (endptr != NULL)
  152.     *endptr = (char *) s;
  153. #ifndef UNSIGNED
  154.   /* Check for a value that is within the range of
  155.      `unsigned long int', but outside the range of `long int'. */
  156.   if (negative)
  157.   {
  158.     if (i  > (ulongtype) TYPE_MIN)
  159.       overflow = 1;
  160.   }
  161.   else if (i > (ulongtype) TYPE_MAX)
  162.     overflow = 1;
  163. #endif
  164.   if (overflow)
  165.   {
  166.     my_errno=ERANGE;
  167. #ifdef UNSIGNED
  168.     return UTYPE_MAX;
  169. #else
  170.     return negative ? TYPE_MIN : TYPE_MAX;
  171. #endif
  172.   }
  173.   /* Return the result of the appropriate sign.  */
  174.   return (negative ? -((longtype) i) : i);
  175. noconv:
  176.   /* There was no number to convert.  */
  177.   my_errno=EDOM;
  178.   if (endptr != NULL)
  179.     *endptr = (char *) nptr;
  180.   return 0L;
  181. }