~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/lru_cache.py

  • Committer: Shannon Weyrick
  • Date: 2011-11-04 13:40:04 UTC
  • mfrom: (6238 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6256.
  • Revision ID: weyrick@mozek.us-20111104134004-033t2wqhc3ydzm0a
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""A simple least-recently-used (LRU) cache."""
18
18
 
19
19
from bzrlib import (
 
20
    symbol_versioning,
20
21
    trace,
21
22
    )
22
23
 
25
26
class _LRUNode(object):
26
27
    """This maintains the linked-list which is the lru internals."""
27
28
 
28
 
    __slots__ = ('prev', 'next_key', 'key', 'value', 'cleanup', 'size')
 
29
    __slots__ = ('prev', 'next_key', 'key', 'value')
29
30
 
30
 
    def __init__(self, key, value, cleanup=None):
 
31
    def __init__(self, key, value):
31
32
        self.prev = None
32
33
        self.next_key = _null_key
33
34
        self.key = key
34
35
        self.value = value
35
 
        self.cleanup = cleanup
36
 
        # TODO: We could compute this 'on-the-fly' like we used to, and remove
37
 
        #       one pointer from this object, we just need to decide if it
38
 
        #       actually costs us much of anything in normal usage
39
 
        self.size = None
40
36
 
41
37
    def __repr__(self):
42
38
        if self.prev is None:
46
42
        return '%s(%r n:%r p:%r)' % (self.__class__.__name__, self.key,
47
43
                                     self.next_key, prev_key)
48
44
 
49
 
    def run_cleanup(self):
50
 
        try:
51
 
            if self.cleanup is not None:
52
 
                self.cleanup(self.key, self.value)
53
 
        finally:
54
 
            # cleanup might raise an exception, but we want to make sure
55
 
            # to break refcycles, etc
56
 
            self.cleanup = None
57
 
            self.value = None
58
 
 
59
45
 
60
46
class LRUCache(object):
61
47
    """A class which manages a cache of entries, removing unused ones."""
105
91
    def __len__(self):
106
92
        return len(self._cache)
107
93
 
108
 
    def _walk_lru(self):
109
 
        """Walk the LRU list, only meant to be used in tests."""
110
 
        node = self._most_recently_used
111
 
        if node is not None:
112
 
            if node.prev is not None:
113
 
                raise AssertionError('the _most_recently_used entry is not'
114
 
                                     ' supposed to have a previous entry'
115
 
                                     ' %s' % (node,))
116
 
        while node is not None:
117
 
            if node.next_key is _null_key:
118
 
                if node is not self._least_recently_used:
119
 
                    raise AssertionError('only the last node should have'
120
 
                                         ' no next value: %s' % (node,))
121
 
                node_next = None
122
 
            else:
123
 
                node_next = self._cache[node.next_key]
124
 
                if node_next.prev is not node:
125
 
                    raise AssertionError('inconsistency found, node.next.prev'
126
 
                                         ' != node: %s' % (node,))
127
 
            if node.prev is None:
128
 
                if node is not self._most_recently_used:
129
 
                    raise AssertionError('only the _most_recently_used should'
130
 
                                         ' not have a previous node: %s'
131
 
                                         % (node,))
132
 
            else:
133
 
                if node.prev.next_key != node.key:
134
 
                    raise AssertionError('inconsistency found, node.prev.next'
135
 
                                         ' != node: %s' % (node,))
136
 
            yield node
137
 
            node = node_next
138
 
 
 
94
    @symbol_versioning.deprecated_method(
 
95
        symbol_versioning.deprecated_in((2, 5, 0)))
139
96
    def add(self, key, value, cleanup=None):
140
 
        """Add a new value to the cache.
141
 
 
142
 
        Also, if the entry is ever removed from the cache, call
143
 
        cleanup(key, value).
144
 
 
145
 
        :param key: The key to store it under
146
 
        :param value: The object to store
147
 
        :param cleanup: None or a function taking (key, value) to indicate
148
 
                        'value' should be cleaned up.
149
 
        """
 
97
        if cleanup is not None:
 
98
            raise ValueError("Per-node cleanup functions no longer supported")
 
99
        return self.__setitem__(key, value)
 
100
 
 
101
    def __setitem__(self, key, value):
 
102
        """Add a new value to the cache"""
150
103
        if key is _null_key:
151
104
            raise ValueError('cannot use _null_key as a key')
152
105
        if key in self._cache:
153
106
            node = self._cache[key]
154
 
            try:
155
 
                node.run_cleanup()
156
 
            finally:
157
 
                # Maintain the LRU properties, even if cleanup raises an
158
 
                # exception
159
 
                node.value = value
160
 
                node.cleanup = cleanup
161
 
                self._record_access(node)
 
107
            node.value = value
 
108
            self._record_access(node)
162
109
        else:
163
 
            node = _LRUNode(key, value, cleanup=cleanup)
 
110
            node = _LRUNode(key, value)
164
111
            self._cache[key] = node
165
112
            self._record_access(node)
166
113
 
190
137
        """
191
138
        return self._cache.keys()
192
139
 
193
 
    def items(self):
194
 
        """Get the key:value pairs as a dict."""
 
140
    def as_dict(self):
 
141
        """Get a new dict with the same key:value pairs as the cache"""
195
142
        return dict((k, n.value) for k, n in self._cache.iteritems())
196
143
 
 
144
    items = symbol_versioning.deprecated_method(
 
145
        symbol_versioning.deprecated_in((2, 5, 0)))(as_dict)
 
146
 
197
147
    def cleanup(self):
198
148
        """Clear the cache until it shrinks to the requested size.
199
149
 
204
154
        while len(self._cache) > self._after_cleanup_count:
205
155
            self._remove_lru()
206
156
 
207
 
    def __setitem__(self, key, value):
208
 
        """Add a value to the cache, there will be no cleanup function."""
209
 
        self.add(key, value, cleanup=None)
210
 
 
211
157
    def _record_access(self, node):
212
158
        """Record that key was accessed."""
213
159
        # Move 'node' to the front of the queue
241
187
        # If we have removed all entries, remove the head pointer as well
242
188
        if self._least_recently_used is None:
243
189
            self._most_recently_used = None
244
 
        try:
245
 
            node.run_cleanup()
246
 
        finally:
247
 
            # cleanup might raise an exception, but we want to make sure to
248
 
            # maintain the linked list
249
 
            if node.prev is not None:
250
 
                node.prev.next_key = node.next_key
251
 
            if node.next_key is not _null_key:
252
 
                node_next = self._cache[node.next_key]
253
 
                node_next.prev = node.prev
254
 
            # And remove this node's pointers
255
 
            node.prev = None
256
 
            node.next_key = _null_key
 
190
        if node.prev is not None:
 
191
            node.prev.next_key = node.next_key
 
192
        if node.next_key is not _null_key:
 
193
            node_next = self._cache[node.next_key]
 
194
            node_next.prev = node.prev
 
195
        # And remove this node's pointers
 
196
        node.prev = None
 
197
        node.next_key = _null_key
257
198
 
258
199
    def _remove_lru(self):
259
200
        """Remove one entry from the lru, and handle consequences.
316
257
        self._update_max_size(max_size, after_cleanup_size=after_cleanup_size)
317
258
        LRUCache.__init__(self, max_cache=max(int(max_size/512), 1))
318
259
 
319
 
    def add(self, key, value, cleanup=None):
320
 
        """Add a new value to the cache.
321
 
 
322
 
        Also, if the entry is ever removed from the cache, call
323
 
        cleanup(key, value).
324
 
 
325
 
        :param key: The key to store it under
326
 
        :param value: The object to store
327
 
        :param cleanup: None or a function taking (key, value) to indicate
328
 
                        'value' should be cleaned up.
329
 
        """
 
260
    def __setitem__(self, key, value):
 
261
        """Add a new value to the cache"""
330
262
        if key is _null_key:
331
263
            raise ValueError('cannot use _null_key as a key')
332
264
        node = self._cache.get(key, None)
341
273
            if node is not None:
342
274
                # We won't be replacing the old node, so just remove it
343
275
                self._remove_node(node)
344
 
            if cleanup is not None:
345
 
                cleanup(key, value)
346
276
            return
347
277
        if node is None:
348
 
            node = _LRUNode(key, value, cleanup=cleanup)
 
278
            node = _LRUNode(key, value)
349
279
            self._cache[key] = node
350
280
        else:
351
 
            self._value_size -= node.size
352
 
        node.size = value_len
 
281
            self._value_size -= self._compute_size(node.value)
353
282
        self._value_size += value_len
354
283
        self._record_access(node)
355
284
 
368
297
            self._remove_lru()
369
298
 
370
299
    def _remove_node(self, node):
371
 
        self._value_size -= node.size
 
300
        self._value_size -= self._compute_size(node.value)
372
301
        LRUCache._remove_node(self, node)
373
302
 
374
303
    def resize(self, max_size, after_cleanup_size=None):