mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
81 lines
1.8 KiB
C++
81 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include <xrpl/nodestore/Scheduler.h>
|
|
#include <xrpl/nodestore/Task.h>
|
|
#include <xrpl/nodestore/Types.h>
|
|
|
|
#include <condition_variable>
|
|
#include <mutex>
|
|
|
|
namespace xrpl {
|
|
namespace NodeStore {
|
|
|
|
/** Batch-writing assist logic.
|
|
|
|
The batch writes are performed with a scheduled task. Use of the
|
|
class it not required. A backend can implement its own write batching,
|
|
or skip write batching if doing so yields a performance benefit.
|
|
|
|
@see Scheduler
|
|
*/
|
|
class BatchWriter : private Task
|
|
{
|
|
public:
|
|
/** This callback does the actual writing. */
|
|
struct Callback
|
|
{
|
|
virtual ~Callback() = default;
|
|
Callback() = default;
|
|
Callback(Callback const&) = delete;
|
|
Callback&
|
|
operator=(Callback const&) = delete;
|
|
|
|
virtual void
|
|
writeBatch(Batch const& batch) = 0;
|
|
};
|
|
|
|
/** Create a batch writer. */
|
|
BatchWriter(Callback& callback, Scheduler& scheduler);
|
|
|
|
/** Destroy a batch writer.
|
|
|
|
Anything pending in the batch is written out before this returns.
|
|
*/
|
|
~BatchWriter();
|
|
|
|
/** Store the object.
|
|
|
|
This will add to the batch and initiate a scheduled task to
|
|
write the batch out.
|
|
*/
|
|
void
|
|
store(std::shared_ptr<NodeObject> const& object);
|
|
|
|
/** Get an estimate of the amount of writing I/O pending. */
|
|
int
|
|
getWriteLoad();
|
|
|
|
private:
|
|
void
|
|
performScheduledTask() override;
|
|
void
|
|
writeBatch();
|
|
void
|
|
waitForWriting();
|
|
|
|
private:
|
|
using LockType = std::recursive_mutex;
|
|
using CondvarType = std::condition_variable_any;
|
|
|
|
Callback& m_callback;
|
|
Scheduler& m_scheduler;
|
|
LockType mWriteMutex;
|
|
CondvarType mWriteCondition;
|
|
int mWriteLoad;
|
|
bool mWritePending;
|
|
Batch mWriteSet;
|
|
};
|
|
|
|
} // namespace NodeStore
|
|
} // namespace xrpl
|