Files
rippled/src/libxrpl/nodestore/backend/MemoryFactory.cpp
Jingchen 8eb233c2ea refactor: Modularize shamap and nodestore (#5668)
This change moves the shamap and nodestore from `xrpld` to `libxrpl`.
2025-10-31 22:25:16 +00:00

252 lines
6.0 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.
*/
//==============================================================================
#include <xrpl/basics/contract.h>
#include <xrpl/nodestore/Factory.h>
#include <xrpl/nodestore/Manager.h>
#include <boost/beast/core/string.hpp>
#include <boost/core/ignore_unused.hpp>
#include <map>
#include <memory>
#include <mutex>
namespace ripple {
namespace NodeStore {
struct MemoryDB
{
explicit MemoryDB() = default;
std::mutex mutex;
bool open = false;
std::map<uint256 const, std::shared_ptr<NodeObject>> table;
};
class MemoryFactory : public Factory
{
private:
std::mutex mutex_;
std::map<std::string, MemoryDB, boost::beast::iless> map_;
Manager& manager_;
public:
explicit MemoryFactory(Manager& manager);
std::string
getName() const override;
std::unique_ptr<Backend>
createInstance(
size_t keyBytes,
Section const& keyValues,
std::size_t burstSize,
Scheduler& scheduler,
beast::Journal journal) override;
MemoryDB&
open(std::string const& path)
{
std::lock_guard _(mutex_);
auto const result = map_.emplace(
std::piecewise_construct, std::make_tuple(path), std::make_tuple());
MemoryDB& db = result.first->second;
if (db.open)
Throw<std::runtime_error>("already open");
return db;
}
};
MemoryFactory* memoryFactory = nullptr;
void
registerMemoryFactory(Manager& manager)
{
static MemoryFactory instance{manager};
memoryFactory = &instance;
}
//------------------------------------------------------------------------------
class MemoryBackend : public Backend
{
private:
using Map = std::map<uint256 const, std::shared_ptr<NodeObject>>;
std::string name_;
beast::Journal const journal_;
MemoryDB* db_{nullptr};
public:
MemoryBackend(
size_t keyBytes,
Section const& keyValues,
beast::Journal journal)
: name_(get(keyValues, "path")), journal_(journal)
{
boost::ignore_unused(journal_); // Keep unused journal_ just in case.
if (name_.empty())
Throw<std::runtime_error>("Missing path in Memory backend");
}
~MemoryBackend() override
{
close();
}
std::string
getName() override
{
return name_;
}
void
open(bool) override
{
db_ = &memoryFactory->open(name_);
}
bool
isOpen() override
{
return static_cast<bool>(db_);
}
void
close() override
{
db_ = nullptr;
}
//--------------------------------------------------------------------------
Status
fetch(void const* key, std::shared_ptr<NodeObject>* pObject) override
{
XRPL_ASSERT(
db_, "ripple::NodeStore::MemoryBackend::fetch : non-null database");
uint256 const hash(uint256::fromVoid(key));
std::lock_guard _(db_->mutex);
Map::iterator iter = db_->table.find(hash);
if (iter == db_->table.end())
{
pObject->reset();
return notFound;
}
*pObject = iter->second;
return ok;
}
std::pair<std::vector<std::shared_ptr<NodeObject>>, Status>
fetchBatch(std::vector<uint256 const*> const& hashes) override
{
std::vector<std::shared_ptr<NodeObject>> results;
results.reserve(hashes.size());
for (auto const& h : hashes)
{
std::shared_ptr<NodeObject> nObj;
Status status = fetch(h->begin(), &nObj);
if (status != ok)
results.push_back({});
else
results.push_back(nObj);
}
return {results, ok};
}
void
store(std::shared_ptr<NodeObject> const& object) override
{
XRPL_ASSERT(
db_, "ripple::NodeStore::MemoryBackend::store : non-null database");
std::lock_guard _(db_->mutex);
db_->table.emplace(object->getHash(), object);
}
void
storeBatch(Batch const& batch) override
{
for (auto const& e : batch)
store(e);
}
void
sync() override
{
}
void
for_each(std::function<void(std::shared_ptr<NodeObject>)> f) override
{
XRPL_ASSERT(
db_,
"ripple::NodeStore::MemoryBackend::for_each : non-null database");
for (auto const& e : db_->table)
f(e.second);
}
int
getWriteLoad() override
{
return 0;
}
void
setDeletePath() override
{
}
int
fdRequired() const override
{
return 0;
}
};
//------------------------------------------------------------------------------
MemoryFactory::MemoryFactory(Manager& manager) : manager_(manager)
{
manager_.insert(*this);
}
std::string
MemoryFactory::getName() const
{
return "Memory";
}
std::unique_ptr<Backend>
MemoryFactory::createInstance(
size_t keyBytes,
Section const& keyValues,
std::size_t,
Scheduler& scheduler,
beast::Journal journal)
{
return std::make_unique<MemoryBackend>(keyBytes, keyValues, journal);
}
} // namespace NodeStore
} // namespace ripple