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

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.   str2int(src, radix, lower, upper, &val)
  19.   converts the string pointed to by src to an integer and stores it in
  20.   val. It skips leading spaces and tabs (but not newlines, formfeeds,
  21.   backspaces), then it accepts an optional sign and a sequence of digits
  22.   in the specified radix.  The result should satisfy lower <= *val <= upper.
  23.   The result is a pointer to the first character after the number;
  24.   trailing spaces will NOT be skipped.
  25.   If an error is detected, the result will be NullS, the value put
  26.   in val will be 0, and errno will be set to
  27. EDOM if there are no digits
  28. ERANGE if the result would overflow or otherwise fail to lie
  29. within the specified bounds.
  30.   Check that the bounds are right for your machine.
  31.   This looks amazingly complicated for what you probably thought was an
  32.   easy task.  Coping with integer overflow and the asymmetric range of
  33.   twos complement machines is anything but easy.
  34.   So that users of atoi and atol can check whether an error occured,
  35.   I have taken a wholly unprecedented step: errno is CLEARED if this
  36.   call has no problems.
  37. */
  38. #include <global.h>
  39. #include "m_string.h"
  40. #include "m_ctype.h"
  41. #include "my_sys.h" /* defines errno */
  42. #include <errno.h>
  43. #define char_val(X) (X >= '0' && X <= '9' ? X-'0' :
  44.      X >= 'A' && X <= 'Z' ? X-'A'+10 :
  45.      X >= 'a' && X <= 'z' ? X-'a'+10 :
  46.      '177')
  47. char *str2int(register const char *src, register int radix, long int lower, long int upper, long int *val)
  48. {
  49.   int sign; /* is number negative (+1) or positive (-1) */
  50.   int n; /* number of digits yet to be converted */
  51.   long limit; /* "largest" possible valid input */
  52.   long scale; /* the amount to multiply next digit by */
  53.   long sofar; /* the running value */
  54.   register int d; /* (negative of) next digit */
  55.   char *start;
  56.   int digits[32]; /* Room for numbers */
  57.   /*  Make sure *val is sensible in case of error  */
  58.   *val = 0;
  59.   /*  Check that the radix is in the range 2..36  */
  60. #ifndef DBUG_OFF
  61.   if (radix < 2 || radix > 36) {
  62.     errno=EDOM;
  63.     return NullS;
  64.   }
  65. #endif
  66.   /*  The basic problem is: how do we handle the conversion of
  67.       a number without resorting to machine-specific code to
  68.       check for overflow?  Obviously, we have to ensure that
  69.       no calculation can overflow.  We are guaranteed that the
  70.       "lower" and "upper" arguments are valid machine integers.
  71.       On sign-and-magnitude, twos-complement, and ones-complement
  72.       machines all, if +|n| is representable, so is -|n|, but on
  73.       twos complement machines the converse is not true.  So the
  74.       "maximum" representable number has a negative representative.
  75.       Limit is set to min(-|lower|,-|upper|); this is the "largest"
  76.       number we are concerned with. */
  77.   /*  Calculate Limit using Scale as a scratch variable  */
  78.   if ((limit = lower) > 0) limit = -limit;
  79.   if ((scale = upper) > 0) scale = -scale;
  80.   if (scale < limit) limit = scale;
  81.   /*  Skip leading spaces and check for a sign.
  82.       Note: because on a 2s complement machine MinLong is a valid
  83.       integer but |MinLong| is not, we have to keep the current
  84.       converted value (and the scale!) as *negative* numbers,
  85.       so the sign is the opposite of what you might expect.
  86.       */
  87.   while (isspace(*src)) src++;
  88.   sign = -1;
  89.   if (*src == '+') src++; else
  90.     if (*src == '-') src++, sign = 1;
  91.   /*  Skip leading zeros so that we never compute a power of radix
  92.       in scale that we won't have a need for.  Otherwise sticking
  93.       enough 0s in front of a number could cause the multiplication
  94.       to overflow when it neededn't.
  95.       */
  96.   start=(char*) src;
  97.   while (*src == '0') src++;
  98.   /*  Move over the remaining digits.  We have to convert from left
  99.       to left in order to avoid overflow.  Answer is after last digit.
  100.       */
  101.   for (n = 0; (digits[n]=char_val(*src)) < radix && n < 20; n++,src++) ;
  102.   /*  Check that there is at least one digit  */
  103.   if (start == src) {
  104.     errno=EDOM;
  105.     return NullS;
  106.   }
  107.   /*  The invariant we want to maintain is that src is just
  108.       to the right of n digits, we've converted k digits to
  109.       sofar, scale = -radix**k, and scale < sofar < 0. Now
  110.       if the final number is to be within the original
  111.       Limit, we must have (to the left)*scale+sofar >= Limit,
  112.       or (to the left)*scale >= Limit-sofar, i.e. the digits
  113.       to the left of src must form an integer <= (Limit-sofar)/(scale).
  114.       In particular, this is true of the next digit.  In our
  115.       incremental calculation of Limit,
  116.       IT IS VITAL that (-|N|)/(-|D|) = |N|/|D|
  117.       */
  118.   for (sofar = 0, scale = -1; --n >= 1;)
  119.   {
  120.     if ((long) -(d=digits[n]) < limit) {
  121.       errno=ERANGE;
  122.       return NullS;
  123.     }
  124.     limit = (limit+d)/radix, sofar += d*scale; scale *= radix;
  125.   }
  126.   if (n == 0)
  127.   {
  128.     if ((long) -(d=digits[n]) < limit) /* get last digit */
  129.     {
  130.       errno=ERANGE;
  131.       return NullS;
  132.     }
  133.     sofar+=d*scale;
  134.   }
  135.   /*  Now it might still happen that sofar = -32768 or its equivalent,
  136.       so we can't just multiply by the sign and check that the result
  137.       is in the range lower..upper.  All of this caution is a right
  138.       pain in the neck.  If only there were a standard routine which
  139.       says generate thus and such a signal on integer overflow...
  140.       But not enough machines can do it *SIGH*.
  141.       */
  142.   if (sign < 0)
  143.   {
  144.     if (sofar < -LONG_MAX || (sofar= -sofar) > upper)
  145.     {
  146.       errno=ERANGE;
  147.       return NullS;
  148.     }
  149.   }
  150.   else if (sofar < lower)
  151.   {
  152.     errno=ERANGE;
  153.     return NullS;
  154.   }
  155.   *val = sofar;
  156.   errno=0; /* indicate that all went well */
  157.   return (char*) src;
  158. }
  159. /* Theese are so slow compared with ordinary, optimized atoi */
  160. #ifdef WANT_OUR_ATOI
  161. int atoi(const char *src)
  162. {
  163.   long val;
  164.   str2int(src, 10, (long) INT_MIN, (long) INT_MAX, &val);
  165.   return (int) val;
  166. }
  167. long atol(const char *src)
  168. {
  169.   long val;
  170.   str2int(src, 10, LONG_MIN, LONG_MAX, &val);
  171.   return val;
  172. }
  173. #endif /* WANT_OUR_ATOI */