mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-04 20:05:51 +00:00
161 lines
3.8 KiB
C++
161 lines
3.8 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of clio: https://github.com/XRPLF/clio
|
|
Copyright (c) 2022, the clio developers.
|
|
|
|
Permission to use, copy, modify, and 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 <data/LedgerCache.h>
|
|
|
|
namespace data {
|
|
|
|
uint32_t
|
|
LedgerCache::latestLedgerSequence() const
|
|
{
|
|
std::shared_lock lck{mtx_};
|
|
return latestSeq_;
|
|
}
|
|
|
|
void
|
|
LedgerCache::update(std::vector<LedgerObject> const& objs, uint32_t seq, bool isBackground)
|
|
{
|
|
if (disabled_)
|
|
return;
|
|
|
|
{
|
|
std::scoped_lock lck{mtx_};
|
|
if (seq > latestSeq_)
|
|
{
|
|
assert(seq == latestSeq_ + 1 || latestSeq_ == 0);
|
|
latestSeq_ = seq;
|
|
}
|
|
for (auto const& obj : objs)
|
|
{
|
|
if (obj.blob.size())
|
|
{
|
|
if (isBackground && deletes_.count(obj.key))
|
|
continue;
|
|
|
|
auto& e = map_[obj.key];
|
|
if (seq > e.seq)
|
|
{
|
|
e = {seq, obj.blob};
|
|
}
|
|
}
|
|
else
|
|
{
|
|
map_.erase(obj.key);
|
|
if (!full_ && !isBackground)
|
|
deletes_.insert(obj.key);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
std::optional<LedgerObject>
|
|
LedgerCache::getSuccessor(ripple::uint256 const& key, uint32_t seq) const
|
|
{
|
|
if (!full_)
|
|
return {};
|
|
std::shared_lock{mtx_};
|
|
successorReqCounter_++;
|
|
if (seq != latestSeq_)
|
|
return {};
|
|
auto e = map_.upper_bound(key);
|
|
if (e == map_.end())
|
|
return {};
|
|
successorHitCounter_++;
|
|
return {{e->first, e->second.blob}};
|
|
}
|
|
|
|
std::optional<LedgerObject>
|
|
LedgerCache::getPredecessor(ripple::uint256 const& key, uint32_t seq) const
|
|
{
|
|
if (!full_)
|
|
return {};
|
|
std::shared_lock lck{mtx_};
|
|
if (seq != latestSeq_)
|
|
return {};
|
|
auto e = map_.lower_bound(key);
|
|
if (e == map_.begin())
|
|
return {};
|
|
--e;
|
|
return {{e->first, e->second.blob}};
|
|
}
|
|
|
|
std::optional<Blob>
|
|
LedgerCache::get(ripple::uint256 const& key, uint32_t seq) const
|
|
{
|
|
std::shared_lock lck{mtx_};
|
|
if (seq > latestSeq_)
|
|
return {};
|
|
objectReqCounter_++;
|
|
auto e = map_.find(key);
|
|
if (e == map_.end())
|
|
return {};
|
|
if (seq < e->second.seq)
|
|
return {};
|
|
objectHitCounter_++;
|
|
return {e->second.blob};
|
|
}
|
|
|
|
void
|
|
LedgerCache::setDisabled()
|
|
{
|
|
disabled_ = true;
|
|
}
|
|
|
|
void
|
|
LedgerCache::setFull()
|
|
{
|
|
if (disabled_)
|
|
return;
|
|
|
|
full_ = true;
|
|
std::scoped_lock lck{mtx_};
|
|
deletes_.clear();
|
|
}
|
|
|
|
bool
|
|
LedgerCache::isFull() const
|
|
{
|
|
return full_;
|
|
}
|
|
|
|
size_t
|
|
LedgerCache::size() const
|
|
{
|
|
std::shared_lock lck{mtx_};
|
|
return map_.size();
|
|
}
|
|
|
|
float
|
|
LedgerCache::getObjectHitRate() const
|
|
{
|
|
if (!objectReqCounter_)
|
|
return 1;
|
|
return ((float)objectHitCounter_) / objectReqCounter_;
|
|
}
|
|
|
|
float
|
|
LedgerCache::getSuccessorHitRate() const
|
|
{
|
|
if (!successorReqCounter_)
|
|
return 1;
|
|
return ((float)successorHitCounter_) / successorReqCounter_;
|
|
}
|
|
|
|
} // namespace data
|