~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitrepo.py

  • Committer: John Arbash Meinel
  • Date: 2010-08-24 19:21:32 UTC
  • mto: This revision was merged to the branch mainline in revision 5390.
  • Revision ID: john@arbash-meinel.com-20100824192132-2ktt5adkbk5bk1ct
Handle test_source and extensions. Also define an 'extern' protocol, to allow
the test suite to recognize that returning an object of that type is a Python object.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2007-2010 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,
27
28
    transactions,
28
29
    versionedfile,
29
30
    xml5,
37
38
from bzrlib.decorators import needs_read_lock, needs_write_lock
38
39
from bzrlib.repository import (
39
40
    CommitBuilder,
 
41
    IsInWriteGroupError,
40
42
    MetaDirRepository,
41
43
    MetaDirRepositoryFormat,
42
44
    RepositoryFormat,
43
45
    RootCommitBuilder,
44
46
    )
45
 
from bzrlib.trace import mutter, mutter_callsite
46
47
 
47
48
 
48
49
class _KnitParentsProvider(object):
210
211
    def _refresh_data(self):
211
212
        if not self.is_locked():
212
213
            return
 
214
        if self.is_in_write_group():
 
215
            raise IsInWriteGroupError(self)
213
216
        # Create a new transaction to force all knits to see the scope change.
214
217
        # This is safe because we're outside a write group.
215
218
        self.control_files._finish_transaction()
342
345
        :param shared: If true the repository will be initialized as a shared
343
346
                       repository.
344
347
        """
345
 
        mutter('creating repository in %s.', a_bzrdir.transport.base)
 
348
        trace.mutter('creating repository in %s.', a_bzrdir.transport.base)
346
349
        dirs = ['knits']
347
350
        files = []
348
351
        utf8_files = [('format', self.get_format_string())]
360
363
        result.revisions.get_parent_map([('A',)])
361
364
        result.signatures.get_parent_map([('A',)])
362
365
        result.unlock()
 
366
        self._run_post_repo_init_hooks(result, a_bzrdir, shared)
363
367
        return result
364
368
 
365
369
    def open(self, a_bzrdir, _found=False, _override_transport=None):
424
428
        """See RepositoryFormat.get_format_description()."""
425
429
        return "Knit repository format 1"
426
430
 
427
 
    def check_conversion_target(self, target_format):
428
 
        pass
429
 
 
430
431
 
431
432
class RepositoryFormatKnit3(RepositoryFormatKnit):
432
433
    """Bzr repository knit format 3.
447
448
    repository_class = KnitRepository
448
449
    _commit_builder_class = RootCommitBuilder
449
450
    rich_root_data = True
 
451
    experimental = True
450
452
    supports_tree_reference = True
451
453
    @property
452
454
    def _serializer(self):
460
462
 
461
463
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
462
464
 
463
 
    def check_conversion_target(self, target_format):
464
 
        if not target_format.rich_root_data:
465
 
            raise errors.BadConversionTarget(
466
 
                'Does not support rich root data.', target_format)
467
 
        if not getattr(target_format, 'supports_tree_reference', False):
468
 
            raise errors.BadConversionTarget(
469
 
                'Does not support nested trees', target_format)
470
 
 
471
465
    def get_format_string(self):
472
466
        """See RepositoryFormat.get_format_string()."""
473
467
        return "Bazaar Knit Repository Format 3 (bzr 0.15)\n"
509
503
 
510
504
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
511
505
 
512
 
    def check_conversion_target(self, target_format):
513
 
        if not target_format.rich_root_data:
514
 
            raise errors.BadConversionTarget(
515
 
                'Does not support rich root data.', target_format)
516
 
 
517
506
    def get_format_string(self):
518
507
        """See RepositoryFormat.get_format_string()."""
519
508
        return 'Bazaar Knit Repository Format 4 (bzr 1.0)\n'