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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 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. #include <my_global.h>
  14. #include <my_sys.h>            /* Needed for MY_ERRNO_ERANGE */
  15. #include <m_string.h>
  16. #undef  ULONGLONG_MAX
  17. /*
  18.   Needed under MetroWerks Compiler, since MetroWerks compiler does not
  19.   properly handle a constant expression containing a mod operator
  20. */
  21. #if defined(__NETWARE__) && defined(__MWERKS__) 
  22. static ulonglong ulonglong_max= ~(ulonglong) 0;
  23. #define ULONGLONG_MAX ulonglong_max
  24. #else
  25. #define ULONGLONG_MAX (~(ulonglong) 0)
  26. #endif /* __NETWARE__ && __MWERKS__ */
  27. #define MAX_NEGATIVE_NUMBER ((ulonglong) LL(0x8000000000000000))
  28. #define INIT_CNT  9
  29. #define LFACTOR   ULL(1000000000)
  30. #define LFACTOR1  ULL(10000000000)
  31. #define LFACTOR2  ULL(100000000000)
  32. static unsigned long lfactor[9]=
  33. {
  34.   1L, 10L, 100L, 1000L, 10000L, 100000L, 1000000L, 10000000L, 100000000L
  35. };
  36. /*
  37.   Convert a string to an to unsigned long long integer value
  38.   
  39.   SYNOPSYS
  40.     my_strtoll10()
  41.       nptr     in       pointer to the string to be converted
  42.       endptr   in/out   pointer to the end of the string/
  43.                         pointer to the stop character
  44.       error    out      returned error code
  45.  
  46.   DESCRIPTION
  47.     This function takes the decimal representation of integer number
  48.     from string nptr and converts it to an signed or unsigned
  49.     long long integer value.
  50.     Space characters and tab are ignored.
  51.     A sign character might precede the the digit characters. The number
  52.     may have any number of pre-zero digits.
  53.     The function stops reading the string nptr at the first character
  54.     that is not a decimal digit. If endptr is not NULL then the function
  55.     will not read characters after *endptr.
  56.  
  57.   RETURN VALUES
  58.     Value of string as a signed/unsigned longlong integer
  59.     if no error and endptr != NULL, it will be set to point at the character
  60.     after the number
  61.     The error parameter contains information how things went:
  62.     -1 Number was an ok negative number
  63.     0   ok
  64.     ERANGE If the the value of the converted number exceeded the
  65.         maximum negative/unsigned long long integer.
  66. In this case the return value is ~0 if value was
  67. positive and LONGLONG_MIN if value was negative.
  68.     EDOM If the string didn't contain any digits. In this case
  69.      the return value is 0.
  70.     If endptr is not NULL the function will store the end pointer to
  71.     the stop character here.
  72. */
  73. longlong my_strtoll10(const char *nptr, char **endptr, int *error)
  74. {
  75.   const char *s, *end, *start, *n_end, *true_end;
  76.   char *dummy;
  77.   unsigned char c;
  78.   unsigned long i, j, k;
  79.   ulonglong li;
  80.   int negative;
  81.   ulong cutoff, cutoff2, cutoff3;
  82.   s= nptr;
  83.   /* If fixed length string */
  84.   if (endptr)
  85.   {
  86.     end= *endptr;
  87.     while (s != end && (*s == ' ' || *s == 't'))
  88.       s++;
  89.     if (s == end)
  90.       goto no_conv;
  91.   }
  92.   else
  93.   {
  94.     endptr= &dummy; /* Easier end test */
  95.     while (*s == ' ' || *s == 't')
  96.       s++;
  97.     if (!*s)
  98.       goto no_conv;
  99.     /* This number must be big to guard against a lot of pre-zeros */
  100.     end= s+65535; /* Can't be longer than this */
  101.   }
  102.   /* Check for a sign. */
  103.   negative= 0;
  104.   if (*s == '-')
  105.   {
  106.     *error= -1; /* Mark as negative number */
  107.     negative= 1;
  108.     if (++s == end)
  109.       goto no_conv;
  110.     cutoff=  MAX_NEGATIVE_NUMBER / LFACTOR2;
  111.     cutoff2= (MAX_NEGATIVE_NUMBER % LFACTOR2) / 100;
  112.     cutoff3=  MAX_NEGATIVE_NUMBER % 100;
  113.   }
  114.   else
  115.   {
  116.     *error= 0;
  117.     if (*s == '+')
  118.     {
  119.       if (++s == end)
  120. goto no_conv;
  121.     }
  122.     cutoff=  ULONGLONG_MAX / LFACTOR2;
  123.     cutoff2= ULONGLONG_MAX % LFACTOR2 / 100;
  124.     cutoff3=  ULONGLONG_MAX % 100;
  125.   }
  126.   /* Handle case where we have a lot of pre-zero */
  127.   if (*s == '0')
  128.   {
  129.     i= 0;
  130.     do
  131.     {
  132.       if (++s == end)
  133. goto end_i; /* Return 0 */
  134.     }
  135.     while (*s == '0');
  136.     n_end= s+ INIT_CNT;
  137.   }
  138.   else
  139.   {
  140.     /* Read first digit to check that it's a valid number */
  141.     if ((c= (*s-'0')) > 9)
  142.       goto no_conv;
  143.     i= c;
  144.     n_end= ++s+ INIT_CNT-1;
  145.   }
  146.   /* Handle first 9 digits and store them in i */
  147.   if (n_end > end)
  148.     n_end= end;
  149.   for (; s != n_end ; s++)
  150.   {
  151.     if ((c= (*s-'0')) > 9)
  152.       goto end_i;
  153.     i= i*10+c;
  154.   }
  155.   if (s == end)
  156.     goto end_i;
  157.   /* Handle next 9 digits and store them in j */
  158.   j= 0;
  159.   start= s; /* Used to know how much to shift i */
  160.   n_end= true_end= s + INIT_CNT;
  161.   if (n_end > end)
  162.     n_end= end;
  163.   do
  164.   {
  165.     if ((c= (*s-'0')) > 9)
  166.       goto end_i_and_j;
  167.     j= j*10+c;
  168.   } while (++s != n_end);
  169.   if (s == end)
  170.   {
  171.     if (s != true_end)
  172.       goto end_i_and_j;
  173.     goto end3;
  174.   }
  175.   if ((c= (*s-'0')) > 9)
  176.     goto end3;
  177.   /* Handle the next 1 or 2 digits and store them in k */
  178.   k=c;
  179.   if (++s == end || (c= (*s-'0')) > 9)
  180.     goto end4;
  181.   k= k*10+c;
  182.   *endptr= (char*) ++s;
  183.   /* number string should have ended here */
  184.   if (s != end && (c= (*s-'0')) <= 9)
  185.     goto overflow;
  186.   /* Check that we didn't get an overflow with the last digit */
  187.   if (i > cutoff || (i == cutoff && ((j > cutoff2 || j == cutoff2) &&
  188.                                      k > cutoff3)))
  189.     goto overflow;
  190.   li=i*LFACTOR2+ (ulonglong) j*100 + k;
  191.   return (longlong) li;
  192. overflow: /* *endptr is set here */
  193.   *error= MY_ERRNO_ERANGE;
  194.   return negative ? LONGLONG_MIN : (longlong) ULONGLONG_MAX;
  195. end_i:
  196.   *endptr= (char*) s;
  197.   return (negative ? ((longlong) -(long) i) : (longlong) i);
  198. end_i_and_j:
  199.   li= (ulonglong) i * lfactor[(uint) (s-start)] + j;
  200.   *endptr= (char*) s;
  201.   return (negative ? -((longlong) li) : (longlong) li);
  202. end3:
  203.   li=(ulonglong) i*LFACTOR+ (ulonglong) j;
  204.   *endptr= (char*) s;
  205.   return (negative ? -((longlong) li) : (longlong) li);
  206. end4:
  207.   li=(ulonglong) i*LFACTOR1+ (ulonglong) j * 10 + k;
  208.   *endptr= (char*) s;
  209.   if (negative)
  210.   {
  211.    if (li > MAX_NEGATIVE_NUMBER)
  212.      goto overflow;
  213.    return -((longlong) li);
  214.   }
  215.   return (longlong) li;
  216. no_conv:
  217.   /* There was no number to convert.  */
  218.   *error= MY_ERRNO_EDOM;
  219.   *endptr= (char *) nptr;
  220.   return 0;
  221. }