mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
- Refactor Number internals away from int64 to uint64 & a sign flag
- ctors and accessors use `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>
89 lines
1.6 KiB
C++
89 lines
1.6 KiB
C++
#ifndef XRPL_PROTOCOL_MPTISSUE_H_INCLUDED
|
|
#define XRPL_PROTOCOL_MPTISSUE_H_INCLUDED
|
|
|
|
#include <xrpl/protocol/AccountID.h>
|
|
#include <xrpl/protocol/UintTypes.h>
|
|
|
|
namespace xrpl {
|
|
|
|
/* Adapt MPTID to provide the same interface as Issue. Enables using static
|
|
* polymorphism by Asset and other classes. MPTID is a 192-bit concatenation
|
|
* of a 32-bit account sequence and a 160-bit account id.
|
|
*/
|
|
class MPTIssue
|
|
{
|
|
private:
|
|
MPTID mptID_;
|
|
|
|
public:
|
|
MPTIssue() = default;
|
|
|
|
explicit MPTIssue(MPTID const& issuanceID);
|
|
|
|
AccountID const&
|
|
getIssuer() const;
|
|
|
|
constexpr MPTID const&
|
|
getMptID() const
|
|
{
|
|
return mptID_;
|
|
}
|
|
|
|
std::string
|
|
getText() const;
|
|
|
|
void
|
|
setJson(Json::Value& jv) const;
|
|
|
|
friend constexpr bool
|
|
operator==(MPTIssue const& lhs, MPTIssue const& rhs);
|
|
|
|
friend constexpr std::weak_ordering
|
|
operator<=>(MPTIssue const& lhs, MPTIssue const& rhs);
|
|
|
|
bool
|
|
native() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
integral() const
|
|
{
|
|
return true;
|
|
}
|
|
};
|
|
|
|
constexpr bool
|
|
operator==(MPTIssue const& lhs, MPTIssue const& rhs)
|
|
{
|
|
return lhs.mptID_ == rhs.mptID_;
|
|
}
|
|
|
|
constexpr std::weak_ordering
|
|
operator<=>(MPTIssue const& lhs, MPTIssue const& rhs)
|
|
{
|
|
return lhs.mptID_ <=> rhs.mptID_;
|
|
}
|
|
|
|
/** MPT is a non-native token.
|
|
*/
|
|
inline bool
|
|
isXRP(MPTID const&)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
Json::Value
|
|
to_json(MPTIssue const& mptIssue);
|
|
|
|
std::string
|
|
to_string(MPTIssue const& mptIssue);
|
|
|
|
MPTIssue
|
|
mptIssueFromJson(Json::Value const& jv);
|
|
|
|
} // namespace xrpl
|
|
|
|
#endif // XRPL_PROTOCOL_MPTISSUE_H_INCLUDED
|