OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef BASE_STRINGS_STRING_NUMBER_CONVERSIONS_H_ | 5 #ifndef BASE_STRINGS_STRING_NUMBER_CONVERSIONS_H_ |
6 #define BASE_STRINGS_STRING_NUMBER_CONVERSIONS_H_ | 6 #define BASE_STRINGS_STRING_NUMBER_CONVERSIONS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 // Best effort conversion, see StringToInt above for restrictions. | 95 // Best effort conversion, see StringToInt above for restrictions. |
96 // Will only successful parse hex values that will fit into |output|, i.e. | 96 // Will only successful parse hex values that will fit into |output|, i.e. |
97 // -0x80000000 < |input| < 0x7FFFFFFF. | 97 // -0x80000000 < |input| < 0x7FFFFFFF. |
98 BASE_EXPORT bool HexStringToInt(const StringPiece& input, int* output); | 98 BASE_EXPORT bool HexStringToInt(const StringPiece& input, int* output); |
99 | 99 |
100 // Best effort conversion, see StringToInt above for restrictions. | 100 // Best effort conversion, see StringToInt above for restrictions. |
101 // Will only successful parse hex values that will fit into |output|, i.e. | 101 // Will only successful parse hex values that will fit into |output|, i.e. |
102 // -0x8000000000000000 < |input| < 0x7FFFFFFFFFFFFFFF. | 102 // -0x8000000000000000 < |input| < 0x7FFFFFFFFFFFFFFF. |
103 BASE_EXPORT bool HexStringToInt64(const StringPiece& input, int64* output); | 103 BASE_EXPORT bool HexStringToInt64(const StringPiece& input, int64* output); |
104 | 104 |
| 105 // Best effort conversion, see StringToInt above for restrictions. |
| 106 // Will only successful parse hex values that will fit into |output|, i.e. |
| 107 // 0x0000000000000000 < |input| < 0xFFFFFFFFFFFFFFFF. |
| 108 // The string is not required to start with 0x. |
| 109 BASE_EXPORT bool HexStringToUInt64(const StringPiece& input, uint64* output); |
| 110 |
105 // Similar to the previous functions, except that output is a vector of bytes. | 111 // Similar to the previous functions, except that output is a vector of bytes. |
106 // |*output| will contain as many bytes as were successfully parsed prior to the | 112 // |*output| will contain as many bytes as were successfully parsed prior to the |
107 // error. There is no overflow, but input.size() must be evenly divisible by 2. | 113 // error. There is no overflow, but input.size() must be evenly divisible by 2. |
108 // Leading 0x or +/- are not allowed. | 114 // Leading 0x or +/- are not allowed. |
109 BASE_EXPORT bool HexStringToBytes(const std::string& input, | 115 BASE_EXPORT bool HexStringToBytes(const std::string& input, |
110 std::vector<uint8>* output); | 116 std::vector<uint8>* output); |
111 | 117 |
112 } // namespace base | 118 } // namespace base |
113 | 119 |
114 #endif // BASE_STRINGS_STRING_NUMBER_CONVERSIONS_H_ | 120 #endif // BASE_STRINGS_STRING_NUMBER_CONVERSIONS_H_ |
115 | |
OLD | NEW |