~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Jelmer Vernooij
  • Date: 2010-08-28 11:19:49 UTC
  • mto: This revision was merged to the branch mainline in revision 5418.
  • Revision ID: jelmer@samba.org-20100828111949-6ke9opiop2oomr4f
Move get_config to ControlDir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2011 Canonical Ltd
 
1
# Copyright (C) 2006-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
25
25
objects returned.
26
26
"""
27
27
 
 
28
# TODO: Move old formats into a plugin to make this file smaller.
 
29
 
 
30
import os
28
31
import sys
 
32
import warnings
29
33
 
30
34
from bzrlib.lazy_import import lazy_import
31
35
lazy_import(globals(), """
 
36
from stat import S_ISDIR
 
37
 
32
38
import bzrlib
33
39
from bzrlib import (
34
 
    branch as _mod_branch,
35
 
    cleanup,
 
40
    branch,
36
41
    config,
37
42
    controldir,
38
43
    errors,
39
 
    fetch,
40
44
    graph,
41
45
    lockable_files,
42
46
    lockdir,
43
47
    osutils,
44
 
    pyutils,
45
48
    remote,
46
49
    repository,
47
50
    revision as _mod_revision,
48
 
    transport as _mod_transport,
49
51
    ui,
50
52
    urlutils,
 
53
    versionedfile,
51
54
    win32utils,
52
55
    workingtree,
53
56
    workingtree_4,
54
 
    )
55
 
from bzrlib.repofmt import knitpack_repo
 
57
    xml4,
 
58
    xml5,
 
59
    )
 
60
from bzrlib.osutils import (
 
61
    sha_string,
 
62
    )
 
63
from bzrlib.push import (
 
64
    PushResult,
 
65
    )
 
66
from bzrlib.repofmt import pack_repo
 
67
from bzrlib.smart.client import _SmartClient
 
68
from bzrlib.store.versioned import WeaveStore
 
69
from bzrlib.transactions import WriteTransaction
56
70
from bzrlib.transport import (
57
71
    do_catching_redirections,
 
72
    get_transport,
58
73
    local,
59
74
    )
 
75
from bzrlib.weave import Weave
60
76
""")
61
77
 
62
78
from bzrlib.trace import (
63
79
    mutter,
64
80
    note,
 
81
    warning,
65
82
    )
66
83
 
67
84
from bzrlib import (
68
85
    hooks,
69
86
    registry,
70
 
    )
71
 
from bzrlib.symbol_versioning import (
72
 
    deprecated_in,
73
 
    deprecated_method,
 
87
    symbol_versioning,
74
88
    )
75
89
 
76
90
 
123
137
            # No repo, no problem.
124
138
            pass
125
139
 
 
140
    @staticmethod
 
141
    def _check_supported(format, allow_unsupported,
 
142
        recommend_upgrade=True,
 
143
        basedir=None):
 
144
        """Give an error or warning on old formats.
 
145
 
 
146
        :param format: may be any kind of format - workingtree, branch,
 
147
        or repository.
 
148
 
 
149
        :param allow_unsupported: If true, allow opening
 
150
        formats that are strongly deprecated, and which may
 
151
        have limited functionality.
 
152
 
 
153
        :param recommend_upgrade: If true (default), warn
 
154
        the user through the ui object that they may wish
 
155
        to upgrade the object.
 
156
        """
 
157
        # TODO: perhaps move this into a base Format class; it's not BzrDir
 
158
        # specific. mbp 20070323
 
159
        if not allow_unsupported and not format.is_supported():
 
160
            # see open_downlevel to open legacy branches.
 
161
            raise errors.UnsupportedFormatError(format=format)
 
162
        if recommend_upgrade \
 
163
            and getattr(format, 'upgrade_recommended', False):
 
164
            ui.ui_factory.recommend_upgrade(
 
165
                format.get_format_description(),
 
166
                basedir)
 
167
 
 
168
    def clone(self, url, revision_id=None, force_new_repo=False,
 
169
              preserve_stacking=False):
 
170
        """Clone this bzrdir and its contents to url verbatim.
 
171
 
 
172
        :param url: The url create the clone at.  If url's last component does
 
173
            not exist, it will be created.
 
174
        :param revision_id: The tip revision-id to use for any branch or
 
175
            working tree.  If not None, then the clone operation may tune
 
176
            itself to download less data.
 
177
        :param force_new_repo: Do not use a shared repository for the target
 
178
                               even if one is available.
 
179
        :param preserve_stacking: When cloning a stacked branch, stack the
 
180
            new branch on top of the other branch's stacked-on branch.
 
181
        """
 
182
        return self.clone_on_transport(get_transport(url),
 
183
                                       revision_id=revision_id,
 
184
                                       force_new_repo=force_new_repo,
 
185
                                       preserve_stacking=preserve_stacking)
 
186
 
126
187
    def clone_on_transport(self, transport, revision_id=None,
127
188
        force_new_repo=False, preserve_stacking=False, stacked_on=None,
128
 
        create_prefix=False, use_existing_dir=True, no_tree=False):
 
189
        create_prefix=False, use_existing_dir=True):
129
190
        """Clone this bzrdir and its contents to transport verbatim.
130
191
 
131
192
        :param transport: The transport for the location to produce the clone
140
201
        :param create_prefix: Create any missing directories leading up to
141
202
            to_transport.
142
203
        :param use_existing_dir: Use an existing directory if one exists.
143
 
        :param no_tree: If set to true prevents creation of a working tree.
144
204
        """
145
205
        # Overview: put together a broad description of what we want to end up
146
206
        # with; then make as few api calls as possible to do it.
174
234
        # we should look up the policy needs first, or just use it as a hint,
175
235
        # or something.
176
236
        if local_repo:
177
 
            make_working_trees = local_repo.make_working_trees() and not no_tree
 
237
            make_working_trees = local_repo.make_working_trees()
178
238
            want_shared = local_repo.is_shared()
179
239
            repo_format_name = format.repository_format.network_name()
180
240
        else:
229
289
    # TODO: This should be given a Transport, and should chdir up; otherwise
230
290
    # this will open a new connection.
231
291
    def _make_tail(self, url):
232
 
        t = _mod_transport.get_transport(url)
 
292
        t = get_transport(url)
233
293
        t.ensure_base()
234
294
 
235
295
    @staticmethod
388
448
        policy = self.determine_repository_policy(force_new_repo)
389
449
        return policy.acquire_repository()[0]
390
450
 
391
 
    def _find_source_repo(self, add_cleanup, source_branch):
392
 
        """Find the source branch and repo for a sprout operation.
393
 
        
394
 
        This is helper intended for use by _sprout.
395
 
 
396
 
        :returns: (source_branch, source_repository).  Either or both may be
397
 
            None.  If not None, they will be read-locked (and their unlock(s)
398
 
            scheduled via the add_cleanup param).
399
 
        """
400
 
        if source_branch is not None:
401
 
            add_cleanup(source_branch.lock_read().unlock)
402
 
            return source_branch, source_branch.repository
403
 
        try:
404
 
            source_branch = self.open_branch()
405
 
            source_repository = source_branch.repository
406
 
        except errors.NotBranchError:
407
 
            source_branch = None
408
 
            try:
409
 
                source_repository = self.open_repository()
410
 
            except errors.NoRepositoryPresent:
411
 
                source_repository = None
412
 
            else:
413
 
                add_cleanup(source_repository.lock_read().unlock)
414
 
        else:
415
 
            add_cleanup(source_branch.lock_read().unlock)
416
 
        return source_branch, source_repository
417
 
 
418
 
    def sprout(self, url, revision_id=None, force_new_repo=False,
419
 
               recurse='down', possible_transports=None,
420
 
               accelerator_tree=None, hardlink=False, stacked=False,
421
 
               source_branch=None, create_tree_if_local=True):
422
 
        """Create a copy of this controldir prepared for use as a new line of
423
 
        development.
424
 
 
425
 
        If url's last component does not exist, it will be created.
426
 
 
427
 
        Attributes related to the identity of the source branch like
428
 
        branch nickname will be cleaned, a working tree is created
429
 
        whether one existed before or not; and a local branch is always
430
 
        created.
431
 
 
432
 
        if revision_id is not None, then the clone operation may tune
433
 
            itself to download less data.
434
 
        :param accelerator_tree: A tree which can be used for retrieving file
435
 
            contents more quickly than the revision tree, i.e. a workingtree.
436
 
            The revision tree will be used for cases where accelerator_tree's
437
 
            content is different.
438
 
        :param hardlink: If true, hard-link files from accelerator_tree,
439
 
            where possible.
440
 
        :param stacked: If true, create a stacked branch referring to the
441
 
            location of this control directory.
442
 
        :param create_tree_if_local: If true, a working-tree will be created
443
 
            when working locally.
444
 
        """
445
 
        operation = cleanup.OperationWithCleanups(self._sprout)
446
 
        return operation.run(url, revision_id=revision_id,
447
 
            force_new_repo=force_new_repo, recurse=recurse,
448
 
            possible_transports=possible_transports,
449
 
            accelerator_tree=accelerator_tree, hardlink=hardlink,
450
 
            stacked=stacked, source_branch=source_branch,
451
 
            create_tree_if_local=create_tree_if_local)
452
 
 
453
 
    def _sprout(self, op, url, revision_id=None, force_new_repo=False,
454
 
               recurse='down', possible_transports=None,
455
 
               accelerator_tree=None, hardlink=False, stacked=False,
456
 
               source_branch=None, create_tree_if_local=True):
457
 
        add_cleanup = op.add_cleanup
458
 
        fetch_spec_factory = fetch.FetchSpecFactory()
459
 
        if revision_id is not None:
460
 
            fetch_spec_factory.add_revision_ids([revision_id])
461
 
            fetch_spec_factory.source_branch_stop_revision_id = revision_id
462
 
        target_transport = _mod_transport.get_transport(url,
463
 
            possible_transports)
464
 
        target_transport.ensure_base()
465
 
        cloning_format = self.cloning_metadir(stacked)
466
 
        # Create/update the result branch
467
 
        result = cloning_format.initialize_on_transport(target_transport)
468
 
        source_branch, source_repository = self._find_source_repo(
469
 
            add_cleanup, source_branch)
470
 
        fetch_spec_factory.source_branch = source_branch
471
 
        # if a stacked branch wasn't requested, we don't create one
472
 
        # even if the origin was stacked
473
 
        if stacked and source_branch is not None:
474
 
            stacked_branch_url = self.root_transport.base
475
 
        else:
476
 
            stacked_branch_url = None
477
 
        repository_policy = result.determine_repository_policy(
478
 
            force_new_repo, stacked_branch_url, require_stacking=stacked)
479
 
        result_repo, is_new_repo = repository_policy.acquire_repository()
480
 
        add_cleanup(result_repo.lock_write().unlock)
481
 
        fetch_spec_factory.source_repo = source_repository
482
 
        fetch_spec_factory.target_repo = result_repo
483
 
        if stacked or (len(result_repo._fallback_repositories) != 0):
484
 
            target_repo_kind = fetch.TargetRepoKinds.STACKED
485
 
        elif is_new_repo:
486
 
            target_repo_kind = fetch.TargetRepoKinds.EMPTY
487
 
        else:
488
 
            target_repo_kind = fetch.TargetRepoKinds.PREEXISTING
489
 
        fetch_spec_factory.target_repo_kind = target_repo_kind
490
 
        if source_repository is not None:
491
 
            fetch_spec = fetch_spec_factory.make_fetch_spec()
492
 
            result_repo.fetch(source_repository, fetch_spec=fetch_spec)
493
 
 
494
 
        if source_branch is None:
495
 
            # this is for sprouting a controldir without a branch; is that
496
 
            # actually useful?
497
 
            # Not especially, but it's part of the contract.
498
 
            result_branch = result.create_branch()
499
 
        else:
500
 
            result_branch = source_branch.sprout(result,
501
 
                revision_id=revision_id, repository_policy=repository_policy,
502
 
                repository=result_repo)
503
 
        mutter("created new branch %r" % (result_branch,))
504
 
 
505
 
        # Create/update the result working tree
506
 
        if (create_tree_if_local and
507
 
            isinstance(target_transport, local.LocalTransport) and
508
 
            (result_repo is None or result_repo.make_working_trees())):
509
 
            wt = result.create_workingtree(accelerator_tree=accelerator_tree,
510
 
                hardlink=hardlink, from_branch=result_branch)
511
 
            wt.lock_write()
512
 
            try:
513
 
                if wt.path2id('') is None:
514
 
                    try:
515
 
                        wt.set_root_id(self.open_workingtree.get_root_id())
516
 
                    except errors.NoWorkingTree:
517
 
                        pass
518
 
            finally:
519
 
                wt.unlock()
520
 
        else:
521
 
            wt = None
522
 
        if recurse == 'down':
523
 
            basis = None
524
 
            if wt is not None:
525
 
                basis = wt.basis_tree()
526
 
            elif result_branch is not None:
527
 
                basis = result_branch.basis_tree()
528
 
            elif source_branch is not None:
529
 
                basis = source_branch.basis_tree()
530
 
            if basis is not None:
531
 
                add_cleanup(basis.lock_read().unlock)
532
 
                subtrees = basis.iter_references()
533
 
            else:
534
 
                subtrees = []
535
 
            for path, file_id in subtrees:
536
 
                target = urlutils.join(url, urlutils.escape(path))
537
 
                sublocation = source_branch.reference_parent(file_id, path)
538
 
                sublocation.bzrdir.sprout(target,
539
 
                    basis.get_reference_revision(file_id, path),
540
 
                    force_new_repo=force_new_repo, recurse=recurse,
541
 
                    stacked=stacked)
542
 
        return result
543
 
 
544
 
 
545
 
 
546
451
    @staticmethod
547
452
    def create_branch_convenience(base, force_new_repo=False,
548
453
                                  force_new_tree=None, format=None,
574
479
        """
575
480
        if force_new_tree:
576
481
            # check for non local urls
577
 
            t = _mod_transport.get_transport(base, possible_transports)
 
482
            t = get_transport(base, possible_transports)
578
483
            if not isinstance(t, local.LocalTransport):
579
484
                raise errors.NotLocalUrl(base)
580
485
        bzrdir = BzrDir.create(base, format, possible_transports)
602
507
        :param format: Override for the bzrdir format to create.
603
508
        :return: The WorkingTree object.
604
509
        """
605
 
        t = _mod_transport.get_transport(base)
 
510
        t = get_transport(base)
606
511
        if not isinstance(t, local.LocalTransport):
607
512
            raise errors.NotLocalUrl(base)
608
513
        bzrdir = BzrDir.create_branch_and_repo(base,
610
515
                                               format=format).bzrdir
611
516
        return bzrdir.create_workingtree()
612
517
 
613
 
    @deprecated_method(deprecated_in((2, 3, 0)))
614
518
    def generate_backup_name(self, base):
615
 
        return self._available_backup_name(base)
616
 
 
617
 
    def _available_backup_name(self, base):
618
 
        """Find a non-existing backup file name based on base.
619
 
 
620
 
        See bzrlib.osutils.available_backup_name about race conditions.
621
 
        """
622
 
        return osutils.available_backup_name(base, self.root_transport.has)
 
519
        """Generate a non-existing backup file name based on base."""
 
520
        counter = 1
 
521
        name = "%s.~%d~" % (base, counter)
 
522
        while self.root_transport.has(name):
 
523
            counter += 1
 
524
            name = "%s.~%d~" % (base, counter)
 
525
        return name
623
526
 
624
527
    def backup_bzrdir(self):
625
528
        """Backup this bzr control directory.
627
530
        :return: Tuple with old path name and new path name
628
531
        """
629
532
 
 
533
        backup_dir=self.generate_backup_name('backup.bzr')
630
534
        pb = ui.ui_factory.nested_progress_bar()
631
535
        try:
 
536
            # FIXME: bug 300001 -- the backup fails if the backup directory
 
537
            # already exists, but it should instead either remove it or make
 
538
            # a new backup directory.
 
539
            #
632
540
            old_path = self.root_transport.abspath('.bzr')
633
 
            backup_dir = self._available_backup_name('backup.bzr')
634
541
            new_path = self.root_transport.abspath(backup_dir)
635
 
            ui.ui_factory.note('making backup of %s\n  to %s'
636
 
                               % (old_path, new_path,))
 
542
            ui.ui_factory.note('making backup of %s\n  to %s' % (old_path, new_path,))
637
543
            self.root_transport.copy_tree('.bzr', backup_dir)
638
544
            return (old_path, new_path)
639
545
        finally:
822
728
 
823
729
        :param _unsupported: a private parameter to the BzrDir class.
824
730
        """
825
 
        t = _mod_transport.get_transport(base, possible_transports)
 
731
        t = get_transport(base, possible_transports=possible_transports)
826
732
        return BzrDir.open_from_transport(t, _unsupported=_unsupported)
827
733
 
828
734
    @staticmethod
857
763
        except errors.TooManyRedirections:
858
764
            raise errors.NotBranchError(base)
859
765
 
860
 
        format.check_support_status(_unsupported)
 
766
        BzrDir._check_supported(format, _unsupported)
861
767
        return format.open(transport, _found=True)
862
768
 
863
769
    @staticmethod
867
773
        :param url: url to search from.
868
774
        See open_containing_from_transport for more detail.
869
775
        """
870
 
        transport = _mod_transport.get_transport(url, possible_transports)
 
776
        transport = get_transport(url, possible_transports)
871
777
        return BzrDir.open_containing_from_transport(transport)
872
778
 
873
779
    @staticmethod
1029
935
        if cls is not BzrDir:
1030
936
            raise AssertionError("BzrDir.create always creates the"
1031
937
                "default format, not one of %r" % cls)
1032
 
        t = _mod_transport.get_transport(base, possible_transports)
 
938
        t = get_transport(base, possible_transports)
1033
939
        t.ensure_base()
1034
940
        if format is None:
1035
941
            format = controldir.ControlDirFormat.get_default_format()
1036
942
        return format.initialize_on_transport(t)
1037
943
 
1038
 
    def get_branch_transport(self, branch_format, name=None):
1039
 
        """Get the transport for use by branch format in this BzrDir.
1040
 
 
1041
 
        Note that bzr dirs that do not support format strings will raise
1042
 
        IncompatibleFormat if the branch format they are given has
1043
 
        a format string, and vice versa.
1044
 
 
1045
 
        If branch_format is None, the transport is returned with no
1046
 
        checking. If it is not None, then the returned transport is
1047
 
        guaranteed to point to an existing directory ready for use.
1048
 
        """
1049
 
        raise NotImplementedError(self.get_branch_transport)
1050
 
 
1051
 
    def get_repository_transport(self, repository_format):
1052
 
        """Get the transport for use by repository format in this BzrDir.
1053
 
 
1054
 
        Note that bzr dirs that do not support format strings will raise
1055
 
        IncompatibleFormat if the repository format they are given has
1056
 
        a format string, and vice versa.
1057
 
 
1058
 
        If repository_format is None, the transport is returned with no
1059
 
        checking. If it is not None, then the returned transport is
1060
 
        guaranteed to point to an existing directory ready for use.
1061
 
        """
1062
 
        raise NotImplementedError(self.get_repository_transport)
1063
 
 
1064
 
    def get_workingtree_transport(self, tree_format):
1065
 
        """Get the transport for use by workingtree format in this BzrDir.
1066
 
 
1067
 
        Note that bzr dirs that do not support format strings will raise
1068
 
        IncompatibleFormat if the workingtree format they are given has a
1069
 
        format string, and vice versa.
1070
 
 
1071
 
        If workingtree_format is None, the transport is returned with no
1072
 
        checking. If it is not None, then the returned transport is
1073
 
        guaranteed to point to an existing directory ready for use.
1074
 
        """
1075
 
        raise NotImplementedError(self.get_workingtree_transport)
1076
944
 
1077
945
 
1078
946
class BzrDirHooks(hooks.Hooks):
1080
948
 
1081
949
    def __init__(self):
1082
950
        """Create the default hooks."""
1083
 
        hooks.Hooks.__init__(self, "bzrlib.bzrdir", "BzrDir.hooks")
1084
 
        self.add_hook('pre_open',
 
951
        hooks.Hooks.__init__(self)
 
952
        self.create_hook(hooks.HookPoint('pre_open',
1085
953
            "Invoked before attempting to open a BzrDir with the transport "
1086
 
            "that the open will use.", (1, 14))
1087
 
        self.add_hook('post_repo_init',
 
954
            "that the open will use.", (1, 14), None))
 
955
        self.create_hook(hooks.HookPoint('post_repo_init',
1088
956
            "Invoked after a repository has been initialized. "
1089
957
            "post_repo_init is called with a "
1090
958
            "bzrlib.bzrdir.RepoInitHookParams.",
1091
 
            (2, 2))
 
959
            (2, 2), None))
1092
960
 
1093
961
# install the default hooks
1094
962
BzrDir.hooks = BzrDirHooks()
1130
998
                self.bzrdir)
1131
999
 
1132
1000
 
 
1001
class BzrDirPreSplitOut(BzrDir):
 
1002
    """A common class for the all-in-one formats."""
 
1003
 
 
1004
    def __init__(self, _transport, _format):
 
1005
        """See BzrDir.__init__."""
 
1006
        super(BzrDirPreSplitOut, self).__init__(_transport, _format)
 
1007
        self._control_files = lockable_files.LockableFiles(
 
1008
                                            self.get_branch_transport(None),
 
1009
                                            self._format._lock_file_name,
 
1010
                                            self._format._lock_class)
 
1011
 
 
1012
    def break_lock(self):
 
1013
        """Pre-splitout bzrdirs do not suffer from stale locks."""
 
1014
        raise NotImplementedError(self.break_lock)
 
1015
 
 
1016
    def cloning_metadir(self, require_stacking=False):
 
1017
        """Produce a metadir suitable for cloning with."""
 
1018
        if require_stacking:
 
1019
            return controldir.format_registry.make_bzrdir('1.6')
 
1020
        return self._format.__class__()
 
1021
 
 
1022
    def clone(self, url, revision_id=None, force_new_repo=False,
 
1023
              preserve_stacking=False):
 
1024
        """See BzrDir.clone().
 
1025
 
 
1026
        force_new_repo has no effect, since this family of formats always
 
1027
        require a new repository.
 
1028
        preserve_stacking has no effect, since no source branch using this
 
1029
        family of formats can be stacked, so there is no stacking to preserve.
 
1030
        """
 
1031
        self._make_tail(url)
 
1032
        result = self._format._initialize_for_clone(url)
 
1033
        self.open_repository().clone(result, revision_id=revision_id)
 
1034
        from_branch = self.open_branch()
 
1035
        from_branch.clone(result, revision_id=revision_id)
 
1036
        try:
 
1037
            tree = self.open_workingtree()
 
1038
        except errors.NotLocalUrl:
 
1039
            # make a new one, this format always has to have one.
 
1040
            result._init_workingtree()
 
1041
        else:
 
1042
            tree.clone(result)
 
1043
        return result
 
1044
 
 
1045
    def create_branch(self, name=None):
 
1046
        """See BzrDir.create_branch."""
 
1047
        return self._format.get_branch_format().initialize(self, name=name)
 
1048
 
 
1049
    def destroy_branch(self, name=None):
 
1050
        """See BzrDir.destroy_branch."""
 
1051
        raise errors.UnsupportedOperation(self.destroy_branch, self)
 
1052
 
 
1053
    def create_repository(self, shared=False):
 
1054
        """See BzrDir.create_repository."""
 
1055
        if shared:
 
1056
            raise errors.IncompatibleFormat('shared repository', self._format)
 
1057
        return self.open_repository()
 
1058
 
 
1059
    def destroy_repository(self):
 
1060
        """See BzrDir.destroy_repository."""
 
1061
        raise errors.UnsupportedOperation(self.destroy_repository, self)
 
1062
 
 
1063
    def create_workingtree(self, revision_id=None, from_branch=None,
 
1064
                           accelerator_tree=None, hardlink=False):
 
1065
        """See BzrDir.create_workingtree."""
 
1066
        # The workingtree is sometimes created when the bzrdir is created,
 
1067
        # but not when cloning.
 
1068
 
 
1069
        # this looks buggy but is not -really-
 
1070
        # because this format creates the workingtree when the bzrdir is
 
1071
        # created
 
1072
        # clone and sprout will have set the revision_id
 
1073
        # and that will have set it for us, its only
 
1074
        # specific uses of create_workingtree in isolation
 
1075
        # that can do wonky stuff here, and that only
 
1076
        # happens for creating checkouts, which cannot be
 
1077
        # done on this format anyway. So - acceptable wart.
 
1078
        if hardlink:
 
1079
            warning("can't support hardlinked working trees in %r"
 
1080
                % (self,))
 
1081
        try:
 
1082
            result = self.open_workingtree(recommend_upgrade=False)
 
1083
        except errors.NoSuchFile:
 
1084
            result = self._init_workingtree()
 
1085
        if revision_id is not None:
 
1086
            if revision_id == _mod_revision.NULL_REVISION:
 
1087
                result.set_parent_ids([])
 
1088
            else:
 
1089
                result.set_parent_ids([revision_id])
 
1090
        return result
 
1091
 
 
1092
    def _init_workingtree(self):
 
1093
        from bzrlib.workingtree import WorkingTreeFormat2
 
1094
        try:
 
1095
            return WorkingTreeFormat2().initialize(self)
 
1096
        except errors.NotLocalUrl:
 
1097
            # Even though we can't access the working tree, we need to
 
1098
            # create its control files.
 
1099
            return WorkingTreeFormat2()._stub_initialize_on_transport(
 
1100
                self.transport, self._control_files._file_mode)
 
1101
 
 
1102
    def destroy_workingtree(self):
 
1103
        """See BzrDir.destroy_workingtree."""
 
1104
        raise errors.UnsupportedOperation(self.destroy_workingtree, self)
 
1105
 
 
1106
    def destroy_workingtree_metadata(self):
 
1107
        """See BzrDir.destroy_workingtree_metadata."""
 
1108
        raise errors.UnsupportedOperation(self.destroy_workingtree_metadata,
 
1109
                                          self)
 
1110
 
 
1111
    def get_branch_transport(self, branch_format, name=None):
 
1112
        """See BzrDir.get_branch_transport()."""
 
1113
        if name is not None:
 
1114
            raise errors.NoColocatedBranchSupport(self)
 
1115
        if branch_format is None:
 
1116
            return self.transport
 
1117
        try:
 
1118
            branch_format.get_format_string()
 
1119
        except NotImplementedError:
 
1120
            return self.transport
 
1121
        raise errors.IncompatibleFormat(branch_format, self._format)
 
1122
 
 
1123
    def get_repository_transport(self, repository_format):
 
1124
        """See BzrDir.get_repository_transport()."""
 
1125
        if repository_format is None:
 
1126
            return self.transport
 
1127
        try:
 
1128
            repository_format.get_format_string()
 
1129
        except NotImplementedError:
 
1130
            return self.transport
 
1131
        raise errors.IncompatibleFormat(repository_format, self._format)
 
1132
 
 
1133
    def get_workingtree_transport(self, workingtree_format):
 
1134
        """See BzrDir.get_workingtree_transport()."""
 
1135
        if workingtree_format is None:
 
1136
            return self.transport
 
1137
        try:
 
1138
            workingtree_format.get_format_string()
 
1139
        except NotImplementedError:
 
1140
            return self.transport
 
1141
        raise errors.IncompatibleFormat(workingtree_format, self._format)
 
1142
 
 
1143
    def needs_format_conversion(self, format=None):
 
1144
        """See BzrDir.needs_format_conversion()."""
 
1145
        # if the format is not the same as the system default,
 
1146
        # an upgrade is needed.
 
1147
        if format is None:
 
1148
            symbol_versioning.warn(symbol_versioning.deprecated_in((1, 13, 0))
 
1149
                % 'needs_format_conversion(format=None)')
 
1150
            format = BzrDirFormat.get_default_format()
 
1151
        return not isinstance(self._format, format.__class__)
 
1152
 
 
1153
    def open_branch(self, name=None, unsupported=False,
 
1154
                    ignore_fallbacks=False):
 
1155
        """See BzrDir.open_branch."""
 
1156
        from bzrlib.branch import BzrBranchFormat4
 
1157
        format = BzrBranchFormat4()
 
1158
        self._check_supported(format, unsupported)
 
1159
        return format.open(self, name, _found=True)
 
1160
 
 
1161
    def sprout(self, url, revision_id=None, force_new_repo=False,
 
1162
               possible_transports=None, accelerator_tree=None,
 
1163
               hardlink=False, stacked=False, create_tree_if_local=True,
 
1164
               source_branch=None):
 
1165
        """See BzrDir.sprout()."""
 
1166
        if source_branch is not None:
 
1167
            my_branch = self.open_branch()
 
1168
            if source_branch.base != my_branch.base:
 
1169
                raise AssertionError(
 
1170
                    "source branch %r is not within %r with branch %r" %
 
1171
                    (source_branch, self, my_branch))
 
1172
        if stacked:
 
1173
            raise errors.UnstackableBranchFormat(
 
1174
                self._format, self.root_transport.base)
 
1175
        if not create_tree_if_local:
 
1176
            raise errors.MustHaveWorkingTree(
 
1177
                self._format, self.root_transport.base)
 
1178
        from bzrlib.workingtree import WorkingTreeFormat2
 
1179
        self._make_tail(url)
 
1180
        result = self._format._initialize_for_clone(url)
 
1181
        try:
 
1182
            self.open_repository().clone(result, revision_id=revision_id)
 
1183
        except errors.NoRepositoryPresent:
 
1184
            pass
 
1185
        try:
 
1186
            self.open_branch().sprout(result, revision_id=revision_id)
 
1187
        except errors.NotBranchError:
 
1188
            pass
 
1189
 
 
1190
        # we always want a working tree
 
1191
        WorkingTreeFormat2().initialize(result,
 
1192
                                        accelerator_tree=accelerator_tree,
 
1193
                                        hardlink=hardlink)
 
1194
        return result
 
1195
 
 
1196
 
 
1197
class BzrDir4(BzrDirPreSplitOut):
 
1198
    """A .bzr version 4 control object.
 
1199
 
 
1200
    This is a deprecated format and may be removed after sept 2006.
 
1201
    """
 
1202
 
 
1203
    def create_repository(self, shared=False):
 
1204
        """See BzrDir.create_repository."""
 
1205
        return self._format.repository_format.initialize(self, shared)
 
1206
 
 
1207
    def needs_format_conversion(self, format=None):
 
1208
        """Format 4 dirs are always in need of conversion."""
 
1209
        if format is None:
 
1210
            symbol_versioning.warn(symbol_versioning.deprecated_in((1, 13, 0))
 
1211
                % 'needs_format_conversion(format=None)')
 
1212
        return True
 
1213
 
 
1214
    def open_repository(self):
 
1215
        """See BzrDir.open_repository."""
 
1216
        from bzrlib.repofmt.weaverepo import RepositoryFormat4
 
1217
        return RepositoryFormat4().open(self, _found=True)
 
1218
 
 
1219
 
 
1220
class BzrDir5(BzrDirPreSplitOut):
 
1221
    """A .bzr version 5 control object.
 
1222
 
 
1223
    This is a deprecated format and may be removed after sept 2006.
 
1224
    """
 
1225
 
 
1226
    def has_workingtree(self):
 
1227
        """See BzrDir.has_workingtree."""
 
1228
        return True
 
1229
    
 
1230
    def open_repository(self):
 
1231
        """See BzrDir.open_repository."""
 
1232
        from bzrlib.repofmt.weaverepo import RepositoryFormat5
 
1233
        return RepositoryFormat5().open(self, _found=True)
 
1234
 
 
1235
    def open_workingtree(self, _unsupported=False,
 
1236
            recommend_upgrade=True):
 
1237
        """See BzrDir.create_workingtree."""
 
1238
        from bzrlib.workingtree import WorkingTreeFormat2
 
1239
        wt_format = WorkingTreeFormat2()
 
1240
        # we don't warn here about upgrades; that ought to be handled for the
 
1241
        # bzrdir as a whole
 
1242
        return wt_format.open(self, _found=True)
 
1243
 
 
1244
 
 
1245
class BzrDir6(BzrDirPreSplitOut):
 
1246
    """A .bzr version 6 control object.
 
1247
 
 
1248
    This is a deprecated format and may be removed after sept 2006.
 
1249
    """
 
1250
 
 
1251
    def has_workingtree(self):
 
1252
        """See BzrDir.has_workingtree."""
 
1253
        return True
 
1254
    
 
1255
    def open_repository(self):
 
1256
        """See BzrDir.open_repository."""
 
1257
        from bzrlib.repofmt.weaverepo import RepositoryFormat6
 
1258
        return RepositoryFormat6().open(self, _found=True)
 
1259
 
 
1260
    def open_workingtree(self, _unsupported=False,
 
1261
        recommend_upgrade=True):
 
1262
        """See BzrDir.create_workingtree."""
 
1263
        # we don't warn here about upgrades; that ought to be handled for the
 
1264
        # bzrdir as a whole
 
1265
        from bzrlib.workingtree import WorkingTreeFormat2
 
1266
        return WorkingTreeFormat2().open(self, _found=True)
 
1267
 
 
1268
 
1133
1269
class BzrDirMeta1(BzrDir):
1134
1270
    """A .bzr meta version 1 control object.
1135
1271
 
1143
1279
        """See BzrDir.can_convert_format()."""
1144
1280
        return True
1145
1281
 
1146
 
    def create_branch(self, name=None, repository=None):
 
1282
    def create_branch(self, name=None):
1147
1283
        """See BzrDir.create_branch."""
1148
 
        return self._format.get_branch_format().initialize(self, name=name,
1149
 
                repository=repository)
 
1284
        return self._format.get_branch_format().initialize(self, name=name)
1150
1285
 
1151
1286
    def destroy_branch(self, name=None):
1152
1287
        """See BzrDir.create_branch."""
1174
1309
        wt = self.open_workingtree(recommend_upgrade=False)
1175
1310
        repository = wt.branch.repository
1176
1311
        empty = repository.revision_tree(_mod_revision.NULL_REVISION)
1177
 
        # We ignore the conflicts returned by wt.revert since we're about to
1178
 
        # delete the wt metadata anyway, all that should be left here are
1179
 
        # detritus. But see bug #634470 about subtree .bzr dirs.
1180
 
        conflicts = wt.revert(old_tree=empty)
 
1312
        wt.revert(old_tree=empty)
1181
1313
        self.destroy_workingtree_metadata()
1182
1314
 
1183
1315
    def destroy_workingtree_metadata(self):
1265
1397
            return False
1266
1398
        return True
1267
1399
 
1268
 
    def needs_format_conversion(self, format):
 
1400
    def needs_format_conversion(self, format=None):
1269
1401
        """See BzrDir.needs_format_conversion()."""
 
1402
        if format is None:
 
1403
            symbol_versioning.warn(symbol_versioning.deprecated_in((1, 13, 0))
 
1404
                % 'needs_format_conversion(format=None)')
 
1405
        if format is None:
 
1406
            format = BzrDirFormat.get_default_format()
1270
1407
        if not isinstance(self._format, format.__class__):
1271
1408
            # it is not a meta dir format, conversion is needed.
1272
1409
            return True
1297
1434
                    ignore_fallbacks=False):
1298
1435
        """See BzrDir.open_branch."""
1299
1436
        format = self.find_branch_format(name=name)
1300
 
        format.check_support_status(unsupported)
 
1437
        self._check_supported(format, unsupported)
1301
1438
        return format.open(self, name=name,
1302
1439
            _found=True, ignore_fallbacks=ignore_fallbacks)
1303
1440
 
1305
1442
        """See BzrDir.open_repository."""
1306
1443
        from bzrlib.repository import RepositoryFormat
1307
1444
        format = RepositoryFormat.find_format(self)
1308
 
        format.check_support_status(unsupported)
 
1445
        self._check_supported(format, unsupported)
1309
1446
        return format.open(self, _found=True)
1310
1447
 
1311
1448
    def open_workingtree(self, unsupported=False,
1313
1450
        """See BzrDir.open_workingtree."""
1314
1451
        from bzrlib.workingtree import WorkingTreeFormat
1315
1452
        format = WorkingTreeFormat.find_format(self)
1316
 
        format.check_support_status(unsupported, recommend_upgrade,
 
1453
        self._check_supported(format, unsupported,
 
1454
            recommend_upgrade,
1317
1455
            basedir=self.root_transport.base)
1318
1456
        return format.open(self, _found=True)
1319
1457
 
1324
1462
class BzrProber(controldir.Prober):
1325
1463
    """Prober for formats that use a .bzr/ control directory."""
1326
1464
 
1327
 
    formats = registry.FormatRegistry(controldir.network_format_registry)
 
1465
    _formats = {}
1328
1466
    """The known .bzr formats."""
1329
1467
 
1330
1468
    @classmethod
1331
 
    @deprecated_method(deprecated_in((2, 4, 0)))
1332
1469
    def register_bzrdir_format(klass, format):
1333
 
        klass.formats.register(format.get_format_string(), format)
 
1470
        klass._formats[format.get_format_string()] = format
1334
1471
 
1335
1472
    @classmethod
1336
 
    @deprecated_method(deprecated_in((2, 4, 0)))
1337
1473
    def unregister_bzrdir_format(klass, format):
1338
 
        klass.formats.remove(format.get_format_string())
 
1474
        del klass._formats[format.get_format_string()]
1339
1475
 
1340
1476
    @classmethod
1341
1477
    def probe_transport(klass, transport):
1345
1481
        except errors.NoSuchFile:
1346
1482
            raise errors.NotBranchError(path=transport.base)
1347
1483
        try:
1348
 
            return klass.formats.get(format_string)
 
1484
            return klass._formats[format_string]
1349
1485
        except KeyError:
1350
1486
            raise errors.UnknownFormatError(format=format_string, kind='bzrdir')
1351
1487
 
1352
 
    @classmethod
1353
 
    def known_formats(cls):
1354
 
        result = set()
1355
 
        for name, format in cls.formats.iteritems():
1356
 
            if callable(format):
1357
 
                format = format()
1358
 
            result.add(format)
1359
 
        return result
1360
 
 
1361
1488
 
1362
1489
controldir.ControlDirFormat.register_prober(BzrProber)
1363
1490
 
1387
1514
                    raise errors.NotBranchError(path=transport.base)
1388
1515
                if server_version != '2':
1389
1516
                    raise errors.NotBranchError(path=transport.base)
1390
 
            from bzrlib.remote import RemoteBzrDirFormat
1391
1517
            return RemoteBzrDirFormat()
1392
1518
 
1393
 
    @classmethod
1394
 
    def known_formats(cls):
1395
 
        from bzrlib.remote import RemoteBzrDirFormat
1396
 
        return set([RemoteBzrDirFormat()])
1397
 
 
1398
1519
 
1399
1520
class BzrDirFormat(controldir.ControlDirFormat):
1400
1521
    """ControlDirFormat base class for .bzr/ directories.
1413
1534
    # _lock_class must be set in subclasses to the lock type, typ.
1414
1535
    # TransportLock or LockDir
1415
1536
 
1416
 
    @classmethod
1417
 
    def get_format_string(cls):
 
1537
    def get_format_string(self):
1418
1538
        """Return the ASCII format string that identifies this format."""
1419
1539
        raise NotImplementedError(self.get_format_string)
1420
1540
 
1432
1552
            # metadir1
1433
1553
            if type(self) != BzrDirMetaFormat1:
1434
1554
                return self._initialize_on_transport_vfs(transport)
1435
 
            from bzrlib.remote import RemoteBzrDirFormat
1436
1555
            remote_format = RemoteBzrDirFormat()
1437
1556
            self._supply_sub_formats_to(remote_format)
1438
1557
            return remote_format.initialize_on_transport(transport)
1476
1595
            except errors.NoSmartMedium:
1477
1596
                pass
1478
1597
            else:
1479
 
                from bzrlib.remote import RemoteBzrDirFormat
1480
1598
                # TODO: lookup the local format from a server hint.
1481
1599
                remote_dir_format = RemoteBzrDirFormat()
1482
1600
                remote_dir_format._network_name = self.network_name()
1557
1675
        utf8_files = [('README',
1558
1676
                       "This is a Bazaar control directory.\n"
1559
1677
                       "Do not change any files in this directory.\n"
1560
 
                       "See http://bazaar.canonical.com/ for more information about Bazaar.\n"),
 
1678
                       "See http://bazaar-vcs.org/ for more information about Bazaar.\n"),
1561
1679
                      ('branch-format', self.get_format_string()),
1562
1680
                      ]
1563
1681
        # NB: no need to escape relative paths that are url safe.
1597
1715
        """
1598
1716
        raise NotImplementedError(self._open)
1599
1717
 
 
1718
    @classmethod
 
1719
    def register_format(klass, format):
 
1720
        BzrProber.register_bzrdir_format(format)
 
1721
        # bzr native formats have a network name of their format string.
 
1722
        controldir.network_format_registry.register(format.get_format_string(), format.__class__)
 
1723
        controldir.ControlDirFormat.register_format(format)
 
1724
 
1600
1725
    def _supply_sub_formats_to(self, other_format):
1601
1726
        """Give other_format the same values for sub formats as this has.
1602
1727
 
1609
1734
        :return: None.
1610
1735
        """
1611
1736
 
 
1737
    @classmethod
 
1738
    def unregister_format(klass, format):
 
1739
        BzrProber.unregister_bzrdir_format(format)
 
1740
        controldir.ControlDirFormat.unregister_format(format)
 
1741
        controldir.network_format_registry.remove(format.get_format_string())
 
1742
 
 
1743
 
 
1744
class BzrDirFormat4(BzrDirFormat):
 
1745
    """Bzr dir format 4.
 
1746
 
 
1747
    This format is a combined format for working tree, branch and repository.
 
1748
    It has:
 
1749
     - Format 1 working trees [always]
 
1750
     - Format 4 branches [always]
 
1751
     - Format 4 repositories [always]
 
1752
 
 
1753
    This format is deprecated: it indexes texts using a text it which is
 
1754
    removed in format 5; write support for this format has been removed.
 
1755
    """
 
1756
 
 
1757
    _lock_class = lockable_files.TransportLock
 
1758
 
 
1759
    def get_format_string(self):
 
1760
        """See BzrDirFormat.get_format_string()."""
 
1761
        return "Bazaar-NG branch, format 0.0.4\n"
 
1762
 
 
1763
    def get_format_description(self):
 
1764
        """See BzrDirFormat.get_format_description()."""
 
1765
        return "All-in-one format 4"
 
1766
 
 
1767
    def get_converter(self, format=None):
 
1768
        """See BzrDirFormat.get_converter()."""
 
1769
        # there is one and only one upgrade path here.
 
1770
        return ConvertBzrDir4To5()
 
1771
 
 
1772
    def initialize_on_transport(self, transport):
 
1773
        """Format 4 branches cannot be created."""
 
1774
        raise errors.UninitializableFormat(self)
 
1775
 
 
1776
    def is_supported(self):
 
1777
        """Format 4 is not supported.
 
1778
 
 
1779
        It is not supported because the model changed from 4 to 5 and the
 
1780
        conversion logic is expensive - so doing it on the fly was not
 
1781
        feasible.
 
1782
        """
 
1783
        return False
 
1784
 
 
1785
    def network_name(self):
 
1786
        return self.get_format_string()
 
1787
 
 
1788
    def _open(self, transport):
 
1789
        """See BzrDirFormat._open."""
 
1790
        return BzrDir4(transport, self)
 
1791
 
 
1792
    def __return_repository_format(self):
 
1793
        """Circular import protection."""
 
1794
        from bzrlib.repofmt.weaverepo import RepositoryFormat4
 
1795
        return RepositoryFormat4()
 
1796
    repository_format = property(__return_repository_format)
 
1797
 
 
1798
 
 
1799
class BzrDirFormatAllInOne(BzrDirFormat):
 
1800
    """Common class for formats before meta-dirs."""
 
1801
 
 
1802
    def initialize_on_transport_ex(self, transport, use_existing_dir=False,
 
1803
        create_prefix=False, force_new_repo=False, stacked_on=None,
 
1804
        stack_on_pwd=None, repo_format_name=None, make_working_trees=None,
 
1805
        shared_repo=False):
 
1806
        """See BzrDirFormat.initialize_on_transport_ex."""
 
1807
        require_stacking = (stacked_on is not None)
 
1808
        # Format 5 cannot stack, but we've been asked to - actually init
 
1809
        # a Meta1Dir
 
1810
        if require_stacking:
 
1811
            format = BzrDirMetaFormat1()
 
1812
            return format.initialize_on_transport_ex(transport,
 
1813
                use_existing_dir=use_existing_dir, create_prefix=create_prefix,
 
1814
                force_new_repo=force_new_repo, stacked_on=stacked_on,
 
1815
                stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
 
1816
                make_working_trees=make_working_trees, shared_repo=shared_repo)
 
1817
        return BzrDirFormat.initialize_on_transport_ex(self, transport,
 
1818
            use_existing_dir=use_existing_dir, create_prefix=create_prefix,
 
1819
            force_new_repo=force_new_repo, stacked_on=stacked_on,
 
1820
            stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
 
1821
            make_working_trees=make_working_trees, shared_repo=shared_repo)
 
1822
 
 
1823
 
 
1824
class BzrDirFormat5(BzrDirFormatAllInOne):
 
1825
    """Bzr control format 5.
 
1826
 
 
1827
    This format is a combined format for working tree, branch and repository.
 
1828
    It has:
 
1829
     - Format 2 working trees [always]
 
1830
     - Format 4 branches [always]
 
1831
     - Format 5 repositories [always]
 
1832
       Unhashed stores in the repository.
 
1833
    """
 
1834
 
 
1835
    _lock_class = lockable_files.TransportLock
 
1836
 
 
1837
    def get_format_string(self):
 
1838
        """See BzrDirFormat.get_format_string()."""
 
1839
        return "Bazaar-NG branch, format 5\n"
 
1840
 
 
1841
    def get_branch_format(self):
 
1842
        from bzrlib import branch
 
1843
        return branch.BzrBranchFormat4()
 
1844
 
 
1845
    def get_format_description(self):
 
1846
        """See BzrDirFormat.get_format_description()."""
 
1847
        return "All-in-one format 5"
 
1848
 
 
1849
    def get_converter(self, format=None):
 
1850
        """See BzrDirFormat.get_converter()."""
 
1851
        # there is one and only one upgrade path here.
 
1852
        return ConvertBzrDir5To6()
 
1853
 
 
1854
    def _initialize_for_clone(self, url):
 
1855
        return self.initialize_on_transport(get_transport(url), _cloning=True)
 
1856
 
 
1857
    def initialize_on_transport(self, transport, _cloning=False):
 
1858
        """Format 5 dirs always have working tree, branch and repository.
 
1859
 
 
1860
        Except when they are being cloned.
 
1861
        """
 
1862
        from bzrlib.branch import BzrBranchFormat4
 
1863
        from bzrlib.repofmt.weaverepo import RepositoryFormat5
 
1864
        result = (super(BzrDirFormat5, self).initialize_on_transport(transport))
 
1865
        RepositoryFormat5().initialize(result, _internal=True)
 
1866
        if not _cloning:
 
1867
            branch = BzrBranchFormat4().initialize(result)
 
1868
            result._init_workingtree()
 
1869
        return result
 
1870
 
 
1871
    def network_name(self):
 
1872
        return self.get_format_string()
 
1873
 
 
1874
    def _open(self, transport):
 
1875
        """See BzrDirFormat._open."""
 
1876
        return BzrDir5(transport, self)
 
1877
 
 
1878
    def __return_repository_format(self):
 
1879
        """Circular import protection."""
 
1880
        from bzrlib.repofmt.weaverepo import RepositoryFormat5
 
1881
        return RepositoryFormat5()
 
1882
    repository_format = property(__return_repository_format)
 
1883
 
 
1884
 
 
1885
class BzrDirFormat6(BzrDirFormatAllInOne):
 
1886
    """Bzr control format 6.
 
1887
 
 
1888
    This format is a combined format for working tree, branch and repository.
 
1889
    It has:
 
1890
     - Format 2 working trees [always]
 
1891
     - Format 4 branches [always]
 
1892
     - Format 6 repositories [always]
 
1893
    """
 
1894
 
 
1895
    _lock_class = lockable_files.TransportLock
 
1896
 
 
1897
    def get_format_string(self):
 
1898
        """See BzrDirFormat.get_format_string()."""
 
1899
        return "Bazaar-NG branch, format 6\n"
 
1900
 
 
1901
    def get_format_description(self):
 
1902
        """See BzrDirFormat.get_format_description()."""
 
1903
        return "All-in-one format 6"
 
1904
 
 
1905
    def get_branch_format(self):
 
1906
        from bzrlib import branch
 
1907
        return branch.BzrBranchFormat4()
 
1908
 
 
1909
    def get_converter(self, format=None):
 
1910
        """See BzrDirFormat.get_converter()."""
 
1911
        # there is one and only one upgrade path here.
 
1912
        return ConvertBzrDir6ToMeta()
 
1913
 
 
1914
    def _initialize_for_clone(self, url):
 
1915
        return self.initialize_on_transport(get_transport(url), _cloning=True)
 
1916
 
 
1917
    def initialize_on_transport(self, transport, _cloning=False):
 
1918
        """Format 6 dirs always have working tree, branch and repository.
 
1919
 
 
1920
        Except when they are being cloned.
 
1921
        """
 
1922
        from bzrlib.branch import BzrBranchFormat4
 
1923
        from bzrlib.repofmt.weaverepo import RepositoryFormat6
 
1924
        result = super(BzrDirFormat6, self).initialize_on_transport(transport)
 
1925
        RepositoryFormat6().initialize(result, _internal=True)
 
1926
        if not _cloning:
 
1927
            branch = BzrBranchFormat4().initialize(result)
 
1928
            result._init_workingtree()
 
1929
        return result
 
1930
 
 
1931
    def network_name(self):
 
1932
        return self.get_format_string()
 
1933
 
 
1934
    def _open(self, transport):
 
1935
        """See BzrDirFormat._open."""
 
1936
        return BzrDir6(transport, self)
 
1937
 
 
1938
    def __return_repository_format(self):
 
1939
        """Circular import protection."""
 
1940
        from bzrlib.repofmt.weaverepo import RepositoryFormat6
 
1941
        return RepositoryFormat6()
 
1942
    repository_format = property(__return_repository_format)
 
1943
 
1612
1944
 
1613
1945
class BzrDirMetaFormat1(BzrDirFormat):
1614
1946
    """Bzr meta control format 1
1623
1955
 
1624
1956
    _lock_class = lockdir.LockDir
1625
1957
 
1626
 
    fixed_components = False
1627
 
 
1628
1958
    def __init__(self):
1629
1959
        self._workingtree_format = None
1630
1960
        self._branch_format = None
1644
1974
 
1645
1975
    def get_branch_format(self):
1646
1976
        if self._branch_format is None:
1647
 
            from bzrlib.branch import format_registry as branch_format_registry
1648
 
            self._branch_format = branch_format_registry.get_default()
 
1977
            from bzrlib.branch import BranchFormat
 
1978
            self._branch_format = BranchFormat.get_default_format()
1649
1979
        return self._branch_format
1650
1980
 
1651
1981
    def set_branch_format(self, format):
1706
2036
                    # stack_on is inaccessible, JFDI.
1707
2037
                    # TODO: bad monkey, hard-coded formats...
1708
2038
                    if self.repository_format.rich_root_data:
1709
 
                        new_repo_format = knitpack_repo.RepositoryFormatKnitPack5RichRoot()
 
2039
                        new_repo_format = pack_repo.RepositoryFormatKnitPack5RichRoot()
1710
2040
                    else:
1711
 
                        new_repo_format = knitpack_repo.RepositoryFormatKnitPack5()
 
2041
                        new_repo_format = pack_repo.RepositoryFormatKnitPack5()
1712
2042
            else:
1713
2043
                # If the target already supports stacking, then we know the
1714
2044
                # project is already able to use stacking, so auto-upgrade
1731
2061
            if target_branch is None:
1732
2062
                if do_upgrade:
1733
2063
                    # TODO: bad monkey, hard-coded formats...
1734
 
                    from bzrlib.branch import BzrBranchFormat7
1735
 
                    new_branch_format = BzrBranchFormat7()
 
2064
                    new_branch_format = branch.BzrBranchFormat7()
1736
2065
            else:
1737
2066
                new_branch_format = target_branch._format
1738
2067
                if not new_branch_format.supports_stacking():
1753
2082
            raise NotImplementedError(self.get_converter)
1754
2083
        return ConvertMetaToMeta(format)
1755
2084
 
1756
 
    @classmethod
1757
 
    def get_format_string(cls):
 
2085
    def get_format_string(self):
1758
2086
        """See BzrDirFormat.get_format_string()."""
1759
2087
        return "Bazaar-NG meta directory, format 1\n"
1760
2088
 
1778
2106
        """Circular import protection."""
1779
2107
        if self._repository_format:
1780
2108
            return self._repository_format
1781
 
        from bzrlib.repository import format_registry
1782
 
        return format_registry.get_default()
 
2109
        from bzrlib.repository import RepositoryFormat
 
2110
        return RepositoryFormat.get_default_format()
1783
2111
 
1784
2112
    def _set_repository_format(self, value):
1785
2113
        """Allow changing the repository format for metadir formats."""
1808
2136
 
1809
2137
    def __get_workingtree_format(self):
1810
2138
        if self._workingtree_format is None:
1811
 
            from bzrlib.workingtree import (
1812
 
                format_registry as wt_format_registry,
1813
 
                )
1814
 
            self._workingtree_format = wt_format_registry.get_default()
 
2139
            from bzrlib.workingtree import WorkingTreeFormat
 
2140
            self._workingtree_format = WorkingTreeFormat.get_default_format()
1815
2141
        return self._workingtree_format
1816
2142
 
1817
2143
    def __set_workingtree_format(self, wt_format):
1822
2148
 
1823
2149
 
1824
2150
# Register bzr formats
1825
 
BzrProber.formats.register(BzrDirMetaFormat1.get_format_string(),
1826
 
    BzrDirMetaFormat1)
1827
 
controldir.ControlDirFormat._default_format = BzrDirMetaFormat1()
1828
 
 
1829
 
 
1830
 
class ConvertMetaToMeta(controldir.Converter):
 
2151
BzrDirFormat.register_format(BzrDirFormat4())
 
2152
BzrDirFormat.register_format(BzrDirFormat5())
 
2153
BzrDirFormat.register_format(BzrDirFormat6())
 
2154
__default_format = BzrDirMetaFormat1()
 
2155
BzrDirFormat.register_format(__default_format)
 
2156
controldir.ControlDirFormat._default_format = __default_format
 
2157
 
 
2158
 
 
2159
class Converter(object):
 
2160
    """Converts a disk format object from one format to another."""
 
2161
 
 
2162
    def convert(self, to_convert, pb):
 
2163
        """Perform the conversion of to_convert, giving feedback via pb.
 
2164
 
 
2165
        :param to_convert: The disk object to convert.
 
2166
        :param pb: a progress bar to use for progress information.
 
2167
        """
 
2168
 
 
2169
    def step(self, message):
 
2170
        """Update the pb by a step."""
 
2171
        self.count +=1
 
2172
        self.pb.update(message, self.count, self.total)
 
2173
 
 
2174
 
 
2175
class ConvertBzrDir4To5(Converter):
 
2176
    """Converts format 4 bzr dirs to format 5."""
 
2177
 
 
2178
    def __init__(self):
 
2179
        super(ConvertBzrDir4To5, self).__init__()
 
2180
        self.converted_revs = set()
 
2181
        self.absent_revisions = set()
 
2182
        self.text_count = 0
 
2183
        self.revisions = {}
 
2184
 
 
2185
    def convert(self, to_convert, pb):
 
2186
        """See Converter.convert()."""
 
2187
        self.bzrdir = to_convert
 
2188
        if pb is not None:
 
2189
            warnings.warn("pb parameter to convert() is deprecated")
 
2190
        self.pb = ui.ui_factory.nested_progress_bar()
 
2191
        try:
 
2192
            ui.ui_factory.note('starting upgrade from format 4 to 5')
 
2193
            if isinstance(self.bzrdir.transport, local.LocalTransport):
 
2194
                self.bzrdir.get_workingtree_transport(None).delete('stat-cache')
 
2195
            self._convert_to_weaves()
 
2196
            return BzrDir.open(self.bzrdir.user_url)
 
2197
        finally:
 
2198
            self.pb.finished()
 
2199
 
 
2200
    def _convert_to_weaves(self):
 
2201
        ui.ui_factory.note('note: upgrade may be faster if all store files are ungzipped first')
 
2202
        try:
 
2203
            # TODO permissions
 
2204
            stat = self.bzrdir.transport.stat('weaves')
 
2205
            if not S_ISDIR(stat.st_mode):
 
2206
                self.bzrdir.transport.delete('weaves')
 
2207
                self.bzrdir.transport.mkdir('weaves')
 
2208
        except errors.NoSuchFile:
 
2209
            self.bzrdir.transport.mkdir('weaves')
 
2210
        # deliberately not a WeaveFile as we want to build it up slowly.
 
2211
        self.inv_weave = Weave('inventory')
 
2212
        # holds in-memory weaves for all files
 
2213
        self.text_weaves = {}
 
2214
        self.bzrdir.transport.delete('branch-format')
 
2215
        self.branch = self.bzrdir.open_branch()
 
2216
        self._convert_working_inv()
 
2217
        rev_history = self.branch.revision_history()
 
2218
        # to_read is a stack holding the revisions we still need to process;
 
2219
        # appending to it adds new highest-priority revisions
 
2220
        self.known_revisions = set(rev_history)
 
2221
        self.to_read = rev_history[-1:]
 
2222
        while self.to_read:
 
2223
            rev_id = self.to_read.pop()
 
2224
            if (rev_id not in self.revisions
 
2225
                and rev_id not in self.absent_revisions):
 
2226
                self._load_one_rev(rev_id)
 
2227
        self.pb.clear()
 
2228
        to_import = self._make_order()
 
2229
        for i, rev_id in enumerate(to_import):
 
2230
            self.pb.update('converting revision', i, len(to_import))
 
2231
            self._convert_one_rev(rev_id)
 
2232
        self.pb.clear()
 
2233
        self._write_all_weaves()
 
2234
        self._write_all_revs()
 
2235
        ui.ui_factory.note('upgraded to weaves:')
 
2236
        ui.ui_factory.note('  %6d revisions and inventories' % len(self.revisions))
 
2237
        ui.ui_factory.note('  %6d revisions not present' % len(self.absent_revisions))
 
2238
        ui.ui_factory.note('  %6d texts' % self.text_count)
 
2239
        self._cleanup_spare_files_after_format4()
 
2240
        self.branch._transport.put_bytes(
 
2241
            'branch-format',
 
2242
            BzrDirFormat5().get_format_string(),
 
2243
            mode=self.bzrdir._get_file_mode())
 
2244
 
 
2245
    def _cleanup_spare_files_after_format4(self):
 
2246
        # FIXME working tree upgrade foo.
 
2247
        for n in 'merged-patches', 'pending-merged-patches':
 
2248
            try:
 
2249
                ## assert os.path.getsize(p) == 0
 
2250
                self.bzrdir.transport.delete(n)
 
2251
            except errors.NoSuchFile:
 
2252
                pass
 
2253
        self.bzrdir.transport.delete_tree('inventory-store')
 
2254
        self.bzrdir.transport.delete_tree('text-store')
 
2255
 
 
2256
    def _convert_working_inv(self):
 
2257
        inv = xml4.serializer_v4.read_inventory(
 
2258
                self.branch._transport.get('inventory'))
 
2259
        new_inv_xml = xml5.serializer_v5.write_inventory_to_string(inv, working=True)
 
2260
        self.branch._transport.put_bytes('inventory', new_inv_xml,
 
2261
            mode=self.bzrdir._get_file_mode())
 
2262
 
 
2263
    def _write_all_weaves(self):
 
2264
        controlweaves = WeaveStore(self.bzrdir.transport, prefixed=False)
 
2265
        weave_transport = self.bzrdir.transport.clone('weaves')
 
2266
        weaves = WeaveStore(weave_transport, prefixed=False)
 
2267
        transaction = WriteTransaction()
 
2268
 
 
2269
        try:
 
2270
            i = 0
 
2271
            for file_id, file_weave in self.text_weaves.items():
 
2272
                self.pb.update('writing weave', i, len(self.text_weaves))
 
2273
                weaves._put_weave(file_id, file_weave, transaction)
 
2274
                i += 1
 
2275
            self.pb.update('inventory', 0, 1)
 
2276
            controlweaves._put_weave('inventory', self.inv_weave, transaction)
 
2277
            self.pb.update('inventory', 1, 1)
 
2278
        finally:
 
2279
            self.pb.clear()
 
2280
 
 
2281
    def _write_all_revs(self):
 
2282
        """Write all revisions out in new form."""
 
2283
        self.bzrdir.transport.delete_tree('revision-store')
 
2284
        self.bzrdir.transport.mkdir('revision-store')
 
2285
        revision_transport = self.bzrdir.transport.clone('revision-store')
 
2286
        # TODO permissions
 
2287
        from bzrlib.xml5 import serializer_v5
 
2288
        from bzrlib.repofmt.weaverepo import RevisionTextStore
 
2289
        revision_store = RevisionTextStore(revision_transport,
 
2290
            serializer_v5, False, versionedfile.PrefixMapper(),
 
2291
            lambda:True, lambda:True)
 
2292
        try:
 
2293
            for i, rev_id in enumerate(self.converted_revs):
 
2294
                self.pb.update('write revision', i, len(self.converted_revs))
 
2295
                text = serializer_v5.write_revision_to_string(
 
2296
                    self.revisions[rev_id])
 
2297
                key = (rev_id,)
 
2298
                revision_store.add_lines(key, None, osutils.split_lines(text))
 
2299
        finally:
 
2300
            self.pb.clear()
 
2301
 
 
2302
    def _load_one_rev(self, rev_id):
 
2303
        """Load a revision object into memory.
 
2304
 
 
2305
        Any parents not either loaded or abandoned get queued to be
 
2306
        loaded."""
 
2307
        self.pb.update('loading revision',
 
2308
                       len(self.revisions),
 
2309
                       len(self.known_revisions))
 
2310
        if not self.branch.repository.has_revision(rev_id):
 
2311
            self.pb.clear()
 
2312
            ui.ui_factory.note('revision {%s} not present in branch; '
 
2313
                         'will be converted as a ghost' %
 
2314
                         rev_id)
 
2315
            self.absent_revisions.add(rev_id)
 
2316
        else:
 
2317
            rev = self.branch.repository.get_revision(rev_id)
 
2318
            for parent_id in rev.parent_ids:
 
2319
                self.known_revisions.add(parent_id)
 
2320
                self.to_read.append(parent_id)
 
2321
            self.revisions[rev_id] = rev
 
2322
 
 
2323
    def _load_old_inventory(self, rev_id):
 
2324
        f = self.branch.repository.inventory_store.get(rev_id)
 
2325
        try:
 
2326
            old_inv_xml = f.read()
 
2327
        finally:
 
2328
            f.close()
 
2329
        inv = xml4.serializer_v4.read_inventory_from_string(old_inv_xml)
 
2330
        inv.revision_id = rev_id
 
2331
        rev = self.revisions[rev_id]
 
2332
        return inv
 
2333
 
 
2334
    def _load_updated_inventory(self, rev_id):
 
2335
        inv_xml = self.inv_weave.get_text(rev_id)
 
2336
        inv = xml5.serializer_v5.read_inventory_from_string(inv_xml, rev_id)
 
2337
        return inv
 
2338
 
 
2339
    def _convert_one_rev(self, rev_id):
 
2340
        """Convert revision and all referenced objects to new format."""
 
2341
        rev = self.revisions[rev_id]
 
2342
        inv = self._load_old_inventory(rev_id)
 
2343
        present_parents = [p for p in rev.parent_ids
 
2344
                           if p not in self.absent_revisions]
 
2345
        self._convert_revision_contents(rev, inv, present_parents)
 
2346
        self._store_new_inv(rev, inv, present_parents)
 
2347
        self.converted_revs.add(rev_id)
 
2348
 
 
2349
    def _store_new_inv(self, rev, inv, present_parents):
 
2350
        new_inv_xml = xml5.serializer_v5.write_inventory_to_string(inv)
 
2351
        new_inv_sha1 = sha_string(new_inv_xml)
 
2352
        self.inv_weave.add_lines(rev.revision_id,
 
2353
                                 present_parents,
 
2354
                                 new_inv_xml.splitlines(True))
 
2355
        rev.inventory_sha1 = new_inv_sha1
 
2356
 
 
2357
    def _convert_revision_contents(self, rev, inv, present_parents):
 
2358
        """Convert all the files within a revision.
 
2359
 
 
2360
        Also upgrade the inventory to refer to the text revision ids."""
 
2361
        rev_id = rev.revision_id
 
2362
        mutter('converting texts of revision {%s}',
 
2363
               rev_id)
 
2364
        parent_invs = map(self._load_updated_inventory, present_parents)
 
2365
        entries = inv.iter_entries()
 
2366
        entries.next()
 
2367
        for path, ie in entries:
 
2368
            self._convert_file_version(rev, ie, parent_invs)
 
2369
 
 
2370
    def _convert_file_version(self, rev, ie, parent_invs):
 
2371
        """Convert one version of one file.
 
2372
 
 
2373
        The file needs to be added into the weave if it is a merge
 
2374
        of >=2 parents or if it's changed from its parent.
 
2375
        """
 
2376
        file_id = ie.file_id
 
2377
        rev_id = rev.revision_id
 
2378
        w = self.text_weaves.get(file_id)
 
2379
        if w is None:
 
2380
            w = Weave(file_id)
 
2381
            self.text_weaves[file_id] = w
 
2382
        text_changed = False
 
2383
        parent_candiate_entries = ie.parent_candidates(parent_invs)
 
2384
        heads = graph.Graph(self).heads(parent_candiate_entries.keys())
 
2385
        # XXX: Note that this is unordered - and this is tolerable because
 
2386
        # the previous code was also unordered.
 
2387
        previous_entries = dict((head, parent_candiate_entries[head]) for head
 
2388
            in heads)
 
2389
        self.snapshot_ie(previous_entries, ie, w, rev_id)
 
2390
 
 
2391
    def get_parent_map(self, revision_ids):
 
2392
        """See graph.StackedParentsProvider.get_parent_map"""
 
2393
        return dict((revision_id, self.revisions[revision_id])
 
2394
                    for revision_id in revision_ids
 
2395
                     if revision_id in self.revisions)
 
2396
 
 
2397
    def snapshot_ie(self, previous_revisions, ie, w, rev_id):
 
2398
        # TODO: convert this logic, which is ~= snapshot to
 
2399
        # a call to:. This needs the path figured out. rather than a work_tree
 
2400
        # a v4 revision_tree can be given, or something that looks enough like
 
2401
        # one to give the file content to the entry if it needs it.
 
2402
        # and we need something that looks like a weave store for snapshot to
 
2403
        # save against.
 
2404
        #ie.snapshot(rev, PATH, previous_revisions, REVISION_TREE, InMemoryWeaveStore(self.text_weaves))
 
2405
        if len(previous_revisions) == 1:
 
2406
            previous_ie = previous_revisions.values()[0]
 
2407
            if ie._unchanged(previous_ie):
 
2408
                ie.revision = previous_ie.revision
 
2409
                return
 
2410
        if ie.has_text():
 
2411
            f = self.branch.repository._text_store.get(ie.text_id)
 
2412
            try:
 
2413
                file_lines = f.readlines()
 
2414
            finally:
 
2415
                f.close()
 
2416
            w.add_lines(rev_id, previous_revisions, file_lines)
 
2417
            self.text_count += 1
 
2418
        else:
 
2419
            w.add_lines(rev_id, previous_revisions, [])
 
2420
        ie.revision = rev_id
 
2421
 
 
2422
    def _make_order(self):
 
2423
        """Return a suitable order for importing revisions.
 
2424
 
 
2425
        The order must be such that an revision is imported after all
 
2426
        its (present) parents.
 
2427
        """
 
2428
        todo = set(self.revisions.keys())
 
2429
        done = self.absent_revisions.copy()
 
2430
        order = []
 
2431
        while todo:
 
2432
            # scan through looking for a revision whose parents
 
2433
            # are all done
 
2434
            for rev_id in sorted(list(todo)):
 
2435
                rev = self.revisions[rev_id]
 
2436
                parent_ids = set(rev.parent_ids)
 
2437
                if parent_ids.issubset(done):
 
2438
                    # can take this one now
 
2439
                    order.append(rev_id)
 
2440
                    todo.remove(rev_id)
 
2441
                    done.add(rev_id)
 
2442
        return order
 
2443
 
 
2444
 
 
2445
class ConvertBzrDir5To6(Converter):
 
2446
    """Converts format 5 bzr dirs to format 6."""
 
2447
 
 
2448
    def convert(self, to_convert, pb):
 
2449
        """See Converter.convert()."""
 
2450
        self.bzrdir = to_convert
 
2451
        pb = ui.ui_factory.nested_progress_bar()
 
2452
        try:
 
2453
            ui.ui_factory.note('starting upgrade from format 5 to 6')
 
2454
            self._convert_to_prefixed()
 
2455
            return BzrDir.open(self.bzrdir.user_url)
 
2456
        finally:
 
2457
            pb.finished()
 
2458
 
 
2459
    def _convert_to_prefixed(self):
 
2460
        from bzrlib.store import TransportStore
 
2461
        self.bzrdir.transport.delete('branch-format')
 
2462
        for store_name in ["weaves", "revision-store"]:
 
2463
            ui.ui_factory.note("adding prefixes to %s" % store_name)
 
2464
            store_transport = self.bzrdir.transport.clone(store_name)
 
2465
            store = TransportStore(store_transport, prefixed=True)
 
2466
            for urlfilename in store_transport.list_dir('.'):
 
2467
                filename = urlutils.unescape(urlfilename)
 
2468
                if (filename.endswith(".weave") or
 
2469
                    filename.endswith(".gz") or
 
2470
                    filename.endswith(".sig")):
 
2471
                    file_id, suffix = os.path.splitext(filename)
 
2472
                else:
 
2473
                    file_id = filename
 
2474
                    suffix = ''
 
2475
                new_name = store._mapper.map((file_id,)) + suffix
 
2476
                # FIXME keep track of the dirs made RBC 20060121
 
2477
                try:
 
2478
                    store_transport.move(filename, new_name)
 
2479
                except errors.NoSuchFile: # catches missing dirs strangely enough
 
2480
                    store_transport.mkdir(osutils.dirname(new_name))
 
2481
                    store_transport.move(filename, new_name)
 
2482
        self.bzrdir.transport.put_bytes(
 
2483
            'branch-format',
 
2484
            BzrDirFormat6().get_format_string(),
 
2485
            mode=self.bzrdir._get_file_mode())
 
2486
 
 
2487
 
 
2488
class ConvertBzrDir6ToMeta(Converter):
 
2489
    """Converts format 6 bzr dirs to metadirs."""
 
2490
 
 
2491
    def convert(self, to_convert, pb):
 
2492
        """See Converter.convert()."""
 
2493
        from bzrlib.repofmt.weaverepo import RepositoryFormat7
 
2494
        from bzrlib.branch import BzrBranchFormat5
 
2495
        self.bzrdir = to_convert
 
2496
        self.pb = ui.ui_factory.nested_progress_bar()
 
2497
        self.count = 0
 
2498
        self.total = 20 # the steps we know about
 
2499
        self.garbage_inventories = []
 
2500
        self.dir_mode = self.bzrdir._get_dir_mode()
 
2501
        self.file_mode = self.bzrdir._get_file_mode()
 
2502
 
 
2503
        ui.ui_factory.note('starting upgrade from format 6 to metadir')
 
2504
        self.bzrdir.transport.put_bytes(
 
2505
                'branch-format',
 
2506
                "Converting to format 6",
 
2507
                mode=self.file_mode)
 
2508
        # its faster to move specific files around than to open and use the apis...
 
2509
        # first off, nuke ancestry.weave, it was never used.
 
2510
        try:
 
2511
            self.step('Removing ancestry.weave')
 
2512
            self.bzrdir.transport.delete('ancestry.weave')
 
2513
        except errors.NoSuchFile:
 
2514
            pass
 
2515
        # find out whats there
 
2516
        self.step('Finding branch files')
 
2517
        last_revision = self.bzrdir.open_branch().last_revision()
 
2518
        bzrcontents = self.bzrdir.transport.list_dir('.')
 
2519
        for name in bzrcontents:
 
2520
            if name.startswith('basis-inventory.'):
 
2521
                self.garbage_inventories.append(name)
 
2522
        # create new directories for repository, working tree and branch
 
2523
        repository_names = [('inventory.weave', True),
 
2524
                            ('revision-store', True),
 
2525
                            ('weaves', True)]
 
2526
        self.step('Upgrading repository  ')
 
2527
        self.bzrdir.transport.mkdir('repository', mode=self.dir_mode)
 
2528
        self.make_lock('repository')
 
2529
        # we hard code the formats here because we are converting into
 
2530
        # the meta format. The meta format upgrader can take this to a
 
2531
        # future format within each component.
 
2532
        self.put_format('repository', RepositoryFormat7())
 
2533
        for entry in repository_names:
 
2534
            self.move_entry('repository', entry)
 
2535
 
 
2536
        self.step('Upgrading branch      ')
 
2537
        self.bzrdir.transport.mkdir('branch', mode=self.dir_mode)
 
2538
        self.make_lock('branch')
 
2539
        self.put_format('branch', BzrBranchFormat5())
 
2540
        branch_files = [('revision-history', True),
 
2541
                        ('branch-name', True),
 
2542
                        ('parent', False)]
 
2543
        for entry in branch_files:
 
2544
            self.move_entry('branch', entry)
 
2545
 
 
2546
        checkout_files = [('pending-merges', True),
 
2547
                          ('inventory', True),
 
2548
                          ('stat-cache', False)]
 
2549
        # If a mandatory checkout file is not present, the branch does not have
 
2550
        # a functional checkout. Do not create a checkout in the converted
 
2551
        # branch.
 
2552
        for name, mandatory in checkout_files:
 
2553
            if mandatory and name not in bzrcontents:
 
2554
                has_checkout = False
 
2555
                break
 
2556
        else:
 
2557
            has_checkout = True
 
2558
        if not has_checkout:
 
2559
            ui.ui_factory.note('No working tree.')
 
2560
            # If some checkout files are there, we may as well get rid of them.
 
2561
            for name, mandatory in checkout_files:
 
2562
                if name in bzrcontents:
 
2563
                    self.bzrdir.transport.delete(name)
 
2564
        else:
 
2565
            from bzrlib.workingtree import WorkingTreeFormat3
 
2566
            self.step('Upgrading working tree')
 
2567
            self.bzrdir.transport.mkdir('checkout', mode=self.dir_mode)
 
2568
            self.make_lock('checkout')
 
2569
            self.put_format(
 
2570
                'checkout', WorkingTreeFormat3())
 
2571
            self.bzrdir.transport.delete_multi(
 
2572
                self.garbage_inventories, self.pb)
 
2573
            for entry in checkout_files:
 
2574
                self.move_entry('checkout', entry)
 
2575
            if last_revision is not None:
 
2576
                self.bzrdir.transport.put_bytes(
 
2577
                    'checkout/last-revision', last_revision)
 
2578
        self.bzrdir.transport.put_bytes(
 
2579
            'branch-format',
 
2580
            BzrDirMetaFormat1().get_format_string(),
 
2581
            mode=self.file_mode)
 
2582
        self.pb.finished()
 
2583
        return BzrDir.open(self.bzrdir.user_url)
 
2584
 
 
2585
    def make_lock(self, name):
 
2586
        """Make a lock for the new control dir name."""
 
2587
        self.step('Make %s lock' % name)
 
2588
        ld = lockdir.LockDir(self.bzrdir.transport,
 
2589
                             '%s/lock' % name,
 
2590
                             file_modebits=self.file_mode,
 
2591
                             dir_modebits=self.dir_mode)
 
2592
        ld.create()
 
2593
 
 
2594
    def move_entry(self, new_dir, entry):
 
2595
        """Move then entry name into new_dir."""
 
2596
        name = entry[0]
 
2597
        mandatory = entry[1]
 
2598
        self.step('Moving %s' % name)
 
2599
        try:
 
2600
            self.bzrdir.transport.move(name, '%s/%s' % (new_dir, name))
 
2601
        except errors.NoSuchFile:
 
2602
            if mandatory:
 
2603
                raise
 
2604
 
 
2605
    def put_format(self, dirname, format):
 
2606
        self.bzrdir.transport.put_bytes('%s/format' % dirname,
 
2607
            format.get_format_string(),
 
2608
            self.file_mode)
 
2609
 
 
2610
 
 
2611
class ConvertMetaToMeta(Converter):
1831
2612
    """Converts the components of metadirs."""
1832
2613
 
1833
2614
    def __init__(self, target_format):
1858
2639
            # TODO: conversions of Branch and Tree should be done by
1859
2640
            # InterXFormat lookups/some sort of registry.
1860
2641
            # Avoid circular imports
 
2642
            from bzrlib import branch as _mod_branch
1861
2643
            old = branch._format.__class__
1862
2644
            new = self.target_format.get_branch_format().__class__
1863
2645
            while old != new:
1905
2687
        return to_convert
1906
2688
 
1907
2689
 
 
2690
# This is not in remote.py because it's relatively small, and needs to be
 
2691
# registered. Putting it in remote.py creates a circular import problem.
 
2692
# we can make it a lazy object if the control formats is turned into something
 
2693
# like a registry.
 
2694
class RemoteBzrDirFormat(BzrDirMetaFormat1):
 
2695
    """Format representing bzrdirs accessed via a smart server"""
 
2696
 
 
2697
    def __init__(self):
 
2698
        BzrDirMetaFormat1.__init__(self)
 
2699
        # XXX: It's a bit ugly that the network name is here, because we'd
 
2700
        # like to believe that format objects are stateless or at least
 
2701
        # immutable,  However, we do at least avoid mutating the name after
 
2702
        # it's returned.  See <https://bugs.launchpad.net/bzr/+bug/504102>
 
2703
        self._network_name = None
 
2704
 
 
2705
    def __repr__(self):
 
2706
        return "%s(_network_name=%r)" % (self.__class__.__name__,
 
2707
            self._network_name)
 
2708
 
 
2709
    def get_format_description(self):
 
2710
        if self._network_name:
 
2711
            real_format = controldir.network_format_registry.get(self._network_name)
 
2712
            return 'Remote: ' + real_format.get_format_description()
 
2713
        return 'bzr remote bzrdir'
 
2714
 
 
2715
    def get_format_string(self):
 
2716
        raise NotImplementedError(self.get_format_string)
 
2717
 
 
2718
    def network_name(self):
 
2719
        if self._network_name:
 
2720
            return self._network_name
 
2721
        else:
 
2722
            raise AssertionError("No network name set.")
 
2723
 
 
2724
    def initialize_on_transport(self, transport):
 
2725
        try:
 
2726
            # hand off the request to the smart server
 
2727
            client_medium = transport.get_smart_medium()
 
2728
        except errors.NoSmartMedium:
 
2729
            # TODO: lookup the local format from a server hint.
 
2730
            local_dir_format = BzrDirMetaFormat1()
 
2731
            return local_dir_format.initialize_on_transport(transport)
 
2732
        client = _SmartClient(client_medium)
 
2733
        path = client.remote_path_from_transport(transport)
 
2734
        try:
 
2735
            response = client.call('BzrDirFormat.initialize', path)
 
2736
        except errors.ErrorFromSmartServer, err:
 
2737
            remote._translate_error(err, path=path)
 
2738
        if response[0] != 'ok':
 
2739
            raise errors.SmartProtocolError('unexpected response code %s' % (response,))
 
2740
        format = RemoteBzrDirFormat()
 
2741
        self._supply_sub_formats_to(format)
 
2742
        return remote.RemoteBzrDir(transport, format)
 
2743
 
 
2744
    def parse_NoneTrueFalse(self, arg):
 
2745
        if not arg:
 
2746
            return None
 
2747
        if arg == 'False':
 
2748
            return False
 
2749
        if arg == 'True':
 
2750
            return True
 
2751
        raise AssertionError("invalid arg %r" % arg)
 
2752
 
 
2753
    def _serialize_NoneTrueFalse(self, arg):
 
2754
        if arg is False:
 
2755
            return 'False'
 
2756
        if arg:
 
2757
            return 'True'
 
2758
        return ''
 
2759
 
 
2760
    def _serialize_NoneString(self, arg):
 
2761
        return arg or ''
 
2762
 
 
2763
    def initialize_on_transport_ex(self, transport, use_existing_dir=False,
 
2764
        create_prefix=False, force_new_repo=False, stacked_on=None,
 
2765
        stack_on_pwd=None, repo_format_name=None, make_working_trees=None,
 
2766
        shared_repo=False):
 
2767
        try:
 
2768
            # hand off the request to the smart server
 
2769
            client_medium = transport.get_smart_medium()
 
2770
        except errors.NoSmartMedium:
 
2771
            do_vfs = True
 
2772
        else:
 
2773
            # Decline to open it if the server doesn't support our required
 
2774
            # version (3) so that the VFS-based transport will do it.
 
2775
            if client_medium.should_probe():
 
2776
                try:
 
2777
                    server_version = client_medium.protocol_version()
 
2778
                    if server_version != '2':
 
2779
                        do_vfs = True
 
2780
                    else:
 
2781
                        do_vfs = False
 
2782
                except errors.SmartProtocolError:
 
2783
                    # Apparently there's no usable smart server there, even though
 
2784
                    # the medium supports the smart protocol.
 
2785
                    do_vfs = True
 
2786
            else:
 
2787
                do_vfs = False
 
2788
        if not do_vfs:
 
2789
            client = _SmartClient(client_medium)
 
2790
            path = client.remote_path_from_transport(transport)
 
2791
            if client_medium._is_remote_before((1, 16)):
 
2792
                do_vfs = True
 
2793
        if do_vfs:
 
2794
            # TODO: lookup the local format from a server hint.
 
2795
            local_dir_format = BzrDirMetaFormat1()
 
2796
            self._supply_sub_formats_to(local_dir_format)
 
2797
            return local_dir_format.initialize_on_transport_ex(transport,
 
2798
                use_existing_dir=use_existing_dir, create_prefix=create_prefix,
 
2799
                force_new_repo=force_new_repo, stacked_on=stacked_on,
 
2800
                stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
 
2801
                make_working_trees=make_working_trees, shared_repo=shared_repo,
 
2802
                vfs_only=True)
 
2803
        return self._initialize_on_transport_ex_rpc(client, path, transport,
 
2804
            use_existing_dir, create_prefix, force_new_repo, stacked_on,
 
2805
            stack_on_pwd, repo_format_name, make_working_trees, shared_repo)
 
2806
 
 
2807
    def _initialize_on_transport_ex_rpc(self, client, path, transport,
 
2808
        use_existing_dir, create_prefix, force_new_repo, stacked_on,
 
2809
        stack_on_pwd, repo_format_name, make_working_trees, shared_repo):
 
2810
        args = []
 
2811
        args.append(self._serialize_NoneTrueFalse(use_existing_dir))
 
2812
        args.append(self._serialize_NoneTrueFalse(create_prefix))
 
2813
        args.append(self._serialize_NoneTrueFalse(force_new_repo))
 
2814
        args.append(self._serialize_NoneString(stacked_on))
 
2815
        # stack_on_pwd is often/usually our transport
 
2816
        if stack_on_pwd:
 
2817
            try:
 
2818
                stack_on_pwd = transport.relpath(stack_on_pwd)
 
2819
                if not stack_on_pwd:
 
2820
                    stack_on_pwd = '.'
 
2821
            except errors.PathNotChild:
 
2822
                pass
 
2823
        args.append(self._serialize_NoneString(stack_on_pwd))
 
2824
        args.append(self._serialize_NoneString(repo_format_name))
 
2825
        args.append(self._serialize_NoneTrueFalse(make_working_trees))
 
2826
        args.append(self._serialize_NoneTrueFalse(shared_repo))
 
2827
        request_network_name = self._network_name or \
 
2828
            BzrDirFormat.get_default_format().network_name()
 
2829
        try:
 
2830
            response = client.call('BzrDirFormat.initialize_ex_1.16',
 
2831
                request_network_name, path, *args)
 
2832
        except errors.UnknownSmartMethod:
 
2833
            client._medium._remember_remote_is_before((1,16))
 
2834
            local_dir_format = BzrDirMetaFormat1()
 
2835
            self._supply_sub_formats_to(local_dir_format)
 
2836
            return local_dir_format.initialize_on_transport_ex(transport,
 
2837
                use_existing_dir=use_existing_dir, create_prefix=create_prefix,
 
2838
                force_new_repo=force_new_repo, stacked_on=stacked_on,
 
2839
                stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
 
2840
                make_working_trees=make_working_trees, shared_repo=shared_repo,
 
2841
                vfs_only=True)
 
2842
        except errors.ErrorFromSmartServer, err:
 
2843
            remote._translate_error(err, path=path)
 
2844
        repo_path = response[0]
 
2845
        bzrdir_name = response[6]
 
2846
        require_stacking = response[7]
 
2847
        require_stacking = self.parse_NoneTrueFalse(require_stacking)
 
2848
        format = RemoteBzrDirFormat()
 
2849
        format._network_name = bzrdir_name
 
2850
        self._supply_sub_formats_to(format)
 
2851
        bzrdir = remote.RemoteBzrDir(transport, format, _client=client)
 
2852
        if repo_path:
 
2853
            repo_format = remote.response_tuple_to_repo_format(response[1:])
 
2854
            if repo_path == '.':
 
2855
                repo_path = ''
 
2856
            if repo_path:
 
2857
                repo_bzrdir_format = RemoteBzrDirFormat()
 
2858
                repo_bzrdir_format._network_name = response[5]
 
2859
                repo_bzr = remote.RemoteBzrDir(transport.clone(repo_path),
 
2860
                    repo_bzrdir_format)
 
2861
            else:
 
2862
                repo_bzr = bzrdir
 
2863
            final_stack = response[8] or None
 
2864
            final_stack_pwd = response[9] or None
 
2865
            if final_stack_pwd:
 
2866
                final_stack_pwd = urlutils.join(
 
2867
                    transport.base, final_stack_pwd)
 
2868
            remote_repo = remote.RemoteRepository(repo_bzr, repo_format)
 
2869
            if len(response) > 10:
 
2870
                # Updated server verb that locks remotely.
 
2871
                repo_lock_token = response[10] or None
 
2872
                remote_repo.lock_write(repo_lock_token, _skip_rpc=True)
 
2873
                if repo_lock_token:
 
2874
                    remote_repo.dont_leave_lock_in_place()
 
2875
            else:
 
2876
                remote_repo.lock_write()
 
2877
            policy = UseExistingRepository(remote_repo, final_stack,
 
2878
                final_stack_pwd, require_stacking)
 
2879
            policy.acquire_repository()
 
2880
        else:
 
2881
            remote_repo = None
 
2882
            policy = None
 
2883
        bzrdir._format.set_branch_format(self.get_branch_format())
 
2884
        if require_stacking:
 
2885
            # The repo has already been created, but we need to make sure that
 
2886
            # we'll make a stackable branch.
 
2887
            bzrdir._format.require_stacking(_skip_repo=True)
 
2888
        return remote_repo, bzrdir, require_stacking, policy
 
2889
 
 
2890
    def _open(self, transport):
 
2891
        return remote.RemoteBzrDir(transport, self)
 
2892
 
 
2893
    def __eq__(self, other):
 
2894
        if not isinstance(other, RemoteBzrDirFormat):
 
2895
            return False
 
2896
        return self.get_format_description() == other.get_format_description()
 
2897
 
 
2898
    def __return_repository_format(self):
 
2899
        # Always return a RemoteRepositoryFormat object, but if a specific bzr
 
2900
        # repository format has been asked for, tell the RemoteRepositoryFormat
 
2901
        # that it should use that for init() etc.
 
2902
        result = remote.RemoteRepositoryFormat()
 
2903
        custom_format = getattr(self, '_repository_format', None)
 
2904
        if custom_format:
 
2905
            if isinstance(custom_format, remote.RemoteRepositoryFormat):
 
2906
                return custom_format
 
2907
            else:
 
2908
                # We will use the custom format to create repositories over the
 
2909
                # wire; expose its details like rich_root_data for code to
 
2910
                # query
 
2911
                result._custom_format = custom_format
 
2912
        return result
 
2913
 
 
2914
    def get_branch_format(self):
 
2915
        result = BzrDirMetaFormat1.get_branch_format(self)
 
2916
        if not isinstance(result, remote.RemoteBranchFormat):
 
2917
            new_result = remote.RemoteBranchFormat()
 
2918
            new_result._custom_format = result
 
2919
            # cache the result
 
2920
            self.set_branch_format(new_result)
 
2921
            result = new_result
 
2922
        return result
 
2923
 
 
2924
    repository_format = property(__return_repository_format,
 
2925
        BzrDirMetaFormat1._set_repository_format) #.im_func)
 
2926
 
 
2927
 
1908
2928
controldir.ControlDirFormat.register_server_prober(RemoteBzrProber)
1909
2929
 
1910
2930
 
2089
3109
    def _load(full_name):
2090
3110
        mod_name, factory_name = full_name.rsplit('.', 1)
2091
3111
        try:
2092
 
            factory = pyutils.get_named_object(mod_name, factory_name)
 
3112
            mod = __import__(mod_name, globals(), locals(),
 
3113
                    [factory_name])
2093
3114
        except ImportError, e:
2094
3115
            raise ImportError('failed to load %s: %s' % (full_name, e))
 
3116
        try:
 
3117
            factory = getattr(mod, factory_name)
2095
3118
        except AttributeError:
2096
3119
            raise AttributeError('no factory %s in module %r'
2097
 
                % (full_name, sys.modules[mod_name]))
 
3120
                % (full_name, mod))
2098
3121
        return factory()
2099
3122
 
2100
3123
    def helper():
2109
3132
    registry.register(key, helper, help, native, deprecated, hidden,
2110
3133
        experimental, alias)
2111
3134
 
 
3135
# The pre-0.8 formats have their repository format network name registered in
 
3136
# repository.py. MetaDir formats have their repository format network name
 
3137
# inferred from their disk format string.
 
3138
controldir.format_registry.register('weave', BzrDirFormat6,
 
3139
    'Pre-0.8 format.  Slower than knit and does not'
 
3140
    ' support checkouts or shared repositories.',
 
3141
    hidden=True,
 
3142
    deprecated=True)
 
3143
register_metadir(controldir.format_registry, 'metaweave',
 
3144
    'bzrlib.repofmt.weaverepo.RepositoryFormat7',
 
3145
    'Transitional format in 0.8.  Slower than knit.',
 
3146
    branch_format='bzrlib.branch.BzrBranchFormat5',
 
3147
    tree_format='bzrlib.workingtree.WorkingTreeFormat3',
 
3148
    hidden=True,
 
3149
    deprecated=True)
2112
3150
register_metadir(controldir.format_registry, 'knit',
2113
3151
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
2114
3152
    'Format using knits.  Recommended for interoperation with bzr <= 0.14.',
2154
3192
    hidden=True,
2155
3193
    )
2156
3194
register_metadir(controldir.format_registry, 'pack-0.92',
2157
 
    'bzrlib.repofmt.knitpack_repo.RepositoryFormatKnitPack1',
 
3195
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack1',
2158
3196
    help='New in 0.92: Pack-based format with data compatible with '
2159
3197
        'dirstate-tags format repositories. Interoperates with '
2160
3198
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
2163
3201
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
2164
3202
    )
2165
3203
register_metadir(controldir.format_registry, 'pack-0.92-subtree',
2166
 
    'bzrlib.repofmt.knitpack_repo.RepositoryFormatKnitPack3',
 
3204
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack3',
2167
3205
    help='New in 0.92: Pack-based format with data compatible with '
2168
3206
        'dirstate-with-subtree format repositories. Interoperates with '
2169
3207
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
2174
3212
    experimental=True,
2175
3213
    )
2176
3214
register_metadir(controldir.format_registry, 'rich-root-pack',
2177
 
    'bzrlib.repofmt.knitpack_repo.RepositoryFormatKnitPack4',
 
3215
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',
2178
3216
    help='New in 1.0: A variant of pack-0.92 that supports rich-root data '
2179
3217
         '(needed for bzr-svn and bzr-git).',
2180
3218
    branch_format='bzrlib.branch.BzrBranchFormat6',
2182
3220
    hidden=True,
2183
3221
    )
2184
3222
register_metadir(controldir.format_registry, '1.6',
2185
 
    'bzrlib.repofmt.knitpack_repo.RepositoryFormatKnitPack5',
 
3223
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5',
2186
3224
    help='A format that allows a branch to indicate that there is another '
2187
3225
         '(stacked) repository that should be used to access data that is '
2188
3226
         'not present locally.',
2191
3229
    hidden=True,
2192
3230
    )
2193
3231
register_metadir(controldir.format_registry, '1.6.1-rich-root',
2194
 
    'bzrlib.repofmt.knitpack_repo.RepositoryFormatKnitPack5RichRoot',
 
3232
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5RichRoot',
2195
3233
    help='A variant of 1.6 that supports rich-root data '
2196
3234
         '(needed for bzr-svn and bzr-git).',
2197
3235
    branch_format='bzrlib.branch.BzrBranchFormat7',
2199
3237
    hidden=True,
2200
3238
    )
2201
3239
register_metadir(controldir.format_registry, '1.9',
2202
 
    'bzrlib.repofmt.knitpack_repo.RepositoryFormatKnitPack6',
 
3240
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
2203
3241
    help='A repository format using B+tree indexes. These indexes '
2204
3242
         'are smaller in size, have smarter caching and provide faster '
2205
3243
         'performance for most operations.',
2208
3246
    hidden=True,
2209
3247
    )
2210
3248
register_metadir(controldir.format_registry, '1.9-rich-root',
2211
 
    'bzrlib.repofmt.knitpack_repo.RepositoryFormatKnitPack6RichRoot',
 
3249
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
2212
3250
    help='A variant of 1.9 that supports rich-root data '
2213
3251
         '(needed for bzr-svn and bzr-git).',
2214
3252
    branch_format='bzrlib.branch.BzrBranchFormat7',
2216
3254
    hidden=True,
2217
3255
    )
2218
3256
register_metadir(controldir.format_registry, '1.14',
2219
 
    'bzrlib.repofmt.knitpack_repo.RepositoryFormatKnitPack6',
 
3257
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
2220
3258
    help='A working-tree format that supports content filtering.',
2221
3259
    branch_format='bzrlib.branch.BzrBranchFormat7',
2222
3260
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
2223
3261
    )
2224
3262
register_metadir(controldir.format_registry, '1.14-rich-root',
2225
 
    'bzrlib.repofmt.knitpack_repo.RepositoryFormatKnitPack6RichRoot',
 
3263
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
2226
3264
    help='A variant of 1.14 that supports rich-root data '
2227
3265
         '(needed for bzr-svn and bzr-git).',
2228
3266
    branch_format='bzrlib.branch.BzrBranchFormat7',
2229
3267
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
2230
3268
    )
2231
3269
# The following un-numbered 'development' formats should always just be aliases.
 
3270
register_metadir(controldir.format_registry, 'development-rich-root',
 
3271
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK1',
 
3272
    help='Current development format. Supports rich roots. Can convert data '
 
3273
        'to and from rich-root-pack (and anything compatible with '
 
3274
        'rich-root-pack) format repositories. Repositories and branches in '
 
3275
        'this format can only be read by bzr.dev. Please read '
 
3276
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
3277
        'before use.',
 
3278
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3279
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
3280
    experimental=True,
 
3281
    alias=True,
 
3282
    hidden=True,
 
3283
    )
2232
3284
register_metadir(controldir.format_registry, 'development-subtree',
2233
 
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormat2aSubtree',
 
3285
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment2Subtree',
2234
3286
    help='Current development format, subtree variant. Can convert data to and '
2235
3287
        'from pack-0.92-subtree (and anything compatible with '
2236
3288
        'pack-0.92-subtree) format repositories. Repositories and branches in '
2245
3297
                 # This current non-alias status is simply because we did not introduce a
2246
3298
                 # chk based subtree format.
2247
3299
    )
2248
 
register_metadir(controldir.format_registry, 'development5-subtree',
2249
 
    'bzrlib.repofmt.knitpack_repo.RepositoryFormatPackDevelopment2Subtree',
2250
 
    help='Development format, subtree variant. Can convert data to and '
2251
 
        'from pack-0.92-subtree (and anything compatible with '
2252
 
        'pack-0.92-subtree) format repositories. Repositories and branches in '
2253
 
        'this format can only be read by bzr.dev. Please read '
2254
 
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
2255
 
        'before use.',
2256
 
    branch_format='bzrlib.branch.BzrBranchFormat7',
2257
 
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
2258
 
    experimental=True,
2259
 
    hidden=True,
2260
 
    alias=False,
2261
 
    )
2262
3300
 
2263
3301
# And the development formats above will have aliased one of the following:
2264
 
 
2265
 
# Finally, the current format.
 
3302
register_metadir(controldir.format_registry, 'development6-rich-root',
 
3303
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK1',
 
3304
    help='pack-1.9 with 255-way hashed CHK inv, group compress, rich roots '
 
3305
        'Please read '
 
3306
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
3307
        'before use.',
 
3308
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3309
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
3310
    hidden=True,
 
3311
    experimental=True,
 
3312
    )
 
3313
 
 
3314
register_metadir(controldir.format_registry, 'development7-rich-root',
 
3315
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK2',
 
3316
    help='pack-1.9 with 255-way hashed CHK inv, bencode revision, group compress, '
 
3317
        'rich roots. Please read '
 
3318
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
3319
        'before use.',
 
3320
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3321
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
3322
    hidden=True,
 
3323
    experimental=True,
 
3324
    )
 
3325
 
2266
3326
register_metadir(controldir.format_registry, '2a',
2267
3327
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormat2a',
2268
3328
    help='First format for bzr 2.0 series.\n'
2272
3332
        # 'rich roots. Supported by bzr 1.16 and later.',
2273
3333
    branch_format='bzrlib.branch.BzrBranchFormat7',
2274
3334
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
2275
 
    experimental=False,
 
3335
    experimental=True,
2276
3336
    )
2277
3337
 
2278
3338
# The following format should be an alias for the rich root equivalent 
2286
3346
    help='Same as 2a.')
2287
3347
 
2288
3348
# The current format that is made on 'bzr init'.
2289
 
format_name = config.GlobalConfig().get_user_option('default_format')
2290
 
if format_name is None:
2291
 
    controldir.format_registry.set_default('2a')
2292
 
else:
2293
 
    controldir.format_registry.set_default(format_name)
 
3349
controldir.format_registry.set_default('2a')
2294
3350
 
2295
3351
# XXX 2010-08-20 JRV: There is still a lot of code relying on
2296
3352
# bzrlib.bzrdir.format_registry existing. When BzrDir.create/BzrDir.open/etc