mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 16:56:48 +00:00
This change renames all occurrences of `namespace ripple` and `ripple::` to `namespace xrpl` and `xrpl::`, respectively, as well as the names of test suites. It also provides a script to allow developers to replicate the changes in their local branch or fork to avoid conflicts.
65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
#include <xrpl/basics/TaggedCache.ipp>
|
|
#include <xrpl/ledger/CachedView.h>
|
|
|
|
namespace xrpl {
|
|
namespace detail {
|
|
|
|
bool
|
|
CachedViewImpl::exists(Keylet const& k) const
|
|
{
|
|
return read(k) != nullptr;
|
|
}
|
|
|
|
std::shared_ptr<SLE const>
|
|
CachedViewImpl::read(Keylet const& k) const
|
|
{
|
|
static CountedObjects::Counter hits{"CachedView::hit"};
|
|
static CountedObjects::Counter hitsexpired{"CachedView::hitExpired"};
|
|
static CountedObjects::Counter misses{"CachedView::miss"};
|
|
bool cacheHit = false;
|
|
bool baseRead = false;
|
|
|
|
auto const digest = [&]() -> std::optional<uint256> {
|
|
{
|
|
std::lock_guard lock(mutex_);
|
|
auto const iter = map_.find(k.key);
|
|
if (iter != map_.end())
|
|
{
|
|
cacheHit = true;
|
|
return iter->second;
|
|
}
|
|
}
|
|
return base_.digest(k.key);
|
|
}();
|
|
if (!digest)
|
|
return nullptr;
|
|
auto sle = cache_.fetch(*digest, [&]() {
|
|
baseRead = true;
|
|
return base_.read(k);
|
|
});
|
|
// If the sle is null, then a failure must have occurred in base_.read()
|
|
XRPL_ASSERT(
|
|
sle || baseRead, "xrpl::CachedView::read : null SLE result from base");
|
|
if (cacheHit && baseRead)
|
|
hitsexpired.increment();
|
|
else if (cacheHit)
|
|
hits.increment();
|
|
else
|
|
misses.increment();
|
|
|
|
if (!cacheHit)
|
|
{
|
|
// Avoid acquiring this lock unless necessary. It is only necessary if
|
|
// the key was not found in the map_. The lock is needed to add the key
|
|
// and digest.
|
|
std::lock_guard lock(mutex_);
|
|
map_.emplace(k.key, *digest);
|
|
}
|
|
if (!sle || !k.check(*sle))
|
|
return nullptr;
|
|
return sle;
|
|
}
|
|
|
|
} // namespace detail
|
|
} // namespace xrpl
|