decimal128.hpp 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*************************************************************************
  2. *
  3. * Copyright 2019 Realm Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. **************************************************************************/
  18. #ifndef REALM_DECIMAL_HPP
  19. #define REALM_DECIMAL_HPP
  20. #include <realm/string_data.hpp>
  21. #include <string>
  22. #include <cstring>
  23. #include "null.hpp"
  24. namespace realm {
  25. class Decimal128 {
  26. public:
  27. struct Bid64 {
  28. Bid64(uint64_t x)
  29. : w(x)
  30. {
  31. }
  32. uint64_t w;
  33. };
  34. struct Bid128 {
  35. uint64_t w[2];
  36. };
  37. Decimal128();
  38. explicit Decimal128(int64_t);
  39. explicit Decimal128(uint64_t);
  40. explicit Decimal128(int);
  41. explicit Decimal128(double);
  42. Decimal128(Bid128 coefficient, int exponent, bool sign);
  43. explicit Decimal128(Bid64);
  44. explicit Decimal128(StringData);
  45. explicit Decimal128(Bid128 val)
  46. {
  47. m_value = val;
  48. }
  49. Decimal128(null) noexcept;
  50. static Decimal128 nan(const char*);
  51. static bool is_valid_str(StringData) noexcept;
  52. bool is_null() const;
  53. bool is_nan() const;
  54. bool to_int(int64_t& i) const;
  55. bool operator==(const Decimal128& rhs) const;
  56. bool operator!=(const Decimal128& rhs) const;
  57. bool operator<(const Decimal128& rhs) const;
  58. bool operator>(const Decimal128& rhs) const;
  59. bool operator<=(const Decimal128& rhs) const;
  60. bool operator>=(const Decimal128& rhs) const;
  61. int compare(const Decimal128& rhs) const;
  62. Decimal128 operator*(int64_t mul) const;
  63. Decimal128 operator*(size_t mul) const;
  64. Decimal128 operator*(int mul) const;
  65. Decimal128 operator*(Decimal128 mul) const;
  66. Decimal128& operator*=(Decimal128 mul)
  67. {
  68. return *this = *this * mul;
  69. }
  70. Decimal128 operator/(int64_t div) const;
  71. Decimal128 operator/(size_t div) const;
  72. Decimal128 operator/(int div) const;
  73. Decimal128 operator/(Decimal128 div) const;
  74. Decimal128& operator/=(Decimal128 div)
  75. {
  76. return *this = *this / div;
  77. }
  78. Decimal128& operator+=(Decimal128);
  79. Decimal128 operator+(Decimal128 rhs) const
  80. {
  81. auto ret(*this);
  82. ret += rhs;
  83. return ret;
  84. }
  85. Decimal128& operator-=(Decimal128);
  86. Decimal128 operator-(Decimal128 rhs) const
  87. {
  88. auto ret(*this);
  89. ret -= rhs;
  90. return ret;
  91. }
  92. std::string to_string() const;
  93. Bid64 to_bid64() const;
  94. const Bid128* raw() const
  95. {
  96. return &m_value;
  97. }
  98. Bid128* raw()
  99. {
  100. return &m_value;
  101. }
  102. void unpack(Bid128& coefficient, int& exponent, bool& sign) const noexcept;
  103. private:
  104. Bid128 m_value;
  105. void from_int64_t(int64_t val);
  106. };
  107. inline std::ostream& operator<<(std::ostream& ostr, const Decimal128& id)
  108. {
  109. ostr << id.to_string();
  110. return ostr;
  111. }
  112. } // namespace realm
  113. namespace std {
  114. template <>
  115. struct numeric_limits<realm::Decimal128> {
  116. static constexpr bool is_integer = false;
  117. static realm::Decimal128 lowest() noexcept
  118. {
  119. return realm::Decimal128("-Inf");
  120. }
  121. static realm::Decimal128 max() noexcept
  122. {
  123. return realm::Decimal128("+Inf");
  124. }
  125. };
  126. template <>
  127. struct hash<realm::Decimal128> {
  128. size_t operator()(const realm::Decimal128& d) const noexcept
  129. {
  130. return static_cast<size_t>(d.raw()->w[0] ^ d.raw()->w[1]);
  131. }
  132. };
  133. } // namespace std
  134. #endif /* REALM_DECIMAL_HPP */