From 8d5f1e04d7e4f24a4026804d62abe64883419bf2 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 3 Apr 2019 15:21:17 -0400 Subject: Remove lumina-calculator and lumina-pdf from the lumina repo. They have their own repos now (https://github.com/lumina-desktop/lumina-[pdf/calculator]) --- src-qt5/desktop-utils/lumina-pdf/lrucache.h | 60 ----------------------------- 1 file changed, 60 deletions(-) delete mode 100644 src-qt5/desktop-utils/lumina-pdf/lrucache.h (limited to 'src-qt5/desktop-utils/lumina-pdf/lrucache.h') diff --git a/src-qt5/desktop-utils/lumina-pdf/lrucache.h b/src-qt5/desktop-utils/lumina-pdf/lrucache.h deleted file mode 100644 index 0ed241c2..00000000 --- a/src-qt5/desktop-utils/lumina-pdf/lrucache.h +++ /dev/null @@ -1,60 +0,0 @@ -#ifndef LUMINA_PDF_LRUCACHE_H -#define LUMINA_PDF_LRUCACHE_H - -#include -#include -#include -#include - -namespace LuminaPDF { -template class LRUCache { -public: - LRUCache() = default; - ~LRUCache() = default; - - void setCacheSize(size_t _max) { - max = _max; - hashmap.reserve(max); - return; - } - - std::optional get(const Key k) { - auto itr = hashmap.find(k); - - if (itr == hashmap.end()) { - return std::nullopt; - } - - Value v = std::get<1>(*std::get<1>(*itr)); - - values.erase(std::get<1>(*itr)); - values.push_front(std::make_tuple(k, v)); - hashmap[k] = values.begin(); - return v; - } - - void push(const Key k, const Value v) { - while (hashmap.size() >= max) { - Key _k = std::get<0>(values.back()); - values.pop_back(); - hashmap.erase(_k); - } - - values.push_front(std::make_tuple(k, v)); - hashmap[k] = values.begin(); - } - - bool contains(const Key k){ - auto itr = hashmap.find(k); - return ( itr!=hashmap.end() ); - } - -private: - size_t max; - std::list> values; - std::unordered_map>::iterator> - hashmap; -}; -} // namespace LuminaPDF - -#endif // LUIMINA_PDF_LRUCACHE_H -- cgit