~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Vincent Ladeuil
  • Date: 2011-06-15 11:36:05 UTC
  • mto: This revision was merged to the branch mainline in revision 5975.
  • Revision ID: v.ladeuil+lp@free.fr-20110615113605-p7zyyfry9wy1hquc
Make ContentConflict resolution more robust

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
    do_catching_redirections,
56
56
    local,
57
57
    )
58
 
from bzrlib.i18n import gettext
59
58
""")
60
59
 
61
60
from bzrlib.trace import (
66
65
from bzrlib import (
67
66
    config,
68
67
    controldir,
 
68
    hooks,
69
69
    registry,
70
70
    )
71
71
from bzrlib.symbol_versioning import (
221
221
            # the tree and fail.
222
222
            result.root_transport.local_abspath('.')
223
223
            if result_repo is None or result_repo.make_working_trees():
224
 
                self.open_workingtree().clone(result, revision_id=revision_id)
 
224
                self.open_workingtree().clone(result)
225
225
        except (errors.NoWorkingTree, errors.NotLocalUrl):
226
226
            pass
227
227
        return result
232
232
        t = _mod_transport.get_transport(url)
233
233
        t.ensure_base()
234
234
 
 
235
    @staticmethod
 
236
    def find_bzrdirs(transport, evaluate=None, list_current=None):
 
237
        """Find bzrdirs recursively from current location.
 
238
 
 
239
        This is intended primarily as a building block for more sophisticated
 
240
        functionality, like finding trees under a directory, or finding
 
241
        branches that use a given repository.
 
242
 
 
243
        :param evaluate: An optional callable that yields recurse, value,
 
244
            where recurse controls whether this bzrdir is recursed into
 
245
            and value is the value to yield.  By default, all bzrdirs
 
246
            are recursed into, and the return value is the bzrdir.
 
247
        :param list_current: if supplied, use this function to list the current
 
248
            directory, instead of Transport.list_dir
 
249
        :return: a generator of found bzrdirs, or whatever evaluate returns.
 
250
        """
 
251
        if list_current is None:
 
252
            def list_current(transport):
 
253
                return transport.list_dir('')
 
254
        if evaluate is None:
 
255
            def evaluate(bzrdir):
 
256
                return True, bzrdir
 
257
 
 
258
        pending = [transport]
 
259
        while len(pending) > 0:
 
260
            current_transport = pending.pop()
 
261
            recurse = True
 
262
            try:
 
263
                bzrdir = BzrDir.open_from_transport(current_transport)
 
264
            except (errors.NotBranchError, errors.PermissionDenied):
 
265
                pass
 
266
            else:
 
267
                recurse, value = evaluate(bzrdir)
 
268
                yield value
 
269
            try:
 
270
                subdirs = list_current(current_transport)
 
271
            except (errors.NoSuchFile, errors.PermissionDenied):
 
272
                continue
 
273
            if recurse:
 
274
                for subdir in sorted(subdirs, reverse=True):
 
275
                    pending.append(current_transport.clone(subdir))
 
276
 
 
277
    @staticmethod
 
278
    def find_branches(transport):
 
279
        """Find all branches under a transport.
 
280
 
 
281
        This will find all branches below the transport, including branches
 
282
        inside other branches.  Where possible, it will use
 
283
        Repository.find_branches.
 
284
 
 
285
        To list all the branches that use a particular Repository, see
 
286
        Repository.find_branches
 
287
        """
 
288
        def evaluate(bzrdir):
 
289
            try:
 
290
                repository = bzrdir.open_repository()
 
291
            except errors.NoRepositoryPresent:
 
292
                pass
 
293
            else:
 
294
                return False, ([], repository)
 
295
            return True, (bzrdir.list_branches(), None)
 
296
        ret = []
 
297
        for branches, repo in BzrDir.find_bzrdirs(transport,
 
298
                                                  evaluate=evaluate):
 
299
            if repo is not None:
 
300
                ret.extend(repo.find_branches())
 
301
            if branches is not None:
 
302
                ret.extend(branches)
 
303
        return ret
 
304
 
 
305
    @staticmethod
 
306
    def create_branch_and_repo(base, force_new_repo=False, format=None):
 
307
        """Create a new BzrDir, Branch and Repository at the url 'base'.
 
308
 
 
309
        This will use the current default BzrDirFormat unless one is
 
310
        specified, and use whatever
 
311
        repository format that that uses via bzrdir.create_branch and
 
312
        create_repository. If a shared repository is available that is used
 
313
        preferentially.
 
314
 
 
315
        The created Branch object is returned.
 
316
 
 
317
        :param base: The URL to create the branch at.
 
318
        :param force_new_repo: If True a new repository is always created.
 
319
        :param format: If supplied, the format of branch to create.  If not
 
320
            supplied, the default is used.
 
321
        """
 
322
        bzrdir = BzrDir.create(base, format)
 
323
        bzrdir._find_or_create_repository(force_new_repo)
 
324
        return bzrdir.create_branch()
 
325
 
235
326
    def determine_repository_policy(self, force_new_repo=False, stack_on=None,
236
327
                                    stack_on_pwd=None, require_stacking=False):
237
328
        """Return an object representing a policy to use.
452
543
                    stacked=stacked)
453
544
        return result
454
545
 
 
546
 
 
547
 
 
548
    @staticmethod
 
549
    def create_branch_convenience(base, force_new_repo=False,
 
550
                                  force_new_tree=None, format=None,
 
551
                                  possible_transports=None):
 
552
        """Create a new BzrDir, Branch and Repository at the url 'base'.
 
553
 
 
554
        This is a convenience function - it will use an existing repository
 
555
        if possible, can be told explicitly whether to create a working tree or
 
556
        not.
 
557
 
 
558
        This will use the current default BzrDirFormat unless one is
 
559
        specified, and use whatever
 
560
        repository format that that uses via bzrdir.create_branch and
 
561
        create_repository. If a shared repository is available that is used
 
562
        preferentially. Whatever repository is used, its tree creation policy
 
563
        is followed.
 
564
 
 
565
        The created Branch object is returned.
 
566
        If a working tree cannot be made due to base not being a file:// url,
 
567
        no error is raised unless force_new_tree is True, in which case no
 
568
        data is created on disk and NotLocalUrl is raised.
 
569
 
 
570
        :param base: The URL to create the branch at.
 
571
        :param force_new_repo: If True a new repository is always created.
 
572
        :param force_new_tree: If True or False force creation of a tree or
 
573
                               prevent such creation respectively.
 
574
        :param format: Override for the bzrdir format to create.
 
575
        :param possible_transports: An optional reusable transports list.
 
576
        """
 
577
        if force_new_tree:
 
578
            # check for non local urls
 
579
            t = _mod_transport.get_transport(base, possible_transports)
 
580
            if not isinstance(t, local.LocalTransport):
 
581
                raise errors.NotLocalUrl(base)
 
582
        bzrdir = BzrDir.create(base, format, possible_transports)
 
583
        repo = bzrdir._find_or_create_repository(force_new_repo)
 
584
        result = bzrdir.create_branch()
 
585
        if force_new_tree or (repo.make_working_trees() and
 
586
                              force_new_tree is None):
 
587
            try:
 
588
                bzrdir.create_workingtree()
 
589
            except errors.NotLocalUrl:
 
590
                pass
 
591
        return result
 
592
 
 
593
    @staticmethod
 
594
    def create_standalone_workingtree(base, format=None):
 
595
        """Create a new BzrDir, WorkingTree, Branch and Repository at 'base'.
 
596
 
 
597
        'base' must be a local path or a file:// url.
 
598
 
 
599
        This will use the current default BzrDirFormat unless one is
 
600
        specified, and use whatever
 
601
        repository format that that uses for bzrdirformat.create_workingtree,
 
602
        create_branch and create_repository.
 
603
 
 
604
        :param format: Override for the bzrdir format to create.
 
605
        :return: The WorkingTree object.
 
606
        """
 
607
        t = _mod_transport.get_transport(base)
 
608
        if not isinstance(t, local.LocalTransport):
 
609
            raise errors.NotLocalUrl(base)
 
610
        bzrdir = BzrDir.create_branch_and_repo(base,
 
611
                                               force_new_repo=True,
 
612
                                               format=format).bzrdir
 
613
        return bzrdir.create_workingtree()
 
614
 
455
615
    @deprecated_method(deprecated_in((2, 3, 0)))
456
616
    def generate_backup_name(self, base):
457
617
        return self._available_backup_name(base)
474
634
            old_path = self.root_transport.abspath('.bzr')
475
635
            backup_dir = self._available_backup_name('backup.bzr')
476
636
            new_path = self.root_transport.abspath(backup_dir)
477
 
            ui.ui_factory.note(gettext('making backup of {0}\n  to {1}').format(
478
 
                urlutils.unescape_for_display(old_path, 'utf-8'),
479
 
                urlutils.unescape_for_display(new_path, 'utf-8')))
 
637
            ui.ui_factory.note('making backup of %s\n  to %s'
 
638
                               % (old_path, new_path,))
480
639
            self.root_transport.copy_tree('.bzr', backup_dir)
481
640
            return (old_path, new_path)
482
641
        finally:
497
656
            try:
498
657
                to_path = '.bzr.retired.%d' % i
499
658
                self.root_transport.rename('.bzr', to_path)
500
 
                note(gettext("renamed {0} to {1}").format(
501
 
                    self.root_transport.abspath('.bzr'), to_path))
 
659
                note("renamed %s to %s"
 
660
                    % (self.root_transport.abspath('.bzr'), to_path))
502
661
                return
503
662
            except (errors.TransportError, IOError, errors.PathError):
504
663
                i += 1
531
690
                return None
532
691
            # find the next containing bzrdir
533
692
            try:
534
 
                found_bzrdir = self.open_containing_from_transport(
 
693
                found_bzrdir = BzrDir.open_containing_from_transport(
535
694
                    next_transport)[0]
536
695
            except errors.NotBranchError:
537
696
                return None
654
813
        # add new tests for it to the appropriate place.
655
814
        return filename == '.bzr' or filename.startswith('.bzr/')
656
815
 
 
816
    @staticmethod
 
817
    def open_unsupported(base):
 
818
        """Open a branch which is not supported."""
 
819
        return BzrDir.open(base, _unsupported=True)
 
820
 
 
821
    @staticmethod
 
822
    def open(base, _unsupported=False, possible_transports=None):
 
823
        """Open an existing bzrdir, rooted at 'base' (url).
 
824
 
 
825
        :param _unsupported: a private parameter to the BzrDir class.
 
826
        """
 
827
        t = _mod_transport.get_transport(base, possible_transports)
 
828
        return BzrDir.open_from_transport(t, _unsupported=_unsupported)
 
829
 
 
830
    @staticmethod
 
831
    def open_from_transport(transport, _unsupported=False,
 
832
                            _server_formats=True):
 
833
        """Open a bzrdir within a particular directory.
 
834
 
 
835
        :param transport: Transport containing the bzrdir.
 
836
        :param _unsupported: private.
 
837
        """
 
838
        for hook in BzrDir.hooks['pre_open']:
 
839
            hook(transport)
 
840
        # Keep initial base since 'transport' may be modified while following
 
841
        # the redirections.
 
842
        base = transport.base
 
843
        def find_format(transport):
 
844
            return transport, controldir.ControlDirFormat.find_format(
 
845
                transport, _server_formats=_server_formats)
 
846
 
 
847
        def redirected(transport, e, redirection_notice):
 
848
            redirected_transport = transport._redirected_to(e.source, e.target)
 
849
            if redirected_transport is None:
 
850
                raise errors.NotBranchError(base)
 
851
            note('%s is%s redirected to %s',
 
852
                 transport.base, e.permanently, redirected_transport.base)
 
853
            return redirected_transport
 
854
 
 
855
        try:
 
856
            transport, format = do_catching_redirections(find_format,
 
857
                                                         transport,
 
858
                                                         redirected)
 
859
        except errors.TooManyRedirections:
 
860
            raise errors.NotBranchError(base)
 
861
 
 
862
        format.check_support_status(_unsupported)
 
863
        return format.open(transport, _found=True)
 
864
 
 
865
    @staticmethod
 
866
    def open_containing(url, possible_transports=None):
 
867
        """Open an existing branch which contains url.
 
868
 
 
869
        :param url: url to search from.
 
870
 
 
871
        See open_containing_from_transport for more detail.
 
872
        """
 
873
        transport = _mod_transport.get_transport(url, possible_transports)
 
874
        return BzrDir.open_containing_from_transport(transport)
 
875
 
 
876
    @staticmethod
 
877
    def open_containing_from_transport(a_transport):
 
878
        """Open an existing branch which contains a_transport.base.
 
879
 
 
880
        This probes for a branch at a_transport, and searches upwards from there.
 
881
 
 
882
        Basically we keep looking up until we find the control directory or
 
883
        run into the root.  If there isn't one, raises NotBranchError.
 
884
        If there is one and it is either an unrecognised format or an unsupported
 
885
        format, UnknownFormatError or UnsupportedFormatError are raised.
 
886
        If there is one, it is returned, along with the unused portion of url.
 
887
 
 
888
        :return: The BzrDir that contains the path, and a Unicode path
 
889
                for the rest of the URL.
 
890
        """
 
891
        # this gets the normalised url back. I.e. '.' -> the full path.
 
892
        url = a_transport.base
 
893
        while True:
 
894
            try:
 
895
                result = BzrDir.open_from_transport(a_transport)
 
896
                return result, urlutils.unescape(a_transport.relpath(url))
 
897
            except errors.NotBranchError, e:
 
898
                pass
 
899
            try:
 
900
                new_t = a_transport.clone('..')
 
901
            except errors.InvalidURLJoin:
 
902
                # reached the root, whatever that may be
 
903
                raise errors.NotBranchError(path=url)
 
904
            if new_t.base == a_transport.base:
 
905
                # reached the root, whatever that may be
 
906
                raise errors.NotBranchError(path=url)
 
907
            a_transport = new_t
 
908
 
 
909
    @classmethod
 
910
    def open_tree_or_branch(klass, location):
 
911
        """Return the branch and working tree at a location.
 
912
 
 
913
        If there is no tree at the location, tree will be None.
 
914
        If there is no branch at the location, an exception will be
 
915
        raised
 
916
        :return: (tree, branch)
 
917
        """
 
918
        bzrdir = klass.open(location)
 
919
        return bzrdir._get_tree_branch()
 
920
 
 
921
    @classmethod
 
922
    def open_containing_tree_or_branch(klass, location):
 
923
        """Return the branch and working tree contained by a location.
 
924
 
 
925
        Returns (tree, branch, relpath).
 
926
        If there is no tree at containing the location, tree will be None.
 
927
        If there is no branch containing the location, an exception will be
 
928
        raised
 
929
        relpath is the portion of the path that is contained by the branch.
 
930
        """
 
931
        bzrdir, relpath = klass.open_containing(location)
 
932
        tree, branch = bzrdir._get_tree_branch()
 
933
        return tree, branch, relpath
 
934
 
 
935
    @classmethod
 
936
    def open_containing_tree_branch_or_repository(klass, location):
 
937
        """Return the working tree, branch and repo contained by a location.
 
938
 
 
939
        Returns (tree, branch, repository, relpath).
 
940
        If there is no tree containing the location, tree will be None.
 
941
        If there is no branch containing the location, branch will be None.
 
942
        If there is no repository containing the location, repository will be
 
943
        None.
 
944
        relpath is the portion of the path that is contained by the innermost
 
945
        BzrDir.
 
946
 
 
947
        If no tree, branch or repository is found, a NotBranchError is raised.
 
948
        """
 
949
        bzrdir, relpath = klass.open_containing(location)
 
950
        try:
 
951
            tree, branch = bzrdir._get_tree_branch()
 
952
        except errors.NotBranchError:
 
953
            try:
 
954
                repo = bzrdir.find_repository()
 
955
                return None, None, repo, relpath
 
956
            except (errors.NoRepositoryPresent):
 
957
                raise errors.NotBranchError(location)
 
958
        return tree, branch, branch.repository, relpath
 
959
 
657
960
    def _cloning_metadir(self):
658
961
        """Produce a metadir suitable for cloning with.
659
962
 
699
1002
 
700
1003
        :require_stacking: If True, non-stackable formats will be upgraded
701
1004
            to similar stackable formats.
702
 
        :returns: a ControlDirFormat with all component formats either set
 
1005
        :returns: a BzrDirFormat with all component formats either set
703
1006
            appropriately or set to None if that component should not be
704
1007
            created.
705
1008
        """
717
1020
            format.require_stacking()
718
1021
        return format
719
1022
 
 
1023
    @classmethod
 
1024
    def create(cls, base, format=None, possible_transports=None):
 
1025
        """Create a new BzrDir at the url 'base'.
 
1026
 
 
1027
        :param format: If supplied, the format of branch to create.  If not
 
1028
            supplied, the default is used.
 
1029
        :param possible_transports: If supplied, a list of transports that
 
1030
            can be reused to share a remote connection.
 
1031
        """
 
1032
        if cls is not BzrDir:
 
1033
            raise AssertionError("BzrDir.create always creates the"
 
1034
                "default format, not one of %r" % cls)
 
1035
        t = _mod_transport.get_transport(base, possible_transports)
 
1036
        t.ensure_base()
 
1037
        if format is None:
 
1038
            format = controldir.ControlDirFormat.get_default_format()
 
1039
        return format.initialize_on_transport(t)
 
1040
 
720
1041
    def get_branch_transport(self, branch_format, name=None):
721
1042
        """Get the transport for use by branch format in this BzrDir.
722
1043
 
756
1077
        """
757
1078
        raise NotImplementedError(self.get_workingtree_transport)
758
1079
 
759
 
    @classmethod
760
 
    def create(cls, base, format=None, possible_transports=None):
761
 
        """Create a new BzrDir at the url 'base'.
762
 
 
763
 
        :param format: If supplied, the format of branch to create.  If not
764
 
            supplied, the default is used.
765
 
        :param possible_transports: If supplied, a list of transports that
766
 
            can be reused to share a remote connection.
 
1080
 
 
1081
class BzrDirHooks(hooks.Hooks):
 
1082
    """Hooks for BzrDir operations."""
 
1083
 
 
1084
    def __init__(self):
 
1085
        """Create the default hooks."""
 
1086
        hooks.Hooks.__init__(self, "bzrlib.bzrdir", "BzrDir.hooks")
 
1087
        self.add_hook('pre_open',
 
1088
            "Invoked before attempting to open a BzrDir with the transport "
 
1089
            "that the open will use.", (1, 14))
 
1090
        self.add_hook('post_repo_init',
 
1091
            "Invoked after a repository has been initialized. "
 
1092
            "post_repo_init is called with a "
 
1093
            "bzrlib.bzrdir.RepoInitHookParams.",
 
1094
            (2, 2))
 
1095
 
 
1096
# install the default hooks
 
1097
BzrDir.hooks = BzrDirHooks()
 
1098
 
 
1099
 
 
1100
class RepoInitHookParams(object):
 
1101
    """Object holding parameters passed to `*_repo_init` hooks.
 
1102
 
 
1103
    There are 4 fields that hooks may wish to access:
 
1104
 
 
1105
    :ivar repository: Repository created
 
1106
    :ivar format: Repository format
 
1107
    :ivar bzrdir: The bzrdir for the repository
 
1108
    :ivar shared: The repository is shared
 
1109
    """
 
1110
 
 
1111
    def __init__(self, repository, format, a_bzrdir, shared):
 
1112
        """Create a group of RepoInitHook parameters.
 
1113
 
 
1114
        :param repository: Repository created
 
1115
        :param format: Repository format
 
1116
        :param bzrdir: The bzrdir for the repository
 
1117
        :param shared: The repository is shared
767
1118
        """
768
 
        if cls is not BzrDir:
769
 
            raise AssertionError("BzrDir.create always creates the "
770
 
                "default format, not one of %r" % cls)
771
 
        return controldir.ControlDir.create(base, format=format,
772
 
                possible_transports=possible_transports)
 
1119
        self.repository = repository
 
1120
        self.format = format
 
1121
        self.bzrdir = a_bzrdir
 
1122
        self.shared = shared
 
1123
 
 
1124
    def __eq__(self, other):
 
1125
        return self.__dict__ == other.__dict__
 
1126
 
 
1127
    def __repr__(self):
 
1128
        if self.repository:
 
1129
            return "<%s for %s>" % (self.__class__.__name__,
 
1130
                self.repository)
 
1131
        else:
 
1132
            return "<%s for %s>" % (self.__class__.__name__,
 
1133
                self.bzrdir)
773
1134
 
774
1135
 
775
1136
class BzrDirMeta1(BzrDir):
785
1146
        """See BzrDir.can_convert_format()."""
786
1147
        return True
787
1148
 
788
 
    def create_branch(self, name=None, repository=None,
789
 
            append_revisions_only=None):
 
1149
    def create_branch(self, name=None, repository=None):
790
1150
        """See BzrDir.create_branch."""
791
1151
        return self._format.get_branch_format().initialize(self, name=name,
792
 
                repository=repository,
793
 
                append_revisions_only=append_revisions_only)
 
1152
                repository=repository)
794
1153
 
795
1154
    def destroy_branch(self, name=None):
796
1155
        """See BzrDir.create_branch."""
908
1267
 
909
1268
    def needs_format_conversion(self, format):
910
1269
        """See BzrDir.needs_format_conversion()."""
911
 
        if (not isinstance(self._format, format.__class__) or
912
 
            self._format.get_format_string() != format.get_format_string()):
 
1270
        if not isinstance(self._format, format.__class__):
913
1271
            # it is not a meta dir format, conversion is needed.
914
1272
            return True
915
1273
        # we might want to push this down to the repository?
963
1321
        return config.TransportConfig(self.transport, 'control.conf')
964
1322
 
965
1323
 
966
 
class BzrDirMeta1Colo(BzrDirMeta1):
967
 
    """BzrDirMeta1 with support for colocated branches.
968
 
 
969
 
    This format is experimental, and will eventually be merged back into
970
 
    BzrDirMeta1.
971
 
    """
972
 
 
973
 
    def __init__(self, _transport, _format):
974
 
        super(BzrDirMeta1Colo, self).__init__(_transport, _format)
975
 
        self.control_files = lockable_files.LockableFiles(_transport,
976
 
            self._format._lock_file_name, self._format._lock_class)
977
 
 
978
 
    def _get_branch_path(self, name):
979
 
        """Obtain the branch path to use.
980
 
 
981
 
        This uses the API specified branch name first, and then falls back to
982
 
        the branch name specified in the URL. If neither of those is specified,
983
 
        it uses the default branch.
984
 
 
985
 
        :param name: Optional branch name to use
986
 
        :return: Relative path to branch, branch name
987
 
        """
988
 
        if name is None:
989
 
            name = self._get_selected_branch()
990
 
        if name is None:
991
 
            return 'branch', None
992
 
        return urlutils.join('branches', name), name
993
 
 
994
 
    def _read_branch_list(self):
995
 
        """Read the branch list.
996
 
 
997
 
        :return: List of utf-8 encoded branch names.
998
 
        """
999
 
        try:
1000
 
            f = self.control_transport.get('branch-list')
1001
 
        except errors.NoSuchFile:
1002
 
            return []
1003
 
 
1004
 
        ret = []
1005
 
        try:
1006
 
            for name in f:
1007
 
                ret.append(name.rstrip("\n"))
1008
 
        finally:
1009
 
            f.close()
1010
 
        return ret
1011
 
 
1012
 
    def _write_branch_list(self, branches):
1013
 
        """Write out the branch list.
1014
 
 
1015
 
        :param branches: List of utf-8 branch names to write
1016
 
        """
1017
 
        self.transport.put_bytes('branch-list',
1018
 
            "".join([name+"\n" for name in branches]))
1019
 
 
1020
 
    def destroy_branch(self, name=None):
1021
 
        """See BzrDir.create_branch."""
1022
 
        path, name = self._get_branch_path(name)
1023
 
        if name is not None:
1024
 
            self.control_files.lock_write()
1025
 
            try:
1026
 
                branches = self._read_branch_list()
1027
 
                try:
1028
 
                    branches.remove(name)
1029
 
                except ValueError:
1030
 
                    raise errors.NotBranchError(name)
1031
 
                self._write_branch_list(name)
1032
 
            finally:
1033
 
                self.control_files.unlock()
1034
 
        self.transport.delete_tree(path)
1035
 
 
1036
 
    def list_branches(self):
1037
 
        """See ControlDir.list_branches."""
1038
 
        ret = []
1039
 
        # Default branch
1040
 
        try:
1041
 
            ret.append(self.open_branch())
1042
 
        except (errors.NotBranchError, errors.NoRepositoryPresent):
1043
 
            pass
1044
 
 
1045
 
        # colocated branches
1046
 
        ret.extend([self.open_branch(name) for name in
1047
 
                    self._read_branch_list()])
1048
 
 
1049
 
        return ret
1050
 
 
1051
 
    def get_branch_transport(self, branch_format, name=None):
1052
 
        """See BzrDir.get_branch_transport()."""
1053
 
        path, name = self._get_branch_path(name)
1054
 
        # XXX: this shouldn't implicitly create the directory if it's just
1055
 
        # promising to get a transport -- mbp 20090727
1056
 
        if branch_format is None:
1057
 
            return self.transport.clone(path)
1058
 
        try:
1059
 
            branch_format.get_format_string()
1060
 
        except NotImplementedError:
1061
 
            raise errors.IncompatibleFormat(branch_format, self._format)
1062
 
        if name is not None:
1063
 
            try:
1064
 
                self.transport.mkdir('branches', mode=self._get_mkdir_mode())
1065
 
            except errors.FileExists:
1066
 
                pass
1067
 
            branches = self._read_branch_list()
1068
 
            if not name in branches:
1069
 
                self.control_files.lock_write()
1070
 
                try:
1071
 
                    branches = self._read_branch_list()
1072
 
                    branches.append(name)
1073
 
                    self._write_branch_list(branches)
1074
 
                finally:
1075
 
                    self.control_files.unlock()
1076
 
        try:
1077
 
            self.transport.mkdir(path, mode=self._get_mkdir_mode())
1078
 
        except errors.FileExists:
1079
 
            pass
1080
 
        return self.transport.clone(path)
1081
 
 
1082
 
 
1083
1324
class BzrProber(controldir.Prober):
1084
1325
    """Prober for formats that use a .bzr/ control directory."""
1085
1326
 
1368
1609
        :return: None.
1369
1610
        """
1370
1611
 
1371
 
    def supports_transport(self, transport):
1372
 
        # bzr formats can be opened over all known transports
1373
 
        return True
1374
 
 
1375
1612
 
1376
1613
class BzrDirMetaFormat1(BzrDirFormat):
1377
1614
    """Bzr meta control format 1
1390
1627
 
1391
1628
    fixed_components = False
1392
1629
 
1393
 
    colocated_branches = False
1394
 
 
1395
1630
    def __init__(self):
1396
1631
        self._workingtree_format = None
1397
1632
        self._branch_format = None
1487
1722
                    new_repo_format = None
1488
1723
            if new_repo_format is not None:
1489
1724
                self.repository_format = new_repo_format
1490
 
                note(gettext('Source repository format does not support stacking,'
1491
 
                     ' using format:\n  %s'),
 
1725
                note('Source repository format does not support stacking,'
 
1726
                     ' using format:\n  %s',
1492
1727
                     new_repo_format.get_format_description())
1493
1728
 
1494
1729
        if not self.get_branch_format().supports_stacking():
1507
1742
            if new_branch_format is not None:
1508
1743
                # Does support stacking, use its format.
1509
1744
                self.set_branch_format(new_branch_format)
1510
 
                note(gettext('Source branch format does not support stacking,'
1511
 
                     ' using format:\n  %s'),
 
1745
                note('Source branch format does not support stacking,'
 
1746
                     ' using format:\n  %s',
1512
1747
                     new_branch_format.get_format_description())
1513
1748
 
1514
1749
    def get_converter(self, format=None):
1515
1750
        """See BzrDirFormat.get_converter()."""
1516
1751
        if format is None:
1517
1752
            format = BzrDirFormat.get_default_format()
1518
 
        if (type(self) is BzrDirMetaFormat1 and
1519
 
            type(format) is BzrDirMetaFormat1Colo):
1520
 
            return ConvertMetaToColo(format)
1521
 
        if (type(self) is BzrDirMetaFormat1Colo and
1522
 
            type(format) is BzrDirMetaFormat1):
1523
 
            return ConvertMetaRemoveColo(format)
1524
1753
        if not isinstance(self, format.__class__):
1525
1754
            # converting away from metadir is not implemented
1526
1755
            raise NotImplementedError(self.get_converter)
1600
1829
controldir.ControlDirFormat._default_format = BzrDirMetaFormat1()
1601
1830
 
1602
1831
 
1603
 
class BzrDirMetaFormat1Colo(BzrDirMetaFormat1):
1604
 
    """BzrDirMeta1 format with support for colocated branches."""
1605
 
 
1606
 
    colocated_branches = True
1607
 
 
1608
 
    @classmethod
1609
 
    def get_format_string(cls):
1610
 
        """See BzrDirFormat.get_format_string()."""
1611
 
        return "Bazaar meta directory, format 1 (with colocated branches)\n"
1612
 
 
1613
 
    def get_format_description(self):
1614
 
        """See BzrDirFormat.get_format_description()."""
1615
 
        return "Meta directory format 1 with support for colocated branches"
1616
 
 
1617
 
    def _open(self, transport):
1618
 
        """See BzrDirFormat._open."""
1619
 
        # Create a new format instance because otherwise initialisation of new
1620
 
        # metadirs share the global default format object leading to alias
1621
 
        # problems.
1622
 
        format = BzrDirMetaFormat1Colo()
1623
 
        self._supply_sub_formats_to(format)
1624
 
        return BzrDirMeta1Colo(transport, format)
1625
 
 
1626
 
 
1627
 
BzrProber.formats.register(BzrDirMetaFormat1Colo.get_format_string(),
1628
 
    BzrDirMetaFormat1Colo)
1629
 
 
1630
 
 
1631
1832
class ConvertMetaToMeta(controldir.Converter):
1632
1833
    """Converts the components of metadirs."""
1633
1834
 
1652
1853
        else:
1653
1854
            if not isinstance(repo._format, self.target_format.repository_format.__class__):
1654
1855
                from bzrlib.repository import CopyConverter
1655
 
                ui.ui_factory.note(gettext('starting repository conversion'))
 
1856
                ui.ui_factory.note('starting repository conversion')
1656
1857
                converter = CopyConverter(self.target_format.repository_format)
1657
1858
                converter.convert(repo, pb)
1658
1859
        for branch in self.bzrdir.list_branches():
1706
1907
        return to_convert
1707
1908
 
1708
1909
 
1709
 
class ConvertMetaToColo(controldir.Converter):
1710
 
    """Add colocated branch support."""
1711
 
 
1712
 
    def __init__(self, target_format):
1713
 
        """Create a converter.that upgrades a metadir to the colo format.
1714
 
 
1715
 
        :param target_format: The final metadir format that is desired.
1716
 
        """
1717
 
        self.target_format = target_format
1718
 
 
1719
 
    def convert(self, to_convert, pb):
1720
 
        """See Converter.convert()."""
1721
 
        to_convert.transport.put_bytes('branch-format',
1722
 
            self.target_format.get_format_string())
1723
 
        return BzrDir.open_from_transport(to_convert.root_transport)
1724
 
 
1725
 
 
1726
 
class ConvertMetaRemoveColo(controldir.Converter):
1727
 
    """Remove colocated branch support from a bzrdir."""
1728
 
 
1729
 
    def __init__(self, target_format):
1730
 
        """Create a converter.that downgrades a colocated branch metadir
1731
 
        to a regular metadir.
1732
 
 
1733
 
        :param target_format: The final metadir format that is desired.
1734
 
        """
1735
 
        self.target_format = target_format
1736
 
 
1737
 
    def convert(self, to_convert, pb):
1738
 
        """See Converter.convert()."""
1739
 
        to_convert.control_files.lock_write()
1740
 
        try:
1741
 
            branches = to_convert.list_branches()
1742
 
            if len(branches) > 1:
1743
 
                raise errors.BzrError("remove all but a single "
1744
 
                    "colocated branch when downgrading")
1745
 
        finally:
1746
 
            to_convert.control_files.unlock()
1747
 
        to_convert.transport.put_bytes('branch-format',
1748
 
            self.target_format.get_format_string())
1749
 
        return BzrDir.open_from_transport(to_convert.root_transport)
1750
 
 
1751
 
 
1752
1910
controldir.ControlDirFormat.register_server_prober(RemoteBzrProber)
1753
1911
 
1754
1912
 
1874
2032
                                    possible_transports=[self._bzrdir.root_transport])
1875
2033
            if not self._require_stacking:
1876
2034
                # We have picked up automatic stacking somewhere.
1877
 
                note(gettext('Using default stacking branch {0} at {1}').format(
1878
 
                    self._stack_on, self._stack_on_pwd))
 
2035
                note('Using default stacking branch %s at %s', self._stack_on,
 
2036
                    self._stack_on_pwd)
1879
2037
        repository = self._bzrdir.create_repository(shared=shared)
1880
2038
        self._add_fallback(repository,
1881
2039
                           possible_transports=[self._bzrdir.transport])
1916
2074
         tree_format=None,
1917
2075
         hidden=False,
1918
2076
         experimental=False,
1919
 
         alias=False, bzrdir_format=None):
 
2077
         alias=False):
1920
2078
    """Register a metadir subformat.
1921
2079
 
1922
 
    These all use a meta bzrdir, but can be parameterized by the
1923
 
    Repository/Branch/WorkingTreeformats.
 
2080
    These all use a BzrDirMetaFormat1 bzrdir, but can be parameterized
 
2081
    by the Repository/Branch/WorkingTreeformats.
1924
2082
 
1925
2083
    :param repository_format: The fully-qualified repository format class
1926
2084
        name as a string.
1929
2087
    :param tree_format: Fully-qualified tree format class name as
1930
2088
        a string.
1931
2089
    """
1932
 
    if bzrdir_format is None:
1933
 
        bzrdir_format = BzrDirMetaFormat1
1934
2090
    # This should be expanded to support setting WorkingTree and Branch
1935
 
    # formats, once the API supports that.
 
2091
    # formats, once BzrDirMetaFormat1 supports that.
1936
2092
    def _load(full_name):
1937
2093
        mod_name, factory_name = full_name.rsplit('.', 1)
1938
2094
        try:
1945
2101
        return factory()
1946
2102
 
1947
2103
    def helper():
1948
 
        bd = bzrdir_format()
 
2104
        bd = BzrDirMetaFormat1()
1949
2105
        if branch_format is not None:
1950
2106
            bd.set_branch_format(_load(branch_format))
1951
2107
        if tree_format is not None:
2105
2261
    alias=False,
2106
2262
    )
2107
2263
 
2108
 
register_metadir(controldir.format_registry, 'development-colo',
2109
 
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormat2a',
2110
 
    help='The 2a format with experimental support for colocated branches.\n',
2111
 
    branch_format='bzrlib.branch.BzrBranchFormat7',
2112
 
    tree_format='bzrlib.workingtree_4.WorkingTreeFormat6',
2113
 
    experimental=False,
2114
 
    bzrdir_format=BzrDirMetaFormat1Colo,
2115
 
    )
2116
 
 
2117
 
 
2118
2264
# And the development formats above will have aliased one of the following:
2119
2265
 
2120
2266
# Finally, the current format.
2141
2287
    help='Same as 2a.')
2142
2288
 
2143
2289
# The current format that is made on 'bzr init'.
2144
 
format_name = config.GlobalStack().get('default_format')
2145
 
controldir.format_registry.set_default(format_name)
 
2290
format_name = config.GlobalConfig().get_user_option('default_format')
 
2291
if format_name is None:
 
2292
    controldir.format_registry.set_default('2a')
 
2293
else:
 
2294
    controldir.format_registry.set_default(format_name)
2146
2295
 
2147
2296
# XXX 2010-08-20 JRV: There is still a lot of code relying on
2148
2297
# bzrlib.bzrdir.format_registry existing. When BzrDir.create/BzrDir.open/etc