Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 1 | /*********************************************************** |
Guido van Rossum | 6d023c9 | 1995-01-04 19:12:13 +0000 | [diff] [blame] | 2 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, |
| 3 | The Netherlands. |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 4 | |
| 5 | All Rights Reserved |
| 6 | |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 7 | Permission to use, copy, modify, and distribute this software and its |
| 8 | documentation for any purpose and without fee is hereby granted, |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 9 | provided that the above copyright notice appear in all copies and that |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 10 | both that copyright notice and this permission notice appear in |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 11 | supporting documentation, and that the names of Stichting Mathematisch |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 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. |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 16 | |
Guido van Rossum | d266eb4 | 1996-10-25 14:44:06 +0000 | [diff] [blame] | 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. |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 29 | |
| 30 | ******************************************************************/ |
| 31 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 32 | #include "config.h" |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 33 | |
Guido van Rossum | 7f7f274 | 1995-02-10 17:01:56 +0000 | [diff] [blame] | 34 | /* Convert a possibly signed character to a nonnegative int */ |
| 35 | /* XXX This assumes characters are 8 bits wide */ |
| 36 | #ifdef __CHAR_UNSIGNED__ |
| 37 | #define Py_CHARMASK(c) (c) |
| 38 | #else |
| 39 | #define Py_CHARMASK(c) ((c) & 0xff) |
| 40 | #endif |
| 41 | |
Guido van Rossum | 5c2306c | 1995-01-17 16:31:21 +0000 | [diff] [blame] | 42 | #include "rename2.h" |
| 43 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 44 | /* strtol and strtoul, renamed to avoid conflicts */ |
| 45 | |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 46 | /* |
| 47 | ** strtoul |
| 48 | ** This is a general purpose routine for converting |
| 49 | ** an ascii string to an integer in an arbitrary base. |
| 50 | ** Leading white space is ignored. If 'base' is zero |
| 51 | ** it looks for a leading 0, 0x or 0X to tell which |
| 52 | ** base. If these are absent it defaults to 10. |
| 53 | ** Base must be 0 or between 2 and 36 (inclusive). |
| 54 | ** If 'ptr' is non-NULL it will contain a pointer to |
| 55 | ** the end of the scan. |
| 56 | ** Errors due to bad pointers will probably result in |
| 57 | ** exceptions - we don't check for them. |
| 58 | */ |
| 59 | |
| 60 | #include <ctype.h> |
| 61 | #include <errno.h> |
| 62 | |
| 63 | unsigned long |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 64 | mystrtoul(str, ptr, base) |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 65 | register char * str; |
| 66 | char ** ptr; |
| 67 | int base; |
| 68 | { |
| 69 | register unsigned long result; /* return value of the function */ |
| 70 | register int c; /* current input character */ |
| 71 | register unsigned long temp; /* used in overflow testing */ |
| 72 | int ovf; /* true if overflow occurred */ |
| 73 | |
| 74 | result = 0; |
| 75 | ovf = 0; |
| 76 | |
| 77 | /* catch silly bases */ |
| 78 | if (base != 0 && (base < 2 || base > 36)) |
| 79 | { |
| 80 | if (ptr) |
| 81 | *ptr = str; |
| 82 | return 0; |
| 83 | } |
| 84 | |
| 85 | /* skip leading white space */ |
Guido van Rossum | 7f7f274 | 1995-02-10 17:01:56 +0000 | [diff] [blame] | 86 | while (*str && isspace(Py_CHARMASK(*str))) |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 87 | str++; |
| 88 | |
| 89 | /* check for leading 0 or 0x for auto-base or base 16 */ |
| 90 | switch (base) |
| 91 | { |
| 92 | case 0: /* look for leading 0, 0x or 0X */ |
| 93 | if (*str == '0') |
| 94 | { |
| 95 | str++; |
| 96 | if (*str == 'x' || *str == 'X') |
| 97 | { |
| 98 | str++; |
| 99 | base = 16; |
| 100 | } |
| 101 | else |
| 102 | base = 8; |
| 103 | } |
| 104 | else |
| 105 | base = 10; |
| 106 | break; |
| 107 | |
| 108 | case 16: /* skip leading 0x or 0X */ |
| 109 | if (*str == '0' && (*(str+1) == 'x' || *(str+1) == 'X')) |
| 110 | str += 2; |
| 111 | break; |
| 112 | } |
| 113 | |
| 114 | /* do the conversion */ |
Guido van Rossum | 80bb965 | 1996-12-05 23:27:02 +0000 | [diff] [blame] | 115 | while ((c = Py_CHARMASK(*str)) != '\0') |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 116 | { |
| 117 | if (isdigit(c) && c - '0' < base) |
| 118 | c -= '0'; |
| 119 | else |
| 120 | { |
| 121 | if (isupper(c)) |
| 122 | c = tolower(c); |
| 123 | if (c >= 'a' && c <= 'z') |
| 124 | c -= 'a' - 10; |
| 125 | else /* non-"digit" character */ |
| 126 | break; |
| 127 | if (c >= base) /* non-"digit" character */ |
| 128 | break; |
| 129 | } |
| 130 | temp = result; |
| 131 | result = result * base + c; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 132 | #ifndef MPW |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 133 | if ((result - c) / base != temp) /* overflow */ |
| 134 | ovf = 1; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 135 | #endif |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 136 | str++; |
| 137 | } |
| 138 | |
| 139 | /* set pointer to point to the last character scanned */ |
| 140 | if (ptr) |
| 141 | *ptr = str; |
| 142 | if (ovf) |
| 143 | { |
Guido van Rossum | 644a12b | 1997-04-09 19:24:53 +0000 | [diff] [blame^] | 144 | result = (unsigned long) ~0L; |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 145 | errno = ERANGE; |
| 146 | } |
| 147 | return result; |
| 148 | } |
| 149 | |
| 150 | long |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 151 | mystrtol(str, ptr, base) |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 152 | char * str; |
| 153 | char ** ptr; |
| 154 | int base; |
| 155 | { |
| 156 | long result; |
| 157 | char sign; |
| 158 | |
Guido van Rossum | 7f7f274 | 1995-02-10 17:01:56 +0000 | [diff] [blame] | 159 | while (*str && isspace(Py_CHARMASK(*str))) |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 160 | str++; |
| 161 | |
| 162 | sign = *str; |
| 163 | if (sign == '+' || sign == '-') |
| 164 | str++; |
| 165 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 166 | result = (long) mystrtoul(str, ptr, base); |
Guido van Rossum | be0e942 | 1993-12-24 10:32:00 +0000 | [diff] [blame] | 167 | |
| 168 | /* Signal overflow if the result appears negative, |
| 169 | except for the largest negative integer */ |
| 170 | if (result < 0 && !(sign == '-' && result == -result)) { |
| 171 | errno = ERANGE; |
| 172 | result = 0x7fffffff; |
| 173 | } |
| 174 | |
| 175 | if (sign == '-') |
| 176 | result = -result; |
| 177 | |
| 178 | return result; |
| 179 | } |