mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
55 lines
1.8 KiB
C++
55 lines
1.8 KiB
C++
#ifndef __SERIALIZEDLEDGER__
|
|
#define __SERIALIZEDLEDGER__
|
|
|
|
#include "SerializedObject.h"
|
|
#include "LedgerFormats.h"
|
|
#include "NewcoinAddress.h"
|
|
|
|
class SerializedLedgerEntry : public STObject
|
|
{
|
|
public:
|
|
typedef boost::shared_ptr<SerializedLedgerEntry> pointer;
|
|
typedef const boost::shared_ptr<SerializedLedgerEntry>& ref;
|
|
|
|
protected:
|
|
uint256 mIndex;
|
|
LedgerEntryType mType;
|
|
const LedgerEntryFormat* mFormat;
|
|
|
|
SerializedLedgerEntry* duplicate() const { return new SerializedLedgerEntry(*this); }
|
|
|
|
public:
|
|
SerializedLedgerEntry(const Serializer& s, const uint256& index);
|
|
SerializedLedgerEntry(SerializerIterator& sit, const uint256& index);
|
|
SerializedLedgerEntry(LedgerEntryType type);
|
|
|
|
SerializedTypeID getSType() const { return STI_LEDGERENTRY; }
|
|
std::string getFullText() const;
|
|
std::string getText() const;
|
|
Json::Value getJson(int options) const;
|
|
|
|
const uint256& getIndex() const { return mIndex; }
|
|
void setIndex(const uint256& i) { mIndex = i; }
|
|
|
|
LedgerEntryType getType() const { return mType; }
|
|
uint16 getVersion() const { return getFieldU16(sfLedgerEntryType); }
|
|
const LedgerEntryFormat* 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 (like nickname)
|
|
bool hasTwoOwners(); // This node has two nodes that own it (like ripple balance)
|
|
NewcoinAddress getOwner();
|
|
NewcoinAddress getFirstOwner();
|
|
NewcoinAddress getSecondOwner();
|
|
uint256 getThreadedTransaction();
|
|
uint32 getThreadedLedger();
|
|
bool thread(const uint256& txID, uint32 ledgerSeq, uint256& prevTxID, uint32& prevLedgerID);
|
|
std::vector<uint256> getOwners(); // nodes notified if this node is deleted
|
|
};
|
|
|
|
typedef SerializedLedgerEntry SLE;
|
|
|
|
#endif
|
|
// vim:ts=4
|