mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
Per XLS-0095, we are taking steps to rename ripple(d) to xrpl(d). This change specifically removes all copyright notices referencing Ripple, XRPLF, and certain affiliated contributors upon mutual agreement, so the notice in the LICENSE.md file applies throughout. Copyright notices referencing external contributions remain as-is. Duplicate verbiage is also removed.
119 lines
2.2 KiB
C++
119 lines
2.2 KiB
C++
#ifndef XRPL_PROTOCOL_ISSUE_H_INCLUDED
|
|
#define XRPL_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;
|
|
|
|
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
|