#pragma once #ifndef MESSMER_BLOCKSTORE_IMPLEMENTATIONS_CACHING_CACHE_H_ #define MESSMER_BLOCKSTORE_IMPLEMENTATIONS_CACHING_CACHE_H_ #include "CacheEntry.h" #include "QueueMap.h" #include "PeriodicTask.h" #include #include #include namespace blockstore { namespace caching { template class Cache { public: static constexpr uint32_t MAX_ENTRIES = 1000; //TODO Experiment with good values static constexpr double PURGE_LIFETIME_SEC = 0.5; //When an entry has this age, it will be purged from the cache static constexpr double PURGE_INTERVAL = 0.5; // With this interval, we check for entries to purge static constexpr double MAX_LIFETIME_SEC = PURGE_LIFETIME_SEC + PURGE_INTERVAL; // This is the oldest age an entry can reach (given purging works in an ideal world, i.e. with the ideal interval and in zero time) Cache(); virtual ~Cache(); void push(const Key &key, Value value); boost::optional pop(const Key &key); private: void _popOldEntries(); mutable std::mutex _mutex; QueueMap> _cachedBlocks; std::unique_ptr _timeoutFlusher; }; template constexpr uint32_t Cache::MAX_ENTRIES; template constexpr double Cache::PURGE_LIFETIME_SEC; template constexpr double Cache::PURGE_INTERVAL; template constexpr double Cache::MAX_LIFETIME_SEC; template Cache::Cache(): _cachedBlocks(), _timeoutFlusher(nullptr) { //Don't initialize timeoutFlusher in the initializer list, //because it then might already call Cache::popOldEntries() before Cache is done constructing _timeoutFlusher = std::make_unique(std::bind(&Cache::_popOldEntries, this), PURGE_INTERVAL); } template Cache::~Cache() { } template boost::optional Cache::pop(const Key &key) { std::lock_guard lock(_mutex); auto found = _cachedBlocks.pop(key); if (!found) { return boost::none; } return found->releaseValue(); } template void Cache::push(const Key &key, Value value) { std::lock_guard lock(_mutex); assert(_cachedBlocks.size() <= MAX_ENTRIES); if (_cachedBlocks.size() == MAX_ENTRIES) { _cachedBlocks.pop(); assert(_cachedBlocks.size() == MAX_ENTRIES-1); } _cachedBlocks.push(key, CacheEntry(std::move(value))); } template void Cache::_popOldEntries() { std::lock_guard lock(_mutex); while(_cachedBlocks.size() > 0 && _cachedBlocks.peek()->ageSeconds() > PURGE_LIFETIME_SEC) { _cachedBlocks.pop(); } } } } #endif