123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- #if HAVE_CONFIG_H
- # include <config.h>
- #endif
- #ifndef __strtol
- # define __strtol strtol
- # define __strtol_t long int
- # define __xstrtol xstrtol
- #endif
- #include <stdio.h>
- #if STDC_HEADERS
- # include <stdlib.h>
- #endif
- #if HAVE_STRING_H
- # include <string.h>
- #else
- # include <strings.h>
- # ifndef strchr
- # define strchr index
- # endif
- #endif
- #include <assert.h>
- #include <ctype.h>
- #include <errno.h>
- #ifndef errno
- extern int errno;
- #endif
- #if HAVE_LIMITS_H
- # include <limits.h>
- #endif
- #ifndef CHAR_BIT
- # define CHAR_BIT 8
- #endif
- #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
- #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
- ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
- #define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t))
- #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
- # define IN_CTYPE_DOMAIN(c) 1
- #else
- # define IN_CTYPE_DOMAIN(c) isascii(c)
- #endif
- #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
- #include "xstrtol.h"
- #ifndef strtol
- long int strtol ();
- #endif
- #ifndef strtoul
- unsigned long int strtoul ();
- #endif
- #if !HAVE_DECL_STRTOIMAX
- intmax_t strtoimax ();
- #endif
- #if !HAVE_DECL_STRTOUMAX
- uintmax_t strtoumax ();
- #endif
- static int
- bkm_scale (__strtol_t *x, int scale_factor)
- {
- __strtol_t product = *x * scale_factor;
- if (*x != product / scale_factor)
- return 1;
- *x = product;
- return 0;
- }
- static int
- bkm_scale_by_power (__strtol_t *x, int base, int power)
- {
- while (power--)
- if (bkm_scale (x, base))
- return 1;
- return 0;
- }
- strtol_error
- __xstrtol (const char *s, char **ptr, int strtol_base,
- __strtol_t *val, const char *valid_suffixes)
- {
- char *t_ptr;
- char **p;
- __strtol_t tmp;
- assert (0 <= strtol_base && strtol_base <= 36);
- p = (ptr ? ptr : &t_ptr);
- if (! TYPE_SIGNED (__strtol_t))
- {
- const char *q = s;
- while (ISSPACE ((unsigned char) *q))
- ++q;
- if (*q == '-')
- return LONGINT_INVALID;
- }
- errno = 0;
- tmp = __strtol (s, p, strtol_base);
- if (errno != 0)
- return LONGINT_OVERFLOW;
- if (*p == s)
- return LONGINT_INVALID;
-
-
- if (!valid_suffixes)
- {
- *val = tmp;
- return LONGINT_OK;
- }
- if (**p != '\0')
- {
- int base = 1024;
- int suffixes = 1;
- int overflow;
- if (!strchr (valid_suffixes, **p))
- {
- *val = tmp;
- return LONGINT_INVALID_SUFFIX_CHAR;
- }
- if (strchr (valid_suffixes, '0'))
- {
-
- switch (p[0][1])
- {
- case 'B':
- suffixes++;
- break;
- case 'D':
- base = 1000;
- suffixes++;
- break;
- }
- }
- switch (**p)
- {
- case 'b':
- overflow = bkm_scale (&tmp, 512);
- break;
- case 'B':
- overflow = bkm_scale (&tmp, 1024);
- break;
- case 'c':
- overflow = 0;
- break;
- case 'E':
- overflow = bkm_scale_by_power (&tmp, base, 6);
- break;
- case 'G':
- case 'g':
- overflow = bkm_scale_by_power (&tmp, base, 3);
- break;
- case 'k':
- overflow = bkm_scale_by_power (&tmp, base, 1);
- break;
- case 'M':
- case 'm':
- overflow = bkm_scale_by_power (&tmp, base, 2);
- break;
- case 'P':
- overflow = bkm_scale_by_power (&tmp, base, 5);
- break;
- case 'T':
- case 't':
- overflow = bkm_scale_by_power (&tmp, base, 4);
- break;
- case 'w':
- overflow = bkm_scale (&tmp, 2);
- break;
- case 'Y':
- overflow = bkm_scale_by_power (&tmp, base, 8);
- break;
- case 'Z':
- overflow = bkm_scale_by_power (&tmp, base, 7);
- break;
- default:
- *val = tmp;
- return LONGINT_INVALID_SUFFIX_CHAR;
- break;
- }
- if (overflow)
- return LONGINT_OVERFLOW;
- (*p) += suffixes;
- }
- *val = tmp;
- return LONGINT_OK;
- }
- #ifdef TESTING_XSTRTO
- # include <stdio.h>
- # include "error.h"
- char *program_name;
- int
- main (int argc, char** argv)
- {
- strtol_error s_err;
- int i;
- program_name = argv[0];
- for (i=1; i<argc; i++)
- {
- char *p;
- __strtol_t val;
- s_err = __xstrtol (argv[i], &p, 0, &val, "bckmw");
- if (s_err == LONGINT_OK)
- {
- printf ("%s->%lu (%s)\n", argv[i], val, p);
- }
- else
- {
- STRTOL_FATAL_ERROR (argv[i], "arg", s_err);
- }
- }
- exit (0);
- }
- #endif
|