~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/weaverepo.py

Merge bzr.dev into cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    lockdir,
40
40
    osutils,
41
41
    revision as _mod_revision,
 
42
    trace,
42
43
    urlutils,
43
44
    versionedfile,
44
45
    weave,
53
54
    RepositoryFormat,
54
55
    )
55
56
from bzrlib.store.text import TextStore
56
 
from bzrlib.trace import mutter
57
57
from bzrlib.tuned_gzip import GzipFile, bytes_to_gzip
58
58
from bzrlib.versionedfile import (
59
59
    AbsentContentFactory,
106
106
    def _all_possible_ids(self):
107
107
        """Return all the possible revisions that we could find."""
108
108
        if 'evil' in debug.debug_flags:
109
 
            mutter_callsite(3, "_all_possible_ids scales with size of history.")
 
109
            trace.mutter_callsite(
 
110
                3, "_all_possible_ids scales with size of history.")
110
111
        return [key[-1] for key in self.inventories.keys()]
111
112
 
112
113
    @needs_read_lock
199
200
    def _all_possible_ids(self):
200
201
        """Return all the possible revisions that we could find."""
201
202
        if 'evil' in debug.debug_flags:
202
 
            mutter_callsite(3, "_all_possible_ids scales with size of history.")
 
203
            trace.mutter_callsite(
 
204
                3, "_all_possible_ids scales with size of history.")
203
205
        return [key[-1] for key in self.inventories.keys()]
204
206
 
205
207
    @needs_read_lock
286
288
        weavefile.write_weave_v5(weave.Weave(), sio)
287
289
        empty_weave = sio.getvalue()
288
290
 
289
 
        mutter('creating repository in %s.', a_bzrdir.transport.base)
 
291
        trace.mutter('creating repository in %s.', a_bzrdir.transport.base)
290
292
 
291
293
        # FIXME: RBC 20060125 don't peek under the covers
292
294
        # NB: no need to escape relative paths that are url safe.
526
528
        weavefile.write_weave_v5(weave.Weave(), sio)
527
529
        empty_weave = sio.getvalue()
528
530
 
529
 
        mutter('creating repository in %s.', a_bzrdir.transport.base)
 
531
        trace.mutter('creating repository in %s.', a_bzrdir.transport.base)
530
532
        dirs = ['revision-store', 'weaves']
531
533
        files = [('inventory.weave', StringIO(empty_weave)),
532
534
                 ]