OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_STRING_NUMBER_CONVERSIONS_H_ | 5 #ifndef BASE_STRING_NUMBER_CONVERSIONS_H_ |
6 #define BASE_STRING_NUMBER_CONVERSIONS_H_ | 6 #define BASE_STRING_NUMBER_CONVERSIONS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/base_export.h" | 11 #include "base/base_export.h" |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/string_piece.h" |
13 #include "base/string16.h" | 14 #include "base/string16.h" |
14 | 15 |
15 // ---------------------------------------------------------------------------- | 16 // ---------------------------------------------------------------------------- |
16 // IMPORTANT MESSAGE FROM YOUR SPONSOR | 17 // IMPORTANT MESSAGE FROM YOUR SPONSOR |
17 // | 18 // |
18 // This file contains no "wstring" variants. New code should use string16. If | 19 // This file contains no "wstring" variants. New code should use string16. If |
19 // you need to make old code work, use the UTF8 version and convert. Please do | 20 // you need to make old code work, use the UTF8 version and convert. Please do |
20 // not add wstring variants. | 21 // not add wstring variants. |
21 // | 22 // |
22 // Please do not add "convenience" functions for converting strings to integers | 23 // Please do not add "convenience" functions for converting strings to integers |
(...skipping 28 matching lines...) Expand all Loading... |
51 // "perfect" conversions; returns false in the following cases: | 52 // "perfect" conversions; returns false in the following cases: |
52 // - Overflow/underflow. |*output| will be set to the maximum value supported | 53 // - Overflow/underflow. |*output| will be set to the maximum value supported |
53 // by the data type. | 54 // by the data type. |
54 // - Trailing characters in the string after parsing the number. |*output| | 55 // - Trailing characters in the string after parsing the number. |*output| |
55 // will be set to the value of the number that was parsed. | 56 // will be set to the value of the number that was parsed. |
56 // - Leading whitespace in the string before parsing the number. |*output| will | 57 // - Leading whitespace in the string before parsing the number. |*output| will |
57 // be set to the value of the number that was parsed. | 58 // be set to the value of the number that was parsed. |
58 // - No characters parseable as a number at the beginning of the string. | 59 // - No characters parseable as a number at the beginning of the string. |
59 // |*output| will be set to 0. | 60 // |*output| will be set to 0. |
60 // - Empty string. |*output| will be set to 0. | 61 // - Empty string. |*output| will be set to 0. |
61 BASE_EXPORT bool StringToInt(const std::string& input, int* output); | 62 BASE_EXPORT bool StringToInt(const StringPiece& input, int* output); |
62 BASE_EXPORT bool StringToInt(std::string::const_iterator begin, | 63 BASE_EXPORT bool StringToInt(const StringPiece16& input, int* output); |
63 std::string::const_iterator end, | 64 BASE_EXPORT bool StringToInt64(const StringPiece& input, int64* output); |
64 int* output); | 65 BASE_EXPORT bool StringToInt64(const StringPiece16& input, int64* output); |
65 BASE_EXPORT bool StringToInt(const char* begin, const char* end, int* output); | |
66 | |
67 BASE_EXPORT bool StringToInt(const string16& input, int* output); | |
68 BASE_EXPORT bool StringToInt(string16::const_iterator begin, | |
69 string16::const_iterator end, | |
70 int* output); | |
71 BASE_EXPORT bool StringToInt(const char16* begin, const char16* end, | |
72 int* output); | |
73 | |
74 BASE_EXPORT bool StringToInt64(const std::string& input, int64* output); | |
75 BASE_EXPORT bool StringToInt64(std::string::const_iterator begin, | |
76 std::string::const_iterator end, | |
77 int64* output); | |
78 BASE_EXPORT bool StringToInt64(const char* begin, const char* end, | |
79 int64* output); | |
80 | |
81 BASE_EXPORT bool StringToInt64(const string16& input, int64* output); | |
82 BASE_EXPORT bool StringToInt64(string16::const_iterator begin, | |
83 string16::const_iterator end, | |
84 int64* output); | |
85 BASE_EXPORT bool StringToInt64(const char16* begin, const char16* end, | |
86 int64* output); | |
87 | 66 |
88 // For floating-point conversions, only conversions of input strings in decimal | 67 // For floating-point conversions, only conversions of input strings in decimal |
89 // form are defined to work. Behavior with strings representing floating-point | 68 // form are defined to work. Behavior with strings representing floating-point |
90 // numbers in hexadecimal, and strings representing non-fininte values (such as | 69 // numbers in hexadecimal, and strings representing non-fininte values (such as |
91 // NaN and inf) is undefined. Otherwise, these behave the same as the integral | 70 // NaN and inf) is undefined. Otherwise, these behave the same as the integral |
92 // variants. This expects the input string to NOT be specific to the locale. | 71 // variants. This expects the input string to NOT be specific to the locale. |
93 // If your input is locale specific, use ICU to read the number. | 72 // If your input is locale specific, use ICU to read the number. |
94 BASE_EXPORT bool StringToDouble(const std::string& input, double* output); | 73 BASE_EXPORT bool StringToDouble(const std::string& input, double* output); |
95 | 74 |
96 // Hex encoding ---------------------------------------------------------------- | 75 // Hex encoding ---------------------------------------------------------------- |
(...skipping 18 matching lines...) Expand all Loading... |
115 // |*output| will contain as many bytes as were successfully parsed prior to the | 94 // |*output| will contain as many bytes as were successfully parsed prior to the |
116 // error. There is no overflow, but input.size() must be evenly divisible by 2. | 95 // error. There is no overflow, but input.size() must be evenly divisible by 2. |
117 // Leading 0x or +/- are not allowed. | 96 // Leading 0x or +/- are not allowed. |
118 BASE_EXPORT bool HexStringToBytes(const std::string& input, | 97 BASE_EXPORT bool HexStringToBytes(const std::string& input, |
119 std::vector<uint8>* output); | 98 std::vector<uint8>* output); |
120 | 99 |
121 } // namespace base | 100 } // namespace base |
122 | 101 |
123 #endif // BASE_STRING_NUMBER_CONVERSIONS_H_ | 102 #endif // BASE_STRING_NUMBER_CONVERSIONS_H_ |
124 | 103 |
OLD | NEW |