2024-07-30 11:42:36 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
|
|
// SPDX-License-Identifier: GPL-3.0+
|
2022-07-24 06:45:33 +00:00
|
|
|
|
|
|
|
#pragma once
|
2023-09-17 10:15:47 +00:00
|
|
|
#include "HeterogeneousContainers.h"
|
2022-07-24 06:45:33 +00:00
|
|
|
#include <cstdint>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
template <class K, class V>
|
|
|
|
class LRUCache
|
|
|
|
{
|
|
|
|
using CounterType = std::uint64_t;
|
|
|
|
|
|
|
|
struct Item
|
|
|
|
{
|
|
|
|
V value;
|
|
|
|
CounterType last_access;
|
|
|
|
};
|
|
|
|
|
2023-09-17 10:15:47 +00:00
|
|
|
using MapType = std::conditional_t<std::is_same_v<K, std::string>, StringMap<Item>, std::map<K, Item>>;
|
2022-07-24 06:45:33 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
LRUCache(std::size_t max_capacity = 16, bool manual_evict = false)
|
|
|
|
: m_max_capacity(max_capacity)
|
|
|
|
, m_manual_evict(manual_evict)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
~LRUCache() = default;
|
|
|
|
|
|
|
|
std::size_t GetSize() const { return m_items.size(); }
|
|
|
|
std::size_t GetMaxCapacity() const { return m_max_capacity; }
|
|
|
|
|
|
|
|
void Clear() { m_items.clear(); }
|
|
|
|
|
|
|
|
void SetMaxCapacity(std::size_t capacity)
|
|
|
|
{
|
|
|
|
m_max_capacity = capacity;
|
|
|
|
if (m_items.size() > m_max_capacity)
|
|
|
|
Evict(m_items.size() - m_max_capacity);
|
|
|
|
}
|
|
|
|
|
2023-09-17 10:15:47 +00:00
|
|
|
template <typename KeyT>
|
2022-07-24 06:45:33 +00:00
|
|
|
V* Lookup(const KeyT& key)
|
|
|
|
{
|
|
|
|
auto iter = m_items.find(key);
|
|
|
|
if (iter == m_items.end())
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
iter->second.last_access = ++m_last_counter;
|
|
|
|
return &iter->second.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
V* Insert(K key, V value)
|
|
|
|
{
|
|
|
|
ShrinkForNewItem();
|
|
|
|
|
|
|
|
auto iter = m_items.find(key);
|
|
|
|
if (iter != m_items.end())
|
|
|
|
{
|
|
|
|
iter->second.value = std::move(value);
|
|
|
|
iter->second.last_access = ++m_last_counter;
|
|
|
|
return &iter->second.value;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Item it;
|
|
|
|
it.last_access = ++m_last_counter;
|
|
|
|
it.value = std::move(value);
|
|
|
|
auto ip = m_items.emplace(std::move(key), std::move(it));
|
|
|
|
return &ip.first->second.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Evict(std::size_t count = 1)
|
|
|
|
{
|
2022-09-08 11:20:07 +00:00
|
|
|
while (!m_items.empty() && count > 0)
|
2022-07-24 06:45:33 +00:00
|
|
|
{
|
|
|
|
typename MapType::iterator lowest = m_items.end();
|
|
|
|
for (auto iter = m_items.begin(); iter != m_items.end(); ++iter)
|
|
|
|
{
|
|
|
|
if (lowest == m_items.end() || iter->second.last_access < lowest->second.last_access)
|
|
|
|
lowest = iter;
|
|
|
|
}
|
|
|
|
m_items.erase(lowest);
|
2022-09-08 11:20:07 +00:00
|
|
|
count--;
|
2022-07-24 06:45:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-17 10:15:47 +00:00
|
|
|
template <typename KeyT>
|
2022-07-24 06:45:33 +00:00
|
|
|
bool Remove(const KeyT& key)
|
|
|
|
{
|
|
|
|
auto iter = m_items.find(key);
|
|
|
|
if (iter == m_items.end())
|
|
|
|
return false;
|
|
|
|
m_items.erase(iter);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
void SetManualEvict(bool block)
|
|
|
|
{
|
|
|
|
m_manual_evict = block;
|
|
|
|
if (!m_manual_evict)
|
|
|
|
ManualEvict();
|
|
|
|
}
|
|
|
|
void ManualEvict()
|
|
|
|
{
|
|
|
|
// evict if we went over
|
|
|
|
while (m_items.size() > m_max_capacity)
|
2022-09-08 11:20:07 +00:00
|
|
|
Evict(m_items.size() - m_max_capacity);
|
2022-07-24 06:45:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void ShrinkForNewItem()
|
|
|
|
{
|
|
|
|
if (m_items.size() < m_max_capacity)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Evict(m_items.size() - (m_max_capacity - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
MapType m_items;
|
|
|
|
CounterType m_last_counter = 0;
|
|
|
|
std::size_t m_max_capacity = 0;
|
|
|
|
bool m_manual_evict = false;
|
|
|
|
};
|