~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/medium.py

  • Committer: John Arbash Meinel
  • Author(s): Mark Hammond
  • Date: 2008-09-09 17:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3697.
  • Revision ID: john@arbash-meinel.com-20080909170221-svim3jw2mrz0amp3
An updated transparent icon for bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 Canonical Ltd
 
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
 
 
17
"""The 'medium' layer for the smart servers and clients.
 
18
 
 
19
"Medium" here is the noun meaning "a means of transmission", not the adjective
 
20
for "the quality between big and small."
 
21
 
 
22
Media carry the bytes of the requests somehow (e.g. via TCP, wrapped in HTTP, or
 
23
over SSH), and pass them to and from the protocol logic.  See the overview in
 
24
bzrlib/transport/smart/__init__.py.
 
25
"""
 
26
 
 
27
import os
 
28
import socket
 
29
import sys
 
30
import urllib
 
31
 
 
32
from bzrlib.lazy_import import lazy_import
 
33
lazy_import(globals(), """
 
34
from bzrlib import (
 
35
    errors,
 
36
    osutils,
 
37
    symbol_versioning,
 
38
    urlutils,
 
39
    )
 
40
from bzrlib.smart import protocol
 
41
from bzrlib.transport import ssh
 
42
""")
 
43
 
 
44
 
 
45
# We must not read any more than 64k at a time so we don't risk "no buffer
 
46
# space available" errors on some platforms.  Windows in particular is likely
 
47
# to give error 10053 or 10055 if we read more than 64k from a socket.
 
48
_MAX_READ_SIZE = 64 * 1024
 
49
 
 
50
 
 
51
def _get_protocol_factory_for_bytes(bytes):
 
52
    """Determine the right protocol factory for 'bytes'.
 
53
 
 
54
    This will return an appropriate protocol factory depending on the version
 
55
    of the protocol being used, as determined by inspecting the given bytes.
 
56
    The bytes should have at least one newline byte (i.e. be a whole line),
 
57
    otherwise it's possible that a request will be incorrectly identified as
 
58
    version 1.
 
59
 
 
60
    Typical use would be::
 
61
 
 
62
         factory, unused_bytes = _get_protocol_factory_for_bytes(bytes)
 
63
         server_protocol = factory(transport, write_func, root_client_path)
 
64
         server_protocol.accept_bytes(unused_bytes)
 
65
 
 
66
    :param bytes: a str of bytes of the start of the request.
 
67
    :returns: 2-tuple of (protocol_factory, unused_bytes).  protocol_factory is
 
68
        a callable that takes three args: transport, write_func,
 
69
        root_client_path.  unused_bytes are any bytes that were not part of a
 
70
        protocol version marker.
 
71
    """
 
72
    if bytes.startswith(protocol.MESSAGE_VERSION_THREE):
 
73
        protocol_factory = protocol.build_server_protocol_three
 
74
        bytes = bytes[len(protocol.MESSAGE_VERSION_THREE):]
 
75
    elif bytes.startswith(protocol.REQUEST_VERSION_TWO):
 
76
        protocol_factory = protocol.SmartServerRequestProtocolTwo
 
77
        bytes = bytes[len(protocol.REQUEST_VERSION_TWO):]
 
78
    else:
 
79
        protocol_factory = protocol.SmartServerRequestProtocolOne
 
80
    return protocol_factory, bytes
 
81
 
 
82
 
 
83
def _get_line(read_bytes_func):
 
84
    """Read bytes using read_bytes_func until a newline byte.
 
85
    
 
86
    This isn't particularly efficient, so should only be used when the
 
87
    expected size of the line is quite short.
 
88
    
 
89
    :returns: a tuple of two strs: (line, excess)
 
90
    """
 
91
    newline_pos = -1
 
92
    bytes = ''
 
93
    while newline_pos == -1:
 
94
        new_bytes = read_bytes_func(1)
 
95
        bytes += new_bytes
 
96
        if new_bytes == '':
 
97
            # Ran out of bytes before receiving a complete line.
 
98
            return bytes, ''
 
99
        newline_pos = bytes.find('\n')
 
100
    line = bytes[:newline_pos+1]
 
101
    excess = bytes[newline_pos+1:]
 
102
    return line, excess
 
103
 
 
104
 
 
105
class SmartMedium(object):
 
106
    """Base class for smart protocol media, both client- and server-side."""
 
107
 
 
108
    def __init__(self):
 
109
        self._push_back_buffer = None
 
110
        
 
111
    def _push_back(self, bytes):
 
112
        """Return unused bytes to the medium, because they belong to the next
 
113
        request(s).
 
114
 
 
115
        This sets the _push_back_buffer to the given bytes.
 
116
        """
 
117
        if self._push_back_buffer is not None:
 
118
            raise AssertionError(
 
119
                "_push_back called when self._push_back_buffer is %r"
 
120
                % (self._push_back_buffer,))
 
121
        if bytes == '':
 
122
            return
 
123
        self._push_back_buffer = bytes
 
124
 
 
125
    def _get_push_back_buffer(self):
 
126
        if self._push_back_buffer == '':
 
127
            raise AssertionError(
 
128
                '%s._push_back_buffer should never be the empty string, '
 
129
                'which can be confused with EOF' % (self,))
 
130
        bytes = self._push_back_buffer
 
131
        self._push_back_buffer = None
 
132
        return bytes
 
133
 
 
134
    def read_bytes(self, desired_count):
 
135
        """Read some bytes from this medium.
 
136
 
 
137
        :returns: some bytes, possibly more or less than the number requested
 
138
            in 'desired_count' depending on the medium.
 
139
        """
 
140
        if self._push_back_buffer is not None:
 
141
            return self._get_push_back_buffer()
 
142
        bytes_to_read = min(desired_count, _MAX_READ_SIZE)
 
143
        return self._read_bytes(bytes_to_read)
 
144
 
 
145
    def _read_bytes(self, count):
 
146
        raise NotImplementedError(self._read_bytes)
 
147
 
 
148
    def _get_line(self):
 
149
        """Read bytes from this request's response until a newline byte.
 
150
        
 
151
        This isn't particularly efficient, so should only be used when the
 
152
        expected size of the line is quite short.
 
153
 
 
154
        :returns: a string of bytes ending in a newline (byte 0x0A).
 
155
        """
 
156
        line, excess = _get_line(self.read_bytes)
 
157
        self._push_back(excess)
 
158
        return line
 
159
 
 
160
 
 
161
class SmartServerStreamMedium(SmartMedium):
 
162
    """Handles smart commands coming over a stream.
 
163
 
 
164
    The stream may be a pipe connected to sshd, or a tcp socket, or an
 
165
    in-process fifo for testing.
 
166
 
 
167
    One instance is created for each connected client; it can serve multiple
 
168
    requests in the lifetime of the connection.
 
169
 
 
170
    The server passes requests through to an underlying backing transport, 
 
171
    which will typically be a LocalTransport looking at the server's filesystem.
 
172
 
 
173
    :ivar _push_back_buffer: a str of bytes that have been read from the stream
 
174
        but not used yet, or None if there are no buffered bytes.  Subclasses
 
175
        should make sure to exhaust this buffer before reading more bytes from
 
176
        the stream.  See also the _push_back method.
 
177
    """
 
178
 
 
179
    def __init__(self, backing_transport, root_client_path='/'):
 
180
        """Construct new server.
 
181
 
 
182
        :param backing_transport: Transport for the directory served.
 
183
        """
 
184
        # backing_transport could be passed to serve instead of __init__
 
185
        self.backing_transport = backing_transport
 
186
        self.root_client_path = root_client_path
 
187
        self.finished = False
 
188
        SmartMedium.__init__(self)
 
189
 
 
190
    def serve(self):
 
191
        """Serve requests until the client disconnects."""
 
192
        # Keep a reference to stderr because the sys module's globals get set to
 
193
        # None during interpreter shutdown.
 
194
        from sys import stderr
 
195
        try:
 
196
            while not self.finished:
 
197
                server_protocol = self._build_protocol()
 
198
                self._serve_one_request(server_protocol)
 
199
        except Exception, e:
 
200
            stderr.write("%s terminating on exception %s\n" % (self, e))
 
201
            raise
 
202
 
 
203
    def _build_protocol(self):
 
204
        """Identifies the version of the incoming request, and returns an
 
205
        a protocol object that can interpret it.
 
206
 
 
207
        If more bytes than the version prefix of the request are read, they will
 
208
        be fed into the protocol before it is returned.
 
209
 
 
210
        :returns: a SmartServerRequestProtocol.
 
211
        """
 
212
        bytes = self._get_line()
 
213
        protocol_factory, unused_bytes = _get_protocol_factory_for_bytes(bytes)
 
214
        protocol = protocol_factory(
 
215
            self.backing_transport, self._write_out, self.root_client_path)
 
216
        protocol.accept_bytes(unused_bytes)
 
217
        return protocol
 
218
 
 
219
    def _serve_one_request(self, protocol):
 
220
        """Read one request from input, process, send back a response.
 
221
        
 
222
        :param protocol: a SmartServerRequestProtocol.
 
223
        """
 
224
        try:
 
225
            self._serve_one_request_unguarded(protocol)
 
226
        except KeyboardInterrupt:
 
227
            raise
 
228
        except Exception, e:
 
229
            self.terminate_due_to_error()
 
230
 
 
231
    def terminate_due_to_error(self):
 
232
        """Called when an unhandled exception from the protocol occurs."""
 
233
        raise NotImplementedError(self.terminate_due_to_error)
 
234
 
 
235
    def _read_bytes(self, desired_count):
 
236
        """Get some bytes from the medium.
 
237
 
 
238
        :param desired_count: number of bytes we want to read.
 
239
        """
 
240
        raise NotImplementedError(self._read_bytes)
 
241
 
 
242
 
 
243
class SmartServerSocketStreamMedium(SmartServerStreamMedium):
 
244
 
 
245
    def __init__(self, sock, backing_transport, root_client_path='/'):
 
246
        """Constructor.
 
247
 
 
248
        :param sock: the socket the server will read from.  It will be put
 
249
            into blocking mode.
 
250
        """
 
251
        SmartServerStreamMedium.__init__(
 
252
            self, backing_transport, root_client_path=root_client_path)
 
253
        sock.setblocking(True)
 
254
        self.socket = sock
 
255
 
 
256
    def _serve_one_request_unguarded(self, protocol):
 
257
        while protocol.next_read_size():
 
258
            # We can safely try to read large chunks.  If there is less data
 
259
            # than _MAX_READ_SIZE ready, the socket wil just return a short
 
260
            # read immediately rather than block.
 
261
            bytes = self.read_bytes(_MAX_READ_SIZE)
 
262
            if bytes == '':
 
263
                self.finished = True
 
264
                return
 
265
            protocol.accept_bytes(bytes)
 
266
        
 
267
        self._push_back(protocol.unused_data)
 
268
 
 
269
    def _read_bytes(self, desired_count):
 
270
        # We ignore the desired_count because on sockets it's more efficient to
 
271
        # read large chunks (of _MAX_READ_SIZE bytes) at a time.
 
272
        return self.socket.recv(_MAX_READ_SIZE)
 
273
 
 
274
    def terminate_due_to_error(self):
 
275
        # TODO: This should log to a server log file, but no such thing
 
276
        # exists yet.  Andrew Bennetts 2006-09-29.
 
277
        self.socket.close()
 
278
        self.finished = True
 
279
 
 
280
    def _write_out(self, bytes):
 
281
        osutils.send_all(self.socket, bytes)
 
282
 
 
283
 
 
284
class SmartServerPipeStreamMedium(SmartServerStreamMedium):
 
285
 
 
286
    def __init__(self, in_file, out_file, backing_transport):
 
287
        """Construct new server.
 
288
 
 
289
        :param in_file: Python file from which requests can be read.
 
290
        :param out_file: Python file to write responses.
 
291
        :param backing_transport: Transport for the directory served.
 
292
        """
 
293
        SmartServerStreamMedium.__init__(self, backing_transport)
 
294
        if sys.platform == 'win32':
 
295
            # force binary mode for files
 
296
            import msvcrt
 
297
            for f in (in_file, out_file):
 
298
                fileno = getattr(f, 'fileno', None)
 
299
                if fileno:
 
300
                    msvcrt.setmode(fileno(), os.O_BINARY)
 
301
        self._in = in_file
 
302
        self._out = out_file
 
303
 
 
304
    def _serve_one_request_unguarded(self, protocol):
 
305
        while True:
 
306
            # We need to be careful not to read past the end of the current
 
307
            # request, or else the read from the pipe will block, so we use
 
308
            # protocol.next_read_size().
 
309
            bytes_to_read = protocol.next_read_size()
 
310
            if bytes_to_read == 0:
 
311
                # Finished serving this request.
 
312
                self._out.flush()
 
313
                return
 
314
            bytes = self.read_bytes(bytes_to_read)
 
315
            if bytes == '':
 
316
                # Connection has been closed.
 
317
                self.finished = True
 
318
                self._out.flush()
 
319
                return
 
320
            protocol.accept_bytes(bytes)
 
321
 
 
322
    def _read_bytes(self, desired_count):
 
323
        return self._in.read(desired_count)
 
324
 
 
325
    def terminate_due_to_error(self):
 
326
        # TODO: This should log to a server log file, but no such thing
 
327
        # exists yet.  Andrew Bennetts 2006-09-29.
 
328
        self._out.close()
 
329
        self.finished = True
 
330
 
 
331
    def _write_out(self, bytes):
 
332
        self._out.write(bytes)
 
333
 
 
334
 
 
335
class SmartClientMediumRequest(object):
 
336
    """A request on a SmartClientMedium.
 
337
 
 
338
    Each request allows bytes to be provided to it via accept_bytes, and then
 
339
    the response bytes to be read via read_bytes.
 
340
 
 
341
    For instance:
 
342
    request.accept_bytes('123')
 
343
    request.finished_writing()
 
344
    result = request.read_bytes(3)
 
345
    request.finished_reading()
 
346
 
 
347
    It is up to the individual SmartClientMedium whether multiple concurrent
 
348
    requests can exist. See SmartClientMedium.get_request to obtain instances 
 
349
    of SmartClientMediumRequest, and the concrete Medium you are using for 
 
350
    details on concurrency and pipelining.
 
351
    """
 
352
 
 
353
    def __init__(self, medium):
 
354
        """Construct a SmartClientMediumRequest for the medium medium."""
 
355
        self._medium = medium
 
356
        # we track state by constants - we may want to use the same
 
357
        # pattern as BodyReader if it gets more complex.
 
358
        # valid states are: "writing", "reading", "done"
 
359
        self._state = "writing"
 
360
 
 
361
    def accept_bytes(self, bytes):
 
362
        """Accept bytes for inclusion in this request.
 
363
 
 
364
        This method may not be be called after finished_writing() has been
 
365
        called.  It depends upon the Medium whether or not the bytes will be
 
366
        immediately transmitted. Message based Mediums will tend to buffer the
 
367
        bytes until finished_writing() is called.
 
368
 
 
369
        :param bytes: A bytestring.
 
370
        """
 
371
        if self._state != "writing":
 
372
            raise errors.WritingCompleted(self)
 
373
        self._accept_bytes(bytes)
 
374
 
 
375
    def _accept_bytes(self, bytes):
 
376
        """Helper for accept_bytes.
 
377
 
 
378
        Accept_bytes checks the state of the request to determing if bytes
 
379
        should be accepted. After that it hands off to _accept_bytes to do the
 
380
        actual acceptance.
 
381
        """
 
382
        raise NotImplementedError(self._accept_bytes)
 
383
 
 
384
    def finished_reading(self):
 
385
        """Inform the request that all desired data has been read.
 
386
 
 
387
        This will remove the request from the pipeline for its medium (if the
 
388
        medium supports pipelining) and any further calls to methods on the
 
389
        request will raise ReadingCompleted.
 
390
        """
 
391
        if self._state == "writing":
 
392
            raise errors.WritingNotComplete(self)
 
393
        if self._state != "reading":
 
394
            raise errors.ReadingCompleted(self)
 
395
        self._state = "done"
 
396
        self._finished_reading()
 
397
 
 
398
    def _finished_reading(self):
 
399
        """Helper for finished_reading.
 
400
 
 
401
        finished_reading checks the state of the request to determine if 
 
402
        finished_reading is allowed, and if it is hands off to _finished_reading
 
403
        to perform the action.
 
404
        """
 
405
        raise NotImplementedError(self._finished_reading)
 
406
 
 
407
    def finished_writing(self):
 
408
        """Finish the writing phase of this request.
 
409
 
 
410
        This will flush all pending data for this request along the medium.
 
411
        After calling finished_writing, you may not call accept_bytes anymore.
 
412
        """
 
413
        if self._state != "writing":
 
414
            raise errors.WritingCompleted(self)
 
415
        self._state = "reading"
 
416
        self._finished_writing()
 
417
 
 
418
    def _finished_writing(self):
 
419
        """Helper for finished_writing.
 
420
 
 
421
        finished_writing checks the state of the request to determine if 
 
422
        finished_writing is allowed, and if it is hands off to _finished_writing
 
423
        to perform the action.
 
424
        """
 
425
        raise NotImplementedError(self._finished_writing)
 
426
 
 
427
    def read_bytes(self, count):
 
428
        """Read bytes from this requests response.
 
429
 
 
430
        This method will block and wait for count bytes to be read. It may not
 
431
        be invoked until finished_writing() has been called - this is to ensure
 
432
        a message-based approach to requests, for compatibility with message
 
433
        based mediums like HTTP.
 
434
        """
 
435
        if self._state == "writing":
 
436
            raise errors.WritingNotComplete(self)
 
437
        if self._state != "reading":
 
438
            raise errors.ReadingCompleted(self)
 
439
        return self._read_bytes(count)
 
440
 
 
441
    def _read_bytes(self, count):
 
442
        """Helper for SmartClientMediumRequest.read_bytes.
 
443
 
 
444
        read_bytes checks the state of the request to determing if bytes
 
445
        should be read. After that it hands off to _read_bytes to do the
 
446
        actual read.
 
447
        
 
448
        By default this forwards to self._medium.read_bytes because we are
 
449
        operating on the medium's stream.
 
450
        """
 
451
        return self._medium.read_bytes(count)
 
452
 
 
453
    def read_line(self):
 
454
        line = self._read_line()
 
455
        if not line.endswith('\n'):
 
456
            # end of file encountered reading from server
 
457
            raise errors.ConnectionReset(
 
458
                "please check connectivity and permissions",
 
459
                "(and try -Dhpss if further diagnosis is required)")
 
460
        return line
 
461
 
 
462
    def _read_line(self):
 
463
        """Helper for SmartClientMediumRequest.read_line.
 
464
        
 
465
        By default this forwards to self._medium._get_line because we are
 
466
        operating on the medium's stream.
 
467
        """
 
468
        return self._medium._get_line()
 
469
 
 
470
 
 
471
class SmartClientMedium(SmartMedium):
 
472
    """Smart client is a medium for sending smart protocol requests over."""
 
473
 
 
474
    def __init__(self, base):
 
475
        super(SmartClientMedium, self).__init__()
 
476
        self.base = base
 
477
        self._protocol_version_error = None
 
478
        self._protocol_version = None
 
479
        self._done_hello = False
 
480
        # Be optimistic: we assume the remote end can accept new remote
 
481
        # requests until we get an error saying otherwise.
 
482
        # _remote_version_is_before tracks the bzr version the remote side
 
483
        # can be based on what we've seen so far.
 
484
        self._remote_version_is_before = None
 
485
 
 
486
    def _is_remote_before(self, version_tuple):
 
487
        """Is it possible the remote side supports RPCs for a given version?
 
488
 
 
489
        Typical use::
 
490
 
 
491
            needed_version = (1, 2)
 
492
            if medium._is_remote_before(needed_version):
 
493
                fallback_to_pre_1_2_rpc()
 
494
            else:
 
495
                try:
 
496
                    do_1_2_rpc()
 
497
                except UnknownSmartMethod:
 
498
                    medium._remember_remote_is_before(needed_version)
 
499
                    fallback_to_pre_1_2_rpc()
 
500
 
 
501
        :seealso: _remember_remote_is_before
 
502
        """
 
503
        if self._remote_version_is_before is None:
 
504
            # So far, the remote side seems to support everything
 
505
            return False
 
506
        return version_tuple >= self._remote_version_is_before
 
507
 
 
508
    def _remember_remote_is_before(self, version_tuple):
 
509
        """Tell this medium that the remote side is older the given version.
 
510
 
 
511
        :seealso: _is_remote_before
 
512
        """
 
513
        if (self._remote_version_is_before is not None and
 
514
            version_tuple > self._remote_version_is_before):
 
515
            raise AssertionError(
 
516
                "_remember_remote_is_before(%r) called, but "
 
517
                "_remember_remote_is_before(%r) was called previously."
 
518
                % (version_tuple, self._remote_version_is_before))
 
519
        self._remote_version_is_before = version_tuple
 
520
 
 
521
    def protocol_version(self):
 
522
        """Find out if 'hello' smart request works."""
 
523
        if self._protocol_version_error is not None:
 
524
            raise self._protocol_version_error
 
525
        if not self._done_hello:
 
526
            try:
 
527
                medium_request = self.get_request()
 
528
                # Send a 'hello' request in protocol version one, for maximum
 
529
                # backwards compatibility.
 
530
                client_protocol = protocol.SmartClientRequestProtocolOne(medium_request)
 
531
                client_protocol.query_version()
 
532
                self._done_hello = True
 
533
            except errors.SmartProtocolError, e:
 
534
                # Cache the error, just like we would cache a successful
 
535
                # result.
 
536
                self._protocol_version_error = e
 
537
                raise
 
538
        return '2'
 
539
 
 
540
    def should_probe(self):
 
541
        """Should RemoteBzrDirFormat.probe_transport send a smart request on
 
542
        this medium?
 
543
 
 
544
        Some transports are unambiguously smart-only; there's no need to check
 
545
        if the transport is able to carry smart requests, because that's all
 
546
        it is for.  In those cases, this method should return False.
 
547
 
 
548
        But some HTTP transports can sometimes fail to carry smart requests,
 
549
        but still be usuable for accessing remote bzrdirs via plain file
 
550
        accesses.  So for those transports, their media should return True here
 
551
        so that RemoteBzrDirFormat can determine if it is appropriate for that
 
552
        transport.
 
553
        """
 
554
        return False
 
555
 
 
556
    def disconnect(self):
 
557
        """If this medium maintains a persistent connection, close it.
 
558
        
 
559
        The default implementation does nothing.
 
560
        """
 
561
        
 
562
    def remote_path_from_transport(self, transport):
 
563
        """Convert transport into a path suitable for using in a request.
 
564
        
 
565
        Note that the resulting remote path doesn't encode the host name or
 
566
        anything but path, so it is only safe to use it in requests sent over
 
567
        the medium from the matching transport.
 
568
        """
 
569
        medium_base = urlutils.join(self.base, '/')
 
570
        rel_url = urlutils.relative_url(medium_base, transport.base)
 
571
        return urllib.unquote(rel_url)
 
572
 
 
573
 
 
574
class SmartClientStreamMedium(SmartClientMedium):
 
575
    """Stream based medium common class.
 
576
 
 
577
    SmartClientStreamMediums operate on a stream. All subclasses use a common
 
578
    SmartClientStreamMediumRequest for their requests, and should implement
 
579
    _accept_bytes and _read_bytes to allow the request objects to send and
 
580
    receive bytes.
 
581
    """
 
582
 
 
583
    def __init__(self, base):
 
584
        SmartClientMedium.__init__(self, base)
 
585
        self._current_request = None
 
586
 
 
587
    def accept_bytes(self, bytes):
 
588
        self._accept_bytes(bytes)
 
589
 
 
590
    def __del__(self):
 
591
        """The SmartClientStreamMedium knows how to close the stream when it is
 
592
        finished with it.
 
593
        """
 
594
        self.disconnect()
 
595
 
 
596
    def _flush(self):
 
597
        """Flush the output stream.
 
598
        
 
599
        This method is used by the SmartClientStreamMediumRequest to ensure that
 
600
        all data for a request is sent, to avoid long timeouts or deadlocks.
 
601
        """
 
602
        raise NotImplementedError(self._flush)
 
603
 
 
604
    def get_request(self):
 
605
        """See SmartClientMedium.get_request().
 
606
 
 
607
        SmartClientStreamMedium always returns a SmartClientStreamMediumRequest
 
608
        for get_request.
 
609
        """
 
610
        return SmartClientStreamMediumRequest(self)
 
611
 
 
612
 
 
613
class SmartSimplePipesClientMedium(SmartClientStreamMedium):
 
614
    """A client medium using simple pipes.
 
615
    
 
616
    This client does not manage the pipes: it assumes they will always be open.
 
617
    """
 
618
 
 
619
    def __init__(self, readable_pipe, writeable_pipe, base):
 
620
        SmartClientStreamMedium.__init__(self, base)
 
621
        self._readable_pipe = readable_pipe
 
622
        self._writeable_pipe = writeable_pipe
 
623
 
 
624
    def _accept_bytes(self, bytes):
 
625
        """See SmartClientStreamMedium.accept_bytes."""
 
626
        self._writeable_pipe.write(bytes)
 
627
 
 
628
    def _flush(self):
 
629
        """See SmartClientStreamMedium._flush()."""
 
630
        self._writeable_pipe.flush()
 
631
 
 
632
    def _read_bytes(self, count):
 
633
        """See SmartClientStreamMedium._read_bytes."""
 
634
        return self._readable_pipe.read(count)
 
635
 
 
636
 
 
637
class SmartSSHClientMedium(SmartClientStreamMedium):
 
638
    """A client medium using SSH."""
 
639
    
 
640
    def __init__(self, host, port=None, username=None, password=None,
 
641
            base=None, vendor=None, bzr_remote_path=None):
 
642
        """Creates a client that will connect on the first use.
 
643
        
 
644
        :param vendor: An optional override for the ssh vendor to use. See
 
645
            bzrlib.transport.ssh for details on ssh vendors.
 
646
        """
 
647
        SmartClientStreamMedium.__init__(self, base)
 
648
        self._connected = False
 
649
        self._host = host
 
650
        self._password = password
 
651
        self._port = port
 
652
        self._username = username
 
653
        self._read_from = None
 
654
        self._ssh_connection = None
 
655
        self._vendor = vendor
 
656
        self._write_to = None
 
657
        self._bzr_remote_path = bzr_remote_path
 
658
        if self._bzr_remote_path is None:
 
659
            symbol_versioning.warn(
 
660
                'bzr_remote_path is required as of bzr 0.92',
 
661
                DeprecationWarning, stacklevel=2)
 
662
            self._bzr_remote_path = os.environ.get('BZR_REMOTE_PATH', 'bzr')
 
663
 
 
664
    def _accept_bytes(self, bytes):
 
665
        """See SmartClientStreamMedium.accept_bytes."""
 
666
        self._ensure_connection()
 
667
        self._write_to.write(bytes)
 
668
 
 
669
    def disconnect(self):
 
670
        """See SmartClientMedium.disconnect()."""
 
671
        if not self._connected:
 
672
            return
 
673
        self._read_from.close()
 
674
        self._write_to.close()
 
675
        self._ssh_connection.close()
 
676
        self._connected = False
 
677
 
 
678
    def _ensure_connection(self):
 
679
        """Connect this medium if not already connected."""
 
680
        if self._connected:
 
681
            return
 
682
        if self._vendor is None:
 
683
            vendor = ssh._get_ssh_vendor()
 
684
        else:
 
685
            vendor = self._vendor
 
686
        self._ssh_connection = vendor.connect_ssh(self._username,
 
687
                self._password, self._host, self._port,
 
688
                command=[self._bzr_remote_path, 'serve', '--inet',
 
689
                         '--directory=/', '--allow-writes'])
 
690
        self._read_from, self._write_to = \
 
691
            self._ssh_connection.get_filelike_channels()
 
692
        self._connected = True
 
693
 
 
694
    def _flush(self):
 
695
        """See SmartClientStreamMedium._flush()."""
 
696
        self._write_to.flush()
 
697
 
 
698
    def _read_bytes(self, count):
 
699
        """See SmartClientStreamMedium.read_bytes."""
 
700
        if not self._connected:
 
701
            raise errors.MediumNotConnected(self)
 
702
        bytes_to_read = min(count, _MAX_READ_SIZE)
 
703
        return self._read_from.read(bytes_to_read)
 
704
 
 
705
 
 
706
# Port 4155 is the default port for bzr://, registered with IANA.
 
707
BZR_DEFAULT_INTERFACE = '0.0.0.0'
 
708
BZR_DEFAULT_PORT = 4155
 
709
 
 
710
 
 
711
class SmartTCPClientMedium(SmartClientStreamMedium):
 
712
    """A client medium using TCP."""
 
713
    
 
714
    def __init__(self, host, port, base):
 
715
        """Creates a client that will connect on the first use."""
 
716
        SmartClientStreamMedium.__init__(self, base)
 
717
        self._connected = False
 
718
        self._host = host
 
719
        self._port = port
 
720
        self._socket = None
 
721
 
 
722
    def _accept_bytes(self, bytes):
 
723
        """See SmartClientMedium.accept_bytes."""
 
724
        self._ensure_connection()
 
725
        osutils.send_all(self._socket, bytes)
 
726
 
 
727
    def disconnect(self):
 
728
        """See SmartClientMedium.disconnect()."""
 
729
        if not self._connected:
 
730
            return
 
731
        self._socket.close()
 
732
        self._socket = None
 
733
        self._connected = False
 
734
 
 
735
    def _ensure_connection(self):
 
736
        """Connect this medium if not already connected."""
 
737
        if self._connected:
 
738
            return
 
739
        self._socket = socket.socket()
 
740
        self._socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
 
741
        if self._port is None:
 
742
            port = BZR_DEFAULT_PORT
 
743
        else:
 
744
            port = int(self._port)
 
745
        try:
 
746
            self._socket.connect((self._host, port))
 
747
        except socket.error, err:
 
748
            # socket errors either have a (string) or (errno, string) as their
 
749
            # args.
 
750
            if type(err.args) is str:
 
751
                err_msg = err.args
 
752
            else:
 
753
                err_msg = err.args[1]
 
754
            raise errors.ConnectionError("failed to connect to %s:%d: %s" %
 
755
                    (self._host, port, err_msg))
 
756
        self._connected = True
 
757
 
 
758
    def _flush(self):
 
759
        """See SmartClientStreamMedium._flush().
 
760
        
 
761
        For TCP we do no flushing. We may want to turn off TCP_NODELAY and 
 
762
        add a means to do a flush, but that can be done in the future.
 
763
        """
 
764
 
 
765
    def _read_bytes(self, count):
 
766
        """See SmartClientMedium.read_bytes."""
 
767
        if not self._connected:
 
768
            raise errors.MediumNotConnected(self)
 
769
        # We ignore the desired_count because on sockets it's more efficient to
 
770
        # read large chunks (of _MAX_READ_SIZE bytes) at a time.
 
771
        return self._socket.recv(_MAX_READ_SIZE)
 
772
 
 
773
 
 
774
class SmartClientStreamMediumRequest(SmartClientMediumRequest):
 
775
    """A SmartClientMediumRequest that works with an SmartClientStreamMedium."""
 
776
 
 
777
    def __init__(self, medium):
 
778
        SmartClientMediumRequest.__init__(self, medium)
 
779
        # check that we are safe concurrency wise. If some streams start
 
780
        # allowing concurrent requests - i.e. via multiplexing - then this
 
781
        # assert should be moved to SmartClientStreamMedium.get_request,
 
782
        # and the setting/unsetting of _current_request likewise moved into
 
783
        # that class : but its unneeded overhead for now. RBC 20060922
 
784
        if self._medium._current_request is not None:
 
785
            raise errors.TooManyConcurrentRequests(self._medium)
 
786
        self._medium._current_request = self
 
787
 
 
788
    def _accept_bytes(self, bytes):
 
789
        """See SmartClientMediumRequest._accept_bytes.
 
790
        
 
791
        This forwards to self._medium._accept_bytes because we are operating
 
792
        on the mediums stream.
 
793
        """
 
794
        self._medium._accept_bytes(bytes)
 
795
 
 
796
    def _finished_reading(self):
 
797
        """See SmartClientMediumRequest._finished_reading.
 
798
 
 
799
        This clears the _current_request on self._medium to allow a new 
 
800
        request to be created.
 
801
        """
 
802
        if self._medium._current_request is not self:
 
803
            raise AssertionError()
 
804
        self._medium._current_request = None
 
805
        
 
806
    def _finished_writing(self):
 
807
        """See SmartClientMediumRequest._finished_writing.
 
808
 
 
809
        This invokes self._medium._flush to ensure all bytes are transmitted.
 
810
        """
 
811
        self._medium._flush()
 
812