95
# Note that RemoteBzrDirProber lives in bzrlib.bzrdir so bzrlib.remote
96
# does not have to be imported unless a remote format is involved.
98
class RemoteBzrDirFormat(_mod_bzrdir.BzrDirMetaFormat1):
99
"""Format representing bzrdirs accessed via a smart server"""
101
supports_workingtrees = False
104
_mod_bzrdir.BzrDirMetaFormat1.__init__(self)
105
# XXX: It's a bit ugly that the network name is here, because we'd
106
# like to believe that format objects are stateless or at least
107
# immutable, However, we do at least avoid mutating the name after
108
# it's returned. See <https://bugs.launchpad.net/bzr/+bug/504102>
109
self._network_name = None
112
return "%s(_network_name=%r)" % (self.__class__.__name__,
115
def get_format_description(self):
116
if self._network_name:
117
real_format = controldir.network_format_registry.get(self._network_name)
118
return 'Remote: ' + real_format.get_format_description()
119
return 'bzr remote bzrdir'
121
def get_format_string(self):
122
raise NotImplementedError(self.get_format_string)
124
def network_name(self):
125
if self._network_name:
126
return self._network_name
128
raise AssertionError("No network name set.")
130
def initialize_on_transport(self, transport):
132
# hand off the request to the smart server
133
client_medium = transport.get_smart_medium()
134
except errors.NoSmartMedium:
135
# TODO: lookup the local format from a server hint.
136
local_dir_format = _mod_bzrdir.BzrDirMetaFormat1()
137
return local_dir_format.initialize_on_transport(transport)
138
client = _SmartClient(client_medium)
139
path = client.remote_path_from_transport(transport)
141
response = client.call('BzrDirFormat.initialize', path)
142
except errors.ErrorFromSmartServer, err:
143
_translate_error(err, path=path)
144
if response[0] != 'ok':
145
raise errors.SmartProtocolError('unexpected response code %s' % (response,))
146
format = RemoteBzrDirFormat()
147
self._supply_sub_formats_to(format)
148
return RemoteBzrDir(transport, format)
150
def parse_NoneTrueFalse(self, arg):
157
raise AssertionError("invalid arg %r" % arg)
159
def _serialize_NoneTrueFalse(self, arg):
166
def _serialize_NoneString(self, arg):
169
def initialize_on_transport_ex(self, transport, use_existing_dir=False,
170
create_prefix=False, force_new_repo=False, stacked_on=None,
171
stack_on_pwd=None, repo_format_name=None, make_working_trees=None,
174
# hand off the request to the smart server
175
client_medium = transport.get_smart_medium()
176
except errors.NoSmartMedium:
179
# Decline to open it if the server doesn't support our required
180
# version (3) so that the VFS-based transport will do it.
181
if client_medium.should_probe():
183
server_version = client_medium.protocol_version()
184
if server_version != '2':
188
except errors.SmartProtocolError:
189
# Apparently there's no usable smart server there, even though
190
# the medium supports the smart protocol.
195
client = _SmartClient(client_medium)
196
path = client.remote_path_from_transport(transport)
197
if client_medium._is_remote_before((1, 16)):
200
# TODO: lookup the local format from a server hint.
201
local_dir_format = _mod_bzrdir.BzrDirMetaFormat1()
202
self._supply_sub_formats_to(local_dir_format)
203
return local_dir_format.initialize_on_transport_ex(transport,
204
use_existing_dir=use_existing_dir, create_prefix=create_prefix,
205
force_new_repo=force_new_repo, stacked_on=stacked_on,
206
stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
207
make_working_trees=make_working_trees, shared_repo=shared_repo,
209
return self._initialize_on_transport_ex_rpc(client, path, transport,
210
use_existing_dir, create_prefix, force_new_repo, stacked_on,
211
stack_on_pwd, repo_format_name, make_working_trees, shared_repo)
213
def _initialize_on_transport_ex_rpc(self, client, path, transport,
214
use_existing_dir, create_prefix, force_new_repo, stacked_on,
215
stack_on_pwd, repo_format_name, make_working_trees, shared_repo):
217
args.append(self._serialize_NoneTrueFalse(use_existing_dir))
218
args.append(self._serialize_NoneTrueFalse(create_prefix))
219
args.append(self._serialize_NoneTrueFalse(force_new_repo))
220
args.append(self._serialize_NoneString(stacked_on))
221
# stack_on_pwd is often/usually our transport
224
stack_on_pwd = transport.relpath(stack_on_pwd)
227
except errors.PathNotChild:
229
args.append(self._serialize_NoneString(stack_on_pwd))
230
args.append(self._serialize_NoneString(repo_format_name))
231
args.append(self._serialize_NoneTrueFalse(make_working_trees))
232
args.append(self._serialize_NoneTrueFalse(shared_repo))
233
request_network_name = self._network_name or \
234
_mod_bzrdir.BzrDirFormat.get_default_format().network_name()
236
response = client.call('BzrDirFormat.initialize_ex_1.16',
237
request_network_name, path, *args)
238
except errors.UnknownSmartMethod:
239
client._medium._remember_remote_is_before((1,16))
240
local_dir_format = _mod_bzrdir.BzrDirMetaFormat1()
241
self._supply_sub_formats_to(local_dir_format)
242
return local_dir_format.initialize_on_transport_ex(transport,
243
use_existing_dir=use_existing_dir, create_prefix=create_prefix,
244
force_new_repo=force_new_repo, stacked_on=stacked_on,
245
stack_on_pwd=stack_on_pwd, repo_format_name=repo_format_name,
246
make_working_trees=make_working_trees, shared_repo=shared_repo,
248
except errors.ErrorFromSmartServer, err:
249
_translate_error(err, path=path)
250
repo_path = response[0]
251
bzrdir_name = response[6]
252
require_stacking = response[7]
253
require_stacking = self.parse_NoneTrueFalse(require_stacking)
254
format = RemoteBzrDirFormat()
255
format._network_name = bzrdir_name
256
self._supply_sub_formats_to(format)
257
bzrdir = RemoteBzrDir(transport, format, _client=client)
259
repo_format = response_tuple_to_repo_format(response[1:])
263
repo_bzrdir_format = RemoteBzrDirFormat()
264
repo_bzrdir_format._network_name = response[5]
265
repo_bzr = RemoteBzrDir(transport.clone(repo_path),
269
final_stack = response[8] or None
270
final_stack_pwd = response[9] or None
272
final_stack_pwd = urlutils.join(
273
transport.base, final_stack_pwd)
274
remote_repo = RemoteRepository(repo_bzr, repo_format)
275
if len(response) > 10:
276
# Updated server verb that locks remotely.
277
repo_lock_token = response[10] or None
278
remote_repo.lock_write(repo_lock_token, _skip_rpc=True)
280
remote_repo.dont_leave_lock_in_place()
282
remote_repo.lock_write()
283
policy = _mod_bzrdir.UseExistingRepository(remote_repo, final_stack,
284
final_stack_pwd, require_stacking)
285
policy.acquire_repository()
289
bzrdir._format.set_branch_format(self.get_branch_format())
291
# The repo has already been created, but we need to make sure that
292
# we'll make a stackable branch.
293
bzrdir._format.require_stacking(_skip_repo=True)
294
return remote_repo, bzrdir, require_stacking, policy
296
def _open(self, transport):
297
return RemoteBzrDir(transport, self)
299
def __eq__(self, other):
300
if not isinstance(other, RemoteBzrDirFormat):
302
return self.get_format_description() == other.get_format_description()
304
def __return_repository_format(self):
305
# Always return a RemoteRepositoryFormat object, but if a specific bzr
306
# repository format has been asked for, tell the RemoteRepositoryFormat
307
# that it should use that for init() etc.
308
result = RemoteRepositoryFormat()
309
custom_format = getattr(self, '_repository_format', None)
311
if isinstance(custom_format, RemoteRepositoryFormat):
314
# We will use the custom format to create repositories over the
315
# wire; expose its details like rich_root_data for code to
317
result._custom_format = custom_format
320
def get_branch_format(self):
321
result = _mod_bzrdir.BzrDirMetaFormat1.get_branch_format(self)
322
if not isinstance(result, RemoteBranchFormat):
323
new_result = RemoteBranchFormat()
324
new_result._custom_format = result
326
self.set_branch_format(new_result)
330
repository_format = property(__return_repository_format,
331
_mod_bzrdir.BzrDirMetaFormat1._set_repository_format) #.im_func)
334
class RemoteBzrDir(_mod_bzrdir.BzrDir, _RpcHelper):
87
# Note: RemoteBzrDirFormat is in bzrdir.py
89
class RemoteBzrDir(BzrDir, _RpcHelper):
335
90
"""Control directory on a remote server, accessed via bzr:// or similar."""
337
def __init__(self, transport, format, _client=None, _force_probe=False):
92
def __init__(self, transport, format, _client=None):
338
93
"""Construct a RemoteBzrDir.
340
95
:param _client: Private parameter for testing. Disables probing and the
341
96
use of a real bzrdir.
343
_mod_bzrdir.BzrDir.__init__(self, transport, format)
98
BzrDir.__init__(self, transport, format)
344
99
# this object holds a delegated bzrdir that uses file-level operations
345
100
# to talk to the other side
346
101
self._real_bzrdir = None
347
self._has_working_tree = None
348
102
# 1-shot cache for the call pattern 'create_branch; open_branch' - see
349
103
# create_branch for details.
350
104
self._next_open_branch_result = None
543
249
def _get_branch_reference(self):
544
250
path = self._path_for_remote_call(self._client)
545
251
medium = self._client._medium
547
('BzrDir.open_branchV3', (2, 1)),
548
('BzrDir.open_branchV2', (1, 13)),
549
('BzrDir.open_branch', None),
551
for verb, required_version in candidate_calls:
552
if required_version and medium._is_remote_before(required_version):
252
if not medium._is_remote_before((1, 13)):
555
response = self._call(verb, path)
254
response = self._call('BzrDir.open_branchV2', path)
255
if response[0] not in ('ref', 'branch'):
256
raise errors.UnexpectedSmartServerResponse(response)
556
258
except errors.UnknownSmartMethod:
557
if required_version is None:
559
medium._remember_remote_is_before(required_version)
562
if verb == 'BzrDir.open_branch':
563
if response[0] != 'ok':
564
raise errors.UnexpectedSmartServerResponse(response)
565
if response[1] != '':
566
return ('ref', response[1])
568
return ('branch', '')
569
if response[0] not in ('ref', 'branch'):
259
medium._remember_remote_is_before((1, 13))
260
response = self._call('BzrDir.open_branch', path)
261
if response[0] != 'ok':
570
262
raise errors.UnexpectedSmartServerResponse(response)
263
if response[1] != '':
264
return ('ref', response[1])
266
return ('branch', '')
573
def _get_tree_branch(self, name=None):
268
def _get_tree_branch(self):
574
269
"""See BzrDir._get_tree_branch()."""
575
return None, self.open_branch(name=name)
270
return None, self.open_branch()
577
def open_branch(self, name=None, unsupported=False,
578
ignore_fallbacks=False):
272
def open_branch(self, _unsupported=False, ignore_fallbacks=False):
580
274
raise NotImplementedError('unsupported flag support not implemented yet.')
581
275
if self._next_open_branch_result is not None:
582
276
# See create_branch for details.
2069
1680
def insert_stream(self, stream, src_format, resume_tokens):
2070
1681
target = self.target_repo
2071
1682
target._unstacked_provider.missing_keys.clear()
2072
candidate_calls = [('Repository.insert_stream_1.19', (1, 19))]
2073
1683
if target._lock_token:
2074
candidate_calls.append(('Repository.insert_stream_locked', (1, 14)))
2075
lock_args = (target._lock_token or '',)
1684
verb = 'Repository.insert_stream_locked'
1685
extra_args = (target._lock_token or '',)
1686
required_version = (1, 14)
2077
candidate_calls.append(('Repository.insert_stream', (1, 13)))
1688
verb = 'Repository.insert_stream'
1690
required_version = (1, 13)
2079
1691
client = target._client
2080
1692
medium = client._medium
1693
if medium._is_remote_before(required_version):
1694
# No possible way this can work.
1695
return self._insert_real(stream, src_format, resume_tokens)
2081
1696
path = target.bzrdir._path_for_remote_call(client)
2082
# Probe for the verb to use with an empty stream before sending the
2083
# real stream to it. We do this both to avoid the risk of sending a
2084
# large request that is then rejected, and because we don't want to
2085
# implement a way to buffer, rewind, or restart the stream.
2087
for verb, required_version in candidate_calls:
2088
if medium._is_remote_before(required_version):
2091
# We've already done the probing (and set _is_remote_before) on
2092
# a previous insert.
1697
if not resume_tokens:
1698
# XXX: Ugly but important for correctness, *will* be fixed during
1699
# 1.13 cycle. Pushing a stream that is interrupted results in a
1700
# fallback to the _real_repositories sink *with a partial stream*.
1701
# Thats bad because we insert less data than bzr expected. To avoid
1702
# this we do a trial push to make sure the verb is accessible, and
1703
# do not fallback when actually pushing the stream. A cleanup patch
1704
# is going to look at rewinding/restarting the stream/partial
2095
1706
byte_stream = smart_repo._stream_to_byte_stream([], src_format)
2097
1708
response = client.call_with_body_stream(
2098
(verb, path, '') + lock_args, byte_stream)
1709
(verb, path, '') + extra_args, byte_stream)
2099
1710
except errors.UnknownSmartMethod:
2100
1711
medium._remember_remote_is_before(required_version)
2106
return self._insert_real(stream, src_format, resume_tokens)
2107
self._last_inv_record = None
2108
self._last_substream = None
2109
if required_version < (1, 19):
2110
# Remote side doesn't support inventory deltas. Wrap the stream to
2111
# make sure we don't send any. If the stream contains inventory
2112
# deltas we'll interrupt the smart insert_stream request and
2114
stream = self._stop_stream_if_inventory_delta(stream)
1712
return self._insert_real(stream, src_format, resume_tokens)
2115
1713
byte_stream = smart_repo._stream_to_byte_stream(
2116
1714
stream, src_format)
2117
1715
resume_tokens = ' '.join(resume_tokens)
2118
1716
response = client.call_with_body_stream(
2119
(verb, path, resume_tokens) + lock_args, byte_stream)
1717
(verb, path, resume_tokens) + extra_args, byte_stream)
2120
1718
if response[0][0] not in ('ok', 'missing-basis'):
2121
1719
raise errors.UnexpectedSmartServerResponse(response)
2122
if self._last_substream is not None:
2123
# The stream included an inventory-delta record, but the remote
2124
# side isn't new enough to support them. So we need to send the
2125
# rest of the stream via VFS.
2126
self.target_repo.refresh_data()
2127
return self._resume_stream_with_vfs(response, src_format)
2128
1720
if response[0][0] == 'missing-basis':
2129
1721
tokens, missing_keys = bencode.bdecode_as_tuple(response[0][1])
2130
1722
resume_tokens = tokens
2133
1725
self.target_repo.refresh_data()
2134
1726
return [], set()
2136
def _resume_stream_with_vfs(self, response, src_format):
2137
"""Resume sending a stream via VFS, first resending the record and
2138
substream that couldn't be sent via an insert_stream verb.
2140
if response[0][0] == 'missing-basis':
2141
tokens, missing_keys = bencode.bdecode_as_tuple(response[0][1])
2142
# Ignore missing_keys, we haven't finished inserting yet
2145
def resume_substream():
2146
# Yield the substream that was interrupted.
2147
for record in self._last_substream:
2149
self._last_substream = None
2150
def resume_stream():
2151
# Finish sending the interrupted substream
2152
yield ('inventory-deltas', resume_substream())
2153
# Then simply continue sending the rest of the stream.
2154
for substream_kind, substream in self._last_stream:
2155
yield substream_kind, substream
2156
return self._insert_real(resume_stream(), src_format, tokens)
2158
def _stop_stream_if_inventory_delta(self, stream):
2159
"""Normally this just lets the original stream pass-through unchanged.
2161
However if any 'inventory-deltas' substream occurs it will stop
2162
streaming, and store the interrupted substream and stream in
2163
self._last_substream and self._last_stream so that the stream can be
2164
resumed by _resume_stream_with_vfs.
2167
stream_iter = iter(stream)
2168
for substream_kind, substream in stream_iter:
2169
if substream_kind == 'inventory-deltas':
2170
self._last_substream = substream
2171
self._last_stream = stream_iter
2174
yield substream_kind, substream
2177
class RemoteStreamSource(vf_repository.StreamSource):
1729
class RemoteStreamSource(repository.StreamSource):
2178
1730
"""Stream data from a remote server."""
2180
1732
def get_stream(self, search):
2181
1733
if (self.from_repository._fallback_repositories and
2182
1734
self.to_format._fetch_order == 'topological'):
2183
1735
return self._real_stream(self.from_repository, search)
2186
repos = [self.from_repository]
2192
repos.extend(repo._fallback_repositories)
2193
sources.append(repo)
2194
return self.missing_parents_chain(search, sources)
2196
def get_stream_for_missing_keys(self, missing_keys):
2197
self.from_repository._ensure_real()
2198
real_repo = self.from_repository._real_repository
2199
real_source = real_repo._get_source(self.to_format)
2200
return real_source.get_stream_for_missing_keys(missing_keys)
1736
return self.missing_parents_chain(search, [self.from_repository] +
1737
self.from_repository._fallback_repositories)
2202
1739
def _real_stream(self, repo, search):
2203
1740
"""Get a stream for search from repo.
2234
1770
return self._real_stream(repo, search)
2235
1771
client = repo._client
2236
1772
medium = client._medium
1773
if medium._is_remote_before((1, 13)):
1774
# streaming was added in 1.13
1775
return self._real_stream(repo, search)
2237
1776
path = repo.bzrdir._path_for_remote_call(client)
2238
search_bytes = repo._serialise_search_result(search)
2239
args = (path, self.to_format.network_name())
2241
('Repository.get_stream_1.19', (1, 19)),
2242
('Repository.get_stream', (1, 13))]
2245
for verb, version in candidate_verbs:
2246
if medium._is_remote_before(version):
2249
response = repo._call_with_body_bytes_expecting_body(
2250
verb, args, search_bytes)
2251
except errors.UnknownSmartMethod:
2252
medium._remember_remote_is_before(version)
2253
except errors.UnknownErrorFromSmartServer, e:
2254
if isinstance(search, graph.EverythingResult):
2255
error_verb = e.error_from_smart_server.error_verb
2256
if error_verb == 'BadSearch':
2257
# Pre-2.4 servers don't support this sort of search.
2258
# XXX: perhaps falling back to VFS on BadSearch is a
2259
# good idea in general? It might provide a little bit
2260
# of protection against client-side bugs.
2261
medium._remember_remote_is_before((2, 4))
2265
response_tuple, response_handler = response
1778
search_bytes = repo._serialise_search_result(search)
1779
response = repo._call_with_body_bytes_expecting_body(
1780
'Repository.get_stream',
1781
(path, self.to_format.network_name()), search_bytes)
1782
response_tuple, response_handler = response
1783
except errors.UnknownSmartMethod:
1784
medium._remember_remote_is_before((1,13))
2269
1785
return self._real_stream(repo, search)
2270
1786
if response_tuple[0] != 'ok':
2271
1787
raise errors.UnexpectedSmartServerResponse(response_tuple)
2272
1788
byte_stream = response_handler.read_streamed_body()
2273
src_format, stream = smart_repo._byte_stream_to_stream(byte_stream,
2274
self._record_counter)
1789
src_format, stream = smart_repo._byte_stream_to_stream(byte_stream)
2275
1790
if src_format.network_name() != repo._format.network_name():
2276
1791
raise AssertionError(
2277
1792
"Mismatched RemoteRepository and stream src %r, %r" % (
2353
1867
self._network_name)
2355
1869
def get_format_description(self):
2357
return 'Remote: ' + self._custom_format.get_format_description()
1870
return 'Remote BZR Branch'
2359
1872
def network_name(self):
2360
1873
return self._network_name
2362
def open(self, a_bzrdir, name=None, ignore_fallbacks=False):
2363
return a_bzrdir.open_branch(name=name,
2364
ignore_fallbacks=ignore_fallbacks)
1875
def open(self, a_bzrdir, ignore_fallbacks=False):
1876
return a_bzrdir.open_branch(ignore_fallbacks=ignore_fallbacks)
2366
def _vfs_initialize(self, a_bzrdir, name, append_revisions_only):
1878
def _vfs_initialize(self, a_bzrdir):
2367
1879
# Initialisation when using a local bzrdir object, or a non-vfs init
2368
1880
# method is not available on the server.
2369
1881
# self._custom_format is always set - the start of initialize ensures
2371
1883
if isinstance(a_bzrdir, RemoteBzrDir):
2372
1884
a_bzrdir._ensure_real()
2373
result = self._custom_format.initialize(a_bzrdir._real_bzrdir,
2374
name, append_revisions_only=append_revisions_only)
1885
result = self._custom_format.initialize(a_bzrdir._real_bzrdir)
2376
1887
# We assume the bzrdir is parameterised; it may not be.
2377
result = self._custom_format.initialize(a_bzrdir, name,
2378
append_revisions_only=append_revisions_only)
1888
result = self._custom_format.initialize(a_bzrdir)
2379
1889
if (isinstance(a_bzrdir, RemoteBzrDir) and
2380
1890
not isinstance(result, RemoteBranch)):
2381
result = RemoteBranch(a_bzrdir, a_bzrdir.find_repository(), result,
1891
result = RemoteBranch(a_bzrdir, a_bzrdir.find_repository(), result)
2385
def initialize(self, a_bzrdir, name=None, repository=None,
2386
append_revisions_only=None):
1894
def initialize(self, a_bzrdir):
2387
1895
# 1) get the network name to use.
2388
1896
if self._custom_format:
2389
1897
network_name = self._custom_format.network_name()
2391
1899
# Select the current bzrlib default and ask for that.
2392
reference_bzrdir_format = _mod_bzrdir.format_registry.get('default')()
1900
reference_bzrdir_format = bzrdir.format_registry.get('default')()
2393
1901
reference_format = reference_bzrdir_format.get_branch_format()
2394
1902
self._custom_format = reference_format
2395
1903
network_name = reference_format.network_name()
2396
1904
# Being asked to create on a non RemoteBzrDir:
2397
1905
if not isinstance(a_bzrdir, RemoteBzrDir):
2398
return self._vfs_initialize(a_bzrdir, name=name,
2399
append_revisions_only=append_revisions_only)
1906
return self._vfs_initialize(a_bzrdir)
2400
1907
medium = a_bzrdir._client._medium
2401
1908
if medium._is_remote_before((1, 13)):
2402
return self._vfs_initialize(a_bzrdir, name=name,
2403
append_revisions_only=append_revisions_only)
1909
return self._vfs_initialize(a_bzrdir)
2404
1910
# Creating on a remote bzr dir.
2405
1911
# 2) try direct creation via RPC
2406
1912
path = a_bzrdir._path_for_remote_call(a_bzrdir._client)
2407
if name is not None:
2408
# XXX JRV20100304: Support creating colocated branches
2409
raise errors.NoColocatedBranchSupport(self)
2410
1913
verb = 'BzrDir.create_branch'
2412
1915
response = a_bzrdir._call(verb, path, network_name)
2413
1916
except errors.UnknownSmartMethod:
2414
1917
# Fallback - use vfs methods
2415
1918
medium._remember_remote_is_before((1, 13))
2416
return self._vfs_initialize(a_bzrdir, name=name,
2417
append_revisions_only=append_revisions_only)
1919
return self._vfs_initialize(a_bzrdir)
2418
1920
if response[0] != 'ok':
2419
1921
raise errors.UnexpectedSmartServerResponse(response)
2420
1922
# Turn the response into a RemoteRepository object.
2421
1923
format = RemoteBranchFormat(network_name=response[1])
2422
1924
repo_format = response_tuple_to_repo_format(response[3:])
2423
repo_path = response[2]
2424
if repository is not None:
2425
remote_repo_url = urlutils.join(a_bzrdir.user_url, repo_path)
2426
url_diff = urlutils.relative_url(repository.user_url,
2429
raise AssertionError(
2430
'repository.user_url %r does not match URL from server '
2431
'response (%r + %r)'
2432
% (repository.user_url, a_bzrdir.user_url, repo_path))
2433
remote_repo = repository
1925
if response[2] == '':
1926
repo_bzrdir = a_bzrdir
2436
repo_bzrdir = a_bzrdir
2438
repo_bzrdir = RemoteBzrDir(
2439
a_bzrdir.root_transport.clone(repo_path), a_bzrdir._format,
2441
remote_repo = RemoteRepository(repo_bzrdir, repo_format)
1928
repo_bzrdir = RemoteBzrDir(
1929
a_bzrdir.root_transport.clone(response[2]), a_bzrdir._format,
1931
remote_repo = RemoteRepository(repo_bzrdir, repo_format)
2442
1932
remote_branch = RemoteBranch(a_bzrdir, remote_repo,
2443
format=format, setup_stacking=False, name=name)
2444
if append_revisions_only:
2445
remote_branch.set_append_revisions_only(append_revisions_only)
1933
format=format, setup_stacking=False)
2446
1934
# XXX: We know this is a new branch, so it must have revno 0, revid
2447
1935
# NULL_REVISION. Creating the branch locked would make this be unable
2448
1936
# to be wrong; here its simply very unlikely to be wrong. RBC 20090225
3177
2569
medium = self._branch._client._medium
3178
2570
if medium._is_remote_before((1, 14)):
3179
2571
return self._vfs_set_option(value, name, section)
3180
if isinstance(value, dict):
3181
if medium._is_remote_before((2, 2)):
3182
return self._vfs_set_option(value, name, section)
3183
return self._set_config_option_dict(value, name, section)
3185
return self._set_config_option(value, name, section)
3187
def _set_config_option(self, value, name, section):
3189
2573
path = self._branch._remote_path()
3190
2574
response = self._branch._client.call('Branch.set_config_option',
3191
2575
path, self._branch._lock_token, self._branch._repo_lock_token,
3192
2576
value.encode('utf8'), name, section or '')
3193
2577
except errors.UnknownSmartMethod:
3194
medium = self._branch._client._medium
3195
2578
medium._remember_remote_is_before((1, 14))
3196
2579
return self._vfs_set_option(value, name, section)
3197
2580
if response != ():
3198
2581
raise errors.UnexpectedSmartServerResponse(response)
3200
def _serialize_option_dict(self, option_dict):
3202
for key, value in option_dict.items():
3203
if isinstance(key, unicode):
3204
key = key.encode('utf8')
3205
if isinstance(value, unicode):
3206
value = value.encode('utf8')
3207
utf8_dict[key] = value
3208
return bencode.bencode(utf8_dict)
3210
def _set_config_option_dict(self, value, name, section):
3212
path = self._branch._remote_path()
3213
serialised_dict = self._serialize_option_dict(value)
3214
response = self._branch._client.call(
3215
'Branch.set_config_option_dict',
3216
path, self._branch._lock_token, self._branch._repo_lock_token,
3217
serialised_dict, name, section or '')
3218
except errors.UnknownSmartMethod:
3219
medium = self._branch._client._medium
3220
medium._remember_remote_is_before((2, 2))
3221
return self._vfs_set_option(value, name, section)
3223
raise errors.UnexpectedSmartServerResponse(response)
3225
2583
def _real_object(self):
3226
2584
self._branch._ensure_real()
3227
2585
return self._branch._real_branch