forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpl_mem_cache.h
315 lines (297 loc) · 7.74 KB
/
cpl_mem_cache.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
/*
* LRUCache11 - a templated C++11 based LRU cache class that allows
* specification of
* key, value and optionally the map container type (defaults to
* std::unordered_map)
* By using the std::map and a linked list of keys it allows O(1) insert, delete
* and
* refresh operations.
*
* This is a header-only library and all you need is the LRUCache11.hpp file
*
* Github: https://github.com/mohaps/lrucache11
*
* This is a follow-up to the LRUCache project -
* https://github.com/mohaps/lrucache
*
* Copyright (c) 2012-22 SAURAV MOHAPATRA <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*! @cond Doxygen_Suppress */
#pragma once
#include <algorithm>
#include <cstdint>
#include <list>
#include <mutex>
#include <stdexcept>
#include <thread>
#include <unordered_map>
namespace lru11
{
/*
* a noop lockable concept that can be used in place of std::mutex
*/
class NullLock
{
public:
void lock()
{
}
void unlock()
{
}
bool try_lock()
{
return true;
}
};
/**
* error raised when a key not in cache is passed to get()
*/
class KeyNotFound : public std::invalid_argument
{
public:
KeyNotFound() : std::invalid_argument("key_not_found")
{
}
};
template <typename K, typename V> struct KeyValuePair
{
public:
K key;
V value;
KeyValuePair(const K &k, const V &v) : key(k), value(v)
{
}
KeyValuePair(const K &k, V &&v) : key(k), value(std::move(v))
{
}
};
/**
* The LRU Cache class templated by
* Key - key type
* Value - value type
* MapType - an associative container like std::unordered_map
* LockType - a lock type derived from the Lock class (default:
*NullLock = no synchronization)
*
* The default NullLock based template is not thread-safe, however passing
*Lock=std::mutex will make it
* thread-safe
*/
template <class Key, class Value, class Lock = NullLock,
class Map = std::unordered_map<
Key, typename std::list<KeyValuePair<Key, Value>>::iterator>>
class Cache
{
public:
typedef KeyValuePair<Key, Value> node_type;
typedef std::list<KeyValuePair<Key, Value>> list_type;
typedef Map map_type;
typedef Lock lock_type;
using Guard = std::lock_guard<lock_type>;
/**
* the max size is the hard limit of keys and (maxSize + elasticity) is the
* soft limit
* the cache is allowed to grow till maxSize + elasticity and is pruned back
* to maxSize keys
* set maxSize = 0 for an unbounded cache (but in that case, you're better
* off using a std::unordered_map directly anyway! :)
*/
explicit Cache(size_t maxSize = 64, size_t elasticity = 10)
: maxSize_(maxSize), elasticity_(elasticity)
{
}
virtual ~Cache() = default;
size_t size() const
{
Guard g(lock_);
return cache_.size();
}
bool empty() const
{
Guard g(lock_);
return cache_.empty();
}
void clear()
{
Guard g(lock_);
cache_.clear();
keys_.clear();
}
void insert(const Key &k, const Value &v)
{
Guard g(lock_);
const auto iter = cache_.find(k);
if (iter != cache_.end())
{
iter->second->value = v;
keys_.splice(keys_.begin(), keys_, iter->second);
return;
}
keys_.emplace_front(k, v);
cache_[k] = keys_.begin();
prune();
}
Value &insert(const Key &k, Value &&v)
{
Guard g(lock_);
const auto iter = cache_.find(k);
if (iter != cache_.end())
{
iter->second->value = std::move(v);
keys_.splice(keys_.begin(), keys_, iter->second);
return keys_.front().value;
}
keys_.emplace_front(k, std::move(v));
cache_[k] = keys_.begin();
prune();
return keys_.front().value;
}
bool tryGet(const Key &kIn, Value &vOut)
{
Guard g(lock_);
const auto iter = cache_.find(kIn);
if (iter == cache_.end())
{
return false;
}
keys_.splice(keys_.begin(), keys_, iter->second);
vOut = iter->second->value;
return true;
}
/**
* The const reference returned here is only
* guaranteed to be valid till the next insert/delete
*/
const Value &get(const Key &k)
{
Guard g(lock_);
const auto iter = cache_.find(k);
if (iter == cache_.end())
{
throw KeyNotFound();
}
keys_.splice(keys_.begin(), keys_, iter->second);
return iter->second->value;
}
Value *getPtr(const Key &k)
{
Guard g(lock_);
const auto iter = cache_.find(k);
if (iter == cache_.end())
{
return nullptr;
}
keys_.splice(keys_.begin(), keys_, iter->second);
return &(iter->second->value);
}
/**
* returns a copy of the stored object (if found)
*/
Value getCopy(const Key &k)
{
return get(k);
}
bool remove(const Key &k)
{
Guard g(lock_);
auto iter = cache_.find(k);
if (iter == cache_.end())
{
return false;
}
keys_.erase(iter->second);
cache_.erase(iter);
return true;
}
bool contains(const Key &k)
{
Guard g(lock_);
return cache_.find(k) != cache_.end();
}
bool getOldestEntry(Key &kOut, Value &vOut)
{
Guard g(lock_);
if (keys_.empty())
{
return false;
}
kOut = keys_.back().key;
vOut = keys_.back().value;
return true;
}
bool removeAndRecycleOldestEntry(Value &vOut)
{
Guard g(lock_);
if (keys_.empty())
{
return false;
}
vOut = std::move(keys_.back().value);
cache_.erase(keys_.back().key);
keys_.pop_back();
return true;
}
size_t getMaxSize() const
{
return maxSize_;
}
size_t getElasticity() const
{
return elasticity_;
}
size_t getMaxAllowedSize() const
{
return maxSize_ + elasticity_;
}
template <typename F> void cwalk(F &f) const
{
Guard g(lock_);
std::for_each(keys_.begin(), keys_.end(), f);
}
Cache(Cache &&other)
: cache_(std::move(other.cache_)), keys_(std::move(other.keys_)),
maxSize_(other.maxSize_), elasticity_(other.elasticity_)
{
}
protected:
size_t prune()
{
size_t maxAllowed = maxSize_ + elasticity_;
if (maxSize_ == 0 || cache_.size() <= maxAllowed)
{ /* ERO: changed < to <= */
return 0;
}
size_t count = 0;
while (cache_.size() > maxSize_)
{
cache_.erase(keys_.back().key);
keys_.pop_back();
++count;
}
return count;
}
private:
// Disallow copying.
Cache(const Cache &) = delete;
Cache &operator=(const Cache &) = delete;
mutable Lock lock_{};
Map cache_{};
list_type keys_{};
size_t maxSize_;
size_t elasticity_;
};
} // namespace lru11
/*! @endcond */