(AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
[coreutils.git] / lib / xstrtol.c
blob0b91ed72327d71a9bd594237c4a55742c58bc891
1 /* A more useful interface to strtol.
2 Copyright 1995, 1996, 1998, 1999 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by Jim Meyering. */
20 #if HAVE_CONFIG_H
21 # include <config.h>
22 #endif
24 #ifndef __strtol
25 # define __strtol strtol
26 # define __strtol_t long int
27 # define __xstrtol xstrtol
28 #endif
30 /* Some pre-ANSI implementations (e.g. SunOS 4)
31 need stderr defined if assertion checking is enabled. */
32 #include <stdio.h>
34 #if STDC_HEADERS
35 # include <stdlib.h>
36 #endif
38 #if HAVE_STRING_H
39 # include <string.h>
40 #else
41 # include <strings.h>
42 # ifndef strchr
43 # define strchr index
44 # endif
45 #endif
47 #include <assert.h>
48 #include <ctype.h>
50 #include <errno.h>
51 #ifndef errno
52 extern int errno;
53 #endif
55 #if HAVE_LIMITS_H
56 # include <limits.h>
57 #endif
59 #ifndef CHAR_BIT
60 # define CHAR_BIT 8
61 #endif
63 /* The extra casts work around common compiler bugs. */
64 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
65 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
66 It is necessary at least when t == time_t. */
67 #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
68 ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
69 #define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t))
71 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
72 # define IN_CTYPE_DOMAIN(c) 1
73 #else
74 # define IN_CTYPE_DOMAIN(c) isascii(c)
75 #endif
77 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
79 #include "xstrtol.h"
81 __strtol_t __strtol ();
83 static int
84 bkm_scale (__strtol_t *x, int scale_factor)
86 __strtol_t product = *x * scale_factor;
87 if (*x != product / scale_factor)
88 return 1;
89 *x = product;
90 return 0;
93 static int
94 bkm_scale_by_power (__strtol_t *x, int base, int power)
96 while (power--)
97 if (bkm_scale (x, base))
98 return 1;
100 return 0;
103 /* FIXME: comment. */
105 strtol_error
106 __xstrtol (const char *s, char **ptr, int strtol_base,
107 __strtol_t *val, const char *valid_suffixes)
109 char *t_ptr;
110 char **p;
111 __strtol_t tmp;
113 assert (0 <= strtol_base && strtol_base <= 36);
115 p = (ptr ? ptr : &t_ptr);
117 if (! TYPE_SIGNED (__strtol_t))
119 const char *q = s;
120 while (ISSPACE ((unsigned char) *q))
121 ++q;
122 if (*q == '-')
123 return LONGINT_INVALID;
126 errno = 0;
127 tmp = __strtol (s, p, strtol_base);
128 if (errno != 0)
129 return LONGINT_OVERFLOW;
130 if (*p == s)
131 return LONGINT_INVALID;
133 /* Let valid_suffixes == NULL mean `allow any suffix'. */
134 /* FIXME: update all callers except the ones that allow suffixes
135 after the number, changing last parameter NULL to `""'. */
136 if (!valid_suffixes)
138 *val = tmp;
139 return LONGINT_OK;
142 if (**p != '\0')
144 int base = 1024;
145 int suffixes = 1;
146 int overflow;
148 if (!strchr (valid_suffixes, **p))
150 *val = tmp;
151 return LONGINT_INVALID_SUFFIX_CHAR;
154 if (strchr (valid_suffixes, '0'))
156 /* The ``valid suffix'' '0' is a special flag meaning that
157 an optional second suffix is allowed, which can change
158 the base, e.g. "100MD" for 100 megabytes decimal. */
160 switch (p[0][1])
162 case 'B':
163 suffixes++;
164 break;
166 case 'D':
167 base = 1000;
168 suffixes++;
169 break;
173 switch (**p)
175 case 'b':
176 overflow = bkm_scale (&tmp, 512);
177 break;
179 case 'B':
180 overflow = bkm_scale (&tmp, 1024);
181 break;
183 case 'c':
184 overflow = 0;
185 break;
187 case 'E': /* Exa */
188 overflow = bkm_scale_by_power (&tmp, base, 6);
189 break;
191 case 'G': /* Giga */
192 overflow = bkm_scale_by_power (&tmp, base, 3);
193 break;
195 case 'k': /* kilo */
196 overflow = bkm_scale_by_power (&tmp, base, 1);
197 break;
199 case 'M': /* Mega */
200 case 'm': /* 'm' is undocumented; for backward compatibility only */
201 overflow = bkm_scale_by_power (&tmp, base, 2);
202 break;
204 case 'P': /* Peta */
205 overflow = bkm_scale_by_power (&tmp, base, 5);
206 break;
208 case 'T': /* Tera */
209 overflow = bkm_scale_by_power (&tmp, base, 4);
210 break;
212 case 'w':
213 overflow = bkm_scale (&tmp, 2);
214 break;
216 case 'Y': /* Yotta */
217 overflow = bkm_scale_by_power (&tmp, base, 8);
218 break;
220 case 'Z': /* Zetta */
221 overflow = bkm_scale_by_power (&tmp, base, 7);
222 break;
224 default:
225 *val = tmp;
226 return LONGINT_INVALID_SUFFIX_CHAR;
227 break;
230 if (overflow)
231 return LONGINT_OVERFLOW;
233 (*p) += suffixes;
236 *val = tmp;
237 return LONGINT_OK;
240 #ifdef TESTING_XSTRTO
242 # include <stdio.h>
243 # include "error.h"
245 char *program_name;
248 main (int argc, char** argv)
250 strtol_error s_err;
251 int i;
253 program_name = argv[0];
254 for (i=1; i<argc; i++)
256 char *p;
257 __strtol_t val;
259 s_err = __xstrtol (argv[i], &p, 0, &val, "bckmw");
260 if (s_err == LONGINT_OK)
262 printf ("%s->%lu (%s)\n", argv[i], val, p);
264 else
266 STRTOL_FATAL_ERROR (argv[i], "arg", s_err);
269 exit (0);
272 #endif /* TESTING_XSTRTO */