mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
e0b6988a45
* CacheMap::Insert should not update existing item, should return `false` * Use `emplace` operator instead of `[]` to add new items in Cache*Map implementation * Use prefix cm/cmm for CacheMap/CacheMultiMap maps respectively to distinguish them from each other and from std::map-s * Avoid excessive processing of already known valid votes Also prettify debug log output a bit * Drop nCurrentSize from Cache*Map classes Use `size()` and `empty()` of std classes instead, they have constant complexity since c++11 * Do not create an explicit iterator if it's never used later (in Cache*Map) * Do not prune last item in CacheMultiMapInsert when trying to insert a duplicate one
190 lines
3.8 KiB
C++
190 lines
3.8 KiB
C++
// Copyright (c) 2014-2017 The Dash Core developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef CACHEMAP_H_
|
|
#define CACHEMAP_H_
|
|
|
|
#include <map>
|
|
#include <list>
|
|
#include <cstddef>
|
|
|
|
#include "serialize.h"
|
|
|
|
/**
|
|
* Serializable structure for key/value items
|
|
*/
|
|
template<typename K, typename V>
|
|
struct CacheItem
|
|
{
|
|
CacheItem()
|
|
{}
|
|
|
|
CacheItem(const K& keyIn, const V& valueIn)
|
|
: key(keyIn),
|
|
value(valueIn)
|
|
{}
|
|
|
|
K key;
|
|
V value;
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
template <typename Stream, typename Operation>
|
|
inline void SerializationOp(Stream& s, Operation ser_action)
|
|
{
|
|
READWRITE(key);
|
|
READWRITE(value);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Map like container that keeps the N most recently added items
|
|
*/
|
|
template<typename K, typename V, typename Size = uint32_t>
|
|
class CacheMap
|
|
{
|
|
public:
|
|
typedef Size size_type;
|
|
|
|
typedef CacheItem<K,V> item_t;
|
|
|
|
typedef std::list<item_t> list_t;
|
|
|
|
typedef typename list_t::iterator list_it;
|
|
|
|
typedef typename list_t::const_iterator list_cit;
|
|
|
|
typedef std::map<K, list_it> map_t;
|
|
|
|
typedef typename map_t::iterator map_it;
|
|
|
|
typedef typename map_t::const_iterator map_cit;
|
|
|
|
private:
|
|
size_type nMaxSize;
|
|
|
|
list_t listItems;
|
|
|
|
map_t mapIndex;
|
|
|
|
public:
|
|
CacheMap(size_type nMaxSizeIn = 0)
|
|
: nMaxSize(nMaxSizeIn),
|
|
listItems(),
|
|
mapIndex()
|
|
{}
|
|
|
|
CacheMap(const CacheMap<K,V>& other)
|
|
: nMaxSize(other.nMaxSize),
|
|
listItems(other.listItems),
|
|
mapIndex()
|
|
{
|
|
RebuildIndex();
|
|
}
|
|
|
|
void Clear()
|
|
{
|
|
mapIndex.clear();
|
|
listItems.clear();
|
|
}
|
|
|
|
void SetMaxSize(size_type nMaxSizeIn)
|
|
{
|
|
nMaxSize = nMaxSizeIn;
|
|
}
|
|
|
|
size_type GetMaxSize() const {
|
|
return nMaxSize;
|
|
}
|
|
|
|
size_type GetSize() const {
|
|
return listItems.size();
|
|
}
|
|
|
|
bool Insert(const K& key, const V& value)
|
|
{
|
|
if(mapIndex.find(key) != mapIndex.end()) {
|
|
return false;
|
|
}
|
|
if(listItems.size() == nMaxSize) {
|
|
PruneLast();
|
|
}
|
|
listItems.push_front(item_t(key, value));
|
|
mapIndex.emplace(key, listItems.begin());
|
|
return true;
|
|
}
|
|
|
|
bool HasKey(const K& key) const
|
|
{
|
|
return (mapIndex.find(key) != mapIndex.end());
|
|
}
|
|
|
|
bool Get(const K& key, V& value) const
|
|
{
|
|
map_cit it = mapIndex.find(key);
|
|
if(it == mapIndex.end()) {
|
|
return false;
|
|
}
|
|
item_t& item = *(it->second);
|
|
value = item.value;
|
|
return true;
|
|
}
|
|
|
|
void Erase(const K& key)
|
|
{
|
|
map_it it = mapIndex.find(key);
|
|
if(it == mapIndex.end()) {
|
|
return;
|
|
}
|
|
listItems.erase(it->second);
|
|
mapIndex.erase(it);
|
|
}
|
|
|
|
const list_t& GetItemList() const {
|
|
return listItems;
|
|
}
|
|
|
|
CacheMap<K,V>& operator=(const CacheMap<K,V>& other)
|
|
{
|
|
nMaxSize = other.nMaxSize;
|
|
listItems = other.listItems;
|
|
RebuildIndex();
|
|
return *this;
|
|
}
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
template <typename Stream, typename Operation>
|
|
inline void SerializationOp(Stream& s, Operation ser_action)
|
|
{
|
|
READWRITE(nMaxSize);
|
|
READWRITE(listItems);
|
|
if(ser_action.ForRead()) {
|
|
RebuildIndex();
|
|
}
|
|
}
|
|
|
|
private:
|
|
void PruneLast()
|
|
{
|
|
if(listItems.empty()) {
|
|
return;
|
|
}
|
|
item_t& item = listItems.back();
|
|
mapIndex.erase(item.key);
|
|
listItems.pop_back();
|
|
}
|
|
|
|
void RebuildIndex()
|
|
{
|
|
mapIndex.clear();
|
|
for(list_it it = listItems.begin(); it != listItems.end(); ++it) {
|
|
mapIndex.emplace(it->key, it);
|
|
}
|
|
}
|
|
};
|
|
|
|
#endif /* CACHEMAP_H_ */
|