~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-06-18 20:25:52 UTC
  • mfrom: (4413.5.15 1.16-chk-direct)
  • Revision ID: pqm@pqm.ubuntu.com-20090618202552-xyl6tcvbxtm8bupf
(jam) Improve initial commit performance by creating a CHKMap in bulk,
        rather than via O(tree) map() calls.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008, 2009 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
29
29
 
30
30
import os
31
31
import sys
32
 
import warnings
33
32
 
34
33
from bzrlib.lazy_import import lazy_import
35
34
lazy_import(globals(), """
36
35
from stat import S_ISDIR
 
36
import textwrap
37
37
 
38
38
import bzrlib
39
39
from bzrlib import (
40
40
    branch,
41
41
    config,
42
 
    controldir,
43
42
    errors,
44
43
    graph,
45
44
    lockable_files,
71
70
    do_catching_redirections,
72
71
    get_transport,
73
72
    local,
 
73
    remote as remote_transport,
74
74
    )
75
75
from bzrlib.weave import Weave
76
76
""")
78
78
from bzrlib.trace import (
79
79
    mutter,
80
80
    note,
81
 
    warning,
82
81
    )
83
82
 
84
83
from bzrlib import (
88
87
    )
89
88
 
90
89
 
91
 
class BzrDir(controldir.ControlDir):
 
90
class BzrDir(object):
92
91
    """A .bzr control diretory.
93
92
 
94
93
    BzrDir instances let you create or open any of the things that can be
125
124
                    return
126
125
        thing_to_unlock.break_lock()
127
126
 
 
127
    def can_convert_format(self):
 
128
        """Return true if this bzrdir is one whose format we can convert from."""
 
129
        return True
 
130
 
128
131
    def check_conversion_target(self, target_format):
129
 
        """Check that a bzrdir as a whole can be converted to a new format."""
130
 
        # The only current restriction is that the repository content can be 
131
 
        # fetched compatibly with the target.
132
132
        target_repo_format = target_format.repository_format
133
 
        try:
134
 
            self.open_repository()._format.check_conversion_target(
135
 
                target_repo_format)
136
 
        except errors.NoRepositoryPresent:
137
 
            # No repo, no problem.
138
 
            pass
 
133
        source_repo_format = self._format.repository_format
 
134
        source_repo_format.check_conversion_target(target_repo_format)
139
135
 
140
136
    @staticmethod
141
137
    def _check_supported(format, allow_unsupported,
165
161
                format.get_format_description(),
166
162
                basedir)
167
163
 
 
164
    def clone(self, url, revision_id=None, force_new_repo=False,
 
165
              preserve_stacking=False):
 
166
        """Clone this bzrdir and its contents to url verbatim.
 
167
 
 
168
        :param url: The url create the clone at.  If url's last component does
 
169
            not exist, it will be created.
 
170
        :param revision_id: The tip revision-id to use for any branch or
 
171
            working tree.  If not None, then the clone operation may tune
 
172
            itself to download less data.
 
173
        :param force_new_repo: Do not use a shared repository for the target
 
174
                               even if one is available.
 
175
        :param preserve_stacking: When cloning a stacked branch, stack the
 
176
            new branch on top of the other branch's stacked-on branch.
 
177
        """
 
178
        return self.clone_on_transport(get_transport(url),
 
179
                                       revision_id=revision_id,
 
180
                                       force_new_repo=force_new_repo,
 
181
                                       preserve_stacking=preserve_stacking)
 
182
 
168
183
    def clone_on_transport(self, transport, revision_id=None,
169
184
        force_new_repo=False, preserve_stacking=False, stacked_on=None,
170
185
        create_prefix=False, use_existing_dir=True):
185
200
        """
186
201
        # Overview: put together a broad description of what we want to end up
187
202
        # with; then make as few api calls as possible to do it.
188
 
 
 
203
        
189
204
        # We may want to create a repo/branch/tree, if we do so what format
190
205
        # would we want for each:
191
206
        require_stacking = (stacked_on is not None)
192
207
        format = self.cloning_metadir(require_stacking)
193
 
 
 
208
        
194
209
        # Figure out what objects we want:
195
210
        try:
196
211
            local_repo = self.find_repository()
238
253
                # copied, and finally if we are copying up to a specific
239
254
                # revision_id then we can use the pending-ancestry-result which
240
255
                # does not require traversing all of history to describe it.
241
 
                if (result_repo.user_url == result.user_url
242
 
                    and not require_stacking and
 
256
                if (result_repo.bzrdir.root_transport.base ==
 
257
                    result.root_transport.base and not require_stacking and
243
258
                    revision_id is not None):
244
259
                    fetch_spec = graph.PendingAncestryResult(
245
260
                        [revision_id], local_repo)
273
288
        t = get_transport(url)
274
289
        t.ensure_base()
275
290
 
 
291
    @classmethod
 
292
    def create(cls, base, format=None, possible_transports=None):
 
293
        """Create a new BzrDir at the url 'base'.
 
294
 
 
295
        :param format: If supplied, the format of branch to create.  If not
 
296
            supplied, the default is used.
 
297
        :param possible_transports: If supplied, a list of transports that
 
298
            can be reused to share a remote connection.
 
299
        """
 
300
        if cls is not BzrDir:
 
301
            raise AssertionError("BzrDir.create always creates the default"
 
302
                " format, not one of %r" % cls)
 
303
        t = get_transport(base, possible_transports)
 
304
        t.ensure_base()
 
305
        if format is None:
 
306
            format = BzrDirFormat.get_default_format()
 
307
        return format.initialize_on_transport(t)
 
308
 
276
309
    @staticmethod
277
310
    def find_bzrdirs(transport, evaluate=None, list_current=None):
278
311
        """Find bzrdirs recursively from current location.
301
334
            recurse = True
302
335
            try:
303
336
                bzrdir = BzrDir.open_from_transport(current_transport)
304
 
            except (errors.NotBranchError, errors.PermissionDenied):
 
337
            except errors.NotBranchError:
305
338
                pass
306
339
            else:
307
340
                recurse, value = evaluate(bzrdir)
308
341
                yield value
309
342
            try:
310
343
                subdirs = list_current(current_transport)
311
 
            except (errors.NoSuchFile, errors.PermissionDenied):
 
344
            except errors.NoSuchFile:
312
345
                continue
313
346
            if recurse:
314
347
                for subdir in sorted(subdirs, reverse=True):
331
364
            except errors.NoRepositoryPresent:
332
365
                pass
333
366
            else:
334
 
                return False, ([], repository)
335
 
            return True, (bzrdir.list_branches(), None)
336
 
        ret = []
337
 
        for branches, repo in BzrDir.find_bzrdirs(transport,
338
 
                                                  evaluate=evaluate):
 
367
                return False, (None, repository)
 
368
            try:
 
369
                branch = bzrdir.open_branch()
 
370
            except errors.NotBranchError:
 
371
                return True, (None, None)
 
372
            else:
 
373
                return True, (branch, None)
 
374
        branches = []
 
375
        for branch, repo in BzrDir.find_bzrdirs(transport, evaluate=evaluate):
339
376
            if repo is not None:
340
 
                ret.extend(repo.find_branches())
341
 
            if branches is not None:
342
 
                ret.extend(branches)
343
 
        return ret
 
377
                branches.extend(repo.find_branches())
 
378
            if branch is not None:
 
379
                branches.append(branch)
 
380
        return branches
 
381
 
 
382
    def destroy_repository(self):
 
383
        """Destroy the repository in this BzrDir"""
 
384
        raise NotImplementedError(self.destroy_repository)
 
385
 
 
386
    def create_branch(self):
 
387
        """Create a branch in this BzrDir.
 
388
 
 
389
        The bzrdir's format will control what branch format is created.
 
390
        For more control see BranchFormatXX.create(a_bzrdir).
 
391
        """
 
392
        raise NotImplementedError(self.create_branch)
 
393
 
 
394
    def destroy_branch(self):
 
395
        """Destroy the branch in this BzrDir"""
 
396
        raise NotImplementedError(self.destroy_branch)
344
397
 
345
398
    @staticmethod
346
399
    def create_branch_and_repo(base, force_new_repo=False, format=None):
385
438
            stop = False
386
439
            stack_on = config.get_default_stack_on()
387
440
            if stack_on is not None:
388
 
                stack_on_pwd = found_bzrdir.user_url
 
441
                stack_on_pwd = found_bzrdir.root_transport.base
389
442
                stop = True
390
443
            # does it have a repository ?
391
444
            try:
393
446
            except errors.NoRepositoryPresent:
394
447
                repository = None
395
448
            else:
396
 
                if (found_bzrdir.user_url != self.user_url 
397
 
                    and not repository.is_shared()):
 
449
                if ((found_bzrdir.root_transport.base !=
 
450
                     self.root_transport.base) and not repository.is_shared()):
398
451
                    # Don't look higher, can't use a higher shared repo.
399
452
                    repository = None
400
453
                    stop = True
496
549
                                               format=format).bzrdir
497
550
        return bzrdir.create_workingtree()
498
551
 
499
 
    def generate_backup_name(self, base):
500
 
        """Generate a non-existing backup file name based on base."""
501
 
        counter = 1
502
 
        name = "%s.~%d~" % (base, counter)
503
 
        while self.root_transport.has(name):
504
 
            counter += 1
505
 
            name = "%s.~%d~" % (base, counter)
506
 
        return name
 
552
    def create_workingtree(self, revision_id=None, from_branch=None,
 
553
        accelerator_tree=None, hardlink=False):
 
554
        """Create a working tree at this BzrDir.
 
555
 
 
556
        :param revision_id: create it as of this revision id.
 
557
        :param from_branch: override bzrdir branch (for lightweight checkouts)
 
558
        :param accelerator_tree: A tree which can be used for retrieving file
 
559
            contents more quickly than the revision tree, i.e. a workingtree.
 
560
            The revision tree will be used for cases where accelerator_tree's
 
561
            content is different.
 
562
        """
 
563
        raise NotImplementedError(self.create_workingtree)
507
564
 
508
565
    def backup_bzrdir(self):
509
566
        """Backup this bzr control directory.
510
567
 
511
568
        :return: Tuple with old path name and new path name
512
569
        """
513
 
 
514
 
        backup_dir=self.generate_backup_name('backup.bzr')
515
570
        pb = ui.ui_factory.nested_progress_bar()
516
571
        try:
517
572
            # FIXME: bug 300001 -- the backup fails if the backup directory
518
573
            # already exists, but it should instead either remove it or make
519
574
            # a new backup directory.
520
575
            #
 
576
            # FIXME: bug 262450 -- the backup directory should have the same
 
577
            # permissions as the .bzr directory (probably a bug in copy_tree)
521
578
            old_path = self.root_transport.abspath('.bzr')
522
 
            new_path = self.root_transport.abspath(backup_dir)
523
 
            ui.ui_factory.note('making backup of %s\n  to %s' % (old_path, new_path,))
524
 
            self.root_transport.copy_tree('.bzr', backup_dir)
 
579
            new_path = self.root_transport.abspath('backup.bzr')
 
580
            pb.note('making backup of %s' % (old_path,))
 
581
            pb.note('  to %s' % (new_path,))
 
582
            self.root_transport.copy_tree('.bzr', 'backup.bzr')
525
583
            return (old_path, new_path)
526
584
        finally:
527
585
            pb.finished()
551
609
                else:
552
610
                    pass
553
611
 
 
612
    def destroy_workingtree(self):
 
613
        """Destroy the working tree at this BzrDir.
 
614
 
 
615
        Formats that do not support this may raise UnsupportedOperation.
 
616
        """
 
617
        raise NotImplementedError(self.destroy_workingtree)
 
618
 
 
619
    def destroy_workingtree_metadata(self):
 
620
        """Destroy the control files for the working tree at this BzrDir.
 
621
 
 
622
        The contents of working tree files are not affected.
 
623
        Formats that do not support this may raise UnsupportedOperation.
 
624
        """
 
625
        raise NotImplementedError(self.destroy_workingtree_metadata)
 
626
 
554
627
    def _find_containing(self, evaluate):
555
628
        """Find something in a containing control directory.
556
629
 
570
643
            if stop:
571
644
                return result
572
645
            next_transport = found_bzrdir.root_transport.clone('..')
573
 
            if (found_bzrdir.user_url == next_transport.base):
 
646
            if (found_bzrdir.root_transport.base == next_transport.base):
574
647
                # top of the file system
575
648
                return None
576
649
            # find the next containing bzrdir
593
666
                repository = found_bzrdir.open_repository()
594
667
            except errors.NoRepositoryPresent:
595
668
                return None, False
596
 
            if found_bzrdir.user_url == self.user_url:
 
669
            if found_bzrdir.root_transport.base == self.root_transport.base:
597
670
                return repository, True
598
671
            elif repository.is_shared():
599
672
                return repository, True
605
678
            raise errors.NoRepositoryPresent(self)
606
679
        return found_repo
607
680
 
 
681
    def get_branch_reference(self):
 
682
        """Return the referenced URL for the branch in this bzrdir.
 
683
 
 
684
        :raises NotBranchError: If there is no Branch.
 
685
        :return: The URL the branch in this bzrdir references if it is a
 
686
            reference branch, or None for regular branches.
 
687
        """
 
688
        return None
 
689
 
 
690
    def get_branch_transport(self, branch_format):
 
691
        """Get the transport for use by branch format in this BzrDir.
 
692
 
 
693
        Note that bzr dirs that do not support format strings will raise
 
694
        IncompatibleFormat if the branch format they are given has
 
695
        a format string, and vice versa.
 
696
 
 
697
        If branch_format is None, the transport is returned with no
 
698
        checking. If it is not None, then the returned transport is
 
699
        guaranteed to point to an existing directory ready for use.
 
700
        """
 
701
        raise NotImplementedError(self.get_branch_transport)
 
702
 
608
703
    def _find_creation_modes(self):
609
704
        """Determine the appropriate modes for files and directories.
610
705
 
649
744
            self._find_creation_modes()
650
745
        return self._dir_mode
651
746
 
 
747
    def get_repository_transport(self, repository_format):
 
748
        """Get the transport for use by repository format in this BzrDir.
 
749
 
 
750
        Note that bzr dirs that do not support format strings will raise
 
751
        IncompatibleFormat if the repository format they are given has
 
752
        a format string, and vice versa.
 
753
 
 
754
        If repository_format is None, the transport is returned with no
 
755
        checking. If it is not None, then the returned transport is
 
756
        guaranteed to point to an existing directory ready for use.
 
757
        """
 
758
        raise NotImplementedError(self.get_repository_transport)
 
759
 
 
760
    def get_workingtree_transport(self, tree_format):
 
761
        """Get the transport for use by workingtree format in this BzrDir.
 
762
 
 
763
        Note that bzr dirs that do not support format strings will raise
 
764
        IncompatibleFormat if the workingtree format they are given has a
 
765
        format string, and vice versa.
 
766
 
 
767
        If workingtree_format is None, the transport is returned with no
 
768
        checking. If it is not None, then the returned transport is
 
769
        guaranteed to point to an existing directory ready for use.
 
770
        """
 
771
        raise NotImplementedError(self.get_workingtree_transport)
 
772
 
652
773
    def get_config(self):
653
774
        """Get configuration for this BzrDir."""
654
775
        return config.BzrDirConfig(self)
667
788
        :param _transport: the transport this dir is based at.
668
789
        """
669
790
        self._format = _format
670
 
        # these are also under the more standard names of 
671
 
        # control_transport and user_transport
672
791
        self.transport = _transport.clone('.bzr')
673
792
        self.root_transport = _transport
674
793
        self._mode_check_done = False
675
794
 
676
 
    @property 
677
 
    def user_transport(self):
678
 
        return self.root_transport
679
 
 
680
 
    @property
681
 
    def control_transport(self):
682
 
        return self.transport
683
 
 
684
795
    def is_control_filename(self, filename):
685
796
        """True if filename is the name of a path which is reserved for bzrdir's.
686
797
 
688
799
 
689
800
        This is true IF and ONLY IF the filename is part of the namespace reserved
690
801
        for bzr control dirs. Currently this is the '.bzr' directory in the root
691
 
        of the root_transport. 
 
802
        of the root_transport. it is expected that plugins will need to extend
 
803
        this in the future - for instance to make bzr talk with svn working
 
804
        trees.
692
805
        """
693
806
        # this might be better on the BzrDirFormat class because it refers to
694
807
        # all the possible bzrdir disk formats.
698
811
        # add new tests for it to the appropriate place.
699
812
        return filename == '.bzr' or filename.startswith('.bzr/')
700
813
 
 
814
    def needs_format_conversion(self, format=None):
 
815
        """Return true if this bzrdir needs convert_format run on it.
 
816
 
 
817
        For instance, if the repository format is out of date but the
 
818
        branch and working tree are not, this should return True.
 
819
 
 
820
        :param format: Optional parameter indicating a specific desired
 
821
                       format we plan to arrive at.
 
822
        """
 
823
        raise NotImplementedError(self.needs_format_conversion)
 
824
 
701
825
    @staticmethod
702
826
    def open_unsupported(base):
703
827
        """Open a branch which is not supported."""
726
850
        # the redirections.
727
851
        base = transport.base
728
852
        def find_format(transport):
729
 
            return transport, controldir.ControlDirFormat.find_format(
 
853
            return transport, BzrDirFormat.find_format(
730
854
                transport, _server_formats=_server_formats)
731
855
 
732
856
        def redirected(transport, e, redirection_notice):
747
871
        BzrDir._check_supported(format, _unsupported)
748
872
        return format.open(transport, _found=True)
749
873
 
 
874
    def open_branch(self, unsupported=False, ignore_fallbacks=False):
 
875
        """Open the branch object at this BzrDir if one is present.
 
876
 
 
877
        If unsupported is True, then no longer supported branch formats can
 
878
        still be opened.
 
879
 
 
880
        TODO: static convenience version of this?
 
881
        """
 
882
        raise NotImplementedError(self.open_branch)
 
883
 
750
884
    @staticmethod
751
885
    def open_containing(url, possible_transports=None):
752
886
        """Open an existing branch which contains url.
790
924
                raise errors.NotBranchError(path=url)
791
925
            a_transport = new_t
792
926
 
 
927
    def _get_tree_branch(self):
 
928
        """Return the branch and tree, if any, for this bzrdir.
 
929
 
 
930
        Return None for tree if not present or inaccessible.
 
931
        Raise NotBranchError if no branch is present.
 
932
        :return: (tree, branch)
 
933
        """
 
934
        try:
 
935
            tree = self.open_workingtree()
 
936
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
937
            tree = None
 
938
            branch = self.open_branch()
 
939
        else:
 
940
            branch = tree.branch
 
941
        return tree, branch
 
942
 
793
943
    @classmethod
794
944
    def open_tree_or_branch(klass, location):
795
945
        """Return the branch and working tree at a location.
841
991
                raise errors.NotBranchError(location)
842
992
        return tree, branch, branch.repository, relpath
843
993
 
 
994
    def open_repository(self, _unsupported=False):
 
995
        """Open the repository object at this BzrDir if one is present.
 
996
 
 
997
        This will not follow the Branch object pointer - it's strictly a direct
 
998
        open facility. Most client code should use open_branch().repository to
 
999
        get at a repository.
 
1000
 
 
1001
        :param _unsupported: a private parameter, not part of the api.
 
1002
        TODO: static convenience version of this?
 
1003
        """
 
1004
        raise NotImplementedError(self.open_repository)
 
1005
 
 
1006
    def open_workingtree(self, _unsupported=False,
 
1007
                         recommend_upgrade=True, from_branch=None):
 
1008
        """Open the workingtree object at this BzrDir if one is present.
 
1009
 
 
1010
        :param recommend_upgrade: Optional keyword parameter, when True (the
 
1011
            default), emit through the ui module a recommendation that the user
 
1012
            upgrade the working tree when the workingtree being opened is old
 
1013
            (but still fully supported).
 
1014
        :param from_branch: override bzrdir branch (for lightweight checkouts)
 
1015
        """
 
1016
        raise NotImplementedError(self.open_workingtree)
 
1017
 
 
1018
    def has_branch(self):
 
1019
        """Tell if this bzrdir contains a branch.
 
1020
 
 
1021
        Note: if you're going to open the branch, you should just go ahead
 
1022
        and try, and not ask permission first.  (This method just opens the
 
1023
        branch and discards it, and that's somewhat expensive.)
 
1024
        """
 
1025
        try:
 
1026
            self.open_branch()
 
1027
            return True
 
1028
        except errors.NotBranchError:
 
1029
            return False
 
1030
 
 
1031
    def has_workingtree(self):
 
1032
        """Tell if this bzrdir contains a working tree.
 
1033
 
 
1034
        This will still raise an exception if the bzrdir has a workingtree that
 
1035
        is remote & inaccessible.
 
1036
 
 
1037
        Note: if you're going to open the working tree, you should just go ahead
 
1038
        and try, and not ask permission first.  (This method just opens the
 
1039
        workingtree and discards it, and that's somewhat expensive.)
 
1040
        """
 
1041
        try:
 
1042
            self.open_workingtree(recommend_upgrade=False)
 
1043
            return True
 
1044
        except errors.NoWorkingTree:
 
1045
            return False
 
1046
 
844
1047
    def _cloning_metadir(self):
845
1048
        """Produce a metadir suitable for cloning with.
846
1049
 
904
1107
            format.require_stacking()
905
1108
        return format
906
1109
 
907
 
    @classmethod
908
 
    def create(cls, base, format=None, possible_transports=None):
909
 
        """Create a new BzrDir at the url 'base'.
910
 
 
911
 
        :param format: If supplied, the format of branch to create.  If not
912
 
            supplied, the default is used.
913
 
        :param possible_transports: If supplied, a list of transports that
914
 
            can be reused to share a remote connection.
 
1110
    def checkout_metadir(self):
 
1111
        return self.cloning_metadir()
 
1112
 
 
1113
    def sprout(self, url, revision_id=None, force_new_repo=False,
 
1114
               recurse='down', possible_transports=None,
 
1115
               accelerator_tree=None, hardlink=False, stacked=False,
 
1116
               source_branch=None, create_tree_if_local=True):
 
1117
        """Create a copy of this bzrdir prepared for use as a new line of
 
1118
        development.
 
1119
 
 
1120
        If url's last component does not exist, it will be created.
 
1121
 
 
1122
        Attributes related to the identity of the source branch like
 
1123
        branch nickname will be cleaned, a working tree is created
 
1124
        whether one existed before or not; and a local branch is always
 
1125
        created.
 
1126
 
 
1127
        if revision_id is not None, then the clone operation may tune
 
1128
            itself to download less data.
 
1129
        :param accelerator_tree: A tree which can be used for retrieving file
 
1130
            contents more quickly than the revision tree, i.e. a workingtree.
 
1131
            The revision tree will be used for cases where accelerator_tree's
 
1132
            content is different.
 
1133
        :param hardlink: If true, hard-link files from accelerator_tree,
 
1134
            where possible.
 
1135
        :param stacked: If true, create a stacked branch referring to the
 
1136
            location of this control directory.
 
1137
        :param create_tree_if_local: If true, a working-tree will be created
 
1138
            when working locally.
915
1139
        """
916
 
        if cls is not BzrDir:
917
 
            raise AssertionError("BzrDir.create always creates the"
918
 
                "default format, not one of %r" % cls)
919
 
        t = get_transport(base, possible_transports)
920
 
        t.ensure_base()
921
 
        if format is None:
922
 
            format = controldir.ControlDirFormat.get_default_format()
923
 
        return format.initialize_on_transport(t)
924
 
 
 
1140
        target_transport = get_transport(url, possible_transports)
 
1141
        target_transport.ensure_base()
 
1142
        cloning_format = self.cloning_metadir(stacked)
 
1143
        # Create/update the result branch
 
1144
        result = cloning_format.initialize_on_transport(target_transport)
 
1145
        # if a stacked branch wasn't requested, we don't create one
 
1146
        # even if the origin was stacked
 
1147
        stacked_branch_url = None
 
1148
        if source_branch is not None:
 
1149
            if stacked:
 
1150
                stacked_branch_url = self.root_transport.base
 
1151
            source_repository = source_branch.repository
 
1152
        else:
 
1153
            try:
 
1154
                source_branch = self.open_branch()
 
1155
                source_repository = source_branch.repository
 
1156
                if stacked:
 
1157
                    stacked_branch_url = self.root_transport.base
 
1158
            except errors.NotBranchError:
 
1159
                source_branch = None
 
1160
                try:
 
1161
                    source_repository = self.open_repository()
 
1162
                except errors.NoRepositoryPresent:
 
1163
                    source_repository = None
 
1164
        repository_policy = result.determine_repository_policy(
 
1165
            force_new_repo, stacked_branch_url, require_stacking=stacked)
 
1166
        result_repo, is_new_repo = repository_policy.acquire_repository()
 
1167
        if is_new_repo and revision_id is not None and not stacked:
 
1168
            fetch_spec = graph.PendingAncestryResult(
 
1169
                [revision_id], source_repository)
 
1170
        else:
 
1171
            fetch_spec = None
 
1172
        if source_repository is not None:
 
1173
            # Fetch while stacked to prevent unstacked fetch from
 
1174
            # Branch.sprout.
 
1175
            if fetch_spec is None:
 
1176
                result_repo.fetch(source_repository, revision_id=revision_id)
 
1177
            else:
 
1178
                result_repo.fetch(source_repository, fetch_spec=fetch_spec)
 
1179
 
 
1180
        if source_branch is None:
 
1181
            # this is for sprouting a bzrdir without a branch; is that
 
1182
            # actually useful?
 
1183
            # Not especially, but it's part of the contract.
 
1184
            result_branch = result.create_branch()
 
1185
        else:
 
1186
            result_branch = source_branch.sprout(result,
 
1187
                revision_id=revision_id, repository_policy=repository_policy)
 
1188
        mutter("created new branch %r" % (result_branch,))
 
1189
 
 
1190
        # Create/update the result working tree
 
1191
        if (create_tree_if_local and
 
1192
            isinstance(target_transport, local.LocalTransport) and
 
1193
            (result_repo is None or result_repo.make_working_trees())):
 
1194
            wt = result.create_workingtree(accelerator_tree=accelerator_tree,
 
1195
                hardlink=hardlink)
 
1196
            wt.lock_write()
 
1197
            try:
 
1198
                if wt.path2id('') is None:
 
1199
                    try:
 
1200
                        wt.set_root_id(self.open_workingtree.get_root_id())
 
1201
                    except errors.NoWorkingTree:
 
1202
                        pass
 
1203
            finally:
 
1204
                wt.unlock()
 
1205
        else:
 
1206
            wt = None
 
1207
        if recurse == 'down':
 
1208
            if wt is not None:
 
1209
                basis = wt.basis_tree()
 
1210
                basis.lock_read()
 
1211
                subtrees = basis.iter_references()
 
1212
            elif result_branch is not None:
 
1213
                basis = result_branch.basis_tree()
 
1214
                basis.lock_read()
 
1215
                subtrees = basis.iter_references()
 
1216
            elif source_branch is not None:
 
1217
                basis = source_branch.basis_tree()
 
1218
                basis.lock_read()
 
1219
                subtrees = basis.iter_references()
 
1220
            else:
 
1221
                subtrees = []
 
1222
                basis = None
 
1223
            try:
 
1224
                for path, file_id in subtrees:
 
1225
                    target = urlutils.join(url, urlutils.escape(path))
 
1226
                    sublocation = source_branch.reference_parent(file_id, path)
 
1227
                    sublocation.bzrdir.sprout(target,
 
1228
                        basis.get_reference_revision(file_id, path),
 
1229
                        force_new_repo=force_new_repo, recurse=recurse,
 
1230
                        stacked=stacked)
 
1231
            finally:
 
1232
                if basis is not None:
 
1233
                    basis.unlock()
 
1234
        return result
 
1235
 
 
1236
    def push_branch(self, source, revision_id=None, overwrite=False, 
 
1237
        remember=False):
 
1238
        """Push the source branch into this BzrDir."""
 
1239
        br_to = None
 
1240
        # If we can open a branch, use its direct repository, otherwise see
 
1241
        # if there is a repository without a branch.
 
1242
        try:
 
1243
            br_to = self.open_branch()
 
1244
        except errors.NotBranchError:
 
1245
            # Didn't find a branch, can we find a repository?
 
1246
            repository_to = self.find_repository()
 
1247
        else:
 
1248
            # Found a branch, so we must have found a repository
 
1249
            repository_to = br_to.repository
 
1250
 
 
1251
        push_result = PushResult()
 
1252
        push_result.source_branch = source
 
1253
        if br_to is None:
 
1254
            # We have a repository but no branch, copy the revisions, and then
 
1255
            # create a branch.
 
1256
            repository_to.fetch(source.repository, revision_id=revision_id)
 
1257
            br_to = source.clone(self, revision_id=revision_id)
 
1258
            if source.get_push_location() is None or remember:
 
1259
                source.set_push_location(br_to.base)
 
1260
            push_result.stacked_on = None
 
1261
            push_result.branch_push_result = None
 
1262
            push_result.old_revno = None
 
1263
            push_result.old_revid = _mod_revision.NULL_REVISION
 
1264
            push_result.target_branch = br_to
 
1265
            push_result.master_branch = None
 
1266
            push_result.workingtree_updated = False
 
1267
        else:
 
1268
            # We have successfully opened the branch, remember if necessary:
 
1269
            if source.get_push_location() is None or remember:
 
1270
                source.set_push_location(br_to.base)
 
1271
            try:
 
1272
                tree_to = self.open_workingtree()
 
1273
            except errors.NotLocalUrl:
 
1274
                push_result.branch_push_result = source.push(br_to, 
 
1275
                    overwrite, stop_revision=revision_id)
 
1276
                push_result.workingtree_updated = False
 
1277
            except errors.NoWorkingTree:
 
1278
                push_result.branch_push_result = source.push(br_to,
 
1279
                    overwrite, stop_revision=revision_id)
 
1280
                push_result.workingtree_updated = None # Not applicable
 
1281
            else:
 
1282
                tree_to.lock_write()
 
1283
                try:
 
1284
                    push_result.branch_push_result = source.push(
 
1285
                        tree_to.branch, overwrite, stop_revision=revision_id)
 
1286
                    tree_to.update()
 
1287
                finally:
 
1288
                    tree_to.unlock()
 
1289
                push_result.workingtree_updated = True
 
1290
            push_result.old_revno = push_result.branch_push_result.old_revno
 
1291
            push_result.old_revid = push_result.branch_push_result.old_revid
 
1292
            push_result.target_branch = \
 
1293
                push_result.branch_push_result.target_branch
 
1294
        return push_result
925
1295
 
926
1296
 
927
1297
class BzrDirHooks(hooks.Hooks):
933
1303
        self.create_hook(hooks.HookPoint('pre_open',
934
1304
            "Invoked before attempting to open a BzrDir with the transport "
935
1305
            "that the open will use.", (1, 14), None))
936
 
        self.create_hook(hooks.HookPoint('post_repo_init',
937
 
            "Invoked after a repository has been initialized. "
938
 
            "post_repo_init is called with a "
939
 
            "bzrlib.bzrdir.RepoInitHookParams.",
940
 
            (2, 2), None))
941
1306
 
942
1307
# install the default hooks
943
1308
BzrDir.hooks = BzrDirHooks()
944
1309
 
945
1310
 
946
 
class RepoInitHookParams(object):
947
 
    """Object holding parameters passed to *_repo_init hooks.
948
 
 
949
 
    There are 4 fields that hooks may wish to access:
950
 
 
951
 
    :ivar repository: Repository created
952
 
    :ivar format: Repository format
953
 
    :ivar bzrdir: The bzrdir for the repository
954
 
    :ivar shared: The repository is shared
955
 
    """
956
 
 
957
 
    def __init__(self, repository, format, a_bzrdir, shared):
958
 
        """Create a group of RepoInitHook parameters.
959
 
 
960
 
        :param repository: Repository created
961
 
        :param format: Repository format
962
 
        :param bzrdir: The bzrdir for the repository
963
 
        :param shared: The repository is shared
964
 
        """
965
 
        self.repository = repository
966
 
        self.format = format
967
 
        self.bzrdir = a_bzrdir
968
 
        self.shared = shared
969
 
 
970
 
    def __eq__(self, other):
971
 
        return self.__dict__ == other.__dict__
972
 
 
973
 
    def __repr__(self):
974
 
        if self.repository:
975
 
            return "<%s for %s>" % (self.__class__.__name__,
976
 
                self.repository)
977
 
        else:
978
 
            return "<%s for %s>" % (self.__class__.__name__,
979
 
                self.bzrdir)
980
 
 
981
 
 
982
1311
class BzrDirPreSplitOut(BzrDir):
983
1312
    """A common class for the all-in-one formats."""
984
1313
 
997
1326
    def cloning_metadir(self, require_stacking=False):
998
1327
        """Produce a metadir suitable for cloning with."""
999
1328
        if require_stacking:
1000
 
            return controldir.format_registry.make_bzrdir('1.6')
 
1329
            return format_registry.make_bzrdir('1.6')
1001
1330
        return self._format.__class__()
1002
1331
 
1003
1332
    def clone(self, url, revision_id=None, force_new_repo=False,
1023
1352
            tree.clone(result)
1024
1353
        return result
1025
1354
 
1026
 
    def create_branch(self, name=None):
 
1355
    def create_branch(self):
1027
1356
        """See BzrDir.create_branch."""
1028
 
        return self._format.get_branch_format().initialize(self, name=name)
 
1357
        return self._format.get_branch_format().initialize(self)
1029
1358
 
1030
 
    def destroy_branch(self, name=None):
 
1359
    def destroy_branch(self):
1031
1360
        """See BzrDir.destroy_branch."""
1032
1361
        raise errors.UnsupportedOperation(self.destroy_branch, self)
1033
1362
 
1056
1385
        # that can do wonky stuff here, and that only
1057
1386
        # happens for creating checkouts, which cannot be
1058
1387
        # done on this format anyway. So - acceptable wart.
1059
 
        if hardlink:
1060
 
            warning("can't support hardlinked working trees in %r"
1061
 
                % (self,))
1062
1388
        try:
1063
1389
            result = self.open_workingtree(recommend_upgrade=False)
1064
1390
        except errors.NoSuchFile:
1089
1415
        raise errors.UnsupportedOperation(self.destroy_workingtree_metadata,
1090
1416
                                          self)
1091
1417
 
1092
 
    def get_branch_transport(self, branch_format, name=None):
 
1418
    def get_branch_transport(self, branch_format):
1093
1419
        """See BzrDir.get_branch_transport()."""
1094
 
        if name is not None:
1095
 
            raise errors.NoColocatedBranchSupport(self)
1096
1420
        if branch_format is None:
1097
1421
            return self.transport
1098
1422
        try:
1131
1455
            format = BzrDirFormat.get_default_format()
1132
1456
        return not isinstance(self._format, format.__class__)
1133
1457
 
1134
 
    def open_branch(self, name=None, unsupported=False,
1135
 
                    ignore_fallbacks=False):
 
1458
    def open_branch(self, unsupported=False, ignore_fallbacks=False):
1136
1459
        """See BzrDir.open_branch."""
1137
1460
        from bzrlib.branch import BzrBranchFormat4
1138
1461
        format = BzrBranchFormat4()
1139
1462
        self._check_supported(format, unsupported)
1140
 
        return format.open(self, name, _found=True)
 
1463
        return format.open(self, _found=True)
1141
1464
 
1142
1465
    def sprout(self, url, revision_id=None, force_new_repo=False,
1143
1466
               possible_transports=None, accelerator_tree=None,
1204
1527
    This is a deprecated format and may be removed after sept 2006.
1205
1528
    """
1206
1529
 
1207
 
    def has_workingtree(self):
1208
 
        """See BzrDir.has_workingtree."""
1209
 
        return True
1210
 
    
1211
1530
    def open_repository(self):
1212
1531
        """See BzrDir.open_repository."""
1213
1532
        from bzrlib.repofmt.weaverepo import RepositoryFormat5
1229
1548
    This is a deprecated format and may be removed after sept 2006.
1230
1549
    """
1231
1550
 
1232
 
    def has_workingtree(self):
1233
 
        """See BzrDir.has_workingtree."""
1234
 
        return True
1235
 
    
1236
1551
    def open_repository(self):
1237
1552
        """See BzrDir.open_repository."""
1238
1553
        from bzrlib.repofmt.weaverepo import RepositoryFormat6
1260
1575
        """See BzrDir.can_convert_format()."""
1261
1576
        return True
1262
1577
 
1263
 
    def create_branch(self, name=None):
 
1578
    def create_branch(self):
1264
1579
        """See BzrDir.create_branch."""
1265
 
        return self._format.get_branch_format().initialize(self, name=name)
 
1580
        return self._format.get_branch_format().initialize(self)
1266
1581
 
1267
 
    def destroy_branch(self, name=None):
 
1582
    def destroy_branch(self):
1268
1583
        """See BzrDir.create_branch."""
1269
 
        if name is not None:
1270
 
            raise errors.NoColocatedBranchSupport(self)
1271
1584
        self.transport.delete_tree('branch')
1272
1585
 
1273
1586
    def create_repository(self, shared=False):
1296
1609
    def destroy_workingtree_metadata(self):
1297
1610
        self.transport.delete_tree('checkout')
1298
1611
 
1299
 
    def find_branch_format(self, name=None):
 
1612
    def find_branch_format(self):
1300
1613
        """Find the branch 'format' for this bzrdir.
1301
1614
 
1302
1615
        This might be a synthetic object for e.g. RemoteBranch and SVN.
1303
1616
        """
1304
1617
        from bzrlib.branch import BranchFormat
1305
 
        return BranchFormat.find_format(self, name=name)
 
1618
        return BranchFormat.find_format(self)
1306
1619
 
1307
1620
    def _get_mkdir_mode(self):
1308
1621
        """Figure out the mode to use when creating a bzrdir subdir."""
1310
1623
                                     lockable_files.TransportLock)
1311
1624
        return temp_control._dir_mode
1312
1625
 
1313
 
    def get_branch_reference(self, name=None):
 
1626
    def get_branch_reference(self):
1314
1627
        """See BzrDir.get_branch_reference()."""
1315
1628
        from bzrlib.branch import BranchFormat
1316
 
        format = BranchFormat.find_format(self, name=name)
1317
 
        return format.get_reference(self, name=name)
 
1629
        format = BranchFormat.find_format(self)
 
1630
        return format.get_reference(self)
1318
1631
 
1319
 
    def get_branch_transport(self, branch_format, name=None):
 
1632
    def get_branch_transport(self, branch_format):
1320
1633
        """See BzrDir.get_branch_transport()."""
1321
 
        if name is not None:
1322
 
            raise errors.NoColocatedBranchSupport(self)
1323
 
        # XXX: this shouldn't implicitly create the directory if it's just
1324
 
        # promising to get a transport -- mbp 20090727
1325
1634
        if branch_format is None:
1326
1635
            return self.transport.clone('branch')
1327
1636
        try:
1362
1671
            pass
1363
1672
        return self.transport.clone('checkout')
1364
1673
 
1365
 
    def has_workingtree(self):
1366
 
        """Tell if this bzrdir contains a working tree.
1367
 
 
1368
 
        This will still raise an exception if the bzrdir has a workingtree that
1369
 
        is remote & inaccessible.
1370
 
 
1371
 
        Note: if you're going to open the working tree, you should just go
1372
 
        ahead and try, and not ask permission first.
1373
 
        """
1374
 
        from bzrlib.workingtree import WorkingTreeFormat
1375
 
        try:
1376
 
            WorkingTreeFormat.find_format(self)
1377
 
        except errors.NoWorkingTree:
1378
 
            return False
1379
 
        return True
1380
 
 
1381
1674
    def needs_format_conversion(self, format=None):
1382
1675
        """See BzrDir.needs_format_conversion()."""
1383
1676
        if format is None:
1396
1689
                return True
1397
1690
        except errors.NoRepositoryPresent:
1398
1691
            pass
1399
 
        for branch in self.list_branches():
1400
 
            if not isinstance(branch._format,
 
1692
        try:
 
1693
            if not isinstance(self.open_branch()._format,
1401
1694
                              format.get_branch_format().__class__):
1402
1695
                # the branch needs an upgrade.
1403
1696
                return True
 
1697
        except errors.NotBranchError:
 
1698
            pass
1404
1699
        try:
1405
1700
            my_wt = self.open_workingtree(recommend_upgrade=False)
1406
1701
            if not isinstance(my_wt._format,
1411
1706
            pass
1412
1707
        return False
1413
1708
 
1414
 
    def open_branch(self, name=None, unsupported=False,
1415
 
                    ignore_fallbacks=False):
 
1709
    def open_branch(self, unsupported=False, ignore_fallbacks=False):
1416
1710
        """See BzrDir.open_branch."""
1417
 
        format = self.find_branch_format(name=name)
 
1711
        format = self.find_branch_format()
1418
1712
        self._check_supported(format, unsupported)
1419
 
        return format.open(self, name=name,
1420
 
            _found=True, ignore_fallbacks=ignore_fallbacks)
 
1713
        return format.open(self, _found=True, ignore_fallbacks=ignore_fallbacks)
1421
1714
 
1422
1715
    def open_repository(self, unsupported=False):
1423
1716
        """See BzrDir.open_repository."""
1440
1733
        return config.TransportConfig(self.transport, 'control.conf')
1441
1734
 
1442
1735
 
1443
 
class BzrProber(controldir.Prober):
1444
 
    """Prober for formats that use a .bzr/ control directory."""
1445
 
 
1446
 
    _formats = {}
1447
 
    """The known .bzr formats."""
1448
 
 
1449
 
    @classmethod
1450
 
    def register_bzrdir_format(klass, format):
1451
 
        klass._formats[format.get_format_string()] = format
1452
 
 
1453
 
    @classmethod
1454
 
    def unregister_bzrdir_format(klass, format):
1455
 
        del klass._formats[format.get_format_string()]
1456
 
 
1457
 
    @classmethod
1458
 
    def probe_transport(klass, transport):
1459
 
        """Return the .bzrdir style format present in a directory."""
1460
 
        try:
1461
 
            format_string = transport.get_bytes(".bzr/branch-format")
1462
 
        except errors.NoSuchFile:
1463
 
            raise errors.NotBranchError(path=transport.base)
1464
 
        try:
1465
 
            return klass._formats[format_string]
1466
 
        except KeyError:
1467
 
            raise errors.UnknownFormatError(format=format_string, kind='bzrdir')
1468
 
 
1469
 
 
1470
 
controldir.ControlDirFormat.register_prober(BzrProber)
1471
 
 
1472
 
 
1473
 
class RemoteBzrProber(controldir.Prober):
1474
 
    """Prober for remote servers that provide a Bazaar smart server."""
1475
 
 
1476
 
    @classmethod
1477
 
    def probe_transport(klass, transport):
1478
 
        """Return a RemoteBzrDirFormat object if it looks possible."""
1479
 
        try:
1480
 
            medium = transport.get_smart_medium()
1481
 
        except (NotImplementedError, AttributeError,
1482
 
                errors.TransportNotPossible, errors.NoSmartMedium,
1483
 
                errors.SmartProtocolError):
1484
 
            # no smart server, so not a branch for this format type.
1485
 
            raise errors.NotBranchError(path=transport.base)
1486
 
        else:
1487
 
            # Decline to open it if the server doesn't support our required
1488
 
            # version (3) so that the VFS-based transport will do it.
1489
 
            if medium.should_probe():
1490
 
                try:
1491
 
                    server_version = medium.protocol_version()
1492
 
                except errors.SmartProtocolError:
1493
 
                    # Apparently there's no usable smart server there, even though
1494
 
                    # the medium supports the smart protocol.
1495
 
                    raise errors.NotBranchError(path=transport.base)
1496
 
                if server_version != '2':
1497
 
                    raise errors.NotBranchError(path=transport.base)
1498
 
            return RemoteBzrDirFormat()
1499
 
 
1500
 
 
1501
 
class BzrDirFormat(controldir.ControlDirFormat):
1502
 
    """ControlDirFormat base class for .bzr/ directories.
 
1736
class BzrDirFormat(object):
 
1737
    """An encapsulation of the initialization and open routines for a format.
 
1738
 
 
1739
    Formats provide three things:
 
1740
     * An initialization routine,
 
1741
     * a format string,
 
1742
     * an open routine.
1503
1743
 
1504
1744
    Formats are placed in a dict by their format string for reference
1505
1745
    during bzrdir opening. These should be subclasses of BzrDirFormat
1510
1750
    object will be created every system load.
1511
1751
    """
1512
1752
 
 
1753
    _default_format = None
 
1754
    """The default format used for new .bzr dirs."""
 
1755
 
 
1756
    _formats = {}
 
1757
    """The known formats."""
 
1758
 
 
1759
    _control_formats = []
 
1760
    """The registered control formats - .bzr, ....
 
1761
 
 
1762
    This is a list of BzrDirFormat objects.
 
1763
    """
 
1764
 
 
1765
    _control_server_formats = []
 
1766
    """The registered control server formats, e.g. RemoteBzrDirs.
 
1767
 
 
1768
    This is a list of BzrDirFormat objects.
 
1769
    """
 
1770
 
1513
1771
    _lock_file_name = 'branch-lock'
1514
1772
 
1515
1773
    # _lock_class must be set in subclasses to the lock type, typ.
1516
1774
    # TransportLock or LockDir
1517
1775
 
 
1776
    @classmethod
 
1777
    def find_format(klass, transport, _server_formats=True):
 
1778
        """Return the format present at transport."""
 
1779
        if _server_formats:
 
1780
            formats = klass._control_server_formats + klass._control_formats
 
1781
        else:
 
1782
            formats = klass._control_formats
 
1783
        for format in formats:
 
1784
            try:
 
1785
                return format.probe_transport(transport)
 
1786
            except errors.NotBranchError:
 
1787
                # this format does not find a control dir here.
 
1788
                pass
 
1789
        raise errors.NotBranchError(path=transport.base)
 
1790
 
 
1791
    @classmethod
 
1792
    def probe_transport(klass, transport):
 
1793
        """Return the .bzrdir style format present in a directory."""
 
1794
        try:
 
1795
            format_string = transport.get(".bzr/branch-format").read()
 
1796
        except errors.NoSuchFile:
 
1797
            raise errors.NotBranchError(path=transport.base)
 
1798
 
 
1799
        try:
 
1800
            return klass._formats[format_string]
 
1801
        except KeyError:
 
1802
            raise errors.UnknownFormatError(format=format_string, kind='bzrdir')
 
1803
 
 
1804
    @classmethod
 
1805
    def get_default_format(klass):
 
1806
        """Return the current default format."""
 
1807
        return klass._default_format
 
1808
 
1518
1809
    def get_format_string(self):
1519
1810
        """Return the ASCII format string that identifies this format."""
1520
1811
        raise NotImplementedError(self.get_format_string)
1521
1812
 
 
1813
    def get_format_description(self):
 
1814
        """Return the short description for this format."""
 
1815
        raise NotImplementedError(self.get_format_description)
 
1816
 
 
1817
    def get_converter(self, format=None):
 
1818
        """Return the converter to use to convert bzrdirs needing converts.
 
1819
 
 
1820
        This returns a bzrlib.bzrdir.Converter object.
 
1821
 
 
1822
        This should return the best upgrader to step this format towards the
 
1823
        current default format. In the case of plugins we can/should provide
 
1824
        some means for them to extend the range of returnable converters.
 
1825
 
 
1826
        :param format: Optional format to override the default format of the
 
1827
                       library.
 
1828
        """
 
1829
        raise NotImplementedError(self.get_converter)
 
1830
 
 
1831
    def initialize(self, url, possible_transports=None):
 
1832
        """Create a bzr control dir at this url and return an opened copy.
 
1833
 
 
1834
        While not deprecated, this method is very specific and its use will
 
1835
        lead to many round trips to setup a working environment. See
 
1836
        initialize_on_transport_ex for a [nearly] all-in-one method.
 
1837
 
 
1838
        Subclasses should typically override initialize_on_transport
 
1839
        instead of this method.
 
1840
        """
 
1841
        return self.initialize_on_transport(get_transport(url,
 
1842
                                                          possible_transports))
 
1843
 
1522
1844
    def initialize_on_transport(self, transport):
1523
1845
        """Initialize a new bzrdir in the base directory of a Transport."""
1524
1846
        try:
1672
1994
            control_files.unlock()
1673
1995
        return self.open(transport, _found=True)
1674
1996
 
 
1997
    def is_supported(self):
 
1998
        """Is this format supported?
 
1999
 
 
2000
        Supported formats must be initializable and openable.
 
2001
        Unsupported formats may not support initialization or committing or
 
2002
        some other features depending on the reason for not being supported.
 
2003
        """
 
2004
        return True
 
2005
 
 
2006
    def network_name(self):
 
2007
        """A simple byte string uniquely identifying this format for RPC calls.
 
2008
 
 
2009
        Bzr control formats use thir disk format string to identify the format
 
2010
        over the wire. Its possible that other control formats have more
 
2011
        complex detection requirements, so we permit them to use any unique and
 
2012
        immutable string they desire.
 
2013
        """
 
2014
        raise NotImplementedError(self.network_name)
 
2015
 
 
2016
    def same_model(self, target_format):
 
2017
        return (self.repository_format.rich_root_data ==
 
2018
            target_format.rich_root_data)
 
2019
 
 
2020
    @classmethod
 
2021
    def known_formats(klass):
 
2022
        """Return all the known formats.
 
2023
 
 
2024
        Concrete formats should override _known_formats.
 
2025
        """
 
2026
        # There is double indirection here to make sure that control
 
2027
        # formats used by more than one dir format will only be probed
 
2028
        # once. This can otherwise be quite expensive for remote connections.
 
2029
        result = set()
 
2030
        for format in klass._control_formats:
 
2031
            result.update(format._known_formats())
 
2032
        return result
 
2033
 
 
2034
    @classmethod
 
2035
    def _known_formats(klass):
 
2036
        """Return the known format instances for this control format."""
 
2037
        return set(klass._formats.values())
 
2038
 
1675
2039
    def open(self, transport, _found=False):
1676
2040
        """Return an instance of this format for the dir transport points at.
1677
2041
 
1678
2042
        _found is a private parameter, do not use it.
1679
2043
        """
1680
2044
        if not _found:
1681
 
            found_format = controldir.ControlDirFormat.find_format(transport)
 
2045
            found_format = BzrDirFormat.find_format(transport)
1682
2046
            if not isinstance(found_format, self.__class__):
1683
2047
                raise AssertionError("%s was asked to open %s, but it seems to need "
1684
2048
                        "format %s"
1698
2062
 
1699
2063
    @classmethod
1700
2064
    def register_format(klass, format):
1701
 
        BzrProber.register_bzrdir_format(format)
 
2065
        klass._formats[format.get_format_string()] = format
1702
2066
        # bzr native formats have a network name of their format string.
1703
 
        controldir.network_format_registry.register(format.get_format_string(), format.__class__)
1704
 
        controldir.ControlDirFormat.register_format(format)
 
2067
        network_format_registry.register(format.get_format_string(), format.__class__)
 
2068
 
 
2069
    @classmethod
 
2070
    def register_control_format(klass, format):
 
2071
        """Register a format that does not use '.bzr' for its control dir.
 
2072
 
 
2073
        TODO: This should be pulled up into a 'ControlDirFormat' base class
 
2074
        which BzrDirFormat can inherit from, and renamed to register_format
 
2075
        there. It has been done without that for now for simplicity of
 
2076
        implementation.
 
2077
        """
 
2078
        klass._control_formats.append(format)
 
2079
 
 
2080
    @classmethod
 
2081
    def register_control_server_format(klass, format):
 
2082
        """Register a control format for client-server environments.
 
2083
 
 
2084
        These formats will be tried before ones registered with
 
2085
        register_control_format.  This gives implementations that decide to the
 
2086
        chance to grab it before anything looks at the contents of the format
 
2087
        file.
 
2088
        """
 
2089
        klass._control_server_formats.append(format)
 
2090
 
 
2091
    @classmethod
 
2092
    def _set_default_format(klass, format):
 
2093
        """Set default format (for testing behavior of defaults only)"""
 
2094
        klass._default_format = format
 
2095
 
 
2096
    def __str__(self):
 
2097
        # Trim the newline
 
2098
        return self.get_format_description().rstrip()
1705
2099
 
1706
2100
    def _supply_sub_formats_to(self, other_format):
1707
2101
        """Give other_format the same values for sub formats as this has.
1717
2111
 
1718
2112
    @classmethod
1719
2113
    def unregister_format(klass, format):
1720
 
        BzrProber.unregister_bzrdir_format(format)
1721
 
        controldir.ControlDirFormat.unregister_format(format)
1722
 
        controldir.network_format_registry.remove(format.get_format_string())
 
2114
        del klass._formats[format.get_format_string()]
 
2115
 
 
2116
    @classmethod
 
2117
    def unregister_control_format(klass, format):
 
2118
        klass._control_formats.remove(format)
1723
2119
 
1724
2120
 
1725
2121
class BzrDirFormat4(BzrDirFormat):
2128
2524
                                  __set_workingtree_format)
2129
2525
 
2130
2526
 
 
2527
network_format_registry = registry.FormatRegistry()
 
2528
"""Registry of formats indexed by their network name.
 
2529
 
 
2530
The network name for a BzrDirFormat is an identifier that can be used when
 
2531
referring to formats with smart server operations. See
 
2532
BzrDirFormat.network_name() for more detail.
 
2533
"""
 
2534
 
 
2535
 
 
2536
# Register bzr control format
 
2537
BzrDirFormat.register_control_format(BzrDirFormat)
 
2538
 
2131
2539
# Register bzr formats
2132
2540
BzrDirFormat.register_format(BzrDirFormat4())
2133
2541
BzrDirFormat.register_format(BzrDirFormat5())
2134
2542
BzrDirFormat.register_format(BzrDirFormat6())
2135
2543
__default_format = BzrDirMetaFormat1()
2136
2544
BzrDirFormat.register_format(__default_format)
2137
 
controldir.ControlDirFormat._default_format = __default_format
 
2545
BzrDirFormat._default_format = __default_format
2138
2546
 
2139
2547
 
2140
2548
class Converter(object):
2166
2574
    def convert(self, to_convert, pb):
2167
2575
        """See Converter.convert()."""
2168
2576
        self.bzrdir = to_convert
2169
 
        if pb is not None:
2170
 
            warnings.warn("pb parameter to convert() is deprecated")
2171
 
        self.pb = ui.ui_factory.nested_progress_bar()
2172
 
        try:
2173
 
            ui.ui_factory.note('starting upgrade from format 4 to 5')
2174
 
            if isinstance(self.bzrdir.transport, local.LocalTransport):
2175
 
                self.bzrdir.get_workingtree_transport(None).delete('stat-cache')
2176
 
            self._convert_to_weaves()
2177
 
            return BzrDir.open(self.bzrdir.user_url)
2178
 
        finally:
2179
 
            self.pb.finished()
 
2577
        self.pb = pb
 
2578
        self.pb.note('starting upgrade from format 4 to 5')
 
2579
        if isinstance(self.bzrdir.transport, local.LocalTransport):
 
2580
            self.bzrdir.get_workingtree_transport(None).delete('stat-cache')
 
2581
        self._convert_to_weaves()
 
2582
        return BzrDir.open(self.bzrdir.root_transport.base)
2180
2583
 
2181
2584
    def _convert_to_weaves(self):
2182
 
        ui.ui_factory.note('note: upgrade may be faster if all store files are ungzipped first')
 
2585
        self.pb.note('note: upgrade may be faster if all store files are ungzipped first')
2183
2586
        try:
2184
2587
            # TODO permissions
2185
2588
            stat = self.bzrdir.transport.stat('weaves')
2213
2616
        self.pb.clear()
2214
2617
        self._write_all_weaves()
2215
2618
        self._write_all_revs()
2216
 
        ui.ui_factory.note('upgraded to weaves:')
2217
 
        ui.ui_factory.note('  %6d revisions and inventories' % len(self.revisions))
2218
 
        ui.ui_factory.note('  %6d revisions not present' % len(self.absent_revisions))
2219
 
        ui.ui_factory.note('  %6d texts' % self.text_count)
 
2619
        self.pb.note('upgraded to weaves:')
 
2620
        self.pb.note('  %6d revisions and inventories', len(self.revisions))
 
2621
        self.pb.note('  %6d revisions not present', len(self.absent_revisions))
 
2622
        self.pb.note('  %6d texts', self.text_count)
2220
2623
        self._cleanup_spare_files_after_format4()
2221
2624
        self.branch._transport.put_bytes(
2222
2625
            'branch-format',
2290
2693
                       len(self.known_revisions))
2291
2694
        if not self.branch.repository.has_revision(rev_id):
2292
2695
            self.pb.clear()
2293
 
            ui.ui_factory.note('revision {%s} not present in branch; '
2294
 
                         'will be converted as a ghost' %
 
2696
            self.pb.note('revision {%s} not present in branch; '
 
2697
                         'will be converted as a ghost',
2295
2698
                         rev_id)
2296
2699
            self.absent_revisions.add(rev_id)
2297
2700
        else:
2302
2705
            self.revisions[rev_id] = rev
2303
2706
 
2304
2707
    def _load_old_inventory(self, rev_id):
2305
 
        f = self.branch.repository.inventory_store.get(rev_id)
2306
 
        try:
2307
 
            old_inv_xml = f.read()
2308
 
        finally:
2309
 
            f.close()
 
2708
        old_inv_xml = self.branch.repository.inventory_store.get(rev_id).read()
2310
2709
        inv = xml4.serializer_v4.read_inventory_from_string(old_inv_xml)
2311
2710
        inv.revision_id = rev_id
2312
2711
        rev = self.revisions[rev_id]
2368
2767
        previous_entries = dict((head, parent_candiate_entries[head]) for head
2369
2768
            in heads)
2370
2769
        self.snapshot_ie(previous_entries, ie, w, rev_id)
 
2770
        del ie.text_id
2371
2771
 
2372
2772
    def get_parent_map(self, revision_ids):
2373
2773
        """See graph.StackedParentsProvider.get_parent_map"""
2389
2789
                ie.revision = previous_ie.revision
2390
2790
                return
2391
2791
        if ie.has_text():
2392
 
            f = self.branch.repository._text_store.get(ie.text_id)
2393
 
            try:
2394
 
                file_lines = f.readlines()
2395
 
            finally:
2396
 
                f.close()
 
2792
            text = self.branch.repository._text_store.get(ie.text_id)
 
2793
            file_lines = text.readlines()
2397
2794
            w.add_lines(rev_id, previous_revisions, file_lines)
2398
2795
            self.text_count += 1
2399
2796
        else:
2429
2826
    def convert(self, to_convert, pb):
2430
2827
        """See Converter.convert()."""
2431
2828
        self.bzrdir = to_convert
2432
 
        pb = ui.ui_factory.nested_progress_bar()
2433
 
        try:
2434
 
            ui.ui_factory.note('starting upgrade from format 5 to 6')
2435
 
            self._convert_to_prefixed()
2436
 
            return BzrDir.open(self.bzrdir.user_url)
2437
 
        finally:
2438
 
            pb.finished()
 
2829
        self.pb = pb
 
2830
        self.pb.note('starting upgrade from format 5 to 6')
 
2831
        self._convert_to_prefixed()
 
2832
        return BzrDir.open(self.bzrdir.root_transport.base)
2439
2833
 
2440
2834
    def _convert_to_prefixed(self):
2441
2835
        from bzrlib.store import TransportStore
2442
2836
        self.bzrdir.transport.delete('branch-format')
2443
2837
        for store_name in ["weaves", "revision-store"]:
2444
 
            ui.ui_factory.note("adding prefixes to %s" % store_name)
 
2838
            self.pb.note("adding prefixes to %s" % store_name)
2445
2839
            store_transport = self.bzrdir.transport.clone(store_name)
2446
2840
            store = TransportStore(store_transport, prefixed=True)
2447
2841
            for urlfilename in store_transport.list_dir('.'):
2474
2868
        from bzrlib.repofmt.weaverepo import RepositoryFormat7
2475
2869
        from bzrlib.branch import BzrBranchFormat5
2476
2870
        self.bzrdir = to_convert
2477
 
        self.pb = ui.ui_factory.nested_progress_bar()
 
2871
        self.pb = pb
2478
2872
        self.count = 0
2479
2873
        self.total = 20 # the steps we know about
2480
2874
        self.garbage_inventories = []
2481
2875
        self.dir_mode = self.bzrdir._get_dir_mode()
2482
2876
        self.file_mode = self.bzrdir._get_file_mode()
2483
2877
 
2484
 
        ui.ui_factory.note('starting upgrade from format 6 to metadir')
 
2878
        self.pb.note('starting upgrade from format 6 to metadir')
2485
2879
        self.bzrdir.transport.put_bytes(
2486
2880
                'branch-format',
2487
2881
                "Converting to format 6",
2537
2931
        else:
2538
2932
            has_checkout = True
2539
2933
        if not has_checkout:
2540
 
            ui.ui_factory.note('No working tree.')
 
2934
            self.pb.note('No working tree.')
2541
2935
            # If some checkout files are there, we may as well get rid of them.
2542
2936
            for name, mandatory in checkout_files:
2543
2937
                if name in bzrcontents:
2560
2954
            'branch-format',
2561
2955
            BzrDirMetaFormat1().get_format_string(),
2562
2956
            mode=self.file_mode)
2563
 
        self.pb.finished()
2564
 
        return BzrDir.open(self.bzrdir.user_url)
 
2957
        return BzrDir.open(self.bzrdir.root_transport.base)
2565
2958
 
2566
2959
    def make_lock(self, name):
2567
2960
        """Make a lock for the new control dir name."""
2602
2995
    def convert(self, to_convert, pb):
2603
2996
        """See Converter.convert()."""
2604
2997
        self.bzrdir = to_convert
2605
 
        self.pb = ui.ui_factory.nested_progress_bar()
 
2998
        self.pb = pb
2606
2999
        self.count = 0
2607
3000
        self.total = 1
2608
3001
        self.step('checking repository format')
2613
3006
        else:
2614
3007
            if not isinstance(repo._format, self.target_format.repository_format.__class__):
2615
3008
                from bzrlib.repository import CopyConverter
2616
 
                ui.ui_factory.note('starting repository conversion')
 
3009
                self.pb.note('starting repository conversion')
2617
3010
                converter = CopyConverter(self.target_format.repository_format)
2618
3011
                converter.convert(repo, pb)
2619
 
        for branch in self.bzrdir.list_branches():
 
3012
        try:
 
3013
            branch = self.bzrdir.open_branch()
 
3014
        except errors.NotBranchError:
 
3015
            pass
 
3016
        else:
2620
3017
            # TODO: conversions of Branch and Tree should be done by
2621
3018
            # InterXFormat lookups/some sort of registry.
2622
3019
            # Avoid circular imports
2637
3034
                      new is _mod_branch.BzrBranchFormat8):
2638
3035
                    branch_converter = _mod_branch.Converter7to8()
2639
3036
                else:
2640
 
                    raise errors.BadConversionTarget("No converter", new,
2641
 
                        branch._format)
 
3037
                    raise errors.BadConversionTarget("No converter", new)
2642
3038
                branch_converter.convert(branch)
2643
3039
                branch = self.bzrdir.open_branch()
2644
3040
                old = branch._format.__class__
2664
3060
                isinstance(self.target_format.workingtree_format,
2665
3061
                    workingtree_4.WorkingTreeFormat6)):
2666
3062
                workingtree_4.Converter4or5to6().convert(tree)
2667
 
        self.pb.finished()
2668
3063
        return to_convert
2669
3064
 
2670
3065
 
2675
3070
class RemoteBzrDirFormat(BzrDirMetaFormat1):
2676
3071
    """Format representing bzrdirs accessed via a smart server"""
2677
3072
 
2678
 
    supports_workingtrees = False
2679
 
 
2680
3073
    def __init__(self):
2681
3074
        BzrDirMetaFormat1.__init__(self)
2682
 
        # XXX: It's a bit ugly that the network name is here, because we'd
2683
 
        # like to believe that format objects are stateless or at least
2684
 
        # immutable,  However, we do at least avoid mutating the name after
2685
 
        # it's returned.  See <https://bugs.launchpad.net/bzr/+bug/504102>
2686
3075
        self._network_name = None
2687
3076
 
2688
 
    def __repr__(self):
2689
 
        return "%s(_network_name=%r)" % (self.__class__.__name__,
2690
 
            self._network_name)
2691
 
 
2692
3077
    def get_format_description(self):
2693
 
        if self._network_name:
2694
 
            real_format = controldir.network_format_registry.get(self._network_name)
2695
 
            return 'Remote: ' + real_format.get_format_description()
2696
3078
        return 'bzr remote bzrdir'
2697
3079
 
2698
3080
    def get_format_string(self):
2704
3086
        else:
2705
3087
            raise AssertionError("No network name set.")
2706
3088
 
 
3089
    @classmethod
 
3090
    def probe_transport(klass, transport):
 
3091
        """Return a RemoteBzrDirFormat object if it looks possible."""
 
3092
        try:
 
3093
            medium = transport.get_smart_medium()
 
3094
        except (NotImplementedError, AttributeError,
 
3095
                errors.TransportNotPossible, errors.NoSmartMedium,
 
3096
                errors.SmartProtocolError):
 
3097
            # no smart server, so not a branch for this format type.
 
3098
            raise errors.NotBranchError(path=transport.base)
 
3099
        else:
 
3100
            # Decline to open it if the server doesn't support our required
 
3101
            # version (3) so that the VFS-based transport will do it.
 
3102
            if medium.should_probe():
 
3103
                try:
 
3104
                    server_version = medium.protocol_version()
 
3105
                except errors.SmartProtocolError:
 
3106
                    # Apparently there's no usable smart server there, even though
 
3107
                    # the medium supports the smart protocol.
 
3108
                    raise errors.NotBranchError(path=transport.base)
 
3109
                if server_version != '2':
 
3110
                    raise errors.NotBranchError(path=transport.base)
 
3111
            return klass()
 
3112
 
2707
3113
    def initialize_on_transport(self, transport):
2708
3114
        try:
2709
3115
            # hand off the request to the smart server
2807
3213
        args.append(self._serialize_NoneString(repo_format_name))
2808
3214
        args.append(self._serialize_NoneTrueFalse(make_working_trees))
2809
3215
        args.append(self._serialize_NoneTrueFalse(shared_repo))
2810
 
        request_network_name = self._network_name or \
 
3216
        if self._network_name is None:
 
3217
            self._network_name = \
2811
3218
            BzrDirFormat.get_default_format().network_name()
2812
3219
        try:
2813
3220
            response = client.call('BzrDirFormat.initialize_ex_1.16',
2814
 
                request_network_name, path, *args)
 
3221
                self.network_name(), path, *args)
2815
3222
        except errors.UnknownSmartMethod:
2816
3223
            client._medium._remember_remote_is_before((1,16))
2817
3224
            local_dir_format = BzrDirMetaFormat1()
2863
3270
        else:
2864
3271
            remote_repo = None
2865
3272
            policy = None
2866
 
        bzrdir._format.set_branch_format(self.get_branch_format())
2867
3273
        if require_stacking:
2868
3274
            # The repo has already been created, but we need to make sure that
2869
3275
            # we'll make a stackable branch.
2908
3314
        BzrDirMetaFormat1._set_repository_format) #.im_func)
2909
3315
 
2910
3316
 
2911
 
controldir.ControlDirFormat.register_server_prober(RemoteBzrProber)
 
3317
BzrDirFormat.register_control_server_format(RemoteBzrDirFormat)
 
3318
 
 
3319
 
 
3320
class BzrDirFormatInfo(object):
 
3321
 
 
3322
    def __init__(self, native, deprecated, hidden, experimental):
 
3323
        self.deprecated = deprecated
 
3324
        self.native = native
 
3325
        self.hidden = hidden
 
3326
        self.experimental = experimental
 
3327
 
 
3328
 
 
3329
class BzrDirFormatRegistry(registry.Registry):
 
3330
    """Registry of user-selectable BzrDir subformats.
 
3331
 
 
3332
    Differs from BzrDirFormat._control_formats in that it provides sub-formats,
 
3333
    e.g. BzrDirMeta1 with weave repository.  Also, it's more user-oriented.
 
3334
    """
 
3335
 
 
3336
    def __init__(self):
 
3337
        """Create a BzrDirFormatRegistry."""
 
3338
        self._aliases = set()
 
3339
        self._registration_order = list()
 
3340
        super(BzrDirFormatRegistry, self).__init__()
 
3341
 
 
3342
    def aliases(self):
 
3343
        """Return a set of the format names which are aliases."""
 
3344
        return frozenset(self._aliases)
 
3345
 
 
3346
    def register_metadir(self, key,
 
3347
             repository_format, help, native=True, deprecated=False,
 
3348
             branch_format=None,
 
3349
             tree_format=None,
 
3350
             hidden=False,
 
3351
             experimental=False,
 
3352
             alias=False):
 
3353
        """Register a metadir subformat.
 
3354
 
 
3355
        These all use a BzrDirMetaFormat1 bzrdir, but can be parameterized
 
3356
        by the Repository/Branch/WorkingTreeformats.
 
3357
 
 
3358
        :param repository_format: The fully-qualified repository format class
 
3359
            name as a string.
 
3360
        :param branch_format: Fully-qualified branch format class name as
 
3361
            a string.
 
3362
        :param tree_format: Fully-qualified tree format class name as
 
3363
            a string.
 
3364
        """
 
3365
        # This should be expanded to support setting WorkingTree and Branch
 
3366
        # formats, once BzrDirMetaFormat1 supports that.
 
3367
        def _load(full_name):
 
3368
            mod_name, factory_name = full_name.rsplit('.', 1)
 
3369
            try:
 
3370
                mod = __import__(mod_name, globals(), locals(),
 
3371
                        [factory_name])
 
3372
            except ImportError, e:
 
3373
                raise ImportError('failed to load %s: %s' % (full_name, e))
 
3374
            try:
 
3375
                factory = getattr(mod, factory_name)
 
3376
            except AttributeError:
 
3377
                raise AttributeError('no factory %s in module %r'
 
3378
                    % (full_name, mod))
 
3379
            return factory()
 
3380
 
 
3381
        def helper():
 
3382
            bd = BzrDirMetaFormat1()
 
3383
            if branch_format is not None:
 
3384
                bd.set_branch_format(_load(branch_format))
 
3385
            if tree_format is not None:
 
3386
                bd.workingtree_format = _load(tree_format)
 
3387
            if repository_format is not None:
 
3388
                bd.repository_format = _load(repository_format)
 
3389
            return bd
 
3390
        self.register(key, helper, help, native, deprecated, hidden,
 
3391
            experimental, alias)
 
3392
 
 
3393
    def register(self, key, factory, help, native=True, deprecated=False,
 
3394
                 hidden=False, experimental=False, alias=False):
 
3395
        """Register a BzrDirFormat factory.
 
3396
 
 
3397
        The factory must be a callable that takes one parameter: the key.
 
3398
        It must produce an instance of the BzrDirFormat when called.
 
3399
 
 
3400
        This function mainly exists to prevent the info object from being
 
3401
        supplied directly.
 
3402
        """
 
3403
        registry.Registry.register(self, key, factory, help,
 
3404
            BzrDirFormatInfo(native, deprecated, hidden, experimental))
 
3405
        if alias:
 
3406
            self._aliases.add(key)
 
3407
        self._registration_order.append(key)
 
3408
 
 
3409
    def register_lazy(self, key, module_name, member_name, help, native=True,
 
3410
        deprecated=False, hidden=False, experimental=False, alias=False):
 
3411
        registry.Registry.register_lazy(self, key, module_name, member_name,
 
3412
            help, BzrDirFormatInfo(native, deprecated, hidden, experimental))
 
3413
        if alias:
 
3414
            self._aliases.add(key)
 
3415
        self._registration_order.append(key)
 
3416
 
 
3417
    def set_default(self, key):
 
3418
        """Set the 'default' key to be a clone of the supplied key.
 
3419
 
 
3420
        This method must be called once and only once.
 
3421
        """
 
3422
        registry.Registry.register(self, 'default', self.get(key),
 
3423
            self.get_help(key), info=self.get_info(key))
 
3424
        self._aliases.add('default')
 
3425
 
 
3426
    def set_default_repository(self, key):
 
3427
        """Set the FormatRegistry default and Repository default.
 
3428
 
 
3429
        This is a transitional method while Repository.set_default_format
 
3430
        is deprecated.
 
3431
        """
 
3432
        if 'default' in self:
 
3433
            self.remove('default')
 
3434
        self.set_default(key)
 
3435
        format = self.get('default')()
 
3436
 
 
3437
    def make_bzrdir(self, key):
 
3438
        return self.get(key)()
 
3439
 
 
3440
    def help_topic(self, topic):
 
3441
        output = ""
 
3442
        default_realkey = None
 
3443
        default_help = self.get_help('default')
 
3444
        help_pairs = []
 
3445
        for key in self._registration_order:
 
3446
            if key == 'default':
 
3447
                continue
 
3448
            help = self.get_help(key)
 
3449
            if help == default_help:
 
3450
                default_realkey = key
 
3451
            else:
 
3452
                help_pairs.append((key, help))
 
3453
 
 
3454
        def wrapped(key, help, info):
 
3455
            if info.native:
 
3456
                help = '(native) ' + help
 
3457
            return ':%s:\n%s\n\n' % (key,
 
3458
                    textwrap.fill(help, initial_indent='    ',
 
3459
                    subsequent_indent='    '))
 
3460
        if default_realkey is not None:
 
3461
            output += wrapped(default_realkey, '(default) %s' % default_help,
 
3462
                              self.get_info('default'))
 
3463
        deprecated_pairs = []
 
3464
        experimental_pairs = []
 
3465
        for key, help in help_pairs:
 
3466
            info = self.get_info(key)
 
3467
            if info.hidden:
 
3468
                continue
 
3469
            elif info.deprecated:
 
3470
                deprecated_pairs.append((key, help))
 
3471
            elif info.experimental:
 
3472
                experimental_pairs.append((key, help))
 
3473
            else:
 
3474
                output += wrapped(key, help, info)
 
3475
        output += "\nSee ``bzr help formats`` for more about storage formats."
 
3476
        other_output = ""
 
3477
        if len(experimental_pairs) > 0:
 
3478
            other_output += "Experimental formats are shown below.\n\n"
 
3479
            for key, help in experimental_pairs:
 
3480
                info = self.get_info(key)
 
3481
                other_output += wrapped(key, help, info)
 
3482
        else:
 
3483
            other_output += \
 
3484
                "No experimental formats are available.\n\n"
 
3485
        if len(deprecated_pairs) > 0:
 
3486
            other_output += "\nDeprecated formats are shown below.\n\n"
 
3487
            for key, help in deprecated_pairs:
 
3488
                info = self.get_info(key)
 
3489
                other_output += wrapped(key, help, info)
 
3490
        else:
 
3491
            other_output += \
 
3492
                "\nNo deprecated formats are available.\n\n"
 
3493
        other_output += \
 
3494
            "\nSee ``bzr help formats`` for more about storage formats."
 
3495
 
 
3496
        if topic == 'other-formats':
 
3497
            return other_output
 
3498
        else:
 
3499
            return output
2912
3500
 
2913
3501
 
2914
3502
class RepositoryAcquisitionPolicy(object):
2943
3531
            try:
2944
3532
                stack_on = urlutils.rebase_url(self._stack_on,
2945
3533
                    self._stack_on_pwd,
2946
 
                    branch.user_url)
 
3534
                    branch.bzrdir.root_transport.base)
2947
3535
            except errors.InvalidRebaseURLs:
2948
3536
                stack_on = self._get_full_stack_on()
2949
3537
        try:
2953
3541
            if self._require_stacking:
2954
3542
                raise
2955
3543
 
2956
 
    def requires_stacking(self):
2957
 
        """Return True if this policy requires stacking."""
2958
 
        return self._stack_on is not None and self._require_stacking
2959
 
 
2960
3544
    def _get_full_stack_on(self):
2961
3545
        """Get a fully-qualified URL for the stack_on location."""
2962
3546
        if self._stack_on is None:
3068
3652
        return self._repository, False
3069
3653
 
3070
3654
 
3071
 
def register_metadir(registry, key,
3072
 
         repository_format, help, native=True, deprecated=False,
3073
 
         branch_format=None,
3074
 
         tree_format=None,
3075
 
         hidden=False,
3076
 
         experimental=False,
3077
 
         alias=False):
3078
 
    """Register a metadir subformat.
3079
 
 
3080
 
    These all use a BzrDirMetaFormat1 bzrdir, but can be parameterized
3081
 
    by the Repository/Branch/WorkingTreeformats.
3082
 
 
3083
 
    :param repository_format: The fully-qualified repository format class
3084
 
        name as a string.
3085
 
    :param branch_format: Fully-qualified branch format class name as
3086
 
        a string.
3087
 
    :param tree_format: Fully-qualified tree format class name as
3088
 
        a string.
3089
 
    """
3090
 
    # This should be expanded to support setting WorkingTree and Branch
3091
 
    # formats, once BzrDirMetaFormat1 supports that.
3092
 
    def _load(full_name):
3093
 
        mod_name, factory_name = full_name.rsplit('.', 1)
3094
 
        try:
3095
 
            mod = __import__(mod_name, globals(), locals(),
3096
 
                    [factory_name])
3097
 
        except ImportError, e:
3098
 
            raise ImportError('failed to load %s: %s' % (full_name, e))
3099
 
        try:
3100
 
            factory = getattr(mod, factory_name)
3101
 
        except AttributeError:
3102
 
            raise AttributeError('no factory %s in module %r'
3103
 
                % (full_name, mod))
3104
 
        return factory()
3105
 
 
3106
 
    def helper():
3107
 
        bd = BzrDirMetaFormat1()
3108
 
        if branch_format is not None:
3109
 
            bd.set_branch_format(_load(branch_format))
3110
 
        if tree_format is not None:
3111
 
            bd.workingtree_format = _load(tree_format)
3112
 
        if repository_format is not None:
3113
 
            bd.repository_format = _load(repository_format)
3114
 
        return bd
3115
 
    registry.register(key, helper, help, native, deprecated, hidden,
3116
 
        experimental, alias)
3117
 
 
 
3655
# Please register new formats after old formats so that formats
 
3656
# appear in chronological order and format descriptions can build
 
3657
# on previous ones.
 
3658
format_registry = BzrDirFormatRegistry()
3118
3659
# The pre-0.8 formats have their repository format network name registered in
3119
3660
# repository.py. MetaDir formats have their repository format network name
3120
3661
# inferred from their disk format string.
3121
 
controldir.format_registry.register('weave', BzrDirFormat6,
 
3662
format_registry.register('weave', BzrDirFormat6,
3122
3663
    'Pre-0.8 format.  Slower than knit and does not'
3123
3664
    ' support checkouts or shared repositories.',
3124
 
    hidden=True,
3125
3665
    deprecated=True)
3126
 
register_metadir(controldir.format_registry, 'metaweave',
 
3666
format_registry.register_metadir('metaweave',
3127
3667
    'bzrlib.repofmt.weaverepo.RepositoryFormat7',
3128
3668
    'Transitional format in 0.8.  Slower than knit.',
3129
3669
    branch_format='bzrlib.branch.BzrBranchFormat5',
3130
3670
    tree_format='bzrlib.workingtree.WorkingTreeFormat3',
3131
 
    hidden=True,
3132
3671
    deprecated=True)
3133
 
register_metadir(controldir.format_registry, 'knit',
 
3672
format_registry.register_metadir('knit',
3134
3673
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
3135
3674
    'Format using knits.  Recommended for interoperation with bzr <= 0.14.',
3136
3675
    branch_format='bzrlib.branch.BzrBranchFormat5',
3137
3676
    tree_format='bzrlib.workingtree.WorkingTreeFormat3',
3138
 
    hidden=True,
3139
3677
    deprecated=True)
3140
 
register_metadir(controldir.format_registry, 'dirstate',
 
3678
format_registry.register_metadir('dirstate',
3141
3679
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
3142
3680
    help='New in 0.15: Fast local operations. Compatible with bzr 0.8 and '
3143
3681
        'above when accessed over the network.',
3145
3683
    # this uses bzrlib.workingtree.WorkingTreeFormat4 because importing
3146
3684
    # directly from workingtree_4 triggers a circular import.
3147
3685
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3148
 
    hidden=True,
3149
3686
    deprecated=True)
3150
 
register_metadir(controldir.format_registry, 'dirstate-tags',
 
3687
format_registry.register_metadir('dirstate-tags',
3151
3688
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
3152
3689
    help='New in 0.15: Fast local operations and improved scaling for '
3153
3690
        'network operations. Additionally adds support for tags.'
3154
3691
        ' Incompatible with bzr < 0.15.',
3155
3692
    branch_format='bzrlib.branch.BzrBranchFormat6',
3156
3693
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3157
 
    hidden=True,
3158
3694
    deprecated=True)
3159
 
register_metadir(controldir.format_registry, 'rich-root',
 
3695
format_registry.register_metadir('rich-root',
3160
3696
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit4',
3161
3697
    help='New in 1.0.  Better handling of tree roots.  Incompatible with'
3162
3698
        ' bzr < 1.0.',
3163
3699
    branch_format='bzrlib.branch.BzrBranchFormat6',
3164
3700
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3165
 
    hidden=True,
3166
3701
    deprecated=True)
3167
 
register_metadir(controldir.format_registry, 'dirstate-with-subtree',
 
3702
format_registry.register_metadir('dirstate-with-subtree',
3168
3703
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit3',
3169
3704
    help='New in 0.15: Fast local operations and improved scaling for '
3170
3705
        'network operations. Additionally adds support for versioning nested '
3174
3709
    experimental=True,
3175
3710
    hidden=True,
3176
3711
    )
3177
 
register_metadir(controldir.format_registry, 'pack-0.92',
 
3712
format_registry.register_metadir('pack-0.92',
3178
3713
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack1',
3179
3714
    help='New in 0.92: Pack-based format with data compatible with '
3180
3715
        'dirstate-tags format repositories. Interoperates with '
3181
3716
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
3182
 
        ,
 
3717
        'Previously called knitpack-experimental.  '
 
3718
        'For more information, see '
 
3719
        'http://doc.bazaar-vcs.org/latest/developers/packrepo.html.',
3183
3720
    branch_format='bzrlib.branch.BzrBranchFormat6',
3184
3721
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3185
3722
    )
3186
 
register_metadir(controldir.format_registry, 'pack-0.92-subtree',
 
3723
format_registry.register_metadir('pack-0.92-subtree',
3187
3724
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack3',
3188
3725
    help='New in 0.92: Pack-based format with data compatible with '
3189
3726
        'dirstate-with-subtree format repositories. Interoperates with '
3190
3727
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
3191
 
        ,
 
3728
        'Previously called knitpack-experimental.  '
 
3729
        'For more information, see '
 
3730
        'http://doc.bazaar-vcs.org/latest/developers/packrepo.html.',
3192
3731
    branch_format='bzrlib.branch.BzrBranchFormat6',
3193
3732
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3194
3733
    hidden=True,
3195
3734
    experimental=True,
3196
3735
    )
3197
 
register_metadir(controldir.format_registry, 'rich-root-pack',
 
3736
format_registry.register_metadir('rich-root-pack',
3198
3737
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',
3199
3738
    help='New in 1.0: A variant of pack-0.92 that supports rich-root data '
3200
3739
         '(needed for bzr-svn and bzr-git).',
3201
3740
    branch_format='bzrlib.branch.BzrBranchFormat6',
3202
3741
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3203
 
    hidden=True,
3204
3742
    )
3205
 
register_metadir(controldir.format_registry, '1.6',
 
3743
format_registry.register_metadir('1.6',
3206
3744
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5',
3207
3745
    help='A format that allows a branch to indicate that there is another '
3208
3746
         '(stacked) repository that should be used to access data that is '
3209
3747
         'not present locally.',
3210
3748
    branch_format='bzrlib.branch.BzrBranchFormat7',
3211
3749
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3212
 
    hidden=True,
3213
3750
    )
3214
 
register_metadir(controldir.format_registry, '1.6.1-rich-root',
 
3751
format_registry.register_metadir('1.6.1-rich-root',
3215
3752
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5RichRoot',
3216
3753
    help='A variant of 1.6 that supports rich-root data '
3217
3754
         '(needed for bzr-svn and bzr-git).',
3218
3755
    branch_format='bzrlib.branch.BzrBranchFormat7',
3219
3756
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3220
 
    hidden=True,
3221
3757
    )
3222
 
register_metadir(controldir.format_registry, '1.9',
 
3758
format_registry.register_metadir('1.9',
3223
3759
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
3224
3760
    help='A repository format using B+tree indexes. These indexes '
3225
3761
         'are smaller in size, have smarter caching and provide faster '
3226
3762
         'performance for most operations.',
3227
3763
    branch_format='bzrlib.branch.BzrBranchFormat7',
3228
3764
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3229
 
    hidden=True,
3230
3765
    )
3231
 
register_metadir(controldir.format_registry, '1.9-rich-root',
 
3766
format_registry.register_metadir('1.9-rich-root',
3232
3767
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
3233
3768
    help='A variant of 1.9 that supports rich-root data '
3234
3769
         '(needed for bzr-svn and bzr-git).',
3235
3770
    branch_format='bzrlib.branch.BzrBranchFormat7',
3236
3771
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3237
 
    hidden=True,
3238
3772
    )
3239
 
register_metadir(controldir.format_registry, '1.14',
 
3773
format_registry.register_metadir('1.14',
3240
3774
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
3241
3775
    help='A working-tree format that supports content filtering.',
3242
3776
    branch_format='bzrlib.branch.BzrBranchFormat7',
3243
3777
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
3244
3778
    )
3245
 
register_metadir(controldir.format_registry, '1.14-rich-root',
 
3779
format_registry.register_metadir('1.14-rich-root',
3246
3780
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
3247
3781
    help='A variant of 1.14 that supports rich-root data '
3248
3782
         '(needed for bzr-svn and bzr-git).',
3250
3784
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
3251
3785
    )
3252
3786
# The following un-numbered 'development' formats should always just be aliases.
3253
 
register_metadir(controldir.format_registry, 'development-rich-root',
 
3787
format_registry.register_metadir('development-rich-root',
3254
3788
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK1',
3255
3789
    help='Current development format. Supports rich roots. Can convert data '
3256
3790
        'to and from rich-root-pack (and anything compatible with '
3257
3791
        'rich-root-pack) format repositories. Repositories and branches in '
3258
3792
        'this format can only be read by bzr.dev. Please read '
3259
 
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
3793
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
3260
3794
        'before use.',
3261
3795
    branch_format='bzrlib.branch.BzrBranchFormat7',
3262
3796
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3263
3797
    experimental=True,
3264
3798
    alias=True,
3265
 
    hidden=True,
3266
3799
    )
3267
 
register_metadir(controldir.format_registry, 'development5-subtree',
 
3800
format_registry.register_metadir('development-subtree',
3268
3801
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment2Subtree',
3269
 
    help='Development format, subtree variant. Can convert data to and '
3270
 
        'from pack-0.92-subtree (and anything compatible with '
3271
 
        'pack-0.92-subtree) format repositories. Repositories and branches in '
3272
 
        'this format can only be read by bzr.dev. Please read '
3273
 
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
3274
 
        'before use.',
3275
 
    branch_format='bzrlib.branch.BzrBranchFormat7',
3276
 
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3277
 
    experimental=True,
3278
 
    hidden=True,
3279
 
    alias=False,
3280
 
    )
3281
 
 
3282
 
 
3283
 
register_metadir(controldir.format_registry, 'development-subtree',
3284
 
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormat2aSubtree',
3285
3802
    help='Current development format, subtree variant. Can convert data to and '
3286
3803
        'from pack-0.92-subtree (and anything compatible with '
3287
3804
        'pack-0.92-subtree) format repositories. Repositories and branches in '
3288
3805
        'this format can only be read by bzr.dev. Please read '
3289
 
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
3806
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
3290
3807
        'before use.',
3291
3808
    branch_format='bzrlib.branch.BzrBranchFormat7',
3292
3809
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3293
3810
    experimental=True,
3294
 
    hidden=True,
3295
3811
    alias=False, # Restore to being an alias when an actual development subtree format is added
3296
3812
                 # This current non-alias status is simply because we did not introduce a
3297
3813
                 # chk based subtree format.
3298
3814
    )
3299
3815
 
3300
3816
# And the development formats above will have aliased one of the following:
3301
 
register_metadir(controldir.format_registry, 'development6-rich-root',
 
3817
format_registry.register_metadir('development6-rich-root',
3302
3818
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK1',
3303
3819
    help='pack-1.9 with 255-way hashed CHK inv, group compress, rich roots '
3304
3820
        'Please read '
3305
 
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
3821
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
3306
3822
        'before use.',
3307
3823
    branch_format='bzrlib.branch.BzrBranchFormat7',
3308
3824
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3310
3826
    experimental=True,
3311
3827
    )
3312
3828
 
3313
 
register_metadir(controldir.format_registry, 'development7-rich-root',
 
3829
format_registry.register_metadir('development7-rich-root',
3314
3830
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK2',
3315
3831
    help='pack-1.9 with 255-way hashed CHK inv, bencode revision, group compress, '
3316
3832
        'rich roots. Please read '
3317
 
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
 
3833
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
3318
3834
        'before use.',
3319
3835
    branch_format='bzrlib.branch.BzrBranchFormat7',
3320
3836
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3322
3838
    experimental=True,
3323
3839
    )
3324
3840
 
3325
 
register_metadir(controldir.format_registry, '2a',
 
3841
format_registry.register_metadir('2a',
3326
3842
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormat2a',
3327
3843
    help='First format for bzr 2.0 series.\n'
3328
3844
        'Uses group-compress storage.\n'
3331
3847
        # 'rich roots. Supported by bzr 1.16 and later.',
3332
3848
    branch_format='bzrlib.branch.BzrBranchFormat7',
3333
3849
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3334
 
    experimental=False,
 
3850
    experimental=True,
3335
3851
    )
3336
3852
 
3337
3853
# The following format should be an alias for the rich root equivalent 
3338
3854
# of the default format
3339
 
register_metadir(controldir.format_registry, 'default-rich-root',
3340
 
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormat2a',
3341
 
    branch_format='bzrlib.branch.BzrBranchFormat7',
3342
 
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
3855
format_registry.register_metadir('default-rich-root',
 
3856
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',
 
3857
    help='Default format, rich root variant. (needed for bzr-svn and bzr-git).',
 
3858
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
3859
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3343
3860
    alias=True,
3344
 
    hidden=True,
3345
 
    help='Same as 2a.')
3346
 
 
 
3861
    )
3347
3862
# The current format that is made on 'bzr init'.
3348
 
controldir.format_registry.set_default('2a')
3349
 
 
3350
 
# XXX 2010-08-20 JRV: There is still a lot of code relying on
3351
 
# bzrlib.bzrdir.format_registry existing. When BzrDir.create/BzrDir.open/etc
3352
 
# get changed to ControlDir.create/ControlDir.open/etc this should be removed.
3353
 
format_registry = controldir.format_registry
 
3863
format_registry.set_default('pack-0.92')