Files
xahaud/src/ripple/protocol/impl/Rate2.cpp
Nik Bougalis a698104c55 Use Rate to represent transfer rates (RIPD-201, RIPD-983):
The Ripple protocol represent transfer rates and trust line
qualities as fractions of one billion. For example, a transfer
rate of 1% is represented as 1010000000.

Previously, such rates where represented either as std::uint32_t
or std::uint64_t. Other, nominally related types, also used an
integral representation and could be unintentionally substituted.

The new Rate class addresses this by providing a simple, type
safe alternative which also helps make the code self-documenting
since arithmetic operations now can be clearly understood to
involve the scaling of an amount by a rate.
2016-06-28 14:53:46 -04:00

146 lines
3.0 KiB
C++

//------------------------------------------------------------------------------
/*
This file is part of rippled: https://github.com/ripple/rippled
Copyright (c) 2015 Ripple Labs Inc.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
//==============================================================================
#include <BeastConfig.h>
#include <ripple/protocol/Quality.h>
#include <ripple/protocol/Rate.h>
namespace ripple {
Rate const parityRate (QUALITY_ONE);
namespace detail {
STAmount as_amount (Rate const& rate)
{
return { noIssue(), rate.value, -9, false };
}
}
STAmount
multiply (
STAmount const& amount,
Rate const& rate)
{
assert (rate.value != 0);
if (rate == parityRate)
return amount;
return multiply (
amount,
detail::as_amount(rate),
amount.issue());
}
STAmount
multiplyRound (
STAmount const& amount,
Rate const& rate,
bool roundUp)
{
assert (rate.value != 0);
if (rate == parityRate)
return amount;
return mulRound (
amount,
detail::as_amount(rate),
amount.issue(),
roundUp);
}
STAmount
multiplyRound (
STAmount const& amount,
Rate const& rate,
Issue const& issue,
bool roundUp)
{
assert (rate.value != 0);
if (rate == parityRate)
{
return amount;
}
return mulRound (
amount,
detail::as_amount(rate),
issue,
roundUp);
}
STAmount
divide (
STAmount const& amount,
Rate const& rate)
{
assert (rate.value != 0);
if (rate == parityRate)
return amount;
return divide (
amount,
detail::as_amount(rate),
amount.issue());
}
STAmount
divideRound (
STAmount const& amount,
Rate const& rate,
bool roundUp)
{
assert (rate.value != 0);
if (rate == parityRate)
return amount;
return divRound (
amount,
detail::as_amount(rate),
amount.issue(),
roundUp);
}
STAmount
divideRound (
STAmount const& amount,
Rate const& rate,
Issue const& issue,
bool roundUp)
{
assert (rate.value != 0);
if (rate == parityRate)
return amount;
return divRound (
amount,
detail::as_amount(rate),
issue,
roundUp);
}
}