veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
poprewards_bigdecimal.hpp
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef ALT_INTEGRATION_INCLUDE_VERIBLOCK_REWARDS_POPREWARDS_BIGDECIMAL_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_REWARDS_POPREWARDS_BIGDECIMAL_HPP_
8
9#include <vector>
10#include <veriblock/pop/arith_uint256.hpp>
11
12namespace altintegration {
13
15struct PopRewardsBigDecimal {
16 static const uint32_t decimals = 100000000;
17 ArithUint256 value = 0;
18
19 PopRewardsBigDecimal() = default;
20
21 PopRewardsBigDecimal(uint64_t b) : value(ArithUint256(b) * decimals) {}
22 PopRewardsBigDecimal(const ArithUint256& b) : value(b * decimals) {}
23 PopRewardsBigDecimal(double b) : value((uint64_t)(b * decimals)) {}
24
25 std::string toPrettyString() const {
26 auto decimalFraction = getDecimalDoubleFraction();
27 double outValue = (double)getIntegerFraction() + decimalFraction;
28 return format("BigDecimal{{{}}}", outValue);
29 }
30
31 PopRewardsBigDecimal& operator+=(const PopRewardsBigDecimal& b) {
32 value += b.value;
33 return *this;
34 }
35
36 PopRewardsBigDecimal& operator-=(const PopRewardsBigDecimal& b) {
37 value -= b.value;
38 return *this;
39 }
40
41 PopRewardsBigDecimal& operator*=(const PopRewardsBigDecimal& b) {
42 value *= b.value;
43 value /= decimals;
44 return *this;
45 }
46
47 PopRewardsBigDecimal& operator/=(const PopRewardsBigDecimal& b) {
48 value *= decimals;
49 value /= b.value;
50 return *this;
51 }
52
53 uint64_t getIntegerFraction() const { return (value / decimals).getLow64(); }
54 uint64_t getDecimalFraction() const {
55 ArithUint256 integerFraction = getIntegerFraction();
56 integerFraction *= decimals;
57 return (value - integerFraction).getLow64();
58 }
59
60 double getDecimalDoubleFraction() const {
61 auto temp = (double)getDecimalFraction();
62 return temp / decimals;
63 }
64
65 friend inline const PopRewardsBigDecimal operator+(
66 const PopRewardsBigDecimal& a, const PopRewardsBigDecimal& b) {
67 return PopRewardsBigDecimal(a) += b;
68 }
69 friend inline const PopRewardsBigDecimal operator-(
70 const PopRewardsBigDecimal& a, const PopRewardsBigDecimal& b) {
71 return PopRewardsBigDecimal(a) -= b;
72 }
73 friend inline const PopRewardsBigDecimal operator*(
74 const PopRewardsBigDecimal& a, const PopRewardsBigDecimal& b) {
75 return PopRewardsBigDecimal(a) *= b;
76 }
77 friend inline const PopRewardsBigDecimal operator/(
78 const PopRewardsBigDecimal& a, const PopRewardsBigDecimal& b) {
79 return PopRewardsBigDecimal(a) /= b;
80 }
81 friend inline bool operator>(const PopRewardsBigDecimal& a,
82 const PopRewardsBigDecimal& b) {
83 return a.value.compareTo(b.value) > 0;
84 }
85 friend inline bool operator<(const PopRewardsBigDecimal& a,
86 const PopRewardsBigDecimal& b) {
87 return a.value.compareTo(b.value) < 0;
88 }
89 friend inline bool operator>=(const PopRewardsBigDecimal& a,
90 const PopRewardsBigDecimal& b) {
91 return a.value.compareTo(b.value) >= 0;
92 }
93 friend inline bool operator<=(const PopRewardsBigDecimal& a,
94 const PopRewardsBigDecimal& b) {
95 return a.value.compareTo(b.value) <= 0;
96 }
97 friend inline bool operator==(const PopRewardsBigDecimal& a,
98 const PopRewardsBigDecimal& b) {
99 return a.value.compareTo(b.value) == 0;
100 }
101};
102
103} // namespace altintegration
104
105#endif // ALT_INTEGRATION_INCLUDE_VERIBLOCK_REWARDS_POPREWARDS_BIGDECIMAL_HPP_
Defines logging helpers.
Definition: block.hpp:14