~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitrepo.py

  • Committer: Robert Collins
  • Date: 2009-03-31 00:12:10 UTC
  • mto: This revision was merged to the branch mainline in revision 4219.
  • Revision ID: robertc@robertcollins.net-20090331001210-fufeq2heozx9jne0
Fix Tree.get_symlink_target to decode from the disk encoding to get a unicode encoded string.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 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
24
24
    lockdir,
25
25
    osutils,
26
26
    revision as _mod_revision,
27
 
    trace,
28
27
    transactions,
29
28
    versionedfile,
30
29
    xml5,
43
42
    RepositoryFormat,
44
43
    RootCommitBuilder,
45
44
    )
 
45
from bzrlib.trace import mutter, mutter_callsite
46
46
 
47
47
 
48
48
class _KnitParentsProvider(object):
54
54
        return 'KnitParentsProvider(%r)' % self._knit
55
55
 
56
56
    def get_parent_map(self, keys):
57
 
        """See graph.StackedParentsProvider.get_parent_map"""
 
57
        """See graph._StackedParentsProvider.get_parent_map"""
58
58
        parent_map = {}
59
59
        for revision_id in keys:
60
60
            if revision_id is None:
85
85
        return 'KnitsParentsProvider(%r)' % self._knit
86
86
 
87
87
    def get_parent_map(self, keys):
88
 
        """See graph.StackedParentsProvider.get_parent_map"""
 
88
        """See graph._StackedParentsProvider.get_parent_map"""
89
89
        parent_map = self._knit.get_parent_map(
90
90
            [self._prefix + (key,) for key in keys])
91
91
        result = {}
229
229
    def _make_parents_provider(self):
230
230
        return _KnitsParentsProvider(self.revisions)
231
231
 
232
 
    def _find_inconsistent_revision_parents(self, revisions_iterator=None):
 
232
    def _find_inconsistent_revision_parents(self):
233
233
        """Find revisions with different parent lists in the revision object
234
234
        and in the index graph.
235
235
 
236
 
        :param revisions_iterator: None, or an iterator of (revid,
237
 
            Revision-or-None). This iterator controls the revisions checked.
238
236
        :returns: an iterator yielding tuples of (revison-id, parents-in-index,
239
237
            parents-in-revision).
240
238
        """
241
239
        if not self.is_locked():
242
240
            raise AssertionError()
243
241
        vf = self.revisions
244
 
        if revisions_iterator is None:
245
 
            revisions_iterator = self._iter_revisions(None)
246
 
        for revid, revision in revisions_iterator:
247
 
            if revision is None:
248
 
                pass
249
 
            parent_map = vf.get_parent_map([(revid,)])
 
242
        for index_version in vf.keys():
 
243
            parent_map = vf.get_parent_map([index_version])
250
244
            parents_according_to_index = tuple(parent[-1] for parent in
251
 
                parent_map[(revid,)])
 
245
                parent_map[index_version])
 
246
            revision = self.get_revision(index_version[-1])
252
247
            parents_according_to_revision = tuple(revision.parent_ids)
253
248
            if parents_according_to_index != parents_according_to_revision:
254
 
                yield (revid, parents_according_to_index,
 
249
                yield (index_version[-1], parents_according_to_index,
255
250
                    parents_according_to_revision)
256
251
 
257
252
    def _check_for_inconsistent_revision_parents(self):
296
291
    supports_ghosts = True
297
292
    # External lookups are not supported in this format.
298
293
    supports_external_lookups = False
299
 
    # No CHK support.
300
 
    supports_chks = False
301
294
    _fetch_order = 'topological'
302
295
    _fetch_uses_deltas = True
303
296
    fast_deltas = False
342
335
        :param shared: If true the repository will be initialized as a shared
343
336
                       repository.
344
337
        """
345
 
        trace.mutter('creating repository in %s.', a_bzrdir.transport.base)
 
338
        mutter('creating repository in %s.', a_bzrdir.transport.base)
346
339
        dirs = ['knits']
347
340
        files = []
348
341
        utf8_files = [('format', self.get_format_string())]
360
353
        result.revisions.get_parent_map([('A',)])
361
354
        result.signatures.get_parent_map([('A',)])
362
355
        result.unlock()
363
 
        self._run_post_repo_init_hooks(result, a_bzrdir, shared)
364
356
        return result
365
357
 
366
358
    def open(self, a_bzrdir, _found=False, _override_transport=None):
387
379
        repo.signatures = self._get_signatures(repo_transport, repo)
388
380
        repo.inventories = self._get_inventories(repo_transport, repo)
389
381
        repo.texts = self._get_texts(repo_transport, repo)
390
 
        repo.chk_bytes = None
391
382
        repo._transport = repo_transport
392
383
        return repo
393
384
 
425
416
        """See RepositoryFormat.get_format_description()."""
426
417
        return "Knit repository format 1"
427
418
 
 
419
    def check_conversion_target(self, target_format):
 
420
        pass
 
421
 
428
422
 
429
423
class RepositoryFormatKnit3(RepositoryFormatKnit):
430
424
    """Bzr repository knit format 3.
445
439
    repository_class = KnitRepository
446
440
    _commit_builder_class = RootCommitBuilder
447
441
    rich_root_data = True
448
 
    experimental = True
449
442
    supports_tree_reference = True
450
443
    @property
451
444
    def _serializer(self):
459
452
 
460
453
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
461
454
 
 
455
    def check_conversion_target(self, target_format):
 
456
        if not target_format.rich_root_data:
 
457
            raise errors.BadConversionTarget(
 
458
                'Does not support rich root data.', target_format)
 
459
        if not getattr(target_format, 'supports_tree_reference', False):
 
460
            raise errors.BadConversionTarget(
 
461
                'Does not support nested trees', target_format)
 
462
 
462
463
    def get_format_string(self):
463
464
        """See RepositoryFormat.get_format_string()."""
464
465
        return "Bazaar Knit Repository Format 3 (bzr 0.15)\n"
500
501
 
501
502
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
502
503
 
 
504
    def check_conversion_target(self, target_format):
 
505
        if not target_format.rich_root_data:
 
506
            raise errors.BadConversionTarget(
 
507
                'Does not support rich root data.', target_format)
 
508
 
503
509
    def get_format_string(self):
504
510
        """See RepositoryFormat.get_format_string()."""
505
511
        return 'Bazaar Knit Repository Format 4 (bzr 1.0)\n'