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
|
# Copyright (C) 2006, 2008, 2009 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""A simple least-recently-used (LRU) cache."""
from bzrlib import (
symbol_versioning,
trace,
)
_null_key = object()
class _LRUNode(object):
"""This maintains the linked-list which is the lru internals."""
__slots__ = ('prev', 'next_key', 'key', 'value')
def __init__(self, key, value):
self.prev = None
self.next_key = _null_key
self.key = key
self.value = value
def __repr__(self):
if self.prev is None:
prev_key = None
else:
prev_key = self.prev.key
return '%s(%r n:%r p:%r)' % (self.__class__.__name__, self.key,
self.next_key, prev_key)
class LRUCache(object):
"""A class which manages a cache of entries, removing unused ones."""
def __init__(self, max_cache=100, after_cleanup_count=None):
self._cache = {}
# The "HEAD" of the lru linked list
self._most_recently_used = None
# The "TAIL" of the lru linked list
self._least_recently_used = None
self._update_max_cache(max_cache, after_cleanup_count)
def __contains__(self, key):
return key in self._cache
def __getitem__(self, key):
cache = self._cache
node = cache[key]
# Inlined from _record_access to decrease the overhead of __getitem__
# We also have more knowledge about structure if __getitem__ is
# succeeding, then we know that self._most_recently_used must not be
# None, etc.
mru = self._most_recently_used
if node is mru:
# Nothing to do, this node is already at the head of the queue
return node.value
# Remove this node from the old location
node_prev = node.prev
next_key = node.next_key
# benchmarking shows that the lookup of _null_key in globals is faster
# than the attribute lookup for (node is self._least_recently_used)
if next_key is _null_key:
# 'node' is the _least_recently_used, because it doesn't have a
# 'next' item. So move the current lru to the previous node.
self._least_recently_used = node_prev
else:
node_next = cache[next_key]
node_next.prev = node_prev
node_prev.next_key = next_key
# Insert this node at the front of the list
node.next_key = mru.key
mru.prev = node
self._most_recently_used = node
node.prev = None
return node.value
def __len__(self):
return len(self._cache)
@symbol_versioning.deprecated_method(
symbol_versioning.deprecated_in((2, 5, 0)))
def add(self, key, value, cleanup=None):
if cleanup is not None:
raise ValueError("Per-node cleanup functions no longer supported")
return self.__setitem__(key, value)
def __setitem__(self, key, value):
"""Add a new value to the cache"""
if key is _null_key:
raise ValueError('cannot use _null_key as a key')
if key in self._cache:
node = self._cache[key]
node.value = value
self._record_access(node)
else:
node = _LRUNode(key, value)
self._cache[key] = node
self._record_access(node)
if len(self._cache) > self._max_cache:
# Trigger the cleanup
self.cleanup()
def cache_size(self):
"""Get the number of entries we will cache."""
return self._max_cache
def get(self, key, default=None):
node = self._cache.get(key, None)
if node is None:
return default
self._record_access(node)
return node.value
def keys(self):
"""Get the list of keys currently cached.
Note that values returned here may not be available by the time you
request them later. This is simply meant as a peak into the current
state.
:return: An unordered list of keys that are currently cached.
"""
return self._cache.keys()
def as_dict(self):
"""Get a new dict with the same key:value pairs as the cache"""
return dict((k, n.value) for k, n in self._cache.iteritems())
items = symbol_versioning.deprecated_method(
symbol_versioning.deprecated_in((2, 5, 0)))(as_dict)
def cleanup(self):
"""Clear the cache until it shrinks to the requested size.
This does not completely wipe the cache, just makes sure it is under
the after_cleanup_count.
"""
# Make sure the cache is shrunk to the correct size
while len(self._cache) > self._after_cleanup_count:
self._remove_lru()
def _record_access(self, node):
"""Record that key was accessed."""
# Move 'node' to the front of the queue
if self._most_recently_used is None:
self._most_recently_used = node
self._least_recently_used = node
return
elif node is self._most_recently_used:
# Nothing to do, this node is already at the head of the queue
return
# We've taken care of the tail pointer, remove the node, and insert it
# at the front
# REMOVE
if node is self._least_recently_used:
self._least_recently_used = node.prev
if node.prev is not None:
node.prev.next_key = node.next_key
if node.next_key is not _null_key:
node_next = self._cache[node.next_key]
node_next.prev = node.prev
# INSERT
node.next_key = self._most_recently_used.key
self._most_recently_used.prev = node
self._most_recently_used = node
node.prev = None
def _remove_node(self, node):
if node is self._least_recently_used:
self._least_recently_used = node.prev
self._cache.pop(node.key)
# If we have removed all entries, remove the head pointer as well
if self._least_recently_used is None:
self._most_recently_used = None
if node.prev is not None:
node.prev.next_key = node.next_key
if node.next_key is not _null_key:
node_next = self._cache[node.next_key]
node_next.prev = node.prev
# And remove this node's pointers
node.prev = None
node.next_key = _null_key
def _remove_lru(self):
"""Remove one entry from the lru, and handle consequences.
If there are no more references to the lru, then this entry should be
removed from the cache.
"""
self._remove_node(self._least_recently_used)
def clear(self):
"""Clear out all of the cache."""
# Clean up in LRU order
while self._cache:
self._remove_lru()
def resize(self, max_cache, after_cleanup_count=None):
"""Change the number of entries that will be cached."""
self._update_max_cache(max_cache,
after_cleanup_count=after_cleanup_count)
def _update_max_cache(self, max_cache, after_cleanup_count=None):
self._max_cache = max_cache
if after_cleanup_count is None:
self._after_cleanup_count = self._max_cache * 8 / 10
else:
self._after_cleanup_count = min(after_cleanup_count,
self._max_cache)
self.cleanup()
class LRUSizeCache(LRUCache):
"""An LRUCache that removes things based on the size of the values.
This differs in that it doesn't care how many actual items there are,
it just restricts the cache to be cleaned up after so much data is stored.
The size of items added will be computed using compute_size(value), which
defaults to len() if not supplied.
"""
def __init__(self, max_size=1024*1024, after_cleanup_size=None,
compute_size=None):
"""Create a new LRUSizeCache.
:param max_size: The max number of bytes to store before we start
clearing out entries.
:param after_cleanup_size: After cleaning up, shrink everything to this
size.
:param compute_size: A function to compute the size of the values. We
use a function here, so that you can pass 'len' if you are just
using simple strings, or a more complex function if you are using
something like a list of strings, or even a custom object.
The function should take the form "compute_size(value) => integer".
If not supplied, it defaults to 'len()'
"""
self._value_size = 0
self._compute_size = compute_size
if compute_size is None:
self._compute_size = len
self._update_max_size(max_size, after_cleanup_size=after_cleanup_size)
LRUCache.__init__(self, max_cache=max(int(max_size/512), 1))
def __setitem__(self, key, value):
"""Add a new value to the cache"""
if key is _null_key:
raise ValueError('cannot use _null_key as a key')
node = self._cache.get(key, None)
value_len = self._compute_size(value)
if value_len >= self._after_cleanup_size:
# The new value is 'too big to fit', as it would fill up/overflow
# the cache all by itself
trace.mutter('Adding the key %r to an LRUSizeCache failed.'
' value %d is too big to fit in a the cache'
' with size %d %d', key, value_len,
self._after_cleanup_size, self._max_size)
if node is not None:
# We won't be replacing the old node, so just remove it
self._remove_node(node)
return
if node is None:
node = _LRUNode(key, value)
self._cache[key] = node
else:
self._value_size -= self._compute_size(node.value)
self._value_size += value_len
self._record_access(node)
if self._value_size > self._max_size:
# Time to cleanup
self.cleanup()
def cleanup(self):
"""Clear the cache until it shrinks to the requested size.
This does not completely wipe the cache, just makes sure it is under
the after_cleanup_size.
"""
# Make sure the cache is shrunk to the correct size
while self._value_size > self._after_cleanup_size:
self._remove_lru()
def _remove_node(self, node):
self._value_size -= self._compute_size(node.value)
LRUCache._remove_node(self, node)
def resize(self, max_size, after_cleanup_size=None):
"""Change the number of bytes that will be cached."""
self._update_max_size(max_size, after_cleanup_size=after_cleanup_size)
max_cache = max(int(max_size/512), 1)
self._update_max_cache(max_cache)
def _update_max_size(self, max_size, after_cleanup_size=None):
self._max_size = max_size
if after_cleanup_size is None:
self._after_cleanup_size = self._max_size * 8 / 10
else:
self._after_cleanup_size = min(after_cleanup_size, self._max_size)
|