home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / py2s152.zip / Python / mystrtoul.c < prev    next >
C/C++ Source or Header  |  1999-06-27  |  5KB  |  190 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. #include "Python.h"
  33.  
  34. #if defined(__sgi) && defined(WITH_THREAD) && !defined(_SGI_MP_SOURCE)
  35. #define _SGI_MP_SOURCE
  36. #endif
  37.  
  38. /* Convert a possibly signed character to a nonnegative int */
  39. /* XXX This assumes characters are 8 bits wide */
  40. #ifdef __CHAR_UNSIGNED__
  41. #define Py_CHARMASK(c)        (c)
  42. #else
  43. #define Py_CHARMASK(c)        ((c) & 0xff)
  44. #endif
  45.  
  46. /* strtol and strtoul, renamed to avoid conflicts */
  47.  
  48. /*
  49. **    strtoul
  50. **        This is a general purpose routine for converting
  51. **        an ascii string to an integer in an arbitrary base.
  52. **        Leading white space is ignored.  If 'base' is zero
  53. **        it looks for a leading 0, 0x or 0X to tell which
  54. **        base.  If these are absent it defaults to 10.
  55. **        Base must be 0 or between 2 and 36 (inclusive).
  56. **        If 'ptr' is non-NULL it will contain a pointer to
  57. **        the end of the scan.
  58. **        Errors due to bad pointers will probably result in
  59. **        exceptions - we don't check for them.
  60. */
  61.  
  62. #include <ctype.h>
  63. #ifndef DONT_HAVE_ERRNO_H
  64. #include <errno.h>
  65. #endif
  66.  
  67. unsigned long
  68. PyOS_strtoul(str, ptr, base)
  69. register char *    str;
  70. char **        ptr;
  71. int        base;
  72. {
  73.     register unsigned long    result;    /* return value of the function */
  74.     register int        c;    /* current input character */
  75.     register unsigned long    temp;    /* used in overflow testing */
  76.     int                ovf;    /* true if overflow occurred */
  77.  
  78.     result = 0;
  79.     ovf = 0;
  80.  
  81. /* catch silly bases */
  82.     if (base != 0 && (base < 2 || base > 36))
  83.     {
  84.     if (ptr)
  85.         *ptr = str;
  86.     return 0;
  87.     }
  88.  
  89. /* skip leading white space */
  90.     while (*str && isspace(Py_CHARMASK(*str)))
  91.     str++;
  92.  
  93. /* check for leading 0 or 0x for auto-base or base 16 */
  94.     switch (base)
  95.     {
  96.     case 0:        /* look for leading 0, 0x or 0X */
  97.     if (*str == '0')
  98.     {
  99.         str++;
  100.         if (*str == 'x' || *str == 'X')
  101.         {
  102.         str++;
  103.         base = 16;
  104.         }
  105.         else
  106.         base = 8;
  107.     }
  108.     else
  109.         base = 10;
  110.     break;
  111.  
  112.     case 16:    /* skip leading 0x or 0X */
  113.     if (*str == '0' && (*(str+1) == 'x' || *(str+1) == 'X'))
  114.         str += 2;
  115.     break;
  116.     }
  117.  
  118. /* do the conversion */
  119.     while ((c = Py_CHARMASK(*str)) != '\0')
  120.     {
  121.     if (isdigit(c) && c - '0' < base)
  122.         c -= '0';
  123.     else
  124.     {
  125.         if (isupper(c))
  126.         c = tolower(c);
  127.         if (c >= 'a' && c <= 'z')
  128.         c -= 'a' - 10;
  129.         else    /* non-"digit" character */
  130.         break;
  131.         if (c >= base)    /* non-"digit" character */
  132.         break;
  133.     }
  134.     temp = result;
  135.     result = result * base + c;
  136. #ifndef MPW
  137.     if(base == 10) {
  138.         if(((long)(result - c) / base != (long)temp))    /* overflow */
  139.             ovf = 1;
  140.     }
  141.     else {
  142.         if ((result - c) / base != temp)    /* overflow */
  143.             ovf = 1;
  144.     }
  145. #endif
  146.     str++;
  147.     }
  148.  
  149. /* set pointer to point to the last character scanned */
  150.     if (ptr)
  151.     *ptr = str;
  152.     if (ovf)
  153.     {
  154.     result = (unsigned long) ~0L;
  155.     errno = ERANGE;
  156.     }
  157.     return result;
  158. }
  159.  
  160. long
  161. PyOS_strtol(str, ptr, base)
  162. char *    str;
  163. char ** ptr;
  164. int    base;
  165. {
  166.     long result;
  167.     char sign;
  168.     
  169.     while (*str && isspace(Py_CHARMASK(*str)))
  170.         str++;
  171.     
  172.     sign = *str;
  173.     if (sign == '+' || sign == '-')
  174.         str++;
  175.     
  176.     result = (long) PyOS_strtoul(str, ptr, base);
  177.     
  178.     /* Signal overflow if the result appears negative,
  179.        except for the largest negative integer */
  180.     if (result < 0 && !(sign == '-' && result == -result)) {
  181.         errno = ERANGE;
  182.         result = 0x7fffffff;
  183.     }
  184.     
  185.     if (sign == '-')
  186.         result = -result;
  187.     
  188.     return result;
  189. }
  190.