~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/chk_map.py

  • Committer: Andrew Bennetts
  • Date: 2009-11-25 07:27:43 UTC
  • mto: This revision was merged to the branch mainline in revision 4825.
  • Revision ID: andrew.bennetts@canonical.com-20091125072743-v6sv4m2mkt9iyslp
Terminate SSHSubprocesses when no refs to them are left, in case .close is never called.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008-2011 Canonical Ltd
 
1
# Copyright (C) 2008, 2009 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
38
38
"""
39
39
 
40
40
import heapq
41
 
import threading
42
41
 
43
42
from bzrlib import lazy_import
44
43
lazy_import.lazy_import(globals(), """
45
44
from bzrlib import (
46
45
    errors,
 
46
    versionedfile,
47
47
    )
48
48
""")
49
49
from bzrlib import (
50
 
    errors,
51
50
    lru_cache,
52
51
    osutils,
53
52
    registry,
60
59
# If each line is 50 bytes, and you have 255 internal pages, with 255-way fan
61
60
# out, it takes 3.1MB to cache the layer.
62
61
_PAGE_CACHE_SIZE = 4*1024*1024
63
 
# Per thread caches for 2 reasons:
64
 
# - in the server we may be serving very different content, so we get less
65
 
#   cache thrashing.
66
 
# - we avoid locking on every cache lookup.
67
 
_thread_caches = threading.local()
68
 
# The page cache.
69
 
_thread_caches.page_cache = None
70
 
 
71
 
def _get_cache():
72
 
    """Get the per-thread page cache.
73
 
 
74
 
    We need a function to do this because in a new thread the _thread_caches
75
 
    threading.local object does not have the cache initialized yet.
76
 
    """
77
 
    page_cache = getattr(_thread_caches, 'page_cache', None)
78
 
    if page_cache is None:
79
 
        # We are caching bytes so len(value) is perfectly accurate
80
 
        page_cache = lru_cache.LRUSizeCache(_PAGE_CACHE_SIZE)
81
 
        _thread_caches.page_cache = page_cache
82
 
    return page_cache
83
 
 
 
62
# We are caching bytes so len(value) is perfectly accurate
 
63
_page_cache = lru_cache.LRUSizeCache(_PAGE_CACHE_SIZE)
84
64
 
85
65
def clear_cache():
86
 
    _get_cache().clear()
87
 
 
 
66
    _page_cache.clear()
88
67
 
89
68
# If a ChildNode falls below this many bytes, we check for a remap
90
69
_INTERESTING_NEW_SIZE = 50
91
70
# If a ChildNode shrinks by more than this amount, we check for a remap
92
71
_INTERESTING_SHRINKAGE_LIMIT = 20
 
72
# If we delete more than this many nodes applying a delta, we check for a remap
 
73
_INTERESTING_DELETES_LIMIT = 5
93
74
 
94
75
 
95
76
def _search_key_plain(key):
133
114
            into the map; if old_key is not None, then the old mapping
134
115
            of old_key is removed.
135
116
        """
136
 
        has_deletes = False
 
117
        delete_count = 0
137
118
        # Check preconditions first.
138
119
        as_st = StaticTuple.from_sequence
139
120
        new_items = set([as_st(key) for (old, key, value) in delta
146
127
        for old, new, value in delta:
147
128
            if old is not None and old != new:
148
129
                self.unmap(old, check_remap=False)
149
 
                has_deletes = True
 
130
                delete_count += 1
150
131
        for old, new, value in delta:
151
132
            if new is not None:
152
133
                self.map(new, value)
153
 
        if has_deletes:
 
134
        if delete_count > _INTERESTING_DELETES_LIMIT:
 
135
            trace.mutter("checking remap as %d deletions", delete_count)
154
136
            self._check_remap()
155
137
        return self._save()
156
138
 
179
161
 
180
162
    def _read_bytes(self, key):
181
163
        try:
182
 
            return _get_cache()[key]
 
164
            return _page_cache[key]
183
165
        except KeyError:
184
166
            stream = self._store.get_record_stream([key], 'unordered', True)
185
167
            bytes = stream.next().get_bytes_as('fulltext')
186
 
            _get_cache()[key] = bytes
 
168
            _page_cache[key] = bytes
187
169
            return bytes
188
170
 
189
171
    def _dump_tree(self, include_keys=False):
570
552
        """Check if nodes can be collapsed."""
571
553
        self._ensure_root()
572
554
        if type(self._root_node) is InternalNode:
573
 
            self._root_node = self._root_node._check_remap(self._store)
 
555
            self._root_node._check_remap(self._store)
574
556
 
575
557
    def _save(self):
576
558
        """Save the map completely.
689
671
        the key/value pairs.
690
672
    """
691
673
 
692
 
    __slots__ = ('_common_serialised_prefix',)
 
674
    __slots__ = ('_common_serialised_prefix', '_serialise_key')
693
675
 
694
676
    def __init__(self, search_key_func=None):
695
677
        Node.__init__(self)
696
678
        # All of the keys in this leaf node share this common prefix
697
679
        self._common_serialised_prefix = None
 
680
        self._serialise_key = '\x00'.join
698
681
        if search_key_func is None:
699
682
            self._search_key_func = _search_key_plain
700
683
        else:
884
867
                raise AssertionError('%r must be known' % self._search_prefix)
885
868
            return self._search_prefix, [("", self)]
886
869
 
887
 
    _serialise_key = '\x00'.join
888
 
 
889
870
    def serialise(self, store):
890
871
        """Serialise the LeafNode to store.
891
872
 
920
901
        bytes = ''.join(lines)
921
902
        if len(bytes) != self._current_size():
922
903
            raise AssertionError('Invalid _current_size')
923
 
        _get_cache().add(self._key, bytes)
 
904
        _page_cache.add(self._key, bytes)
924
905
        return [self._key]
925
906
 
926
907
    def refs(self):
1162
1143
            found_keys = set()
1163
1144
            for key in keys:
1164
1145
                try:
1165
 
                    bytes = _get_cache()[key]
 
1146
                    bytes = _page_cache[key]
1166
1147
                except KeyError:
1167
1148
                    continue
1168
1149
                else:
1193
1174
                    prefix, node_key_filter = keys[record.key]
1194
1175
                    node_and_filters.append((node, node_key_filter))
1195
1176
                    self._items[prefix] = node
1196
 
                    _get_cache().add(record.key, bytes)
 
1177
                    _page_cache.add(record.key, bytes)
1197
1178
                for info in node_and_filters:
1198
1179
                    yield info
1199
1180
 
1319
1300
            lines.append(serialised[prefix_len:])
1320
1301
        sha1, _, _ = store.add_lines((None,), (), lines)
1321
1302
        self._key = StaticTuple("sha1:" + sha1,).intern()
1322
 
        _get_cache().add(self._key, ''.join(lines))
 
1303
        _page_cache.add(self._key, ''.join(lines))
1323
1304
        yield self._key
1324
1305
 
1325
1306
    def _search_key(self, key):
1369
1350
        return self._search_prefix
1370
1351
 
1371
1352
    def unmap(self, store, key, check_remap=True):
1372
 
        """Remove key from this node and its children."""
 
1353
        """Remove key from this node and it's children."""
1373
1354
        if not len(self._items):
1374
1355
            raise AssertionError("can't unmap in an empty InternalNode.")
1375
1356
        children = [node for node, _
1508
1489
        self._state = None
1509
1490
 
1510
1491
    def _read_nodes_from_store(self, keys):
1511
 
        # We chose not to use _get_cache(), because we think in
1512
 
        # terms of records to be yielded. Also, we expect to touch each page
1513
 
        # only 1 time during this code. (We may want to evaluate saving the
1514
 
        # raw bytes into the page cache, which would allow a working tree
1515
 
        # update after the fetch to not have to read the bytes again.)
 
1492
        # We chose not to use _page_cache, because we think in terms of records
 
1493
        # to be yielded. Also, we expect to touch each page only 1 time during
 
1494
        # this code. (We may want to evaluate saving the raw bytes into the
 
1495
        # page cache, which would allow a working tree update after the fetch
 
1496
        # to not have to read the bytes again.)
1516
1497
        as_st = StaticTuple.from_sequence
1517
1498
        stream = self._store.get_record_stream(keys, 'unordered', True)
1518
1499
        for record in stream:
1724
1705
 
1725
1706
try:
1726
1707
    from bzrlib._chk_map_pyx import (
1727
 
        _bytes_to_text_key,
1728
1708
        _search_key_16,
1729
1709
        _search_key_255,
1730
1710
        _deserialise_leaf_node,
1733
1713
except ImportError, e:
1734
1714
    osutils.failed_to_load_extension(e)
1735
1715
    from bzrlib._chk_map_py import (
1736
 
        _bytes_to_text_key,
1737
1716
        _search_key_16,
1738
1717
        _search_key_255,
1739
1718
        _deserialise_leaf_node,