mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +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.
65 lines
1.4 KiB
C++
65 lines
1.4 KiB
C++
#ifndef XRPL_SHAMAP_SHAMAPLEAFNODE_H_INCLUDED
|
|
#define XRPL_SHAMAP_SHAMAPLEAFNODE_H_INCLUDED
|
|
|
|
#include <xrpl/shamap/SHAMapItem.h>
|
|
#include <xrpl/shamap/SHAMapTreeNode.h>
|
|
|
|
#include <cstdint>
|
|
|
|
namespace ripple {
|
|
|
|
class SHAMapLeafNode : public SHAMapTreeNode
|
|
{
|
|
protected:
|
|
boost::intrusive_ptr<SHAMapItem const> item_;
|
|
|
|
SHAMapLeafNode(
|
|
boost::intrusive_ptr<SHAMapItem const> item,
|
|
std::uint32_t cowid);
|
|
|
|
SHAMapLeafNode(
|
|
boost::intrusive_ptr<SHAMapItem const> item,
|
|
std::uint32_t cowid,
|
|
SHAMapHash const& hash);
|
|
|
|
public:
|
|
SHAMapLeafNode(SHAMapLeafNode const&) = delete;
|
|
SHAMapLeafNode&
|
|
operator=(SHAMapLeafNode const&) = delete;
|
|
|
|
bool
|
|
isLeaf() const final override
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
isInner() const final override
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void
|
|
invariants(bool is_root = false) const final override;
|
|
|
|
public:
|
|
boost::intrusive_ptr<SHAMapItem const> const&
|
|
peekItem() const;
|
|
|
|
/** Set the item that this node points to and update the node's hash.
|
|
|
|
@param i the new item
|
|
@return false if the change was, effectively, a noop (that is, if the
|
|
hash was unchanged); true otherwise.
|
|
*/
|
|
bool
|
|
setItem(boost::intrusive_ptr<SHAMapItem const> i);
|
|
|
|
std::string
|
|
getString(SHAMapNodeID const&) const final override;
|
|
};
|
|
|
|
} // namespace ripple
|
|
|
|
#endif
|