2014-10-23 02:05:11 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2015-12-13 17:58:29 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-10-23 02:05:11 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
#include "amount.h"
|
|
|
|
|
|
|
|
|
|
#include "tinyformat.h"
|
|
|
|
|
|
2015-08-01 20:15:23 +01:00
|
|
|
const std::string CURRENCY_UNIT = "BTC";
|
|
|
|
|
|
2016-04-03 13:44:01 +02:00
|
|
|
CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nBytes_)
|
2014-10-23 02:05:11 +02:00
|
|
|
{
|
2016-04-03 13:44:01 +02:00
|
|
|
assert(nBytes_ <= uint64_t(std::numeric_limits<int64_t>::max()));
|
|
|
|
|
int64_t nSize = int64_t(nBytes_);
|
|
|
|
|
|
2014-10-23 02:05:11 +02:00
|
|
|
if (nSize > 0)
|
2016-04-03 13:44:01 +02:00
|
|
|
nSatoshisPerK = nFeePaid * 1000 / nSize;
|
2014-10-23 02:05:11 +02:00
|
|
|
else
|
|
|
|
|
nSatoshisPerK = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-03 13:44:01 +02:00
|
|
|
CAmount CFeeRate::GetFee(size_t nBytes_) const
|
2014-10-23 02:05:11 +02:00
|
|
|
{
|
2016-04-03 13:44:01 +02:00
|
|
|
assert(nBytes_ <= uint64_t(std::numeric_limits<int64_t>::max()));
|
|
|
|
|
int64_t nSize = int64_t(nBytes_);
|
|
|
|
|
|
2016-03-09 12:54:55 +01:00
|
|
|
CAmount nFee = nSatoshisPerK * nSize / 1000;
|
2014-10-23 02:05:11 +02:00
|
|
|
|
2016-04-03 13:44:01 +02:00
|
|
|
if (nFee == 0 && nSize != 0) {
|
|
|
|
|
if (nSatoshisPerK > 0)
|
|
|
|
|
nFee = CAmount(1);
|
|
|
|
|
if (nSatoshisPerK < 0)
|
|
|
|
|
nFee = CAmount(-1);
|
|
|
|
|
}
|
2014-10-23 02:05:11 +02:00
|
|
|
|
|
|
|
|
return nFee;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string CFeeRate::ToString() const
|
|
|
|
|
{
|
2015-08-01 20:15:23 +01:00
|
|
|
return strprintf("%d.%08d %s/kB", nSatoshisPerK / COIN, nSatoshisPerK % COIN, CURRENCY_UNIT);
|
2014-10-23 02:05:11 +02:00
|
|
|
}
|
2016-12-14 10:54:47 -05:00
|
|
|
|
|
|
|
|
CAmountMap& operator+=(CAmountMap& a, const CAmountMap& b)
|
|
|
|
|
{
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = b.begin(); it != b.end(); ++it)
|
2016-12-14 10:54:47 -05:00
|
|
|
a[it->first] += it->second;
|
|
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CAmountMap& operator-=(CAmountMap& a, const CAmountMap& b)
|
|
|
|
|
{
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = b.begin(); it != b.end(); ++it)
|
2016-12-14 10:54:47 -05:00
|
|
|
a[it->first] -= it->second;
|
|
|
|
|
return a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CAmountMap operator+(const CAmountMap& a, const CAmountMap& b)
|
|
|
|
|
{
|
|
|
|
|
CAmountMap c;
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = a.begin(); it != a.end(); ++it)
|
2016-12-14 10:54:47 -05:00
|
|
|
c[it->first] += it->second;
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = b.begin(); it != b.end(); ++it)
|
2016-12-14 10:54:47 -05:00
|
|
|
c[it->first] += it->second;
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CAmountMap operator-(const CAmountMap& a, const CAmountMap& b)
|
|
|
|
|
{
|
|
|
|
|
CAmountMap c;
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = a.begin(); it != a.end(); ++it)
|
2016-12-14 10:54:47 -05:00
|
|
|
c[it->first] += it->second;
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = b.begin(); it != b.end(); ++it)
|
2016-12-14 10:54:47 -05:00
|
|
|
c[it->first] -= it->second;
|
|
|
|
|
return c;
|
|
|
|
|
}
|
2016-12-14 11:03:48 -05:00
|
|
|
|
|
|
|
|
bool operator<(const CAmountMap& a, const CAmountMap& b)
|
|
|
|
|
{
|
|
|
|
|
bool smallerElement = false;
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = b.begin(); it != b.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
CAmount aValue = a.count(it->first) ? a.find(it->first)->second : 0;
|
|
|
|
|
if (aValue > it->second)
|
|
|
|
|
return false;
|
|
|
|
|
if (aValue < it->second)
|
|
|
|
|
smallerElement = true;
|
|
|
|
|
}
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = a.begin(); it != a.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
CAmount bValue = b.count(it->first) ? b.find(it->first)->second : 0;
|
|
|
|
|
if (it->second > bValue)
|
|
|
|
|
return false;
|
|
|
|
|
if (it->second < bValue)
|
|
|
|
|
smallerElement = true;
|
|
|
|
|
}
|
|
|
|
|
return smallerElement;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator<=(const CAmountMap& a, const CAmountMap& b)
|
|
|
|
|
{
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = b.begin(); it != b.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
CAmount aValue = a.count(it->first) ? a.find(it->first)->second : 0;
|
|
|
|
|
if (aValue > it->second)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = a.begin(); it != a.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
CAmount bValue = b.count(it->first) ? b.find(it->first)->second : 0;
|
|
|
|
|
if (it->second > bValue)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator>(const CAmountMap& a, const CAmountMap& b)
|
|
|
|
|
{
|
|
|
|
|
bool largerElement = false;
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = b.begin(); it != b.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
CAmount aValue = a.count(it->first) ? a.find(it->first)->second : 0;
|
|
|
|
|
if (aValue < it->second)
|
|
|
|
|
return false;
|
|
|
|
|
if (aValue > it->second)
|
|
|
|
|
largerElement = true;
|
|
|
|
|
}
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = a.begin(); it != a.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
CAmount bValue = b.count(it->first) ? b.find(it->first)->second : 0;
|
|
|
|
|
if (it->second < bValue)
|
|
|
|
|
return false;
|
|
|
|
|
if (it->second > bValue)
|
|
|
|
|
largerElement = true;
|
|
|
|
|
}
|
|
|
|
|
return largerElement;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator>=(const CAmountMap& a, const CAmountMap& b)
|
|
|
|
|
{
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = b.begin(); it != b.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
if ((a.count(it->first) ? a.find(it->first)->second : 0) < it->second)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = a.begin(); it != a.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
if (it->second < (b.count(it->first) ? b.find(it->first)->second : 0))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator==(const CAmountMap& a, const CAmountMap& b)
|
|
|
|
|
{
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = a.begin(); it != a.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
if ((b.count(it->first) ? b.find(it->first)->second : 0) != it->second)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = b.begin(); it != b.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
if ((a.count(it->first) ? a.find(it->first)->second : 0) != it->second)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator!=(const CAmountMap& a, const CAmountMap& b)
|
|
|
|
|
{
|
|
|
|
|
return !(a == b);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool hasNegativeValue(const CAmountMap& amount)
|
|
|
|
|
{
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = amount.begin(); it != amount.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
if (it->second < 0)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool hasNonPostiveValue(const CAmountMap& amount)
|
|
|
|
|
{
|
2017-03-04 14:56:18 -08:00
|
|
|
for(std::map<CAsset, CAmount>::const_iterator it = amount.begin(); it != amount.end(); ++it) {
|
2016-12-14 11:03:48 -05:00
|
|
|
if (it->second <= 0)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|