blob: 10df79ebfd14832adeabd1e8418e332d30576bd0 [file] [log] [blame]
ossua280f7c2017-04-06 02:02:15 -07001/*
2 * Copyright 2017 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
hugoh6baee782017-06-08 16:38:40 -070011#include <cerrno>
ossua280f7c2017-04-06 02:02:15 -070012#include <cstdlib>
13
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020014#include "rtc_base/string_to_number.h"
ossua280f7c2017-04-06 02:02:15 -070015
16namespace rtc {
17namespace string_to_number_internal {
18
19rtc::Optional<signed_type> ParseSigned(const char* str, int base) {
20 RTC_DCHECK(str);
21 if (isdigit(str[0]) || str[0] == '-') {
22 char* end = nullptr;
23 errno = 0;
24 const signed_type value = std::strtoll(str, &end, base);
25 if (end && *end == '\0' && errno == 0) {
26 return rtc::Optional<signed_type>(value);
27 }
28 }
29 return rtc::Optional<signed_type>();
30}
31
32rtc::Optional<unsigned_type> ParseUnsigned(const char* str, int base) {
33 RTC_DCHECK(str);
34 if (isdigit(str[0]) || str[0] == '-') {
35 // Explicitly discard negative values. std::strtoull parsing causes unsigned
36 // wraparound. We cannot just reject values that start with -, though, since
37 // -0 is perfectly fine, as is -0000000000000000000000000000000.
38 const bool is_negative = str[0] == '-';
39 char* end = nullptr;
40 errno = 0;
41 const unsigned_type value = std::strtoull(str, &end, base);
42 if (end && *end == '\0' && errno == 0 && (value == 0 || !is_negative)) {
43 return rtc::Optional<unsigned_type>(value);
44 }
45 }
46 return rtc::Optional<unsigned_type>();
47}
48
49} // namespace string_to_number_internal
50} // namespace rtc