mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 08:46:46 +00:00
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.
50 lines
1.7 KiB
C++
50 lines
1.7 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012, 2013 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/app/paths/cursor/EffectiveRate.h>
|
|
#include <ripple/basics/contract.h>
|
|
|
|
namespace ripple {
|
|
namespace path {
|
|
|
|
Rate
|
|
effectiveRate(
|
|
Issue const& issue,
|
|
AccountID const& account1,
|
|
AccountID const& account2,
|
|
boost::optional<Rate> const& rate)
|
|
{
|
|
// 1:1 transfer rate for XRP
|
|
if (isXRP (issue))
|
|
return parityRate;
|
|
|
|
if (!rate)
|
|
LogicError ("No transfer rate set for node.");
|
|
|
|
// 1:1 transfer rate if either of the accounts is the issuer
|
|
if (issue.account == account1 || issue.account == account2)
|
|
return parityRate;
|
|
|
|
return rate.get();
|
|
}
|
|
|
|
} // path
|
|
} // ripple
|