~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: John Arbash Meinel
  • Date: 2011-05-11 11:35:28 UTC
  • mto: This revision was merged to the branch mainline in revision 5851.
  • Revision ID: john@arbash-meinel.com-20110511113528-qepibuwxicjrbb2h
Break compatibility with python <2.6.

This includes auditing the code for places where we were doing
explicit 'sys.version' checks and removing them as appropriate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005-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
25
25
        bzrdir,
26
26
        cache_utf8,
27
27
        config as _mod_config,
28
 
        controldir,
29
28
        debug,
30
29
        errors,
 
30
        fetch,
 
31
        graph as _mod_graph,
31
32
        lockdir,
32
33
        lockable_files,
33
34
        remote,
41
42
        urlutils,
42
43
        )
43
44
from bzrlib.config import BranchConfig, TransportConfig
44
 
from bzrlib.repofmt.pack_repo import RepositoryFormatKnitPack5RichRoot
45
45
from bzrlib.tag import (
46
46
    BasicTags,
47
47
    DisabledTags,
48
48
    )
49
49
""")
50
50
 
51
 
from bzrlib.decorators import needs_read_lock, needs_write_lock, only_raises
52
 
from bzrlib.hooks import HookPoint, Hooks
 
51
from bzrlib import (
 
52
    controldir,
 
53
    )
 
54
from bzrlib.decorators import (
 
55
    needs_read_lock,
 
56
    needs_write_lock,
 
57
    only_raises,
 
58
    )
 
59
from bzrlib.hooks import Hooks
53
60
from bzrlib.inter import InterObject
54
61
from bzrlib.lock import _RelockDebugMixin, LogicalLockResult
55
62
from bzrlib import registry
71
78
    :ivar base:
72
79
        Base directory/url of the branch; using control_url and
73
80
        control_transport is more standardized.
74
 
 
75
 
    hooks: An instance of BranchHooks.
 
81
    :ivar hooks: An instance of BranchHooks.
 
82
    :ivar _master_branch_cache: cached result of get_master_branch, see
 
83
        _clear_cached_state.
76
84
    """
77
85
    # this is really an instance variable - FIXME move it there
78
86
    # - RBC 20060112
92
100
        self._revision_id_to_revno_cache = None
93
101
        self._partial_revision_id_to_revno_cache = {}
94
102
        self._partial_revision_history_cache = []
 
103
        self._tags_bytes = None
95
104
        self._last_revision_info_cache = None
 
105
        self._master_branch_cache = None
96
106
        self._merge_sorted_revisions_cache = None
97
107
        self._open_hook()
98
108
        hooks = Branch.hooks['open']
104
114
 
105
115
    def _activate_fallback_location(self, url):
106
116
        """Activate the branch/repository from url as a fallback repository."""
 
117
        for existing_fallback_repo in self.repository._fallback_repositories:
 
118
            if existing_fallback_repo.user_url == url:
 
119
                # This fallback is already configured.  This probably only
 
120
                # happens because BzrDir.sprout is a horrible mess.  To avoid
 
121
                # confusing _unstack we don't add this a second time.
 
122
                mutter('duplicate activation of fallback %r on %r', url, self)
 
123
                return
107
124
        repo = self._get_fallback_repository(url)
108
125
        if repo.has_same_location(self.repository):
109
126
            raise errors.UnstackableLocationError(self.user_url, url)
227
244
            possible_transports=[self.bzrdir.root_transport])
228
245
        return a_branch.repository
229
246
 
 
247
    @needs_read_lock
230
248
    def _get_tags_bytes(self):
231
249
        """Get the bytes of a serialised tags dict.
232
250
 
239
257
        :return: The bytes of the tags file.
240
258
        :seealso: Branch._set_tags_bytes.
241
259
        """
242
 
        return self._transport.get_bytes('tags')
 
260
        if self._tags_bytes is None:
 
261
            self._tags_bytes = self._transport.get_bytes('tags')
 
262
        return self._tags_bytes
243
263
 
244
264
    def _get_nick(self, local=False, possible_transports=None):
245
265
        config = self.get_config()
649
669
        raise errors.UnsupportedOperation(self.get_reference_info, self)
650
670
 
651
671
    @needs_write_lock
652
 
    def fetch(self, from_branch, last_revision=None, pb=None):
 
672
    def fetch(self, from_branch, last_revision=None):
653
673
        """Copy revisions from from_branch into this branch.
654
674
 
655
675
        :param from_branch: Where to copy from.
656
676
        :param last_revision: What revision to stop at (None for at the end
657
677
                              of the branch.
658
 
        :param pb: An optional progress bar to use.
659
678
        :return: None
660
679
        """
661
 
        if self.base == from_branch.base:
662
 
            return (0, [])
663
 
        if pb is not None:
664
 
            symbol_versioning.warn(
665
 
                symbol_versioning.deprecated_in((1, 14, 0))
666
 
                % "pb parameter to fetch()")
667
 
        from_branch.lock_read()
668
 
        try:
669
 
            if last_revision is None:
670
 
                last_revision = from_branch.last_revision()
671
 
                last_revision = _mod_revision.ensure_null(last_revision)
672
 
            return self.repository.fetch(from_branch.repository,
673
 
                                         revision_id=last_revision,
674
 
                                         pb=pb)
675
 
        finally:
676
 
            from_branch.unlock()
 
680
        return InterBranch.get(from_branch, self).fetch(last_revision)
677
681
 
678
682
    def get_bound_location(self):
679
683
        """Return the URL of the branch we are bound to.
690
694
 
691
695
    def get_commit_builder(self, parents, config=None, timestamp=None,
692
696
                           timezone=None, committer=None, revprops=None,
693
 
                           revision_id=None):
 
697
                           revision_id=None, lossy=False):
694
698
        """Obtain a CommitBuilder for this branch.
695
699
 
696
700
        :param parents: Revision ids of the parents of the new revision.
700
704
        :param committer: Optional committer to set for commit.
701
705
        :param revprops: Optional dictionary of revision properties.
702
706
        :param revision_id: Optional revision id.
 
707
        :param lossy: Whether to discard data that can not be natively
 
708
            represented, when pushing to a foreign VCS 
703
709
        """
704
710
 
705
711
        if config is None:
706
712
            config = self.get_config()
707
713
 
708
714
        return self.repository.get_commit_builder(self, parents, config,
709
 
            timestamp, timezone, committer, revprops, revision_id)
 
715
            timestamp, timezone, committer, revprops, revision_id,
 
716
            lossy)
710
717
 
711
718
    def get_master_branch(self, possible_transports=None):
712
719
        """Return the branch we are bound to.
739
746
        """Print `file` to stdout."""
740
747
        raise NotImplementedError(self.print_file)
741
748
 
 
749
    @deprecated_method(deprecated_in((2, 4, 0)))
742
750
    def set_revision_history(self, rev_history):
743
 
        raise NotImplementedError(self.set_revision_history)
 
751
        """See Branch.set_revision_history."""
 
752
        self._set_revision_history(rev_history)
 
753
 
 
754
    @needs_write_lock
 
755
    def _set_revision_history(self, rev_history):
 
756
        if len(rev_history) == 0:
 
757
            revid = _mod_revision.NULL_REVISION
 
758
        else:
 
759
            revid = rev_history[-1]
 
760
        if rev_history != self._lefthand_history(revid):
 
761
            raise errors.NotLefthandHistory(rev_history)
 
762
        self.set_last_revision_info(len(rev_history), revid)
 
763
        self._cache_revision_history(rev_history)
 
764
        for hook in Branch.hooks['set_rh']:
 
765
            hook(self, rev_history)
 
766
 
 
767
    @needs_write_lock
 
768
    def set_last_revision_info(self, revno, revision_id):
 
769
        """Set the last revision of this branch.
 
770
 
 
771
        The caller is responsible for checking that the revno is correct
 
772
        for this revision id.
 
773
 
 
774
        It may be possible to set the branch last revision to an id not
 
775
        present in the repository.  However, branches can also be
 
776
        configured to check constraints on history, in which case this may not
 
777
        be permitted.
 
778
        """
 
779
        raise NotImplementedError(self.last_revision_info)
 
780
 
 
781
    @needs_write_lock
 
782
    def generate_revision_history(self, revision_id, last_rev=None,
 
783
                                  other_branch=None):
 
784
        """See Branch.generate_revision_history"""
 
785
        # FIXME: This shouldn't have to fetch the entire history
 
786
        history = self._lefthand_history(revision_id, last_rev, other_branch)
 
787
        revno = len(history)
 
788
        self.set_last_revision_info(revno, revision_id)
 
789
        self._cache_revision_history(history)
744
790
 
745
791
    @needs_write_lock
746
792
    def set_parent(self, url):
790
836
 
791
837
    def _unstack(self):
792
838
        """Change a branch to be unstacked, copying data as needed.
793
 
        
 
839
 
794
840
        Don't call this directly, use set_stacked_on_url(None).
795
841
        """
796
842
        pb = ui.ui_factory.nested_progress_bar()
805
851
            old_repository = self.repository
806
852
            if len(old_repository._fallback_repositories) != 1:
807
853
                raise AssertionError("can't cope with fallback repositories "
808
 
                    "of %r" % (self.repository,))
 
854
                    "of %r (fallbacks: %r)" % (old_repository,
 
855
                        old_repository._fallback_repositories))
809
856
            # Open the new repository object.
810
857
            # Repositories don't offer an interface to remove fallback
811
858
            # repositories today; take the conceptually simpler option and just
859
906
                # XXX: If you unstack a branch while it has a working tree
860
907
                # with a pending merge, the pending-merged revisions will no
861
908
                # longer be present.  You can (probably) revert and remerge.
862
 
                #
863
 
                # XXX: This only fetches up to the tip of the repository; it
864
 
                # doesn't bring across any tags.  That's fairly consistent
865
 
                # with how branch works, but perhaps not ideal.
866
 
                self.repository.fetch(old_repository,
867
 
                    revision_id=self.last_revision(),
868
 
                    find_ghosts=True)
 
909
                try:
 
910
                    tags_to_fetch = set(self.tags.get_reverse_tag_dict())
 
911
                except errors.TagsNotSupported:
 
912
                    tags_to_fetch = set()
 
913
                fetch_spec = _mod_graph.NotInOtherForRevs(self.repository,
 
914
                    old_repository, required_ids=[self.last_revision()],
 
915
                    if_present_ids=tags_to_fetch, find_ghosts=True).execute()
 
916
                self.repository.fetch(old_repository, fetch_spec=fetch_spec)
869
917
            finally:
870
918
                old_repository.unlock()
871
919
        finally:
876
924
 
877
925
        :seealso: Branch._get_tags_bytes.
878
926
        """
879
 
        return _run_with_write_locked_target(self, self._transport.put_bytes,
880
 
            'tags', bytes)
 
927
        return _run_with_write_locked_target(self, self._set_tags_bytes_locked,
 
928
                bytes)
 
929
 
 
930
    def _set_tags_bytes_locked(self, bytes):
 
931
        self._tags_bytes = bytes
 
932
        return self._transport.put_bytes('tags', bytes)
881
933
 
882
934
    def _cache_revision_history(self, rev_history):
883
935
        """Set the cached revision history to rev_history.
910
962
        self._revision_history_cache = None
911
963
        self._revision_id_to_revno_cache = None
912
964
        self._last_revision_info_cache = None
 
965
        self._master_branch_cache = None
913
966
        self._merge_sorted_revisions_cache = None
914
967
        self._partial_revision_history_cache = []
915
968
        self._partial_revision_id_to_revno_cache = {}
 
969
        self._tags_bytes = None
916
970
 
917
971
    def _gen_revision_history(self):
918
972
        """Return sequence of revision hashes on to this branch.
968
1022
        :return: A tuple (revno, revision_id).
969
1023
        """
970
1024
        if self._last_revision_info_cache is None:
971
 
            self._last_revision_info_cache = self._last_revision_info()
 
1025
            self._last_revision_info_cache = self._read_last_revision_info()
972
1026
        return self._last_revision_info_cache
973
1027
 
974
 
    def _last_revision_info(self):
975
 
        rh = self.revision_history()
976
 
        revno = len(rh)
977
 
        if revno:
978
 
            return (revno, rh[-1])
979
 
        else:
980
 
            return (0, _mod_revision.NULL_REVISION)
981
 
 
982
 
    @deprecated_method(deprecated_in((1, 6, 0)))
983
 
    def missing_revisions(self, other, stop_revision=None):
984
 
        """Return a list of new revisions that would perfectly fit.
985
 
 
986
 
        If self and other have not diverged, return a list of the revisions
987
 
        present in other, but missing from self.
988
 
        """
989
 
        self_history = self.revision_history()
990
 
        self_len = len(self_history)
991
 
        other_history = other.revision_history()
992
 
        other_len = len(other_history)
993
 
        common_index = min(self_len, other_len) -1
994
 
        if common_index >= 0 and \
995
 
            self_history[common_index] != other_history[common_index]:
996
 
            raise errors.DivergedBranches(self, other)
997
 
 
998
 
        if stop_revision is None:
999
 
            stop_revision = other_len
1000
 
        else:
1001
 
            if stop_revision > other_len:
1002
 
                raise errors.NoSuchRevision(self, stop_revision)
1003
 
        return other_history[self_len:stop_revision]
1004
 
 
1005
 
    def update_revisions(self, other, stop_revision=None, overwrite=False,
1006
 
                         graph=None):
1007
 
        """Pull in new perfect-fit revisions.
1008
 
 
1009
 
        :param other: Another Branch to pull from
1010
 
        :param stop_revision: Updated until the given revision
1011
 
        :param overwrite: Always set the branch pointer, rather than checking
1012
 
            to see if it is a proper descendant.
1013
 
        :param graph: A Graph object that can be used to query history
1014
 
            information. This can be None.
1015
 
        :return: None
1016
 
        """
1017
 
        return InterBranch.get(other, self).update_revisions(stop_revision,
1018
 
            overwrite, graph)
1019
 
 
 
1028
    def _read_last_revision_info(self):
 
1029
        raise NotImplementedError(self._read_last_revision_info)
 
1030
 
 
1031
    @deprecated_method(deprecated_in((2, 4, 0)))
1020
1032
    def import_last_revision_info(self, source_repo, revno, revid):
1021
1033
        """Set the last revision info, importing from another repo if necessary.
1022
1034
 
1023
 
        This is used by the bound branch code to upload a revision to
1024
 
        the master branch first before updating the tip of the local branch.
1025
 
 
1026
1035
        :param source_repo: Source repository to optionally fetch from
1027
1036
        :param revno: Revision number of the new tip
1028
1037
        :param revid: Revision id of the new tip
1031
1040
            self.repository.fetch(source_repo, revision_id=revid)
1032
1041
        self.set_last_revision_info(revno, revid)
1033
1042
 
 
1043
    def import_last_revision_info_and_tags(self, source, revno, revid,
 
1044
                                           lossy=False):
 
1045
        """Set the last revision info, importing from another repo if necessary.
 
1046
 
 
1047
        This is used by the bound branch code to upload a revision to
 
1048
        the master branch first before updating the tip of the local branch.
 
1049
        Revisions referenced by source's tags are also transferred.
 
1050
 
 
1051
        :param source: Source branch to optionally fetch from
 
1052
        :param revno: Revision number of the new tip
 
1053
        :param revid: Revision id of the new tip
 
1054
        :param lossy: Whether to discard metadata that can not be
 
1055
            natively represented
 
1056
        :return: Tuple with the new revision number and revision id
 
1057
            (should only be different from the arguments when lossy=True)
 
1058
        """
 
1059
        if not self.repository.has_same_location(source.repository):
 
1060
            self.fetch(source, revid)
 
1061
        self.set_last_revision_info(revno, revid)
 
1062
        return (revno, revid)
 
1063
 
1034
1064
    def revision_id_to_revno(self, revision_id):
1035
1065
        """Given a revision id, return its revno"""
1036
1066
        if _mod_revision.is_null(revision_id):
1257
1287
        return result
1258
1288
 
1259
1289
    @needs_read_lock
1260
 
    def sprout(self, to_bzrdir, revision_id=None, repository_policy=None):
 
1290
    def sprout(self, to_bzrdir, revision_id=None, repository_policy=None,
 
1291
            repository=None):
1261
1292
        """Create a new line of development from the branch, into to_bzrdir.
1262
1293
 
1263
1294
        to_bzrdir controls the branch format.
1268
1299
        if (repository_policy is not None and
1269
1300
            repository_policy.requires_stacking()):
1270
1301
            to_bzrdir._format.require_stacking(_skip_repo=True)
1271
 
        result = to_bzrdir.create_branch()
 
1302
        result = to_bzrdir.create_branch(repository=repository)
1272
1303
        result.lock_write()
1273
1304
        try:
1274
1305
            if repository_policy is not None:
1275
1306
                repository_policy.configure_branch(result)
1276
1307
            self.copy_content_into(result, revision_id=revision_id)
1277
 
            result.set_parent(self.bzrdir.root_transport.base)
 
1308
            master_branch = self.get_master_branch()
 
1309
            if master_branch is None:
 
1310
                result.set_parent(self.bzrdir.root_transport.base)
 
1311
            else:
 
1312
                result.set_parent(master_branch.bzrdir.root_transport.base)
1278
1313
        finally:
1279
1314
            result.unlock()
1280
1315
        return result
1362
1397
        """Return the most suitable metadir for a checkout of this branch.
1363
1398
        Weaves are used if this branch's repository uses weaves.
1364
1399
        """
1365
 
        if isinstance(self.bzrdir, bzrdir.BzrDirPreSplitOut):
1366
 
            from bzrlib.repofmt import weaverepo
1367
 
            format = bzrdir.BzrDirMetaFormat1()
1368
 
            format.repository_format = weaverepo.RepositoryFormat7()
1369
 
        else:
1370
 
            format = self.repository.bzrdir.checkout_metadir()
1371
 
            format.set_branch_format(self._format)
 
1400
        format = self.repository.bzrdir.checkout_metadir()
 
1401
        format.set_branch_format(self._format)
1372
1402
        return format
1373
1403
 
1374
1404
    def create_clone_on_transport(self, to_transport, revision_id=None,
1375
 
        stacked_on=None, create_prefix=False, use_existing_dir=False):
 
1405
        stacked_on=None, create_prefix=False, use_existing_dir=False,
 
1406
        no_tree=None):
1376
1407
        """Create a clone of this branch and its bzrdir.
1377
1408
 
1378
1409
        :param to_transport: The transport to clone onto.
1391
1422
            revision_id = self.last_revision()
1392
1423
        dir_to = self.bzrdir.clone_on_transport(to_transport,
1393
1424
            revision_id=revision_id, stacked_on=stacked_on,
1394
 
            create_prefix=create_prefix, use_existing_dir=use_existing_dir)
 
1425
            create_prefix=create_prefix, use_existing_dir=use_existing_dir,
 
1426
            no_tree=no_tree)
1395
1427
        return dir_to.open_branch()
1396
1428
 
1397
1429
    def create_checkout(self, to_location, revision_id=None,
1512
1544
        else:
1513
1545
            raise AssertionError("invalid heads: %r" % (heads,))
1514
1546
 
1515
 
 
1516
 
class BranchFormat(object):
 
1547
    def heads_to_fetch(self):
 
1548
        """Return the heads that must and that should be fetched to copy this
 
1549
        branch into another repo.
 
1550
 
 
1551
        :returns: a 2-tuple of (must_fetch, if_present_fetch).  must_fetch is a
 
1552
            set of heads that must be fetched.  if_present_fetch is a set of
 
1553
            heads that must be fetched if present, but no error is necessary if
 
1554
            they are not present.
 
1555
        """
 
1556
        # For bzr native formats must_fetch is just the tip, and if_present_fetch
 
1557
        # are the tags.
 
1558
        must_fetch = set([self.last_revision()])
 
1559
        try:
 
1560
            if_present_fetch = set(self.tags.get_reverse_tag_dict())
 
1561
        except errors.TagsNotSupported:
 
1562
            if_present_fetch = set()
 
1563
        must_fetch.discard(_mod_revision.NULL_REVISION)
 
1564
        if_present_fetch.discard(_mod_revision.NULL_REVISION)
 
1565
        return must_fetch, if_present_fetch
 
1566
 
 
1567
 
 
1568
class BranchFormat(controldir.ControlComponentFormat):
1517
1569
    """An encapsulation of the initialization and open routines for a format.
1518
1570
 
1519
1571
    Formats provide three things:
1522
1574
     * an open routine.
1523
1575
 
1524
1576
    Formats are placed in an dict by their format string for reference
1525
 
    during branch opening. Its not required that these be instances, they
 
1577
    during branch opening. It's not required that these be instances, they
1526
1578
    can be classes themselves with class methods - it simply depends on
1527
1579
    whether state is needed for a given format or not.
1528
1580
 
1531
1583
    object will be created every time regardless.
1532
1584
    """
1533
1585
 
1534
 
    _default_format = None
1535
 
    """The default format used for new branches."""
1536
 
 
1537
 
    _formats = {}
1538
 
    """The known formats."""
1539
 
 
1540
1586
    can_set_append_revisions_only = True
1541
1587
 
1542
1588
    def __eq__(self, other):
1551
1597
        try:
1552
1598
            transport = a_bzrdir.get_branch_transport(None, name=name)
1553
1599
            format_string = transport.get_bytes("format")
1554
 
            format = klass._formats[format_string]
1555
 
            if isinstance(format, MetaDirBranchFormatFactory):
1556
 
                return format()
1557
 
            return format
 
1600
            return format_registry.get(format_string)
1558
1601
        except errors.NoSuchFile:
1559
1602
            raise errors.NotBranchError(path=transport.base, bzrdir=a_bzrdir)
1560
1603
        except KeyError:
1561
1604
            raise errors.UnknownFormatError(format=format_string, kind='branch')
1562
1605
 
1563
1606
    @classmethod
 
1607
    @deprecated_method(deprecated_in((2, 4, 0)))
1564
1608
    def get_default_format(klass):
1565
1609
        """Return the current default format."""
1566
 
        return klass._default_format
 
1610
        return format_registry.get_default()
1567
1611
 
1568
1612
    @classmethod
 
1613
    @deprecated_method(deprecated_in((2, 4, 0)))
1569
1614
    def get_formats(klass):
1570
1615
        """Get all the known formats.
1571
1616
 
1572
1617
        Warning: This triggers a load of all lazy registered formats: do not
1573
1618
        use except when that is desireed.
1574
1619
        """
1575
 
        result = []
1576
 
        for fmt in klass._formats.values():
1577
 
            if isinstance(fmt, MetaDirBranchFormatFactory):
1578
 
                fmt = fmt()
1579
 
            result.append(fmt)
1580
 
        return result
 
1620
        return format_registry._get_all()
1581
1621
 
1582
1622
    def get_reference(self, a_bzrdir, name=None):
1583
1623
        """Get the target reference of the branch in a_bzrdir.
1622
1662
        for hook in hooks:
1623
1663
            hook(params)
1624
1664
 
1625
 
    def _initialize_helper(self, a_bzrdir, utf8_files, name=None,
1626
 
                           lock_type='metadir', set_format=True):
1627
 
        """Initialize a branch in a bzrdir, with specified files
1628
 
 
1629
 
        :param a_bzrdir: The bzrdir to initialize the branch in
1630
 
        :param utf8_files: The files to create as a list of
1631
 
            (filename, content) tuples
1632
 
        :param name: Name of colocated branch to create, if any
1633
 
        :param set_format: If True, set the format with
1634
 
            self.get_format_string.  (BzrBranch4 has its format set
1635
 
            elsewhere)
1636
 
        :return: a branch in this format
1637
 
        """
1638
 
        mutter('creating branch %r in %s', self, a_bzrdir.user_url)
1639
 
        branch_transport = a_bzrdir.get_branch_transport(self, name=name)
1640
 
        lock_map = {
1641
 
            'metadir': ('lock', lockdir.LockDir),
1642
 
            'branch4': ('branch-lock', lockable_files.TransportLock),
1643
 
        }
1644
 
        lock_name, lock_class = lock_map[lock_type]
1645
 
        control_files = lockable_files.LockableFiles(branch_transport,
1646
 
            lock_name, lock_class)
1647
 
        control_files.create_lock()
1648
 
        try:
1649
 
            control_files.lock_write()
1650
 
        except errors.LockContention:
1651
 
            if lock_type != 'branch4':
1652
 
                raise
1653
 
            lock_taken = False
1654
 
        else:
1655
 
            lock_taken = True
1656
 
        if set_format:
1657
 
            utf8_files += [('format', self.get_format_string())]
1658
 
        try:
1659
 
            for (filename, content) in utf8_files:
1660
 
                branch_transport.put_bytes(
1661
 
                    filename, content,
1662
 
                    mode=a_bzrdir._get_file_mode())
1663
 
        finally:
1664
 
            if lock_taken:
1665
 
                control_files.unlock()
1666
 
        branch = self.open(a_bzrdir, name, _found=True)
1667
 
        self._run_post_branch_init_hooks(a_bzrdir, name, branch)
1668
 
        return branch
1669
 
 
1670
 
    def initialize(self, a_bzrdir, name=None):
 
1665
    def initialize(self, a_bzrdir, name=None, repository=None):
1671
1666
        """Create a branch of this format in a_bzrdir.
1672
1667
        
1673
1668
        :param name: Name of the colocated branch to create.
1707
1702
        """
1708
1703
        raise NotImplementedError(self.network_name)
1709
1704
 
1710
 
    def open(self, a_bzrdir, name=None, _found=False, ignore_fallbacks=False):
 
1705
    def open(self, a_bzrdir, name=None, _found=False, ignore_fallbacks=False,
 
1706
            found_repository=None):
1711
1707
        """Return the branch object for a_bzrdir
1712
1708
 
1713
1709
        :param a_bzrdir: A BzrDir that contains a branch.
1720
1716
        raise NotImplementedError(self.open)
1721
1717
 
1722
1718
    @classmethod
 
1719
    @deprecated_method(deprecated_in((2, 4, 0)))
1723
1720
    def register_format(klass, format):
1724
1721
        """Register a metadir format.
1725
 
        
 
1722
 
1726
1723
        See MetaDirBranchFormatFactory for the ability to register a format
1727
1724
        without loading the code the format needs until it is actually used.
1728
1725
        """
1729
 
        klass._formats[format.get_format_string()] = format
1730
 
        # Metadir formats have a network name of their format string, and get
1731
 
        # registered as factories.
1732
 
        if isinstance(format, MetaDirBranchFormatFactory):
1733
 
            network_format_registry.register(format.get_format_string(), format)
1734
 
        else:
1735
 
            network_format_registry.register(format.get_format_string(),
1736
 
                format.__class__)
 
1726
        format_registry.register(format)
1737
1727
 
1738
1728
    @classmethod
 
1729
    @deprecated_method(deprecated_in((2, 4, 0)))
1739
1730
    def set_default_format(klass, format):
1740
 
        klass._default_format = format
 
1731
        format_registry.set_default(format)
1741
1732
 
1742
1733
    def supports_set_append_revisions_only(self):
1743
1734
        """True if this format supports set_append_revisions_only."""
1747
1738
        """True if this format records a stacked-on branch."""
1748
1739
        return False
1749
1740
 
 
1741
    def supports_leaving_lock(self):
 
1742
        """True if this format supports leaving locks in place."""
 
1743
        return False # by default
 
1744
 
1750
1745
    @classmethod
 
1746
    @deprecated_method(deprecated_in((2, 4, 0)))
1751
1747
    def unregister_format(klass, format):
1752
 
        del klass._formats[format.get_format_string()]
 
1748
        format_registry.remove(format)
1753
1749
 
1754
1750
    def __str__(self):
1755
1751
        return self.get_format_description().rstrip()
1800
1796
        These are all empty initially, because by default nothing should get
1801
1797
        notified.
1802
1798
        """
1803
 
        Hooks.__init__(self)
1804
 
        self.create_hook(HookPoint('set_rh',
 
1799
        Hooks.__init__(self, "bzrlib.branch", "Branch.hooks")
 
1800
        self.add_hook('set_rh',
1805
1801
            "Invoked whenever the revision history has been set via "
1806
1802
            "set_revision_history. The api signature is (branch, "
1807
1803
            "revision_history), and the branch will be write-locked. "
1808
1804
            "The set_rh hook can be expensive for bzr to trigger, a better "
1809
 
            "hook to use is Branch.post_change_branch_tip.", (0, 15), None))
1810
 
        self.create_hook(HookPoint('open',
 
1805
            "hook to use is Branch.post_change_branch_tip.", (0, 15))
 
1806
        self.add_hook('open',
1811
1807
            "Called with the Branch object that has been opened after a "
1812
 
            "branch is opened.", (1, 8), None))
1813
 
        self.create_hook(HookPoint('post_push',
 
1808
            "branch is opened.", (1, 8))
 
1809
        self.add_hook('post_push',
1814
1810
            "Called after a push operation completes. post_push is called "
1815
1811
            "with a bzrlib.branch.BranchPushResult object and only runs in the "
1816
 
            "bzr client.", (0, 15), None))
1817
 
        self.create_hook(HookPoint('post_pull',
 
1812
            "bzr client.", (0, 15))
 
1813
        self.add_hook('post_pull',
1818
1814
            "Called after a pull operation completes. post_pull is called "
1819
1815
            "with a bzrlib.branch.PullResult object and only runs in the "
1820
 
            "bzr client.", (0, 15), None))
1821
 
        self.create_hook(HookPoint('pre_commit',
1822
 
            "Called after a commit is calculated but before it is is "
 
1816
            "bzr client.", (0, 15))
 
1817
        self.add_hook('pre_commit',
 
1818
            "Called after a commit is calculated but before it is "
1823
1819
            "completed. pre_commit is called with (local, master, old_revno, "
1824
1820
            "old_revid, future_revno, future_revid, tree_delta, future_tree"
1825
1821
            "). old_revid is NULL_REVISION for the first commit to a branch, "
1827
1823
            "basis revision. hooks MUST NOT modify this delta. "
1828
1824
            " future_tree is an in-memory tree obtained from "
1829
1825
            "CommitBuilder.revision_tree() and hooks MUST NOT modify this "
1830
 
            "tree.", (0,91), None))
1831
 
        self.create_hook(HookPoint('post_commit',
 
1826
            "tree.", (0,91))
 
1827
        self.add_hook('post_commit',
1832
1828
            "Called in the bzr client after a commit has completed. "
1833
1829
            "post_commit is called with (local, master, old_revno, old_revid, "
1834
1830
            "new_revno, new_revid). old_revid is NULL_REVISION for the first "
1835
 
            "commit to a branch.", (0, 15), None))
1836
 
        self.create_hook(HookPoint('post_uncommit',
 
1831
            "commit to a branch.", (0, 15))
 
1832
        self.add_hook('post_uncommit',
1837
1833
            "Called in the bzr client after an uncommit completes. "
1838
1834
            "post_uncommit is called with (local, master, old_revno, "
1839
1835
            "old_revid, new_revno, new_revid) where local is the local branch "
1840
1836
            "or None, master is the target branch, and an empty branch "
1841
 
            "receives new_revno of 0, new_revid of None.", (0, 15), None))
1842
 
        self.create_hook(HookPoint('pre_change_branch_tip',
 
1837
            "receives new_revno of 0, new_revid of None.", (0, 15))
 
1838
        self.add_hook('pre_change_branch_tip',
1843
1839
            "Called in bzr client and server before a change to the tip of a "
1844
1840
            "branch is made. pre_change_branch_tip is called with a "
1845
1841
            "bzrlib.branch.ChangeBranchTipParams. Note that push, pull, "
1846
 
            "commit, uncommit will all trigger this hook.", (1, 6), None))
1847
 
        self.create_hook(HookPoint('post_change_branch_tip',
 
1842
            "commit, uncommit will all trigger this hook.", (1, 6))
 
1843
        self.add_hook('post_change_branch_tip',
1848
1844
            "Called in bzr client and server after a change to the tip of a "
1849
1845
            "branch is made. post_change_branch_tip is called with a "
1850
1846
            "bzrlib.branch.ChangeBranchTipParams. Note that push, pull, "
1851
 
            "commit, uncommit will all trigger this hook.", (1, 4), None))
1852
 
        self.create_hook(HookPoint('transform_fallback_location',
 
1847
            "commit, uncommit will all trigger this hook.", (1, 4))
 
1848
        self.add_hook('transform_fallback_location',
1853
1849
            "Called when a stacked branch is activating its fallback "
1854
1850
            "locations. transform_fallback_location is called with (branch, "
1855
1851
            "url), and should return a new url. Returning the same url "
1860
1856
            "fallback locations have not been activated. When there are "
1861
1857
            "multiple hooks installed for transform_fallback_location, "
1862
1858
            "all are called with the url returned from the previous hook."
1863
 
            "The order is however undefined.", (1, 9), None))
1864
 
        self.create_hook(HookPoint('automatic_tag_name',
 
1859
            "The order is however undefined.", (1, 9))
 
1860
        self.add_hook('automatic_tag_name',
1865
1861
            "Called to determine an automatic tag name for a revision. "
1866
1862
            "automatic_tag_name is called with (branch, revision_id) and "
1867
1863
            "should return a tag name or None if no tag name could be "
1868
1864
            "determined. The first non-None tag name returned will be used.",
1869
 
            (2, 2), None))
1870
 
        self.create_hook(HookPoint('post_branch_init',
 
1865
            (2, 2))
 
1866
        self.add_hook('post_branch_init',
1871
1867
            "Called after new branch initialization completes. "
1872
1868
            "post_branch_init is called with a "
1873
1869
            "bzrlib.branch.BranchInitHookParams. "
1874
1870
            "Note that init, branch and checkout (both heavyweight and "
1875
 
            "lightweight) will all trigger this hook.", (2, 2), None))
1876
 
        self.create_hook(HookPoint('post_switch',
 
1871
            "lightweight) will all trigger this hook.", (2, 2))
 
1872
        self.add_hook('post_switch',
1877
1873
            "Called after a checkout switches branch. "
1878
1874
            "post_switch is called with a "
1879
 
            "bzrlib.branch.SwitchHookParams.", (2, 2), None))
 
1875
            "bzrlib.branch.SwitchHookParams.", (2, 2))
1880
1876
 
1881
1877
 
1882
1878
 
1995
1991
            self.revision_id)
1996
1992
 
1997
1993
 
1998
 
class BzrBranchFormat4(BranchFormat):
1999
 
    """Bzr branch format 4.
2000
 
 
2001
 
    This format has:
2002
 
     - a revision-history file.
2003
 
     - a branch-lock lock file [ to be shared with the bzrdir ]
2004
 
    """
2005
 
 
2006
 
    def get_format_description(self):
2007
 
        """See BranchFormat.get_format_description()."""
2008
 
        return "Branch format 4"
2009
 
 
2010
 
    def initialize(self, a_bzrdir, name=None):
2011
 
        """Create a branch of this format in a_bzrdir."""
2012
 
        utf8_files = [('revision-history', ''),
2013
 
                      ('branch-name', ''),
2014
 
                      ]
2015
 
        return self._initialize_helper(a_bzrdir, utf8_files, name=name,
2016
 
                                       lock_type='branch4', set_format=False)
2017
 
 
2018
 
    def __init__(self):
2019
 
        super(BzrBranchFormat4, self).__init__()
2020
 
        self._matchingbzrdir = bzrdir.BzrDirFormat6()
2021
 
 
2022
 
    def network_name(self):
2023
 
        """The network name for this format is the control dirs disk label."""
2024
 
        return self._matchingbzrdir.get_format_string()
2025
 
 
2026
 
    def open(self, a_bzrdir, name=None, _found=False, ignore_fallbacks=False):
2027
 
        """See BranchFormat.open()."""
2028
 
        if not _found:
2029
 
            # we are being called directly and must probe.
2030
 
            raise NotImplementedError
2031
 
        return BzrBranch(_format=self,
2032
 
                         _control_files=a_bzrdir._control_files,
2033
 
                         a_bzrdir=a_bzrdir,
2034
 
                         name=name,
2035
 
                         _repository=a_bzrdir.open_repository())
2036
 
 
2037
 
    def __str__(self):
2038
 
        return "Bazaar-NG branch format 4"
2039
 
 
2040
 
 
2041
1994
class BranchFormatMetadir(BranchFormat):
2042
1995
    """Common logic for meta-dir based branch formats."""
2043
1996
 
2045
1998
        """What class to instantiate on open calls."""
2046
1999
        raise NotImplementedError(self._branch_class)
2047
2000
 
 
2001
    def _initialize_helper(self, a_bzrdir, utf8_files, name=None,
 
2002
                           repository=None):
 
2003
        """Initialize a branch in a bzrdir, with specified files
 
2004
 
 
2005
        :param a_bzrdir: The bzrdir to initialize the branch in
 
2006
        :param utf8_files: The files to create as a list of
 
2007
            (filename, content) tuples
 
2008
        :param name: Name of colocated branch to create, if any
 
2009
        :return: a branch in this format
 
2010
        """
 
2011
        mutter('creating branch %r in %s', self, a_bzrdir.user_url)
 
2012
        branch_transport = a_bzrdir.get_branch_transport(self, name=name)
 
2013
        control_files = lockable_files.LockableFiles(branch_transport,
 
2014
            'lock', lockdir.LockDir)
 
2015
        control_files.create_lock()
 
2016
        control_files.lock_write()
 
2017
        try:
 
2018
            utf8_files += [('format', self.get_format_string())]
 
2019
            for (filename, content) in utf8_files:
 
2020
                branch_transport.put_bytes(
 
2021
                    filename, content,
 
2022
                    mode=a_bzrdir._get_file_mode())
 
2023
        finally:
 
2024
            control_files.unlock()
 
2025
        branch = self.open(a_bzrdir, name, _found=True,
 
2026
                found_repository=repository)
 
2027
        self._run_post_branch_init_hooks(a_bzrdir, name, branch)
 
2028
        return branch
 
2029
 
2048
2030
    def network_name(self):
2049
2031
        """A simple byte string uniquely identifying this format for RPC calls.
2050
2032
 
2052
2034
        """
2053
2035
        return self.get_format_string()
2054
2036
 
2055
 
    def open(self, a_bzrdir, name=None, _found=False, ignore_fallbacks=False):
 
2037
    def open(self, a_bzrdir, name=None, _found=False, ignore_fallbacks=False,
 
2038
            found_repository=None):
2056
2039
        """See BranchFormat.open()."""
2057
2040
        if not _found:
2058
2041
            format = BranchFormat.find_format(a_bzrdir, name=name)
2063
2046
        try:
2064
2047
            control_files = lockable_files.LockableFiles(transport, 'lock',
2065
2048
                                                         lockdir.LockDir)
 
2049
            if found_repository is None:
 
2050
                found_repository = a_bzrdir.find_repository()
2066
2051
            return self._branch_class()(_format=self,
2067
2052
                              _control_files=control_files,
2068
2053
                              name=name,
2069
2054
                              a_bzrdir=a_bzrdir,
2070
 
                              _repository=a_bzrdir.find_repository(),
 
2055
                              _repository=found_repository,
2071
2056
                              ignore_fallbacks=ignore_fallbacks)
2072
2057
        except errors.NoSuchFile:
2073
2058
            raise errors.NotBranchError(path=transport.base, bzrdir=a_bzrdir)
2080
2065
    def supports_tags(self):
2081
2066
        return True
2082
2067
 
 
2068
    def supports_leaving_lock(self):
 
2069
        return True
 
2070
 
2083
2071
 
2084
2072
class BzrBranchFormat5(BranchFormatMetadir):
2085
2073
    """Bzr branch format 5.
2105
2093
        """See BranchFormat.get_format_description()."""
2106
2094
        return "Branch format 5"
2107
2095
 
2108
 
    def initialize(self, a_bzrdir, name=None):
 
2096
    def initialize(self, a_bzrdir, name=None, repository=None):
2109
2097
        """Create a branch of this format in a_bzrdir."""
2110
2098
        utf8_files = [('revision-history', ''),
2111
2099
                      ('branch-name', ''),
2112
2100
                      ]
2113
 
        return self._initialize_helper(a_bzrdir, utf8_files, name)
 
2101
        return self._initialize_helper(a_bzrdir, utf8_files, name, repository)
2114
2102
 
2115
2103
    def supports_tags(self):
2116
2104
        return False
2138
2126
        """See BranchFormat.get_format_description()."""
2139
2127
        return "Branch format 6"
2140
2128
 
2141
 
    def initialize(self, a_bzrdir, name=None):
 
2129
    def initialize(self, a_bzrdir, name=None, repository=None):
2142
2130
        """Create a branch of this format in a_bzrdir."""
2143
2131
        utf8_files = [('last-revision', '0 null:\n'),
2144
2132
                      ('branch.conf', ''),
2145
2133
                      ('tags', ''),
2146
2134
                      ]
2147
 
        return self._initialize_helper(a_bzrdir, utf8_files, name)
 
2135
        return self._initialize_helper(a_bzrdir, utf8_files, name, repository)
2148
2136
 
2149
2137
    def make_tags(self, branch):
2150
2138
        """See bzrlib.branch.BranchFormat.make_tags()."""
2168
2156
        """See BranchFormat.get_format_description()."""
2169
2157
        return "Branch format 8"
2170
2158
 
2171
 
    def initialize(self, a_bzrdir, name=None):
 
2159
    def initialize(self, a_bzrdir, name=None, repository=None):
2172
2160
        """Create a branch of this format in a_bzrdir."""
2173
2161
        utf8_files = [('last-revision', '0 null:\n'),
2174
2162
                      ('branch.conf', ''),
2175
2163
                      ('tags', ''),
2176
2164
                      ('references', '')
2177
2165
                      ]
2178
 
        return self._initialize_helper(a_bzrdir, utf8_files, name)
2179
 
 
2180
 
    def __init__(self):
2181
 
        super(BzrBranchFormat8, self).__init__()
2182
 
        self._matchingbzrdir.repository_format = \
2183
 
            RepositoryFormatKnitPack5RichRoot()
 
2166
        return self._initialize_helper(a_bzrdir, utf8_files, name, repository)
2184
2167
 
2185
2168
    def make_tags(self, branch):
2186
2169
        """See bzrlib.branch.BranchFormat.make_tags()."""
2195
2178
    supports_reference_locations = True
2196
2179
 
2197
2180
 
2198
 
class BzrBranchFormat7(BzrBranchFormat8):
 
2181
class BzrBranchFormat7(BranchFormatMetadir):
2199
2182
    """Branch format with last-revision, tags, and a stacked location pointer.
2200
2183
 
2201
2184
    The stacked location pointer is passed down to the repository and requires
2204
2187
    This format was introduced in bzr 1.6.
2205
2188
    """
2206
2189
 
2207
 
    def initialize(self, a_bzrdir, name=None):
 
2190
    def initialize(self, a_bzrdir, name=None, repository=None):
2208
2191
        """Create a branch of this format in a_bzrdir."""
2209
2192
        utf8_files = [('last-revision', '0 null:\n'),
2210
2193
                      ('branch.conf', ''),
2211
2194
                      ('tags', ''),
2212
2195
                      ]
2213
 
        return self._initialize_helper(a_bzrdir, utf8_files, name)
 
2196
        return self._initialize_helper(a_bzrdir, utf8_files, name, repository)
2214
2197
 
2215
2198
    def _branch_class(self):
2216
2199
        return BzrBranch7
2226
2209
    def supports_set_append_revisions_only(self):
2227
2210
        return True
2228
2211
 
 
2212
    def supports_stacking(self):
 
2213
        return True
 
2214
 
 
2215
    def make_tags(self, branch):
 
2216
        """See bzrlib.branch.BranchFormat.make_tags()."""
 
2217
        return BasicTags(branch)
 
2218
 
2229
2219
    supports_reference_locations = False
2230
2220
 
2231
2221
 
2258
2248
        transport = a_bzrdir.get_branch_transport(None, name=name)
2259
2249
        location = transport.put_bytes('location', to_branch.base)
2260
2250
 
2261
 
    def initialize(self, a_bzrdir, name=None, target_branch=None):
 
2251
    def initialize(self, a_bzrdir, name=None, target_branch=None,
 
2252
            repository=None):
2262
2253
        """Create a branch of this format in a_bzrdir."""
2263
2254
        if target_branch is None:
2264
2255
            # this format does not implement branch itself, thus the implicit
2292
2283
        return clone
2293
2284
 
2294
2285
    def open(self, a_bzrdir, name=None, _found=False, location=None,
2295
 
             possible_transports=None, ignore_fallbacks=False):
 
2286
             possible_transports=None, ignore_fallbacks=False,
 
2287
             found_repository=None):
2296
2288
        """Return the branch that the branch reference in a_bzrdir points at.
2297
2289
 
2298
2290
        :param a_bzrdir: A BzrDir that contains a branch.
2329
2321
        return result
2330
2322
 
2331
2323
 
 
2324
class BranchFormatRegistry(controldir.ControlComponentFormatRegistry):
 
2325
    """Branch format registry."""
 
2326
 
 
2327
    def __init__(self, other_registry=None):
 
2328
        super(BranchFormatRegistry, self).__init__(other_registry)
 
2329
        self._default_format = None
 
2330
 
 
2331
    def set_default(self, format):
 
2332
        self._default_format = format
 
2333
 
 
2334
    def get_default(self):
 
2335
        return self._default_format
 
2336
 
 
2337
 
2332
2338
network_format_registry = registry.FormatRegistry()
2333
2339
"""Registry of formats indexed by their network name.
2334
2340
 
2337
2343
BranchFormat.network_name() for more detail.
2338
2344
"""
2339
2345
 
 
2346
format_registry = BranchFormatRegistry(network_format_registry)
 
2347
 
2340
2348
 
2341
2349
# formats which have no format string are not discoverable
2342
2350
# and not independently creatable, so are not registered.
2344
2352
__format6 = BzrBranchFormat6()
2345
2353
__format7 = BzrBranchFormat7()
2346
2354
__format8 = BzrBranchFormat8()
2347
 
BranchFormat.register_format(__format5)
2348
 
BranchFormat.register_format(BranchReferenceFormat())
2349
 
BranchFormat.register_format(__format6)
2350
 
BranchFormat.register_format(__format7)
2351
 
BranchFormat.register_format(__format8)
2352
 
BranchFormat.set_default_format(__format7)
2353
 
_legacy_formats = [BzrBranchFormat4(),
2354
 
    ]
2355
 
network_format_registry.register(
2356
 
    _legacy_formats[0].network_name(), _legacy_formats[0].__class__)
 
2355
format_registry.register(__format5)
 
2356
format_registry.register(BranchReferenceFormat())
 
2357
format_registry.register(__format6)
 
2358
format_registry.register(__format7)
 
2359
format_registry.register(__format8)
 
2360
format_registry.set_default(__format7)
2357
2361
 
2358
2362
 
2359
2363
class BranchWriteLockResult(LogicalLockResult):
2507
2511
        """See Branch.print_file."""
2508
2512
        return self.repository.print_file(file, revision_id)
2509
2513
 
2510
 
    def _write_revision_history(self, history):
2511
 
        """Factored out of set_revision_history.
2512
 
 
2513
 
        This performs the actual writing to disk.
2514
 
        It is intended to be called by BzrBranch5.set_revision_history."""
2515
 
        self._transport.put_bytes(
2516
 
            'revision-history', '\n'.join(history),
2517
 
            mode=self.bzrdir._get_file_mode())
2518
 
 
2519
 
    @needs_write_lock
2520
 
    def set_revision_history(self, rev_history):
2521
 
        """See Branch.set_revision_history."""
2522
 
        if 'evil' in debug.debug_flags:
2523
 
            mutter_callsite(3, "set_revision_history scales with history.")
2524
 
        check_not_reserved_id = _mod_revision.check_not_reserved_id
2525
 
        for rev_id in rev_history:
2526
 
            check_not_reserved_id(rev_id)
2527
 
        if Branch.hooks['post_change_branch_tip']:
2528
 
            # Don't calculate the last_revision_info() if there are no hooks
2529
 
            # that will use it.
2530
 
            old_revno, old_revid = self.last_revision_info()
2531
 
        if len(rev_history) == 0:
2532
 
            revid = _mod_revision.NULL_REVISION
2533
 
        else:
2534
 
            revid = rev_history[-1]
2535
 
        self._run_pre_change_branch_tip_hooks(len(rev_history), revid)
2536
 
        self._write_revision_history(rev_history)
2537
 
        self._clear_cached_state()
2538
 
        self._cache_revision_history(rev_history)
2539
 
        for hook in Branch.hooks['set_rh']:
2540
 
            hook(self, rev_history)
2541
 
        if Branch.hooks['post_change_branch_tip']:
2542
 
            self._run_post_change_branch_tip_hooks(old_revno, old_revid)
2543
 
 
2544
 
    def _synchronize_history(self, destination, revision_id):
2545
 
        """Synchronize last revision and revision history between branches.
2546
 
 
2547
 
        This version is most efficient when the destination is also a
2548
 
        BzrBranch5, but works for BzrBranch6 as long as the revision
2549
 
        history is the true lefthand parent history, and all of the revisions
2550
 
        are in the destination's repository.  If not, set_revision_history
2551
 
        will fail.
2552
 
 
2553
 
        :param destination: The branch to copy the history into
2554
 
        :param revision_id: The revision-id to truncate history at.  May
2555
 
          be None to copy complete history.
2556
 
        """
2557
 
        if not isinstance(destination._format, BzrBranchFormat5):
2558
 
            super(BzrBranch, self)._synchronize_history(
2559
 
                destination, revision_id)
2560
 
            return
2561
 
        if revision_id == _mod_revision.NULL_REVISION:
2562
 
            new_history = []
2563
 
        else:
2564
 
            new_history = self.revision_history()
2565
 
        if revision_id is not None and new_history != []:
2566
 
            try:
2567
 
                new_history = new_history[:new_history.index(revision_id) + 1]
2568
 
            except ValueError:
2569
 
                rev = self.repository.get_revision(revision_id)
2570
 
                new_history = rev.get_history(self.repository)[1:]
2571
 
        destination.set_revision_history(new_history)
2572
 
 
2573
2514
    @needs_write_lock
2574
2515
    def set_last_revision_info(self, revno, revision_id):
2575
 
        """Set the last revision of this branch.
2576
 
 
2577
 
        The caller is responsible for checking that the revno is correct
2578
 
        for this revision id.
2579
 
 
2580
 
        It may be possible to set the branch last revision to an id not
2581
 
        present in the repository.  However, branches can also be
2582
 
        configured to check constraints on history, in which case this may not
2583
 
        be permitted.
2584
 
        """
 
2516
        if not revision_id or not isinstance(revision_id, basestring):
 
2517
            raise errors.InvalidRevisionId(revision_id=revision_id, branch=self)
2585
2518
        revision_id = _mod_revision.ensure_null(revision_id)
2586
 
        # this old format stores the full history, but this api doesn't
2587
 
        # provide it, so we must generate, and might as well check it's
2588
 
        # correct
2589
 
        history = self._lefthand_history(revision_id)
2590
 
        if len(history) != revno:
2591
 
            raise AssertionError('%d != %d' % (len(history), revno))
2592
 
        self.set_revision_history(history)
2593
 
 
2594
 
    def _gen_revision_history(self):
2595
 
        history = self._transport.get_bytes('revision-history').split('\n')
2596
 
        if history[-1:] == ['']:
2597
 
            # There shouldn't be a trailing newline, but just in case.
2598
 
            history.pop()
2599
 
        return history
2600
 
 
2601
 
    @needs_write_lock
2602
 
    def generate_revision_history(self, revision_id, last_rev=None,
2603
 
        other_branch=None):
2604
 
        """Create a new revision history that will finish with revision_id.
2605
 
 
2606
 
        :param revision_id: the new tip to use.
2607
 
        :param last_rev: The previous last_revision. If not None, then this
2608
 
            must be a ancestory of revision_id, or DivergedBranches is raised.
2609
 
        :param other_branch: The other branch that DivergedBranches should
2610
 
            raise with respect to.
2611
 
        """
2612
 
        self.set_revision_history(self._lefthand_history(revision_id,
2613
 
            last_rev, other_branch))
 
2519
        old_revno, old_revid = self.last_revision_info()
 
2520
        if self._get_append_revisions_only():
 
2521
            self._check_history_violation(revision_id)
 
2522
        self._run_pre_change_branch_tip_hooks(revno, revision_id)
 
2523
        self._write_last_revision_info(revno, revision_id)
 
2524
        self._clear_cached_state()
 
2525
        self._last_revision_info_cache = revno, revision_id
 
2526
        self._run_post_change_branch_tip_hooks(old_revno, old_revid)
2614
2527
 
2615
2528
    def basis_tree(self):
2616
2529
        """See Branch.basis_tree."""
2625
2538
                pass
2626
2539
        return None
2627
2540
 
2628
 
    def _basic_push(self, target, overwrite, stop_revision):
2629
 
        """Basic implementation of push without bound branches or hooks.
2630
 
 
2631
 
        Must be called with source read locked and target write locked.
2632
 
        """
2633
 
        result = BranchPushResult()
2634
 
        result.source_branch = self
2635
 
        result.target_branch = target
2636
 
        result.old_revno, result.old_revid = target.last_revision_info()
2637
 
        self.update_references(target)
2638
 
        if result.old_revid != self.last_revision():
2639
 
            # We assume that during 'push' this repository is closer than
2640
 
            # the target.
2641
 
            graph = self.repository.get_graph(target.repository)
2642
 
            target.update_revisions(self, stop_revision,
2643
 
                overwrite=overwrite, graph=graph)
2644
 
        if self._push_should_merge_tags():
2645
 
            result.tag_conflicts = self.tags.merge_to(target.tags,
2646
 
                overwrite)
2647
 
        result.new_revno, result.new_revid = target.last_revision_info()
2648
 
        return result
2649
 
 
2650
2541
    def get_stacked_on_url(self):
2651
2542
        raise errors.UnstackableBranchFormat(self._format, self.user_url)
2652
2543
 
2663
2554
            self._transport.put_bytes('parent', url + '\n',
2664
2555
                mode=self.bzrdir._get_file_mode())
2665
2556
 
2666
 
 
2667
 
class BzrBranch5(BzrBranch):
2668
 
    """A format 5 branch. This supports new features over plain branches.
2669
 
 
2670
 
    It has support for a master_branch which is the data for bound branches.
2671
 
    """
2672
 
 
2673
 
    def get_bound_location(self):
2674
 
        try:
2675
 
            return self._transport.get_bytes('bound')[:-1]
2676
 
        except errors.NoSuchFile:
2677
 
            return None
2678
 
 
2679
 
    @needs_read_lock
2680
 
    def get_master_branch(self, possible_transports=None):
2681
 
        """Return the branch we are bound to.
2682
 
 
2683
 
        :return: Either a Branch, or None
2684
 
 
2685
 
        This could memoise the branch, but if thats done
2686
 
        it must be revalidated on each new lock.
2687
 
        So for now we just don't memoise it.
2688
 
        # RBC 20060304 review this decision.
2689
 
        """
2690
 
        bound_loc = self.get_bound_location()
2691
 
        if not bound_loc:
2692
 
            return None
2693
 
        try:
2694
 
            return Branch.open(bound_loc,
2695
 
                               possible_transports=possible_transports)
2696
 
        except (errors.NotBranchError, errors.ConnectionError), e:
2697
 
            raise errors.BoundBranchConnectionFailure(
2698
 
                    self, bound_loc, e)
2699
 
 
2700
2557
    @needs_write_lock
2701
 
    def set_bound_location(self, location):
2702
 
        """Set the target where this branch is bound to.
2703
 
 
2704
 
        :param location: URL to the target branch
2705
 
        """
2706
 
        if location:
2707
 
            self._transport.put_bytes('bound', location+'\n',
2708
 
                mode=self.bzrdir._get_file_mode())
2709
 
        else:
2710
 
            try:
2711
 
                self._transport.delete('bound')
2712
 
            except errors.NoSuchFile:
2713
 
                return False
2714
 
            return True
 
2558
    def unbind(self):
 
2559
        """If bound, unbind"""
 
2560
        return self.set_bound_location(None)
2715
2561
 
2716
2562
    @needs_write_lock
2717
2563
    def bind(self, other):
2739
2585
        # history around
2740
2586
        self.set_bound_location(other.base)
2741
2587
 
 
2588
    def get_bound_location(self):
 
2589
        try:
 
2590
            return self._transport.get_bytes('bound')[:-1]
 
2591
        except errors.NoSuchFile:
 
2592
            return None
 
2593
 
 
2594
    @needs_read_lock
 
2595
    def get_master_branch(self, possible_transports=None):
 
2596
        """Return the branch we are bound to.
 
2597
 
 
2598
        :return: Either a Branch, or None
 
2599
        """
 
2600
        if self._master_branch_cache is None:
 
2601
            self._master_branch_cache = self._get_master_branch(
 
2602
                possible_transports)
 
2603
        return self._master_branch_cache
 
2604
 
 
2605
    def _get_master_branch(self, possible_transports):
 
2606
        bound_loc = self.get_bound_location()
 
2607
        if not bound_loc:
 
2608
            return None
 
2609
        try:
 
2610
            return Branch.open(bound_loc,
 
2611
                               possible_transports=possible_transports)
 
2612
        except (errors.NotBranchError, errors.ConnectionError), e:
 
2613
            raise errors.BoundBranchConnectionFailure(
 
2614
                    self, bound_loc, e)
 
2615
 
2742
2616
    @needs_write_lock
2743
 
    def unbind(self):
2744
 
        """If bound, unbind"""
2745
 
        return self.set_bound_location(None)
 
2617
    def set_bound_location(self, location):
 
2618
        """Set the target where this branch is bound to.
 
2619
 
 
2620
        :param location: URL to the target branch
 
2621
        """
 
2622
        self._master_branch_cache = None
 
2623
        if location:
 
2624
            self._transport.put_bytes('bound', location+'\n',
 
2625
                mode=self.bzrdir._get_file_mode())
 
2626
        else:
 
2627
            try:
 
2628
                self._transport.delete('bound')
 
2629
            except errors.NoSuchFile:
 
2630
                return False
 
2631
            return True
2746
2632
 
2747
2633
    @needs_write_lock
2748
2634
    def update(self, possible_transports=None):
2761
2647
            return old_tip
2762
2648
        return None
2763
2649
 
2764
 
 
2765
 
class BzrBranch8(BzrBranch5):
 
2650
    def _read_last_revision_info(self):
 
2651
        revision_string = self._transport.get_bytes('last-revision')
 
2652
        revno, revision_id = revision_string.rstrip('\n').split(' ', 1)
 
2653
        revision_id = cache_utf8.get_cached_utf8(revision_id)
 
2654
        revno = int(revno)
 
2655
        return revno, revision_id
 
2656
 
 
2657
    def _write_last_revision_info(self, revno, revision_id):
 
2658
        """Simply write out the revision id, with no checks.
 
2659
 
 
2660
        Use set_last_revision_info to perform this safely.
 
2661
 
 
2662
        Does not update the revision_history cache.
 
2663
        """
 
2664
        revision_id = _mod_revision.ensure_null(revision_id)
 
2665
        out_string = '%d %s\n' % (revno, revision_id)
 
2666
        self._transport.put_bytes('last-revision', out_string,
 
2667
            mode=self.bzrdir._get_file_mode())
 
2668
 
 
2669
 
 
2670
class FullHistoryBzrBranch(BzrBranch):
 
2671
    """Bzr branch which contains the full revision history."""
 
2672
 
 
2673
    @needs_write_lock
 
2674
    def set_last_revision_info(self, revno, revision_id):
 
2675
        if not revision_id or not isinstance(revision_id, basestring):
 
2676
            raise errors.InvalidRevisionId(revision_id=revision_id, branch=self)
 
2677
        revision_id = _mod_revision.ensure_null(revision_id)
 
2678
        # this old format stores the full history, but this api doesn't
 
2679
        # provide it, so we must generate, and might as well check it's
 
2680
        # correct
 
2681
        history = self._lefthand_history(revision_id)
 
2682
        if len(history) != revno:
 
2683
            raise AssertionError('%d != %d' % (len(history), revno))
 
2684
        self._set_revision_history(history)
 
2685
 
 
2686
    def _read_last_revision_info(self):
 
2687
        rh = self.revision_history()
 
2688
        revno = len(rh)
 
2689
        if revno:
 
2690
            return (revno, rh[-1])
 
2691
        else:
 
2692
            return (0, _mod_revision.NULL_REVISION)
 
2693
 
 
2694
    @deprecated_method(deprecated_in((2, 4, 0)))
 
2695
    @needs_write_lock
 
2696
    def set_revision_history(self, rev_history):
 
2697
        """See Branch.set_revision_history."""
 
2698
        self._set_revision_history(rev_history)
 
2699
 
 
2700
    def _set_revision_history(self, rev_history):
 
2701
        if 'evil' in debug.debug_flags:
 
2702
            mutter_callsite(3, "set_revision_history scales with history.")
 
2703
        check_not_reserved_id = _mod_revision.check_not_reserved_id
 
2704
        for rev_id in rev_history:
 
2705
            check_not_reserved_id(rev_id)
 
2706
        if Branch.hooks['post_change_branch_tip']:
 
2707
            # Don't calculate the last_revision_info() if there are no hooks
 
2708
            # that will use it.
 
2709
            old_revno, old_revid = self.last_revision_info()
 
2710
        if len(rev_history) == 0:
 
2711
            revid = _mod_revision.NULL_REVISION
 
2712
        else:
 
2713
            revid = rev_history[-1]
 
2714
        self._run_pre_change_branch_tip_hooks(len(rev_history), revid)
 
2715
        self._write_revision_history(rev_history)
 
2716
        self._clear_cached_state()
 
2717
        self._cache_revision_history(rev_history)
 
2718
        for hook in Branch.hooks['set_rh']:
 
2719
            hook(self, rev_history)
 
2720
        if Branch.hooks['post_change_branch_tip']:
 
2721
            self._run_post_change_branch_tip_hooks(old_revno, old_revid)
 
2722
 
 
2723
    def _write_revision_history(self, history):
 
2724
        """Factored out of set_revision_history.
 
2725
 
 
2726
        This performs the actual writing to disk.
 
2727
        It is intended to be called by set_revision_history."""
 
2728
        self._transport.put_bytes(
 
2729
            'revision-history', '\n'.join(history),
 
2730
            mode=self.bzrdir._get_file_mode())
 
2731
 
 
2732
    def _gen_revision_history(self):
 
2733
        history = self._transport.get_bytes('revision-history').split('\n')
 
2734
        if history[-1:] == ['']:
 
2735
            # There shouldn't be a trailing newline, but just in case.
 
2736
            history.pop()
 
2737
        return history
 
2738
 
 
2739
    def _synchronize_history(self, destination, revision_id):
 
2740
        if not isinstance(destination, FullHistoryBzrBranch):
 
2741
            super(BzrBranch, self)._synchronize_history(
 
2742
                destination, revision_id)
 
2743
            return
 
2744
        if revision_id == _mod_revision.NULL_REVISION:
 
2745
            new_history = []
 
2746
        else:
 
2747
            new_history = self.revision_history()
 
2748
        if revision_id is not None and new_history != []:
 
2749
            try:
 
2750
                new_history = new_history[:new_history.index(revision_id) + 1]
 
2751
            except ValueError:
 
2752
                rev = self.repository.get_revision(revision_id)
 
2753
                new_history = rev.get_history(self.repository)[1:]
 
2754
        destination._set_revision_history(new_history)
 
2755
 
 
2756
    @needs_write_lock
 
2757
    def generate_revision_history(self, revision_id, last_rev=None,
 
2758
        other_branch=None):
 
2759
        """Create a new revision history that will finish with revision_id.
 
2760
 
 
2761
        :param revision_id: the new tip to use.
 
2762
        :param last_rev: The previous last_revision. If not None, then this
 
2763
            must be a ancestory of revision_id, or DivergedBranches is raised.
 
2764
        :param other_branch: The other branch that DivergedBranches should
 
2765
            raise with respect to.
 
2766
        """
 
2767
        self._set_revision_history(self._lefthand_history(revision_id,
 
2768
            last_rev, other_branch))
 
2769
 
 
2770
 
 
2771
class BzrBranch5(FullHistoryBzrBranch):
 
2772
    """A format 5 branch. This supports new features over plain branches.
 
2773
 
 
2774
    It has support for a master_branch which is the data for bound branches.
 
2775
    """
 
2776
 
 
2777
 
 
2778
class BzrBranch8(BzrBranch):
2766
2779
    """A branch that stores tree-reference locations."""
2767
2780
 
2768
2781
    def _open_hook(self):
2794
2807
        self._last_revision_info_cache = None
2795
2808
        self._reference_info = None
2796
2809
 
2797
 
    def _last_revision_info(self):
2798
 
        revision_string = self._transport.get_bytes('last-revision')
2799
 
        revno, revision_id = revision_string.rstrip('\n').split(' ', 1)
2800
 
        revision_id = cache_utf8.get_cached_utf8(revision_id)
2801
 
        revno = int(revno)
2802
 
        return revno, revision_id
2803
 
 
2804
 
    def _write_last_revision_info(self, revno, revision_id):
2805
 
        """Simply write out the revision id, with no checks.
2806
 
 
2807
 
        Use set_last_revision_info to perform this safely.
2808
 
 
2809
 
        Does not update the revision_history cache.
2810
 
        Intended to be called by set_last_revision_info and
2811
 
        _write_revision_history.
2812
 
        """
2813
 
        revision_id = _mod_revision.ensure_null(revision_id)
2814
 
        out_string = '%d %s\n' % (revno, revision_id)
2815
 
        self._transport.put_bytes('last-revision', out_string,
2816
 
            mode=self.bzrdir._get_file_mode())
2817
 
 
2818
 
    @needs_write_lock
2819
 
    def set_last_revision_info(self, revno, revision_id):
2820
 
        revision_id = _mod_revision.ensure_null(revision_id)
2821
 
        old_revno, old_revid = self.last_revision_info()
2822
 
        if self._get_append_revisions_only():
2823
 
            self._check_history_violation(revision_id)
2824
 
        self._run_pre_change_branch_tip_hooks(revno, revision_id)
2825
 
        self._write_last_revision_info(revno, revision_id)
2826
 
        self._clear_cached_state()
2827
 
        self._last_revision_info_cache = revno, revision_id
2828
 
        self._run_post_change_branch_tip_hooks(old_revno, old_revid)
2829
 
 
2830
 
    def _synchronize_history(self, destination, revision_id):
2831
 
        """Synchronize last revision and revision history between branches.
2832
 
 
2833
 
        :see: Branch._synchronize_history
2834
 
        """
2835
 
        # XXX: The base Branch has a fast implementation of this method based
2836
 
        # on set_last_revision_info, but BzrBranch/BzrBranch5 have a slower one
2837
 
        # that uses set_revision_history.  This class inherits from BzrBranch5,
2838
 
        # but wants the fast implementation, so it calls
2839
 
        # Branch._synchronize_history directly.
2840
 
        Branch._synchronize_history(self, destination, revision_id)
2841
 
 
2842
2810
    def _check_history_violation(self, revision_id):
2843
2811
        last_revision = _mod_revision.ensure_null(self.last_revision())
2844
2812
        if _mod_revision.is_null(last_revision):
2853
2821
        self._extend_partial_history(stop_index=last_revno-1)
2854
2822
        return list(reversed(self._partial_revision_history_cache))
2855
2823
 
2856
 
    def _write_revision_history(self, history):
2857
 
        """Factored out of set_revision_history.
2858
 
 
2859
 
        This performs the actual writing to disk, with format-specific checks.
2860
 
        It is intended to be called by BzrBranch5.set_revision_history.
2861
 
        """
2862
 
        if len(history) == 0:
2863
 
            last_revision = 'null:'
2864
 
        else:
2865
 
            if history != self._lefthand_history(history[-1]):
2866
 
                raise errors.NotLefthandHistory(history)
2867
 
            last_revision = history[-1]
2868
 
        if self._get_append_revisions_only():
2869
 
            self._check_history_violation(last_revision)
2870
 
        self._write_last_revision_info(len(history), last_revision)
2871
 
 
2872
2824
    @needs_write_lock
2873
2825
    def _set_parent_location(self, url):
2874
2826
        """Set the parent branch"""
2960
2912
 
2961
2913
    def set_bound_location(self, location):
2962
2914
        """See Branch.set_push_location."""
 
2915
        self._master_branch_cache = None
2963
2916
        result = None
2964
2917
        config = self.get_config()
2965
2918
        if location is None:
3005
2958
        return self.get_config(
3006
2959
            ).get_user_option_as_bool('append_revisions_only')
3007
2960
 
3008
 
    @needs_write_lock
3009
 
    def generate_revision_history(self, revision_id, last_rev=None,
3010
 
                                  other_branch=None):
3011
 
        """See BzrBranch5.generate_revision_history"""
3012
 
        history = self._lefthand_history(revision_id, last_rev, other_branch)
3013
 
        revno = len(history)
3014
 
        self.set_last_revision_info(revno, revision_id)
3015
 
 
3016
2961
    @needs_read_lock
3017
2962
    def get_rev_id(self, revno, history=None):
3018
2963
        """Find the revision id of the specified revno."""
3042
2987
        try:
3043
2988
            index = self._partial_revision_history_cache.index(revision_id)
3044
2989
        except ValueError:
3045
 
            self._extend_partial_history(stop_revision=revision_id)
 
2990
            try:
 
2991
                self._extend_partial_history(stop_revision=revision_id)
 
2992
            except errors.RevisionNotPresent, e:
 
2993
                raise errors.GhostRevisionsHaveNoRevno(revision_id, e.revision_id)
3046
2994
            index = len(self._partial_revision_history_cache) - 1
3047
2995
            if self._partial_revision_history_cache[index] != revision_id:
3048
2996
                raise errors.NoSuchRevision(self, revision_id)
3103
3051
    :ivar tag_conflicts: A list of tag conflicts, see BasicTags.merge_to
3104
3052
    """
3105
3053
 
 
3054
    @deprecated_method(deprecated_in((2, 3, 0)))
3106
3055
    def __int__(self):
3107
 
        # DEPRECATED: pull used to return the change in revno
 
3056
        """Return the relative change in revno.
 
3057
 
 
3058
        :deprecated: Use `new_revno` and `old_revno` instead.
 
3059
        """
3108
3060
        return self.new_revno - self.old_revno
3109
3061
 
3110
3062
    def report(self, to_file):
3135
3087
        target, otherwise it will be None.
3136
3088
    """
3137
3089
 
 
3090
    @deprecated_method(deprecated_in((2, 3, 0)))
3138
3091
    def __int__(self):
3139
 
        # DEPRECATED: push used to return the change in revno
 
3092
        """Return the relative change in revno.
 
3093
 
 
3094
        :deprecated: Use `new_revno` and `old_revno` instead.
 
3095
        """
3140
3096
        return self.new_revno - self.old_revno
3141
3097
 
3142
3098
    def report(self, to_file):
3287
3243
        raise NotImplementedError(self.pull)
3288
3244
 
3289
3245
    @needs_write_lock
3290
 
    def update_revisions(self, stop_revision=None, overwrite=False,
3291
 
                         graph=None):
3292
 
        """Pull in new perfect-fit revisions.
3293
 
 
3294
 
        :param stop_revision: Updated until the given revision
3295
 
        :param overwrite: Always set the branch pointer, rather than checking
3296
 
            to see if it is a proper descendant.
3297
 
        :param graph: A Graph object that can be used to query history
3298
 
            information. This can be None.
3299
 
        :return: None
3300
 
        """
3301
 
        raise NotImplementedError(self.update_revisions)
3302
 
 
3303
 
    @needs_write_lock
3304
3246
    def push(self, overwrite=False, stop_revision=None,
3305
3247
             _override_hook_source_branch=None):
3306
3248
        """Mirror the source branch into the target branch.
3318
3260
        """
3319
3261
        raise NotImplementedError(self.copy_content_into)
3320
3262
 
 
3263
    @needs_write_lock
 
3264
    def fetch(self, stop_revision=None):
 
3265
        """Fetch revisions.
 
3266
 
 
3267
        :param stop_revision: Last revision to fetch
 
3268
        """
 
3269
        raise NotImplementedError(self.fetch)
 
3270
 
3321
3271
 
3322
3272
class GenericInterBranch(InterBranch):
3323
3273
    """InterBranch implementation that uses public Branch functions."""
3329
3279
 
3330
3280
    @classmethod
3331
3281
    def _get_branch_formats_to_test(klass):
3332
 
        return [(BranchFormat._default_format, BranchFormat._default_format)]
 
3282
        return [(format_registry.get_default(), format_registry.get_default())]
3333
3283
 
3334
3284
    @classmethod
3335
3285
    def unwrap_format(klass, format):
3336
3286
        if isinstance(format, remote.RemoteBranchFormat):
3337
3287
            format._ensure_real()
3338
3288
            return format._custom_format
3339
 
        return format                                                                                                  
 
3289
        return format
3340
3290
 
3341
3291
    @needs_write_lock
3342
3292
    def copy_content_into(self, revision_id=None):
3358
3308
            self.source.tags.merge_to(self.target.tags)
3359
3309
 
3360
3310
    @needs_write_lock
3361
 
    def update_revisions(self, stop_revision=None, overwrite=False,
3362
 
        graph=None):
3363
 
        """See InterBranch.update_revisions()."""
 
3311
    def fetch(self, stop_revision=None):
 
3312
        if self.target.base == self.source.base:
 
3313
            return (0, [])
 
3314
        self.source.lock_read()
 
3315
        try:
 
3316
            fetch_spec_factory = fetch.FetchSpecFactory()
 
3317
            fetch_spec_factory.source_branch = self.source
 
3318
            fetch_spec_factory.source_branch_stop_revision_id = stop_revision
 
3319
            fetch_spec_factory.source_repo = self.source.repository
 
3320
            fetch_spec_factory.target_repo = self.target.repository
 
3321
            fetch_spec_factory.target_repo_kind = fetch.TargetRepoKinds.PREEXISTING
 
3322
            fetch_spec = fetch_spec_factory.make_fetch_spec()
 
3323
            return self.target.repository.fetch(self.source.repository,
 
3324
                fetch_spec=fetch_spec)
 
3325
        finally:
 
3326
            self.source.unlock()
 
3327
 
 
3328
    @needs_write_lock
 
3329
    def _update_revisions(self, stop_revision=None, overwrite=False,
 
3330
            graph=None):
3364
3331
        other_revno, other_last_revision = self.source.last_revision_info()
3365
3332
        stop_revno = None # unknown
3366
3333
        if stop_revision is None:
3377
3344
        # case of having something to pull, and so that the check for
3378
3345
        # already merged can operate on the just fetched graph, which will
3379
3346
        # be cached in memory.
3380
 
        self.target.fetch(self.source, stop_revision)
 
3347
        self.fetch(stop_revision=stop_revision)
3381
3348
        # Check to see if one is an ancestor of the other
3382
3349
        if not overwrite:
3383
3350
            if graph is None:
3411
3378
        if local and not bound_location:
3412
3379
            raise errors.LocalRequiresBoundBranch()
3413
3380
        master_branch = None
3414
 
        if not local and bound_location and self.source.user_url != bound_location:
 
3381
        source_is_master = (self.source.user_url == bound_location)
 
3382
        if not local and bound_location and not source_is_master:
3415
3383
            # not pulling from master, so we need to update master.
3416
3384
            master_branch = self.target.get_master_branch(possible_transports)
3417
3385
            master_branch.lock_write()
3423
3391
            return self._pull(overwrite,
3424
3392
                stop_revision, _hook_master=master_branch,
3425
3393
                run_hooks=run_hooks,
3426
 
                _override_hook_target=_override_hook_target)
 
3394
                _override_hook_target=_override_hook_target,
 
3395
                merge_tags_to_master=not source_is_master)
3427
3396
        finally:
3428
3397
            if master_branch:
3429
3398
                master_branch.unlock()
3450
3419
        finally:
3451
3420
            self.source.unlock()
3452
3421
 
 
3422
    def _basic_push(self, overwrite, stop_revision):
 
3423
        """Basic implementation of push without bound branches or hooks.
 
3424
 
 
3425
        Must be called with source read locked and target write locked.
 
3426
        """
 
3427
        result = BranchPushResult()
 
3428
        result.source_branch = self.source
 
3429
        result.target_branch = self.target
 
3430
        result.old_revno, result.old_revid = self.target.last_revision_info()
 
3431
        self.source.update_references(self.target)
 
3432
        if result.old_revid != stop_revision:
 
3433
            # We assume that during 'push' this repository is closer than
 
3434
            # the target.
 
3435
            graph = self.source.repository.get_graph(self.target.repository)
 
3436
            self._update_revisions(stop_revision, overwrite=overwrite,
 
3437
                    graph=graph)
 
3438
        if self.source._push_should_merge_tags():
 
3439
            result.tag_conflicts = self.source.tags.merge_to(self.target.tags,
 
3440
                overwrite)
 
3441
        result.new_revno, result.new_revid = self.target.last_revision_info()
 
3442
        return result
 
3443
 
3453
3444
    def _push_with_bound_branches(self, overwrite, stop_revision,
3454
3445
            _override_hook_source_branch=None):
3455
3446
        """Push from source into target, and into target's master if any.
3470
3461
            master_branch.lock_write()
3471
3462
            try:
3472
3463
                # push into the master from the source branch.
3473
 
                self.source._basic_push(master_branch, overwrite, stop_revision)
3474
 
                # and push into the target branch from the source. Note that we
3475
 
                # push from the source branch again, because its considered the
3476
 
                # highest bandwidth repository.
3477
 
                result = self.source._basic_push(self.target, overwrite,
3478
 
                    stop_revision)
 
3464
                master_inter = InterBranch.get(self.source, master_branch)
 
3465
                master_inter._basic_push(overwrite, stop_revision)
 
3466
                # and push into the target branch from the source. Note that
 
3467
                # we push from the source branch again, because it's considered
 
3468
                # the highest bandwidth repository.
 
3469
                result = self._basic_push(overwrite, stop_revision)
3479
3470
                result.master_branch = master_branch
3480
3471
                result.local_branch = self.target
3481
3472
                _run_hooks()
3484
3475
                master_branch.unlock()
3485
3476
        else:
3486
3477
            # no master branch
3487
 
            result = self.source._basic_push(self.target, overwrite,
3488
 
                stop_revision)
 
3478
            result = self._basic_push(overwrite, stop_revision)
3489
3479
            # TODO: Why set master_branch and local_branch if there's no
3490
3480
            # binding?  Maybe cleaner to just leave them unset? -- mbp
3491
3481
            # 20070504
3496
3486
 
3497
3487
    def _pull(self, overwrite=False, stop_revision=None,
3498
3488
             possible_transports=None, _hook_master=None, run_hooks=True,
3499
 
             _override_hook_target=None, local=False):
 
3489
             _override_hook_target=None, local=False,
 
3490
             merge_tags_to_master=True):
3500
3491
        """See Branch.pull.
3501
3492
 
3502
3493
        This function is the core worker, used by GenericInterBranch.pull to
3507
3498
        :param run_hooks: Private parameter - if false, this branch
3508
3499
            is being called because it's the master of the primary branch,
3509
3500
            so it should not run its hooks.
 
3501
            is being called because it's the master of the primary branch,
 
3502
            so it should not run its hooks.
3510
3503
        :param _override_hook_target: Private parameter - set the branch to be
3511
3504
            supplied as the target_branch to pull hooks.
3512
3505
        :param local: Only update the local branch, and not the bound branch.
3531
3524
            # -- JRV20090506
3532
3525
            result.old_revno, result.old_revid = \
3533
3526
                self.target.last_revision_info()
3534
 
            self.target.update_revisions(self.source, stop_revision,
3535
 
                overwrite=overwrite, graph=graph)
 
3527
            self._update_revisions(stop_revision, overwrite=overwrite,
 
3528
                graph=graph)
3536
3529
            # TODO: The old revid should be specified when merging tags, 
3537
3530
            # so a tags implementation that versions tags can only 
3538
3531
            # pull in the most recent changes. -- JRV20090506
3539
3532
            result.tag_conflicts = self.source.tags.merge_to(self.target.tags,
3540
 
                overwrite)
 
3533
                overwrite, ignore_master=not merge_tags_to_master)
3541
3534
            result.new_revno, result.new_revid = self.target.last_revision_info()
3542
3535
            if _hook_master:
3543
3536
                result.master_branch = _hook_master