mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
* Remove unused members * SerialIter holds only a pointer and offset now * Use free functions for some Serializer members * Use SerialIter in some places instead of Serializer
121 lines
3.7 KiB
C++
121 lines
3.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.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_PROTOCOL_STLEDGERENTRY_H_INCLUDED
|
|
#define RIPPLE_PROTOCOL_STLEDGERENTRY_H_INCLUDED
|
|
|
|
#include <ripple/protocol/LedgerFormats.h>
|
|
#include <ripple/protocol/STObject.h>
|
|
|
|
namespace ripple {
|
|
|
|
class STLedgerEntry final
|
|
: public STObject
|
|
, public CountedObject <STLedgerEntry>
|
|
{
|
|
public:
|
|
static char const* getCountedObjectName () { return "STLedgerEntry"; }
|
|
|
|
typedef std::shared_ptr<STLedgerEntry> pointer;
|
|
typedef const std::shared_ptr<STLedgerEntry>& ref;
|
|
|
|
public:
|
|
STLedgerEntry (const Serializer & s, uint256 const& index);
|
|
STLedgerEntry (SerialIter & sit, uint256 const& index);
|
|
STLedgerEntry (LedgerEntryType type, uint256 const& index);
|
|
STLedgerEntry (const STObject & object, uint256 const& index);
|
|
|
|
SerializedTypeID getSType () const override
|
|
{
|
|
return STI_LEDGERENTRY;
|
|
}
|
|
std::string getFullText () const override;
|
|
std::string getText () const override;
|
|
Json::Value getJson (int options) const override;
|
|
|
|
uint256 const& getIndex () const
|
|
{
|
|
return mIndex;
|
|
}
|
|
void setIndex (uint256 const& i)
|
|
{
|
|
mIndex = i;
|
|
}
|
|
|
|
void setImmutable ()
|
|
{
|
|
mMutable = false;
|
|
}
|
|
bool isMutable ()
|
|
{
|
|
return mMutable;
|
|
}
|
|
STLedgerEntry::pointer getMutable () const;
|
|
|
|
LedgerEntryType getType () const
|
|
{
|
|
return mType;
|
|
}
|
|
std::uint16_t getVersion () const
|
|
{
|
|
return getFieldU16 (sfLedgerEntryType);
|
|
}
|
|
LedgerFormats::Item const* getFormat ()
|
|
{
|
|
return mFormat;
|
|
}
|
|
|
|
bool isThreadedType (); // is this a ledger entry that can be threaded
|
|
bool isThreaded (); // is this ledger entry actually threaded
|
|
bool hasOneOwner (); // This node has one other node that owns it
|
|
bool hasTwoOwners (); // This node has two nodes that own it (like ripple balance)
|
|
RippleAddress getOwner ();
|
|
RippleAddress getFirstOwner ();
|
|
RippleAddress getSecondOwner ();
|
|
uint256 getThreadedTransaction ();
|
|
std::uint32_t getThreadedLedger ();
|
|
bool thread (uint256 const& txID, std::uint32_t ledgerSeq, uint256 & prevTxID,
|
|
std::uint32_t & prevLedgerID);
|
|
std::vector<uint256> getOwners (); // nodes notified if this node is deleted
|
|
|
|
std::unique_ptr<STBase>
|
|
duplicate () const override
|
|
{
|
|
return std::make_unique<STLedgerEntry>(*this);
|
|
}
|
|
|
|
private:
|
|
/** Make STObject comply with the template for this SLE type
|
|
Can throw
|
|
*/
|
|
void setSLEType ();
|
|
|
|
private:
|
|
uint256 mIndex;
|
|
LedgerEntryType mType;
|
|
LedgerFormats::Item const* mFormat;
|
|
bool mMutable;
|
|
};
|
|
|
|
using SLE = STLedgerEntry;
|
|
|
|
} // ripple
|
|
|
|
#endif
|