Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / diffutils / lib / xstrtol.c
blob33746ea4b9a52a86ecc9bc4147c035497f123570
1 /* $NetBSD$ */
3 /* A more useful interface to strtol.
4 Copyright (C) 1995, 1996, 1998-2001 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* Written by Jim Meyering. */
22 #if HAVE_CONFIG_H
23 # include <config.h>
24 #endif
26 #ifndef __strtol
27 # define __strtol strtol
28 # define __strtol_t long int
29 # define __xstrtol xstrtol
30 #endif
32 /* Some pre-ANSI implementations (e.g. SunOS 4)
33 need stderr defined if assertion checking is enabled. */
34 #include <stdio.h>
36 #if STDC_HEADERS
37 # include <stdlib.h>
38 #endif
40 #if HAVE_STRING_H
41 # include <string.h>
42 #else
43 # include <strings.h>
44 # ifndef strchr
45 # define strchr index
46 # endif
47 #endif
49 #include <assert.h>
50 #include <ctype.h>
52 #include <errno.h>
53 #ifndef errno
54 extern int errno;
55 #endif
57 #if HAVE_LIMITS_H
58 # include <limits.h>
59 #endif
61 #ifndef CHAR_BIT
62 # define CHAR_BIT 8
63 #endif
65 /* The extra casts work around common compiler bugs. */
66 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
67 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
68 It is necessary at least when t == time_t. */
69 #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
70 ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
71 #define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t))
73 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
74 # define IN_CTYPE_DOMAIN(c) 1
75 #else
76 # define IN_CTYPE_DOMAIN(c) isascii(c)
77 #endif
79 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
81 #include "xstrtol.h"
83 #if !HAVE_DECL_STRTOL && !defined strtol
84 long int strtol ();
85 #endif
87 #if !HAVE_DECL_STRTOUL && !defined strtoul
88 unsigned long int strtoul ();
89 #endif
91 #if !HAVE_DECL_STRTOIMAX && !defined strtoimax
92 intmax_t strtoimax ();
93 #endif
95 #if !HAVE_DECL_STRTOUMAX && !defined strtoumax
96 uintmax_t strtoumax ();
97 #endif
99 static int
100 bkm_scale (__strtol_t *x, int scale_factor)
102 __strtol_t product = *x * scale_factor;
103 if (*x != product / scale_factor)
104 return 1;
105 *x = product;
106 return 0;
109 static int
110 bkm_scale_by_power (__strtol_t *x, int base, int power)
112 while (power--)
113 if (bkm_scale (x, base))
114 return 1;
116 return 0;
119 /* FIXME: comment. */
121 strtol_error
122 __xstrtol (const char *s, char **ptr, int strtol_base,
123 __strtol_t *val, const char *valid_suffixes)
125 char *t_ptr;
126 char **p;
127 __strtol_t tmp;
129 assert (0 <= strtol_base && strtol_base <= 36);
131 p = (ptr ? ptr : &t_ptr);
133 if (! TYPE_SIGNED (__strtol_t))
135 const char *q = s;
136 while (ISSPACE ((unsigned char) *q))
137 ++q;
138 if (*q == '-')
139 return LONGINT_INVALID;
142 errno = 0;
143 tmp = __strtol (s, p, strtol_base);
144 if (errno != 0)
145 return LONGINT_OVERFLOW;
147 if (*p == s)
149 /* If there is no number but there is a valid suffix, assume the
150 number is 1. The string is invalid otherwise. */
151 if (valid_suffixes && **p && strchr (valid_suffixes, **p))
152 tmp = 1;
153 else
154 return LONGINT_INVALID;
157 /* Let valid_suffixes == NULL mean `allow any suffix'. */
158 /* FIXME: update all callers except the ones that allow suffixes
159 after the number, changing last parameter NULL to `""'. */
160 if (!valid_suffixes)
162 *val = tmp;
163 return LONGINT_OK;
166 if (**p != '\0')
168 int base = 1024;
169 int suffixes = 1;
170 int overflow;
172 if (!strchr (valid_suffixes, **p))
174 *val = tmp;
175 return LONGINT_INVALID_SUFFIX_CHAR;
178 if (strchr (valid_suffixes, '0'))
180 /* The ``valid suffix'' '0' is a special flag meaning that
181 an optional second suffix is allowed, which can change
182 the base. A suffix "B" (e.g. "100MB") stands for a power
183 of 1000, whereas a suffix "iB" (e.g. "100MiB") stands for
184 a power of 1024. If no suffix (e.g. "100M"), assume
185 power-of-1024. */
187 switch (p[0][1])
189 case 'i':
190 if (p[0][2] == 'B')
191 suffixes += 2;
192 break;
194 case 'B':
195 case 'D': /* 'D' is obsolescent */
196 base = 1000;
197 suffixes++;
198 break;
202 switch (**p)
204 case 'b':
205 overflow = bkm_scale (&tmp, 512);
206 break;
208 case 'B':
209 overflow = bkm_scale (&tmp, 1024);
210 break;
212 case 'c':
213 overflow = 0;
214 break;
216 case 'E': /* exa or exbi */
217 overflow = bkm_scale_by_power (&tmp, base, 6);
218 break;
220 case 'G': /* giga or gibi */
221 case 'g': /* 'g' is undocumented; for compatibility only */
222 overflow = bkm_scale_by_power (&tmp, base, 3);
223 break;
225 case 'k': /* kilo */
226 case 'K': /* kibi */
227 overflow = bkm_scale_by_power (&tmp, base, 1);
228 break;
230 case 'M': /* mega or mebi */
231 case 'm': /* 'm' is undocumented; for compatibility only */
232 overflow = bkm_scale_by_power (&tmp, base, 2);
233 break;
235 case 'P': /* peta or pebi */
236 overflow = bkm_scale_by_power (&tmp, base, 5);
237 break;
239 case 'T': /* tera or tebi */
240 case 't': /* 't' is undocumented; for compatibility only */
241 overflow = bkm_scale_by_power (&tmp, base, 4);
242 break;
244 case 'w':
245 overflow = bkm_scale (&tmp, 2);
246 break;
248 case 'Y': /* yotta or 2**80 */
249 overflow = bkm_scale_by_power (&tmp, base, 8);
250 break;
252 case 'Z': /* zetta or 2**70 */
253 overflow = bkm_scale_by_power (&tmp, base, 7);
254 break;
256 default:
257 *val = tmp;
258 return LONGINT_INVALID_SUFFIX_CHAR;
259 break;
262 if (overflow)
263 return LONGINT_OVERFLOW;
265 (*p) += suffixes;
268 *val = tmp;
269 return LONGINT_OK;
272 #ifdef TESTING_XSTRTO
274 # include <stdio.h>
275 # include "error.h"
277 char *program_name;
280 main (int argc, char** argv)
282 strtol_error s_err;
283 int i;
285 program_name = argv[0];
286 for (i=1; i<argc; i++)
288 char *p;
289 __strtol_t val;
291 s_err = __xstrtol (argv[i], &p, 0, &val, "bckmw");
292 if (s_err == LONGINT_OK)
294 printf ("%s->%lu (%s)\n", argv[i], val, p);
296 else
298 STRTOL_FATAL_ERROR (argv[i], "arg", s_err);
301 exit (0);
304 #endif /* TESTING_XSTRTO */