~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/controldir.py

  • Committer: Patch Queue Manager
  • Date: 2011-10-06 08:34:03 UTC
  • mfrom: (6191.2.1 843900-url-nameerror)
  • Revision ID: pqm@pqm.ubuntu.com-20111006083403-jnsw0exlirg01aed
(mbp) error message without traceback on invalid ubuntu/debian url (bug
 843900) (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
from bzrlib import (
30
30
    errors,
31
 
    hooks,
32
31
    revision as _mod_revision,
33
32
    transport as _mod_transport,
34
 
    trace,
35
33
    ui,
36
34
    urlutils,
37
35
    )
38
 
from bzrlib.transport import local
39
36
from bzrlib.push import (
40
37
    PushResult,
41
38
    )
42
39
 
43
 
from bzrlib.i18n import gettext
44
40
""")
45
41
 
46
42
from bzrlib import registry
201
197
        raise NotImplementedError(self.destroy_workingtree_metadata)
202
198
 
203
199
    def find_branch_format(self, name=None):
204
 
        """Find the branch 'format' for this controldir.
 
200
        """Find the branch 'format' for this bzrdir.
205
201
 
206
202
        This might be a synthetic object for e.g. RemoteBranch and SVN.
207
203
        """
419
415
        return push_result
420
416
 
421
417
    def _get_tree_branch(self, name=None):
422
 
        """Return the branch and tree, if any, for this controldir.
 
418
        """Return the branch and tree, if any, for this bzrdir.
423
419
 
424
420
        :param name: Name of colocated branch to open.
425
421
 
444
440
        raise NotImplementedError(self.get_config)
445
441
 
446
442
    def check_conversion_target(self, target_format):
447
 
        """Check that a controldir as a whole can be converted to a new format."""
 
443
        """Check that a bzrdir as a whole can be converted to a new format."""
448
444
        raise NotImplementedError(self.check_conversion_target)
449
445
 
450
446
    def clone(self, url, revision_id=None, force_new_repo=False,
451
447
              preserve_stacking=False):
452
 
        """Clone this controldir and its contents to url verbatim.
 
448
        """Clone this bzrdir and its contents to url verbatim.
453
449
 
454
450
        :param url: The url create the clone at.  If url's last component does
455
451
            not exist, it will be created.
469
465
    def clone_on_transport(self, transport, revision_id=None,
470
466
        force_new_repo=False, preserve_stacking=False, stacked_on=None,
471
467
        create_prefix=False, use_existing_dir=True, no_tree=False):
472
 
        """Clone this controldir and its contents to transport verbatim.
 
468
        """Clone this bzrdir and its contents to transport verbatim.
473
469
 
474
470
        :param transport: The transport for the location to produce the clone
475
471
            at.  If the target directory does not exist, it will be created.
487
483
        """
488
484
        raise NotImplementedError(self.clone_on_transport)
489
485
 
490
 
    @classmethod
491
 
    def find_bzrdirs(klass, transport, evaluate=None, list_current=None):
492
 
        """Find control dirs recursively from current location.
493
 
 
494
 
        This is intended primarily as a building block for more sophisticated
495
 
        functionality, like finding trees under a directory, or finding
496
 
        branches that use a given repository.
497
 
 
498
 
        :param evaluate: An optional callable that yields recurse, value,
499
 
            where recurse controls whether this controldir is recursed into
500
 
            and value is the value to yield.  By default, all bzrdirs
501
 
            are recursed into, and the return value is the controldir.
502
 
        :param list_current: if supplied, use this function to list the current
503
 
            directory, instead of Transport.list_dir
504
 
        :return: a generator of found bzrdirs, or whatever evaluate returns.
505
 
        """
506
 
        if list_current is None:
507
 
            def list_current(transport):
508
 
                return transport.list_dir('')
509
 
        if evaluate is None:
510
 
            def evaluate(controldir):
511
 
                return True, controldir
512
 
 
513
 
        pending = [transport]
514
 
        while len(pending) > 0:
515
 
            current_transport = pending.pop()
516
 
            recurse = True
517
 
            try:
518
 
                controldir = klass.open_from_transport(current_transport)
519
 
            except (errors.NotBranchError, errors.PermissionDenied):
520
 
                pass
521
 
            else:
522
 
                recurse, value = evaluate(controldir)
523
 
                yield value
524
 
            try:
525
 
                subdirs = list_current(current_transport)
526
 
            except (errors.NoSuchFile, errors.PermissionDenied):
527
 
                continue
528
 
            if recurse:
529
 
                for subdir in sorted(subdirs, reverse=True):
530
 
                    pending.append(current_transport.clone(subdir))
531
 
 
532
 
    @classmethod
533
 
    def find_branches(klass, transport):
534
 
        """Find all branches under a transport.
535
 
 
536
 
        This will find all branches below the transport, including branches
537
 
        inside other branches.  Where possible, it will use
538
 
        Repository.find_branches.
539
 
 
540
 
        To list all the branches that use a particular Repository, see
541
 
        Repository.find_branches
542
 
        """
543
 
        def evaluate(controldir):
544
 
            try:
545
 
                repository = controldir.open_repository()
546
 
            except errors.NoRepositoryPresent:
547
 
                pass
548
 
            else:
549
 
                return False, ([], repository)
550
 
            return True, (controldir.list_branches(), None)
551
 
        ret = []
552
 
        for branches, repo in klass.find_bzrdirs(
553
 
                transport, evaluate=evaluate):
554
 
            if repo is not None:
555
 
                ret.extend(repo.find_branches())
556
 
            if branches is not None:
557
 
                ret.extend(branches)
558
 
        return ret
559
 
 
560
 
    @classmethod
561
 
    def create_branch_and_repo(klass, base, force_new_repo=False, format=None):
562
 
        """Create a new ControlDir, Branch and Repository at the url 'base'.
563
 
 
564
 
        This will use the current default ControlDirFormat unless one is
565
 
        specified, and use whatever
566
 
        repository format that that uses via controldir.create_branch and
567
 
        create_repository. If a shared repository is available that is used
568
 
        preferentially.
569
 
 
570
 
        The created Branch object is returned.
571
 
 
572
 
        :param base: The URL to create the branch at.
573
 
        :param force_new_repo: If True a new repository is always created.
574
 
        :param format: If supplied, the format of branch to create.  If not
575
 
            supplied, the default is used.
576
 
        """
577
 
        controldir = klass.create(base, format)
578
 
        controldir._find_or_create_repository(force_new_repo)
579
 
        return controldir.create_branch()
580
 
 
581
 
    @classmethod
582
 
    def create_branch_convenience(klass, base, force_new_repo=False,
583
 
                                  force_new_tree=None, format=None,
584
 
                                  possible_transports=None):
585
 
        """Create a new ControlDir, Branch and Repository at the url 'base'.
586
 
 
587
 
        This is a convenience function - it will use an existing repository
588
 
        if possible, can be told explicitly whether to create a working tree or
589
 
        not.
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. Whatever repository is used, its tree creation policy
596
 
        is followed.
597
 
 
598
 
        The created Branch object is returned.
599
 
        If a working tree cannot be made due to base not being a file:// url,
600
 
        no error is raised unless force_new_tree is True, in which case no
601
 
        data is created on disk and NotLocalUrl is raised.
602
 
 
603
 
        :param base: The URL to create the branch at.
604
 
        :param force_new_repo: If True a new repository is always created.
605
 
        :param force_new_tree: If True or False force creation of a tree or
606
 
                               prevent such creation respectively.
607
 
        :param format: Override for the controldir format to create.
608
 
        :param possible_transports: An optional reusable transports list.
609
 
        """
610
 
        if force_new_tree:
611
 
            # check for non local urls
612
 
            t = _mod_transport.get_transport(base, possible_transports)
613
 
            if not isinstance(t, local.LocalTransport):
614
 
                raise errors.NotLocalUrl(base)
615
 
        controldir = klass.create(base, format, possible_transports)
616
 
        repo = controldir._find_or_create_repository(force_new_repo)
617
 
        result = controldir.create_branch()
618
 
        if force_new_tree or (repo.make_working_trees() and
619
 
                              force_new_tree is None):
620
 
            try:
621
 
                controldir.create_workingtree()
622
 
            except errors.NotLocalUrl:
623
 
                pass
624
 
        return result
625
 
 
626
 
    @classmethod
627
 
    def create_standalone_workingtree(klass, base, format=None):
628
 
        """Create a new ControlDir, WorkingTree, Branch and Repository at 'base'.
629
 
 
630
 
        'base' must be a local path or a file:// url.
631
 
 
632
 
        This will use the current default ControlDirFormat unless one is
633
 
        specified, and use whatever
634
 
        repository format that that uses for bzrdirformat.create_workingtree,
635
 
        create_branch and create_repository.
636
 
 
637
 
        :param format: Override for the controldir format to create.
638
 
        :return: The WorkingTree object.
639
 
        """
640
 
        t = _mod_transport.get_transport(base)
641
 
        if not isinstance(t, local.LocalTransport):
642
 
            raise errors.NotLocalUrl(base)
643
 
        controldir = klass.create_branch_and_repo(base,
644
 
                                               force_new_repo=True,
645
 
                                               format=format).bzrdir
646
 
        return controldir.create_workingtree()
647
 
 
648
 
    @classmethod
649
 
    def open_unsupported(klass, base):
650
 
        """Open a branch which is not supported."""
651
 
        return klass.open(base, _unsupported=True)
652
 
 
653
 
    @classmethod
654
 
    def open(klass, base, _unsupported=False, possible_transports=None):
655
 
        """Open an existing controldir, rooted at 'base' (url).
656
 
 
657
 
        :param _unsupported: a private parameter to the ControlDir class.
658
 
        """
659
 
        t = _mod_transport.get_transport(base, possible_transports)
660
 
        return klass.open_from_transport(t, _unsupported=_unsupported)
661
 
 
662
 
    @classmethod
663
 
    def open_from_transport(klass, transport, _unsupported=False,
664
 
                            _server_formats=True):
665
 
        """Open a controldir within a particular directory.
666
 
 
667
 
        :param transport: Transport containing the controldir.
668
 
        :param _unsupported: private.
669
 
        """
670
 
        for hook in klass.hooks['pre_open']:
671
 
            hook(transport)
672
 
        # Keep initial base since 'transport' may be modified while following
673
 
        # the redirections.
674
 
        base = transport.base
675
 
        def find_format(transport):
676
 
            return transport, ControlDirFormat.find_format(
677
 
                transport, _server_formats=_server_formats)
678
 
 
679
 
        def redirected(transport, e, redirection_notice):
680
 
            redirected_transport = transport._redirected_to(e.source, e.target)
681
 
            if redirected_transport is None:
682
 
                raise errors.NotBranchError(base)
683
 
            trace.note(gettext('{0} is{1} redirected to {2}').format(
684
 
                 transport.base, e.permanently, redirected_transport.base))
685
 
            return redirected_transport
686
 
 
687
 
        try:
688
 
            transport, format = _mod_transport.do_catching_redirections(
689
 
                find_format, transport, redirected)
690
 
        except errors.TooManyRedirections:
691
 
            raise errors.NotBranchError(base)
692
 
 
693
 
        format.check_support_status(_unsupported)
694
 
        return format.open(transport, _found=True)
695
 
 
696
 
    @classmethod
697
 
    def open_containing(klass, url, possible_transports=None):
698
 
        """Open an existing branch which contains url.
699
 
 
700
 
        :param url: url to search from.
701
 
 
702
 
        See open_containing_from_transport for more detail.
703
 
        """
704
 
        transport = _mod_transport.get_transport(url, possible_transports)
705
 
        return klass.open_containing_from_transport(transport)
706
 
 
707
 
    @classmethod
708
 
    def open_containing_from_transport(klass, a_transport):
709
 
        """Open an existing branch which contains a_transport.base.
710
 
 
711
 
        This probes for a branch at a_transport, and searches upwards from there.
712
 
 
713
 
        Basically we keep looking up until we find the control directory or
714
 
        run into the root.  If there isn't one, raises NotBranchError.
715
 
        If there is one and it is either an unrecognised format or an unsupported
716
 
        format, UnknownFormatError or UnsupportedFormatError are raised.
717
 
        If there is one, it is returned, along with the unused portion of url.
718
 
 
719
 
        :return: The ControlDir that contains the path, and a Unicode path
720
 
                for the rest of the URL.
721
 
        """
722
 
        # this gets the normalised url back. I.e. '.' -> the full path.
723
 
        url = a_transport.base
724
 
        while True:
725
 
            try:
726
 
                result = klass.open_from_transport(a_transport)
727
 
                return result, urlutils.unescape(a_transport.relpath(url))
728
 
            except errors.NotBranchError, e:
729
 
                pass
730
 
            try:
731
 
                new_t = a_transport.clone('..')
732
 
            except errors.InvalidURLJoin:
733
 
                # reached the root, whatever that may be
734
 
                raise errors.NotBranchError(path=url)
735
 
            if new_t.base == a_transport.base:
736
 
                # reached the root, whatever that may be
737
 
                raise errors.NotBranchError(path=url)
738
 
            a_transport = new_t
739
 
 
740
 
    @classmethod
741
 
    def open_tree_or_branch(klass, location):
742
 
        """Return the branch and working tree at a location.
743
 
 
744
 
        If there is no tree at the location, tree will be None.
745
 
        If there is no branch at the location, an exception will be
746
 
        raised
747
 
        :return: (tree, branch)
748
 
        """
749
 
        controldir = klass.open(location)
750
 
        return controldir._get_tree_branch()
751
 
 
752
 
    @classmethod
753
 
    def open_containing_tree_or_branch(klass, location):
754
 
        """Return the branch and working tree contained by a location.
755
 
 
756
 
        Returns (tree, branch, relpath).
757
 
        If there is no tree at containing the location, tree will be None.
758
 
        If there is no branch containing the location, an exception will be
759
 
        raised
760
 
        relpath is the portion of the path that is contained by the branch.
761
 
        """
762
 
        controldir, relpath = klass.open_containing(location)
763
 
        tree, branch = controldir._get_tree_branch()
764
 
        return tree, branch, relpath
765
 
 
766
 
    @classmethod
767
 
    def open_containing_tree_branch_or_repository(klass, location):
768
 
        """Return the working tree, branch and repo contained by a location.
769
 
 
770
 
        Returns (tree, branch, repository, relpath).
771
 
        If there is no tree containing the location, tree will be None.
772
 
        If there is no branch containing the location, branch will be None.
773
 
        If there is no repository containing the location, repository will be
774
 
        None.
775
 
        relpath is the portion of the path that is contained by the innermost
776
 
        ControlDir.
777
 
 
778
 
        If no tree, branch or repository is found, a NotBranchError is raised.
779
 
        """
780
 
        controldir, relpath = klass.open_containing(location)
781
 
        try:
782
 
            tree, branch = controldir._get_tree_branch()
783
 
        except errors.NotBranchError:
784
 
            try:
785
 
                repo = controldir.find_repository()
786
 
                return None, None, repo, relpath
787
 
            except (errors.NoRepositoryPresent):
788
 
                raise errors.NotBranchError(location)
789
 
        return tree, branch, branch.repository, relpath
790
 
 
791
 
    @classmethod
792
 
    def create(klass, base, format=None, possible_transports=None):
793
 
        """Create a new ControlDir at the url 'base'.
794
 
 
795
 
        :param format: If supplied, the format of branch to create.  If not
796
 
            supplied, the default is used.
797
 
        :param possible_transports: If supplied, a list of transports that
798
 
            can be reused to share a remote connection.
799
 
        """
800
 
        if klass is not ControlDir:
801
 
            raise AssertionError("ControlDir.create always creates the"
802
 
                "default format, not one of %r" % klass)
803
 
        t = _mod_transport.get_transport(base, possible_transports)
804
 
        t.ensure_base()
805
 
        if format is None:
806
 
            format = ControlDirFormat.get_default_format()
807
 
        return format.initialize_on_transport(t)
808
 
 
809
 
 
810
 
class ControlDirHooks(hooks.Hooks):
811
 
    """Hooks for ControlDir operations."""
812
 
 
813
 
    def __init__(self):
814
 
        """Create the default hooks."""
815
 
        hooks.Hooks.__init__(self, "bzrlib.controldir", "ControlDir.hooks")
816
 
        self.add_hook('pre_open',
817
 
            "Invoked before attempting to open a ControlDir with the transport "
818
 
            "that the open will use.", (1, 14))
819
 
        self.add_hook('post_repo_init',
820
 
            "Invoked after a repository has been initialized. "
821
 
            "post_repo_init is called with a "
822
 
            "bzrlib.controldir.RepoInitHookParams.",
823
 
            (2, 2))
824
 
 
825
 
# install the default hooks
826
 
ControlDir.hooks = ControlDirHooks()
827
 
 
828
486
 
829
487
class ControlComponentFormat(object):
830
488
    """A component that can live inside of a .bzr meta directory."""
1195
853
        """Return the current default format."""
1196
854
        return klass._default_format
1197
855
 
1198
 
    def supports_transport(self, transport):
1199
 
        """Check if this format can be opened over a particular transport.
1200
 
        """
1201
 
        raise NotImplementedError(self.supports_transport)
1202
 
 
1203
856
 
1204
857
class Prober(object):
1205
858
    """Abstract class that can be used to detect a particular kind of
1228
881
        raise NotImplementedError(self.probe_transport)
1229
882
 
1230
883
    @classmethod
1231
 
    def known_formats(klass):
 
884
    def known_formats(cls):
1232
885
        """Return the control dir formats known by this prober.
1233
886
 
1234
887
        Multiple probers can return the same formats, so this should
1236
889
 
1237
890
        :return: A set of known formats.
1238
891
        """
1239
 
        raise NotImplementedError(klass.known_formats)
 
892
        raise NotImplementedError(cls.known_formats)
1240
893
 
1241
894
 
1242
895
class ControlDirFormatInfo(object):
1375
1028
            return output
1376
1029
 
1377
1030
 
1378
 
class RepoInitHookParams(object):
1379
 
    """Object holding parameters passed to `*_repo_init` hooks.
1380
 
 
1381
 
    There are 4 fields that hooks may wish to access:
1382
 
 
1383
 
    :ivar repository: Repository created
1384
 
    :ivar format: Repository format
1385
 
    :ivar bzrdir: The controldir for the repository
1386
 
    :ivar shared: The repository is shared
1387
 
    """
1388
 
 
1389
 
    def __init__(self, repository, format, controldir, shared):
1390
 
        """Create a group of RepoInitHook parameters.
1391
 
 
1392
 
        :param repository: Repository created
1393
 
        :param format: Repository format
1394
 
        :param controldir: The controldir for the repository
1395
 
        :param shared: The repository is shared
1396
 
        """
1397
 
        self.repository = repository
1398
 
        self.format = format
1399
 
        self.bzrdir = controldir
1400
 
        self.shared = shared
1401
 
 
1402
 
    def __eq__(self, other):
1403
 
        return self.__dict__ == other.__dict__
1404
 
 
1405
 
    def __repr__(self):
1406
 
        if self.repository:
1407
 
            return "<%s for %s>" % (self.__class__.__name__,
1408
 
                self.repository)
1409
 
        else:
1410
 
            return "<%s for %s>" % (self.__class__.__name__,
1411
 
                self.bzrdir)
1412
 
 
1413
 
 
1414
1031
# Please register new formats after old formats so that formats
1415
1032
# appear in chronological order and format descriptions can build
1416
1033
# on previous ones.