OLD | NEW |
| (Empty) |
1 /* | |
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 | |
11 #include <cerrno> | |
12 #include <cstdlib> | |
13 | |
14 #include "webrtc/base/string_to_number.h" | |
15 | |
16 namespace rtc { | |
17 namespace string_to_number_internal { | |
18 | |
19 rtc::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 | |
32 rtc::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 | |
OLD | NEW |