mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-08 16:02:27 +00:00
- Refactor Number internals away from int64 to uint64 & a sign flag
- ctors and accessors return `rep`. Very few things expose
`internalrep`.
- An exception is "unchecked" and the new "normalized", which explicitly
take an internalrep. But with those special control flags, it's easier
to distinguish and control when they are used.
- For now, skip the larger mantissas in AMM transactions and tests
- Remove trailing zeros from scientific notation Number strings
- Update tests. This has the happy side effect of making some of the string
representations _more_ consistent between the small and large
mantissa ranges.
- Add semi-automatic rounding of STNumbers based on Asset types
- Create a new SField metadata enum, sMD_NeedsAsset, which indicates
the field should be associated with an Asset so it can be rounded.
- Add a new STTakesAsset intermediate class to handle the Asset
association to a derived ST class. Currently only used in STNumber,
but could be used by other types in the future.
- Add "associateAsset" which takes an SLE and an Asset, finds the
sMD_NeedsAsset fields, and associates the Asset to them. In the case
of STNumber, that both stores the Asset, and rounds the value
immediately.
- Transactors only need to add a call to associateAsset _after_ all of
the STNumbers have been set. Unfortunately, the inner workings of
STObject do not do the association correctly with uninitialized
fields.
- When serializing an STNumber that has an Asset, round it before
serializing.
- Add an override of roundToAsset, which rounds a Number value in place
to an Asset, but without any additional scale.
- Update and fix a bunch of Loan-related tests to accommodate the
expanded Number class.
---------
Co-authored-by: Vito <5780819+Tapanito@users.noreply.github.com>
Co-authored-by: Shawn Xie <35279399+shawnxie999@users.noreply.github.com>
141 lines
3.3 KiB
C++
141 lines
3.3 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.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_PROTOCOL_ISSUE_H_INCLUDED
|
|
#define RIPPLE_PROTOCOL_ISSUE_H_INCLUDED
|
|
|
|
#include <xrpl/beast/utility/instrumentation.h>
|
|
#include <xrpl/json/json_value.h>
|
|
#include <xrpl/protocol/UintTypes.h>
|
|
|
|
namespace ripple {
|
|
|
|
/** A currency issued by an account.
|
|
@see Currency, AccountID, Issue, Book
|
|
*/
|
|
class Issue
|
|
{
|
|
public:
|
|
Currency currency{};
|
|
AccountID account{};
|
|
|
|
Issue() = default;
|
|
|
|
Issue(Currency const& c, AccountID const& a) : currency(c), account(a)
|
|
{
|
|
}
|
|
|
|
AccountID const&
|
|
getIssuer() const
|
|
{
|
|
return account;
|
|
}
|
|
|
|
std::string
|
|
getText() const;
|
|
|
|
void
|
|
setJson(Json::Value& jv) const;
|
|
|
|
bool
|
|
native() const;
|
|
|
|
bool
|
|
integral() const;
|
|
|
|
friend constexpr std::weak_ordering
|
|
operator<=>(Issue const& lhs, Issue const& rhs);
|
|
};
|
|
|
|
bool
|
|
isConsistent(Issue const& ac);
|
|
|
|
std::string
|
|
to_string(Issue const& ac);
|
|
|
|
Json::Value
|
|
to_json(Issue const& is);
|
|
|
|
Issue
|
|
issueFromJson(Json::Value const& v);
|
|
|
|
std::ostream&
|
|
operator<<(std::ostream& os, Issue const& x);
|
|
|
|
template <class Hasher>
|
|
void
|
|
hash_append(Hasher& h, Issue const& r)
|
|
{
|
|
using beast::hash_append;
|
|
hash_append(h, r.currency, r.account);
|
|
}
|
|
|
|
/** Equality comparison. */
|
|
/** @{ */
|
|
[[nodiscard]] inline constexpr bool
|
|
operator==(Issue const& lhs, Issue const& rhs)
|
|
{
|
|
return (lhs.currency == rhs.currency) &&
|
|
(isXRP(lhs.currency) || lhs.account == rhs.account);
|
|
}
|
|
/** @} */
|
|
|
|
/** Strict weak ordering. */
|
|
/** @{ */
|
|
[[nodiscard]] constexpr std::weak_ordering
|
|
operator<=>(Issue const& lhs, Issue const& rhs)
|
|
{
|
|
if (auto const c{lhs.currency <=> rhs.currency}; c != 0)
|
|
return c;
|
|
|
|
if (isXRP(lhs.currency))
|
|
return std::weak_ordering::equivalent;
|
|
|
|
return (lhs.account <=> rhs.account);
|
|
}
|
|
/** @} */
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** Returns an asset specifier that represents XRP. */
|
|
inline Issue const&
|
|
xrpIssue()
|
|
{
|
|
static Issue issue{xrpCurrency(), xrpAccount()};
|
|
return issue;
|
|
}
|
|
|
|
/** Returns an asset specifier that represents no account and currency. */
|
|
inline Issue const&
|
|
noIssue()
|
|
{
|
|
static Issue issue{noCurrency(), noAccount()};
|
|
return issue;
|
|
}
|
|
|
|
inline bool
|
|
isXRP(Issue const& issue)
|
|
{
|
|
return issue.native();
|
|
}
|
|
|
|
} // namespace ripple
|
|
|
|
#endif
|