Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * ascii-to-numbers implementations for busybox |
| 4 | * |
| 5 | * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org> |
| 6 | * |
| 7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
| 8 | */ |
| 9 | |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame^] | 10 | #if __GNUC_PREREQ(4,1) |
| 11 | # pragma GCC visibility push(hidden) |
| 12 | #endif |
| 13 | |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 14 | /* Provides extern declarations of functions */ |
| 15 | #define DECLARE_STR_CONV(type, T, UT) \ |
| 16 | \ |
| 17 | unsigned type xstrto##UT##_range_sfx(const char *str, int b, unsigned type l, unsigned type u, const struct suffix_mult *sfx); \ |
| 18 | unsigned type xstrto##UT##_range(const char *str, int b, unsigned type l, unsigned type u); \ |
| 19 | unsigned type xstrto##UT##_sfx(const char *str, int b, const struct suffix_mult *sfx); \ |
| 20 | unsigned type xstrto##UT(const char *str, int b); \ |
| 21 | unsigned type xato##UT##_range_sfx(const char *str, unsigned type l, unsigned type u, const struct suffix_mult *sfx); \ |
| 22 | unsigned type xato##UT##_range(const char *str, unsigned type l, unsigned type u); \ |
| 23 | unsigned type xato##UT##_sfx(const char *str, const struct suffix_mult *sfx); \ |
| 24 | unsigned type xato##UT(const char *str); \ |
Denis Vlasenko | b71c668 | 2007-07-21 15:08:09 +0000 | [diff] [blame] | 25 | type xstrto##T##_range_sfx(const char *str, int b, type l, type u, const struct suffix_mult *sfx); \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 26 | type xstrto##T##_range(const char *str, int b, type l, type u); \ |
| 27 | type xato##T##_range_sfx(const char *str, type l, type u, const struct suffix_mult *sfx); \ |
| 28 | type xato##T##_range(const char *str, type l, type u); \ |
| 29 | type xato##T##_sfx(const char *str, const struct suffix_mult *sfx); \ |
| 30 | type xato##T(const char *str); \ |
| 31 | |
| 32 | /* Unsigned long long functions always exist */ |
| 33 | DECLARE_STR_CONV(long long, ll, ull) |
| 34 | |
| 35 | |
Denis Vlasenko | a597aad | 2006-12-16 23:48:13 +0000 | [diff] [blame] | 36 | /* Provides inline definitions of functions */ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 37 | /* (useful for mapping them to the type of the same width) */ |
| 38 | #define DEFINE_EQUIV_STR_CONV(narrow, N, W, UN, UW) \ |
| 39 | \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 40 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 41 | unsigned narrow xstrto##UN##_range_sfx(const char *str, int b, unsigned narrow l, unsigned narrow u, const struct suffix_mult *sfx) \ |
| 42 | { return xstrto##UW##_range_sfx(str, b, l, u, sfx); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 43 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 44 | unsigned narrow xstrto##UN##_range(const char *str, int b, unsigned narrow l, unsigned narrow u) \ |
| 45 | { return xstrto##UW##_range(str, b, l, u); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 46 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 47 | unsigned narrow xstrto##UN##_sfx(const char *str, int b, const struct suffix_mult *sfx) \ |
| 48 | { return xstrto##UW##_sfx(str, b, sfx); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 49 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 50 | unsigned narrow xstrto##UN(const char *str, int b) \ |
| 51 | { return xstrto##UW(str, b); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 52 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 53 | unsigned narrow xato##UN##_range_sfx(const char *str, unsigned narrow l, unsigned narrow u, const struct suffix_mult *sfx) \ |
| 54 | { return xato##UW##_range_sfx(str, l, u, sfx); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 55 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 56 | unsigned narrow xato##UN##_range(const char *str, unsigned narrow l, unsigned narrow u) \ |
| 57 | { return xato##UW##_range(str, l, u); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 58 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 59 | unsigned narrow xato##UN##_sfx(const char *str, const struct suffix_mult *sfx) \ |
| 60 | { return xato##UW##_sfx(str, sfx); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 61 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 62 | unsigned narrow xato##UN(const char *str) \ |
| 63 | { return xato##UW(str); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 64 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 65 | narrow xstrto##N##_range_sfx(const char *str, int b, narrow l, narrow u, const struct suffix_mult *sfx) \ |
| 66 | { return xstrto##W##_range_sfx(str, b, l, u, sfx); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 67 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 68 | narrow xstrto##N##_range(const char *str, int b, narrow l, narrow u) \ |
| 69 | { return xstrto##W##_range(str, b, l, u); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 70 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 71 | narrow xato##N##_range_sfx(const char *str, narrow l, narrow u, const struct suffix_mult *sfx) \ |
| 72 | { return xato##W##_range_sfx(str, l, u, sfx); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 73 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 74 | narrow xato##N##_range(const char *str, narrow l, narrow u) \ |
| 75 | { return xato##W##_range(str, l, u); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 76 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 77 | narrow xato##N##_sfx(const char *str, const struct suffix_mult *sfx) \ |
| 78 | { return xato##W##_sfx(str, sfx); } \ |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 79 | static ALWAYS_INLINE \ |
Denis Vlasenko | ed836cd | 2006-11-25 14:44:13 +0000 | [diff] [blame] | 80 | narrow xato##N(const char *str) \ |
| 81 | { return xato##W(str); } \ |
| 82 | |
| 83 | /* If long == long long, then just map them one-to-one */ |
| 84 | #if ULONG_MAX == ULLONG_MAX |
| 85 | DEFINE_EQUIV_STR_CONV(long, l, ll, ul, ull) |
| 86 | #else |
| 87 | /* Else provide extern defs */ |
| 88 | DECLARE_STR_CONV(long, l, ul) |
| 89 | #endif |
| 90 | |
| 91 | /* Same for int -> [long] long */ |
| 92 | #if UINT_MAX == ULLONG_MAX |
| 93 | DEFINE_EQUIV_STR_CONV(int, i, ll, u, ull) |
| 94 | #elif UINT_MAX == ULONG_MAX |
| 95 | DEFINE_EQUIV_STR_CONV(int, i, l, u, ul) |
| 96 | #else |
| 97 | DECLARE_STR_CONV(int, i, u) |
| 98 | #endif |
Denis Vlasenko | 43bddf3 | 2006-11-25 14:49:04 +0000 | [diff] [blame] | 99 | |
| 100 | /* Specialized */ |
| 101 | |
| 102 | int BUG_xatou32_unimplemented(void); |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 103 | static ALWAYS_INLINE uint32_t xatou32(const char *numstr) |
Denis Vlasenko | 43bddf3 | 2006-11-25 14:49:04 +0000 | [diff] [blame] | 104 | { |
| 105 | if (UINT_MAX == 0xffffffff) |
| 106 | return xatou(numstr); |
| 107 | if (ULONG_MAX == 0xffffffff) |
| 108 | return xatoul(numstr); |
| 109 | return BUG_xatou32_unimplemented(); |
| 110 | } |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 111 | |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 112 | /* Non-aborting kind of convertors: bb_strto[u][l]l */ |
| 113 | |
| 114 | /* On exit: errno = 0 only if there was non-empty, '\0' terminated value |
| 115 | * errno = EINVAL if value was not '\0' terminated, but othervise ok |
| 116 | * Return value is still valid, caller should just check whether end[0] |
| 117 | * is a valid terminating char for particular case. OTOH, if caller |
| 118 | * requires '\0' terminated input, [s]he can just check errno == 0. |
| 119 | * errno = ERANGE if value had alphanumeric terminating char ("1234abcg"). |
| 120 | * errno = ERANGE if value is out of range, missing, etc. |
| 121 | * errno = ERANGE if value had minus sign for strtouXX (even "-0" is not ok ) |
| 122 | * return value is all-ones in this case. |
| 123 | */ |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 124 | |
| 125 | unsigned long long bb_strtoull(const char *arg, char **endp, int base); |
| 126 | long long bb_strtoll(const char *arg, char **endp, int base); |
| 127 | |
| 128 | #if ULONG_MAX == ULLONG_MAX |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 129 | static ALWAYS_INLINE |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 130 | unsigned long bb_strtoul(const char *arg, char **endp, int base) |
| 131 | { return bb_strtoull(arg, endp, base); } |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 132 | static ALWAYS_INLINE |
Denis Vlasenko | a597aad | 2006-12-16 23:48:13 +0000 | [diff] [blame] | 133 | long bb_strtol(const char *arg, char **endp, int base) |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 134 | { return bb_strtoll(arg, endp, base); } |
| 135 | #else |
| 136 | unsigned long bb_strtoul(const char *arg, char **endp, int base); |
| 137 | long bb_strtol(const char *arg, char **endp, int base); |
| 138 | #endif |
| 139 | |
| 140 | #if UINT_MAX == ULLONG_MAX |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 141 | static ALWAYS_INLINE |
Denis Vlasenko | a597aad | 2006-12-16 23:48:13 +0000 | [diff] [blame] | 142 | unsigned bb_strtou(const char *arg, char **endp, int base) |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 143 | { return bb_strtoull(arg, endp, base); } |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 144 | static ALWAYS_INLINE |
Denis Vlasenko | a597aad | 2006-12-16 23:48:13 +0000 | [diff] [blame] | 145 | int bb_strtoi(const char *arg, char **endp, int base) |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 146 | { return bb_strtoll(arg, endp, base); } |
| 147 | #elif UINT_MAX == ULONG_MAX |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 148 | static ALWAYS_INLINE |
Denis Vlasenko | a597aad | 2006-12-16 23:48:13 +0000 | [diff] [blame] | 149 | unsigned bb_strtou(const char *arg, char **endp, int base) |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 150 | { return bb_strtoul(arg, endp, base); } |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 151 | static ALWAYS_INLINE |
Denis Vlasenko | a597aad | 2006-12-16 23:48:13 +0000 | [diff] [blame] | 152 | int bb_strtoi(const char *arg, char **endp, int base) |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 153 | { return bb_strtol(arg, endp, base); } |
| 154 | #else |
Denis Vlasenko | a597aad | 2006-12-16 23:48:13 +0000 | [diff] [blame] | 155 | unsigned bb_strtou(const char *arg, char **endp, int base); |
| 156 | int bb_strtoi(const char *arg, char **endp, int base); |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 157 | #endif |
| 158 | |
| 159 | int BUG_bb_strtou32_unimplemented(void); |
Denis Vlasenko | 3ad5d0c | 2007-06-12 20:54:54 +0000 | [diff] [blame] | 160 | static ALWAYS_INLINE |
Denis Vlasenko | d686a04 | 2006-11-27 14:43:21 +0000 | [diff] [blame] | 161 | uint32_t bb_strtou32(const char *arg, char **endp, int base) |
| 162 | { |
| 163 | if (sizeof(uint32_t) == sizeof(unsigned)) |
| 164 | return bb_strtou(arg, endp, base); |
| 165 | if (sizeof(uint32_t) == sizeof(unsigned long)) |
| 166 | return bb_strtoul(arg, endp, base); |
| 167 | return BUG_bb_strtou32_unimplemented(); |
| 168 | } |
| 169 | |
| 170 | /* Floating point */ |
| 171 | |
| 172 | /* double bb_strtod(const char *arg, char **endp); */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame^] | 173 | |
| 174 | #if __GNUC_PREREQ(4,1) |
| 175 | # pragma GCC visibility pop |
| 176 | #endif |