~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Matt Nordhoff
  • Date: 2009-04-04 02:50:01 UTC
  • mfrom: (4253 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4256.
  • Revision ID: mnordhoff@mattnordhoff.com-20090404025001-z1403k0tatmc8l91
Merge bzr.dev, fixing conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""BzrDir logic. The BzrDir is the basic control directory used by bzr.
18
18
 
57
57
from bzrlib.osutils import (
58
58
    sha_string,
59
59
    )
 
60
from bzrlib.push import (
 
61
    PushResult,
 
62
    )
60
63
from bzrlib.smart.client import _SmartClient
61
64
from bzrlib.store.versioned import WeaveStore
62
65
from bzrlib.transactions import WriteTransaction
75
78
    )
76
79
 
77
80
from bzrlib import (
 
81
    hooks,
78
82
    registry,
79
83
    symbol_versioning,
80
84
    )
82
86
 
83
87
class BzrDir(object):
84
88
    """A .bzr control diretory.
85
 
    
 
89
 
86
90
    BzrDir instances let you create or open any of the things that can be
87
91
    found within .bzr - checkouts, branches and repositories.
88
 
    
 
92
 
89
93
    :ivar transport:
90
94
        the transport which this bzr dir is rooted at (i.e. file:///.../.bzr/)
91
95
    :ivar root_transport:
93
97
        (i.e. the parent directory holding the .bzr directory).
94
98
 
95
99
    Everything in the bzrdir should have the same file permissions.
 
100
 
 
101
    :cvar hooks: An instance of BzrDirHooks.
96
102
    """
97
103
 
98
104
    def break_lock(self):
130
136
        basedir=None):
131
137
        """Give an error or warning on old formats.
132
138
 
133
 
        :param format: may be any kind of format - workingtree, branch, 
 
139
        :param format: may be any kind of format - workingtree, branch,
134
140
        or repository.
135
141
 
136
 
        :param allow_unsupported: If true, allow opening 
137
 
        formats that are strongly deprecated, and which may 
 
142
        :param allow_unsupported: If true, allow opening
 
143
        formats that are strongly deprecated, and which may
138
144
        have limited functionality.
139
145
 
140
146
        :param recommend_upgrade: If true (default), warn
189
195
        transport.ensure_base()
190
196
        require_stacking = (stacked_on is not None)
191
197
        format = self.cloning_metadir(require_stacking)
 
198
        # Bug: We create a metadir without knowing if it can support stacking,
 
199
        # we should look up the policy needs first.
192
200
        result = format.initialize_on_transport(transport)
193
201
        repository_policy = None
194
202
        try:
217
225
                force_new_repo, stacked_on, self.root_transport.base,
218
226
                require_stacking=require_stacking)
219
227
            make_working_trees = local_repo.make_working_trees()
220
 
            result_repo = repository_policy.acquire_repository(
 
228
            result_repo, is_new_repo = repository_policy.acquire_repository(
221
229
                make_working_trees, local_repo.is_shared())
222
230
            if not require_stacking and repository_policy._require_stacking:
223
231
                require_stacking = True
224
232
                result._format.require_stacking()
225
 
            result_repo.fetch(local_repo, revision_id=revision_id)
 
233
            if is_new_repo and not require_stacking and revision_id is not None:
 
234
                fetch_spec = graph.PendingAncestryResult(
 
235
                    [revision_id], local_repo)
 
236
                result_repo.fetch(local_repo, fetch_spec=fetch_spec)
 
237
            else:
 
238
                result_repo.fetch(local_repo, revision_id=revision_id)
226
239
        else:
227
240
            result_repo = None
228
241
        # 1 if there is a branch present
229
242
        #   make sure its content is available in the target repository
230
243
        #   clone it.
231
244
        if local_branch is not None:
232
 
            result_branch = local_branch.clone(result, revision_id=revision_id)
233
 
            if repository_policy is not None:
234
 
                repository_policy.configure_branch(result_branch)
235
 
        if result_repo is None or result_repo.make_working_trees():
236
 
            try:
 
245
            result_branch = local_branch.clone(result, revision_id=revision_id,
 
246
                repository_policy=repository_policy)
 
247
        try:
 
248
            # Cheaper to check if the target is not local, than to try making
 
249
            # the tree and fail.
 
250
            result.root_transport.local_abspath('.')
 
251
            if result_repo is None or result_repo.make_working_trees():
237
252
                self.open_workingtree().clone(result)
238
 
            except (errors.NoWorkingTree, errors.NotLocalUrl):
239
 
                pass
 
253
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
254
            pass
240
255
        return result
241
256
 
242
257
    # TODO: This should be given a Transport, and should chdir up; otherwise
248
263
    @classmethod
249
264
    def create(cls, base, format=None, possible_transports=None):
250
265
        """Create a new BzrDir at the url 'base'.
251
 
        
 
266
 
252
267
        :param format: If supplied, the format of branch to create.  If not
253
268
            supplied, the default is used.
254
 
        :param possible_transports: If supplied, a list of transports that 
 
269
        :param possible_transports: If supplied, a list of transports that
255
270
            can be reused to share a remote connection.
256
271
        """
257
272
        if cls is not BzrDir:
357
372
        """Create a new BzrDir, Branch and Repository at the url 'base'.
358
373
 
359
374
        This will use the current default BzrDirFormat unless one is
360
 
        specified, and use whatever 
 
375
        specified, and use whatever
361
376
        repository format that that uses via bzrdir.create_branch and
362
377
        create_repository. If a shared repository is available that is used
363
378
        preferentially.
377
392
                                    stack_on_pwd=None, require_stacking=False):
378
393
        """Return an object representing a policy to use.
379
394
 
380
 
        This controls whether a new repository is created, or a shared
381
 
        repository used instead.
 
395
        This controls whether a new repository is created, and the format of
 
396
        that repository, or some existing shared repository used instead.
382
397
 
383
398
        If stack_on is supplied, will not seek a containing shared repo.
384
399
 
398
413
                if stack_on is not None:
399
414
                    stack_on_pwd = found_bzrdir.root_transport.base
400
415
                    stop = True
401
 
                    note('Using default stacking branch %s at %s', stack_on,
402
 
                         stack_on_pwd)
403
416
            # does it have a repository ?
404
417
            try:
405
418
                repository = found_bzrdir.open_repository()
408
421
            else:
409
422
                if ((found_bzrdir.root_transport.base !=
410
423
                     self.root_transport.base) and not repository.is_shared()):
 
424
                    # Don't look higher, can't use a higher shared repo.
411
425
                    repository = None
 
426
                    stop = True
412
427
                else:
413
428
                    stop = True
414
429
            if not stop:
438
453
    def _find_or_create_repository(self, force_new_repo):
439
454
        """Create a new repository if needed, returning the repository."""
440
455
        policy = self.determine_repository_policy(force_new_repo)
441
 
        return policy.acquire_repository()
 
456
        return policy.acquire_repository()[0]
442
457
 
443
458
    @staticmethod
444
459
    def create_branch_convenience(base, force_new_repo=False,
451
466
        not.
452
467
 
453
468
        This will use the current default BzrDirFormat unless one is
454
 
        specified, and use whatever 
 
469
        specified, and use whatever
455
470
        repository format that that uses via bzrdir.create_branch and
456
471
        create_repository. If a shared repository is available that is used
457
472
        preferentially. Whatever repository is used, its tree creation policy
459
474
 
460
475
        The created Branch object is returned.
461
476
        If a working tree cannot be made due to base not being a file:// url,
462
 
        no error is raised unless force_new_tree is True, in which case no 
 
477
        no error is raised unless force_new_tree is True, in which case no
463
478
        data is created on disk and NotLocalUrl is raised.
464
479
 
465
480
        :param base: The URL to create the branch at.
466
481
        :param force_new_repo: If True a new repository is always created.
467
 
        :param force_new_tree: If True or False force creation of a tree or 
 
482
        :param force_new_tree: If True or False force creation of a tree or
468
483
                               prevent such creation respectively.
469
484
        :param format: Override for the bzrdir format to create.
470
485
        :param possible_transports: An optional reusable transports list.
492
507
        'base' must be a local path or a file:// url.
493
508
 
494
509
        This will use the current default BzrDirFormat unless one is
495
 
        specified, and use whatever 
 
510
        specified, and use whatever
496
511
        repository format that that uses for bzrdirformat.create_workingtree,
497
512
        create_branch and create_repository.
498
513
 
510
525
    def create_workingtree(self, revision_id=None, from_branch=None,
511
526
        accelerator_tree=None, hardlink=False):
512
527
        """Create a working tree at this BzrDir.
513
 
        
 
528
 
514
529
        :param revision_id: create it as of this revision id.
515
530
        :param from_branch: override bzrdir branch (for lightweight checkouts)
516
531
        :param accelerator_tree: A tree which can be used for retrieving file
522
537
 
523
538
    def backup_bzrdir(self):
524
539
        """Backup this bzr control directory.
525
 
        
 
540
 
526
541
        :return: Tuple with old path name and new path name
527
542
        """
528
543
        pb = ui.ui_factory.nested_progress_bar()
531
546
            # already exists, but it should instead either remove it or make
532
547
            # a new backup directory.
533
548
            #
534
 
            # FIXME: bug 262450 -- the backup directory should have the same 
 
549
            # FIXME: bug 262450 -- the backup directory should have the same
535
550
            # permissions as the .bzr directory (probably a bug in copy_tree)
536
551
            old_path = self.root_transport.abspath('.bzr')
537
552
            new_path = self.root_transport.abspath('backup.bzr')
652
667
        IncompatibleFormat if the branch format they are given has
653
668
        a format string, and vice versa.
654
669
 
655
 
        If branch_format is None, the transport is returned with no 
 
670
        If branch_format is None, the transport is returned with no
656
671
        checking. If it is not None, then the returned transport is
657
672
        guaranteed to point to an existing directory ready for use.
658
673
        """
701
716
        if not self._mode_check_done:
702
717
            self._find_creation_modes()
703
718
        return self._dir_mode
704
 
        
 
719
 
705
720
    def get_repository_transport(self, repository_format):
706
721
        """Get the transport for use by repository format in this BzrDir.
707
722
 
709
724
        IncompatibleFormat if the repository format they are given has
710
725
        a format string, and vice versa.
711
726
 
712
 
        If repository_format is None, the transport is returned with no 
 
727
        If repository_format is None, the transport is returned with no
713
728
        checking. If it is not None, then the returned transport is
714
729
        guaranteed to point to an existing directory ready for use.
715
730
        """
716
731
        raise NotImplementedError(self.get_repository_transport)
717
 
        
 
732
 
718
733
    def get_workingtree_transport(self, tree_format):
719
734
        """Get the transport for use by workingtree format in this BzrDir.
720
735
 
722
737
        IncompatibleFormat if the workingtree format they are given has a
723
738
        format string, and vice versa.
724
739
 
725
 
        If workingtree_format is None, the transport is returned with no 
 
740
        If workingtree_format is None, the transport is returned with no
726
741
        checking. If it is not None, then the returned transport is
727
742
        guaranteed to point to an existing directory ready for use.
728
743
        """
735
750
 
736
751
    def __init__(self, _transport, _format):
737
752
        """Initialize a Bzr control dir object.
738
 
        
 
753
 
739
754
        Only really common logic should reside here, concrete classes should be
740
755
        made with varying behaviours.
741
756
 
749
764
 
750
765
    def is_control_filename(self, filename):
751
766
        """True if filename is the name of a path which is reserved for bzrdir's.
752
 
        
 
767
 
753
768
        :param filename: A filename within the root transport of this bzrdir.
754
769
 
755
770
        This is true IF and ONLY IF the filename is part of the namespace reserved
758
773
        this in the future - for instance to make bzr talk with svn working
759
774
        trees.
760
775
        """
761
 
        # this might be better on the BzrDirFormat class because it refers to 
762
 
        # all the possible bzrdir disk formats. 
763
 
        # This method is tested via the workingtree is_control_filename tests- 
 
776
        # this might be better on the BzrDirFormat class because it refers to
 
777
        # all the possible bzrdir disk formats.
 
778
        # This method is tested via the workingtree is_control_filename tests-
764
779
        # it was extracted from WorkingTree.is_control_filename. If the method's
765
780
        # contract is extended beyond the current trivial implementation, please
766
781
        # add new tests for it to the appropriate place.
768
783
 
769
784
    def needs_format_conversion(self, format=None):
770
785
        """Return true if this bzrdir needs convert_format run on it.
771
 
        
772
 
        For instance, if the repository format is out of date but the 
 
786
 
 
787
        For instance, if the repository format is out of date but the
773
788
        branch and working tree are not, this should return True.
774
789
 
775
790
        :param format: Optional parameter indicating a specific desired
781
796
    def open_unsupported(base):
782
797
        """Open a branch which is not supported."""
783
798
        return BzrDir.open(base, _unsupported=True)
784
 
        
 
799
 
785
800
    @staticmethod
786
801
    def open(base, _unsupported=False, possible_transports=None):
787
802
        """Open an existing bzrdir, rooted at 'base' (url).
788
 
        
 
803
 
789
804
        :param _unsupported: a private parameter to the BzrDir class.
790
805
        """
791
806
        t = get_transport(base, possible_transports=possible_transports)
799
814
        :param transport: Transport containing the bzrdir.
800
815
        :param _unsupported: private.
801
816
        """
 
817
        for hook in BzrDir.hooks['pre_open']:
 
818
            hook(transport)
802
819
        # Keep initial base since 'transport' may be modified while following
803
820
        # the redirections.
804
821
        base = transport.base
824
841
        BzrDir._check_supported(format, _unsupported)
825
842
        return format.open(transport, _found=True)
826
843
 
827
 
    def open_branch(self, unsupported=False):
 
844
    def open_branch(self, unsupported=False, ignore_fallbacks=False):
828
845
        """Open the branch object at this BzrDir if one is present.
829
846
 
830
847
        If unsupported is True, then no longer supported branch formats can
831
848
        still be opened.
832
 
        
 
849
 
833
850
        TODO: static convenience version of this?
834
851
        """
835
852
        raise NotImplementedError(self.open_branch)
837
854
    @staticmethod
838
855
    def open_containing(url, possible_transports=None):
839
856
        """Open an existing branch which contains url.
840
 
        
 
857
 
841
858
        :param url: url to search from.
842
859
        See open_containing_from_transport for more detail.
843
860
        """
844
861
        transport = get_transport(url, possible_transports)
845
862
        return BzrDir.open_containing_from_transport(transport)
846
 
    
 
863
 
847
864
    @staticmethod
848
865
    def open_containing_from_transport(a_transport):
849
866
        """Open an existing branch which contains a_transport.base.
852
869
 
853
870
        Basically we keep looking up until we find the control directory or
854
871
        run into the root.  If there isn't one, raises NotBranchError.
855
 
        If there is one and it is either an unrecognised format or an unsupported 
 
872
        If there is one and it is either an unrecognised format or an unsupported
856
873
        format, UnknownFormatError or UnsupportedFormatError are raised.
857
874
        If there is one, it is returned, along with the unused portion of url.
858
875
 
859
 
        :return: The BzrDir that contains the path, and a Unicode path 
 
876
        :return: The BzrDir that contains the path, and a Unicode path
860
877
                for the rest of the URL.
861
878
        """
862
879
        # this gets the normalised url back. I.e. '.' -> the full path.
970
987
 
971
988
    def has_branch(self):
972
989
        """Tell if this bzrdir contains a branch.
973
 
        
 
990
 
974
991
        Note: if you're going to open the branch, you should just go ahead
975
 
        and try, and not ask permission first.  (This method just opens the 
976
 
        branch and discards it, and that's somewhat expensive.) 
 
992
        and try, and not ask permission first.  (This method just opens the
 
993
        branch and discards it, and that's somewhat expensive.)
977
994
        """
978
995
        try:
979
996
            self.open_branch()
986
1003
 
987
1004
        This will still raise an exception if the bzrdir has a workingtree that
988
1005
        is remote & inaccessible.
989
 
        
 
1006
 
990
1007
        Note: if you're going to open the working tree, you should just go ahead
991
 
        and try, and not ask permission first.  (This method just opens the 
992
 
        workingtree and discards it, and that's somewhat expensive.) 
 
1008
        and try, and not ask permission first.  (This method just opens the
 
1009
        workingtree and discards it, and that's somewhat expensive.)
993
1010
        """
994
1011
        try:
995
1012
            self.open_workingtree(recommend_upgrade=False)
999
1016
 
1000
1017
    def _cloning_metadir(self):
1001
1018
        """Produce a metadir suitable for cloning with.
1002
 
        
 
1019
 
1003
1020
        :returns: (destination_bzrdir_format, source_repository)
1004
1021
        """
1005
1022
        result_format = self._format.__class__()
1006
1023
        try:
1007
1024
            try:
1008
 
                branch = self.open_branch()
 
1025
                branch = self.open_branch(ignore_fallbacks=True)
1009
1026
                source_repository = branch.repository
1010
1027
                result_format._branch_format = branch._format
1011
1028
            except errors.NotBranchError:
1112
1129
                    source_repository = None
1113
1130
        repository_policy = result.determine_repository_policy(
1114
1131
            force_new_repo, stacked_branch_url, require_stacking=stacked)
1115
 
        result_repo = repository_policy.acquire_repository()
 
1132
        result_repo, is_new_repo = repository_policy.acquire_repository()
 
1133
        if is_new_repo and revision_id is not None and not stacked:
 
1134
            fetch_spec = graph.PendingAncestryResult(
 
1135
                [revision_id], source_repository)
 
1136
        else:
 
1137
            fetch_spec = None
1116
1138
        if source_repository is not None:
1117
1139
            # Fetch while stacked to prevent unstacked fetch from
1118
1140
            # Branch.sprout.
1119
 
            result_repo.fetch(source_repository, revision_id=revision_id)
 
1141
            if fetch_spec is None:
 
1142
                result_repo.fetch(source_repository, revision_id=revision_id)
 
1143
            else:
 
1144
                result_repo.fetch(source_repository, fetch_spec=fetch_spec)
1120
1145
 
1121
1146
        if source_branch is None:
1122
1147
            # this is for sprouting a bzrdir without a branch; is that
1124
1149
            # Not especially, but it's part of the contract.
1125
1150
            result_branch = result.create_branch()
1126
1151
        else:
1127
 
            # Force NULL revision to avoid using repository before stacking
1128
 
            # is configured.
1129
 
            result_branch = source_branch.sprout(
1130
 
                result, revision_id=_mod_revision.NULL_REVISION)
1131
 
            parent_location = result_branch.get_parent()
 
1152
            result_branch = source_branch.sprout(result,
 
1153
                revision_id=revision_id, repository_policy=repository_policy)
1132
1154
        mutter("created new branch %r" % (result_branch,))
1133
 
        repository_policy.configure_branch(result_branch)
1134
 
        if source_branch is not None:
1135
 
            source_branch.copy_content_into(result_branch, revision_id)
1136
 
            # Override copy_content_into
1137
 
            result_branch.set_parent(parent_location)
1138
1155
 
1139
1156
        # Create/update the result working tree
1140
1157
        if (create_tree_if_local and
1182
1199
                    basis.unlock()
1183
1200
        return result
1184
1201
 
 
1202
    def push_branch(self, source, revision_id=None, overwrite=False, 
 
1203
        remember=False):
 
1204
        """Push the source branch into this BzrDir."""
 
1205
        br_to = None
 
1206
        # If we can open a branch, use its direct repository, otherwise see
 
1207
        # if there is a repository without a branch.
 
1208
        try:
 
1209
            br_to = self.open_branch()
 
1210
        except errors.NotBranchError:
 
1211
            # Didn't find a branch, can we find a repository?
 
1212
            repository_to = self.find_repository()
 
1213
        else:
 
1214
            # Found a branch, so we must have found a repository
 
1215
            repository_to = br_to.repository
 
1216
 
 
1217
        push_result = PushResult()
 
1218
        push_result.source_branch = source
 
1219
        if br_to is None:
 
1220
            # We have a repository but no branch, copy the revisions, and then
 
1221
            # create a branch.
 
1222
            repository_to.fetch(source.repository, revision_id=revision_id)
 
1223
            br_to = source.clone(self, revision_id=revision_id)
 
1224
            if source.get_push_location() is None or remember:
 
1225
                source.set_push_location(br_to.base)
 
1226
            push_result.stacked_on = None
 
1227
            push_result.branch_push_result = None
 
1228
            push_result.old_revno = None
 
1229
            push_result.old_revid = _mod_revision.NULL_REVISION
 
1230
            push_result.target_branch = br_to
 
1231
            push_result.master_branch = None
 
1232
            push_result.workingtree_updated = False
 
1233
        else:
 
1234
            # We have successfully opened the branch, remember if necessary:
 
1235
            if source.get_push_location() is None or remember:
 
1236
                source.set_push_location(br_to.base)
 
1237
            try:
 
1238
                tree_to = self.open_workingtree()
 
1239
            except errors.NotLocalUrl:
 
1240
                push_result.branch_push_result = source.push(br_to, 
 
1241
                    overwrite, stop_revision=revision_id)
 
1242
                push_result.workingtree_updated = False
 
1243
            except errors.NoWorkingTree:
 
1244
                push_result.branch_push_result = source.push(br_to,
 
1245
                    overwrite, stop_revision=revision_id)
 
1246
                push_result.workingtree_updated = None # Not applicable
 
1247
            else:
 
1248
                tree_to.lock_write()
 
1249
                try:
 
1250
                    push_result.branch_push_result = source.push(
 
1251
                        tree_to.branch, overwrite, stop_revision=revision_id)
 
1252
                    tree_to.update()
 
1253
                finally:
 
1254
                    tree_to.unlock()
 
1255
                push_result.workingtree_updated = True
 
1256
            push_result.old_revno = push_result.branch_push_result.old_revno
 
1257
            push_result.old_revid = push_result.branch_push_result.old_revid
 
1258
            push_result.target_branch = \
 
1259
                push_result.branch_push_result.target_branch
 
1260
        return push_result
 
1261
 
 
1262
 
 
1263
class BzrDirHooks(hooks.Hooks):
 
1264
    """Hooks for BzrDir operations."""
 
1265
 
 
1266
    def __init__(self):
 
1267
        """Create the default hooks."""
 
1268
        hooks.Hooks.__init__(self)
 
1269
        self.create_hook(hooks.HookPoint('pre_open',
 
1270
            "Invoked before attempting to open a BzrDir with the transport "
 
1271
            "that the open will use.", (1, 14), None))
 
1272
 
 
1273
# install the default hooks
 
1274
BzrDir.hooks = BzrDirHooks()
 
1275
 
1185
1276
 
1186
1277
class BzrDirPreSplitOut(BzrDir):
1187
1278
    """A common class for the all-in-one formats."""
1258
1349
        # and that will have set it for us, its only
1259
1350
        # specific uses of create_workingtree in isolation
1260
1351
        # that can do wonky stuff here, and that only
1261
 
        # happens for creating checkouts, which cannot be 
 
1352
        # happens for creating checkouts, which cannot be
1262
1353
        # done on this format anyway. So - acceptable wart.
1263
1354
        try:
1264
1355
            result = self.open_workingtree(recommend_upgrade=False)
1287
1378
 
1288
1379
    def destroy_workingtree_metadata(self):
1289
1380
        """See BzrDir.destroy_workingtree_metadata."""
1290
 
        raise errors.UnsupportedOperation(self.destroy_workingtree_metadata, 
 
1381
        raise errors.UnsupportedOperation(self.destroy_workingtree_metadata,
1291
1382
                                          self)
1292
1383
 
1293
1384
    def get_branch_transport(self, branch_format):
1330
1421
            format = BzrDirFormat.get_default_format()
1331
1422
        return not isinstance(self._format, format.__class__)
1332
1423
 
1333
 
    def open_branch(self, unsupported=False):
 
1424
    def open_branch(self, unsupported=False, ignore_fallbacks=False):
1334
1425
        """See BzrDir.open_branch."""
1335
1426
        from bzrlib.branch import BzrBranchFormat4
1336
1427
        format = BzrBranchFormat4()
1339
1430
 
1340
1431
    def sprout(self, url, revision_id=None, force_new_repo=False,
1341
1432
               possible_transports=None, accelerator_tree=None,
1342
 
               hardlink=False, stacked=False, create_tree_if_local=True):
 
1433
               hardlink=False, stacked=False, create_tree_if_local=True,
 
1434
               source_branch=None):
1343
1435
        """See BzrDir.sprout()."""
 
1436
        if source_branch is not None:
 
1437
            my_branch = self.open_branch()
 
1438
            if source_branch.base != my_branch.base:
 
1439
                raise AssertionError(
 
1440
                    "source branch %r is not within %r with branch %r" %
 
1441
                    (source_branch, self, my_branch))
1344
1442
        if stacked:
1345
1443
            raise errors.UnstackableBranchFormat(
1346
1444
                self._format, self.root_transport.base)
1368
1466
 
1369
1467
class BzrDir4(BzrDirPreSplitOut):
1370
1468
    """A .bzr version 4 control object.
1371
 
    
 
1469
 
1372
1470
    This is a deprecated format and may be removed after sept 2006.
1373
1471
    """
1374
1472
 
1432
1530
 
1433
1531
class BzrDirMeta1(BzrDir):
1434
1532
    """A .bzr meta version 1 control object.
1435
 
    
1436
 
    This is the first control object where the 
 
1533
 
 
1534
    This is the first control object where the
1437
1535
    individual aspects are really split out: there are separate repository,
1438
1536
    workingtree and branch subdirectories and any subset of the three can be
1439
1537
    present within a BzrDir.
1574
1672
            pass
1575
1673
        return False
1576
1674
 
1577
 
    def open_branch(self, unsupported=False):
 
1675
    def open_branch(self, unsupported=False, ignore_fallbacks=False):
1578
1676
        """See BzrDir.open_branch."""
1579
1677
        format = self.find_branch_format()
1580
1678
        self._check_supported(format, unsupported)
1581
 
        return format.open(self, _found=True)
 
1679
        return format.open(self, _found=True, ignore_fallbacks=ignore_fallbacks)
1582
1680
 
1583
1681
    def open_repository(self, unsupported=False):
1584
1682
        """See BzrDir.open_repository."""
1609
1707
     * a format string,
1610
1708
     * an open routine.
1611
1709
 
1612
 
    Formats are placed in a dict by their format string for reference 
 
1710
    Formats are placed in a dict by their format string for reference
1613
1711
    during bzrdir opening. These should be subclasses of BzrDirFormat
1614
1712
    for consistency.
1615
1713
 
1616
1714
    Once a format is deprecated, just deprecate the initialize and open
1617
 
    methods on the format class. Do not deprecate the object, as the 
 
1715
    methods on the format class. Do not deprecate the object, as the
1618
1716
    object will be created every system load.
1619
1717
    """
1620
1718
 
1626
1724
 
1627
1725
    _control_formats = []
1628
1726
    """The registered control formats - .bzr, ....
1629
 
    
 
1727
 
1630
1728
    This is a list of BzrDirFormat objects.
1631
1729
    """
1632
1730
 
1691
1789
        current default format. In the case of plugins we can/should provide
1692
1790
        some means for them to extend the range of returnable converters.
1693
1791
 
1694
 
        :param format: Optional format to override the default format of the 
 
1792
        :param format: Optional format to override the default format of the
1695
1793
                       library.
1696
1794
        """
1697
1795
        raise NotImplementedError(self.get_converter)
1698
1796
 
1699
1797
    def initialize(self, url, possible_transports=None):
1700
1798
        """Create a bzr control dir at this url and return an opened copy.
1701
 
        
 
1799
 
1702
1800
        Subclasses should typically override initialize_on_transport
1703
1801
        instead of this method.
1704
1802
        """
1725
1823
 
1726
1824
    def _initialize_on_transport_vfs(self, transport):
1727
1825
        """Initialize a new bzrdir using VFS calls.
1728
 
        
 
1826
 
1729
1827
        :param transport: The transport to create the .bzr directory in.
1730
1828
        :return: A
1731
1829
        """
1765
1863
        """Is this format supported?
1766
1864
 
1767
1865
        Supported formats must be initializable and openable.
1768
 
        Unsupported formats may not support initialization or committing or 
 
1866
        Unsupported formats may not support initialization or committing or
1769
1867
        some other features depending on the reason for not being supported.
1770
1868
        """
1771
1869
        return True
1772
1870
 
 
1871
    def network_name(self):
 
1872
        """A simple byte string uniquely identifying this format for RPC calls.
 
1873
 
 
1874
        Bzr control formats use thir disk format string to identify the format
 
1875
        over the wire. Its possible that other control formats have more
 
1876
        complex detection requirements, so we permit them to use any unique and
 
1877
        immutable string they desire.
 
1878
        """
 
1879
        raise NotImplementedError(self.network_name)
 
1880
 
1773
1881
    def same_model(self, target_format):
1774
 
        return (self.repository_format.rich_root_data == 
 
1882
        return (self.repository_format.rich_root_data ==
1775
1883
            target_format.rich_root_data)
1776
1884
 
1777
1885
    @classmethod
1778
1886
    def known_formats(klass):
1779
1887
        """Return all the known formats.
1780
 
        
 
1888
 
1781
1889
        Concrete formats should override _known_formats.
1782
1890
        """
1783
 
        # There is double indirection here to make sure that control 
1784
 
        # formats used by more than one dir format will only be probed 
 
1891
        # There is double indirection here to make sure that control
 
1892
        # formats used by more than one dir format will only be probed
1785
1893
        # once. This can otherwise be quite expensive for remote connections.
1786
1894
        result = set()
1787
1895
        for format in klass._control_formats:
1788
1896
            result.update(format._known_formats())
1789
1897
        return result
1790
 
    
 
1898
 
1791
1899
    @classmethod
1792
1900
    def _known_formats(klass):
1793
1901
        """Return the known format instances for this control format."""
1795
1903
 
1796
1904
    def open(self, transport, _found=False):
1797
1905
        """Return an instance of this format for the dir transport points at.
1798
 
        
 
1906
 
1799
1907
        _found is a private parameter, do not use it.
1800
1908
        """
1801
1909
        if not _found:
1802
1910
            found_format = BzrDirFormat.find_format(transport)
1803
1911
            if not isinstance(found_format, self.__class__):
1804
1912
                raise AssertionError("%s was asked to open %s, but it seems to need "
1805
 
                        "format %s" 
 
1913
                        "format %s"
1806
1914
                        % (self, transport, found_format))
1807
1915
            # Allow subclasses - use the found format.
1808
1916
            self._supply_sub_formats_to(found_format)
1820
1928
    @classmethod
1821
1929
    def register_format(klass, format):
1822
1930
        klass._formats[format.get_format_string()] = format
 
1931
        # bzr native formats have a network name of their format string.
 
1932
        network_format_registry.register(format.get_format_string(), format.__class__)
1823
1933
 
1824
1934
    @classmethod
1825
1935
    def register_control_format(klass, format):
1826
1936
        """Register a format that does not use '.bzr' for its control dir.
1827
1937
 
1828
1938
        TODO: This should be pulled up into a 'ControlDirFormat' base class
1829
 
        which BzrDirFormat can inherit from, and renamed to register_format 
 
1939
        which BzrDirFormat can inherit from, and renamed to register_format
1830
1940
        there. It has been done without that for now for simplicity of
1831
1941
        implementation.
1832
1942
        """
1850
1960
 
1851
1961
    def __str__(self):
1852
1962
        # Trim the newline
1853
 
        return self.get_format_string().rstrip()
 
1963
        return self.get_format_description().rstrip()
1854
1964
 
1855
1965
    def _supply_sub_formats_to(self, other_format):
1856
1966
        """Give other_format the same values for sub formats as this has.
1900
2010
        """See BzrDirFormat.get_converter()."""
1901
2011
        # there is one and only one upgrade path here.
1902
2012
        return ConvertBzrDir4To5()
1903
 
        
 
2013
 
1904
2014
    def initialize_on_transport(self, transport):
1905
2015
        """Format 4 branches cannot be created."""
1906
2016
        raise errors.UninitializableFormat(self)
1909
2019
        """Format 4 is not supported.
1910
2020
 
1911
2021
        It is not supported because the model changed from 4 to 5 and the
1912
 
        conversion logic is expensive - so doing it on the fly was not 
 
2022
        conversion logic is expensive - so doing it on the fly was not
1913
2023
        feasible.
1914
2024
        """
1915
2025
        return False
1916
2026
 
 
2027
    def network_name(self):
 
2028
        return self.get_format_string()
 
2029
 
1917
2030
    def _open(self, transport):
1918
2031
        """See BzrDirFormat._open."""
1919
2032
        return BzrDir4(transport, self)
1930
2043
 
1931
2044
    This format is a combined format for working tree, branch and repository.
1932
2045
    It has:
1933
 
     - Format 2 working trees [always] 
1934
 
     - Format 4 branches [always] 
 
2046
     - Format 2 working trees [always]
 
2047
     - Format 4 branches [always]
1935
2048
     - Format 5 repositories [always]
1936
2049
       Unhashed stores in the repository.
1937
2050
    """
1957
2070
 
1958
2071
    def _initialize_for_clone(self, url):
1959
2072
        return self.initialize_on_transport(get_transport(url), _cloning=True)
1960
 
        
 
2073
 
1961
2074
    def initialize_on_transport(self, transport, _cloning=False):
1962
2075
        """Format 5 dirs always have working tree, branch and repository.
1963
 
        
 
2076
 
1964
2077
        Except when they are being cloned.
1965
2078
        """
1966
2079
        from bzrlib.branch import BzrBranchFormat4
1972
2085
            result._init_workingtree()
1973
2086
        return result
1974
2087
 
 
2088
    def network_name(self):
 
2089
        return self.get_format_string()
 
2090
 
1975
2091
    def _open(self, transport):
1976
2092
        """See BzrDirFormat._open."""
1977
2093
        return BzrDir5(transport, self)
1988
2104
 
1989
2105
    This format is a combined format for working tree, branch and repository.
1990
2106
    It has:
1991
 
     - Format 2 working trees [always] 
1992
 
     - Format 4 branches [always] 
 
2107
     - Format 2 working trees [always]
 
2108
     - Format 4 branches [always]
1993
2109
     - Format 6 repositories [always]
1994
2110
    """
1995
2111
 
2011
2127
        """See BzrDirFormat.get_converter()."""
2012
2128
        # there is one and only one upgrade path here.
2013
2129
        return ConvertBzrDir6ToMeta()
2014
 
        
 
2130
 
2015
2131
    def _initialize_for_clone(self, url):
2016
2132
        return self.initialize_on_transport(get_transport(url), _cloning=True)
2017
2133
 
2018
2134
    def initialize_on_transport(self, transport, _cloning=False):
2019
2135
        """Format 6 dirs always have working tree, branch and repository.
2020
 
        
 
2136
 
2021
2137
        Except when they are being cloned.
2022
2138
        """
2023
2139
        from bzrlib.branch import BzrBranchFormat4
2029
2145
            result._init_workingtree()
2030
2146
        return result
2031
2147
 
 
2148
    def network_name(self):
 
2149
        return self.get_format_string()
 
2150
 
2032
2151
    def _open(self, transport):
2033
2152
        """See BzrDirFormat._open."""
2034
2153
        return BzrDir6(transport, self)
2056
2175
    def __init__(self):
2057
2176
        self._workingtree_format = None
2058
2177
        self._branch_format = None
 
2178
        self._repository_format = None
2059
2179
 
2060
2180
    def __eq__(self, other):
2061
2181
        if other.__class__ is not self.__class__:
2084
2204
            # target doesn't support stacking.  So force a branch that *can*
2085
2205
            # support stacking.
2086
2206
            from bzrlib.branch import BzrBranchFormat7
2087
 
            self._branch_format = BzrBranchFormat7()
2088
 
            mutter("using %r for stacking" % (self._branch_format,))
 
2207
            branch_format = BzrBranchFormat7()
 
2208
            self.set_branch_format(branch_format)
 
2209
            mutter("using %r for stacking" % (branch_format,))
2089
2210
            from bzrlib.repofmt import pack_repo
2090
2211
            if self.repository_format.rich_root_data:
2091
2212
                bzrdir_format_name = '1.6.1-rich-root'
2115
2236
        """See BzrDirFormat.get_format_description()."""
2116
2237
        return "Meta directory format 1"
2117
2238
 
 
2239
    def network_name(self):
 
2240
        return self.get_format_string()
 
2241
 
2118
2242
    def _open(self, transport):
2119
2243
        """See BzrDirFormat._open."""
2120
2244
        return BzrDirMeta1(transport, self)
2121
2245
 
2122
2246
    def __return_repository_format(self):
2123
2247
        """Circular import protection."""
2124
 
        if getattr(self, '_repository_format', None):
 
2248
        if self._repository_format:
2125
2249
            return self._repository_format
2126
2250
        from bzrlib.repository import RepositoryFormat
2127
2251
        return RepositoryFormat.get_default_format()
2164
2288
                                  __set_workingtree_format)
2165
2289
 
2166
2290
 
 
2291
network_format_registry = registry.FormatRegistry()
 
2292
"""Registry of formats indexed by their network name.
 
2293
 
 
2294
The network name for a BzrDirFormat is an identifier that can be used when
 
2295
referring to formats with smart server operations. See
 
2296
BzrDirFormat.network_name() for more detail.
 
2297
"""
 
2298
 
 
2299
 
2167
2300
# Register bzr control format
2168
2301
BzrDirFormat.register_control_format(BzrDirFormat)
2169
2302
 
2201
2334
        self.absent_revisions = set()
2202
2335
        self.text_count = 0
2203
2336
        self.revisions = {}
2204
 
        
 
2337
 
2205
2338
    def convert(self, to_convert, pb):
2206
2339
        """See Converter.convert()."""
2207
2340
        self.bzrdir = to_convert
2313
2446
                revision_store.add_lines(key, None, osutils.split_lines(text))
2314
2447
        finally:
2315
2448
            self.pb.clear()
2316
 
            
 
2449
 
2317
2450
    def _load_one_rev(self, rev_id):
2318
2451
        """Load a revision object into memory.
2319
2452
 
2393
2526
        text_changed = False
2394
2527
        parent_candiate_entries = ie.parent_candidates(parent_invs)
2395
2528
        heads = graph.Graph(self).heads(parent_candiate_entries.keys())
2396
 
        # XXX: Note that this is unordered - and this is tolerable because 
 
2529
        # XXX: Note that this is unordered - and this is tolerable because
2397
2530
        # the previous code was also unordered.
2398
2531
        previous_entries = dict((head, parent_candiate_entries[head]) for head
2399
2532
            in heads)
2400
2533
        self.snapshot_ie(previous_entries, ie, w, rev_id)
2401
2534
        del ie.text_id
2402
2535
 
2403
 
    @symbol_versioning.deprecated_method(symbol_versioning.one_one)
2404
 
    def get_parents(self, revision_ids):
2405
 
        for revision_id in revision_ids:
2406
 
            yield self.revisions[revision_id].parent_ids
2407
 
 
2408
2536
    def get_parent_map(self, revision_ids):
2409
2537
        """See graph._StackedParentsProvider.get_parent_map"""
2410
2538
        return dict((revision_id, self.revisions[revision_id])
2416
2544
        # a call to:. This needs the path figured out. rather than a work_tree
2417
2545
        # a v4 revision_tree can be given, or something that looks enough like
2418
2546
        # one to give the file content to the entry if it needs it.
2419
 
        # and we need something that looks like a weave store for snapshot to 
 
2547
        # and we need something that looks like a weave store for snapshot to
2420
2548
        # save against.
2421
2549
        #ie.snapshot(rev, PATH, previous_revisions, REVISION_TREE, InMemoryWeaveStore(self.text_weaves))
2422
2550
        if len(previous_revisions) == 1:
2538
2666
        self.bzrdir.transport.mkdir('repository', mode=self.dir_mode)
2539
2667
        self.make_lock('repository')
2540
2668
        # we hard code the formats here because we are converting into
2541
 
        # the meta format. The meta format upgrader can take this to a 
 
2669
        # the meta format. The meta format upgrader can take this to a
2542
2670
        # future format within each component.
2543
2671
        self.put_format('repository', RepositoryFormat7())
2544
2672
        for entry in repository_names:
2686
2814
                isinstance(self.target_format.workingtree_format,
2687
2815
                    workingtree_4.WorkingTreeFormat5)):
2688
2816
                workingtree_4.Converter4to5().convert(tree)
 
2817
            if (isinstance(tree, workingtree_4.DirStateWorkingTree) and
 
2818
                not isinstance(tree, workingtree_4.WorkingTree6) and
 
2819
                isinstance(self.target_format.workingtree_format,
 
2820
                    workingtree_4.WorkingTreeFormat6)):
 
2821
                workingtree_4.Converter4or5to6().convert(tree)
2689
2822
        return to_convert
2690
2823
 
2691
2824
 
2696
2829
class RemoteBzrDirFormat(BzrDirMetaFormat1):
2697
2830
    """Format representing bzrdirs accessed via a smart server"""
2698
2831
 
 
2832
    def __init__(self):
 
2833
        BzrDirMetaFormat1.__init__(self)
 
2834
        self._network_name = None
 
2835
 
2699
2836
    def get_format_description(self):
2700
2837
        return 'bzr remote bzrdir'
2701
 
    
 
2838
 
 
2839
    def get_format_string(self):
 
2840
        raise NotImplementedError(self.get_format_string)
 
2841
 
 
2842
    def network_name(self):
 
2843
        if self._network_name:
 
2844
            return self._network_name
 
2845
        else:
 
2846
            raise AssertionError("No network name set.")
 
2847
 
2702
2848
    @classmethod
2703
2849
    def probe_transport(klass, transport):
2704
2850
        """Return a RemoteBzrDirFormat object if it looks possible."""
2752
2898
        # Always return a RemoteRepositoryFormat object, but if a specific bzr
2753
2899
        # repository format has been asked for, tell the RemoteRepositoryFormat
2754
2900
        # that it should use that for init() etc.
2755
 
        result =  remote.RemoteRepositoryFormat()
 
2901
        result = remote.RemoteRepositoryFormat()
2756
2902
        custom_format = getattr(self, '_repository_format', None)
2757
2903
        if custom_format:
2758
 
            # We will use the custom format to create repositories over the
2759
 
            # wire; expose its details like rich_root_data for code to query
2760
2904
            if isinstance(custom_format, remote.RemoteRepositoryFormat):
2761
 
                result._custom_format = custom_format._custom_format
 
2905
                return custom_format
2762
2906
            else:
 
2907
                # We will use the custom format to create repositories over the
 
2908
                # wire; expose its details like rich_root_data for code to
 
2909
                # query
2763
2910
                result._custom_format = custom_format
2764
 
            result.rich_root_data = custom_format.rich_root_data
 
2911
        return result
 
2912
 
 
2913
    def get_branch_format(self):
 
2914
        result = BzrDirMetaFormat1.get_branch_format(self)
 
2915
        if not isinstance(result, remote.RemoteBranchFormat):
 
2916
            new_result = remote.RemoteBranchFormat()
 
2917
            new_result._custom_format = result
 
2918
            # cache the result
 
2919
            self.set_branch_format(new_result)
 
2920
            result = new_result
2765
2921
        return result
2766
2922
 
2767
2923
    repository_format = property(__return_repository_format,
2782
2938
 
2783
2939
class BzrDirFormatRegistry(registry.Registry):
2784
2940
    """Registry of user-selectable BzrDir subformats.
2785
 
    
 
2941
 
2786
2942
    Differs from BzrDirFormat._control_formats in that it provides sub-formats,
2787
2943
    e.g. BzrDirMeta1 with weave repository.  Also, it's more user-oriented.
2788
2944
    """
2807
2963
        """Register a metadir subformat.
2808
2964
 
2809
2965
        These all use a BzrDirMetaFormat1 bzrdir, but can be parameterized
2810
 
        by the Repository format.
 
2966
        by the Repository/Branch/WorkingTreeformats.
2811
2967
 
2812
2968
        :param repository_format: The fully-qualified repository format class
2813
2969
            name as a string.
2847
3003
    def register(self, key, factory, help, native=True, deprecated=False,
2848
3004
                 hidden=False, experimental=False, alias=False):
2849
3005
        """Register a BzrDirFormat factory.
2850
 
        
 
3006
 
2851
3007
        The factory must be a callable that takes one parameter: the key.
2852
3008
        It must produce an instance of the BzrDirFormat when called.
2853
3009
 
2870
3026
 
2871
3027
    def set_default(self, key):
2872
3028
        """Set the 'default' key to be a clone of the supplied key.
2873
 
        
 
3029
 
2874
3030
        This method must be called once and only once.
2875
3031
        """
2876
3032
        registry.Registry.register(self, 'default', self.get(key),
2879
3035
 
2880
3036
    def set_default_repository(self, key):
2881
3037
        """Set the FormatRegistry default and Repository default.
2882
 
        
 
3038
 
2883
3039
        This is a transitional method while Repository.set_default_format
2884
3040
        is deprecated.
2885
3041
        """
2908
3064
        def wrapped(key, help, info):
2909
3065
            if info.native:
2910
3066
                help = '(native) ' + help
2911
 
            return ':%s:\n%s\n\n' % (key, 
2912
 
                    textwrap.fill(help, initial_indent='    ', 
 
3067
            return ':%s:\n%s\n\n' % (key,
 
3068
                    textwrap.fill(help, initial_indent='    ',
2913
3069
                    subsequent_indent='    '))
2914
3070
        if default_realkey is not None:
2915
3071
            output += wrapped(default_realkey, '(default) %s' % default_help,
2990
3146
                stack_on = self._get_full_stack_on()
2991
3147
        try:
2992
3148
            branch.set_stacked_on_url(stack_on)
2993
 
        except errors.UnstackableBranchFormat:
 
3149
        except (errors.UnstackableBranchFormat,
 
3150
                errors.UnstackableRepositoryFormat):
2994
3151
            if self._require_stacking:
2995
3152
                raise
2996
3153
 
3030
3187
        :param make_working_trees: If creating a repository, set
3031
3188
            make_working_trees to this value (if non-None)
3032
3189
        :param shared: If creating a repository, make it shared if True
3033
 
        :return: A repository
 
3190
        :return: A repository, is_new_flag (True if the repository was
 
3191
            created).
3034
3192
        """
3035
3193
        raise NotImplemented(RepositoryAcquisitionPolicy.acquire_repository)
3036
3194
 
3056
3214
 
3057
3215
        Creates the desired repository in the bzrdir we already have.
3058
3216
        """
 
3217
        stack_on = self._get_full_stack_on()
 
3218
        if stack_on:
 
3219
            # Stacking is desired. requested by the target, but does the place it
 
3220
            # points at support stacking? If it doesn't then we should
 
3221
            # not implicitly upgrade. We check this here.
 
3222
            format = self._bzrdir._format
 
3223
            if not (format.repository_format.supports_external_lookups
 
3224
                and format.get_branch_format().supports_stacking()):
 
3225
                # May need to upgrade - but only do if the target also
 
3226
                # supports stacking. Note that this currently wastes
 
3227
                # network round trips to check - but we only do this
 
3228
                # when the source can't stack so it will fade away
 
3229
                # as people do upgrade.
 
3230
                try:
 
3231
                    target_dir = BzrDir.open(stack_on,
 
3232
                        possible_transports=[self._bzrdir.root_transport])
 
3233
                except errors.NotBranchError:
 
3234
                    # Nothing there, don't change formats
 
3235
                    pass
 
3236
                else:
 
3237
                    try:
 
3238
                        target_branch = target_dir.open_branch()
 
3239
                    except errors.NotBranchError:
 
3240
                        # No branch, don't change formats
 
3241
                        pass
 
3242
                    else:
 
3243
                        branch_format = target_branch._format
 
3244
                        repo_format = target_branch.repository._format
 
3245
                        if not (branch_format.supports_stacking()
 
3246
                            and repo_format.supports_external_lookups):
 
3247
                            # Doesn't stack itself, don't force an upgrade
 
3248
                            pass
 
3249
                        else:
 
3250
                            # Does support stacking, use its format.
 
3251
                            format.repository_format = repo_format
 
3252
                            format.set_branch_format(branch_format)
 
3253
                            note('Source format does not support stacking, '
 
3254
                                'using format: \'%s\'\n  %s\n',
 
3255
                                branch_format.get_format_description(),
 
3256
                                repo_format.get_format_description())
 
3257
            if not self._require_stacking:
 
3258
                # We have picked up automatic stacking somewhere.
 
3259
                note('Using default stacking branch %s at %s', self._stack_on,
 
3260
                    self._stack_on_pwd)
3059
3261
        repository = self._bzrdir.create_repository(shared=shared)
3060
3262
        self._add_fallback(repository,
3061
3263
                           possible_transports=[self._bzrdir.transport])
3062
3264
        if make_working_trees is not None:
3063
3265
            repository.set_make_working_trees(make_working_trees)
3064
 
        return repository
 
3266
        return repository, True
3065
3267
 
3066
3268
 
3067
3269
class UseExistingRepository(RepositoryAcquisitionPolicy):
3083
3285
    def acquire_repository(self, make_working_trees=None, shared=False):
3084
3286
        """Implementation of RepositoryAcquisitionPolicy.acquire_repository
3085
3287
 
3086
 
        Returns an existing repository to use
 
3288
        Returns an existing repository to use.
3087
3289
        """
3088
3290
        self._add_fallback(self._repository,
3089
3291
                       possible_transports=[self._repository.bzrdir.transport])
3090
 
        return self._repository
 
3292
        return self._repository, False
3091
3293
 
3092
3294
 
3093
3295
# Please register new formats after old formats so that formats
3174
3376
format_registry.register_metadir('rich-root-pack',
3175
3377
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',
3176
3378
    help='New in 1.0: A variant of pack-0.92 that supports rich-root data '
3177
 
         '(needed for bzr-svn).',
 
3379
         '(needed for bzr-svn and bzr-git).',
3178
3380
    branch_format='bzrlib.branch.BzrBranchFormat6',
3179
3381
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3180
3382
    )
3189
3391
format_registry.register_metadir('1.6.1-rich-root',
3190
3392
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5RichRoot',
3191
3393
    help='A variant of 1.6 that supports rich-root data '
3192
 
         '(needed for bzr-svn).',
 
3394
         '(needed for bzr-svn and bzr-git).',
3193
3395
    branch_format='bzrlib.branch.BzrBranchFormat7',
3194
3396
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3195
3397
    )
3204
3406
format_registry.register_metadir('1.9-rich-root',
3205
3407
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
3206
3408
    help='A variant of 1.9 that supports rich-root data '
3207
 
         '(needed for bzr-svn).',
 
3409
         '(needed for bzr-svn and bzr-git).',
3208
3410
    branch_format='bzrlib.branch.BzrBranchFormat7',
3209
3411
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3210
3412
    )
3211
 
format_registry.register_metadir('development-wt5',
 
3413
format_registry.register_metadir('1.14',
3212
3414
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
3213
 
    help='A working-tree format that supports views and content filtering.',
 
3415
    help='A working-tree format that supports content filtering.',
3214
3416
    branch_format='bzrlib.branch.BzrBranchFormat7',
3215
3417
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
3216
 
    experimental=True,
3217
3418
    )
3218
 
format_registry.register_metadir('development-wt5-rich-root',
 
3419
format_registry.register_metadir('1.14-rich-root',
3219
3420
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
3220
 
    help='A variant of development-wt5 that supports rich-root data '
3221
 
         '(needed for bzr-svn).',
 
3421
    help='A variant of 1.14 that supports rich-root data '
 
3422
         '(needed for bzr-svn and bzr-git).',
3222
3423
    branch_format='bzrlib.branch.BzrBranchFormat7',
3223
3424
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
3224
 
    experimental=True,
3225
3425
    )
3226
3426
# The following two formats should always just be aliases.
3227
3427
format_registry.register_metadir('development',
3273
3473
    hidden=True,
3274
3474
    experimental=True,
3275
3475
    )
 
3476
# These next two formats should be removed when the gc formats are
 
3477
# updated to use WorkingTreeFormat6 and are merged into bzr.dev
 
3478
format_registry.register_metadir('development-wt6',
 
3479
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
 
3480
    help='1.14 with filtered views. '
 
3481
        'Please read '
 
3482
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3483
        'before use.',
 
3484
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3485
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
3486
    hidden=True,
 
3487
    experimental=True,
 
3488
    )
 
3489
format_registry.register_metadir('development-wt6-rich-root',
 
3490
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
 
3491
    help='A variant of development-wt6 that supports rich-root data '
 
3492
         '(needed for bzr-svn and bzr-git).',
 
3493
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3494
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
 
3495
    hidden=True,
 
3496
    experimental=True,
 
3497
    )
 
3498
# The following format should be an alias for the rich root equivalent 
 
3499
# of the default format
 
3500
format_registry.register_metadir('default-rich-root',
 
3501
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',
 
3502
    help='Default format, rich root variant. (needed for bzr-svn and bzr-git).',
 
3503
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
3504
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3505
    alias=True,
 
3506
    )
3276
3507
# The current format that is made on 'bzr init'.
3277
3508
format_registry.set_default('pack-0.92')