1 /* $NetBSD: dehumanize_number.c,v 1.7 2014/10/01 13:53:04 apb Exp $ */
4 * Copyright (c) 2005, 2006 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Julio M. Merino Vidal, developed as part of Google's Summer of Code
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
20 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
33 #ifdef HAVE_NBTOOL_CONFIG_H
34 #include "nbtool_config.h"
35 #endif /* HAVE_NBTOOL_CONFIG_H */
37 #include <sys/cdefs.h>
38 #if defined(LIBC_SCCS) && !defined(lint)
39 __RCSID("$NetBSD: dehumanize_number.c,v 1.7 2014/10/01 13:53:04 apb Exp $");
40 #endif /* LIBC_SCCS and not lint */
42 #include "namespace.h"
52 * Converts the number given in 'str', which may be given in a humanized
53 * form (as described in humanize_number(3), but with some limitations),
54 * to an int64_t without units.
55 * In case of success, 0 is returned and *size holds the value.
56 * Otherwise, -1 is returned and *size is untouched.
58 * TODO: Internationalization, SI units.
61 dehumanize_number(const char *str
, int64_t *size
)
78 if (isalpha((unsigned char)unit
)) {
79 switch (tolower((unsigned char)unit
)) {
89 multiplier
= 1024 * 1024;
93 multiplier
= 1024 * 1024 * 1024;
98 return -1; /* Invalid suffix. */
101 delimit
= &str
[len
- 1];
106 tmp
= strtoll(str
, &ep
, 10);
107 if (str
[0] == '\0' || (ep
!= delimit
&& *ep
!= '\0'))
108 return -1; /* Not a number. */
109 else if (errno
== ERANGE
&& (tmp
== LLONG_MAX
|| tmp
== LLONG_MIN
))
110 return -1; /* Out of range. */
112 tmp2
= tmp
* multiplier
;
113 tmp2
= tmp2
/ multiplier
;
116 return -1; /* Out of range. */
120 _DIAGASSERT(__type_fit(int64_t, tmp
));
122 *size
= (int64_t)tmp
;