OLD | NEW |
(Empty) | |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are |
| 4 // met: |
| 5 // |
| 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided |
| 11 // with the distribution. |
| 12 // * Neither the name of Google Inc. nor the names of its |
| 13 // contributors may be used to endorse or promote products derived |
| 14 // from this software without specific prior written permission. |
| 15 // |
| 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 |
| 28 #ifndef DOUBLE_CONVERSION_DOUBLE_CONVERSION_H_ |
| 29 #define DOUBLE_CONVERSION_DOUBLE_CONVERSION_H_ |
| 30 |
| 31 #include "utils.h" |
| 32 |
| 33 namespace double_conversion { |
| 34 |
| 35 class DoubleToStringConverter { |
| 36 public: |
| 37 // When calling ToFixed with a double > 10^kMaxFixedDigitsBeforePoint |
| 38 // or a requested_digits parameter > kMaxFixedDigitsAfterPoint then the |
| 39 // function returns false. |
| 40 static const int kMaxFixedDigitsBeforePoint = 60; |
| 41 static const int kMaxFixedDigitsAfterPoint = 60; |
| 42 |
| 43 // When calling ToExponential with a requested_digits |
| 44 // parameter > kMaxExponentialDigits then the function returns false. |
| 45 static const int kMaxExponentialDigits = 120; |
| 46 |
| 47 // When calling ToPrecision with a requested_digits |
| 48 // parameter < kMinPrecisionDigits or requested_digits > kMaxPrecisionDigits |
| 49 // then the function returns false. |
| 50 static const int kMinPrecisionDigits = 1; |
| 51 static const int kMaxPrecisionDigits = 120; |
| 52 |
| 53 enum Flags { |
| 54 NO_FLAGS = 0, |
| 55 EMIT_POSITIVE_EXPONENT_SIGN = 1, |
| 56 EMIT_TRAILING_DECIMAL_POINT = 2, |
| 57 EMIT_TRAILING_ZERO_AFTER_POINT = 4, |
| 58 UNIQUE_ZERO = 8 |
| 59 }; |
| 60 |
| 61 // Flags should be a bit-or combination of the possible Flags-enum. |
| 62 // - NO_FLAGS: no special flags. |
| 63 // - EMIT_POSITIVE_EXPONENT_SIGN: when the number is converted into exponent |
| 64 // form, emits a '+' for positive exponents. Example: 1.2e+2. |
| 65 // - EMIT_TRAILING_DECIMAL_POINT: when the input number is an integer and is |
| 66 // converted into decimal format then a trailing decimal point is appended. |
| 67 // Example: 2345.0 is converted to "2345.". |
| 68 // - EMIT_TRAILING_ZERO_AFTER_POINT: in addition to a trailing decimal point |
| 69 // emits a trailing '0'-character. This flag requires the |
| 70 // EXMIT_TRAILING_DECIMAL_POINT flag. |
| 71 // Example: 2345.0 is converted to "2345.0". |
| 72 // - UNIQUE_ZERO: "-0.0" is converted to "0.0". |
| 73 // |
| 74 // Infinity symbol and nan_symbol provide the string representation for these |
| 75 // special values. If the string is NULL and the special value is encountered |
| 76 // then the conversion functions return false. |
| 77 // |
| 78 // The exponent_character is used in exponential representations. It is |
| 79 // usually 'e' or 'E'. |
| 80 // |
| 81 // When converting to the shortest representation the converter will |
| 82 // represent input numbers in decimal format if they are in the interval |
| 83 // [10^decimal_in_shortest_low; 10^decimal_in_shortest_high[ |
| 84 // (lower boundary included, greater boundary excluded). |
| 85 // Example: with decimal_in_shortest_low = -6 and |
| 86 // decimal_in_shortest_high = 21: |
| 87 // ToShortest(0.000001) -> "0.000001" |
| 88 // ToShortest(0.0000001) -> "1e-7" |
| 89 // ToShortest(111111111111111111111.0) -> "111111111111111110000" |
| 90 // ToShortest(100000000000000000000.0) -> "100000000000000000000" |
| 91 // ToShortest(1111111111111111111111.0) -> "1.1111111111111111e+21" |
| 92 // |
| 93 // When converting to precision mode the converter may add |
| 94 // max_leading_padding_zeroes before returning the number in exponential |
| 95 // format. |
| 96 // Example with max_leading_padding_zeroes_in_precision_mode = 6. |
| 97 // ToPrecision(0.0000012345, 2) -> "0.0000012" |
| 98 // ToPrecision(0.00000012345, 2) -> "1.2e-7" |
| 99 // Similarily the converter may add up to |
| 100 // max_trailing_padding_zeroes_in_precision_mode in precision mode to avoid |
| 101 // returning an exponential representation. A zero added by the |
| 102 // EMIT_TRAILING_ZERO_AFTER_POINT flag is counted for this limit. |
| 103 // Examples for max_trailing_padding_zeroes_in_precision_mode = 1: |
| 104 // ToPrecision(230.0, 2) -> "230" |
| 105 // ToPrecision(230.0, 2) -> "230." with EMIT_TRAILING_DECIMAL_POINT. |
| 106 // ToPrecision(230.0, 2) -> "2.3e2" with EMIT_TRAILING_ZERO_AFTER_POINT. |
| 107 DoubleToStringConverter(int flags, |
| 108 const char* infinity_symbol, |
| 109 const char* nan_symbol, |
| 110 char exponent_character, |
| 111 int decimal_in_shortest_low, |
| 112 int decimal_in_shortest_high, |
| 113 int max_leading_padding_zeroes_in_precision_mode, |
| 114 int max_trailing_padding_zeroes_in_precision_mode) |
| 115 : flags_(flags), |
| 116 infinity_symbol_(infinity_symbol), |
| 117 nan_symbol_(nan_symbol), |
| 118 exponent_character_(exponent_character), |
| 119 decimal_in_shortest_low_(decimal_in_shortest_low), |
| 120 decimal_in_shortest_high_(decimal_in_shortest_high), |
| 121 max_leading_padding_zeroes_in_precision_mode_( |
| 122 max_leading_padding_zeroes_in_precision_mode), |
| 123 max_trailing_padding_zeroes_in_precision_mode_( |
| 124 max_trailing_padding_zeroes_in_precision_mode) { |
| 125 // When 'trailing zero after the point' is set, then 'trailing point' |
| 126 // must be set too. |
| 127 ASSERT(((flags & EMIT_TRAILING_DECIMAL_POINT) != 0) || |
| 128 !((flags & EMIT_TRAILING_ZERO_AFTER_POINT) != 0)); |
| 129 } |
| 130 |
| 131 // Returns a converter following the EcmaScript specification. |
| 132 static const DoubleToStringConverter& EcmaScriptConverter(); |
| 133 |
| 134 // Computes the shortest string of digits that correctly represent the input |
| 135 // number. Depending on decimal_in_shortest_low and decimal_in_shortest_high |
| 136 // (see constructor) it then either returns a decimal representation, or an |
| 137 // exponential representation. |
| 138 // Example with decimal_in_shortest_low = -6, |
| 139 // decimal_in_shortest_high = 21, |
| 140 // EMIT_POSITIVE_EXPONENT_SIGN activated, and |
| 141 // EMIT_TRAILING_DECIMAL_POINT deactived: |
| 142 // ToShortest(0.000001) -> "0.000001" |
| 143 // ToShortest(0.0000001) -> "1e-7" |
| 144 // ToShortest(111111111111111111111.0) -> "111111111111111110000" |
| 145 // ToShortest(100000000000000000000.0) -> "100000000000000000000" |
| 146 // ToShortest(1111111111111111111111.0) -> "1.1111111111111111e+21" |
| 147 // |
| 148 // Note: the conversion may round the output if the returned string |
| 149 // is accurate enough to uniquely identify the input-number. |
| 150 // For example the most precise representation of the double 9e59 equals |
| 151 // "899999999999999918767229449717619953810131273674690656206848", but |
| 152 // the converter will return the shorter (but still correct) "9e59". |
| 153 // |
| 154 // Returns true if the conversion succeeds. The conversion always succeeds |
| 155 // except when the input value is special and no infinity_symbol or |
| 156 // nan_symbol has been given to the constructor. |
| 157 bool ToShortest(double value, StringBuilder* result_builder) const; |
| 158 |
| 159 |
| 160 // Computes a decimal representation with a fixed number of digits after the |
| 161 // decimal point. The last emitted digit is rounded. |
| 162 // |
| 163 // Examples: |
| 164 // ToFixed(3.12, 1) -> "3.1" |
| 165 // ToFixed(3.1415, 3) -> "3.142" |
| 166 // ToFixed(1234.56789, 4) -> "1234.5679" |
| 167 // ToFixed(1.23, 5) -> "1.23000" |
| 168 // ToFixed(0.1, 4) -> "0.1000" |
| 169 // ToFixed(1e30, 2) -> "1000000000000000019884624838656.00" |
| 170 // ToFixed(0.1, 30) -> "0.100000000000000005551115123126" |
| 171 // ToFixed(0.1, 17) -> "0.10000000000000001" |
| 172 // |
| 173 // If requested_digits equals 0, then the tail of the result depends on |
| 174 // the EMIT_TRAILING_DECIMAL_POINT and EMIT_TRAILING_ZERO_AFTER_POINT. |
| 175 // Examples, for requested_digits == 0, |
| 176 // let EMIT_TRAILING_DECIMAL_POINT and EMIT_TRAILING_ZERO_AFTER_POINT be |
| 177 // - false and false: then 123.45 -> 123 |
| 178 // 0.678 -> 1 |
| 179 // - true and false: then 123.45 -> 123. |
| 180 // 0.678 -> 1. |
| 181 // - true and true: then 123.45 -> 123.0 |
| 182 // 0.678 -> 1.0 |
| 183 // |
| 184 // Returns true if the conversion succeeds. The conversion always succeeds |
| 185 // except for the following cases: |
| 186 // - the input value is special and no infinity_symbol or nan_symbol has |
| 187 // been provided to the constructor, |
| 188 // - 'value' > 10^kMaxFixedDigitsBeforePoint, or |
| 189 // - 'requested_digits' > kMaxFixedDigitsAfterPoint. |
| 190 // The last two conditions imply that the result will never contain more than |
| 191 // 1 + kMaxFixedDigitsBeforePoint + 1 + kMaxFixedDigitsAfterPoint characters |
| 192 // (one additional character for the sign, and one for the decimal point). |
| 193 bool ToFixed(double value, |
| 194 int requested_digits, |
| 195 StringBuilder* result_builder) const; |
| 196 |
| 197 // Computes a representation in exponential format with requested_digits |
| 198 // after the decimal point. The last emitted digit is rounded. |
| 199 // If requested_digits equals -1, then the shortest exponential representation |
| 200 // is computed. |
| 201 // |
| 202 // Examples with EMIT_POSITIVE_EXPONENT_SIGN deactivated, and |
| 203 // exponent_character set to 'e'. |
| 204 // ToExponential(3.12, 1) -> "3.1e0" |
| 205 // ToExponential(5.0, 3) -> "5.000e0" |
| 206 // ToExponential(0.001, 2) -> "1.00e-3" |
| 207 // ToExponential(3.1415, -1) -> "3.1415e0" |
| 208 // ToExponential(3.1415, 4) -> "3.1415e0" |
| 209 // ToExponential(3.1415, 3) -> "3.142e0" |
| 210 // ToExponential(123456789000000, 3) -> "1.235e14" |
| 211 // ToExponential(1000000000000000019884624838656.0, -1) -> "1e30" |
| 212 // ToExponential(1000000000000000019884624838656.0, 32) -> |
| 213 // "1.00000000000000001988462483865600e30" |
| 214 // ToExponential(1234, 0) -> "1e3" |
| 215 // |
| 216 // Returns true if the conversion succeeds. The conversion always succeeds |
| 217 // except for the following cases: |
| 218 // - the input value is special and no infinity_symbol or nan_symbol has |
| 219 // been provided to the constructor, |
| 220 // - 'requested_digits' > kMaxExponentialDigits. |
| 221 // The last condition implies that the result will never contain more than |
| 222 // kMaxExponentialDigits + 8 characters (the sign, the digit before the |
| 223 // decimal point, the decimal point, the exponent character, the |
| 224 // exponent's sign, and at most 3 exponent digits). |
| 225 bool ToExponential(double value, |
| 226 int requested_digits, |
| 227 StringBuilder* result_builder) const; |
| 228 |
| 229 // Computes 'precision' leading digits of the given 'value' and returns them |
| 230 // either in exponential or decimal format, depending on |
| 231 // max_{leading|trailing}_padding_zeroes_in_precision_mode (given to the |
| 232 // constructor). |
| 233 // The last computed digit is rounded. |
| 234 // |
| 235 // Example with max_leading_padding_zeroes_in_precision_mode = 6. |
| 236 // ToPrecision(0.0000012345, 2) -> "0.0000012" |
| 237 // ToPrecision(0.00000012345, 2) -> "1.2e-7" |
| 238 // Similarily the converter may add up to |
| 239 // max_trailing_padding_zeroes_in_precision_mode in precision mode to avoid |
| 240 // returning an exponential representation. A zero added by the |
| 241 // EMIT_TRAILING_ZERO_AFTER_POINT flag is counted for this limit. |
| 242 // Examples for max_trailing_padding_zeroes_in_precision_mode = 1: |
| 243 // ToPrecision(230.0, 2) -> "230" |
| 244 // ToPrecision(230.0, 2) -> "230." with EMIT_TRAILING_DECIMAL_POINT. |
| 245 // ToPrecision(230.0, 2) -> "2.3e2" with EMIT_TRAILING_ZERO_AFTER_POINT. |
| 246 // Examples for max_trailing_padding_zeroes_in_precision_mode = 3, and no |
| 247 // EMIT_TRAILING_ZERO_AFTER_POINT: |
| 248 // ToPrecision(123450.0, 6) -> "123450" |
| 249 // ToPrecision(123450.0, 5) -> "123450" |
| 250 // ToPrecision(123450.0, 4) -> "123500" |
| 251 // ToPrecision(123450.0, 3) -> "123000" |
| 252 // ToPrecision(123450.0, 2) -> "1.2e5" |
| 253 // |
| 254 // Returns true if the conversion succeeds. The conversion always succeeds |
| 255 // except for the following cases: |
| 256 // - the input value is special and no infinity_symbol or nan_symbol has |
| 257 // been provided to the constructor, |
| 258 // - precision < kMinPericisionDigits |
| 259 // - precision > kMaxPrecisionDigits |
| 260 // The last condition implies that the result will never contain more than |
| 261 // kMaxPrecisionDigits + 7 characters (the sign, the decimal point, the |
| 262 // exponent character, the exponent's sign, and at most 3 exponent digits). |
| 263 bool ToPrecision(double value, |
| 264 int precision, |
| 265 StringBuilder* result_builder) const; |
| 266 |
| 267 enum DtoaMode { |
| 268 // Produce the shortest correct representation. |
| 269 // For example the output of 0.299999999999999988897 is (the less accurate |
| 270 // but correct) 0.3. |
| 271 SHORTEST, |
| 272 // Produce a fixed number of digits after the decimal point. |
| 273 // For instance fixed(0.1, 4) becomes 0.1000 |
| 274 // If the input number is big, the output will be big. |
| 275 FIXED, |
| 276 // Fixed number of digits (independent of the decimal point). |
| 277 PRECISION |
| 278 }; |
| 279 |
| 280 // The maximal number of digits that are needed to emit a double in base 10. |
| 281 // A higher precision can be achieved by using more digits, but the shortest |
| 282 // accurate representation of any double will never use more digits than |
| 283 // kBase10MaximalLength. |
| 284 // Note that DoubleToAscii null-terminates its input. So the given buffer |
| 285 // should be at least kBase10MaximalLength + 1 characters long. |
| 286 static const int kBase10MaximalLength = 17; |
| 287 |
| 288 // Converts the given double 'v' to ascii. |
| 289 // The result should be interpreted as buffer * 10^(point-length). |
| 290 // |
| 291 // The output depends on the given mode: |
| 292 // - SHORTEST: produce the least amount of digits for which the internal |
| 293 // identity requirement is still satisfied. If the digits are printed |
| 294 // (together with the correct exponent) then reading this number will give |
| 295 // 'v' again. The buffer will choose the representation that is closest to |
| 296 // 'v'. If there are two at the same distance, than the one farther away |
| 297 // from 0 is chosen (halfway cases - ending with 5 - are rounded up). |
| 298 // In this mode the 'requested_digits' parameter is ignored. |
| 299 // - FIXED: produces digits necessary to print a given number with |
| 300 // 'requested_digits' digits after the decimal point. The produced digits |
| 301 // might be too short in which case the caller has to fill the remainder |
| 302 // with '0's. |
| 303 // Example: toFixed(0.001, 5) is allowed to return buffer="1", point=-2. |
| 304 // Halfway cases are rounded towards +/-Infinity (away from 0). The call |
| 305 // toFixed(0.15, 2) thus returns buffer="2", point=0. |
| 306 // The returned buffer may contain digits that would be truncated from the |
| 307 // shortest representation of the input. |
| 308 // - PRECISION: produces 'requested_digits' where the first digit is not '0'. |
| 309 // Even though the length of produced digits usually equals |
| 310 // 'requested_digits', the function is allowed to return fewer digits, in |
| 311 // which case the caller has to fill the missing digits with '0's. |
| 312 // Halfway cases are again rounded away from 0. |
| 313 // DoubleToAscii expects the given buffer to be big enough to hold all |
| 314 // digits and a terminating null-character. In SHORTEST-mode it expects a |
| 315 // buffer of at least kBase10MaximalLength + 1. In all other modes the |
| 316 // requested_digits parameter (+ 1 for the null-character) limits the size of |
| 317 // the output. The given length is only used in debug mode to ensure the |
| 318 // buffer is big enough. |
| 319 static void DoubleToAscii(double v, |
| 320 DtoaMode mode, |
| 321 int requested_digits, |
| 322 char* buffer, |
| 323 int buffer_length, |
| 324 bool* sign, |
| 325 int* length, |
| 326 int* point); |
| 327 |
| 328 private: |
| 329 // If the value is a special value (NaN or Infinity) constructs the |
| 330 // corresponding string using the configured infinity/nan-symbol. |
| 331 // If either of them is NULL or the value is not special then the |
| 332 // function returns false. |
| 333 bool HandleSpecialValues(double value, StringBuilder* result_builder) const; |
| 334 // Constructs an exponential representation (i.e. 1.234e56). |
| 335 // The given exponent assumes a decimal point after the first decimal digit. |
| 336 void CreateExponentialRepresentation(const char* decimal_digits, |
| 337 int length, |
| 338 int exponent, |
| 339 StringBuilder* result_builder) const; |
| 340 // Creates a decimal representation (i.e 1234.5678). |
| 341 void CreateDecimalRepresentation(const char* decimal_digits, |
| 342 int length, |
| 343 int decimal_point, |
| 344 int digits_after_point, |
| 345 StringBuilder* result_builder) const; |
| 346 |
| 347 const int flags_; |
| 348 const char* const infinity_symbol_; |
| 349 const char* const nan_symbol_; |
| 350 const char exponent_character_; |
| 351 const int decimal_in_shortest_low_; |
| 352 const int decimal_in_shortest_high_; |
| 353 const int max_leading_padding_zeroes_in_precision_mode_; |
| 354 const int max_trailing_padding_zeroes_in_precision_mode_; |
| 355 |
| 356 DISALLOW_IMPLICIT_CONSTRUCTORS(DoubleToStringConverter); |
| 357 }; |
| 358 |
| 359 |
| 360 class StringToDoubleConverter { |
| 361 public: |
| 362 // Enumeration for allowing octals and ignoring junk when converting |
| 363 // strings to numbers. |
| 364 enum Flags { |
| 365 NO_FLAGS = 0, |
| 366 ALLOW_HEX = 1, |
| 367 ALLOW_OCTALS = 2, |
| 368 ALLOW_TRAILING_JUNK = 4, |
| 369 ALLOW_LEADING_SPACES = 8, |
| 370 ALLOW_TRAILING_SPACES = 16, |
| 371 ALLOW_SPACES_AFTER_SIGN = 32 |
| 372 }; |
| 373 |
| 374 // Flags should be a bit-or combination of the possible Flags-enum. |
| 375 // - NO_FLAGS: no special flags. |
| 376 // - ALLOW_HEX: recognizes the prefix "0x". Hex numbers may only be integers. |
| 377 // Ex: StringToDouble("0x1234") -> 4660.0 |
| 378 // In StringToDouble("0x1234.56") the characters ".56" are trailing |
| 379 // junk. The result of the call is hence dependent on |
| 380 // the ALLOW_TRAILING_JUNK flag and/or the junk value. |
| 381 // With this flag "0x" is a junk-string. Even with ALLOW_TRAILING_JUNK, |
| 382 // the string will not be parsed as "0" followed by junk. |
| 383 // |
| 384 // - ALLOW_OCTALS: recognizes the prefix "0" for octals: |
| 385 // If a sequence of octal digits starts with '0', then the number is |
| 386 // read as octal integer. Octal numbers may only be integers. |
| 387 // Ex: StringToDouble("01234") -> 668.0 |
| 388 // StringToDouble("012349") -> 12349.0 // Not a sequence of octal |
| 389 // // digits. |
| 390 // In StringToDouble("01234.56") the characters ".56" are trailing |
| 391 // junk. The result of the call is hence dependent on |
| 392 // the ALLOW_TRAILING_JUNK flag and/or the junk value. |
| 393 // In StringToDouble("01234e56") the characters "e56" are trailing |
| 394 // junk, too. |
| 395 // - ALLOW_TRAILING_JUNK: ignore trailing characters that are not part of |
| 396 // a double literal. |
| 397 // - ALLOW_LEADING_SPACES: skip over leading spaces. |
| 398 // - ALLOW_TRAILING_SPACES: ignore trailing spaces. |
| 399 // - ALLOW_SPACES_AFTER_SIGN: ignore spaces after the sign. |
| 400 // Ex: StringToDouble("- 123.2") -> -123.2. |
| 401 // StringToDouble("+ 123.2") -> 123.2 |
| 402 // |
| 403 // empty_string_value is returned when an empty string is given as input. |
| 404 // If ALLOW_LEADING_SPACES or ALLOW_TRAILING_SPACES are set, then a string |
| 405 // containing only spaces is converted to the 'empty_string_value', too. |
| 406 // |
| 407 // junk_string_value is returned when |
| 408 // a) ALLOW_TRAILING_JUNK is not set, and a junk character (a character not |
| 409 // part of a double-literal) is found. |
| 410 // b) ALLOW_TRAILING_JUNK is set, but the string does not start with a |
| 411 // double literal. |
| 412 // |
| 413 // infinity_symbol and nan_symbol are strings that are used to detect |
| 414 // inputs that represent infinity and NaN. They can be null, in which case |
| 415 // they are ignored. |
| 416 // The conversion routine first reads any possible signs. Then it compares the |
| 417 // following character of the input-string with the first character of |
| 418 // the infinity, and nan-symbol. If either matches, the function assumes, that |
| 419 // a match has been found, and expects the following input characters to match |
| 420 // the remaining characters of the special-value symbol. |
| 421 // This means that the following restrictions apply to special-value symbols: |
| 422 // - they must not start with signs ('+', or '-'), |
| 423 // - they must not have the same first character. |
| 424 // - they must not start with digits. |
| 425 // |
| 426 // Examples: |
| 427 // flags = ALLOW_HEX | ALLOW_TRAILING_JUNK, |
| 428 // empty_string_value = 0.0, |
| 429 // junk_string_value = NaN, |
| 430 // infinity_symbol = "infinity", |
| 431 // nan_symbol = "nan": |
| 432 // StringToDouble("0x1234") -> 4660.0. |
| 433 // StringToDouble("0x1234K") -> 4660.0. |
| 434 // StringToDouble("") -> 0.0 // empty_string_value. |
| 435 // StringToDouble(" ") -> NaN // junk_string_value. |
| 436 // StringToDouble(" 1") -> NaN // junk_string_value. |
| 437 // StringToDouble("0x") -> NaN // junk_string_value. |
| 438 // StringToDouble("-123.45") -> -123.45. |
| 439 // StringToDouble("--123.45") -> NaN // junk_string_value. |
| 440 // StringToDouble("123e45") -> 123e45. |
| 441 // StringToDouble("123E45") -> 123e45. |
| 442 // StringToDouble("123e+45") -> 123e45. |
| 443 // StringToDouble("123E-45") -> 123e-45. |
| 444 // StringToDouble("123e") -> 123.0 // trailing junk ignored. |
| 445 // StringToDouble("123e-") -> 123.0 // trailing junk ignored. |
| 446 // StringToDouble("+NaN") -> NaN // NaN string literal. |
| 447 // StringToDouble("-infinity") -> -inf. // infinity literal. |
| 448 // StringToDouble("Infinity") -> NaN // junk_string_value. |
| 449 // |
| 450 // flags = ALLOW_OCTAL | ALLOW_LEADING_SPACES, |
| 451 // empty_string_value = 0.0, |
| 452 // junk_string_value = NaN, |
| 453 // infinity_symbol = NULL, |
| 454 // nan_symbol = NULL: |
| 455 // StringToDouble("0x1234") -> NaN // junk_string_value. |
| 456 // StringToDouble("01234") -> 668.0. |
| 457 // StringToDouble("") -> 0.0 // empty_string_value. |
| 458 // StringToDouble(" ") -> 0.0 // empty_string_value. |
| 459 // StringToDouble(" 1") -> 1.0 |
| 460 // StringToDouble("0x") -> NaN // junk_string_value. |
| 461 // StringToDouble("0123e45") -> NaN // junk_string_value. |
| 462 // StringToDouble("01239E45") -> 1239e45. |
| 463 // StringToDouble("-infinity") -> NaN // junk_string_value. |
| 464 // StringToDouble("NaN") -> NaN // junk_string_value. |
| 465 StringToDoubleConverter(int flags, |
| 466 double empty_string_value, |
| 467 double junk_string_value, |
| 468 const char* infinity_symbol, |
| 469 const char* nan_symbol) |
| 470 : flags_(flags), |
| 471 empty_string_value_(empty_string_value), |
| 472 junk_string_value_(junk_string_value), |
| 473 infinity_symbol_(infinity_symbol), |
| 474 nan_symbol_(nan_symbol) { |
| 475 } |
| 476 |
| 477 // Performs the conversion. |
| 478 // The output parameter 'processed_characters_count' is set to the number |
| 479 // of characters that have been processed to read the number. |
| 480 // Spaces than are processed with ALLOW_{LEADING|TRAILING}_SPACES are included |
| 481 // in the 'processed_characters_count'. Trailing junk is never included. |
| 482 double StringToDouble(const char* buffer, |
| 483 int length, |
| 484 int* processed_characters_count); |
| 485 |
| 486 private: |
| 487 const int flags_; |
| 488 const double empty_string_value_; |
| 489 const double junk_string_value_; |
| 490 const char* const infinity_symbol_; |
| 491 const char* const nan_symbol_; |
| 492 |
| 493 DISALLOW_IMPLICIT_CONSTRUCTORS(StringToDoubleConverter); |
| 494 }; |
| 495 |
| 496 } // namespace double_conversion |
| 497 |
| 498 #endif // DOUBLE_CONVERSION_DOUBLE_CONVERSION_H_ |
OLD | NEW |