~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Alexander Belchenko
  • Date: 2012-02-29 12:35:23 UTC
  • mto: (6437.23.21 2.5)
  • mto: This revision was merged to the branch mainline in revision 6493.
  • Revision ID: bialix@ukr.net-20120229123523-giercg9s8ck7ufg1
Standalone bzr.exe includes QtTest library from PyQt4 framework that required for QBzr tests. (Alexander Belchenko, #928963)

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
 
17
from __future__ import absolute_import
 
18
 
 
19
import bzrlib.bzrdir
17
20
 
18
21
from cStringIO import StringIO
19
 
import sys
20
22
 
21
23
from bzrlib.lazy_import import lazy_import
22
24
lazy_import(globals(), """
23
 
from itertools import chain
 
25
import itertools
24
26
from bzrlib import (
25
 
        bzrdir,
26
 
        cache_utf8,
27
 
        cleanup,
28
 
        config as _mod_config,
29
 
        debug,
30
 
        errors,
31
 
        fetch,
32
 
        graph as _mod_graph,
33
 
        lockdir,
34
 
        lockable_files,
35
 
        remote,
36
 
        repository,
37
 
        revision as _mod_revision,
38
 
        rio,
39
 
        transport,
40
 
        ui,
41
 
        urlutils,
42
 
        )
43
 
from bzrlib.config import BranchConfig, TransportConfig
44
 
from bzrlib.tag import (
45
 
    BasicTags,
46
 
    DisabledTags,
 
27
    bzrdir,
 
28
    controldir,
 
29
    cache_utf8,
 
30
    cleanup,
 
31
    config as _mod_config,
 
32
    debug,
 
33
    errors,
 
34
    fetch,
 
35
    graph as _mod_graph,
 
36
    lockdir,
 
37
    lockable_files,
 
38
    remote,
 
39
    repository,
 
40
    revision as _mod_revision,
 
41
    rio,
 
42
    tag as _mod_tag,
 
43
    transport,
 
44
    ui,
 
45
    urlutils,
 
46
    vf_search,
47
47
    )
 
48
from bzrlib.i18n import gettext, ngettext
48
49
""")
49
50
 
 
51
# Explicitly import bzrlib.bzrdir so that the BzrProber
 
52
# is guaranteed to be registered.
 
53
import bzrlib.bzrdir
 
54
 
50
55
from bzrlib import (
 
56
    bzrdir,
51
57
    controldir,
52
58
    )
53
59
from bzrlib.decorators import (
88
94
    def user_transport(self):
89
95
        return self.bzrdir.user_transport
90
96
 
91
 
    def __init__(self, *ignored, **ignored_too):
 
97
    def __init__(self, possible_transports=None):
92
98
        self.tags = self._format.make_tags(self)
93
99
        self._revision_history_cache = None
94
100
        self._revision_id_to_revno_cache = None
98
104
        self._last_revision_info_cache = None
99
105
        self._master_branch_cache = None
100
106
        self._merge_sorted_revisions_cache = None
101
 
        self._open_hook()
 
107
        self._open_hook(possible_transports)
102
108
        hooks = Branch.hooks['open']
103
109
        for hook in hooks:
104
110
            hook(self)
105
111
 
106
 
    def _open_hook(self):
 
112
    def _open_hook(self, possible_transports):
107
113
        """Called by init to allow simpler extension of the base class."""
108
114
 
109
 
    def _activate_fallback_location(self, url):
 
115
    def _activate_fallback_location(self, url, possible_transports):
110
116
        """Activate the branch/repository from url as a fallback repository."""
111
117
        for existing_fallback_repo in self.repository._fallback_repositories:
112
118
            if existing_fallback_repo.user_url == url:
113
119
                # This fallback is already configured.  This probably only
114
 
                # happens because BzrDir.sprout is a horrible mess.  To avoid
 
120
                # happens because ControlDir.sprout is a horrible mess.  To avoid
115
121
                # confusing _unstack we don't add this a second time.
116
122
                mutter('duplicate activation of fallback %r on %r', url, self)
117
123
                return
118
 
        repo = self._get_fallback_repository(url)
 
124
        repo = self._get_fallback_repository(url, possible_transports)
119
125
        if repo.has_same_location(self.repository):
120
126
            raise errors.UnstackableLocationError(self.user_url, url)
121
127
        self.repository.add_fallback_repository(repo)
175
181
        For instance, if the branch is at URL/.bzr/branch,
176
182
        Branch.open(URL) -> a Branch instance.
177
183
        """
178
 
        control = bzrdir.BzrDir.open(base, _unsupported,
179
 
                                     possible_transports=possible_transports)
180
 
        return control.open_branch(unsupported=_unsupported)
 
184
        control = controldir.ControlDir.open(base,
 
185
            possible_transports=possible_transports, _unsupported=_unsupported)
 
186
        return control.open_branch(unsupported=_unsupported,
 
187
            possible_transports=possible_transports)
181
188
 
182
189
    @staticmethod
183
 
    def open_from_transport(transport, name=None, _unsupported=False):
 
190
    def open_from_transport(transport, name=None, _unsupported=False,
 
191
            possible_transports=None):
184
192
        """Open the branch rooted at transport"""
185
 
        control = bzrdir.BzrDir.open_from_transport(transport, _unsupported)
186
 
        return control.open_branch(name=name, unsupported=_unsupported)
 
193
        control = controldir.ControlDir.open_from_transport(transport, _unsupported)
 
194
        return control.open_branch(name=name, unsupported=_unsupported,
 
195
            possible_transports=possible_transports)
187
196
 
188
197
    @staticmethod
189
198
    def open_containing(url, possible_transports=None):
197
206
        format, UnknownFormatError or UnsupportedFormatError are raised.
198
207
        If there is one, it is returned, along with the unused portion of url.
199
208
        """
200
 
        control, relpath = bzrdir.BzrDir.open_containing(url,
 
209
        control, relpath = controldir.ControlDir.open_containing(url,
201
210
                                                         possible_transports)
202
 
        return control.open_branch(), relpath
 
211
        branch = control.open_branch(possible_transports=possible_transports)
 
212
        return (branch, relpath)
203
213
 
204
214
    def _push_should_merge_tags(self):
205
215
        """Should _basic_push merge this branch's tags into the target?
217
227
 
218
228
        :return: A bzrlib.config.BranchConfig.
219
229
        """
220
 
        return BranchConfig(self)
 
230
        return _mod_config.BranchConfig(self)
 
231
 
 
232
    def get_config_stack(self):
 
233
        """Get a bzrlib.config.BranchStack for this Branch.
 
234
 
 
235
        This can then be used to get and set configuration options for the
 
236
        branch.
 
237
 
 
238
        :return: A bzrlib.config.BranchStack.
 
239
        """
 
240
        return _mod_config.BranchStack(self)
221
241
 
222
242
    def _get_config(self):
223
243
        """Get the concrete config for just the config in this branch.
231
251
        """
232
252
        raise NotImplementedError(self._get_config)
233
253
 
234
 
    def _get_fallback_repository(self, url):
 
254
    def _get_fallback_repository(self, url, possible_transports):
235
255
        """Get the repository we fallback to at url."""
236
256
        url = urlutils.join(self.base, url)
237
 
        a_branch = Branch.open(url,
238
 
            possible_transports=[self.bzrdir.root_transport])
 
257
        a_branch = Branch.open(url, possible_transports=possible_transports)
239
258
        return a_branch.repository
240
259
 
241
260
    @needs_read_lock
515
534
                    # The decision to include the start or not
516
535
                    # depends on the stop_rule if a stop is provided
517
536
                    # so pop this node back into the iterator
518
 
                    rev_iter = chain(iter([node]), rev_iter)
 
537
                    rev_iter = itertools.chain(iter([node]), rev_iter)
519
538
                    break
520
539
        if stop_revision_id is None:
521
540
            # Yield everything
646
665
        """
647
666
        raise errors.UpgradeRequired(self.user_url)
648
667
 
 
668
    def get_append_revisions_only(self):
 
669
        """Whether it is only possible to append revisions to the history.
 
670
        """
 
671
        if not self._format.supports_set_append_revisions_only():
 
672
            return False
 
673
        return self.get_config_stack().get('append_revisions_only')
 
674
 
649
675
    def set_append_revisions_only(self, enabled):
650
676
        if not self._format.supports_set_append_revisions_only():
651
677
            raise errors.UpgradeRequired(self.user_url)
652
 
        if enabled:
653
 
            value = 'True'
654
 
        else:
655
 
            value = 'False'
656
 
        self.get_config().set_user_option('append_revisions_only', value,
657
 
            warn_masked=True)
 
678
        self.get_config_stack().set('append_revisions_only', enabled)
658
679
 
659
680
    def set_reference_info(self, file_id, tree_path, branch_location):
660
681
        """Set the branch location to use for a tree reference."""
689
710
        """
690
711
        raise errors.UpgradeRequired(self.user_url)
691
712
 
692
 
    def get_commit_builder(self, parents, config=None, timestamp=None,
 
713
    def get_commit_builder(self, parents, config_stack=None, timestamp=None,
693
714
                           timezone=None, committer=None, revprops=None,
694
715
                           revision_id=None, lossy=False):
695
716
        """Obtain a CommitBuilder for this branch.
705
726
            represented, when pushing to a foreign VCS 
706
727
        """
707
728
 
708
 
        if config is None:
709
 
            config = self.get_config()
 
729
        if config_stack is None:
 
730
            config_stack = self.get_config_stack()
710
731
 
711
 
        return self.repository.get_commit_builder(self, parents, config,
 
732
        return self.repository.get_commit_builder(self, parents, config_stack,
712
733
            timestamp, timezone, committer, revprops, revision_id,
713
734
            lossy)
714
735
 
719
740
        """
720
741
        return None
721
742
 
 
743
    @deprecated_method(deprecated_in((2, 5, 0)))
722
744
    def get_revision_delta(self, revno):
723
745
        """Return the delta for one revision.
724
746
 
725
747
        The delta is relative to its mainline predecessor, or the
726
748
        empty tree for revision 1.
727
749
        """
728
 
        rh = self.revision_history()
729
 
        if not (1 <= revno <= len(rh)):
 
750
        try:
 
751
            revid = self.get_rev_id(revno)
 
752
        except errors.NoSuchRevision:
730
753
            raise errors.InvalidRevisionNumber(revno)
731
 
        return self.repository.get_revision_delta(rh[revno-1])
 
754
        return self.repository.get_revision_delta(revid)
732
755
 
733
756
    def get_stacked_on_url(self):
734
757
        """Get the URL this branch is stacked against.
833
856
                return
834
857
            self._unstack()
835
858
        else:
836
 
            self._activate_fallback_location(url)
 
859
            self._activate_fallback_location(url,
 
860
                possible_transports=[self.bzrdir.root_transport])
837
861
        # write this out after the repository is stacked to avoid setting a
838
862
        # stacked config that doesn't work.
839
863
        self._set_config_location('stacked_on_location', url)
845
869
        """
846
870
        pb = ui.ui_factory.nested_progress_bar()
847
871
        try:
848
 
            pb.update("Unstacking")
 
872
            pb.update(gettext("Unstacking"))
849
873
            # The basic approach here is to fetch the tip of the branch,
850
874
            # including all available ghosts, from the existing stacked
851
875
            # repository into a new repository object without the fallbacks. 
865
889
            # stream from one of them to the other.  This does mean doing
866
890
            # separate SSH connection setup, but unstacking is not a
867
891
            # common operation so it's tolerable.
868
 
            new_bzrdir = bzrdir.BzrDir.open(self.bzrdir.root_transport.base)
 
892
            new_bzrdir = controldir.ControlDir.open(
 
893
                self.bzrdir.root_transport.base)
869
894
            new_repository = new_bzrdir.find_repository()
870
895
            if new_repository._fallback_repositories:
871
896
                raise AssertionError("didn't expect %r to have "
914
939
                    tags_to_fetch = set(self.tags.get_reverse_tag_dict())
915
940
                except errors.TagsNotSupported:
916
941
                    tags_to_fetch = set()
917
 
                fetch_spec = _mod_graph.NotInOtherForRevs(self.repository,
 
942
                fetch_spec = vf_search.NotInOtherForRevs(self.repository,
918
943
                    old_repository, required_ids=[self.last_revision()],
919
944
                    if_present_ids=tags_to_fetch, find_ghosts=True).execute()
920
945
                self.repository.fetch(old_repository, fetch_spec=fetch_spec)
988
1013
        """
989
1014
        raise NotImplementedError(self._gen_revision_history)
990
1015
 
 
1016
    @deprecated_method(deprecated_in((2, 5, 0)))
991
1017
    @needs_read_lock
992
1018
    def revision_history(self):
993
1019
        """Return sequence of revision ids on this branch.
995
1021
        This method will cache the revision history for as long as it is safe to
996
1022
        do so.
997
1023
        """
 
1024
        return self._revision_history()
 
1025
 
 
1026
    def _revision_history(self):
998
1027
        if 'evil' in debug.debug_flags:
999
1028
            mutter_callsite(3, "revision_history scales with history.")
1000
1029
        if self._revision_history_cache is not None:
1070
1099
        """Given a revision id, return its revno"""
1071
1100
        if _mod_revision.is_null(revision_id):
1072
1101
            return 0
1073
 
        history = self.revision_history()
 
1102
        history = self._revision_history()
1074
1103
        try:
1075
1104
            return history.index(revision_id) + 1
1076
1105
        except ValueError:
1141
1170
    def _set_config_location(self, name, url, config=None,
1142
1171
                             make_relative=False):
1143
1172
        if config is None:
1144
 
            config = self.get_config()
 
1173
            config = self.get_config_stack()
1145
1174
        if url is None:
1146
1175
            url = ''
1147
1176
        elif make_relative:
1148
1177
            url = urlutils.relative_url(self.base, url)
1149
 
        config.set_user_option(name, url, warn_masked=True)
 
1178
        config.set(name, url)
1150
1179
 
1151
1180
    def _get_config_location(self, name, config=None):
1152
1181
        if config is None:
1153
 
            config = self.get_config()
1154
 
        location = config.get_user_option(name)
 
1182
            config = self.get_config_stack()
 
1183
        location = config.get(name)
1155
1184
        if location == '':
1156
1185
            location = None
1157
1186
        return location
1158
1187
 
1159
1188
    def get_child_submit_format(self):
1160
1189
        """Return the preferred format of submissions to this branch."""
1161
 
        return self.get_config().get_user_option("child_submit_format")
 
1190
        return self.get_config_stack().get('child_submit_format')
1162
1191
 
1163
1192
    def get_submit_branch(self):
1164
1193
        """Return the submit location of the branch.
1167
1196
        pattern is that the user can override it by specifying a
1168
1197
        location.
1169
1198
        """
1170
 
        return self.get_config().get_user_option('submit_branch')
 
1199
        return self.get_config_stack().get('submit_branch')
1171
1200
 
1172
1201
    def set_submit_branch(self, location):
1173
1202
        """Return the submit location of the branch.
1176
1205
        pattern is that the user can override it by specifying a
1177
1206
        location.
1178
1207
        """
1179
 
        self.get_config().set_user_option('submit_branch', location,
1180
 
            warn_masked=True)
 
1208
        self.get_config_stack().set('submit_branch', location)
1181
1209
 
1182
1210
    def get_public_branch(self):
1183
1211
        """Return the public location of the branch.
1196
1224
        self._set_config_location('public_branch', location)
1197
1225
 
1198
1226
    def get_push_location(self):
1199
 
        """Return the None or the location to push this branch to."""
1200
 
        push_loc = self.get_config().get_user_option('push_location')
1201
 
        return push_loc
 
1227
        """Return None or the location to push this branch to."""
 
1228
        return self.get_config_stack().get('push_location')
1202
1229
 
1203
1230
    def set_push_location(self, location):
1204
1231
        """Set a new push location for this branch."""
1373
1400
        # TODO: We should probably also check that self.revision_history
1374
1401
        # matches the repository for older branch formats.
1375
1402
        # If looking for the code that cross-checks repository parents against
1376
 
        # the iter_reverse_revision_history output, that is now a repository
 
1403
        # the Graph.iter_lefthand_ancestry output, that is now a repository
1377
1404
        # specific check.
1378
1405
        return result
1379
1406
 
1380
 
    def _get_checkout_format(self):
 
1407
    def _get_checkout_format(self, lightweight=False):
1381
1408
        """Return the most suitable metadir for a checkout of this branch.
1382
1409
        Weaves are used if this branch's repository uses weaves.
1383
1410
        """
1429
1456
        """
1430
1457
        t = transport.get_transport(to_location)
1431
1458
        t.ensure_base()
 
1459
        format = self._get_checkout_format(lightweight=lightweight)
 
1460
        try:
 
1461
            checkout = format.initialize_on_transport(t)
 
1462
        except errors.AlreadyControlDirError:
 
1463
            # It's fine if the control directory already exists,
 
1464
            # as long as there is no existing branch and working tree.
 
1465
            checkout = controldir.ControlDir.open_from_transport(t)
 
1466
            try:
 
1467
                checkout.open_branch()
 
1468
            except errors.NotBranchError:
 
1469
                pass
 
1470
            else:
 
1471
                raise errors.AlreadyControlDirError(t.base)
 
1472
            if checkout.control_transport.base == self.bzrdir.control_transport.base:
 
1473
                # When checking out to the same control directory,
 
1474
                # always create a lightweight checkout
 
1475
                lightweight = True
 
1476
 
1432
1477
        if lightweight:
1433
 
            format = self._get_checkout_format()
1434
 
            checkout = format.initialize_on_transport(t)
1435
 
            from_branch = BranchReferenceFormat().initialize(checkout, 
1436
 
                target_branch=self)
 
1478
            from_branch = checkout.set_branch_reference(target_branch=self)
1437
1479
        else:
1438
 
            format = self._get_checkout_format()
1439
 
            checkout_branch = bzrdir.BzrDir.create_branch_convenience(
1440
 
                to_location, force_new_tree=False, format=format)
1441
 
            checkout = checkout_branch.bzrdir
 
1480
            policy = checkout.determine_repository_policy()
 
1481
            repo = policy.acquire_repository()[0]
 
1482
            checkout_branch = checkout.create_branch()
1442
1483
            checkout_branch.bind(self)
1443
1484
            # pull up to the specified revision_id to set the initial
1444
1485
            # branch tip correctly, and seed it with history.
1445
1486
            checkout_branch.pull(self, stop_revision=revision_id)
1446
 
            from_branch=None
 
1487
            from_branch = None
1447
1488
        tree = checkout.create_workingtree(revision_id,
1448
1489
                                           from_branch=from_branch,
1449
1490
                                           accelerator_tree=accelerator_tree,
1538
1579
            heads that must be fetched if present, but no error is necessary if
1539
1580
            they are not present.
1540
1581
        """
1541
 
        # For bzr native formats must_fetch is just the tip, and if_present_fetch
1542
 
        # are the tags.
 
1582
        # For bzr native formats must_fetch is just the tip, and
 
1583
        # if_present_fetch are the tags.
1543
1584
        must_fetch = set([self.last_revision()])
1544
1585
        if_present_fetch = set()
1545
 
        c = self.get_config()
1546
 
        include_tags = c.get_user_option_as_bool('branch.fetch_tags',
1547
 
                                                 default=False)
1548
 
        if include_tags:
 
1586
        if self.get_config_stack().get('branch.fetch_tags'):
1549
1587
            try:
1550
1588
                if_present_fetch = set(self.tags.get_reverse_tag_dict())
1551
1589
            except errors.TagsNotSupported:
1560
1598
 
1561
1599
    Formats provide three things:
1562
1600
     * An initialization routine,
1563
 
     * a format string,
 
1601
     * a format description
1564
1602
     * an open routine.
1565
1603
 
1566
1604
    Formats are placed in an dict by their format string for reference
1573
1611
    object will be created every time regardless.
1574
1612
    """
1575
1613
 
1576
 
    can_set_append_revisions_only = True
1577
 
 
1578
1614
    def __eq__(self, other):
1579
1615
        return self.__class__ is other.__class__
1580
1616
 
1582
1618
        return not (self == other)
1583
1619
 
1584
1620
    @classmethod
1585
 
    def find_format(klass, a_bzrdir, name=None):
1586
 
        """Return the format for the branch object in a_bzrdir."""
1587
 
        try:
1588
 
            transport = a_bzrdir.get_branch_transport(None, name=name)
1589
 
            format_string = transport.get_bytes("format")
1590
 
            return format_registry.get(format_string)
1591
 
        except errors.NoSuchFile:
1592
 
            raise errors.NotBranchError(path=transport.base, bzrdir=a_bzrdir)
1593
 
        except KeyError:
1594
 
            raise errors.UnknownFormatError(format=format_string, kind='branch')
1595
 
 
1596
 
    @classmethod
1597
1621
    @deprecated_method(deprecated_in((2, 4, 0)))
1598
1622
    def get_default_format(klass):
1599
1623
        """Return the current default format."""
1609
1633
        """
1610
1634
        return format_registry._get_all()
1611
1635
 
1612
 
    def get_reference(self, a_bzrdir, name=None):
1613
 
        """Get the target reference of the branch in a_bzrdir.
 
1636
    def get_reference(self, controldir, name=None):
 
1637
        """Get the target reference of the branch in controldir.
1614
1638
 
1615
1639
        format probing must have been completed before calling
1616
1640
        this method - it is assumed that the format of the branch
1617
 
        in a_bzrdir is correct.
 
1641
        in controldir is correct.
1618
1642
 
1619
 
        :param a_bzrdir: The bzrdir to get the branch data from.
 
1643
        :param controldir: The controldir to get the branch data from.
1620
1644
        :param name: Name of the colocated branch to fetch
1621
1645
        :return: None if the branch is not a reference branch.
1622
1646
        """
1623
1647
        return None
1624
1648
 
1625
1649
    @classmethod
1626
 
    def set_reference(self, a_bzrdir, name, to_branch):
1627
 
        """Set the target reference of the branch in a_bzrdir.
 
1650
    def set_reference(self, controldir, name, to_branch):
 
1651
        """Set the target reference of the branch in controldir.
1628
1652
 
1629
1653
        format probing must have been completed before calling
1630
1654
        this method - it is assumed that the format of the branch
1631
 
        in a_bzrdir is correct.
 
1655
        in controldir is correct.
1632
1656
 
1633
 
        :param a_bzrdir: The bzrdir to set the branch reference for.
 
1657
        :param controldir: The controldir to set the branch reference for.
1634
1658
        :param name: Name of colocated branch to set, None for default
1635
1659
        :param to_branch: branch that the checkout is to reference
1636
1660
        """
1637
1661
        raise NotImplementedError(self.set_reference)
1638
1662
 
1639
 
    def get_format_string(self):
1640
 
        """Return the ASCII format string that identifies this format."""
1641
 
        raise NotImplementedError(self.get_format_string)
1642
 
 
1643
1663
    def get_format_description(self):
1644
1664
        """Return the short format description for this format."""
1645
1665
        raise NotImplementedError(self.get_format_description)
1646
1666
 
1647
 
    def _run_post_branch_init_hooks(self, a_bzrdir, name, branch):
 
1667
    def _run_post_branch_init_hooks(self, controldir, name, branch):
1648
1668
        hooks = Branch.hooks['post_branch_init']
1649
1669
        if not hooks:
1650
1670
            return
1651
 
        params = BranchInitHookParams(self, a_bzrdir, name, branch)
 
1671
        params = BranchInitHookParams(self, controldir, name, branch)
1652
1672
        for hook in hooks:
1653
1673
            hook(params)
1654
1674
 
1655
 
    def initialize(self, a_bzrdir, name=None, repository=None):
1656
 
        """Create a branch of this format in a_bzrdir.
1657
 
        
 
1675
    def initialize(self, controldir, name=None, repository=None,
 
1676
                   append_revisions_only=None):
 
1677
        """Create a branch of this format in controldir.
 
1678
 
1658
1679
        :param name: Name of the colocated branch to create.
1659
1680
        """
1660
1681
        raise NotImplementedError(self.initialize)
1680
1701
        Note that it is normal for branch to be a RemoteBranch when using tags
1681
1702
        on a RemoteBranch.
1682
1703
        """
1683
 
        return DisabledTags(branch)
 
1704
        return _mod_tag.DisabledTags(branch)
1684
1705
 
1685
1706
    def network_name(self):
1686
1707
        """A simple byte string uniquely identifying this format for RPC calls.
1692
1713
        """
1693
1714
        raise NotImplementedError(self.network_name)
1694
1715
 
1695
 
    def open(self, a_bzrdir, name=None, _found=False, ignore_fallbacks=False,
1696
 
            found_repository=None):
1697
 
        """Return the branch object for a_bzrdir
 
1716
    def open(self, controldir, name=None, _found=False, ignore_fallbacks=False,
 
1717
            found_repository=None, possible_transports=None):
 
1718
        """Return the branch object for controldir.
1698
1719
 
1699
 
        :param a_bzrdir: A BzrDir that contains a branch.
 
1720
        :param controldir: A ControlDir that contains a branch.
1700
1721
        :param name: Name of colocated branch to open
1701
1722
        :param _found: a private parameter, do not use it. It is used to
1702
1723
            indicate if format probing has already be done.
1744
1765
        """True if this format supports tags stored in the branch"""
1745
1766
        return False  # by default
1746
1767
 
 
1768
    def tags_are_versioned(self):
 
1769
        """Whether the tag container for this branch versions tags."""
 
1770
        return False
 
1771
 
 
1772
    def supports_tags_referencing_ghosts(self):
 
1773
        """True if tags can reference ghost revisions."""
 
1774
        return True
 
1775
 
1747
1776
 
1748
1777
class MetaDirBranchFormatFactory(registry._LazyObjectGetter):
1749
1778
    """A factory for a BranchFormat object, permitting simple lazy registration.
1763
1792
        """
1764
1793
        registry._LazyObjectGetter.__init__(self, module_name, member_name)
1765
1794
        self._format_string = format_string
1766
 
        
 
1795
 
1767
1796
    def get_format_string(self):
1768
1797
        """See BranchFormat.get_format_string."""
1769
1798
        return self._format_string
1914
1943
    There are 4 fields that hooks may wish to access:
1915
1944
 
1916
1945
    :ivar format: the branch format
1917
 
    :ivar bzrdir: the BzrDir where the branch will be/has been initialized
 
1946
    :ivar bzrdir: the ControlDir where the branch will be/has been initialized
1918
1947
    :ivar name: name of colocated branch, if any (or None)
1919
1948
    :ivar branch: the branch created
1920
1949
 
1923
1952
    branch, which refer to the original branch.
1924
1953
    """
1925
1954
 
1926
 
    def __init__(self, format, a_bzrdir, name, branch):
 
1955
    def __init__(self, format, controldir, name, branch):
1927
1956
        """Create a group of BranchInitHook parameters.
1928
1957
 
1929
1958
        :param format: the branch format
1930
 
        :param a_bzrdir: the BzrDir where the branch will be/has been
 
1959
        :param controldir: the ControlDir where the branch will be/has been
1931
1960
            initialized
1932
1961
        :param name: name of colocated branch, if any (or None)
1933
1962
        :param branch: the branch created
1937
1966
        in branch, which refer to the original branch.
1938
1967
        """
1939
1968
        self.format = format
1940
 
        self.bzrdir = a_bzrdir
 
1969
        self.bzrdir = controldir
1941
1970
        self.name = name
1942
1971
        self.branch = branch
1943
1972
 
1953
1982
 
1954
1983
    There are 4 fields that hooks may wish to access:
1955
1984
 
1956
 
    :ivar control_dir: BzrDir of the checkout to change
 
1985
    :ivar control_dir: ControlDir of the checkout to change
1957
1986
    :ivar to_branch: branch that the checkout is to reference
1958
1987
    :ivar force: skip the check for local commits in a heavy checkout
1959
1988
    :ivar revision_id: revision ID to switch to (or None)
1962
1991
    def __init__(self, control_dir, to_branch, force, revision_id):
1963
1992
        """Create a group of SwitchHook parameters.
1964
1993
 
1965
 
        :param control_dir: BzrDir of the checkout to change
 
1994
        :param control_dir: ControlDir of the checkout to change
1966
1995
        :param to_branch: branch that the checkout is to reference
1967
1996
        :param force: skip the check for local commits in a heavy checkout
1968
1997
        :param revision_id: revision ID to switch to (or None)
1981
2010
            self.revision_id)
1982
2011
 
1983
2012
 
1984
 
class BranchFormatMetadir(BranchFormat):
1985
 
    """Common logic for meta-dir based branch formats."""
 
2013
class BranchFormatMetadir(bzrdir.BzrFormat, BranchFormat):
 
2014
    """Base class for branch formats that live in meta directories.
 
2015
    """
 
2016
 
 
2017
    def __init__(self):
 
2018
        BranchFormat.__init__(self)
 
2019
        bzrdir.BzrFormat.__init__(self)
 
2020
 
 
2021
    @classmethod
 
2022
    def find_format(klass, controldir, name=None):
 
2023
        """Return the format for the branch object in controldir."""
 
2024
        try:
 
2025
            transport = controldir.get_branch_transport(None, name=name)
 
2026
        except errors.NoSuchFile:
 
2027
            raise errors.NotBranchError(path=name, bzrdir=controldir)
 
2028
        try:
 
2029
            format_string = transport.get_bytes("format")
 
2030
        except errors.NoSuchFile:
 
2031
            raise errors.NotBranchError(path=transport.base, bzrdir=controldir)
 
2032
        return klass._find_format(format_registry, 'branch', format_string)
1986
2033
 
1987
2034
    def _branch_class(self):
1988
2035
        """What class to instantiate on open calls."""
1989
2036
        raise NotImplementedError(self._branch_class)
1990
2037
 
 
2038
    def _get_initial_config(self, append_revisions_only=None):
 
2039
        if append_revisions_only:
 
2040
            return "append_revisions_only = True\n"
 
2041
        else:
 
2042
            # Avoid writing anything if append_revisions_only is disabled,
 
2043
            # as that is the default.
 
2044
            return ""
 
2045
 
1991
2046
    def _initialize_helper(self, a_bzrdir, utf8_files, name=None,
1992
2047
                           repository=None):
1993
2048
        """Initialize a branch in a bzrdir, with specified files
1998
2053
        :param name: Name of colocated branch to create, if any
1999
2054
        :return: a branch in this format
2000
2055
        """
 
2056
        if name is None:
 
2057
            name = a_bzrdir._get_selected_branch()
2001
2058
        mutter('creating branch %r in %s', self, a_bzrdir.user_url)
2002
2059
        branch_transport = a_bzrdir.get_branch_transport(self, name=name)
2003
2060
        control_files = lockable_files.LockableFiles(branch_transport,
2005
2062
        control_files.create_lock()
2006
2063
        control_files.lock_write()
2007
2064
        try:
2008
 
            utf8_files += [('format', self.get_format_string())]
 
2065
            utf8_files += [('format', self.as_string())]
2009
2066
            for (filename, content) in utf8_files:
2010
2067
                branch_transport.put_bytes(
2011
2068
                    filename, content,
2017
2074
        self._run_post_branch_init_hooks(a_bzrdir, name, branch)
2018
2075
        return branch
2019
2076
 
2020
 
    def network_name(self):
2021
 
        """A simple byte string uniquely identifying this format for RPC calls.
2022
 
 
2023
 
        Metadir branch formats use their format string.
2024
 
        """
2025
 
        return self.get_format_string()
2026
 
 
2027
2077
    def open(self, a_bzrdir, name=None, _found=False, ignore_fallbacks=False,
2028
 
            found_repository=None):
 
2078
            found_repository=None, possible_transports=None):
2029
2079
        """See BranchFormat.open()."""
 
2080
        if name is None:
 
2081
            name = a_bzrdir._get_selected_branch()
2030
2082
        if not _found:
2031
 
            format = BranchFormat.find_format(a_bzrdir, name=name)
 
2083
            format = BranchFormatMetadir.find_format(a_bzrdir, name=name)
2032
2084
            if format.__class__ != self.__class__:
2033
2085
                raise AssertionError("wrong format %r found for %r" %
2034
2086
                    (format, self))
2043
2095
                              name=name,
2044
2096
                              a_bzrdir=a_bzrdir,
2045
2097
                              _repository=found_repository,
2046
 
                              ignore_fallbacks=ignore_fallbacks)
 
2098
                              ignore_fallbacks=ignore_fallbacks,
 
2099
                              possible_transports=possible_transports)
2047
2100
        except errors.NoSuchFile:
2048
2101
            raise errors.NotBranchError(path=transport.base, bzrdir=a_bzrdir)
2049
2102
 
2050
 
    def __init__(self):
2051
 
        super(BranchFormatMetadir, self).__init__()
2052
 
        self._matchingbzrdir = bzrdir.BzrDirMetaFormat1()
2053
 
        self._matchingbzrdir.set_branch_format(self)
 
2103
    @property
 
2104
    def _matchingbzrdir(self):
 
2105
        ret = bzrdir.BzrDirMetaFormat1()
 
2106
        ret.set_branch_format(self)
 
2107
        return ret
2054
2108
 
2055
2109
    def supports_tags(self):
2056
2110
        return True
2058
2112
    def supports_leaving_lock(self):
2059
2113
        return True
2060
2114
 
 
2115
    def check_support_status(self, allow_unsupported, recommend_upgrade=True,
 
2116
            basedir=None):
 
2117
        BranchFormat.check_support_status(self,
 
2118
            allow_unsupported=allow_unsupported, recommend_upgrade=recommend_upgrade,
 
2119
            basedir=basedir)
 
2120
        bzrdir.BzrFormat.check_support_status(self, allow_unsupported=allow_unsupported,
 
2121
            recommend_upgrade=recommend_upgrade, basedir=basedir)
 
2122
 
2061
2123
 
2062
2124
class BzrBranchFormat5(BranchFormatMetadir):
2063
2125
    """Bzr branch format 5.
2075
2137
    def _branch_class(self):
2076
2138
        return BzrBranch5
2077
2139
 
2078
 
    def get_format_string(self):
 
2140
    @classmethod
 
2141
    def get_format_string(cls):
2079
2142
        """See BranchFormat.get_format_string()."""
2080
2143
        return "Bazaar-NG branch format 5\n"
2081
2144
 
2083
2146
        """See BranchFormat.get_format_description()."""
2084
2147
        return "Branch format 5"
2085
2148
 
2086
 
    def initialize(self, a_bzrdir, name=None, repository=None):
 
2149
    def initialize(self, a_bzrdir, name=None, repository=None,
 
2150
                   append_revisions_only=None):
2087
2151
        """Create a branch of this format in a_bzrdir."""
 
2152
        if append_revisions_only:
 
2153
            raise errors.UpgradeRequired(a_bzrdir.user_url)
2088
2154
        utf8_files = [('revision-history', ''),
2089
2155
                      ('branch-name', ''),
2090
2156
                      ]
2108
2174
    def _branch_class(self):
2109
2175
        return BzrBranch6
2110
2176
 
2111
 
    def get_format_string(self):
 
2177
    @classmethod
 
2178
    def get_format_string(cls):
2112
2179
        """See BranchFormat.get_format_string()."""
2113
2180
        return "Bazaar Branch Format 6 (bzr 0.15)\n"
2114
2181
 
2116
2183
        """See BranchFormat.get_format_description()."""
2117
2184
        return "Branch format 6"
2118
2185
 
2119
 
    def initialize(self, a_bzrdir, name=None, repository=None):
 
2186
    def initialize(self, a_bzrdir, name=None, repository=None,
 
2187
                   append_revisions_only=None):
2120
2188
        """Create a branch of this format in a_bzrdir."""
2121
2189
        utf8_files = [('last-revision', '0 null:\n'),
2122
 
                      ('branch.conf', ''),
 
2190
                      ('branch.conf',
 
2191
                          self._get_initial_config(append_revisions_only)),
2123
2192
                      ('tags', ''),
2124
2193
                      ]
2125
2194
        return self._initialize_helper(a_bzrdir, utf8_files, name, repository)
2126
2195
 
2127
2196
    def make_tags(self, branch):
2128
2197
        """See bzrlib.branch.BranchFormat.make_tags()."""
2129
 
        return BasicTags(branch)
 
2198
        return _mod_tag.BasicTags(branch)
2130
2199
 
2131
2200
    def supports_set_append_revisions_only(self):
2132
2201
        return True
2138
2207
    def _branch_class(self):
2139
2208
        return BzrBranch8
2140
2209
 
2141
 
    def get_format_string(self):
 
2210
    @classmethod
 
2211
    def get_format_string(cls):
2142
2212
        """See BranchFormat.get_format_string()."""
2143
2213
        return "Bazaar Branch Format 8 (needs bzr 1.15)\n"
2144
2214
 
2146
2216
        """See BranchFormat.get_format_description()."""
2147
2217
        return "Branch format 8"
2148
2218
 
2149
 
    def initialize(self, a_bzrdir, name=None, repository=None):
 
2219
    def initialize(self, a_bzrdir, name=None, repository=None,
 
2220
                   append_revisions_only=None):
2150
2221
        """Create a branch of this format in a_bzrdir."""
2151
2222
        utf8_files = [('last-revision', '0 null:\n'),
2152
 
                      ('branch.conf', ''),
 
2223
                      ('branch.conf',
 
2224
                          self._get_initial_config(append_revisions_only)),
2153
2225
                      ('tags', ''),
2154
2226
                      ('references', '')
2155
2227
                      ]
2157
2229
 
2158
2230
    def make_tags(self, branch):
2159
2231
        """See bzrlib.branch.BranchFormat.make_tags()."""
2160
 
        return BasicTags(branch)
 
2232
        return _mod_tag.BasicTags(branch)
2161
2233
 
2162
2234
    def supports_set_append_revisions_only(self):
2163
2235
        return True
2177
2249
    This format was introduced in bzr 1.6.
2178
2250
    """
2179
2251
 
2180
 
    def initialize(self, a_bzrdir, name=None, repository=None):
 
2252
    def initialize(self, a_bzrdir, name=None, repository=None,
 
2253
                   append_revisions_only=None):
2181
2254
        """Create a branch of this format in a_bzrdir."""
2182
2255
        utf8_files = [('last-revision', '0 null:\n'),
2183
 
                      ('branch.conf', ''),
 
2256
                      ('branch.conf',
 
2257
                          self._get_initial_config(append_revisions_only)),
2184
2258
                      ('tags', ''),
2185
2259
                      ]
2186
2260
        return self._initialize_helper(a_bzrdir, utf8_files, name, repository)
2188
2262
    def _branch_class(self):
2189
2263
        return BzrBranch7
2190
2264
 
2191
 
    def get_format_string(self):
 
2265
    @classmethod
 
2266
    def get_format_string(cls):
2192
2267
        """See BranchFormat.get_format_string()."""
2193
2268
        return "Bazaar Branch Format 7 (needs bzr 1.6)\n"
2194
2269
 
2204
2279
 
2205
2280
    def make_tags(self, branch):
2206
2281
        """See bzrlib.branch.BranchFormat.make_tags()."""
2207
 
        return BasicTags(branch)
 
2282
        return _mod_tag.BasicTags(branch)
2208
2283
 
2209
2284
    supports_reference_locations = False
2210
2285
 
2211
2286
 
2212
 
class BranchReferenceFormat(BranchFormat):
 
2287
class BranchReferenceFormat(BranchFormatMetadir):
2213
2288
    """Bzr branch reference format.
2214
2289
 
2215
2290
    Branch references are used in implementing checkouts, they
2220
2295
     - a format string
2221
2296
    """
2222
2297
 
2223
 
    def get_format_string(self):
 
2298
    @classmethod
 
2299
    def get_format_string(cls):
2224
2300
        """See BranchFormat.get_format_string()."""
2225
2301
        return "Bazaar-NG Branch Reference Format 1\n"
2226
2302
 
2239
2315
        location = transport.put_bytes('location', to_branch.base)
2240
2316
 
2241
2317
    def initialize(self, a_bzrdir, name=None, target_branch=None,
2242
 
            repository=None):
 
2318
            repository=None, append_revisions_only=None):
2243
2319
        """Create a branch of this format in a_bzrdir."""
2244
2320
        if target_branch is None:
2245
2321
            # this format does not implement branch itself, thus the implicit
2246
2322
            # creation contract must see it as uninitializable
2247
2323
            raise errors.UninitializableFormat(self)
2248
2324
        mutter('creating branch reference in %s', a_bzrdir.user_url)
 
2325
        if a_bzrdir._format.fixed_components:
 
2326
            raise errors.IncompatibleFormat(self, a_bzrdir._format)
 
2327
        if name is None:
 
2328
            name = a_bzrdir._get_selected_branch()
2249
2329
        branch_transport = a_bzrdir.get_branch_transport(self, name=name)
2250
2330
        branch_transport.put_bytes('location',
2251
 
            target_branch.bzrdir.user_url)
2252
 
        branch_transport.put_bytes('format', self.get_format_string())
2253
 
        branch = self.open(
2254
 
            a_bzrdir, name, _found=True,
 
2331
            target_branch.user_url)
 
2332
        branch_transport.put_bytes('format', self.as_string())
 
2333
        branch = self.open(a_bzrdir, name, _found=True,
2255
2334
            possible_transports=[target_branch.bzrdir.root_transport])
2256
2335
        self._run_post_branch_init_hooks(a_bzrdir, name, branch)
2257
2336
        return branch
2258
2337
 
2259
 
    def __init__(self):
2260
 
        super(BranchReferenceFormat, self).__init__()
2261
 
        self._matchingbzrdir = bzrdir.BzrDirMetaFormat1()
2262
 
        self._matchingbzrdir.set_branch_format(self)
2263
 
 
2264
2338
    def _make_reference_clone_function(format, a_branch):
2265
2339
        """Create a clone() routine for a branch dynamically."""
2266
2340
        def clone(to_bzrdir, revision_id=None,
2288
2362
            a_bzrdir.
2289
2363
        :param possible_transports: An optional reusable transports list.
2290
2364
        """
 
2365
        if name is None:
 
2366
            name = a_bzrdir._get_selected_branch()
2291
2367
        if not _found:
2292
 
            format = BranchFormat.find_format(a_bzrdir, name=name)
 
2368
            format = BranchFormatMetadir.find_format(a_bzrdir, name=name)
2293
2369
            if format.__class__ != self.__class__:
2294
2370
                raise AssertionError("wrong format %r found for %r" %
2295
2371
                    (format, self))
2296
2372
        if location is None:
2297
2373
            location = self.get_reference(a_bzrdir, name)
2298
 
        real_bzrdir = bzrdir.BzrDir.open(
 
2374
        real_bzrdir = controldir.ControlDir.open(
2299
2375
            location, possible_transports=possible_transports)
2300
 
        result = real_bzrdir.open_branch(name=name, 
2301
 
            ignore_fallbacks=ignore_fallbacks)
 
2376
        result = real_bzrdir.open_branch(ignore_fallbacks=ignore_fallbacks,
 
2377
            possible_transports=possible_transports)
2302
2378
        # this changes the behaviour of result.clone to create a new reference
2303
2379
        # rather than a copy of the content of the branch.
2304
2380
        # I did not use a proxy object because that needs much more extensive
2385
2461
 
2386
2462
    def __init__(self, _format=None,
2387
2463
                 _control_files=None, a_bzrdir=None, name=None,
2388
 
                 _repository=None, ignore_fallbacks=False):
 
2464
                 _repository=None, ignore_fallbacks=False,
 
2465
                 possible_transports=None):
2389
2466
        """Create new branch object at a particular location."""
2390
2467
        if a_bzrdir is None:
2391
2468
            raise ValueError('a_bzrdir must be supplied')
2392
 
        else:
2393
 
            self.bzrdir = a_bzrdir
2394
 
        self._base = self.bzrdir.transport.clone('..').base
 
2469
        if name is None:
 
2470
            raise ValueError('name must be supplied')
 
2471
        self.bzrdir = a_bzrdir
 
2472
        self._user_transport = self.bzrdir.transport.clone('..')
 
2473
        if name != "":
 
2474
            self._user_transport.set_segment_parameter(
 
2475
                "branch", urlutils.escape(name))
 
2476
        self._base = self._user_transport.base
2395
2477
        self.name = name
2396
 
        # XXX: We should be able to just do
2397
 
        #   self.base = self.bzrdir.root_transport.base
2398
 
        # but this does not quite work yet -- mbp 20080522
2399
2478
        self._format = _format
2400
2479
        if _control_files is None:
2401
2480
            raise ValueError('BzrBranch _control_files is None')
2402
2481
        self.control_files = _control_files
2403
2482
        self._transport = _control_files._transport
2404
2483
        self.repository = _repository
2405
 
        Branch.__init__(self)
 
2484
        Branch.__init__(self, possible_transports)
2406
2485
 
2407
2486
    def __str__(self):
2408
 
        if self.name is None:
2409
 
            return '%s(%s)' % (self.__class__.__name__, self.user_url)
2410
 
        else:
2411
 
            return '%s(%s,%s)' % (self.__class__.__name__, self.user_url,
2412
 
                self.name)
 
2487
        return '%s(%s)' % (self.__class__.__name__, self.user_url)
2413
2488
 
2414
2489
    __repr__ = __str__
2415
2490
 
2419
2494
 
2420
2495
    base = property(_get_base, doc="The URL for the root of this branch.")
2421
2496
 
 
2497
    @property
 
2498
    def user_transport(self):
 
2499
        return self._user_transport
 
2500
 
2422
2501
    def _get_config(self):
2423
 
        return TransportConfig(self._transport, 'branch.conf')
 
2502
        return _mod_config.TransportConfig(self._transport, 'branch.conf')
 
2503
 
 
2504
    def _get_config_store(self):
 
2505
        return _mod_config.BranchStore(self)
2424
2506
 
2425
2507
    def is_locked(self):
2426
2508
        return self.control_files.is_locked()
2507
2589
            raise errors.InvalidRevisionId(revision_id=revision_id, branch=self)
2508
2590
        revision_id = _mod_revision.ensure_null(revision_id)
2509
2591
        old_revno, old_revid = self.last_revision_info()
2510
 
        if self._get_append_revisions_only():
 
2592
        if self.get_append_revisions_only():
2511
2593
            self._check_history_violation(revision_id)
2512
2594
        self._run_pre_change_branch_tip_hooks(revno, revision_id)
2513
2595
        self._write_last_revision_info(revno, revision_id)
2656
2738
        self._transport.put_bytes('last-revision', out_string,
2657
2739
            mode=self.bzrdir._get_file_mode())
2658
2740
 
 
2741
    @needs_write_lock
 
2742
    def update_feature_flags(self, updated_flags):
 
2743
        """Update the feature flags for this branch.
 
2744
 
 
2745
        :param updated_flags: Dictionary mapping feature names to necessities
 
2746
            A necessity can be None to indicate the feature should be removed
 
2747
        """
 
2748
        self._format._update_feature_flags(updated_flags)
 
2749
        self.control_transport.put_bytes('format', self._format.as_string())
 
2750
 
2659
2751
 
2660
2752
class FullHistoryBzrBranch(BzrBranch):
2661
2753
    """Bzr branch which contains the full revision history."""
2674
2766
        self._set_revision_history(history)
2675
2767
 
2676
2768
    def _read_last_revision_info(self):
2677
 
        rh = self.revision_history()
 
2769
        rh = self._revision_history()
2678
2770
        revno = len(rh)
2679
2771
        if revno:
2680
2772
            return (revno, rh[-1])
2734
2826
        if revision_id == _mod_revision.NULL_REVISION:
2735
2827
            new_history = []
2736
2828
        else:
2737
 
            new_history = self.revision_history()
 
2829
            new_history = self._revision_history()
2738
2830
        if revision_id is not None and new_history != []:
2739
2831
            try:
2740
2832
                new_history = new_history[:new_history.index(revision_id) + 1]
2768
2860
class BzrBranch8(BzrBranch):
2769
2861
    """A branch that stores tree-reference locations."""
2770
2862
 
2771
 
    def _open_hook(self):
 
2863
    def _open_hook(self, possible_transports=None):
2772
2864
        if self._ignore_fallbacks:
2773
2865
            return
 
2866
        if possible_transports is None:
 
2867
            possible_transports = [self.bzrdir.root_transport]
2774
2868
        try:
2775
2869
            url = self.get_stacked_on_url()
2776
2870
        except (errors.UnstackableRepositoryFormat, errors.NotStacked,
2784
2878
                    raise AssertionError(
2785
2879
                        "'transform_fallback_location' hook %s returned "
2786
2880
                        "None, not a URL." % hook_name)
2787
 
            self._activate_fallback_location(url)
 
2881
            self._activate_fallback_location(url,
 
2882
                possible_transports=possible_transports)
2788
2883
 
2789
2884
    def __init__(self, *args, **kwargs):
2790
2885
        self._ignore_fallbacks = kwargs.get('ignore_fallbacks', False)
2908
3003
        """See Branch.set_push_location."""
2909
3004
        self._master_branch_cache = None
2910
3005
        result = None
2911
 
        config = self.get_config()
 
3006
        conf = self.get_config_stack()
2912
3007
        if location is None:
2913
 
            if config.get_user_option('bound') != 'True':
 
3008
            if not conf.get('bound'):
2914
3009
                return False
2915
3010
            else:
2916
 
                config.set_user_option('bound', 'False', warn_masked=True)
 
3011
                conf.set('bound', 'False')
2917
3012
                return True
2918
3013
        else:
2919
3014
            self._set_config_location('bound_location', location,
2920
 
                                      config=config)
2921
 
            config.set_user_option('bound', 'True', warn_masked=True)
 
3015
                                      config=conf)
 
3016
            conf.set('bound', 'True')
2922
3017
        return True
2923
3018
 
2924
3019
    def _get_bound_location(self, bound):
2925
3020
        """Return the bound location in the config file.
2926
3021
 
2927
3022
        Return None if the bound parameter does not match"""
2928
 
        config = self.get_config()
2929
 
        config_bound = (config.get_user_option('bound') == 'True')
2930
 
        if config_bound != bound:
 
3023
        conf = self.get_config_stack()
 
3024
        if conf.get('bound') != bound:
2931
3025
            return None
2932
 
        return self._get_config_location('bound_location', config=config)
 
3026
        return self._get_config_location('bound_location', config=conf)
2933
3027
 
2934
3028
    def get_bound_location(self):
2935
 
        """See Branch.set_push_location."""
 
3029
        """See Branch.get_bound_location."""
2936
3030
        return self._get_bound_location(True)
2937
3031
 
2938
3032
    def get_old_bound_location(self):
2945
3039
        ## self._check_stackable_repo()
2946
3040
        # stacked_on_location is only ever defined in branch.conf, so don't
2947
3041
        # waste effort reading the whole stack of config files.
2948
 
        config = self.get_config()._get_branch_data_config()
 
3042
        conf = _mod_config.BranchOnlyStack(self)
2949
3043
        stacked_url = self._get_config_location('stacked_on_location',
2950
 
            config=config)
 
3044
                                                config=conf)
2951
3045
        if stacked_url is None:
2952
3046
            raise errors.NotStacked(self)
2953
 
        return stacked_url
2954
 
 
2955
 
    def _get_append_revisions_only(self):
2956
 
        return self.get_config(
2957
 
            ).get_user_option_as_bool('append_revisions_only')
 
3047
        return stacked_url.encode('utf-8')
2958
3048
 
2959
3049
    @needs_read_lock
2960
3050
    def get_rev_id(self, revno, history=None):
2990
3080
            except errors.RevisionNotPresent, e:
2991
3081
                raise errors.GhostRevisionsHaveNoRevno(revision_id, e.revision_id)
2992
3082
            index = len(self._partial_revision_history_cache) - 1
 
3083
            if index < 0:
 
3084
                raise errors.NoSuchRevision(self, revision_id)
2993
3085
            if self._partial_revision_history_cache[index] != revision_id:
2994
3086
                raise errors.NoSuchRevision(self, revision_id)
2995
3087
        return self.revno() - index
3047
3139
    :ivar local_branch: target branch if there is a Master, else None
3048
3140
    :ivar target_branch: Target/destination branch object. (write locked)
3049
3141
    :ivar tag_conflicts: A list of tag conflicts, see BasicTags.merge_to
 
3142
    :ivar tag_updates: A dict with new tags, see BasicTags.merge_to
3050
3143
    """
3051
3144
 
3052
3145
    @deprecated_method(deprecated_in((2, 3, 0)))
3058
3151
        return self.new_revno - self.old_revno
3059
3152
 
3060
3153
    def report(self, to_file):
 
3154
        tag_conflicts = getattr(self, "tag_conflicts", None)
 
3155
        tag_updates = getattr(self, "tag_updates", None)
3061
3156
        if not is_quiet():
3062
 
            if self.old_revid == self.new_revid:
3063
 
                to_file.write('No revisions to pull.\n')
3064
 
            else:
 
3157
            if self.old_revid != self.new_revid:
3065
3158
                to_file.write('Now on revision %d.\n' % self.new_revno)
 
3159
            if tag_updates:
 
3160
                to_file.write('%d tag(s) updated.\n' % len(tag_updates))
 
3161
            if self.old_revid == self.new_revid and not tag_updates:
 
3162
                if not tag_conflicts:
 
3163
                    to_file.write('No revisions or tags to pull.\n')
 
3164
                else:
 
3165
                    to_file.write('No revisions to pull.\n')
3066
3166
        self._show_tag_conficts(to_file)
3067
3167
 
3068
3168
 
3094
3194
        return self.new_revno - self.old_revno
3095
3195
 
3096
3196
    def report(self, to_file):
3097
 
        """Write a human-readable description of the result."""
3098
 
        if self.old_revid == self.new_revid:
3099
 
            note('No new revisions to push.')
3100
 
        else:
3101
 
            note('Pushed up to revision %d.' % self.new_revno)
 
3197
        # TODO: This function gets passed a to_file, but then
 
3198
        # ignores it and calls note() instead. This is also
 
3199
        # inconsistent with PullResult(), which writes to stdout.
 
3200
        # -- JRV20110901, bug #838853
 
3201
        tag_conflicts = getattr(self, "tag_conflicts", None)
 
3202
        tag_updates = getattr(self, "tag_updates", None)
 
3203
        if not is_quiet():
 
3204
            if self.old_revid != self.new_revid:
 
3205
                note(gettext('Pushed up to revision %d.') % self.new_revno)
 
3206
            if tag_updates:
 
3207
                note(ngettext('%d tag updated.', '%d tags updated.', len(tag_updates)) % len(tag_updates))
 
3208
            if self.old_revid == self.new_revid and not tag_updates:
 
3209
                if not tag_conflicts:
 
3210
                    note(gettext('No new revisions or tags to push.'))
 
3211
                else:
 
3212
                    note(gettext('No new revisions to push.'))
3102
3213
        self._show_tag_conficts(to_file)
3103
3214
 
3104
3215
 
3118
3229
        :param verbose: Requests more detailed display of what was checked,
3119
3230
            if any.
3120
3231
        """
3121
 
        note('checked branch %s format %s', self.branch.user_url,
3122
 
            self.branch._format)
 
3232
        note(gettext('checked branch {0} format {1}').format(
 
3233
                                self.branch.user_url, self.branch._format))
3123
3234
        for error in self.errors:
3124
 
            note('found error:%s', error)
 
3235
            note(gettext('found error:%s'), error)
3125
3236
 
3126
3237
 
3127
3238
class Converter5to6(object):
3143
3254
 
3144
3255
        # Copying done; now update target format
3145
3256
        new_branch._transport.put_bytes('format',
3146
 
            format.get_format_string(),
 
3257
            format.as_string(),
3147
3258
            mode=new_branch.bzrdir._get_file_mode())
3148
3259
 
3149
3260
        # Clean up old files
3162
3273
        format = BzrBranchFormat7()
3163
3274
        branch._set_config_location('stacked_on_location', '')
3164
3275
        # update target format
3165
 
        branch._transport.put_bytes('format', format.get_format_string())
 
3276
        branch._transport.put_bytes('format', format.as_string())
3166
3277
 
3167
3278
 
3168
3279
class Converter7to8(object):
3172
3283
        format = BzrBranchFormat8()
3173
3284
        branch._transport.put_bytes('references', '')
3174
3285
        # update target format
3175
 
        branch._transport.put_bytes('format', format.get_format_string())
 
3286
        branch._transport.put_bytes('format', format.as_string())
3176
3287
 
3177
3288
 
3178
3289
class InterBranch(InterObject):
3412
3523
            self._update_revisions(stop_revision, overwrite=overwrite,
3413
3524
                    graph=graph)
3414
3525
        if self.source._push_should_merge_tags():
3415
 
            result.tag_conflicts = self.source.tags.merge_to(self.target.tags,
3416
 
                overwrite)
 
3526
            result.tag_updates, result.tag_conflicts = (
 
3527
                self.source.tags.merge_to(self.target.tags, overwrite))
3417
3528
        result.new_revno, result.new_revid = self.target.last_revision_info()
3418
3529
        return result
3419
3530
 
3502
3613
            # TODO: The old revid should be specified when merging tags, 
3503
3614
            # so a tags implementation that versions tags can only 
3504
3615
            # pull in the most recent changes. -- JRV20090506
3505
 
            result.tag_conflicts = self.source.tags.merge_to(self.target.tags,
3506
 
                overwrite, ignore_master=not merge_tags_to_master)
 
3616
            result.tag_updates, result.tag_conflicts = (
 
3617
                self.source.tags.merge_to(self.target.tags, overwrite,
 
3618
                    ignore_master=not merge_tags_to_master))
3507
3619
            result.new_revno, result.new_revid = self.target.last_revision_info()
3508
3620
            if _hook_master:
3509
3621
                result.master_branch = _hook_master