mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
198 lines
5.1 KiB
C++
198 lines
5.1 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 <cassert>
|
|
#include <functional>
|
|
#include <type_traits>
|
|
|
|
#include <ripple/protocol/UintTypes.h>
|
|
|
|
namespace ripple {
|
|
|
|
/** A currency issued by an account.
|
|
|
|
When ByValue is `false`, this only stores references, and the caller
|
|
is responsible for managing object lifetime.
|
|
|
|
@see Currency, Account, Issue, IssueRef, Book
|
|
*/
|
|
template <bool ByValue>
|
|
class IssueType
|
|
{
|
|
public:
|
|
typedef typename
|
|
std::conditional <ByValue, Currency, Currency const&>::type
|
|
IssueCurrency;
|
|
|
|
typedef typename
|
|
std::conditional <ByValue, Account, Account const&>::type
|
|
IssueAccount;
|
|
|
|
IssueCurrency currency;
|
|
IssueAccount account;
|
|
|
|
IssueType ()
|
|
{
|
|
}
|
|
|
|
IssueType (Currency const& c, Account const& a)
|
|
: currency (c), account (a)
|
|
{
|
|
}
|
|
|
|
template <bool OtherByValue>
|
|
IssueType (IssueType <OtherByValue> const& other)
|
|
: currency (other.currency)
|
|
, account (other.account)
|
|
{
|
|
}
|
|
|
|
/** Assignment. */
|
|
template <bool MaybeByValue = ByValue, bool OtherByValue>
|
|
std::enable_if_t <MaybeByValue, IssueType&>
|
|
operator= (IssueType <OtherByValue> const& other)
|
|
{
|
|
currency = other.currency;
|
|
account = other.account;
|
|
return *this;
|
|
}
|
|
};
|
|
|
|
template <bool ByValue>
|
|
bool isConsistent(IssueType<ByValue> const& ac)
|
|
{
|
|
return isXRP (ac.currency) == isXRP (ac.account);
|
|
}
|
|
|
|
template <bool ByValue>
|
|
std::string to_string (IssueType<ByValue> const& ac)
|
|
{
|
|
if (isXRP (ac.account))
|
|
return to_string (ac.currency);
|
|
|
|
return to_string(ac.account) + "/" + to_string(ac.currency);
|
|
}
|
|
|
|
template <bool ByValue>
|
|
std::ostream& operator<< (
|
|
std::ostream& os, IssueType<ByValue> const& x)
|
|
{
|
|
os << to_string (x);
|
|
return os;
|
|
}
|
|
|
|
template <bool ByValue, class Hasher>
|
|
void hash_append (Hasher& h, IssueType<ByValue> const& r)
|
|
{
|
|
using beast::hash_append;
|
|
hash_append (h, r.currency, r.account);
|
|
}
|
|
|
|
/** Ordered comparison.
|
|
The assets are ordered first by currency and then by account,
|
|
if the currency is not XRP.
|
|
*/
|
|
template <bool LhsByValue, bool RhsByValue>
|
|
int compare (IssueType <LhsByValue> const& lhs,
|
|
IssueType <RhsByValue> const& rhs)
|
|
{
|
|
int diff = compare (lhs.currency, rhs.currency);
|
|
if (diff != 0)
|
|
return diff;
|
|
if (isXRP (lhs.currency))
|
|
return 0;
|
|
return compare (lhs.account, rhs.account);
|
|
}
|
|
|
|
/** Equality comparison. */
|
|
/** @{ */
|
|
template <bool LhsByValue, bool RhsByValue>
|
|
bool operator== (IssueType <LhsByValue> const& lhs,
|
|
IssueType <RhsByValue> const& rhs)
|
|
{
|
|
return compare (lhs, rhs) == 0;
|
|
}
|
|
|
|
template <bool LhsByValue, bool RhsByValue>
|
|
bool operator!= (IssueType <LhsByValue> const& lhs,
|
|
IssueType <RhsByValue> const& rhs)
|
|
{
|
|
return ! (lhs == rhs);
|
|
}
|
|
/** @} */
|
|
|
|
/** Strict weak ordering. */
|
|
/** @{ */
|
|
template <bool LhsByValue, bool RhsByValue>
|
|
bool operator< (IssueType <LhsByValue> const& lhs,
|
|
IssueType <RhsByValue> const& rhs)
|
|
{
|
|
return compare (lhs, rhs) < 0;
|
|
}
|
|
|
|
template <bool LhsByValue, bool RhsByValue>
|
|
bool operator> (IssueType <LhsByValue> const& lhs,
|
|
IssueType <RhsByValue> const& rhs)
|
|
{
|
|
return rhs < lhs;
|
|
}
|
|
|
|
template <bool LhsByValue, bool RhsByValue>
|
|
bool operator>= (IssueType <LhsByValue> const& lhs,
|
|
IssueType <RhsByValue> const& rhs)
|
|
{
|
|
return ! (lhs < rhs);
|
|
}
|
|
|
|
template <bool LhsByValue, bool RhsByValue>
|
|
bool operator<= (IssueType <LhsByValue> const& lhs,
|
|
IssueType <RhsByValue> const& rhs)
|
|
{
|
|
return ! (rhs < lhs);
|
|
}
|
|
/** @} */
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
typedef IssueType <true> Issue;
|
|
typedef IssueType <false> IssueRef;
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** 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;
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|