1
# Copyright (C) 2006, 2007 Canonical Ltd
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.
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.
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
17
"""Basic server-side logic for dealing with requests."""
28
from bzrlib.bundle.serializer import write_bundle
31
class SmartServerRequest(object):
32
"""Base class for request handlers."""
34
def __init__(self, backing_transport):
37
:param backing_transport: the base transport to be used when performing
40
self._backing_transport = backing_transport
42
def _check_enabled(self):
43
"""Raises DisabledMethod if this method is disabled."""
47
"""Mandatory extension point for SmartServerRequest subclasses.
49
Subclasses must implement this.
51
This should return a SmartServerResponse if this command expects to
54
raise NotImplementedError(self.do)
56
def execute(self, *args):
57
"""Public entry point to execute this request.
59
It will return a SmartServerResponse if the command does not expect a
62
:param *args: the arguments of the request.
67
def do_body(self, body_bytes):
68
"""Called if the client sends a body with the request.
70
Must return a SmartServerResponse.
72
# TODO: if a client erroneously sends a request that shouldn't have a
73
# body, what to do? Probably SmartServerRequestHandler should catch
74
# this NotImplementedError and translate it into a 'bad request' error
75
# to send to the client.
76
raise NotImplementedError(self.do_body)
79
class SmartServerResponse(object):
80
"""Response generated by SmartServerRequestHandler."""
82
def __init__(self, args, body=None):
86
def __eq__(self, other):
89
return other.args == self.args and other.body == self.body
92
return "<SmartServerResponse args=%r body=%r>" % (self.args, self.body)
95
class SmartServerRequestHandler(object):
96
"""Protocol logic for smart server.
98
This doesn't handle serialization at all, it just processes requests and
102
# IMPORTANT FOR IMPLEMENTORS: It is important that SmartServerRequestHandler
103
# not contain encoding or decoding logic to allow the wire protocol to vary
104
# from the object protocol: we will want to tweak the wire protocol separate
105
# from the object model, and ideally we will be able to do that without
106
# having a SmartServerRequestHandler subclass for each wire protocol, rather
107
# just a Protocol subclass.
109
# TODO: Better way of representing the body for commands that take it,
110
# and allow it to be streamed into the server.
112
def __init__(self, backing_transport, commands):
115
:param backing_transport: a Transport to handle requests for.
116
:param commands: a registry mapping command names to SmartServerRequest
117
subclasses. e.g. bzrlib.transport.smart.vfs.vfs_commands.
119
self._backing_transport = backing_transport
120
self._commands = commands
121
self._body_bytes = ''
123
self.finished_reading = False
126
def accept_body(self, bytes):
127
"""Accept body data."""
129
# TODO: This should be overriden for each command that desired body data
130
# to handle the right format of that data, i.e. plain bytes, a bundle,
131
# etc. The deserialisation into that format should be done in the
134
# default fallback is to accumulate bytes.
135
self._body_bytes += bytes
137
def end_of_body(self):
138
"""No more body data will be received."""
139
self._run_handler_code(self._command.do_body, (self._body_bytes,), {})
140
# cannot read after this.
141
self.finished_reading = True
143
def dispatch_command(self, cmd, args):
144
"""Deprecated compatibility method.""" # XXX XXX
146
command = self._commands.get(cmd)
148
raise errors.SmartProtocolError("bad request %r" % (cmd,))
149
self._command = command(self._backing_transport)
150
self._run_handler_code(self._command.execute, args, {})
152
def _run_handler_code(self, callable, args, kwargs):
153
"""Run some handler specific code 'callable'.
155
If a result is returned, it is considered to be the commands response,
156
and finished_reading is set true, and its assigned to self.response.
158
Any exceptions caught are translated and a response object created
161
result = self._call_converting_errors(callable, args, kwargs)
163
if result is not None:
164
self.response = result
165
self.finished_reading = True
167
def _call_converting_errors(self, callable, args, kwargs):
168
"""Call callable converting errors to Response objects."""
169
# XXX: most of this error conversion is VFS-related, and thus ought to
170
# be in SmartServerVFSRequestHandler somewhere.
172
return callable(*args, **kwargs)
173
except errors.NoSuchFile, e:
174
return SmartServerResponse(('NoSuchFile', e.path))
175
except errors.FileExists, e:
176
return SmartServerResponse(('FileExists', e.path))
177
except errors.DirectoryNotEmpty, e:
178
return SmartServerResponse(('DirectoryNotEmpty', e.path))
179
except errors.ShortReadvError, e:
180
return SmartServerResponse(('ShortReadvError',
181
e.path, str(e.offset), str(e.length), str(e.actual)))
182
except UnicodeError, e:
183
# If it is a DecodeError, than most likely we are starting
184
# with a plain string
185
str_or_unicode = e.object
186
if isinstance(str_or_unicode, unicode):
187
# XXX: UTF-8 might have \x01 (our seperator byte) in it. We
188
# should escape it somehow.
189
val = 'u:' + str_or_unicode.encode('utf-8')
191
val = 's:' + str_or_unicode.encode('base64')
192
# This handles UnicodeEncodeError or UnicodeDecodeError
193
return SmartServerResponse((e.__class__.__name__,
194
e.encoding, val, str(e.start), str(e.end), e.reason))
195
except errors.TransportNotPossible, e:
196
if e.msg == "readonly transport":
197
return SmartServerResponse(('ReadOnlyError', ))
202
class HelloRequest(SmartServerRequest):
203
"""Answer a version request with my version."""
206
return SmartServerResponse(('ok', '1'))
209
class GetBundleRequest(SmartServerRequest):
210
"""Get a bundle of from the null revision to the specified revision."""
212
def do(self, path, revision_id):
213
# open transport relative to our base
214
t = self._backing_transport.clone(path)
215
control, extra_path = bzrdir.BzrDir.open_containing_from_transport(t)
216
repo = control.open_repository()
217
tmpf = tempfile.TemporaryFile()
218
base_revision = revision.NULL_REVISION
219
write_bundle(repo, revision_id, base_revision, tmpf)
221
return SmartServerResponse((), tmpf.read())
224
class SmartServerIsReadonly(SmartServerRequest):
225
# XXX: this request method belongs somewhere else.
228
if self._backing_transport.is_readonly():
232
return SmartServerResponse((answer,))
235
request_handlers = registry.Registry()
236
request_handlers.register_lazy(
237
'append', 'bzrlib.smart.vfs', 'AppendRequest')
238
request_handlers.register_lazy(
239
'Branch.get_config_file', 'bzrlib.smart.branch', 'SmartServerBranchGetConfigFile')
240
request_handlers.register_lazy(
241
'Branch.last_revision_info', 'bzrlib.smart.branch', 'SmartServerBranchRequestLastRevisionInfo')
242
request_handlers.register_lazy(
243
'Branch.lock_write', 'bzrlib.smart.branch', 'SmartServerBranchRequestLockWrite')
244
request_handlers.register_lazy(
245
'Branch.revision_history', 'bzrlib.smart.branch', 'SmartServerRequestRevisionHistory')
246
request_handlers.register_lazy(
247
'Branch.set_last_revision', 'bzrlib.smart.branch', 'SmartServerBranchRequestSetLastRevision')
248
request_handlers.register_lazy(
249
'Branch.unlock', 'bzrlib.smart.branch', 'SmartServerBranchRequestUnlock')
250
request_handlers.register_lazy(
251
'BzrDir.find_repository', 'bzrlib.smart.bzrdir', 'SmartServerRequestFindRepository')
252
request_handlers.register_lazy(
253
'BzrDirFormat.initialize', 'bzrlib.smart.bzrdir', 'SmartServerRequestInitializeBzrDir')
254
request_handlers.register_lazy(
255
'BzrDir.open_branch', 'bzrlib.smart.bzrdir', 'SmartServerRequestOpenBranch')
256
request_handlers.register_lazy(
257
'delete', 'bzrlib.smart.vfs', 'DeleteRequest')
258
request_handlers.register_lazy(
259
'get', 'bzrlib.smart.vfs', 'GetRequest')
260
request_handlers.register_lazy(
261
'get_bundle', 'bzrlib.smart.request', 'GetBundleRequest')
262
request_handlers.register_lazy(
263
'has', 'bzrlib.smart.vfs', 'HasRequest')
264
request_handlers.register_lazy(
265
'hello', 'bzrlib.smart.request', 'HelloRequest')
266
request_handlers.register_lazy(
267
'iter_files_recursive', 'bzrlib.smart.vfs', 'IterFilesRecursiveRequest')
268
request_handlers.register_lazy(
269
'list_dir', 'bzrlib.smart.vfs', 'ListDirRequest')
270
request_handlers.register_lazy(
271
'mkdir', 'bzrlib.smart.vfs', 'MkdirRequest')
272
request_handlers.register_lazy(
273
'move', 'bzrlib.smart.vfs', 'MoveRequest')
274
request_handlers.register_lazy(
275
'put', 'bzrlib.smart.vfs', 'PutRequest')
276
request_handlers.register_lazy(
277
'put_non_atomic', 'bzrlib.smart.vfs', 'PutNonAtomicRequest')
278
request_handlers.register_lazy(
279
'readv', 'bzrlib.smart.vfs', 'ReadvRequest')
280
request_handlers.register_lazy(
281
'rename', 'bzrlib.smart.vfs', 'RenameRequest')
282
request_handlers.register_lazy('Repository.gather_stats',
283
'bzrlib.smart.repository',
284
'SmartServerRepositoryGatherStats')
285
request_handlers.register_lazy(
286
'Repository.get_revision_graph', 'bzrlib.smart.repository', 'SmartServerRepositoryGetRevisionGraph')
287
request_handlers.register_lazy(
288
'Repository.has_revision', 'bzrlib.smart.repository', 'SmartServerRequestHasRevision')
289
request_handlers.register_lazy(
290
'Repository.is_shared', 'bzrlib.smart.repository', 'SmartServerRepositoryIsShared')
291
request_handlers.register_lazy(
292
'Repository.lock_write', 'bzrlib.smart.repository', 'SmartServerRepositoryLockWrite')
293
request_handlers.register_lazy(
294
'Repository.unlock', 'bzrlib.smart.repository', 'SmartServerRepositoryUnlock')
295
request_handlers.register_lazy(
296
'rmdir', 'bzrlib.smart.vfs', 'RmdirRequest')
297
request_handlers.register_lazy(
298
'stat', 'bzrlib.smart.vfs', 'StatRequest')
299
request_handlers.register_lazy(
300
'Transport.is_readonly', 'bzrlib.smart.request', 'SmartServerIsReadonly')
301
request_handlers.register_lazy(
302
'BzrDir.open', 'bzrlib.smart.bzrdir', 'SmartServerRequestOpenBzrDir')