]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/multiprecision/detail/float_string_cvt.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / multiprecision / detail / float_string_cvt.hpp
index 9b5774f1afe99f76f5862d17a629140dc2085d04..98d8d26e601fcbe3eb43f4930fe5320b95d71e24 100644 (file)
@@ -1,7 +1,7 @@
 ///////////////////////////////////////////////////////////////
 //  Copyright 2013 John Maddock. Distributed under the Boost
 //  Software License, Version 1.0. (See accompanying file
-//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_
+//  LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
 //
 // Generic routines for converting floating point values to and from decimal strings.
 // Note that these use "naive" algorithms which result in rounding error - so they
@@ -14,7 +14,7 @@
 
 #include <cctype>
 
-namespace boost{ namespace multiprecision{ namespace detail{
+namespace boost { namespace multiprecision { namespace detail {
 
 template <class I>
 inline void round_string_up_at(std::string& s, int pos, I& expon)
@@ -22,20 +22,20 @@ inline void round_string_up_at(std::string& s, int pos, I& expon)
    //
    // Rounds up a string representation of a number at pos:
    //
-   if(pos < 0)
+   if (pos < 0)
    {
       s.insert(static_cast<std::string::size_type>(0), 1, '1');
       s.erase(s.size() - 1);
       ++expon;
    }
-   else if(s[pos] == '9')
+   else if (s[pos] == '9')
    {
       s[pos] = '0';
       round_string_up_at(s, pos - 1, expon);
    }
    else
    {
-      if((pos == 0) && (s[pos] == '0') && (s.size() == 1))
+      if ((pos == 0) && (s[pos] == '0') && (s.size() == 1))
          ++expon;
       ++s[pos];
    }
@@ -44,40 +44,40 @@ inline void round_string_up_at(std::string& s, int pos, I& expon)
 template <class Backend>
 std::string convert_to_string(Backend b, std::streamsize digits, std::ios_base::fmtflags f)
 {
-   using default_ops::eval_log10;
-   using default_ops::eval_floor;
-   using default_ops::eval_pow;
    using default_ops::eval_convert_to;
-   using default_ops::eval_multiply;
    using default_ops::eval_divide;
-   using default_ops::eval_subtract;
+   using default_ops::eval_floor;
    using default_ops::eval_fpclassify;
+   using default_ops::eval_log10;
+   using default_ops::eval_multiply;
+   using default_ops::eval_pow;
+   using default_ops::eval_subtract;
 
    typedef typename mpl::front<typename Backend::unsigned_types>::type ui_type;
-   typedef typename Backend::exponent_type exponent_type;
+   typedef typename Backend::exponent_type                             exponent_type;
 
-   std::string result;
-   bool iszero = false;
-   bool isneg = false;
-   exponent_type expon = 0;
+   std::string     result;
+   bool            iszero     = false;
+   bool            isneg      = false;
+   exponent_type   expon      = 0;
    std::streamsize org_digits = digits;
    BOOST_ASSERT(digits > 0);
 
    int fpt = eval_fpclassify(b);
 
-   if(fpt == (int)FP_ZERO)
+   if (fpt == (int)FP_ZERO)
    {
       result = "0";
       iszero = true;
    }
-   else if(fpt == (int)FP_INFINITE)
+   else if (fpt == (int)FP_INFINITE)
    {
-      if(b.compare(ui_type(0)) < 0)
+      if (b.compare(ui_type(0)) < 0)
          return "-inf";
       else
          return ((f & std::ios_base::showpos) == std::ios_base::showpos) ? "+inf" : "inf";
    }
-   else if(fpt == (int)FP_NAN)
+   else if (fpt == (int)FP_NAN)
    {
       return "nan";
    }
@@ -87,7 +87,7 @@ std::string convert_to_string(Backend b, std::streamsize digits, std::ios_base::
       // Start by figuring out the exponent:
       //
       isneg = b.compare(ui_type(0)) < 0;
-      if(isneg)
+      if (isneg)
          b.negate();
       Backend t;
       Backend ten;
@@ -96,14 +96,14 @@ std::string convert_to_string(Backend b, std::streamsize digits, std::ios_base::
       eval_log10(t, b);
       eval_floor(t, t);
       eval_convert_to(&expon, t);
-      if(-expon > std::numeric_limits<number<Backend> >::max_exponent10 - 3)
+      if (-expon > std::numeric_limits<number<Backend> >::max_exponent10 - 3)
       {
-         int e = -expon / 2;
+         int     e = -expon / 2;
          Backend t2;
          eval_pow(t2, ten, e);
          eval_multiply(t, t2, b);
          eval_multiply(t, t2);
-         if(expon & 1)
+         if (expon & 1)
             eval_multiply(t, ten);
       }
       else
@@ -114,12 +114,12 @@ std::string convert_to_string(Backend b, std::streamsize digits, std::ios_base::
       //
       // Make sure we're between [1,10) and adjust if not:
       //
-      if(t.compare(ui_type(1)) < 0)
+      if (t.compare(ui_type(1)) < 0)
       {
          eval_multiply(t, ui_type(10));
          --expon;
       }
-      else if(t.compare(ui_type(10)) >= 0)
+      else if (t.compare(ui_type(10)) >= 0)
       {
          eval_divide(t, ui_type(10));
          ++expon;
@@ -129,14 +129,14 @@ std::string convert_to_string(Backend b, std::streamsize digits, std::ios_base::
       //
       // Adjust the number of digits required based on formatting options:
       //
-      if(((f & std::ios_base::fixed) == std::ios_base::fixed) && (expon != -1))
+      if (((f & std::ios_base::fixed) == std::ios_base::fixed) && (expon != -1))
          digits += expon + 1;
-      if((f & std::ios_base::scientific) == std::ios_base::scientific)
+      if ((f & std::ios_base::scientific) == std::ios_base::scientific)
          ++digits;
       //
       // Extract the digits one at a time:
       //
-      for(unsigned i = 0; i < digits; ++i)
+      for (unsigned i = 0; i < digits; ++i)
       {
          eval_floor(digit, t);
          eval_convert_to(&cdigit, digit);
@@ -147,33 +147,33 @@ std::string convert_to_string(Backend b, std::streamsize digits, std::ios_base::
       //
       // Possibly round result:
       //
-      if(digits >= 0)
+      if (digits >= 0)
       {
          eval_floor(digit, t);
          eval_convert_to(&cdigit, digit);
          eval_subtract(t, digit);
-         if((cdigit == 5) && (t.compare(ui_type(0)) == 0))
+         if ((cdigit == 5) && (t.compare(ui_type(0)) == 0))
          {
             // Bankers rounding:
-            if((*result.rbegin() - '0') & 1)
+            if ((*result.rbegin() - '0') & 1)
             {
                round_string_up_at(result, result.size() - 1, expon);
             }
          }
-         else if(cdigit >= 5)
+         else if (cdigit >= 5)
          {
             round_string_up_at(result, result.size() - 1, expon);
          }
       }
    }
-   while((result.size() > digits) && result.size())
+   while ((result.size() > digits) && result.size())
    {
       // We may get here as a result of rounding...
-      if(result.size() > 1)
+      if (result.size() > 1)
          result.erase(result.size() - 1);
       else
       {
-         if(expon > 0)
+         if (expon > 0)
             --expon; // so we put less padding in the result.
          else
             ++expon;
@@ -181,7 +181,7 @@ std::string convert_to_string(Backend b, std::streamsize digits, std::ios_base::
       }
    }
    BOOST_ASSERT(org_digits >= 0);
-   if(isneg)
+   if (isneg)
       result.insert(static_cast<std::string::size_type>(0), 1, '-');
    format_float_string(result, expon, org_digits, f, iszero);
 
@@ -191,98 +191,100 @@ std::string convert_to_string(Backend b, std::streamsize digits, std::ios_base::
 template <class Backend>
 void convert_from_string(Backend& b, const char* p)
 {
-   using default_ops::eval_multiply;
    using default_ops::eval_add;
-   using default_ops::eval_pow;
    using default_ops::eval_divide;
+   using default_ops::eval_multiply;
+   using default_ops::eval_pow;
 
    typedef typename mpl::front<typename Backend::unsigned_types>::type ui_type;
    b = ui_type(0);
-   if(!p || (*p == 0))
+   if (!p || (*p == 0))
       return;
 
-   bool is_neg = false;
-   bool is_neg_expon = false;
-   static const ui_type ten = ui_type(10);
-   typename Backend::exponent_type expon = 0;
-   int digits_seen = 0;
+   bool                                                  is_neg       = false;
+   bool                                                  is_neg_expon = false;
+   static const ui_type                                  ten          = ui_type(10);
+   typename Backend::exponent_type                       expon        = 0;
+   int                                                   digits_seen  = 0;
    typedef std::numeric_limits<number<Backend, et_off> > limits;
-   static const int max_digits = limits::is_specialized ? limits::max_digits10 + 1 : INT_MAX;
+   static const int                                      max_digits = limits::is_specialized ? limits::max_digits10 + 1 : INT_MAX;
 
-   if(*p == '+') ++p;
-   else if(*p == '-')
+   if (*p == '+')
+      ++p;
+   else if (*p == '-')
    {
       is_neg = true;
       ++p;
    }
-   if((std::strcmp(p, "nan") == 0) || (std::strcmp(p, "NaN") == 0) || (std::strcmp(p, "NAN") == 0))
+   if ((std::strcmp(p, "nan") == 0) || (std::strcmp(p, "NaN") == 0) || (std::strcmp(p, "NAN") == 0))
    {
       eval_divide(b, ui_type(0));
-      if(is_neg)
+      if (is_neg)
          b.negate();
       return;
    }
-   if((std::strcmp(p, "inf") == 0) || (std::strcmp(p, "Inf") == 0) || (std::strcmp(p, "INF") == 0))
+   if ((std::strcmp(p, "inf") == 0) || (std::strcmp(p, "Inf") == 0) || (std::strcmp(p, "INF") == 0))
    {
       b = ui_type(1);
       eval_divide(b, ui_type(0));
-      if(is_neg)
+      if (is_neg)
          b.negate();
       return;
    }
    //
    // Grab all the leading digits before the decimal point:
    //
-   while(std::isdigit(*p))
+   while (std::isdigit(*p))
    {
       eval_multiply(b, ten);
       eval_add(b, ui_type(*p - '0'));
       ++p;
       ++digits_seen;
    }
-   if(*p == '.')
+   if (*p == '.')
    {
       //
       // Grab everything after the point, stop when we've seen
       // enough digits, even if there are actually more available:
       //
       ++p;
-      while(std::isdigit(*p))
+      while (std::isdigit(*p))
       {
          eval_multiply(b, ten);
          eval_add(b, ui_type(*p - '0'));
          ++p;
          --expon;
-         if(++digits_seen > max_digits)
+         if (++digits_seen > max_digits)
             break;
       }
-      while(std::isdigit(*p))
+      while (std::isdigit(*p))
          ++p;
    }
    //
    // Parse the exponent:
    //
-   if((*p == 'e') || (*p == 'E'))
+   if ((*p == 'e') || (*p == 'E'))
    {
       ++p;
-      if(*p == '+') ++p;
-      else if(*p == '-')
+      if (*p == '+')
+         ++p;
+      else if (*p == '-')
       {
          is_neg_expon = true;
          ++p;
       }
       typename Backend::exponent_type e2 = 0;
-      while(std::isdigit(*p))
+      while (std::isdigit(*p))
       {
          e2 *= 10;
          e2 += (*p - '0');
          ++p;
       }
-      if(is_neg_expon)
+      if (is_neg_expon)
          e2 = -e2;
       expon += e2;
    }
-   if(expon)
+   if (expon)
    {
       // Scale by 10^expon, note that 10^expon can be
       // outside the range of our number type, even though the
@@ -290,7 +292,7 @@ void convert_from_string(Backend& b, const char* p)
       // the calculation in two:
       Backend t;
       t = ten;
-      if(expon > limits::min_exponent10 + 2)
+      if (expon > limits::min_exponent10 + 2)
       {
          eval_pow(t, t, expon);
          eval_multiply(b, t);
@@ -304,15 +306,15 @@ void convert_from_string(Backend& b, const char* p)
          eval_multiply(b, t);
       }
    }
-   if(is_neg)
+   if (is_neg)
       b.negate();
-   if(*p)
+   if (*p)
    {
       // Unexpected input in string:
       BOOST_THROW_EXCEPTION(std::runtime_error("Unexpected characters in string being interpreted as a float128."));
    }
 }
 
-}}} // namespaces
+}}} // namespace boost::multiprecision::detail
 
 #endif