mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +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.
124 lines
3.3 KiB
C++
124 lines
3.3 KiB
C++
#ifndef XRPL_LEDGER_RAWSTATETABLE_H_INCLUDED
|
|
#define XRPL_LEDGER_RAWSTATETABLE_H_INCLUDED
|
|
|
|
#include <xrpl/ledger/RawView.h>
|
|
#include <xrpl/ledger/ReadView.h>
|
|
|
|
#include <boost/container/pmr/monotonic_buffer_resource.hpp>
|
|
#include <boost/container/pmr/polymorphic_allocator.hpp>
|
|
|
|
#include <map>
|
|
#include <utility>
|
|
|
|
namespace ripple {
|
|
namespace detail {
|
|
|
|
// Helper class that buffers raw modifications
|
|
class RawStateTable
|
|
{
|
|
public:
|
|
using key_type = ReadView::key_type;
|
|
// Initial size for the monotonic_buffer_resource used for allocations
|
|
// The size was chosen from the old `qalloc` code (which this replaces).
|
|
// It is unclear how the size initially chosen in qalloc.
|
|
static constexpr size_t initialBufferSize = kilobytes(256);
|
|
|
|
RawStateTable()
|
|
: monotonic_resource_{std::make_unique<
|
|
boost::container::pmr::monotonic_buffer_resource>(
|
|
initialBufferSize)}
|
|
, items_{monotonic_resource_.get()} {};
|
|
|
|
RawStateTable(RawStateTable const& rhs)
|
|
: monotonic_resource_{std::make_unique<
|
|
boost::container::pmr::monotonic_buffer_resource>(
|
|
initialBufferSize)}
|
|
, items_{rhs.items_, monotonic_resource_.get()}
|
|
, dropsDestroyed_{rhs.dropsDestroyed_} {};
|
|
|
|
RawStateTable(RawStateTable&&) = default;
|
|
|
|
RawStateTable&
|
|
operator=(RawStateTable&&) = delete;
|
|
RawStateTable&
|
|
operator=(RawStateTable const&) = delete;
|
|
|
|
void
|
|
apply(RawView& to) const;
|
|
|
|
bool
|
|
exists(ReadView const& base, Keylet const& k) const;
|
|
|
|
std::optional<key_type>
|
|
succ(
|
|
ReadView const& base,
|
|
key_type const& key,
|
|
std::optional<key_type> const& last) const;
|
|
|
|
void
|
|
erase(std::shared_ptr<SLE> const& sle);
|
|
|
|
void
|
|
insert(std::shared_ptr<SLE> const& sle);
|
|
|
|
void
|
|
replace(std::shared_ptr<SLE> const& sle);
|
|
|
|
std::shared_ptr<SLE const>
|
|
read(ReadView const& base, Keylet const& k) const;
|
|
|
|
void
|
|
destroyXRP(XRPAmount const& fee);
|
|
|
|
std::unique_ptr<ReadView::sles_type::iter_base>
|
|
slesBegin(ReadView const& base) const;
|
|
|
|
std::unique_ptr<ReadView::sles_type::iter_base>
|
|
slesEnd(ReadView const& base) const;
|
|
|
|
std::unique_ptr<ReadView::sles_type::iter_base>
|
|
slesUpperBound(ReadView const& base, uint256 const& key) const;
|
|
|
|
private:
|
|
enum class Action {
|
|
erase,
|
|
insert,
|
|
replace,
|
|
};
|
|
|
|
class sles_iter_impl;
|
|
|
|
struct sleAction
|
|
{
|
|
Action action;
|
|
std::shared_ptr<SLE> sle;
|
|
|
|
// Constructor needed for emplacement in std::map
|
|
sleAction(Action action_, std::shared_ptr<SLE> const& sle_)
|
|
: action(action_), sle(sle_)
|
|
{
|
|
}
|
|
};
|
|
|
|
// Use boost::pmr functionality instead of the std::pmr
|
|
// functions b/c clang does not support pmr yet (as-of 9/2020)
|
|
using items_t = std::map<
|
|
key_type,
|
|
sleAction,
|
|
std::less<key_type>,
|
|
boost::container::pmr::polymorphic_allocator<
|
|
std::pair<key_type const, sleAction>>>;
|
|
// monotonic_resource_ must outlive `items_`. Make a pointer so it may be
|
|
// easily moved.
|
|
std::unique_ptr<boost::container::pmr::monotonic_buffer_resource>
|
|
monotonic_resource_;
|
|
items_t items_;
|
|
|
|
XRPAmount dropsDestroyed_{0};
|
|
};
|
|
|
|
} // namespace detail
|
|
} // namespace ripple
|
|
|
|
#endif
|