str2int.c
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:6k
源码类别:

MySQL数据库

开发平台:

Visual C++

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