/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

  • Committer: Parth Malwankar
  • Date: 2010-09-17 15:15:34 UTC
  • mto: This revision was merged to the branch mainline in revision 5444.
  • Revision ID: parth.malwankar@gmail.com-20100917151534-587xpe9adve1jhw3
used active_shelves instead of creating a new function for listing shelves

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
""")
50
50
from bzrlib import (
51
51
    bzrdir,
 
52
    btree_index,
52
53
    errors,
53
54
    lockable_files,
54
55
    lockdir,
56
57
    )
57
58
 
58
59
from bzrlib.decorators import needs_write_lock, only_raises
59
 
from bzrlib.btree_index import (
60
 
    BTreeGraphIndex,
61
 
    BTreeBuilder,
62
 
    )
63
60
from bzrlib.index import (
64
61
    GraphIndex,
65
62
    InMemoryGraphIndex,
66
63
    )
 
64
from bzrlib.lock import LogicalLockResult
67
65
from bzrlib.repofmt.knitrepo import KnitRepository
68
66
from bzrlib.repository import (
69
67
    CommitBuilder,
230
228
        unlimited_cache = False
231
229
        if index_type == 'chk':
232
230
            unlimited_cache = True
233
 
        setattr(self, index_type + '_index',
234
 
            self.index_class(self.index_transport,
235
 
                self.index_name(index_type, self.name),
236
 
                self.index_sizes[self.index_offset(index_type)],
237
 
                unlimited_cache=unlimited_cache))
 
231
        index = self.index_class(self.index_transport,
 
232
                    self.index_name(index_type, self.name),
 
233
                    self.index_sizes[self.index_offset(index_type)],
 
234
                    unlimited_cache=unlimited_cache)
 
235
        if index_type == 'chk':
 
236
            index._leaf_factory = btree_index._gcchk_factory
 
237
        setattr(self, index_type + '_index', index)
238
238
 
239
239
 
240
240
class ExistingPack(Pack):
1679
1679
            txt_index = self._make_index(name, '.tix')
1680
1680
            sig_index = self._make_index(name, '.six')
1681
1681
            if self.chk_index is not None:
1682
 
                chk_index = self._make_index(name, '.cix', unlimited_cache=True)
 
1682
                chk_index = self._make_index(name, '.cix', is_chk=True)
1683
1683
            else:
1684
1684
                chk_index = None
1685
1685
            result = ExistingPack(self._pack_transport, name, rev_index,
1705
1705
            sig_index = self._make_index(name, '.six', resume=True)
1706
1706
            if self.chk_index is not None:
1707
1707
                chk_index = self._make_index(name, '.cix', resume=True,
1708
 
                                             unlimited_cache=True)
 
1708
                                             is_chk=True)
1709
1709
            else:
1710
1710
                chk_index = None
1711
1711
            result = self.resumed_pack_factory(name, rev_index, inv_index,
1741
1741
        return self._index_class(self.transport, 'pack-names', None
1742
1742
                ).iter_all_entries()
1743
1743
 
1744
 
    def _make_index(self, name, suffix, resume=False, unlimited_cache=False):
 
1744
    def _make_index(self, name, suffix, resume=False, is_chk=False):
1745
1745
        size_offset = self._suffix_offsets[suffix]
1746
1746
        index_name = name + suffix
1747
1747
        if resume:
1750
1750
        else:
1751
1751
            transport = self._index_transport
1752
1752
            index_size = self._names[name][size_offset]
1753
 
        return self._index_class(transport, index_name, index_size,
1754
 
                                 unlimited_cache=unlimited_cache)
 
1753
        index = self._index_class(transport, index_name, index_size,
 
1754
                                  unlimited_cache=is_chk)
 
1755
        if is_chk and self._index_class is btree_index.BTreeGraphIndex: 
 
1756
            index._leaf_factory = btree_index._gcchk_factory
 
1757
        return index
1755
1758
 
1756
1759
    def _max_pack_count(self, total_revisions):
1757
1760
        """Return the maximum number of packs to use for total revisions.
2341
2344
        return self._write_lock_count
2342
2345
 
2343
2346
    def lock_write(self, token=None):
 
2347
        """Lock the repository for writes.
 
2348
 
 
2349
        :return: A bzrlib.repository.RepositoryWriteLockResult.
 
2350
        """
2344
2351
        locked = self.is_locked()
2345
2352
        if not self._write_lock_count and locked:
2346
2353
            raise errors.ReadOnlyError(self)
2358
2365
        return RepositoryWriteLockResult(self.unlock, None)
2359
2366
 
2360
2367
    def lock_read(self):
 
2368
        """Lock the repository for reads.
 
2369
 
 
2370
        :return: A bzrlib.lock.LogicalLockResult.
 
2371
        """
2361
2372
        locked = self.is_locked()
2362
2373
        if self._write_lock_count:
2363
2374
            self._write_lock_count += 1
2370
2381
            for repo in self._fallback_repositories:
2371
2382
                repo.lock_read()
2372
2383
            self._refresh_data()
2373
 
        return self
 
2384
        return LogicalLockResult(self.unlock)
2374
2385
 
2375
2386
    def leave_lock_in_place(self):
2376
2387
        # not supported - raise an error
2820
2831
    _commit_builder_class = PackCommitBuilder
2821
2832
    supports_external_lookups = True
2822
2833
    # What index classes to use
2823
 
    index_builder_class = BTreeBuilder
2824
 
    index_class = BTreeGraphIndex
 
2834
    index_builder_class = btree_index.BTreeBuilder
 
2835
    index_class = btree_index.BTreeGraphIndex
2825
2836
 
2826
2837
    @property
2827
2838
    def _serializer(self):
2856
2867
    supports_tree_reference = False # no subtrees
2857
2868
    supports_external_lookups = True
2858
2869
    # What index classes to use
2859
 
    index_builder_class = BTreeBuilder
2860
 
    index_class = BTreeGraphIndex
 
2870
    index_builder_class = btree_index.BTreeBuilder
 
2871
    index_class = btree_index.BTreeGraphIndex
2861
2872
 
2862
2873
    @property
2863
2874
    def _serializer(self):
2898
2909
    supports_tree_reference = True
2899
2910
    supports_external_lookups = True
2900
2911
    # What index classes to use
2901
 
    index_builder_class = BTreeBuilder
2902
 
    index_class = BTreeGraphIndex
 
2912
    index_builder_class = btree_index.BTreeBuilder
 
2913
    index_class = btree_index.BTreeGraphIndex
2903
2914
 
2904
2915
    @property
2905
2916
    def _serializer(self):
2907
2918
 
2908
2919
    def _get_matching_bzrdir(self):
2909
2920
        return bzrdir.format_registry.make_bzrdir(
2910
 
            'development-subtree')
 
2921
            'development5-subtree')
2911
2922
 
2912
2923
    def _ignore_setting_bzrdir(self, format):
2913
2924
        pass