Remove duplicate include of <stdio.h>.
[pspp] / lib / xstrtol.c
1 /* A more useful interface to strtol.
2    Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc.
3
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.
8
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.
13
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.  */
17
18 /* Written by Jim Meyering. */
19
20 #if HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 /* Some pre-ANSI implementations (e.g. SunOS 4)
25    need stderr defined if assertion checking is enabled.  */
26 #include <stdio.h>
27
28 #if STDC_HEADERS
29 # include <stdlib.h>
30 #endif
31
32 #if HAVE_STRING_H
33 # include <string.h>
34 #else
35 # include <strings.h>
36 # ifndef strchr
37 #  define strchr index
38 # endif
39 #endif
40
41 #include <assert.h>
42
43 #include <errno.h>
44 #ifndef errno
45 extern int errno;
46 #endif
47
48 #if HAVE_LIMITS_H
49 # include <limits.h>
50 #endif
51
52 #ifndef CHAR_BIT
53 # define CHAR_BIT 8
54 #endif
55
56 /* The extra casts work around common compiler bugs.  */
57 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
58 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
59    It is necessary at least when t == time_t.  */
60 #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
61                               ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
62 #define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t))
63
64 #ifndef ULONG_MAX
65 # define ULONG_MAX TYPE_MAXIMUM (unsigned long int)
66 #endif
67
68 #ifndef LONG_MAX
69 # define LONG_MAX TYPE_MAXIMUM (long int)
70 #endif
71
72 #include "xstrtol.h"
73
74 __unsigned long int __strtol ();
75
76 static int
77 bkm_scale (__unsigned long int *x, int scale_factor)
78 {
79   __unsigned long int product = *x * scale_factor;
80   if (*x != product / scale_factor)
81     return 1;
82   *x = product;
83   return 0;
84 }
85
86 static int
87 bkm_scale_by_power (__unsigned long int *x, int base, int power)
88 {
89   while (power--)
90     if (bkm_scale (x, base))
91       return 1;
92
93   return 0;
94 }
95
96 /* FIXME: comment.  */
97
98 strtol_error
99 __xstrtol (const char *s, char **ptr, int strtol_base,
100            __unsigned long int *val, const char *valid_suffixes)
101 {
102   char *t_ptr;
103   char **p;
104   __unsigned long int tmp;
105
106   assert (0 <= strtol_base && strtol_base <= 36);
107
108   p = (ptr ? ptr : &t_ptr);
109
110   errno = 0;
111   tmp = __strtol (s, p, strtol_base);
112   if (errno != 0)
113     return LONGINT_OVERFLOW;
114   if (*p == s)
115     return LONGINT_INVALID;
116
117   /* Let valid_suffixes == NULL mean `allow any suffix'.  */
118   /* FIXME: update all callers except the one in tail.c changing
119      last parameter NULL to `""'.  */
120   if (!valid_suffixes)
121     {
122       *val = tmp;
123       return LONGINT_OK;
124     }
125
126   if (**p != '\0')
127     {
128       int base = 1024;
129       int suffixes = 1;
130       int overflow;
131
132       if (!strchr (valid_suffixes, **p))
133         return LONGINT_INVALID_SUFFIX_CHAR;
134
135       if (strchr (valid_suffixes, '0'))
136         {
137           /* The ``valid suffix'' '0' is a special flag meaning that
138              an optional second suffix is allowed, which can change
139              the base, e.g. "100MD" for 100 megabytes decimal.  */
140
141           switch (p[0][1])
142             {
143             case 'B':
144               suffixes++;
145               break;
146
147             case 'D':
148               base = 1000;
149               suffixes++;
150               break;
151             }
152         }
153
154       switch (**p)
155         {
156         case 'b':
157           overflow = bkm_scale (&tmp, 512);
158           break;
159
160         case 'B':
161           overflow = bkm_scale (&tmp, 1024);
162           break;
163
164         case 'c':
165           overflow = 0;
166           break;
167
168         case 'E': /* Exa */
169           overflow = bkm_scale_by_power (&tmp, base, 6);
170           break;
171
172         case 'G': /* Giga */
173           overflow = bkm_scale_by_power (&tmp, base, 3);
174           break;
175
176         case 'k': /* kilo */
177           overflow = bkm_scale_by_power (&tmp, base, 1);
178           break;
179
180         case 'M': /* Mega */
181         case 'm': /* 'm' is undocumented; for backward compatibility only */
182           overflow = bkm_scale_by_power (&tmp, base, 2);
183           break;
184
185         case 'P': /* Peta */
186           overflow = bkm_scale_by_power (&tmp, base, 5);
187           break;
188
189         case 'T': /* Tera */
190           overflow = bkm_scale_by_power (&tmp, base, 4);
191           break;
192
193         case 'w':
194           overflow = bkm_scale (&tmp, 2);
195           break;
196
197         case 'Y': /* Yotta */
198           overflow = bkm_scale_by_power (&tmp, base, 8);
199           break;
200
201         case 'Z': /* Zetta */
202           overflow = bkm_scale_by_power (&tmp, base, 7);
203           break;
204
205         default:
206           return LONGINT_INVALID_SUFFIX_CHAR;
207           break;
208         }
209
210       if (overflow)
211         return LONGINT_OVERFLOW;
212
213       (*p) += suffixes;
214     }
215
216   *val = tmp;
217   return LONGINT_OK;
218 }
219
220 #ifdef TESTING_XSTRTO
221
222 # include <stdio.h>
223 # include "error.h"
224
225 char *program_name;
226
227 int
228 main (int argc, char** argv)
229 {
230   strtol_error s_err;
231   int i;
232
233   program_name = argv[0];
234   for (i=1; i<argc; i++)
235     {
236       char *p;
237       __unsigned long int val;
238
239       s_err = __xstrtol (argv[i], &p, 0, &val, "bckmw");
240       if (s_err == LONGINT_OK)
241         {
242           printf ("%s->%lu (%s)\n", argv[i], val, p);
243         }
244       else
245         {
246           STRTOL_FATAL_ERROR (argv[i], "arg", s_err);
247         }
248     }
249   exit (0);
250 }
251
252 #endif /* TESTING_XSTRTO */