mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
111 lines
3.7 KiB
C++
111 lines
3.7 KiB
C++
// Copyright (c) 2012-2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_LIMITEDMAP_H
|
|
#define BITCOIN_LIMITEDMAP_H
|
|
|
|
#include <assert.h>
|
|
#include <algorithm>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
/** STL-like map container that only keeps the N elements with the highest value. */
|
|
// WARNING, this was initially the "limitedmap" class from Bitcoin, but now does not maintain ordering. If any backports
|
|
// ever start using this map in a way that requires ordering, do NOT use this as it is but instead reintroduce the original
|
|
// limitedmap
|
|
template <typename K, typename V, typename Hash = std::hash<K>>
|
|
class unordered_limitedmap
|
|
{
|
|
public:
|
|
typedef K key_type;
|
|
typedef V mapped_type;
|
|
typedef std::pair<const key_type, mapped_type> value_type;
|
|
typedef typename std::unordered_map<K, V, Hash>::const_iterator const_iterator;
|
|
typedef typename std::unordered_map<K, V, Hash>::size_type size_type;
|
|
|
|
protected:
|
|
std::unordered_map<K, V, Hash> map;
|
|
typedef typename std::unordered_map<K, V, Hash>::iterator iterator;
|
|
size_type nMaxSize;
|
|
size_type nPruneAfterSize;
|
|
|
|
public:
|
|
explicit unordered_limitedmap(size_type nMaxSizeIn, size_type nPruneAfterSizeIn = 0)
|
|
{
|
|
assert(nMaxSizeIn > 0);
|
|
nMaxSize = nMaxSizeIn;
|
|
if (nPruneAfterSizeIn == 0) {
|
|
nPruneAfterSize = nMaxSize;
|
|
} else {
|
|
nPruneAfterSize = nPruneAfterSizeIn;
|
|
}
|
|
assert(nPruneAfterSize >= nMaxSize);
|
|
}
|
|
const_iterator begin() const { return map.begin(); }
|
|
const_iterator end() const { return map.end(); }
|
|
size_type size() const { return map.size(); }
|
|
bool empty() const { return map.empty(); }
|
|
const_iterator find(const key_type& k) const { return map.find(k); }
|
|
size_type count(const key_type& k) const { return map.count(k); }
|
|
void insert(const value_type& x)
|
|
{
|
|
std::pair<iterator, bool> ret = map.insert(x);
|
|
if (ret.second)
|
|
prune();
|
|
}
|
|
void erase(const key_type& k)
|
|
{
|
|
map.erase(k);
|
|
}
|
|
void update(const_iterator itIn, const mapped_type& v)
|
|
{
|
|
// Using map::erase() with empty range instead of map::find() to get a non-const iterator,
|
|
// since it is a constant time operation in C++11. For more details, see
|
|
// https://stackoverflow.com/questions/765148/how-to-remove-constness-of-const-iterator
|
|
iterator itTarget = map.erase(itIn, itIn);
|
|
if (itTarget == map.end())
|
|
return;
|
|
itTarget->second = v;
|
|
}
|
|
size_type max_size() const { return nMaxSize; }
|
|
size_type max_size(size_type nMaxSizeIn, size_type nPruneAfterSizeIn = 0)
|
|
{
|
|
assert(nMaxSizeIn > 0);
|
|
nMaxSize = nMaxSizeIn;
|
|
if (nPruneAfterSizeIn == 0) {
|
|
nPruneAfterSize = nMaxSize;
|
|
} else {
|
|
nPruneAfterSize = nPruneAfterSizeIn;
|
|
}
|
|
assert(nPruneAfterSize >= nMaxSize);
|
|
prune();
|
|
return nMaxSize;
|
|
}
|
|
void prune()
|
|
{
|
|
if (map.size() <= nPruneAfterSize) {
|
|
return;
|
|
}
|
|
|
|
std::vector<iterator> sortedIterators;
|
|
sortedIterators.reserve(map.size());
|
|
for (auto it = map.begin(); it != map.end(); ++it) {
|
|
sortedIterators.emplace_back(it);
|
|
}
|
|
std::sort(sortedIterators.begin(), sortedIterators.end(), [](const iterator& it1, const iterator& it2) {
|
|
return it1->second < it2->second;
|
|
});
|
|
|
|
size_type tooMuch = map.size() - nMaxSize;
|
|
assert(tooMuch > 0);
|
|
sortedIterators.resize(tooMuch);
|
|
|
|
for (auto& it : sortedIterators) {
|
|
map.erase(it);
|
|
}
|
|
}
|
|
};
|
|
|
|
#endif // BITCOIN_LIMITEDMAP_H
|