mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
145 lines
2.9 KiB
C++
145 lines
2.9 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 <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);
|
|
}
|
|
|
|
}
|