~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/controldir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-17 18:13:57 UTC
  • mfrom: (5268.7.29 transport-segments)
  • Revision ID: pqm@pqm.ubuntu.com-20110817181357-y5q5eth1hk8bl3om
(jelmer) Allow specifying the colocated branch to use in the branch URL,
 and retrieving the branch name using ControlDir._get_selected_branch.
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2010, 2011, 2012 Canonical Ltd
 
1
# Copyright (C) 2010, 2011 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
22
22
 
23
23
"""
24
24
 
25
 
from __future__ import absolute_import
26
 
 
27
25
from bzrlib.lazy_import import lazy_import
28
26
lazy_import(globals(), """
29
27
import textwrap
30
28
 
31
29
from bzrlib import (
32
30
    errors,
33
 
    hooks,
34
31
    revision as _mod_revision,
35
32
    transport as _mod_transport,
36
 
    trace,
37
33
    ui,
38
34
    urlutils,
39
35
    )
40
 
from bzrlib.transport import local
41
36
from bzrlib.push import (
42
37
    PushResult,
43
38
    )
44
39
 
45
 
from bzrlib.i18n import gettext
46
40
""")
47
41
 
48
42
from bzrlib import registry
81
75
        return self.user_transport.base
82
76
 
83
77
 
 
78
 
84
79
class ControlDir(ControlComponent):
85
80
    """A control directory.
86
81
 
108
103
        """Return a sequence of all branches local to this control directory.
109
104
 
110
105
        """
111
 
        return self.get_branches().values()
112
 
 
113
 
    def get_branches(self):
114
 
        """Get all branches in this control directory, as a dictionary.
115
 
        
116
 
        :return: Dictionary mapping branch names to instances.
117
 
        """
118
106
        try:
119
 
           return { "": self.open_branch() }
 
107
            return [self.open_branch()]
120
108
        except (errors.NotBranchError, errors.NoRepositoryPresent):
121
 
           return {}
 
109
            return []
122
110
 
123
111
    def is_control_filename(self, filename):
124
112
        """True if filename is the name of a path which is reserved for
158
146
        """Destroy the repository in this ControlDir."""
159
147
        raise NotImplementedError(self.destroy_repository)
160
148
 
161
 
    def create_branch(self, name=None, repository=None,
162
 
                      append_revisions_only=None):
 
149
    def create_branch(self, name=None, repository=None):
163
150
        """Create a branch in this ControlDir.
164
151
 
165
152
        :param name: Name of the colocated branch to create, None for
166
 
            the user selected branch or "" for the active branch.
167
 
        :param append_revisions_only: Whether this branch should only allow
168
 
            appending new revisions to its history.
 
153
            the default branch.
169
154
 
170
155
        The controldirs format will control what branch format is created.
171
156
        For more control see BranchFormatXX.create(a_controldir).
175
160
    def destroy_branch(self, name=None):
176
161
        """Destroy a branch in this ControlDir.
177
162
 
178
 
        :param name: Name of the branch to destroy, None for the 
179
 
            user selected branch or "" for the active branch.
180
 
        :raise NotBranchError: When the branch does not exist
 
163
        :param name: Name of the branch to destroy, None for the default 
 
164
            branch.
181
165
        """
182
166
        raise NotImplementedError(self.destroy_branch)
183
167
 
211
195
        raise NotImplementedError(self.destroy_workingtree_metadata)
212
196
 
213
197
    def find_branch_format(self, name=None):
214
 
        """Find the branch 'format' for this controldir.
 
198
        """Find the branch 'format' for this bzrdir.
215
199
 
216
200
        This might be a synthetic object for e.g. RemoteBranch and SVN.
217
201
        """
231
215
            raise errors.NoColocatedBranchSupport(self)
232
216
        return None
233
217
 
234
 
    def set_branch_reference(self, target_branch, name=None):
235
 
        """Set the referenced URL for the branch in this controldir.
236
 
 
237
 
        :param name: Optional colocated branch name
238
 
        :param target_branch: Branch to reference
239
 
        :raises NoColocatedBranchSupport: If a branch name was specified
240
 
            but colocated branches are not supported.
241
 
        :return: The referencing branch
242
 
        """
243
 
        raise NotImplementedError(self.set_branch_reference)
244
 
 
245
218
    def open_branch(self, name=None, unsupported=False,
246
 
                    ignore_fallbacks=False, possible_transports=None):
 
219
                    ignore_fallbacks=False):
247
220
        """Open the branch object at this ControlDir if one is present.
248
221
 
249
 
        :param unsupported: if True, then no longer supported branch formats can
250
 
            still be opened.
251
 
        :param ignore_fallbacks: Whether to open fallback repositories
252
 
        :param possible_transports: Transports to use for opening e.g.
253
 
            fallback repositories.
 
222
        If unsupported is True, then no longer supported branch formats can
 
223
        still be opened.
 
224
 
 
225
        TODO: static convenience version of this?
254
226
        """
255
227
        raise NotImplementedError(self.open_branch)
256
228
 
262
234
        get at a repository.
263
235
 
264
236
        :param _unsupported: a private parameter, not part of the api.
 
237
 
 
238
        TODO: static convenience version of this?
265
239
        """
266
240
        raise NotImplementedError(self.open_repository)
267
241
 
274
248
        """
275
249
        raise NotImplementedError(self.find_repository)
276
250
 
277
 
    def open_workingtree(self, unsupported=False,
 
251
    def open_workingtree(self, _unsupported=False,
278
252
                         recommend_upgrade=True, from_branch=None):
279
253
        """Open the workingtree object at this ControlDir if one is present.
280
254
 
295
269
        branch and discards it, and that's somewhat expensive.)
296
270
        """
297
271
        try:
298
 
            self.open_branch(name, ignore_fallbacks=True)
 
272
            self.open_branch(name)
299
273
            return True
300
274
        except errors.NotBranchError:
301
275
            return False
303
277
    def _get_selected_branch(self):
304
278
        """Return the name of the branch selected by the user.
305
279
 
306
 
        :return: Name of the branch selected by the user, or "".
 
280
        :return: Name of the branch selected by the user, or None.
307
281
        """
308
282
        branch = self.root_transport.get_segment_parameters().get("branch")
309
 
        if branch is None:
310
 
            branch = ""
311
 
        return urlutils.unescape(branch)
 
283
        if branch is not None:
 
284
            branch = urlutils.unescape(branch)
 
285
        return branch
312
286
 
313
287
    def has_workingtree(self):
314
288
        """Tell if this controldir contains a working tree.
342
316
        raise NotImplementedError(self.cloning_metadir)
343
317
 
344
318
    def checkout_metadir(self):
345
 
        """Produce a metadir suitable for checkouts of this controldir.
346
 
 
347
 
        :returns: A ControlDirFormat with all component formats
348
 
            either set appropriately or set to None if that component
349
 
            should not be created.
350
 
        """
 
319
        """Produce a metadir suitable for checkouts of this controldir."""
351
320
        return self.cloning_metadir()
352
321
 
353
322
    def sprout(self, url, revision_id=None, force_new_repo=False,
406
375
            repository_to.fetch(source.repository, revision_id=revision_id)
407
376
            br_to = source.clone(self, revision_id=revision_id)
408
377
            if source.get_push_location() is None or remember:
409
 
                # FIXME: Should be done only if we succeed ? -- vila 2012-01-18
410
378
                source.set_push_location(br_to.base)
411
379
            push_result.stacked_on = None
412
380
            push_result.branch_push_result = None
418
386
        else:
419
387
            # We have successfully opened the branch, remember if necessary:
420
388
            if source.get_push_location() is None or remember:
421
 
                # FIXME: Should be done only if we succeed ? -- vila 2012-01-18
422
389
                source.set_push_location(br_to.base)
423
390
            try:
424
391
                tree_to = self.open_workingtree()
446
413
        return push_result
447
414
 
448
415
    def _get_tree_branch(self, name=None):
449
 
        """Return the branch and tree, if any, for this controldir.
 
416
        """Return the branch and tree, if any, for this bzrdir.
450
417
 
451
418
        :param name: Name of colocated branch to open.
452
419
 
471
438
        raise NotImplementedError(self.get_config)
472
439
 
473
440
    def check_conversion_target(self, target_format):
474
 
        """Check that a controldir as a whole can be converted to a new format."""
 
441
        """Check that a bzrdir as a whole can be converted to a new format."""
475
442
        raise NotImplementedError(self.check_conversion_target)
476
443
 
477
444
    def clone(self, url, revision_id=None, force_new_repo=False,
478
445
              preserve_stacking=False):
479
 
        """Clone this controldir and its contents to url verbatim.
 
446
        """Clone this bzrdir and its contents to url verbatim.
480
447
 
481
448
        :param url: The url create the clone at.  If url's last component does
482
449
            not exist, it will be created.
496
463
    def clone_on_transport(self, transport, revision_id=None,
497
464
        force_new_repo=False, preserve_stacking=False, stacked_on=None,
498
465
        create_prefix=False, use_existing_dir=True, no_tree=False):
499
 
        """Clone this controldir and its contents to transport verbatim.
 
466
        """Clone this bzrdir and its contents to transport verbatim.
500
467
 
501
468
        :param transport: The transport for the location to produce the clone
502
469
            at.  If the target directory does not exist, it will be created.
514
481
        """
515
482
        raise NotImplementedError(self.clone_on_transport)
516
483
 
517
 
    @classmethod
518
 
    def find_bzrdirs(klass, transport, evaluate=None, list_current=None):
519
 
        """Find control dirs recursively from current location.
520
 
 
521
 
        This is intended primarily as a building block for more sophisticated
522
 
        functionality, like finding trees under a directory, or finding
523
 
        branches that use a given repository.
524
 
 
525
 
        :param evaluate: An optional callable that yields recurse, value,
526
 
            where recurse controls whether this controldir is recursed into
527
 
            and value is the value to yield.  By default, all bzrdirs
528
 
            are recursed into, and the return value is the controldir.
529
 
        :param list_current: if supplied, use this function to list the current
530
 
            directory, instead of Transport.list_dir
531
 
        :return: a generator of found bzrdirs, or whatever evaluate returns.
532
 
        """
533
 
        if list_current is None:
534
 
            def list_current(transport):
535
 
                return transport.list_dir('')
536
 
        if evaluate is None:
537
 
            def evaluate(controldir):
538
 
                return True, controldir
539
 
 
540
 
        pending = [transport]
541
 
        while len(pending) > 0:
542
 
            current_transport = pending.pop()
543
 
            recurse = True
544
 
            try:
545
 
                controldir = klass.open_from_transport(current_transport)
546
 
            except (errors.NotBranchError, errors.PermissionDenied):
547
 
                pass
548
 
            else:
549
 
                recurse, value = evaluate(controldir)
550
 
                yield value
551
 
            try:
552
 
                subdirs = list_current(current_transport)
553
 
            except (errors.NoSuchFile, errors.PermissionDenied):
554
 
                continue
555
 
            if recurse:
556
 
                for subdir in sorted(subdirs, reverse=True):
557
 
                    pending.append(current_transport.clone(subdir))
558
 
 
559
 
    @classmethod
560
 
    def find_branches(klass, transport):
561
 
        """Find all branches under a transport.
562
 
 
563
 
        This will find all branches below the transport, including branches
564
 
        inside other branches.  Where possible, it will use
565
 
        Repository.find_branches.
566
 
 
567
 
        To list all the branches that use a particular Repository, see
568
 
        Repository.find_branches
569
 
        """
570
 
        def evaluate(controldir):
571
 
            try:
572
 
                repository = controldir.open_repository()
573
 
            except errors.NoRepositoryPresent:
574
 
                pass
575
 
            else:
576
 
                return False, ([], repository)
577
 
            return True, (controldir.list_branches(), None)
578
 
        ret = []
579
 
        for branches, repo in klass.find_bzrdirs(
580
 
                transport, evaluate=evaluate):
581
 
            if repo is not None:
582
 
                ret.extend(repo.find_branches())
583
 
            if branches is not None:
584
 
                ret.extend(branches)
585
 
        return ret
586
 
 
587
 
    @classmethod
588
 
    def create_branch_and_repo(klass, base, force_new_repo=False, format=None):
589
 
        """Create a new ControlDir, Branch and Repository at the url 'base'.
590
 
 
591
 
        This will use the current default ControlDirFormat unless one is
592
 
        specified, and use whatever
593
 
        repository format that that uses via controldir.create_branch and
594
 
        create_repository. If a shared repository is available that is used
595
 
        preferentially.
596
 
 
597
 
        The created Branch object is returned.
598
 
 
599
 
        :param base: The URL to create the branch at.
600
 
        :param force_new_repo: If True a new repository is always created.
601
 
        :param format: If supplied, the format of branch to create.  If not
602
 
            supplied, the default is used.
603
 
        """
604
 
        controldir = klass.create(base, format)
605
 
        controldir._find_or_create_repository(force_new_repo)
606
 
        return controldir.create_branch()
607
 
 
608
 
    @classmethod
609
 
    def create_branch_convenience(klass, base, force_new_repo=False,
610
 
                                  force_new_tree=None, format=None,
611
 
                                  possible_transports=None):
612
 
        """Create a new ControlDir, Branch and Repository at the url 'base'.
613
 
 
614
 
        This is a convenience function - it will use an existing repository
615
 
        if possible, can be told explicitly whether to create a working tree or
616
 
        not.
617
 
 
618
 
        This will use the current default ControlDirFormat unless one is
619
 
        specified, and use whatever
620
 
        repository format that that uses via ControlDir.create_branch and
621
 
        create_repository. If a shared repository is available that is used
622
 
        preferentially. Whatever repository is used, its tree creation policy
623
 
        is followed.
624
 
 
625
 
        The created Branch object is returned.
626
 
        If a working tree cannot be made due to base not being a file:// url,
627
 
        no error is raised unless force_new_tree is True, in which case no
628
 
        data is created on disk and NotLocalUrl is raised.
629
 
 
630
 
        :param base: The URL to create the branch at.
631
 
        :param force_new_repo: If True a new repository is always created.
632
 
        :param force_new_tree: If True or False force creation of a tree or
633
 
                               prevent such creation respectively.
634
 
        :param format: Override for the controldir format to create.
635
 
        :param possible_transports: An optional reusable transports list.
636
 
        """
637
 
        if force_new_tree:
638
 
            # check for non local urls
639
 
            t = _mod_transport.get_transport(base, possible_transports)
640
 
            if not isinstance(t, local.LocalTransport):
641
 
                raise errors.NotLocalUrl(base)
642
 
        controldir = klass.create(base, format, possible_transports)
643
 
        repo = controldir._find_or_create_repository(force_new_repo)
644
 
        result = controldir.create_branch()
645
 
        if force_new_tree or (repo.make_working_trees() and
646
 
                              force_new_tree is None):
647
 
            try:
648
 
                controldir.create_workingtree()
649
 
            except errors.NotLocalUrl:
650
 
                pass
651
 
        return result
652
 
 
653
 
    @classmethod
654
 
    def create_standalone_workingtree(klass, base, format=None):
655
 
        """Create a new ControlDir, WorkingTree, Branch and Repository at 'base'.
656
 
 
657
 
        'base' must be a local path or a file:// url.
658
 
 
659
 
        This will use the current default ControlDirFormat unless one is
660
 
        specified, and use whatever
661
 
        repository format that that uses for bzrdirformat.create_workingtree,
662
 
        create_branch and create_repository.
663
 
 
664
 
        :param format: Override for the controldir format to create.
665
 
        :return: The WorkingTree object.
666
 
        """
667
 
        t = _mod_transport.get_transport(base)
668
 
        if not isinstance(t, local.LocalTransport):
669
 
            raise errors.NotLocalUrl(base)
670
 
        controldir = klass.create_branch_and_repo(base,
671
 
                                               force_new_repo=True,
672
 
                                               format=format).bzrdir
673
 
        return controldir.create_workingtree()
674
 
 
675
 
    @classmethod
676
 
    def open_unsupported(klass, base):
677
 
        """Open a branch which is not supported."""
678
 
        return klass.open(base, _unsupported=True)
679
 
 
680
 
    @classmethod
681
 
    def open(klass, base, possible_transports=None, probers=None,
682
 
             _unsupported=False):
683
 
        """Open an existing controldir, rooted at 'base' (url).
684
 
 
685
 
        :param _unsupported: a private parameter to the ControlDir class.
686
 
        """
687
 
        t = _mod_transport.get_transport(base, possible_transports)
688
 
        return klass.open_from_transport(t, probers=probers,
689
 
                _unsupported=_unsupported)
690
 
 
691
 
    @classmethod
692
 
    def open_from_transport(klass, transport, _unsupported=False,
693
 
                            probers=None):
694
 
        """Open a controldir within a particular directory.
695
 
 
696
 
        :param transport: Transport containing the controldir.
697
 
        :param _unsupported: private.
698
 
        """
699
 
        for hook in klass.hooks['pre_open']:
700
 
            hook(transport)
701
 
        # Keep initial base since 'transport' may be modified while following
702
 
        # the redirections.
703
 
        base = transport.base
704
 
        def find_format(transport):
705
 
            return transport, ControlDirFormat.find_format(transport,
706
 
                probers=probers)
707
 
 
708
 
        def redirected(transport, e, redirection_notice):
709
 
            redirected_transport = transport._redirected_to(e.source, e.target)
710
 
            if redirected_transport is None:
711
 
                raise errors.NotBranchError(base)
712
 
            trace.note(gettext('{0} is{1} redirected to {2}').format(
713
 
                 transport.base, e.permanently, redirected_transport.base))
714
 
            return redirected_transport
715
 
 
716
 
        try:
717
 
            transport, format = _mod_transport.do_catching_redirections(
718
 
                find_format, transport, redirected)
719
 
        except errors.TooManyRedirections:
720
 
            raise errors.NotBranchError(base)
721
 
 
722
 
        format.check_support_status(_unsupported)
723
 
        return format.open(transport, _found=True)
724
 
 
725
 
    @classmethod
726
 
    def open_containing(klass, url, possible_transports=None):
727
 
        """Open an existing branch which contains url.
728
 
 
729
 
        :param url: url to search from.
730
 
 
731
 
        See open_containing_from_transport for more detail.
732
 
        """
733
 
        transport = _mod_transport.get_transport(url, possible_transports)
734
 
        return klass.open_containing_from_transport(transport)
735
 
 
736
 
    @classmethod
737
 
    def open_containing_from_transport(klass, a_transport):
738
 
        """Open an existing branch which contains a_transport.base.
739
 
 
740
 
        This probes for a branch at a_transport, and searches upwards from there.
741
 
 
742
 
        Basically we keep looking up until we find the control directory or
743
 
        run into the root.  If there isn't one, raises NotBranchError.
744
 
        If there is one and it is either an unrecognised format or an unsupported
745
 
        format, UnknownFormatError or UnsupportedFormatError are raised.
746
 
        If there is one, it is returned, along with the unused portion of url.
747
 
 
748
 
        :return: The ControlDir that contains the path, and a Unicode path
749
 
                for the rest of the URL.
750
 
        """
751
 
        # this gets the normalised url back. I.e. '.' -> the full path.
752
 
        url = a_transport.base
753
 
        while True:
754
 
            try:
755
 
                result = klass.open_from_transport(a_transport)
756
 
                return result, urlutils.unescape(a_transport.relpath(url))
757
 
            except errors.NotBranchError, e:
758
 
                pass
759
 
            except errors.PermissionDenied:
760
 
                pass
761
 
            try:
762
 
                new_t = a_transport.clone('..')
763
 
            except errors.InvalidURLJoin:
764
 
                # reached the root, whatever that may be
765
 
                raise errors.NotBranchError(path=url)
766
 
            if new_t.base == a_transport.base:
767
 
                # reached the root, whatever that may be
768
 
                raise errors.NotBranchError(path=url)
769
 
            a_transport = new_t
770
 
 
771
 
    @classmethod
772
 
    def open_tree_or_branch(klass, location):
773
 
        """Return the branch and working tree at a location.
774
 
 
775
 
        If there is no tree at the location, tree will be None.
776
 
        If there is no branch at the location, an exception will be
777
 
        raised
778
 
        :return: (tree, branch)
779
 
        """
780
 
        controldir = klass.open(location)
781
 
        return controldir._get_tree_branch()
782
 
 
783
 
    @classmethod
784
 
    def open_containing_tree_or_branch(klass, location,
785
 
            possible_transports=None):
786
 
        """Return the branch and working tree contained by a location.
787
 
 
788
 
        Returns (tree, branch, relpath).
789
 
        If there is no tree at containing the location, tree will be None.
790
 
        If there is no branch containing the location, an exception will be
791
 
        raised
792
 
        relpath is the portion of the path that is contained by the branch.
793
 
        """
794
 
        controldir, relpath = klass.open_containing(location,
795
 
            possible_transports=possible_transports)
796
 
        tree, branch = controldir._get_tree_branch()
797
 
        return tree, branch, relpath
798
 
 
799
 
    @classmethod
800
 
    def open_containing_tree_branch_or_repository(klass, location):
801
 
        """Return the working tree, branch and repo contained by a location.
802
 
 
803
 
        Returns (tree, branch, repository, relpath).
804
 
        If there is no tree containing the location, tree will be None.
805
 
        If there is no branch containing the location, branch will be None.
806
 
        If there is no repository containing the location, repository will be
807
 
        None.
808
 
        relpath is the portion of the path that is contained by the innermost
809
 
        ControlDir.
810
 
 
811
 
        If no tree, branch or repository is found, a NotBranchError is raised.
812
 
        """
813
 
        controldir, relpath = klass.open_containing(location)
814
 
        try:
815
 
            tree, branch = controldir._get_tree_branch()
816
 
        except errors.NotBranchError:
817
 
            try:
818
 
                repo = controldir.find_repository()
819
 
                return None, None, repo, relpath
820
 
            except (errors.NoRepositoryPresent):
821
 
                raise errors.NotBranchError(location)
822
 
        return tree, branch, branch.repository, relpath
823
 
 
824
 
    @classmethod
825
 
    def create(klass, base, format=None, possible_transports=None):
826
 
        """Create a new ControlDir at the url 'base'.
827
 
 
828
 
        :param format: If supplied, the format of branch to create.  If not
829
 
            supplied, the default is used.
830
 
        :param possible_transports: If supplied, a list of transports that
831
 
            can be reused to share a remote connection.
832
 
        """
833
 
        if klass is not ControlDir:
834
 
            raise AssertionError("ControlDir.create always creates the"
835
 
                "default format, not one of %r" % klass)
836
 
        t = _mod_transport.get_transport(base, possible_transports)
837
 
        t.ensure_base()
838
 
        if format is None:
839
 
            format = ControlDirFormat.get_default_format()
840
 
        return format.initialize_on_transport(t)
841
 
 
842
 
 
843
 
class ControlDirHooks(hooks.Hooks):
844
 
    """Hooks for ControlDir operations."""
845
 
 
846
 
    def __init__(self):
847
 
        """Create the default hooks."""
848
 
        hooks.Hooks.__init__(self, "bzrlib.controldir", "ControlDir.hooks")
849
 
        self.add_hook('pre_open',
850
 
            "Invoked before attempting to open a ControlDir with the transport "
851
 
            "that the open will use.", (1, 14))
852
 
        self.add_hook('post_repo_init',
853
 
            "Invoked after a repository has been initialized. "
854
 
            "post_repo_init is called with a "
855
 
            "bzrlib.controldir.RepoInitHookParams.",
856
 
            (2, 2))
857
 
 
858
 
# install the default hooks
859
 
ControlDir.hooks = ControlDirHooks()
860
 
 
861
484
 
862
485
class ControlComponentFormat(object):
863
 
    """A component that can live inside of a control directory."""
 
486
    """A component that can live inside of a .bzr meta directory."""
864
487
 
865
488
    upgrade_recommended = False
866
489
 
 
490
    def get_format_string(self):
 
491
        """Return the format of this format, if usable in meta directories."""
 
492
        raise NotImplementedError(self.get_format_string)
 
493
 
867
494
    def get_format_description(self):
868
495
        """Return the short description for this format."""
869
496
        raise NotImplementedError(self.get_format_description)
896
523
            ui.ui_factory.recommend_upgrade(
897
524
                self.get_format_description(), basedir)
898
525
 
899
 
    @classmethod
900
 
    def get_format_string(cls):
901
 
        raise NotImplementedError(cls.get_format_string)
902
 
 
903
526
 
904
527
class ControlComponentFormatRegistry(registry.FormatRegistry):
905
528
    """A registry for control components (branch, workingtree, repository)."""
1056
679
    def is_supported(self):
1057
680
        """Is this format supported?
1058
681
 
1059
 
        Supported formats must be openable.
 
682
        Supported formats must be initializable and openable.
1060
683
        Unsupported formats may not support initialization or committing or
1061
684
        some other features depending on the reason for not being supported.
1062
685
        """
1063
686
        return True
1064
687
 
1065
 
    def is_initializable(self):
1066
 
        """Whether new control directories of this format can be initialized.
1067
 
        """
1068
 
        return self.is_supported()
1069
 
 
1070
688
    def check_support_status(self, allow_unsupported, recommend_upgrade=True,
1071
689
        basedir=None):
1072
690
        """Give an error or warning on old formats.
1128
746
        return self.get_format_description().rstrip()
1129
747
 
1130
748
    @classmethod
1131
 
    def all_probers(klass):
1132
 
        return klass._server_probers + klass._probers
1133
 
 
1134
 
    @classmethod
1135
749
    def known_formats(klass):
1136
750
        """Return all the known formats.
1137
751
        """
1138
752
        result = set()
1139
 
        for prober_kls in klass.all_probers():
 
753
        for prober_kls in klass._probers + klass._server_probers:
1140
754
            result.update(prober_kls.known_formats())
1141
755
        return result
1142
756
 
1143
757
    @classmethod
1144
 
    def find_format(klass, transport, probers=None):
 
758
    def find_format(klass, transport, _server_formats=True):
1145
759
        """Return the format present at transport."""
1146
 
        if probers is None:
1147
 
            probers = klass.all_probers()
1148
 
        for prober_kls in probers:
 
760
        if _server_formats:
 
761
            _probers = klass._server_probers + klass._probers
 
762
        else:
 
763
            _probers = klass._probers
 
764
        for prober_kls in _probers:
1149
765
            prober = prober_kls()
1150
766
            try:
1151
767
                return prober.probe_transport(transport)
1230
846
        """Return the current default format."""
1231
847
        return klass._default_format
1232
848
 
1233
 
    def supports_transport(self, transport):
1234
 
        """Check if this format can be opened over a particular transport.
1235
 
        """
1236
 
        raise NotImplementedError(self.supports_transport)
1237
 
 
1238
849
 
1239
850
class Prober(object):
1240
851
    """Abstract class that can be used to detect a particular kind of
1263
874
        raise NotImplementedError(self.probe_transport)
1264
875
 
1265
876
    @classmethod
1266
 
    def known_formats(klass):
 
877
    def known_formats(cls):
1267
878
        """Return the control dir formats known by this prober.
1268
879
 
1269
880
        Multiple probers can return the same formats, so this should
1271
882
 
1272
883
        :return: A set of known formats.
1273
884
        """
1274
 
        raise NotImplementedError(klass.known_formats)
 
885
        raise NotImplementedError(cls.known_formats)
1275
886
 
1276
887
 
1277
888
class ControlDirFormatInfo(object):
1410
1021
            return output
1411
1022
 
1412
1023
 
1413
 
class RepoInitHookParams(object):
1414
 
    """Object holding parameters passed to `*_repo_init` hooks.
1415
 
 
1416
 
    There are 4 fields that hooks may wish to access:
1417
 
 
1418
 
    :ivar repository: Repository created
1419
 
    :ivar format: Repository format
1420
 
    :ivar bzrdir: The controldir for the repository
1421
 
    :ivar shared: The repository is shared
1422
 
    """
1423
 
 
1424
 
    def __init__(self, repository, format, controldir, shared):
1425
 
        """Create a group of RepoInitHook parameters.
1426
 
 
1427
 
        :param repository: Repository created
1428
 
        :param format: Repository format
1429
 
        :param controldir: The controldir for the repository
1430
 
        :param shared: The repository is shared
1431
 
        """
1432
 
        self.repository = repository
1433
 
        self.format = format
1434
 
        self.bzrdir = controldir
1435
 
        self.shared = shared
1436
 
 
1437
 
    def __eq__(self, other):
1438
 
        return self.__dict__ == other.__dict__
1439
 
 
1440
 
    def __repr__(self):
1441
 
        if self.repository:
1442
 
            return "<%s for %s>" % (self.__class__.__name__,
1443
 
                self.repository)
1444
 
        else:
1445
 
            return "<%s for %s>" % (self.__class__.__name__,
1446
 
                self.bzrdir)
1447
 
 
1448
 
 
1449
1024
# Please register new formats after old formats so that formats
1450
1025
# appear in chronological order and format descriptions can build
1451
1026
# on previous ones.