/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/smart/medium.py

  • Committer: Martin Packman
  • Date: 2011-11-29 16:14:12 UTC
  • mto: This revision was merged to the branch mainline in revision 6327.
  • Revision ID: martin.packman@canonical.com-20111129161412-mx4yu5mg6xsaty46
Require the dulwich package when using py2exe with the git plugin enabled

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006-2011 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 errno
 
28
import os
 
29
import sys
 
30
import time
 
31
import urllib
 
32
 
 
33
import bzrlib
 
34
from bzrlib.lazy_import import lazy_import
 
35
lazy_import(globals(), """
 
36
import select
 
37
import socket
 
38
import thread
 
39
import weakref
 
40
 
 
41
from bzrlib import (
 
42
    debug,
 
43
    errors,
 
44
    trace,
 
45
    ui,
 
46
    urlutils,
 
47
    )
 
48
from bzrlib.i18n import gettext
 
49
from bzrlib.smart import client, protocol, request, signals, vfs
 
50
from bzrlib.transport import ssh
 
51
""")
 
52
from bzrlib import osutils
 
53
 
 
54
# Throughout this module buffer size parameters are either limited to be at
 
55
# most _MAX_READ_SIZE, or are ignored and _MAX_READ_SIZE is used instead.
 
56
# For this module's purposes, MAX_SOCKET_CHUNK is a reasonable size for reads
 
57
# from non-sockets as well.
 
58
_MAX_READ_SIZE = osutils.MAX_SOCKET_CHUNK
 
59
 
 
60
def _get_protocol_factory_for_bytes(bytes):
 
61
    """Determine the right protocol factory for 'bytes'.
 
62
 
 
63
    This will return an appropriate protocol factory depending on the version
 
64
    of the protocol being used, as determined by inspecting the given bytes.
 
65
    The bytes should have at least one newline byte (i.e. be a whole line),
 
66
    otherwise it's possible that a request will be incorrectly identified as
 
67
    version 1.
 
68
 
 
69
    Typical use would be::
 
70
 
 
71
         factory, unused_bytes = _get_protocol_factory_for_bytes(bytes)
 
72
         server_protocol = factory(transport, write_func, root_client_path)
 
73
         server_protocol.accept_bytes(unused_bytes)
 
74
 
 
75
    :param bytes: a str of bytes of the start of the request.
 
76
    :returns: 2-tuple of (protocol_factory, unused_bytes).  protocol_factory is
 
77
        a callable that takes three args: transport, write_func,
 
78
        root_client_path.  unused_bytes are any bytes that were not part of a
 
79
        protocol version marker.
 
80
    """
 
81
    if bytes.startswith(protocol.MESSAGE_VERSION_THREE):
 
82
        protocol_factory = protocol.build_server_protocol_three
 
83
        bytes = bytes[len(protocol.MESSAGE_VERSION_THREE):]
 
84
    elif bytes.startswith(protocol.REQUEST_VERSION_TWO):
 
85
        protocol_factory = protocol.SmartServerRequestProtocolTwo
 
86
        bytes = bytes[len(protocol.REQUEST_VERSION_TWO):]
 
87
    else:
 
88
        protocol_factory = protocol.SmartServerRequestProtocolOne
 
89
    return protocol_factory, bytes
 
90
 
 
91
 
 
92
def _get_line(read_bytes_func):
 
93
    """Read bytes using read_bytes_func until a newline byte.
 
94
 
 
95
    This isn't particularly efficient, so should only be used when the
 
96
    expected size of the line is quite short.
 
97
 
 
98
    :returns: a tuple of two strs: (line, excess)
 
99
    """
 
100
    newline_pos = -1
 
101
    bytes = ''
 
102
    while newline_pos == -1:
 
103
        new_bytes = read_bytes_func(1)
 
104
        bytes += new_bytes
 
105
        if new_bytes == '':
 
106
            # Ran out of bytes before receiving a complete line.
 
107
            return bytes, ''
 
108
        newline_pos = bytes.find('\n')
 
109
    line = bytes[:newline_pos+1]
 
110
    excess = bytes[newline_pos+1:]
 
111
    return line, excess
 
112
 
 
113
 
 
114
class SmartMedium(object):
 
115
    """Base class for smart protocol media, both client- and server-side."""
 
116
 
 
117
    def __init__(self):
 
118
        self._push_back_buffer = None
 
119
 
 
120
    def _push_back(self, bytes):
 
121
        """Return unused bytes to the medium, because they belong to the next
 
122
        request(s).
 
123
 
 
124
        This sets the _push_back_buffer to the given bytes.
 
125
        """
 
126
        if self._push_back_buffer is not None:
 
127
            raise AssertionError(
 
128
                "_push_back called when self._push_back_buffer is %r"
 
129
                % (self._push_back_buffer,))
 
130
        if bytes == '':
 
131
            return
 
132
        self._push_back_buffer = bytes
 
133
 
 
134
    def _get_push_back_buffer(self):
 
135
        if self._push_back_buffer == '':
 
136
            raise AssertionError(
 
137
                '%s._push_back_buffer should never be the empty string, '
 
138
                'which can be confused with EOF' % (self,))
 
139
        bytes = self._push_back_buffer
 
140
        self._push_back_buffer = None
 
141
        return bytes
 
142
 
 
143
    def read_bytes(self, desired_count):
 
144
        """Read some bytes from this medium.
 
145
 
 
146
        :returns: some bytes, possibly more or less than the number requested
 
147
            in 'desired_count' depending on the medium.
 
148
        """
 
149
        if self._push_back_buffer is not None:
 
150
            return self._get_push_back_buffer()
 
151
        bytes_to_read = min(desired_count, _MAX_READ_SIZE)
 
152
        return self._read_bytes(bytes_to_read)
 
153
 
 
154
    def _read_bytes(self, count):
 
155
        raise NotImplementedError(self._read_bytes)
 
156
 
 
157
    def _get_line(self):
 
158
        """Read bytes from this request's response until a newline byte.
 
159
 
 
160
        This isn't particularly efficient, so should only be used when the
 
161
        expected size of the line is quite short.
 
162
 
 
163
        :returns: a string of bytes ending in a newline (byte 0x0A).
 
164
        """
 
165
        line, excess = _get_line(self.read_bytes)
 
166
        self._push_back(excess)
 
167
        return line
 
168
 
 
169
    def _report_activity(self, bytes, direction):
 
170
        """Notify that this medium has activity.
 
171
 
 
172
        Implementations should call this from all methods that actually do IO.
 
173
        Be careful that it's not called twice, if one method is implemented on
 
174
        top of another.
 
175
 
 
176
        :param bytes: Number of bytes read or written.
 
177
        :param direction: 'read' or 'write' or None.
 
178
        """
 
179
        ui.ui_factory.report_transport_activity(self, bytes, direction)
 
180
 
 
181
 
 
182
_bad_file_descriptor = (errno.EBADF,)
 
183
if sys.platform == 'win32':
 
184
    # Given on Windows if you pass a closed socket to select.select. Probably
 
185
    # also given if you pass a file handle to select.
 
186
    WSAENOTSOCK = 10038
 
187
    _bad_file_descriptor += (WSAENOTSOCK,)
 
188
 
 
189
 
 
190
class SmartServerStreamMedium(SmartMedium):
 
191
    """Handles smart commands coming over a stream.
 
192
 
 
193
    The stream may be a pipe connected to sshd, or a tcp socket, or an
 
194
    in-process fifo for testing.
 
195
 
 
196
    One instance is created for each connected client; it can serve multiple
 
197
    requests in the lifetime of the connection.
 
198
 
 
199
    The server passes requests through to an underlying backing transport,
 
200
    which will typically be a LocalTransport looking at the server's filesystem.
 
201
 
 
202
    :ivar _push_back_buffer: a str of bytes that have been read from the stream
 
203
        but not used yet, or None if there are no buffered bytes.  Subclasses
 
204
        should make sure to exhaust this buffer before reading more bytes from
 
205
        the stream.  See also the _push_back method.
 
206
    """
 
207
 
 
208
    _timer = time.time
 
209
 
 
210
    def __init__(self, backing_transport, root_client_path='/', timeout=None):
 
211
        """Construct new server.
 
212
 
 
213
        :param backing_transport: Transport for the directory served.
 
214
        """
 
215
        # backing_transport could be passed to serve instead of __init__
 
216
        self.backing_transport = backing_transport
 
217
        self.root_client_path = root_client_path
 
218
        self.finished = False
 
219
        if timeout is None:
 
220
            raise AssertionError('You must supply a timeout.')
 
221
        self._client_timeout = timeout
 
222
        self._client_poll_timeout = min(timeout / 10.0, 1.0)
 
223
        SmartMedium.__init__(self)
 
224
 
 
225
    def serve(self):
 
226
        """Serve requests until the client disconnects."""
 
227
        # Keep a reference to stderr because the sys module's globals get set to
 
228
        # None during interpreter shutdown.
 
229
        from sys import stderr
 
230
        try:
 
231
            while not self.finished:
 
232
                server_protocol = self._build_protocol()
 
233
                self._serve_one_request(server_protocol)
 
234
        except errors.ConnectionTimeout, e:
 
235
            trace.note('%s' % (e,))
 
236
            trace.log_exception_quietly()
 
237
            self._disconnect_client()
 
238
            # We reported it, no reason to make a big fuss.
 
239
            return
 
240
        except Exception, e:
 
241
            stderr.write("%s terminating on exception %s\n" % (self, e))
 
242
            raise
 
243
        self._disconnect_client()
 
244
 
 
245
    def _stop_gracefully(self):
 
246
        """When we finish this message, stop looking for more."""
 
247
        trace.mutter('Stopping %s' % (self,))
 
248
        self.finished = True
 
249
 
 
250
    def _disconnect_client(self):
 
251
        """Close the current connection. We stopped due to a timeout/etc."""
 
252
        # The default implementation is a no-op, because that is all we used to
 
253
        # do when disconnecting from a client. I suppose we never had the
 
254
        # *server* initiate a disconnect, before
 
255
 
 
256
    def _wait_for_bytes_with_timeout(self, timeout_seconds):
 
257
        """Wait for more bytes to be read, but timeout if none available.
 
258
 
 
259
        This allows us to detect idle connections, and stop trying to read from
 
260
        them, without setting the socket itself to non-blocking. This also
 
261
        allows us to specify when we watch for idle timeouts.
 
262
 
 
263
        :return: Did we timeout? (True if we timed out, False if there is data
 
264
            to be read)
 
265
        """
 
266
        raise NotImplementedError(self._wait_for_bytes_with_timeout)
 
267
 
 
268
    def _build_protocol(self):
 
269
        """Identifies the version of the incoming request, and returns an
 
270
        a protocol object that can interpret it.
 
271
 
 
272
        If more bytes than the version prefix of the request are read, they will
 
273
        be fed into the protocol before it is returned.
 
274
 
 
275
        :returns: a SmartServerRequestProtocol.
 
276
        """
 
277
        self._wait_for_bytes_with_timeout(self._client_timeout)
 
278
        if self.finished:
 
279
            # We're stopping, so don't try to do any more work
 
280
            return None
 
281
        bytes = self._get_line()
 
282
        protocol_factory, unused_bytes = _get_protocol_factory_for_bytes(bytes)
 
283
        protocol = protocol_factory(
 
284
            self.backing_transport, self._write_out, self.root_client_path)
 
285
        protocol.accept_bytes(unused_bytes)
 
286
        return protocol
 
287
 
 
288
    def _wait_on_descriptor(self, fd, timeout_seconds):
 
289
        """select() on a file descriptor, waiting for nonblocking read()
 
290
 
 
291
        This will raise a ConnectionTimeout exception if we do not get a
 
292
        readable handle before timeout_seconds.
 
293
        :return: None
 
294
        """
 
295
        t_end = self._timer() + timeout_seconds
 
296
        poll_timeout = min(timeout_seconds, self._client_poll_timeout)
 
297
        rs = xs = None
 
298
        while not rs and not xs and self._timer() < t_end:
 
299
            if self.finished:
 
300
                return
 
301
            try:
 
302
                rs, _, xs = select.select([fd], [], [fd], poll_timeout)
 
303
            except (select.error, socket.error) as e:
 
304
                err = getattr(e, 'errno', None)
 
305
                if err is None and getattr(e, 'args', None) is not None:
 
306
                    # select.error doesn't have 'errno', it just has args[0]
 
307
                    err = e.args[0]
 
308
                if err in _bad_file_descriptor:
 
309
                    return # Not a socket indicates read() will fail
 
310
                elif err == errno.EINTR:
 
311
                    # Interrupted, keep looping.
 
312
                    continue
 
313
                raise
 
314
        if rs or xs:
 
315
            return
 
316
        raise errors.ConnectionTimeout('disconnecting client after %.1f seconds'
 
317
                                       % (timeout_seconds,))
 
318
 
 
319
    def _serve_one_request(self, protocol):
 
320
        """Read one request from input, process, send back a response.
 
321
 
 
322
        :param protocol: a SmartServerRequestProtocol.
 
323
        """
 
324
        if protocol is None:
 
325
            return
 
326
        try:
 
327
            self._serve_one_request_unguarded(protocol)
 
328
        except KeyboardInterrupt:
 
329
            raise
 
330
        except Exception, e:
 
331
            self.terminate_due_to_error()
 
332
 
 
333
    def terminate_due_to_error(self):
 
334
        """Called when an unhandled exception from the protocol occurs."""
 
335
        raise NotImplementedError(self.terminate_due_to_error)
 
336
 
 
337
    def _read_bytes(self, desired_count):
 
338
        """Get some bytes from the medium.
 
339
 
 
340
        :param desired_count: number of bytes we want to read.
 
341
        """
 
342
        raise NotImplementedError(self._read_bytes)
 
343
 
 
344
 
 
345
class SmartServerSocketStreamMedium(SmartServerStreamMedium):
 
346
 
 
347
    def __init__(self, sock, backing_transport, root_client_path='/',
 
348
                 timeout=None):
 
349
        """Constructor.
 
350
 
 
351
        :param sock: the socket the server will read from.  It will be put
 
352
            into blocking mode.
 
353
        """
 
354
        SmartServerStreamMedium.__init__(
 
355
            self, backing_transport, root_client_path=root_client_path,
 
356
            timeout=timeout)
 
357
        sock.setblocking(True)
 
358
        self.socket = sock
 
359
        # Get the getpeername now, as we might be closed later when we care.
 
360
        try:
 
361
            self._client_info = sock.getpeername()
 
362
        except socket.error:
 
363
            self._client_info = '<unknown>'
 
364
 
 
365
    def __str__(self):
 
366
        return '%s(client=%s)' % (self.__class__.__name__, self._client_info)
 
367
 
 
368
    def __repr__(self):
 
369
        return '%s.%s(client=%s)' % (self.__module__, self.__class__.__name__,
 
370
            self._client_info)
 
371
 
 
372
    def _serve_one_request_unguarded(self, protocol):
 
373
        while protocol.next_read_size():
 
374
            # We can safely try to read large chunks.  If there is less data
 
375
            # than MAX_SOCKET_CHUNK ready, the socket will just return a
 
376
            # short read immediately rather than block.
 
377
            bytes = self.read_bytes(osutils.MAX_SOCKET_CHUNK)
 
378
            if bytes == '':
 
379
                self.finished = True
 
380
                return
 
381
            protocol.accept_bytes(bytes)
 
382
 
 
383
        self._push_back(protocol.unused_data)
 
384
 
 
385
    def _disconnect_client(self):
 
386
        """Close the current connection. We stopped due to a timeout/etc."""
 
387
        self.socket.close()
 
388
 
 
389
    def _wait_for_bytes_with_timeout(self, timeout_seconds):
 
390
        """Wait for more bytes to be read, but timeout if none available.
 
391
 
 
392
        This allows us to detect idle connections, and stop trying to read from
 
393
        them, without setting the socket itself to non-blocking. This also
 
394
        allows us to specify when we watch for idle timeouts.
 
395
 
 
396
        :return: None, this will raise ConnectionTimeout if we time out before
 
397
            data is available.
 
398
        """
 
399
        return self._wait_on_descriptor(self.socket, timeout_seconds)
 
400
 
 
401
    def _read_bytes(self, desired_count):
 
402
        return osutils.read_bytes_from_socket(
 
403
            self.socket, self._report_activity)
 
404
 
 
405
    def terminate_due_to_error(self):
 
406
        # TODO: This should log to a server log file, but no such thing
 
407
        # exists yet.  Andrew Bennetts 2006-09-29.
 
408
        self.socket.close()
 
409
        self.finished = True
 
410
 
 
411
    def _write_out(self, bytes):
 
412
        tstart = osutils.timer_func()
 
413
        osutils.send_all(self.socket, bytes, self._report_activity)
 
414
        if 'hpss' in debug.debug_flags:
 
415
            thread_id = thread.get_ident()
 
416
            trace.mutter('%12s: [%s] %d bytes to the socket in %.3fs'
 
417
                         % ('wrote', thread_id, len(bytes),
 
418
                            osutils.timer_func() - tstart))
 
419
 
 
420
 
 
421
class SmartServerPipeStreamMedium(SmartServerStreamMedium):
 
422
 
 
423
    def __init__(self, in_file, out_file, backing_transport, timeout=None):
 
424
        """Construct new server.
 
425
 
 
426
        :param in_file: Python file from which requests can be read.
 
427
        :param out_file: Python file to write responses.
 
428
        :param backing_transport: Transport for the directory served.
 
429
        """
 
430
        SmartServerStreamMedium.__init__(self, backing_transport,
 
431
            timeout=timeout)
 
432
        if sys.platform == 'win32':
 
433
            # force binary mode for files
 
434
            import msvcrt
 
435
            for f in (in_file, out_file):
 
436
                fileno = getattr(f, 'fileno', None)
 
437
                if fileno:
 
438
                    msvcrt.setmode(fileno(), os.O_BINARY)
 
439
        self._in = in_file
 
440
        self._out = out_file
 
441
 
 
442
    def serve(self):
 
443
        """See SmartServerStreamMedium.serve"""
 
444
        # This is the regular serve, except it adds signal trapping for soft
 
445
        # shutdown.
 
446
        stop_gracefully = self._stop_gracefully
 
447
        signals.register_on_hangup(id(self), stop_gracefully)
 
448
        try:
 
449
            return super(SmartServerPipeStreamMedium, self).serve()
 
450
        finally:
 
451
            signals.unregister_on_hangup(id(self))
 
452
 
 
453
    def _serve_one_request_unguarded(self, protocol):
 
454
        while True:
 
455
            # We need to be careful not to read past the end of the current
 
456
            # request, or else the read from the pipe will block, so we use
 
457
            # protocol.next_read_size().
 
458
            bytes_to_read = protocol.next_read_size()
 
459
            if bytes_to_read == 0:
 
460
                # Finished serving this request.
 
461
                self._out.flush()
 
462
                return
 
463
            bytes = self.read_bytes(bytes_to_read)
 
464
            if bytes == '':
 
465
                # Connection has been closed.
 
466
                self.finished = True
 
467
                self._out.flush()
 
468
                return
 
469
            protocol.accept_bytes(bytes)
 
470
 
 
471
    def _disconnect_client(self):
 
472
        self._in.close()
 
473
        self._out.flush()
 
474
        self._out.close()
 
475
 
 
476
    def _wait_for_bytes_with_timeout(self, timeout_seconds):
 
477
        """Wait for more bytes to be read, but timeout if none available.
 
478
 
 
479
        This allows us to detect idle connections, and stop trying to read from
 
480
        them, without setting the socket itself to non-blocking. This also
 
481
        allows us to specify when we watch for idle timeouts.
 
482
 
 
483
        :return: None, this will raise ConnectionTimeout if we time out before
 
484
            data is available.
 
485
        """
 
486
        if (getattr(self._in, 'fileno', None) is None
 
487
            or sys.platform == 'win32'):
 
488
            # You can't select() file descriptors on Windows.
 
489
            return
 
490
        return self._wait_on_descriptor(self._in, timeout_seconds)
 
491
 
 
492
    def _read_bytes(self, desired_count):
 
493
        return self._in.read(desired_count)
 
494
 
 
495
    def terminate_due_to_error(self):
 
496
        # TODO: This should log to a server log file, but no such thing
 
497
        # exists yet.  Andrew Bennetts 2006-09-29.
 
498
        self._out.close()
 
499
        self.finished = True
 
500
 
 
501
    def _write_out(self, bytes):
 
502
        self._out.write(bytes)
 
503
 
 
504
 
 
505
class SmartClientMediumRequest(object):
 
506
    """A request on a SmartClientMedium.
 
507
 
 
508
    Each request allows bytes to be provided to it via accept_bytes, and then
 
509
    the response bytes to be read via read_bytes.
 
510
 
 
511
    For instance:
 
512
    request.accept_bytes('123')
 
513
    request.finished_writing()
 
514
    result = request.read_bytes(3)
 
515
    request.finished_reading()
 
516
 
 
517
    It is up to the individual SmartClientMedium whether multiple concurrent
 
518
    requests can exist. See SmartClientMedium.get_request to obtain instances
 
519
    of SmartClientMediumRequest, and the concrete Medium you are using for
 
520
    details on concurrency and pipelining.
 
521
    """
 
522
 
 
523
    def __init__(self, medium):
 
524
        """Construct a SmartClientMediumRequest for the medium medium."""
 
525
        self._medium = medium
 
526
        # we track state by constants - we may want to use the same
 
527
        # pattern as BodyReader if it gets more complex.
 
528
        # valid states are: "writing", "reading", "done"
 
529
        self._state = "writing"
 
530
 
 
531
    def accept_bytes(self, bytes):
 
532
        """Accept bytes for inclusion in this request.
 
533
 
 
534
        This method may not be called after finished_writing() has been
 
535
        called.  It depends upon the Medium whether or not the bytes will be
 
536
        immediately transmitted. Message based Mediums will tend to buffer the
 
537
        bytes until finished_writing() is called.
 
538
 
 
539
        :param bytes: A bytestring.
 
540
        """
 
541
        if self._state != "writing":
 
542
            raise errors.WritingCompleted(self)
 
543
        self._accept_bytes(bytes)
 
544
 
 
545
    def _accept_bytes(self, bytes):
 
546
        """Helper for accept_bytes.
 
547
 
 
548
        Accept_bytes checks the state of the request to determing if bytes
 
549
        should be accepted. After that it hands off to _accept_bytes to do the
 
550
        actual acceptance.
 
551
        """
 
552
        raise NotImplementedError(self._accept_bytes)
 
553
 
 
554
    def finished_reading(self):
 
555
        """Inform the request that all desired data has been read.
 
556
 
 
557
        This will remove the request from the pipeline for its medium (if the
 
558
        medium supports pipelining) and any further calls to methods on the
 
559
        request will raise ReadingCompleted.
 
560
        """
 
561
        if self._state == "writing":
 
562
            raise errors.WritingNotComplete(self)
 
563
        if self._state != "reading":
 
564
            raise errors.ReadingCompleted(self)
 
565
        self._state = "done"
 
566
        self._finished_reading()
 
567
 
 
568
    def _finished_reading(self):
 
569
        """Helper for finished_reading.
 
570
 
 
571
        finished_reading checks the state of the request to determine if
 
572
        finished_reading is allowed, and if it is hands off to _finished_reading
 
573
        to perform the action.
 
574
        """
 
575
        raise NotImplementedError(self._finished_reading)
 
576
 
 
577
    def finished_writing(self):
 
578
        """Finish the writing phase of this request.
 
579
 
 
580
        This will flush all pending data for this request along the medium.
 
581
        After calling finished_writing, you may not call accept_bytes anymore.
 
582
        """
 
583
        if self._state != "writing":
 
584
            raise errors.WritingCompleted(self)
 
585
        self._state = "reading"
 
586
        self._finished_writing()
 
587
 
 
588
    def _finished_writing(self):
 
589
        """Helper for finished_writing.
 
590
 
 
591
        finished_writing checks the state of the request to determine if
 
592
        finished_writing is allowed, and if it is hands off to _finished_writing
 
593
        to perform the action.
 
594
        """
 
595
        raise NotImplementedError(self._finished_writing)
 
596
 
 
597
    def read_bytes(self, count):
 
598
        """Read bytes from this requests response.
 
599
 
 
600
        This method will block and wait for count bytes to be read. It may not
 
601
        be invoked until finished_writing() has been called - this is to ensure
 
602
        a message-based approach to requests, for compatibility with message
 
603
        based mediums like HTTP.
 
604
        """
 
605
        if self._state == "writing":
 
606
            raise errors.WritingNotComplete(self)
 
607
        if self._state != "reading":
 
608
            raise errors.ReadingCompleted(self)
 
609
        return self._read_bytes(count)
 
610
 
 
611
    def _read_bytes(self, count):
 
612
        """Helper for SmartClientMediumRequest.read_bytes.
 
613
 
 
614
        read_bytes checks the state of the request to determing if bytes
 
615
        should be read. After that it hands off to _read_bytes to do the
 
616
        actual read.
 
617
 
 
618
        By default this forwards to self._medium.read_bytes because we are
 
619
        operating on the medium's stream.
 
620
        """
 
621
        return self._medium.read_bytes(count)
 
622
 
 
623
    def read_line(self):
 
624
        line = self._read_line()
 
625
        if not line.endswith('\n'):
 
626
            # end of file encountered reading from server
 
627
            raise errors.ConnectionReset(
 
628
                "Unexpected end of message. Please check connectivity "
 
629
                "and permissions, and report a bug if problems persist.")
 
630
        return line
 
631
 
 
632
    def _read_line(self):
 
633
        """Helper for SmartClientMediumRequest.read_line.
 
634
 
 
635
        By default this forwards to self._medium._get_line because we are
 
636
        operating on the medium's stream.
 
637
        """
 
638
        return self._medium._get_line()
 
639
 
 
640
 
 
641
class _VfsRefuser(object):
 
642
    """An object that refuses all VFS requests.
 
643
 
 
644
    """
 
645
 
 
646
    def __init__(self):
 
647
        client._SmartClient.hooks.install_named_hook(
 
648
            'call', self.check_vfs, 'vfs refuser')
 
649
 
 
650
    def check_vfs(self, params):
 
651
        try:
 
652
            request_method = request.request_handlers.get(params.method)
 
653
        except KeyError:
 
654
            # A method we don't know about doesn't count as a VFS method.
 
655
            return
 
656
        if issubclass(request_method, vfs.VfsRequest):
 
657
            raise errors.HpssVfsRequestNotAllowed(params.method, params.args)
 
658
 
 
659
 
 
660
class _DebugCounter(object):
 
661
    """An object that counts the HPSS calls made to each client medium.
 
662
 
 
663
    When a medium is garbage-collected, or failing that when
 
664
    bzrlib.global_state exits, the total number of calls made on that medium
 
665
    are reported via trace.note.
 
666
    """
 
667
 
 
668
    def __init__(self):
 
669
        self.counts = weakref.WeakKeyDictionary()
 
670
        client._SmartClient.hooks.install_named_hook(
 
671
            'call', self.increment_call_count, 'hpss call counter')
 
672
        bzrlib.global_state.cleanups.add_cleanup(self.flush_all)
 
673
 
 
674
    def track(self, medium):
 
675
        """Start tracking calls made to a medium.
 
676
 
 
677
        This only keeps a weakref to the medium, so shouldn't affect the
 
678
        medium's lifetime.
 
679
        """
 
680
        medium_repr = repr(medium)
 
681
        # Add this medium to the WeakKeyDictionary
 
682
        self.counts[medium] = dict(count=0, vfs_count=0,
 
683
                                   medium_repr=medium_repr)
 
684
        # Weakref callbacks are fired in reverse order of their association
 
685
        # with the referenced object.  So we add a weakref *after* adding to
 
686
        # the WeakKeyDict so that we can report the value from it before the
 
687
        # entry is removed by the WeakKeyDict's own callback.
 
688
        ref = weakref.ref(medium, self.done)
 
689
 
 
690
    def increment_call_count(self, params):
 
691
        # Increment the count in the WeakKeyDictionary
 
692
        value = self.counts[params.medium]
 
693
        value['count'] += 1
 
694
        try:
 
695
            request_method = request.request_handlers.get(params.method)
 
696
        except KeyError:
 
697
            # A method we don't know about doesn't count as a VFS method.
 
698
            return
 
699
        if issubclass(request_method, vfs.VfsRequest):
 
700
            value['vfs_count'] += 1
 
701
 
 
702
    def done(self, ref):
 
703
        value = self.counts[ref]
 
704
        count, vfs_count, medium_repr = (
 
705
            value['count'], value['vfs_count'], value['medium_repr'])
 
706
        # In case this callback is invoked for the same ref twice (by the
 
707
        # weakref callback and by the atexit function), set the call count back
 
708
        # to 0 so this item won't be reported twice.
 
709
        value['count'] = 0
 
710
        value['vfs_count'] = 0
 
711
        if count != 0:
 
712
            trace.note(gettext('HPSS calls: {0} ({1} vfs) {2}').format(
 
713
                       count, vfs_count, medium_repr))
 
714
 
 
715
    def flush_all(self):
 
716
        for ref in list(self.counts.keys()):
 
717
            self.done(ref)
 
718
 
 
719
_debug_counter = None
 
720
_vfs_refuser = None
 
721
 
 
722
 
 
723
class SmartClientMedium(SmartMedium):
 
724
    """Smart client is a medium for sending smart protocol requests over."""
 
725
 
 
726
    def __init__(self, base):
 
727
        super(SmartClientMedium, self).__init__()
 
728
        self.base = base
 
729
        self._protocol_version_error = None
 
730
        self._protocol_version = None
 
731
        self._done_hello = False
 
732
        # Be optimistic: we assume the remote end can accept new remote
 
733
        # requests until we get an error saying otherwise.
 
734
        # _remote_version_is_before tracks the bzr version the remote side
 
735
        # can be based on what we've seen so far.
 
736
        self._remote_version_is_before = None
 
737
        # Install debug hook function if debug flag is set.
 
738
        if 'hpss' in debug.debug_flags:
 
739
            global _debug_counter
 
740
            if _debug_counter is None:
 
741
                _debug_counter = _DebugCounter()
 
742
            _debug_counter.track(self)
 
743
        if 'hpss_client_no_vfs' in debug.debug_flags:
 
744
            global _vfs_refuser
 
745
            if _vfs_refuser is None:
 
746
                _vfs_refuser = _VfsRefuser()
 
747
 
 
748
    def _is_remote_before(self, version_tuple):
 
749
        """Is it possible the remote side supports RPCs for a given version?
 
750
 
 
751
        Typical use::
 
752
 
 
753
            needed_version = (1, 2)
 
754
            if medium._is_remote_before(needed_version):
 
755
                fallback_to_pre_1_2_rpc()
 
756
            else:
 
757
                try:
 
758
                    do_1_2_rpc()
 
759
                except UnknownSmartMethod:
 
760
                    medium._remember_remote_is_before(needed_version)
 
761
                    fallback_to_pre_1_2_rpc()
 
762
 
 
763
        :seealso: _remember_remote_is_before
 
764
        """
 
765
        if self._remote_version_is_before is None:
 
766
            # So far, the remote side seems to support everything
 
767
            return False
 
768
        return version_tuple >= self._remote_version_is_before
 
769
 
 
770
    def _remember_remote_is_before(self, version_tuple):
 
771
        """Tell this medium that the remote side is older the given version.
 
772
 
 
773
        :seealso: _is_remote_before
 
774
        """
 
775
        if (self._remote_version_is_before is not None and
 
776
            version_tuple > self._remote_version_is_before):
 
777
            # We have been told that the remote side is older than some version
 
778
            # which is newer than a previously supplied older-than version.
 
779
            # This indicates that some smart verb call is not guarded
 
780
            # appropriately (it should simply not have been tried).
 
781
            trace.mutter(
 
782
                "_remember_remote_is_before(%r) called, but "
 
783
                "_remember_remote_is_before(%r) was called previously."
 
784
                , version_tuple, self._remote_version_is_before)
 
785
            if 'hpss' in debug.debug_flags:
 
786
                ui.ui_factory.show_warning(
 
787
                    "_remember_remote_is_before(%r) called, but "
 
788
                    "_remember_remote_is_before(%r) was called previously."
 
789
                    % (version_tuple, self._remote_version_is_before))
 
790
            return
 
791
        self._remote_version_is_before = version_tuple
 
792
 
 
793
    def protocol_version(self):
 
794
        """Find out if 'hello' smart request works."""
 
795
        if self._protocol_version_error is not None:
 
796
            raise self._protocol_version_error
 
797
        if not self._done_hello:
 
798
            try:
 
799
                medium_request = self.get_request()
 
800
                # Send a 'hello' request in protocol version one, for maximum
 
801
                # backwards compatibility.
 
802
                client_protocol = protocol.SmartClientRequestProtocolOne(medium_request)
 
803
                client_protocol.query_version()
 
804
                self._done_hello = True
 
805
            except errors.SmartProtocolError, e:
 
806
                # Cache the error, just like we would cache a successful
 
807
                # result.
 
808
                self._protocol_version_error = e
 
809
                raise
 
810
        return '2'
 
811
 
 
812
    def should_probe(self):
 
813
        """Should RemoteBzrDirFormat.probe_transport send a smart request on
 
814
        this medium?
 
815
 
 
816
        Some transports are unambiguously smart-only; there's no need to check
 
817
        if the transport is able to carry smart requests, because that's all
 
818
        it is for.  In those cases, this method should return False.
 
819
 
 
820
        But some HTTP transports can sometimes fail to carry smart requests,
 
821
        but still be usuable for accessing remote bzrdirs via plain file
 
822
        accesses.  So for those transports, their media should return True here
 
823
        so that RemoteBzrDirFormat can determine if it is appropriate for that
 
824
        transport.
 
825
        """
 
826
        return False
 
827
 
 
828
    def disconnect(self):
 
829
        """If this medium maintains a persistent connection, close it.
 
830
 
 
831
        The default implementation does nothing.
 
832
        """
 
833
 
 
834
    def remote_path_from_transport(self, transport):
 
835
        """Convert transport into a path suitable for using in a request.
 
836
 
 
837
        Note that the resulting remote path doesn't encode the host name or
 
838
        anything but path, so it is only safe to use it in requests sent over
 
839
        the medium from the matching transport.
 
840
        """
 
841
        medium_base = urlutils.join(self.base, '/')
 
842
        rel_url = urlutils.relative_url(medium_base, transport.base)
 
843
        return urllib.unquote(rel_url)
 
844
 
 
845
 
 
846
class SmartClientStreamMedium(SmartClientMedium):
 
847
    """Stream based medium common class.
 
848
 
 
849
    SmartClientStreamMediums operate on a stream. All subclasses use a common
 
850
    SmartClientStreamMediumRequest for their requests, and should implement
 
851
    _accept_bytes and _read_bytes to allow the request objects to send and
 
852
    receive bytes.
 
853
    """
 
854
 
 
855
    def __init__(self, base):
 
856
        SmartClientMedium.__init__(self, base)
 
857
        self._current_request = None
 
858
 
 
859
    def accept_bytes(self, bytes):
 
860
        self._accept_bytes(bytes)
 
861
 
 
862
    def __del__(self):
 
863
        """The SmartClientStreamMedium knows how to close the stream when it is
 
864
        finished with it.
 
865
        """
 
866
        self.disconnect()
 
867
 
 
868
    def _flush(self):
 
869
        """Flush the output stream.
 
870
 
 
871
        This method is used by the SmartClientStreamMediumRequest to ensure that
 
872
        all data for a request is sent, to avoid long timeouts or deadlocks.
 
873
        """
 
874
        raise NotImplementedError(self._flush)
 
875
 
 
876
    def get_request(self):
 
877
        """See SmartClientMedium.get_request().
 
878
 
 
879
        SmartClientStreamMedium always returns a SmartClientStreamMediumRequest
 
880
        for get_request.
 
881
        """
 
882
        return SmartClientStreamMediumRequest(self)
 
883
 
 
884
 
 
885
class SmartSimplePipesClientMedium(SmartClientStreamMedium):
 
886
    """A client medium using simple pipes.
 
887
 
 
888
    This client does not manage the pipes: it assumes they will always be open.
 
889
    """
 
890
 
 
891
    def __init__(self, readable_pipe, writeable_pipe, base):
 
892
        SmartClientStreamMedium.__init__(self, base)
 
893
        self._readable_pipe = readable_pipe
 
894
        self._writeable_pipe = writeable_pipe
 
895
 
 
896
    def _accept_bytes(self, bytes):
 
897
        """See SmartClientStreamMedium.accept_bytes."""
 
898
        self._writeable_pipe.write(bytes)
 
899
        self._report_activity(len(bytes), 'write')
 
900
 
 
901
    def _flush(self):
 
902
        """See SmartClientStreamMedium._flush()."""
 
903
        self._writeable_pipe.flush()
 
904
 
 
905
    def _read_bytes(self, count):
 
906
        """See SmartClientStreamMedium._read_bytes."""
 
907
        bytes_to_read = min(count, _MAX_READ_SIZE)
 
908
        bytes = self._readable_pipe.read(bytes_to_read)
 
909
        self._report_activity(len(bytes), 'read')
 
910
        return bytes
 
911
 
 
912
 
 
913
class SSHParams(object):
 
914
    """A set of parameters for starting a remote bzr via SSH."""
 
915
 
 
916
    def __init__(self, host, port=None, username=None, password=None,
 
917
            bzr_remote_path='bzr'):
 
918
        self.host = host
 
919
        self.port = port
 
920
        self.username = username
 
921
        self.password = password
 
922
        self.bzr_remote_path = bzr_remote_path
 
923
 
 
924
 
 
925
class SmartSSHClientMedium(SmartClientStreamMedium):
 
926
    """A client medium using SSH.
 
927
    
 
928
    It delegates IO to a SmartClientSocketMedium or
 
929
    SmartClientAlreadyConnectedSocketMedium (depending on platform).
 
930
    """
 
931
 
 
932
    def __init__(self, base, ssh_params, vendor=None):
 
933
        """Creates a client that will connect on the first use.
 
934
 
 
935
        :param ssh_params: A SSHParams instance.
 
936
        :param vendor: An optional override for the ssh vendor to use. See
 
937
            bzrlib.transport.ssh for details on ssh vendors.
 
938
        """
 
939
        self._real_medium = None
 
940
        self._ssh_params = ssh_params
 
941
        # for the benefit of progress making a short description of this
 
942
        # transport
 
943
        self._scheme = 'bzr+ssh'
 
944
        # SmartClientStreamMedium stores the repr of this object in its
 
945
        # _DebugCounter so we have to store all the values used in our repr
 
946
        # method before calling the super init.
 
947
        SmartClientStreamMedium.__init__(self, base)
 
948
        self._vendor = vendor
 
949
        self._ssh_connection = None
 
950
 
 
951
    def __repr__(self):
 
952
        if self._ssh_params.port is None:
 
953
            maybe_port = ''
 
954
        else:
 
955
            maybe_port = ':%s' % self._ssh_params.port
 
956
        if self._ssh_params.username is None:
 
957
            maybe_user = ''
 
958
        else:
 
959
            maybe_user = '%s@' % self._ssh_params.username
 
960
        return "%s(%s://%s%s%s/)" % (
 
961
            self.__class__.__name__,
 
962
            self._scheme,
 
963
            maybe_user,
 
964
            self._ssh_params.host,
 
965
            maybe_port)
 
966
 
 
967
    def _accept_bytes(self, bytes):
 
968
        """See SmartClientStreamMedium.accept_bytes."""
 
969
        self._ensure_connection()
 
970
        self._real_medium.accept_bytes(bytes)
 
971
 
 
972
    def disconnect(self):
 
973
        """See SmartClientMedium.disconnect()."""
 
974
        if self._real_medium is not None:
 
975
            self._real_medium.disconnect()
 
976
            self._real_medium = None
 
977
        if self._ssh_connection is not None:
 
978
            self._ssh_connection.close()
 
979
            self._ssh_connection = None
 
980
 
 
981
    def _ensure_connection(self):
 
982
        """Connect this medium if not already connected."""
 
983
        if self._real_medium is not None:
 
984
            return
 
985
        if self._vendor is None:
 
986
            vendor = ssh._get_ssh_vendor()
 
987
        else:
 
988
            vendor = self._vendor
 
989
        self._ssh_connection = vendor.connect_ssh(self._ssh_params.username,
 
990
                self._ssh_params.password, self._ssh_params.host,
 
991
                self._ssh_params.port,
 
992
                command=[self._ssh_params.bzr_remote_path, 'serve', '--inet',
 
993
                         '--directory=/', '--allow-writes'])
 
994
        io_kind, io_object = self._ssh_connection.get_sock_or_pipes()
 
995
        if io_kind == 'socket':
 
996
            self._real_medium = SmartClientAlreadyConnectedSocketMedium(
 
997
                self.base, io_object)
 
998
        elif io_kind == 'pipes':
 
999
            read_from, write_to = io_object
 
1000
            self._real_medium = SmartSimplePipesClientMedium(
 
1001
                read_from, write_to, self.base)
 
1002
        else:
 
1003
            raise AssertionError(
 
1004
                "Unexpected io_kind %r from %r"
 
1005
                % (io_kind, self._ssh_connection))
 
1006
 
 
1007
    def _flush(self):
 
1008
        """See SmartClientStreamMedium._flush()."""
 
1009
        self._real_medium._flush()
 
1010
 
 
1011
    def _read_bytes(self, count):
 
1012
        """See SmartClientStreamMedium.read_bytes."""
 
1013
        if self._real_medium is None:
 
1014
            raise errors.MediumNotConnected(self)
 
1015
        return self._real_medium.read_bytes(count)
 
1016
 
 
1017
 
 
1018
# Port 4155 is the default port for bzr://, registered with IANA.
 
1019
BZR_DEFAULT_INTERFACE = None
 
1020
BZR_DEFAULT_PORT = 4155
 
1021
 
 
1022
 
 
1023
class SmartClientSocketMedium(SmartClientStreamMedium):
 
1024
    """A client medium using a socket.
 
1025
    
 
1026
    This class isn't usable directly.  Use one of its subclasses instead.
 
1027
    """
 
1028
 
 
1029
    def __init__(self, base):
 
1030
        SmartClientStreamMedium.__init__(self, base)
 
1031
        self._socket = None
 
1032
        self._connected = False
 
1033
 
 
1034
    def _accept_bytes(self, bytes):
 
1035
        """See SmartClientMedium.accept_bytes."""
 
1036
        self._ensure_connection()
 
1037
        osutils.send_all(self._socket, bytes, self._report_activity)
 
1038
 
 
1039
    def _ensure_connection(self):
 
1040
        """Connect this medium if not already connected."""
 
1041
        raise NotImplementedError(self._ensure_connection)
 
1042
 
 
1043
    def _flush(self):
 
1044
        """See SmartClientStreamMedium._flush().
 
1045
 
 
1046
        For sockets we do no flushing. For TCP sockets we may want to turn off
 
1047
        TCP_NODELAY and add a means to do a flush, but that can be done in the
 
1048
        future.
 
1049
        """
 
1050
 
 
1051
    def _read_bytes(self, count):
 
1052
        """See SmartClientMedium.read_bytes."""
 
1053
        if not self._connected:
 
1054
            raise errors.MediumNotConnected(self)
 
1055
        return osutils.read_bytes_from_socket(
 
1056
            self._socket, self._report_activity)
 
1057
 
 
1058
    def disconnect(self):
 
1059
        """See SmartClientMedium.disconnect()."""
 
1060
        if not self._connected:
 
1061
            return
 
1062
        self._socket.close()
 
1063
        self._socket = None
 
1064
        self._connected = False
 
1065
 
 
1066
 
 
1067
class SmartTCPClientMedium(SmartClientSocketMedium):
 
1068
    """A client medium that creates a TCP connection."""
 
1069
 
 
1070
    def __init__(self, host, port, base):
 
1071
        """Creates a client that will connect on the first use."""
 
1072
        SmartClientSocketMedium.__init__(self, base)
 
1073
        self._host = host
 
1074
        self._port = port
 
1075
 
 
1076
    def _ensure_connection(self):
 
1077
        """Connect this medium if not already connected."""
 
1078
        if self._connected:
 
1079
            return
 
1080
        if self._port is None:
 
1081
            port = BZR_DEFAULT_PORT
 
1082
        else:
 
1083
            port = int(self._port)
 
1084
        try:
 
1085
            sockaddrs = socket.getaddrinfo(self._host, port, socket.AF_UNSPEC,
 
1086
                socket.SOCK_STREAM, 0, 0)
 
1087
        except socket.gaierror, (err_num, err_msg):
 
1088
            raise errors.ConnectionError("failed to lookup %s:%d: %s" %
 
1089
                    (self._host, port, err_msg))
 
1090
        # Initialize err in case there are no addresses returned:
 
1091
        err = socket.error("no address found for %s" % self._host)
 
1092
        for (family, socktype, proto, canonname, sockaddr) in sockaddrs:
 
1093
            try:
 
1094
                self._socket = socket.socket(family, socktype, proto)
 
1095
                self._socket.setsockopt(socket.IPPROTO_TCP,
 
1096
                                        socket.TCP_NODELAY, 1)
 
1097
                self._socket.connect(sockaddr)
 
1098
            except socket.error, err:
 
1099
                if self._socket is not None:
 
1100
                    self._socket.close()
 
1101
                self._socket = None
 
1102
                continue
 
1103
            break
 
1104
        if self._socket is None:
 
1105
            # socket errors either have a (string) or (errno, string) as their
 
1106
            # args.
 
1107
            if type(err.args) is str:
 
1108
                err_msg = err.args
 
1109
            else:
 
1110
                err_msg = err.args[1]
 
1111
            raise errors.ConnectionError("failed to connect to %s:%d: %s" %
 
1112
                    (self._host, port, err_msg))
 
1113
        self._connected = True
 
1114
 
 
1115
 
 
1116
class SmartClientAlreadyConnectedSocketMedium(SmartClientSocketMedium):
 
1117
    """A client medium for an already connected socket.
 
1118
    
 
1119
    Note that this class will assume it "owns" the socket, so it will close it
 
1120
    when its disconnect method is called.
 
1121
    """
 
1122
 
 
1123
    def __init__(self, base, sock):
 
1124
        SmartClientSocketMedium.__init__(self, base)
 
1125
        self._socket = sock
 
1126
        self._connected = True
 
1127
 
 
1128
    def _ensure_connection(self):
 
1129
        # Already connected, by definition!  So nothing to do.
 
1130
        pass
 
1131
 
 
1132
 
 
1133
class SmartClientStreamMediumRequest(SmartClientMediumRequest):
 
1134
    """A SmartClientMediumRequest that works with an SmartClientStreamMedium."""
 
1135
 
 
1136
    def __init__(self, medium):
 
1137
        SmartClientMediumRequest.__init__(self, medium)
 
1138
        # check that we are safe concurrency wise. If some streams start
 
1139
        # allowing concurrent requests - i.e. via multiplexing - then this
 
1140
        # assert should be moved to SmartClientStreamMedium.get_request,
 
1141
        # and the setting/unsetting of _current_request likewise moved into
 
1142
        # that class : but its unneeded overhead for now. RBC 20060922
 
1143
        if self._medium._current_request is not None:
 
1144
            raise errors.TooManyConcurrentRequests(self._medium)
 
1145
        self._medium._current_request = self
 
1146
 
 
1147
    def _accept_bytes(self, bytes):
 
1148
        """See SmartClientMediumRequest._accept_bytes.
 
1149
 
 
1150
        This forwards to self._medium._accept_bytes because we are operating
 
1151
        on the mediums stream.
 
1152
        """
 
1153
        self._medium._accept_bytes(bytes)
 
1154
 
 
1155
    def _finished_reading(self):
 
1156
        """See SmartClientMediumRequest._finished_reading.
 
1157
 
 
1158
        This clears the _current_request on self._medium to allow a new
 
1159
        request to be created.
 
1160
        """
 
1161
        if self._medium._current_request is not self:
 
1162
            raise AssertionError()
 
1163
        self._medium._current_request = None
 
1164
 
 
1165
    def _finished_writing(self):
 
1166
        """See SmartClientMediumRequest._finished_writing.
 
1167
 
 
1168
        This invokes self._medium._flush to ensure all bytes are transmitted.
 
1169
        """
 
1170
        self._medium._flush()
 
1171
 
 
1172