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 "webrtc/base/string_to_number.h" | |
12 | |
13 namespace rtc { | |
14 namespace string_to_number_internal { | |
15 | |
16 rtc::Optional<signed_type> ParseSigned(const char* str, int base) { | |
17 RTC_DCHECK(str); | |
18 if (isdigit(str[0]) || str[0] == '-') { | |
19 char* end = nullptr; | |
20 errno = 0; | |
21 const signed_type value = std::strtoll(str, &end, base); | |
kwiberg-webrtc
2017/04/05 09:01:15
#include <cstdlib>?
ossu
2017/04/05 10:15:36
Ach, yes. Not sure why I didn't get IWYU warnings
| |
22 if (end && *end == '\0' && end != str && errno == 0) { | |
kwiberg-webrtc
2017/04/05 09:01:15
That end != str is necessarily true if the first t
ossu
2017/04/05 10:15:36
I'm guessing maybe if it would highlight an error
kwiberg-webrtc
2017/04/05 10:55:38
It'll still work: since *end == '\0' and (isdigit(
| |
23 return rtc::Optional<signed_type>(value); | |
24 } | |
25 } | |
26 return rtc::Optional<signed_type>(); | |
27 } | |
28 | |
29 rtc::Optional<unsigned_type> ParseUnsigned(const char* str, int base) { | |
30 RTC_DCHECK(str); | |
31 if (isdigit(str[0]) || str[0] == '-') { | |
32 // Explicitly discard negative values. std::strtoull parsing causes unsigned | |
33 // wraparound. We cannot just reject values that start with -, though, since | |
34 // -0 is perfectly fine, as is -0000000000000000000000000000000. | |
35 const bool is_negative = str[0] == '-'; | |
36 char* end = nullptr; | |
37 errno = 0; | |
38 const unsigned_type value = std::strtoull(str, &end, base); | |
kwiberg-webrtc
2017/04/05 09:01:15
Wouldn't it be safer to discard the minus sign bef
ossu
2017/04/05 10:15:36
Nah, it should be able to deal with that itself, a
kwiberg-webrtc
2017/04/05 10:55:38
Acknowledged.
| |
39 if (end && *end == '\0' && end != str && errno == 0 && | |
40 (value == 0 || !is_negative)) { | |
41 return rtc::Optional<unsigned_type>(value); | |
42 } | |
43 } | |
44 return rtc::Optional<unsigned_type>(); | |
45 } | |
46 | |
47 } // namespace string_to_number_internal | |
48 } // namespace rtc | |
OLD | NEW |