/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2018.5.51 by Wouter van Heyst
Test and implement RemoteBranch.last_revision_info()
1
# Copyright (C) 2006, 2007 Canonical Ltd
1752.2.30 by Martin Pool
Start adding a RemoteBzrDir, etc
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
1752.2.39 by Martin Pool
[broken] implement upgrade apis on remote bzrdirs
17
# TODO: At some point, handle upgrades by just passing the whole request
18
# across to run on the server.
19
2018.5.59 by Robert Collins
Get BranchConfig working somewhat on RemoteBranches (Robert Collins, Vincent Ladeuil).
20
from cStringIO import StringIO
1752.2.30 by Martin Pool
Start adding a RemoteBzrDir, etc
21
2018.5.127 by Andrew Bennetts
Fix most of the lockable_files tests for RemoteBranchLockableFiles.
22
from bzrlib import branch, errors, lockdir, repository
2018.5.51 by Wouter van Heyst
Test and implement RemoteBranch.last_revision_info()
23
from bzrlib.branch import BranchReferenceFormat
2018.5.174 by Andrew Bennetts
Various nits discovered by pyflakes.
24
from bzrlib.bzrdir import BzrDir, RemoteBzrDirFormat
2018.14.2 by Andrew Bennetts
All but one repository_implementation tests for RemoteRepository passing.
25
from bzrlib.config import BranchConfig, TreeConfig
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
26
from bzrlib.decorators import needs_read_lock, needs_write_lock
2018.5.67 by Wouter van Heyst
Implement RemoteRepository.get_revision_graph (Wouter van Heyst, Robert Collins)
27
from bzrlib.errors import NoSuchRevision
2018.5.127 by Andrew Bennetts
Fix most of the lockable_files tests for RemoteBranchLockableFiles.
28
from bzrlib.lockable_files import LockableFiles
2018.5.51 by Wouter van Heyst
Test and implement RemoteBranch.last_revision_info()
29
from bzrlib.revision import NULL_REVISION
2018.6.1 by Robert Collins
Implement a BzrDir.open_branch smart server method for opening a branch without VFS.
30
from bzrlib.smart import client, vfs
2018.18.20 by Martin Pool
Route branch operations through remote copy_content_into
31
from bzrlib.trace import note
1752.2.30 by Martin Pool
Start adding a RemoteBzrDir, etc
32
2018.5.25 by Andrew Bennetts
Make sure RemoteBzrDirFormat is always registered (John Arbash Meinel, Robert Collins, Andrew Bennetts).
33
# Note: RemoteBzrDirFormat is in bzrdir.py
1752.2.30 by Martin Pool
Start adding a RemoteBzrDir, etc
34
35
class RemoteBzrDir(BzrDir):
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
36
    """Control directory on a remote server, accessed via bzr:// or similar."""
1752.2.30 by Martin Pool
Start adding a RemoteBzrDir, etc
37
2018.5.51 by Wouter van Heyst
Test and implement RemoteBranch.last_revision_info()
38
    def __init__(self, transport, _client=None):
39
        """Construct a RemoteBzrDir.
40
41
        :param _client: Private parameter for testing. Disables probing and the
42
            use of a real bzrdir.
43
        """
1752.2.39 by Martin Pool
[broken] implement upgrade apis on remote bzrdirs
44
        BzrDir.__init__(self, transport, RemoteBzrDirFormat())
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
45
        # this object holds a delegated bzrdir that uses file-level operations
46
        # to talk to the other side
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
47
        self._real_bzrdir = None
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
48
49
        if _client is None:
50
            self._medium = transport.get_smart_client()
2018.5.159 by Andrew Bennetts
Rename SmartClient to _SmartClient.
51
            self._client = client._SmartClient(self._medium)
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
52
        else:
53
            self._client = _client
54
            self._medium = None
55
            return
56
57
        path = self._path_for_remote_call(self._client)
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
58
        response = self._client.call('BzrDir.open', path)
59
        if response not in [('yes',), ('no',)]:
60
            raise errors.UnexpectedSmartServerResponse(response)
2018.5.26 by Andrew Bennetts
Extract a simple SmartClient class from RemoteTransport, and a hack to avoid VFS operations when probing for a bzrdir over a smart transport.
61
        if response == ('no',):
62
            raise errors.NotBranchError(path=transport.base)
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
63
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
64
    def _ensure_real(self):
65
        """Ensure that there is a _real_bzrdir set.
66
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
67
        Used before calls to self._real_bzrdir.
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
68
        """
69
        if not self._real_bzrdir:
2018.5.169 by Andrew Bennetts
Add a _server_formats flag to BzrDir.open_from_transport and BzrDirFormat.find_format, make RemoteBranch.control_files into a property.
70
            self._real_bzrdir = BzrDir.open_from_transport(
71
                self.root_transport, _server_formats=False)
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
72
1752.2.39 by Martin Pool
[broken] implement upgrade apis on remote bzrdirs
73
    def create_repository(self, shared=False):
2018.5.162 by Andrew Bennetts
Add some missing _ensure_real calls, and a missing import.
74
        self._ensure_real()
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
75
        self._real_bzrdir.create_repository(shared=shared)
76
        return self.open_repository()
1752.2.50 by Andrew Bennetts
Implement RemoteBzrDir.create_{branch,workingtree}
77
78
    def create_branch(self):
2018.5.162 by Andrew Bennetts
Add some missing _ensure_real calls, and a missing import.
79
        self._ensure_real()
1752.2.72 by Andrew Bennetts
Make Remote* classes in remote.py more consistent and remove some dead code.
80
        real_branch = self._real_bzrdir.create_branch()
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
81
        return RemoteBranch(self, self.find_repository(), real_branch)
1752.2.50 by Andrew Bennetts
Implement RemoteBzrDir.create_{branch,workingtree}
82
83
    def create_workingtree(self, revision_id=None):
2018.5.174 by Andrew Bennetts
Various nits discovered by pyflakes.
84
        raise errors.NotLocalUrl(self.transport.base)
1752.2.39 by Martin Pool
[broken] implement upgrade apis on remote bzrdirs
85
2018.5.124 by Robert Collins
Fix test_format_initialize_find_open by delegating Branch formt lookup to the BzrDir, where it should have stayed from the start.
86
    def find_branch_format(self):
87
        """Find the branch 'format' for this bzrdir.
88
89
        This might be a synthetic object for e.g. RemoteBranch and SVN.
90
        """
91
        b = self.open_branch()
92
        return b._format
93
2018.5.132 by Robert Collins
Make all BzrDir implementation tests pass on RemoteBzrDir - fix some things, and remove the incomplete_with_basis tests as cruft.
94
    def get_branch_reference(self):
95
        """See BzrDir.get_branch_reference()."""
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
96
        path = self._path_for_remote_call(self._client)
97
        response = self._client.call('BzrDir.open_branch', path)
98
        if response[0] == 'ok':
99
            if response[1] == '':
100
                # branch at this location.
2018.5.132 by Robert Collins
Make all BzrDir implementation tests pass on RemoteBzrDir - fix some things, and remove the incomplete_with_basis tests as cruft.
101
                return None
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
102
            else:
103
                # a branch reference, use the existing BranchReference logic.
2018.5.132 by Robert Collins
Make all BzrDir implementation tests pass on RemoteBzrDir - fix some things, and remove the incomplete_with_basis tests as cruft.
104
                return response[1]
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
105
        elif response == ('nobranch',):
2018.6.1 by Robert Collins
Implement a BzrDir.open_branch smart server method for opening a branch without VFS.
106
            raise errors.NotBranchError(path=self.root_transport.base)
107
        else:
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
108
            assert False, 'unexpected response code %r' % (response,)
2018.5.132 by Robert Collins
Make all BzrDir implementation tests pass on RemoteBzrDir - fix some things, and remove the incomplete_with_basis tests as cruft.
109
110
    def open_branch(self, _unsupported=False):
111
        assert _unsupported == False, 'unsupported flag support not implemented yet.'
112
        reference_url = self.get_branch_reference()
113
        if reference_url is None:
114
            # branch at this location.
115
            return RemoteBranch(self, self.find_repository())
116
        else:
117
            # a branch reference, use the existing BranchReference logic.
118
            format = BranchReferenceFormat()
119
            return format.open(self, _found=True, location=reference_url)
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
120
                
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
121
    def open_repository(self):
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
122
        path = self._path_for_remote_call(self._client)
123
        response = self._client.call('BzrDir.find_repository', path)
2018.5.42 by Robert Collins
Various hopefully improvements, but wsgi is broken, handing over to spiv :).
124
        assert response[0] in ('ok', 'norepository'), \
2018.5.52 by Wouter van Heyst
Provide more information when encountering unexpected responses from a smart
125
            'unexpected response code %s' % (response,)
2018.5.42 by Robert Collins
Various hopefully improvements, but wsgi is broken, handing over to spiv :).
126
        if response[0] == 'norepository':
127
            raise errors.NoRepositoryPresent(self)
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
128
        assert len(response) == 4, 'incorrect response length %s' % (response,)
2018.5.34 by Robert Collins
Get test_remote.BasicRemoteObjectTests.test_open_remote_branch passing by implementing a remote method BzrDir.find_repository.
129
        if response[1] == '':
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
130
            format = RemoteRepositoryFormat()
2018.5.166 by Andrew Bennetts
Small changes in response to Aaron's review.
131
            format.rich_root_data = (response[2] == 'yes')
132
            format.supports_tree_reference = (response[3] == 'yes')
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
133
            return RemoteRepository(self, format)
2018.5.34 by Robert Collins
Get test_remote.BasicRemoteObjectTests.test_open_remote_branch passing by implementing a remote method BzrDir.find_repository.
134
        else:
135
            raise errors.NoRepositoryPresent(self)
1752.2.30 by Martin Pool
Start adding a RemoteBzrDir, etc
136
2018.5.138 by Robert Collins
Merge bzr.dev.
137
    def open_workingtree(self, recommend_upgrade=True):
2445.1.1 by Andrew Bennetts
Make RemoteBzrDir.open_workingtree raise NoWorkingTree rather than NotLocalUrl
138
        self._ensure_real()
139
        if self._real_bzrdir.has_workingtree():
140
            raise errors.NotLocalUrl(self.root_transport)
141
        else:
142
            raise errors.NoWorkingTree(self.root_transport.base)
1752.2.50 by Andrew Bennetts
Implement RemoteBzrDir.create_{branch,workingtree}
143
2018.5.42 by Robert Collins
Various hopefully improvements, but wsgi is broken, handing over to spiv :).
144
    def _path_for_remote_call(self, client):
2018.6.1 by Robert Collins
Implement a BzrDir.open_branch smart server method for opening a branch without VFS.
145
        """Return the path to be used for this bzrdir in a remote call."""
2018.5.42 by Robert Collins
Various hopefully improvements, but wsgi is broken, handing over to spiv :).
146
        return client.remote_path_from_transport(self.root_transport)
2018.6.1 by Robert Collins
Implement a BzrDir.open_branch smart server method for opening a branch without VFS.
147
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
148
    def get_branch_transport(self, branch_format):
2018.5.162 by Andrew Bennetts
Add some missing _ensure_real calls, and a missing import.
149
        self._ensure_real()
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
150
        return self._real_bzrdir.get_branch_transport(branch_format)
151
1752.2.43 by Andrew Bennetts
Fix get_{branch,repository,workingtree}_transport.
152
    def get_repository_transport(self, repository_format):
2018.5.162 by Andrew Bennetts
Add some missing _ensure_real calls, and a missing import.
153
        self._ensure_real()
1752.2.43 by Andrew Bennetts
Fix get_{branch,repository,workingtree}_transport.
154
        return self._real_bzrdir.get_repository_transport(repository_format)
155
156
    def get_workingtree_transport(self, workingtree_format):
2018.5.162 by Andrew Bennetts
Add some missing _ensure_real calls, and a missing import.
157
        self._ensure_real()
1752.2.43 by Andrew Bennetts
Fix get_{branch,repository,workingtree}_transport.
158
        return self._real_bzrdir.get_workingtree_transport(workingtree_format)
159
1752.2.39 by Martin Pool
[broken] implement upgrade apis on remote bzrdirs
160
    def can_convert_format(self):
161
        """Upgrading of remote bzrdirs is not supported yet."""
162
        return False
163
164
    def needs_format_conversion(self, format=None):
165
        """Upgrading of remote bzrdirs is not supported yet."""
166
        return False
167
2018.5.138 by Robert Collins
Merge bzr.dev.
168
    def clone(self, url, revision_id=None, force_new_repo=False):
2018.5.94 by Andrew Bennetts
Various small changes in aid of making tests pass (including deleting one invalid test).
169
        self._ensure_real()
170
        return self._real_bzrdir.clone(url, revision_id=revision_id,
2018.5.138 by Robert Collins
Merge bzr.dev.
171
            force_new_repo=force_new_repo)
2018.5.94 by Andrew Bennetts
Various small changes in aid of making tests pass (including deleting one invalid test).
172
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
173
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
174
class RemoteRepositoryFormat(repository.RepositoryFormat):
2018.5.159 by Andrew Bennetts
Rename SmartClient to _SmartClient.
175
    """Format for repositories accessed over a _SmartClient.
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
176
1752.2.50 by Andrew Bennetts
Implement RemoteBzrDir.create_{branch,workingtree}
177
    Instances of this repository are represented by RemoteRepository
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
178
    instances.
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
179
180
    The RemoteRepositoryFormat is parameterised during construction
181
    to reflect the capabilities of the real, remote format. Specifically
2018.5.138 by Robert Collins
Merge bzr.dev.
182
    the attributes rich_root_data and supports_tree_reference are set
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
183
    on a per instance basis, and are not set (and should not be) at
184
    the class level.
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
185
    """
186
187
    _matchingbzrdir = RemoteBzrDirFormat
188
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
189
    def initialize(self, a_bzrdir, shared=False):
2018.5.138 by Robert Collins
Merge bzr.dev.
190
        assert isinstance(a_bzrdir, RemoteBzrDir), \
191
            '%r is not a RemoteBzrDir' % (a_bzrdir,)
1752.2.72 by Andrew Bennetts
Make Remote* classes in remote.py more consistent and remove some dead code.
192
        return a_bzrdir.create_repository(shared=shared)
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
193
    
194
    def open(self, a_bzrdir):
1752.2.72 by Andrew Bennetts
Make Remote* classes in remote.py more consistent and remove some dead code.
195
        assert isinstance(a_bzrdir, RemoteBzrDir)
196
        return a_bzrdir.open_repository()
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
197
198
    def get_format_description(self):
199
        return 'bzr remote repository'
200
201
    def __eq__(self, other):
1752.2.87 by Andrew Bennetts
Make tests pass.
202
        return self.__class__ == other.__class__
203
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
204
    def check_conversion_target(self, target_format):
205
        if self.rich_root_data and not target_format.rich_root_data:
206
            raise errors.BadConversionTarget(
207
                'Does not support rich root data.', target_format)
2018.5.138 by Robert Collins
Merge bzr.dev.
208
        if (self.supports_tree_reference and
209
            not getattr(target_format, 'supports_tree_reference', False)):
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
210
            raise errors.BadConversionTarget(
211
                'Does not support nested trees', target_format)
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
212
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
213
1752.2.50 by Andrew Bennetts
Implement RemoteBzrDir.create_{branch,workingtree}
214
class RemoteRepository(object):
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
215
    """Repository accessed over rpc.
216
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
217
    For the moment most operations are performed using local transport-backed
218
    Repository objects.
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
219
    """
220
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
221
    def __init__(self, remote_bzrdir, format, real_repository=None, _client=None):
2018.5.34 by Robert Collins
Get test_remote.BasicRemoteObjectTests.test_open_remote_branch passing by implementing a remote method BzrDir.find_repository.
222
        """Create a RemoteRepository instance.
223
        
224
        :param remote_bzrdir: The bzrdir hosting this repository.
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
225
        :param format: The RemoteFormat object to use.
2018.5.34 by Robert Collins
Get test_remote.BasicRemoteObjectTests.test_open_remote_branch passing by implementing a remote method BzrDir.find_repository.
226
        :param real_repository: If not None, a local implementation of the
227
            repository logic for the repository, usually accessing the data
228
            via the VFS.
2018.5.57 by Robert Collins
Implement RemoteRepository.is_shared (Robert Collins, Vincent Ladeuil).
229
        :param _client: Private testing parameter - override the smart client
230
            to be used by the repository.
2018.5.34 by Robert Collins
Get test_remote.BasicRemoteObjectTests.test_open_remote_branch passing by implementing a remote method BzrDir.find_repository.
231
        """
232
        if real_repository:
2018.5.36 by Andrew Bennetts
Fix typo, and clean up some ununsed import warnings from pyflakes at the same time.
233
            self._real_repository = real_repository
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
234
        else:
235
            self._real_repository = None
1752.2.50 by Andrew Bennetts
Implement RemoteBzrDir.create_{branch,workingtree}
236
        self.bzrdir = remote_bzrdir
2018.5.57 by Robert Collins
Implement RemoteRepository.is_shared (Robert Collins, Vincent Ladeuil).
237
        if _client is None:
2018.5.159 by Andrew Bennetts
Rename SmartClient to _SmartClient.
238
            self._client = client._SmartClient(self.bzrdir._medium)
2018.5.57 by Robert Collins
Implement RemoteRepository.is_shared (Robert Collins, Vincent Ladeuil).
239
        else:
240
            self._client = _client
2018.5.118 by Robert Collins
Fix RemoteRepositoryFormat to have appropriate rich_root_data and support_tree_reference.
241
        self._format = format
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
242
        self._lock_mode = None
243
        self._lock_token = None
244
        self._lock_count = 0
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
245
        self._leave_lock = False
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
246
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
247
    def _ensure_real(self):
248
        """Ensure that there is a _real_repository set.
249
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
250
        Used before calls to self._real_repository.
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
251
        """
252
        if not self._real_repository:
253
            self.bzrdir._ensure_real()
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
254
            #self._real_repository = self.bzrdir._real_bzrdir.open_repository()
255
            self._set_real_repository(self.bzrdir._real_bzrdir.open_repository())
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
256
2018.5.67 by Wouter van Heyst
Implement RemoteRepository.get_revision_graph (Wouter van Heyst, Robert Collins)
257
    def get_revision_graph(self, revision_id=None):
258
        """See Repository.get_revision_graph()."""
259
        if revision_id is None:
260
            revision_id = ''
261
        elif revision_id == NULL_REVISION:
262
            return {}
263
264
        path = self.bzrdir._path_for_remote_call(self._client)
2018.5.83 by Andrew Bennetts
Fix some test failures caused by the switch from unicode to UTF-8-encoded strs for revision IDs.
265
        assert type(revision_id) is str
2018.5.153 by Andrew Bennetts
Rename call2 to call_expecting_body, and other small changes prompted by review.
266
        response = self._client.call_expecting_body(
2018.5.83 by Andrew Bennetts
Fix some test failures caused by the switch from unicode to UTF-8-encoded strs for revision IDs.
267
            'Repository.get_revision_graph', path, revision_id)
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
268
        if response[0][0] not in ['ok', 'nosuchrevision']:
269
            raise errors.UnexpectedSmartServerResponse(response[0])
2018.5.67 by Wouter van Heyst
Implement RemoteRepository.get_revision_graph (Wouter van Heyst, Robert Collins)
270
        if response[0][0] == 'ok':
271
            coded = response[1].read_body_bytes()
2018.5.105 by Andrew Bennetts
Implement revision_history caching for RemoteBranch.
272
            if coded == '':
273
                # no revisions in this repository!
274
                return {}
2018.5.83 by Andrew Bennetts
Fix some test failures caused by the switch from unicode to UTF-8-encoded strs for revision IDs.
275
            lines = coded.split('\n')
2018.5.67 by Wouter van Heyst
Implement RemoteRepository.get_revision_graph (Wouter van Heyst, Robert Collins)
276
            revision_graph = {}
277
            for line in lines:
278
                d = list(line.split())
279
                revision_graph[d[0]] = d[1:]
280
                
281
            return revision_graph
282
        else:
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
283
            response_body = response[1].read_body_bytes()
284
            assert response_body == ''
2018.5.67 by Wouter van Heyst
Implement RemoteRepository.get_revision_graph (Wouter van Heyst, Robert Collins)
285
            raise NoSuchRevision(self, revision_id)
286
2018.5.40 by Robert Collins
Implement a remote Repository.has_revision method.
287
    def has_revision(self, revision_id):
288
        """See Repository.has_revision()."""
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
289
        if revision_id is None:
290
            # The null revision is always present.
291
            return True
2018.5.42 by Robert Collins
Various hopefully improvements, but wsgi is broken, handing over to spiv :).
292
        path = self.bzrdir._path_for_remote_call(self._client)
2018.5.83 by Andrew Bennetts
Fix some test failures caused by the switch from unicode to UTF-8-encoded strs for revision IDs.
293
        response = self._client.call('Repository.has_revision', path, revision_id)
2018.5.158 by Andrew Bennetts
Return 'yes'/'no' rather than 'ok'/'no' from the Repository.has_revision smart command.
294
        assert response[0] in ('yes', 'no'), 'unexpected response code %s' % (response,)
295
        return response[0] == 'yes'
2018.5.40 by Robert Collins
Implement a remote Repository.has_revision method.
296
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
297
    def gather_stats(self, revid=None, committers=None):
2018.5.62 by Robert Collins
Stub out RemoteRepository.gather_stats while its implemented in parallel.
298
        """See Repository.gather_stats()."""
2018.10.3 by v.ladeuil+lp at free
more tests for gather_stats
299
        path = self.bzrdir._path_for_remote_call(self._client)
300
        if revid in (None, NULL_REVISION):
301
            fmt_revid = ''
302
        else:
2018.5.83 by Andrew Bennetts
Fix some test failures caused by the switch from unicode to UTF-8-encoded strs for revision IDs.
303
            fmt_revid = revid
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
304
        if committers is None or not committers:
2018.10.3 by v.ladeuil+lp at free
more tests for gather_stats
305
            fmt_committers = 'no'
306
        else:
307
            fmt_committers = 'yes'
2018.5.153 by Andrew Bennetts
Rename call2 to call_expecting_body, and other small changes prompted by review.
308
        response = self._client.call_expecting_body(
309
            'Repository.gather_stats', path, fmt_revid, fmt_committers)
2018.10.3 by v.ladeuil+lp at free
more tests for gather_stats
310
        assert response[0][0] == 'ok', \
311
            'unexpected response code %s' % (response[0],)
312
313
        body = response[1].read_body_bytes()
314
        result = {}
315
        for line in body.split('\n'):
316
            if not line:
317
                continue
318
            key, val_text = line.split(':')
319
            if key in ('revisions', 'size', 'committers'):
320
                result[key] = int(val_text)
321
            elif key in ('firstrev', 'latestrev'):
322
                values = val_text.split(' ')[1:]
323
                result[key] = (float(values[0]), long(values[1]))
324
325
        return result
2018.5.62 by Robert Collins
Stub out RemoteRepository.gather_stats while its implemented in parallel.
326
2018.5.60 by Robert Collins
More missing methods from RemoteBranch and RemoteRepository to let 'info' get further.
327
    def get_physical_lock_status(self):
328
        """See Repository.get_physical_lock_status()."""
329
        return False
330
2018.5.57 by Robert Collins
Implement RemoteRepository.is_shared (Robert Collins, Vincent Ladeuil).
331
    def is_shared(self):
332
        """See Repository.is_shared()."""
333
        path = self.bzrdir._path_for_remote_call(self._client)
334
        response = self._client.call('Repository.is_shared', path)
335
        assert response[0] in ('yes', 'no'), 'unexpected response code %s' % (response,)
336
        return response[0] == 'yes'
337
2018.5.60 by Robert Collins
More missing methods from RemoteBranch and RemoteRepository to let 'info' get further.
338
    def lock_read(self):
339
        # wrong eventually - want a local lock cache context
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
340
        if not self._lock_mode:
341
            self._lock_mode = 'r'
342
            self._lock_count = 1
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
343
            if self._real_repository is not None:
344
                self._real_repository.lock_read()
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
345
        else:
346
            self._lock_count += 1
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
347
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
348
    def _remote_lock_write(self, token):
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
349
        path = self.bzrdir._path_for_remote_call(self._client)
350
        if token is None:
351
            token = ''
352
        response = self._client.call('Repository.lock_write', path, token)
353
        if response[0] == 'ok':
354
            ok, token = response
355
            return token
356
        elif response[0] == 'LockContention':
357
            raise errors.LockContention('(remote lock)')
2018.5.95 by Andrew Bennetts
Add a Transport.is_readonly remote call, let {Branch,Repository}.lock_write remote call return UnlockableTransport, and miscellaneous test fixes.
358
        elif response[0] == 'UnlockableTransport':
359
            raise errors.UnlockableTransport(self.bzrdir.root_transport)
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
360
        else:
361
            assert False, 'unexpected response code %s' % (response,)
2018.5.60 by Robert Collins
More missing methods from RemoteBranch and RemoteRepository to let 'info' get further.
362
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
363
    def lock_write(self, token=None):
364
        if not self._lock_mode:
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
365
            self._lock_token = self._remote_lock_write(token)
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
366
            assert self._lock_token, 'Remote server did not return a token!'
367
            if self._real_repository is not None:
368
                self._real_repository.lock_write(token=self._lock_token)
369
            if token is not None:
370
                self._leave_lock = True
371
            else:
372
                self._leave_lock = False
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
373
            self._lock_mode = 'w'
374
            self._lock_count = 1
375
        elif self._lock_mode == 'r':
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
376
            raise errors.ReadOnlyError(self)
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
377
        else:
378
            self._lock_count += 1
379
        return self._lock_token
380
381
    def leave_lock_in_place(self):
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
382
        self._leave_lock = True
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
383
384
    def dont_leave_lock_in_place(self):
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
385
        self._leave_lock = False
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
386
387
    def _set_real_repository(self, repository):
388
        """Set the _real_repository for this repository.
389
390
        :param repository: The repository to fallback to for non-hpss
391
            implemented operations.
392
        """
2018.5.97 by Andrew Bennetts
Fix more tests.
393
        assert not isinstance(repository, RemoteRepository)
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
394
        self._real_repository = repository
395
        if self._lock_mode == 'w':
396
            # if we are already locked, the real repository must be able to
397
            # acquire the lock with our token.
398
            self._real_repository.lock_write(self._lock_token)
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
399
        elif self._lock_mode == 'r':
400
            self._real_repository.lock_read()
2018.5.60 by Robert Collins
More missing methods from RemoteBranch and RemoteRepository to let 'info' get further.
401
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
402
    def _unlock(self, token):
403
        path = self.bzrdir._path_for_remote_call(self._client)
404
        response = self._client.call('Repository.unlock', path, token)
405
        if response == ('ok',):
406
            return
407
        elif response[0] == 'TokenMismatch':
408
            raise errors.TokenMismatch(token, '(remote token)')
409
        else:
410
            assert False, 'unexpected response code %s' % (response,)
411
2018.5.60 by Robert Collins
More missing methods from RemoteBranch and RemoteRepository to let 'info' get further.
412
    def unlock(self):
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
413
        self._lock_count -= 1
414
        if not self._lock_count:
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
415
            mode = self._lock_mode
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
416
            self._lock_mode = None
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
417
            if self._real_repository is not None:
418
                self._real_repository.unlock()
419
            if mode != 'w':
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
420
                # Only write-locked repositories need to make a remote method
421
                # call to perfom the unlock.
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
422
                return
423
            assert self._lock_token, 'Locked, but no token!'
424
            token = self._lock_token
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
425
            self._lock_token = None
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
426
            if not self._leave_lock:
427
                self._unlock(token)
2018.5.60 by Robert Collins
More missing methods from RemoteBranch and RemoteRepository to let 'info' get further.
428
429
    def break_lock(self):
2018.5.78 by Andrew Bennetts
Implement RemoteRepository.lock_write/unlock to expect and send tokens over the
430
        # should hand off to the network
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
431
        self._ensure_real()
2018.5.60 by Robert Collins
More missing methods from RemoteBranch and RemoteRepository to let 'info' get further.
432
        return self._real_repository.break_lock()
433
2018.18.8 by Ian Clatworthy
Tarball proxy code & tests
434
    def _get_tarball(self, compression):
2018.18.25 by Martin Pool
Repository.tarball fixes for python2.4
435
        """Return a TemporaryFile containing a repository tarball"""
436
        import tempfile
2018.18.8 by Ian Clatworthy
Tarball proxy code & tests
437
        path = self.bzrdir._path_for_remote_call(self._client)
2018.18.14 by Martin Pool
merge hpss again; restore incorrectly removed RemoteRepository.break_lock
438
        response, protocol = self._client.call_expecting_body(
439
            'Repository.tarball', path, compression)
2018.18.8 by Ian Clatworthy
Tarball proxy code & tests
440
        assert response[0] in ('ok', 'failure'), \
441
            'unexpected response code %s' % (response,)
442
        if response[0] == 'ok':
443
            # Extract the tarball and return it
2018.18.25 by Martin Pool
Repository.tarball fixes for python2.4
444
            t = tempfile.NamedTemporaryFile()
445
            # TODO: rpc layer should read directly into it...
446
            t.write(protocol.read_body_bytes())
447
            t.seek(0)
448
            return t
2018.18.8 by Ian Clatworthy
Tarball proxy code & tests
449
        else:
450
            raise errors.SmartServerError(error_code=response)
451
2440.1.1 by Martin Pool
Add new Repository.sprout,
452
    def sprout(self, to_bzrdir, revision_id=None):
453
        # TODO: Option to control what format is created?
454
        to_repo = to_bzrdir.create_repository()
2018.18.24 by Martin Pool
Merge Repository.sprout refactoring, and make that use Repository.tarball
455
        self._copy_repository_tarball(to_repo, revision_id)
2440.1.1 by Martin Pool
Add new Repository.sprout,
456
        return to_repo
457
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
458
    ### These methods are just thin shims to the VFS object for now.
459
460
    def revision_tree(self, revision_id):
461
        self._ensure_real()
462
        return self._real_repository.revision_tree(revision_id)
463
464
    def get_commit_builder(self, branch, parents, config, timestamp=None,
465
                           timezone=None, committer=None, revprops=None,
466
                           revision_id=None):
467
        # FIXME: It ought to be possible to call this without immediately
468
        # triggering _ensure_real.  For now it's the easiest thing to do.
469
        self._ensure_real()
470
        builder = self._real_repository.get_commit_builder(branch, parents,
471
                config, timestamp=timestamp, timezone=timezone,
472
                committer=committer, revprops=revprops, revision_id=revision_id)
473
        # Make the builder use this RemoteRepository rather than the real one.
474
        builder.repository = self
475
        return builder
476
477
    @needs_write_lock
478
    def add_inventory(self, revid, inv, parents):
479
        self._ensure_real()
480
        return self._real_repository.add_inventory(revid, inv, parents)
481
482
    @needs_write_lock
483
    def add_revision(self, rev_id, rev, inv=None, config=None):
484
        self._ensure_real()
485
        return self._real_repository.add_revision(
486
            rev_id, rev, inv=inv, config=config)
487
488
    @needs_read_lock
489
    def get_inventory(self, revision_id):
490
        self._ensure_real()
491
        return self._real_repository.get_inventory(revision_id)
492
493
    @needs_read_lock
494
    def get_revision(self, revision_id):
495
        self._ensure_real()
496
        return self._real_repository.get_revision(revision_id)
497
498
    @property
499
    def weave_store(self):
500
        self._ensure_real()
501
        return self._real_repository.weave_store
502
503
    def get_transaction(self):
504
        self._ensure_real()
505
        return self._real_repository.get_transaction()
506
507
    @needs_read_lock
2018.5.138 by Robert Collins
Merge bzr.dev.
508
    def clone(self, a_bzrdir, revision_id=None):
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
509
        self._ensure_real()
2018.5.138 by Robert Collins
Merge bzr.dev.
510
        return self._real_repository.clone(a_bzrdir, revision_id=revision_id)
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
511
512
    def make_working_trees(self):
2018.5.120 by Robert Collins
The Repository API ``make_working_trees`` is now permitted to return
513
        """RemoteRepositories never create working trees by default."""
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
514
        return False
515
516
    def fetch(self, source, revision_id=None, pb=None):
517
        self._ensure_real()
518
        return self._real_repository.fetch(
519
            source, revision_id=revision_id, pb=pb)
520
521
    @property
522
    def control_weaves(self):
523
        self._ensure_real()
524
        return self._real_repository.control_weaves
525
526
    @needs_read_lock
527
    def get_ancestry(self, revision_id):
528
        self._ensure_real()
529
        return self._real_repository.get_ancestry(revision_id)
530
531
    @needs_read_lock
532
    def get_inventory_weave(self):
533
        self._ensure_real()
534
        return self._real_repository.get_inventory_weave()
535
536
    def fileids_altered_by_revision_ids(self, revision_ids):
537
        self._ensure_real()
538
        return self._real_repository.fileids_altered_by_revision_ids(revision_ids)
539
540
    @needs_read_lock
541
    def get_signature_text(self, revision_id):
542
        self._ensure_real()
543
        return self._real_repository.get_signature_text(revision_id)
544
545
    @needs_read_lock
546
    def get_revision_graph_with_ghosts(self, revision_ids=None):
547
        self._ensure_real()
548
        return self._real_repository.get_revision_graph_with_ghosts(
549
            revision_ids=revision_ids)
550
551
    @needs_read_lock
552
    def get_inventory_xml(self, revision_id):
553
        self._ensure_real()
554
        return self._real_repository.get_inventory_xml(revision_id)
555
556
    def deserialise_inventory(self, revision_id, xml):
557
        self._ensure_real()
558
        return self._real_repository.deserialise_inventory(revision_id, xml)
559
560
    def reconcile(self, other=None, thorough=False):
561
        self._ensure_real()
562
        return self._real_repository.reconcile(other=other, thorough=thorough)
563
        
564
    def all_revision_ids(self):
565
        self._ensure_real()
566
        return self._real_repository.all_revision_ids()
567
    
568
    @needs_read_lock
569
    def get_deltas_for_revisions(self, revisions):
570
        self._ensure_real()
571
        return self._real_repository.get_deltas_for_revisions(revisions)
572
573
    @needs_read_lock
574
    def get_revision_delta(self, revision_id):
575
        self._ensure_real()
576
        return self._real_repository.get_revision_delta(revision_id)
577
578
    @needs_read_lock
579
    def revision_trees(self, revision_ids):
580
        self._ensure_real()
581
        return self._real_repository.revision_trees(revision_ids)
582
583
    @needs_read_lock
584
    def get_revision_reconcile(self, revision_id):
585
        self._ensure_real()
586
        return self._real_repository.get_revision_reconcile(revision_id)
587
588
    @needs_read_lock
589
    def check(self, revision_ids):
590
        self._ensure_real()
591
        return self._real_repository.check(revision_ids)
592
2018.5.138 by Robert Collins
Merge bzr.dev.
593
    def copy_content_into(self, destination, revision_id=None):
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
594
        self._ensure_real()
595
        return self._real_repository.copy_content_into(
2018.5.138 by Robert Collins
Merge bzr.dev.
596
            destination, revision_id=revision_id)
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
597
2018.18.24 by Martin Pool
Merge Repository.sprout refactoring, and make that use Repository.tarball
598
    def _copy_repository_tarball(self, destination, revision_id=None):
2018.18.10 by Martin Pool
copy_content_into from Remote repositories by using temporary directories on both ends.
599
        # get a tarball of the remote repository, and copy from that into the
600
        # destination
601
        from bzrlib import osutils
2018.18.9 by Martin Pool
remote Repository.tarball builds a temporary directory and tars that
602
        import tarfile
2018.18.10 by Martin Pool
copy_content_into from Remote repositories by using temporary directories on both ends.
603
        import tempfile
2018.18.9 by Martin Pool
remote Repository.tarball builds a temporary directory and tars that
604
        from StringIO import StringIO
2018.18.20 by Martin Pool
Route branch operations through remote copy_content_into
605
        # TODO: Maybe a progress bar while streaming the tarball?
606
        note("Copying repository content as tarball...")
2018.18.25 by Martin Pool
Repository.tarball fixes for python2.4
607
        tar_file = self._get_tarball('bz2')
2018.18.10 by Martin Pool
copy_content_into from Remote repositories by using temporary directories on both ends.
608
        try:
2018.18.25 by Martin Pool
Repository.tarball fixes for python2.4
609
            tar = tarfile.open('repository', fileobj=tar_file,
610
                mode='r|bz2')
611
            tmpdir = tempfile.mkdtemp()
612
            try:
613
                _extract_tar(tar, tmpdir)
614
                tmp_bzrdir = BzrDir.open(tmpdir)
615
                tmp_repo = tmp_bzrdir.open_repository()
616
                tmp_repo.copy_content_into(destination, revision_id)
617
            finally:
618
                osutils.rmtree(tmpdir)
2018.18.10 by Martin Pool
copy_content_into from Remote repositories by using temporary directories on both ends.
619
        finally:
2018.18.25 by Martin Pool
Repository.tarball fixes for python2.4
620
            tar_file.close()
2018.18.10 by Martin Pool
copy_content_into from Remote repositories by using temporary directories on both ends.
621
        # TODO: if the server doesn't support this operation, maybe do it the
622
        # slow way using the _real_repository?
2018.18.23 by Martin Pool
review cleanups
623
        #
624
        # TODO: Suggestion from john: using external tar is much faster than
625
        # python's tarfile library, but it may not work on windows.
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
626
627
    def set_make_working_trees(self, new_value):
628
        raise NotImplementedError(self.set_make_working_trees)
629
630
    @needs_write_lock
631
    def sign_revision(self, revision_id, gpg_strategy):
632
        self._ensure_real()
633
        return self._real_repository.sign_revision(revision_id, gpg_strategy)
634
635
    @needs_read_lock
636
    def get_revisions(self, revision_ids):
637
        self._ensure_real()
638
        return self._real_repository.get_revisions(revision_ids)
639
640
    def supports_rich_root(self):
2018.5.84 by Andrew Bennetts
Merge in supports-rich-root, another test passing.
641
        self._ensure_real()
642
        return self._real_repository.supports_rich_root()
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
643
2018.5.83 by Andrew Bennetts
Fix some test failures caused by the switch from unicode to UTF-8-encoded strs for revision IDs.
644
    def iter_reverse_revision_history(self, revision_id):
645
        self._ensure_real()
646
        return self._real_repository.iter_reverse_revision_history(revision_id)
647
2018.5.96 by Andrew Bennetts
Merge from bzr.dev, resolving the worst of the semantic conflicts, but there's
648
    @property
649
    def _serializer(self):
650
        self._ensure_real()
651
        return self._real_repository._serializer
652
2018.5.97 by Andrew Bennetts
Fix more tests.
653
    def store_revision_signature(self, gpg_strategy, plaintext, revision_id):
654
        self._ensure_real()
655
        return self._real_repository.store_revision_signature(
656
            gpg_strategy, plaintext, revision_id)
657
658
    def has_signature_for_revision_id(self, revision_id):
659
        self._ensure_real()
660
        return self._real_repository.has_signature_for_revision_id(revision_id)
661
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
662
2018.5.127 by Andrew Bennetts
Fix most of the lockable_files tests for RemoteBranchLockableFiles.
663
class RemoteBranchLockableFiles(LockableFiles):
2018.5.59 by Robert Collins
Get BranchConfig working somewhat on RemoteBranches (Robert Collins, Vincent Ladeuil).
664
    """A 'LockableFiles' implementation that talks to a smart server.
665
    
666
    This is not a public interface class.
667
    """
668
669
    def __init__(self, bzrdir, _client):
670
        self.bzrdir = bzrdir
671
        self._client = _client
2018.5.135 by Andrew Bennetts
Prevent remote branch clients from determining the 'right' mode for control files, because we don't want clients setting the mode anyway.
672
        self._need_find_modes = True
2018.5.133 by Andrew Bennetts
All TestLockableFiles_RemoteLockDir tests passing.
673
        LockableFiles.__init__(
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
674
            self, bzrdir.get_branch_transport(None),
2018.5.133 by Andrew Bennetts
All TestLockableFiles_RemoteLockDir tests passing.
675
            'lock', lockdir.LockDir)
2018.5.59 by Robert Collins
Get BranchConfig working somewhat on RemoteBranches (Robert Collins, Vincent Ladeuil).
676
2018.5.135 by Andrew Bennetts
Prevent remote branch clients from determining the 'right' mode for control files, because we don't want clients setting the mode anyway.
677
    def _find_modes(self):
678
        # RemoteBranches don't let the client set the mode of control files.
679
        self._dir_mode = None
680
        self._file_mode = None
681
2018.5.59 by Robert Collins
Get BranchConfig working somewhat on RemoteBranches (Robert Collins, Vincent Ladeuil).
682
    def get(self, path):
683
        """'get' a remote path as per the LockableFiles interface.
684
685
        :param path: the file to 'get'. If this is 'branch.conf', we do not
686
             just retrieve a file, instead we ask the smart server to generate
687
             a configuration for us - which is retrieved as an INI file.
688
        """
2018.5.133 by Andrew Bennetts
All TestLockableFiles_RemoteLockDir tests passing.
689
        if path == 'branch.conf':
690
            path = self.bzrdir._path_for_remote_call(self._client)
2018.5.153 by Andrew Bennetts
Rename call2 to call_expecting_body, and other small changes prompted by review.
691
            response = self._client.call_expecting_body(
692
                'Branch.get_config_file', path)
2018.5.133 by Andrew Bennetts
All TestLockableFiles_RemoteLockDir tests passing.
693
            assert response[0][0] == 'ok', \
694
                'unexpected response code %s' % (response[0],)
695
            return StringIO(response[1].read_body_bytes())
696
        else:
697
            # VFS fallback.
698
            return LockableFiles.get(self, path)
2018.5.59 by Robert Collins
Get BranchConfig working somewhat on RemoteBranches (Robert Collins, Vincent Ladeuil).
699
700
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
701
class RemoteBranchFormat(branch.BranchFormat):
702
2018.5.124 by Robert Collins
Fix test_format_initialize_find_open by delegating Branch formt lookup to the BzrDir, where it should have stayed from the start.
703
    def __eq__(self, other):
704
        return (isinstance(other, RemoteBranchFormat) and 
705
            self.__dict__ == other.__dict__)
706
2018.5.60 by Robert Collins
More missing methods from RemoteBranch and RemoteRepository to let 'info' get further.
707
    def get_format_description(self):
708
        return 'Remote BZR Branch'
709
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
710
    def get_format_string(self):
711
        return 'Remote BZR Branch'
712
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
713
    def open(self, a_bzrdir):
1752.2.72 by Andrew Bennetts
Make Remote* classes in remote.py more consistent and remove some dead code.
714
        assert isinstance(a_bzrdir, RemoteBzrDir)
715
        return a_bzrdir.open_branch()
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
716
717
    def initialize(self, a_bzrdir):
718
        assert isinstance(a_bzrdir, RemoteBzrDir)
719
        return a_bzrdir.create_branch()
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
720
721
722
class RemoteBranch(branch.Branch):
723
    """Branch stored on a server accessed by HPSS RPC.
724
725
    At the moment most operations are mapped down to simple file operations.
726
    """
1752.2.30 by Martin Pool
Start adding a RemoteBzrDir, etc
727
2018.5.51 by Wouter van Heyst
Test and implement RemoteBranch.last_revision_info()
728
    def __init__(self, remote_bzrdir, remote_repository, real_branch=None,
729
        _client=None):
2018.5.34 by Robert Collins
Get test_remote.BasicRemoteObjectTests.test_open_remote_branch passing by implementing a remote method BzrDir.find_repository.
730
        """Create a RemoteBranch instance.
731
732
        :param real_branch: An optional local implementation of the branch
733
            format, usually accessing the data via the VFS.
2018.5.51 by Wouter van Heyst
Test and implement RemoteBranch.last_revision_info()
734
        :param _client: Private parameter for testing.
2018.5.34 by Robert Collins
Get test_remote.BasicRemoteObjectTests.test_open_remote_branch passing by implementing a remote method BzrDir.find_repository.
735
        """
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
736
        # We intentionally don't call the parent class's __init__, because it
737
        # will try to assign to self.tags, which is a property in this subclass.
738
        # And the parent's __init__ doesn't do much anyway.
2018.5.105 by Andrew Bennetts
Implement revision_history caching for RemoteBranch.
739
        self._revision_history_cache = None
1752.2.64 by Andrew Bennetts
Improve how RemoteBzrDir.open_branch works to handle references and not double-open repositories.
740
        self.bzrdir = remote_bzrdir
2018.5.51 by Wouter van Heyst
Test and implement RemoteBranch.last_revision_info()
741
        if _client is not None:
742
            self._client = _client
743
        else:
2018.5.159 by Andrew Bennetts
Rename SmartClient to _SmartClient.
744
            self._client = client._SmartClient(self.bzrdir._medium)
1752.2.64 by Andrew Bennetts
Improve how RemoteBzrDir.open_branch works to handle references and not double-open repositories.
745
        self.repository = remote_repository
2018.5.34 by Robert Collins
Get test_remote.BasicRemoteObjectTests.test_open_remote_branch passing by implementing a remote method BzrDir.find_repository.
746
        if real_branch is not None:
747
            self._real_branch = real_branch
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
748
            # Give the remote repository the matching real repo.
2018.5.97 by Andrew Bennetts
Fix more tests.
749
            real_repo = self._real_branch.repository
750
            if isinstance(real_repo, RemoteRepository):
751
                real_repo._ensure_real()
752
                real_repo = real_repo._real_repository
753
            self.repository._set_real_repository(real_repo)
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
754
            # Give the branch the remote repository to let fast-pathing happen.
755
            self._real_branch.repository = self.repository
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
756
        else:
757
            self._real_branch = None
2018.5.59 by Robert Collins
Get BranchConfig working somewhat on RemoteBranches (Robert Collins, Vincent Ladeuil).
758
        # Fill out expected attributes of branch for bzrlib api users.
1752.2.64 by Andrew Bennetts
Improve how RemoteBzrDir.open_branch works to handle references and not double-open repositories.
759
        self._format = RemoteBranchFormat()
2018.5.55 by Robert Collins
Give RemoteBranch a base url in line with the Branch protocol.
760
        self.base = self.bzrdir.root_transport.base
2018.5.169 by Andrew Bennetts
Add a _server_formats flag to BzrDir.open_from_transport and BzrDirFormat.find_format, make RemoteBranch.control_files into a property.
761
        self._control_files = None
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
762
        self._lock_mode = None
763
        self._lock_token = None
764
        self._lock_count = 0
765
        self._leave_lock = False
1752.2.64 by Andrew Bennetts
Improve how RemoteBzrDir.open_branch works to handle references and not double-open repositories.
766
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
767
    def _ensure_real(self):
768
        """Ensure that there is a _real_branch set.
769
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
770
        Used before calls to self._real_branch.
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
771
        """
772
        if not self._real_branch:
773
            assert vfs.vfs_enabled()
774
            self.bzrdir._ensure_real()
775
            self._real_branch = self.bzrdir._real_bzrdir.open_branch()
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
776
            # Give the remote repository the matching real repo.
2018.5.97 by Andrew Bennetts
Fix more tests.
777
            real_repo = self._real_branch.repository
778
            if isinstance(real_repo, RemoteRepository):
779
                real_repo._ensure_real()
780
                real_repo = real_repo._real_repository
781
            self.repository._set_real_repository(real_repo)
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
782
            # Give the branch the remote repository to let fast-pathing happen.
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
783
            self._real_branch.repository = self.repository
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
784
            # XXX: deal with _lock_mode == 'w'
785
            if self._lock_mode == 'r':
786
                self._real_branch.lock_read()
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
787
2018.5.169 by Andrew Bennetts
Add a _server_formats flag to BzrDir.open_from_transport and BzrDirFormat.find_format, make RemoteBranch.control_files into a property.
788
    @property
789
    def control_files(self):
790
        # Defer actually creating RemoteBranchLockableFiles until its needed,
791
        # because it triggers an _ensure_real that we otherwise might not need.
792
        if self._control_files is None:
793
            self._control_files = RemoteBranchLockableFiles(
794
                self.bzrdir, self._client)
795
        return self._control_files
796
2018.5.166 by Andrew Bennetts
Small changes in response to Aaron's review.
797
    def _get_checkout_format(self):
798
        self._ensure_real()
799
        return self._real_branch._get_checkout_format()
800
2018.5.60 by Robert Collins
More missing methods from RemoteBranch and RemoteRepository to let 'info' get further.
801
    def get_physical_lock_status(self):
802
        """See Branch.get_physical_lock_status()."""
803
        # should be an API call to the server, as branches must be lockable.
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
804
        self._ensure_real()
2018.5.60 by Robert Collins
More missing methods from RemoteBranch and RemoteRepository to let 'info' get further.
805
        return self._real_branch.get_physical_lock_status()
806
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
807
    def lock_read(self):
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
808
        if not self._lock_mode:
809
            self._lock_mode = 'r'
810
            self._lock_count = 1
811
            if self._real_branch is not None:
812
                self._real_branch.lock_read()
813
        else:
814
            self._lock_count += 1
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
815
2018.5.142 by Andrew Bennetts
Change Branch.lock_token to only accept and receive the branch lock token (rather than the branch and repo lock tokens).
816
    def _remote_lock_write(self, token):
817
        if token is None:
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
818
            branch_token = repo_token = ''
819
        else:
2018.5.142 by Andrew Bennetts
Change Branch.lock_token to only accept and receive the branch lock token (rather than the branch and repo lock tokens).
820
            branch_token = token
821
            repo_token = self.repository.lock_write()
822
            self.repository.unlock()
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
823
        path = self.bzrdir._path_for_remote_call(self._client)
824
        response = self._client.call('Branch.lock_write', path, branch_token,
825
                                     repo_token)
826
        if response[0] == 'ok':
827
            ok, branch_token, repo_token = response
828
            return branch_token, repo_token
829
        elif response[0] == 'LockContention':
830
            raise errors.LockContention('(remote lock)')
831
        elif response[0] == 'TokenMismatch':
2018.5.142 by Andrew Bennetts
Change Branch.lock_token to only accept and receive the branch lock token (rather than the branch and repo lock tokens).
832
            raise errors.TokenMismatch(token, '(remote token)')
2018.5.95 by Andrew Bennetts
Add a Transport.is_readonly remote call, let {Branch,Repository}.lock_write remote call return UnlockableTransport, and miscellaneous test fixes.
833
        elif response[0] == 'UnlockableTransport':
834
            raise errors.UnlockableTransport(self.bzrdir.root_transport)
2018.5.123 by Robert Collins
Translate ReadOnlyError in RemoteBranch._remote_lock_write.
835
        elif response[0] == 'ReadOnlyError':
836
            raise errors.ReadOnlyError(self)
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
837
        else:
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
838
            assert False, 'unexpected response code %r' % (response,)
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
839
            
2018.5.142 by Andrew Bennetts
Change Branch.lock_token to only accept and receive the branch lock token (rather than the branch and repo lock tokens).
840
    def lock_write(self, token=None):
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
841
        if not self._lock_mode:
2018.5.142 by Andrew Bennetts
Change Branch.lock_token to only accept and receive the branch lock token (rather than the branch and repo lock tokens).
842
            remote_tokens = self._remote_lock_write(token)
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
843
            self._lock_token, self._repo_lock_token = remote_tokens
844
            assert self._lock_token, 'Remote server did not return a token!'
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
845
            # TODO: We really, really, really don't want to call _ensure_real
846
            # here, but it's the easiest way to ensure coherency between the
847
            # state of the RemoteBranch and RemoteRepository objects and the
848
            # physical locks.  If we don't materialise the real objects here,
849
            # then getting everything in the right state later is complex, so
850
            # for now we just do it the lazy way.
851
            #   -- Andrew Bennetts, 2007-02-22.
852
            self._ensure_real()
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
853
            if self._real_branch is not None:
2018.5.142 by Andrew Bennetts
Change Branch.lock_token to only accept and receive the branch lock token (rather than the branch and repo lock tokens).
854
                self._real_branch.repository.lock_write(
855
                    token=self._repo_lock_token)
856
                try:
857
                    self._real_branch.lock_write(token=self._lock_token)
858
                finally:
859
                    self._real_branch.repository.unlock()
860
            if token is not None:
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
861
                self._leave_lock = True
862
            else:
2018.5.142 by Andrew Bennetts
Change Branch.lock_token to only accept and receive the branch lock token (rather than the branch and repo lock tokens).
863
                # XXX: this case seems to be unreachable; token cannot be None.
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
864
                self._leave_lock = False
865
            self._lock_mode = 'w'
866
            self._lock_count = 1
867
        elif self._lock_mode == 'r':
868
            raise errors.ReadOnlyTransaction
869
        else:
2018.5.142 by Andrew Bennetts
Change Branch.lock_token to only accept and receive the branch lock token (rather than the branch and repo lock tokens).
870
            if token is not None:
871
                # A token was given to lock_write, and we're relocking, so check
872
                # that the given token actually matches the one we already have.
873
                if token != self._lock_token:
874
                    raise errors.TokenMismatch(token, self._lock_token)
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
875
            self._lock_count += 1
2018.5.142 by Andrew Bennetts
Change Branch.lock_token to only accept and receive the branch lock token (rather than the branch and repo lock tokens).
876
        return self._lock_token
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
877
878
    def _unlock(self, branch_token, repo_token):
879
        path = self.bzrdir._path_for_remote_call(self._client)
880
        response = self._client.call('Branch.unlock', path, branch_token,
881
                                     repo_token)
882
        if response == ('ok',):
883
            return
884
        elif response[0] == 'TokenMismatch':
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
885
            raise errors.TokenMismatch(
886
                str((branch_token, repo_token)), '(remote tokens)')
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
887
        else:
888
            assert False, 'unexpected response code %s' % (response,)
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
889
890
    def unlock(self):
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
891
        self._lock_count -= 1
892
        if not self._lock_count:
2018.5.105 by Andrew Bennetts
Implement revision_history caching for RemoteBranch.
893
            self._clear_cached_state()
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
894
            mode = self._lock_mode
895
            self._lock_mode = None
896
            if self._real_branch is not None:
2018.15.1 by Andrew Bennetts
All branch_implementations/test_locking tests passing.
897
                if not self._leave_lock:
898
                    # If this RemoteBranch will remove the physical lock for the
899
                    # repository, make sure the _real_branch doesn't do it
900
                    # first.  (Because the _real_branch's repository is set to
901
                    # be the RemoteRepository.)
902
                    self._real_branch.repository.leave_lock_in_place()
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
903
                self._real_branch.unlock()
904
            if mode != 'w':
2018.5.163 by Andrew Bennetts
Deal with various review comments from Robert.
905
                # Only write-locked branched need to make a remote method call
906
                # to perfom the unlock.
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
907
                return
908
            assert self._lock_token, 'Locked, but no token!'
909
            branch_token = self._lock_token
910
            repo_token = self._repo_lock_token
911
            self._lock_token = None
912
            self._repo_lock_token = None
913
            if not self._leave_lock:
914
                self._unlock(branch_token, repo_token)
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
915
916
    def break_lock(self):
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
917
        self._ensure_real()
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
918
        return self._real_branch.break_lock()
1752.2.31 by Martin Pool
[broken] some support for write operations over hpss
919
2018.5.79 by Andrew Bennetts
Implement RemoteBranch.lock_write/unlock as smart operations.
920
    def leave_lock_in_place(self):
921
        self._leave_lock = True
922
923
    def dont_leave_lock_in_place(self):
924
        self._leave_lock = False
925
2018.5.51 by Wouter van Heyst
Test and implement RemoteBranch.last_revision_info()
926
    def last_revision_info(self):
927
        """See Branch.last_revision_info()."""
928
        path = self.bzrdir._path_for_remote_call(self._client)
929
        response = self._client.call('Branch.last_revision_info', path)
2018.5.52 by Wouter van Heyst
Provide more information when encountering unexpected responses from a smart
930
        assert response[0] == 'ok', 'unexpected response code %s' % (response,)
2018.5.51 by Wouter van Heyst
Test and implement RemoteBranch.last_revision_info()
931
        revno = int(response[1])
2018.5.83 by Andrew Bennetts
Fix some test failures caused by the switch from unicode to UTF-8-encoded strs for revision IDs.
932
        last_revision = response[2]
2018.5.51 by Wouter van Heyst
Test and implement RemoteBranch.last_revision_info()
933
        return (revno, last_revision)
934
2018.5.105 by Andrew Bennetts
Implement revision_history caching for RemoteBranch.
935
    def _gen_revision_history(self):
936
        """See Branch._gen_revision_history()."""
2018.5.42 by Robert Collins
Various hopefully improvements, but wsgi is broken, handing over to spiv :).
937
        path = self.bzrdir._path_for_remote_call(self._client)
2018.5.153 by Andrew Bennetts
Rename call2 to call_expecting_body, and other small changes prompted by review.
938
        response = self._client.call_expecting_body(
939
            'Branch.revision_history', path)
940
        assert response[0][0] == 'ok', ('unexpected response code %s'
941
                                        % (response[0],))
2018.5.83 by Andrew Bennetts
Fix some test failures caused by the switch from unicode to UTF-8-encoded strs for revision IDs.
942
        result = response[1].read_body_bytes().split('\x00')
2018.5.38 by Robert Collins
Implement RemoteBranch.revision_history().
943
        if result == ['']:
944
            return []
945
        return result
1752.2.30 by Martin Pool
Start adding a RemoteBzrDir, etc
946
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
947
    @needs_write_lock
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
948
    def set_revision_history(self, rev_history):
2018.12.3 by Andrew Bennetts
Add a Branch.set_last_revision smart method, and make RemoteBranch.set_revision_history use it.
949
        # Send just the tip revision of the history; the server will generate
950
        # the full history from that.  If the revision doesn't exist in this
951
        # branch, NoSuchRevision will be raised.
952
        path = self.bzrdir._path_for_remote_call(self._client)
953
        if rev_history == []:
2018.5.170 by Andrew Bennetts
Use 'null:' instead of '' to mean NULL_REVISION on the wire.
954
            rev_id = 'null:'
2018.12.3 by Andrew Bennetts
Add a Branch.set_last_revision smart method, and make RemoteBranch.set_revision_history use it.
955
        else:
956
            rev_id = rev_history[-1]
2418.5.12 by John Arbash Meinel
Move functions from BzrBranch to base Branch object.
957
        self._clear_cached_state()
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
958
        response = self._client.call('Branch.set_last_revision',
959
            path, self._lock_token, self._repo_lock_token, rev_id)
2018.12.3 by Andrew Bennetts
Add a Branch.set_last_revision smart method, and make RemoteBranch.set_revision_history use it.
960
        if response[0] == 'NoSuchRevision':
961
            raise NoSuchRevision(self, rev_id)
962
        else:
963
            assert response == ('ok',), (
964
                'unexpected response code %r' % (response,))
2018.5.105 by Andrew Bennetts
Implement revision_history caching for RemoteBranch.
965
        self._cache_revision_history(rev_history)
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
966
967
    def get_parent(self):
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
968
        self._ensure_real()
1752.2.52 by Andrew Bennetts
Flesh out more Remote* methods needed to open and initialise remote branches/trees/repositories.
969
        return self._real_branch.get_parent()
970
        
1752.2.63 by Andrew Bennetts
Delegate set_parent.
971
    def set_parent(self, url):
2018.5.70 by Robert Collins
Only try to get real repositories when an operation requires them.
972
        self._ensure_real()
1752.2.63 by Andrew Bennetts
Delegate set_parent.
973
        return self._real_branch.set_parent(url)
974
        
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
975
    def get_config(self):
976
        return RemoteBranchConfig(self)
977
2018.5.94 by Andrew Bennetts
Various small changes in aid of making tests pass (including deleting one invalid test).
978
    def sprout(self, to_bzrdir, revision_id=None):
979
        # Like Branch.sprout, except that it sprouts a branch in the default
980
        # format, because RemoteBranches can't be created at arbitrary URLs.
981
        # XXX: if to_bzrdir is a RemoteBranch, this should perhaps do
982
        # to_bzrdir.create_branch...
983
        result = branch.BranchFormat.get_default_format().initialize(to_bzrdir)
2018.18.20 by Martin Pool
Route branch operations through remote copy_content_into
984
        self.copy_content_into(result, revision_id=revision_id)
2018.5.94 by Andrew Bennetts
Various small changes in aid of making tests pass (including deleting one invalid test).
985
        result.set_parent(self.bzrdir.root_transport.base)
986
        return result
987
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
988
    @needs_write_lock
989
    def append_revision(self, *revision_ids):
990
        self._ensure_real()
991
        return self._real_branch.append_revision(*revision_ids)
992
993
    @needs_write_lock
994
    def pull(self, source, overwrite=False, stop_revision=None):
995
        self._ensure_real()
996
        self._real_branch.pull(
997
            source, overwrite=overwrite, stop_revision=stop_revision)
998
2018.14.3 by Andrew Bennetts
Make a couple more branch_implementations tests pass.
999
    @needs_read_lock
1000
    def push(self, target, overwrite=False, stop_revision=None):
1001
        self._ensure_real()
2018.5.97 by Andrew Bennetts
Fix more tests.
1002
        return self._real_branch.push(
2018.14.3 by Andrew Bennetts
Make a couple more branch_implementations tests pass.
1003
            target, overwrite=overwrite, stop_revision=stop_revision)
1004
1005
    def is_locked(self):
1006
        return self._lock_count >= 1
1007
2018.5.83 by Andrew Bennetts
Fix some test failures caused by the switch from unicode to UTF-8-encoded strs for revision IDs.
1008
    def set_last_revision_info(self, revno, revision_id):
1009
        self._ensure_real()
2018.5.105 by Andrew Bennetts
Implement revision_history caching for RemoteBranch.
1010
        self._clear_cached_state()
2018.5.83 by Andrew Bennetts
Fix some test failures caused by the switch from unicode to UTF-8-encoded strs for revision IDs.
1011
        return self._real_branch.set_last_revision_info(revno, revision_id)
1012
2018.5.95 by Andrew Bennetts
Add a Transport.is_readonly remote call, let {Branch,Repository}.lock_write remote call return UnlockableTransport, and miscellaneous test fixes.
1013
    def generate_revision_history(self, revision_id, last_rev=None,
1014
                                  other_branch=None):
1015
        self._ensure_real()
1016
        return self._real_branch.generate_revision_history(
1017
            revision_id, last_rev=last_rev, other_branch=other_branch)
1018
2018.5.96 by Andrew Bennetts
Merge from bzr.dev, resolving the worst of the semantic conflicts, but there's
1019
    @property
1020
    def tags(self):
1021
        self._ensure_real()
1022
        return self._real_branch.tags
1023
2018.5.97 by Andrew Bennetts
Fix more tests.
1024
    def set_push_location(self, location):
1025
        self._ensure_real()
1026
        return self._real_branch.set_push_location(location)
1027
1028
    def update_revisions(self, other, stop_revision=None):
1029
        self._ensure_real()
1030
        return self._real_branch.update_revisions(
1031
            other, stop_revision=stop_revision)
1032
1752.2.30 by Martin Pool
Start adding a RemoteBzrDir, etc
1033
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
1034
class RemoteBranchConfig(BranchConfig):
1035
1036
    def username(self):
1037
        self.branch._ensure_real()
1038
        return self.branch._real_branch.get_config().username()
1039
2018.14.2 by Andrew Bennetts
All but one repository_implementation tests for RemoteRepository passing.
1040
    def _get_branch_data_config(self):
1041
        self.branch._ensure_real()
1042
        if self._branch_data_config is None:
1043
            self._branch_data_config = TreeConfig(self.branch._real_branch)
1044
        return self._branch_data_config
1045
2018.18.25 by Martin Pool
Repository.tarball fixes for python2.4
1046
1047
def _extract_tar(tar, to_dir):
1048
    """Extract all the contents of a tarfile object.
1049
1050
    A replacement for extractall, which is not present in python2.4
1051
    """
1052
    for tarinfo in tar:
1053
        tar.extract(tarinfo, to_dir)