str2int.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:7k
源码类别:

MySQL数据库

开发平台:

Visual C++

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