~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/medium.py

  • Committer: Tarmac
  • Author(s): Vincent Ladeuil
  • Date: 2017-01-30 14:42:05 UTC
  • mfrom: (6620.1.1 trunk)
  • Revision ID: tarmac-20170130144205-r8fh2xpmiuxyozpv
Merge  2.7 into trunk including fix for bug #1657238 [r=vila]

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006-2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
24
24
bzrlib/transport/smart/__init__.py.
25
25
"""
26
26
 
 
27
from __future__ import absolute_import
 
28
 
27
29
import errno
28
30
import os
29
 
import socket
30
31
import sys
31
 
import urllib
 
32
import time
32
33
 
 
34
import bzrlib
33
35
from bzrlib.lazy_import import lazy_import
34
36
lazy_import(globals(), """
35
 
import atexit
 
37
import select
 
38
import socket
 
39
import thread
36
40
import weakref
 
41
 
37
42
from bzrlib import (
38
43
    debug,
39
44
    errors,
40
 
    osutils,
41
 
    symbol_versioning,
42
45
    trace,
 
46
    transport,
43
47
    ui,
44
48
    urlutils,
45
49
    )
46
 
from bzrlib.smart import client, protocol
 
50
from bzrlib.i18n import gettext
 
51
from bzrlib.smart import client, protocol, request, signals, vfs
47
52
from bzrlib.transport import ssh
48
53
""")
49
 
 
50
 
 
51
 
# We must not read any more than 64k at a time so we don't risk "no buffer
52
 
# space available" errors on some platforms.  Windows in particular is likely
53
 
# to give error 10053 or 10055 if we read more than 64k from a socket.
54
 
_MAX_READ_SIZE = 64 * 1024
55
 
 
 
54
from bzrlib import osutils
 
55
 
 
56
# Throughout this module buffer size parameters are either limited to be at
 
57
# most _MAX_READ_SIZE, or are ignored and _MAX_READ_SIZE is used instead.
 
58
# For this module's purposes, MAX_SOCKET_CHUNK is a reasonable size for reads
 
59
# from non-sockets as well.
 
60
_MAX_READ_SIZE = osutils.MAX_SOCKET_CHUNK
56
61
 
57
62
def _get_protocol_factory_for_bytes(bytes):
58
63
    """Determine the right protocol factory for 'bytes'.
176
181
        ui.ui_factory.report_transport_activity(self, bytes, direction)
177
182
 
178
183
 
 
184
_bad_file_descriptor = (errno.EBADF,)
 
185
if sys.platform == 'win32':
 
186
    # Given on Windows if you pass a closed socket to select.select. Probably
 
187
    # also given if you pass a file handle to select.
 
188
    WSAENOTSOCK = 10038
 
189
    _bad_file_descriptor += (WSAENOTSOCK,)
 
190
 
 
191
 
179
192
class SmartServerStreamMedium(SmartMedium):
180
193
    """Handles smart commands coming over a stream.
181
194
 
194
207
        the stream.  See also the _push_back method.
195
208
    """
196
209
 
197
 
    def __init__(self, backing_transport, root_client_path='/'):
 
210
    _timer = time.time
 
211
 
 
212
    def __init__(self, backing_transport, root_client_path='/', timeout=None):
198
213
        """Construct new server.
199
214
 
200
215
        :param backing_transport: Transport for the directory served.
203
218
        self.backing_transport = backing_transport
204
219
        self.root_client_path = root_client_path
205
220
        self.finished = False
 
221
        if timeout is None:
 
222
            raise AssertionError('You must supply a timeout.')
 
223
        self._client_timeout = timeout
 
224
        self._client_poll_timeout = min(timeout / 10.0, 1.0)
206
225
        SmartMedium.__init__(self)
207
226
 
208
227
    def serve(self):
214
233
            while not self.finished:
215
234
                server_protocol = self._build_protocol()
216
235
                self._serve_one_request(server_protocol)
 
236
        except errors.ConnectionTimeout, e:
 
237
            trace.note('%s' % (e,))
 
238
            trace.log_exception_quietly()
 
239
            self._disconnect_client()
 
240
            # We reported it, no reason to make a big fuss.
 
241
            return
217
242
        except Exception, e:
218
243
            stderr.write("%s terminating on exception %s\n" % (self, e))
219
244
            raise
 
245
        self._disconnect_client()
 
246
 
 
247
    def _stop_gracefully(self):
 
248
        """When we finish this message, stop looking for more."""
 
249
        trace.mutter('Stopping %s' % (self,))
 
250
        self.finished = True
 
251
 
 
252
    def _disconnect_client(self):
 
253
        """Close the current connection. We stopped due to a timeout/etc."""
 
254
        # The default implementation is a no-op, because that is all we used to
 
255
        # do when disconnecting from a client. I suppose we never had the
 
256
        # *server* initiate a disconnect, before
 
257
 
 
258
    def _wait_for_bytes_with_timeout(self, timeout_seconds):
 
259
        """Wait for more bytes to be read, but timeout if none available.
 
260
 
 
261
        This allows us to detect idle connections, and stop trying to read from
 
262
        them, without setting the socket itself to non-blocking. This also
 
263
        allows us to specify when we watch for idle timeouts.
 
264
 
 
265
        :return: Did we timeout? (True if we timed out, False if there is data
 
266
            to be read)
 
267
        """
 
268
        raise NotImplementedError(self._wait_for_bytes_with_timeout)
220
269
 
221
270
    def _build_protocol(self):
222
271
        """Identifies the version of the incoming request, and returns an
227
276
 
228
277
        :returns: a SmartServerRequestProtocol.
229
278
        """
 
279
        self._wait_for_bytes_with_timeout(self._client_timeout)
 
280
        if self.finished:
 
281
            # We're stopping, so don't try to do any more work
 
282
            return None
230
283
        bytes = self._get_line()
231
284
        protocol_factory, unused_bytes = _get_protocol_factory_for_bytes(bytes)
232
285
        protocol = protocol_factory(
234
287
        protocol.accept_bytes(unused_bytes)
235
288
        return protocol
236
289
 
 
290
    def _wait_on_descriptor(self, fd, timeout_seconds):
 
291
        """select() on a file descriptor, waiting for nonblocking read()
 
292
 
 
293
        This will raise a ConnectionTimeout exception if we do not get a
 
294
        readable handle before timeout_seconds.
 
295
        :return: None
 
296
        """
 
297
        t_end = self._timer() + timeout_seconds
 
298
        poll_timeout = min(timeout_seconds, self._client_poll_timeout)
 
299
        rs = xs = None
 
300
        while not rs and not xs and self._timer() < t_end:
 
301
            if self.finished:
 
302
                return
 
303
            try:
 
304
                rs, _, xs = select.select([fd], [], [fd], poll_timeout)
 
305
            except (select.error, socket.error) as e:
 
306
                err = getattr(e, 'errno', None)
 
307
                if err is None and getattr(e, 'args', None) is not None:
 
308
                    # select.error doesn't have 'errno', it just has args[0]
 
309
                    err = e.args[0]
 
310
                if err in _bad_file_descriptor:
 
311
                    return # Not a socket indicates read() will fail
 
312
                elif err == errno.EINTR:
 
313
                    # Interrupted, keep looping.
 
314
                    continue
 
315
                raise
 
316
        if rs or xs:
 
317
            return
 
318
        raise errors.ConnectionTimeout('disconnecting client after %.1f seconds'
 
319
                                       % (timeout_seconds,))
 
320
 
237
321
    def _serve_one_request(self, protocol):
238
322
        """Read one request from input, process, send back a response.
239
323
 
240
324
        :param protocol: a SmartServerRequestProtocol.
241
325
        """
 
326
        if protocol is None:
 
327
            return
242
328
        try:
243
329
            self._serve_one_request_unguarded(protocol)
244
330
        except KeyboardInterrupt:
260
346
 
261
347
class SmartServerSocketStreamMedium(SmartServerStreamMedium):
262
348
 
263
 
    def __init__(self, sock, backing_transport, root_client_path='/'):
 
349
    def __init__(self, sock, backing_transport, root_client_path='/',
 
350
                 timeout=None):
264
351
        """Constructor.
265
352
 
266
353
        :param sock: the socket the server will read from.  It will be put
267
354
            into blocking mode.
268
355
        """
269
356
        SmartServerStreamMedium.__init__(
270
 
            self, backing_transport, root_client_path=root_client_path)
 
357
            self, backing_transport, root_client_path=root_client_path,
 
358
            timeout=timeout)
271
359
        sock.setblocking(True)
272
360
        self.socket = sock
 
361
        # Get the getpeername now, as we might be closed later when we care.
 
362
        try:
 
363
            self._client_info = sock.getpeername()
 
364
        except socket.error:
 
365
            self._client_info = '<unknown>'
 
366
 
 
367
    def __str__(self):
 
368
        return '%s(client=%s)' % (self.__class__.__name__, self._client_info)
 
369
 
 
370
    def __repr__(self):
 
371
        return '%s.%s(client=%s)' % (self.__module__, self.__class__.__name__,
 
372
            self._client_info)
273
373
 
274
374
    def _serve_one_request_unguarded(self, protocol):
275
375
        while protocol.next_read_size():
276
376
            # We can safely try to read large chunks.  If there is less data
277
 
            # than _MAX_READ_SIZE ready, the socket wil just return a short
278
 
            # read immediately rather than block.
279
 
            bytes = self.read_bytes(_MAX_READ_SIZE)
 
377
            # than MAX_SOCKET_CHUNK ready, the socket will just return a
 
378
            # short read immediately rather than block.
 
379
            bytes = self.read_bytes(osutils.MAX_SOCKET_CHUNK)
280
380
            if bytes == '':
281
381
                self.finished = True
282
382
                return
284
384
 
285
385
        self._push_back(protocol.unused_data)
286
386
 
 
387
    def _disconnect_client(self):
 
388
        """Close the current connection. We stopped due to a timeout/etc."""
 
389
        self.socket.close()
 
390
 
 
391
    def _wait_for_bytes_with_timeout(self, timeout_seconds):
 
392
        """Wait for more bytes to be read, but timeout if none available.
 
393
 
 
394
        This allows us to detect idle connections, and stop trying to read from
 
395
        them, without setting the socket itself to non-blocking. This also
 
396
        allows us to specify when we watch for idle timeouts.
 
397
 
 
398
        :return: None, this will raise ConnectionTimeout if we time out before
 
399
            data is available.
 
400
        """
 
401
        return self._wait_on_descriptor(self.socket, timeout_seconds)
 
402
 
287
403
    def _read_bytes(self, desired_count):
288
 
        # We ignore the desired_count because on sockets it's more efficient to
289
 
        # read large chunks (of _MAX_READ_SIZE bytes) at a time.
290
 
        bytes = osutils.until_no_eintr(self.socket.recv, _MAX_READ_SIZE)
291
 
        self._report_activity(len(bytes), 'read')
292
 
        return bytes
 
404
        return osutils.read_bytes_from_socket(
 
405
            self.socket, self._report_activity)
293
406
 
294
407
    def terminate_due_to_error(self):
295
408
        # TODO: This should log to a server log file, but no such thing
298
411
        self.finished = True
299
412
 
300
413
    def _write_out(self, bytes):
 
414
        tstart = osutils.timer_func()
301
415
        osutils.send_all(self.socket, bytes, self._report_activity)
 
416
        if 'hpss' in debug.debug_flags:
 
417
            thread_id = thread.get_ident()
 
418
            trace.mutter('%12s: [%s] %d bytes to the socket in %.3fs'
 
419
                         % ('wrote', thread_id, len(bytes),
 
420
                            osutils.timer_func() - tstart))
302
421
 
303
422
 
304
423
class SmartServerPipeStreamMedium(SmartServerStreamMedium):
305
424
 
306
 
    def __init__(self, in_file, out_file, backing_transport):
 
425
    def __init__(self, in_file, out_file, backing_transport, timeout=None):
307
426
        """Construct new server.
308
427
 
309
428
        :param in_file: Python file from which requests can be read.
310
429
        :param out_file: Python file to write responses.
311
430
        :param backing_transport: Transport for the directory served.
312
431
        """
313
 
        SmartServerStreamMedium.__init__(self, backing_transport)
 
432
        SmartServerStreamMedium.__init__(self, backing_transport,
 
433
            timeout=timeout)
314
434
        if sys.platform == 'win32':
315
435
            # force binary mode for files
316
436
            import msvcrt
321
441
        self._in = in_file
322
442
        self._out = out_file
323
443
 
 
444
    def serve(self):
 
445
        """See SmartServerStreamMedium.serve"""
 
446
        # This is the regular serve, except it adds signal trapping for soft
 
447
        # shutdown.
 
448
        stop_gracefully = self._stop_gracefully
 
449
        signals.register_on_hangup(id(self), stop_gracefully)
 
450
        try:
 
451
            return super(SmartServerPipeStreamMedium, self).serve()
 
452
        finally:
 
453
            signals.unregister_on_hangup(id(self))
 
454
 
324
455
    def _serve_one_request_unguarded(self, protocol):
325
456
        while True:
326
457
            # We need to be careful not to read past the end of the current
339
470
                return
340
471
            protocol.accept_bytes(bytes)
341
472
 
 
473
    def _disconnect_client(self):
 
474
        self._in.close()
 
475
        self._out.flush()
 
476
        self._out.close()
 
477
 
 
478
    def _wait_for_bytes_with_timeout(self, timeout_seconds):
 
479
        """Wait for more bytes to be read, but timeout if none available.
 
480
 
 
481
        This allows us to detect idle connections, and stop trying to read from
 
482
        them, without setting the socket itself to non-blocking. This also
 
483
        allows us to specify when we watch for idle timeouts.
 
484
 
 
485
        :return: None, this will raise ConnectionTimeout if we time out before
 
486
            data is available.
 
487
        """
 
488
        if (getattr(self._in, 'fileno', None) is None
 
489
            or sys.platform == 'win32'):
 
490
            # You can't select() file descriptors on Windows.
 
491
            return
 
492
        return self._wait_on_descriptor(self._in, timeout_seconds)
 
493
 
342
494
    def _read_bytes(self, desired_count):
343
495
        return self._in.read(desired_count)
344
496
 
381
533
    def accept_bytes(self, bytes):
382
534
        """Accept bytes for inclusion in this request.
383
535
 
384
 
        This method may not be be called after finished_writing() has been
 
536
        This method may not be called after finished_writing() has been
385
537
        called.  It depends upon the Medium whether or not the bytes will be
386
538
        immediately transmitted. Message based Mediums will tend to buffer the
387
539
        bytes until finished_writing() is called.
475
627
        if not line.endswith('\n'):
476
628
            # end of file encountered reading from server
477
629
            raise errors.ConnectionReset(
478
 
                "please check connectivity and permissions")
 
630
                "Unexpected end of message. Please check connectivity "
 
631
                "and permissions, and report a bug if problems persist.")
479
632
        return line
480
633
 
481
634
    def _read_line(self):
487
640
        return self._medium._get_line()
488
641
 
489
642
 
 
643
class _VfsRefuser(object):
 
644
    """An object that refuses all VFS requests.
 
645
 
 
646
    """
 
647
 
 
648
    def __init__(self):
 
649
        client._SmartClient.hooks.install_named_hook(
 
650
            'call', self.check_vfs, 'vfs refuser')
 
651
 
 
652
    def check_vfs(self, params):
 
653
        try:
 
654
            request_method = request.request_handlers.get(params.method)
 
655
        except KeyError:
 
656
            # A method we don't know about doesn't count as a VFS method.
 
657
            return
 
658
        if issubclass(request_method, vfs.VfsRequest):
 
659
            raise errors.HpssVfsRequestNotAllowed(params.method, params.args)
 
660
 
 
661
 
490
662
class _DebugCounter(object):
491
663
    """An object that counts the HPSS calls made to each client medium.
492
664
 
493
 
    When a medium is garbage-collected, or failing that when atexit functions
494
 
    are run, the total number of calls made on that medium are reported via
495
 
    trace.note.
 
665
    When a medium is garbage-collected, or failing that when
 
666
    bzrlib.global_state exits, the total number of calls made on that medium
 
667
    are reported via trace.note.
496
668
    """
497
669
 
498
670
    def __init__(self):
499
671
        self.counts = weakref.WeakKeyDictionary()
500
672
        client._SmartClient.hooks.install_named_hook(
501
673
            'call', self.increment_call_count, 'hpss call counter')
502
 
        atexit.register(self.flush_all)
 
674
        bzrlib.global_state.cleanups.add_cleanup(self.flush_all)
503
675
 
504
676
    def track(self, medium):
505
677
        """Start tracking calls made to a medium.
509
681
        """
510
682
        medium_repr = repr(medium)
511
683
        # Add this medium to the WeakKeyDictionary
512
 
        self.counts[medium] = [0, medium_repr]
 
684
        self.counts[medium] = dict(count=0, vfs_count=0,
 
685
                                   medium_repr=medium_repr)
513
686
        # Weakref callbacks are fired in reverse order of their association
514
687
        # with the referenced object.  So we add a weakref *after* adding to
515
688
        # the WeakKeyDict so that we can report the value from it before the
519
692
    def increment_call_count(self, params):
520
693
        # Increment the count in the WeakKeyDictionary
521
694
        value = self.counts[params.medium]
522
 
        value[0] += 1
 
695
        value['count'] += 1
 
696
        try:
 
697
            request_method = request.request_handlers.get(params.method)
 
698
        except KeyError:
 
699
            # A method we don't know about doesn't count as a VFS method.
 
700
            return
 
701
        if issubclass(request_method, vfs.VfsRequest):
 
702
            value['vfs_count'] += 1
523
703
 
524
704
    def done(self, ref):
525
705
        value = self.counts[ref]
526
 
        count, medium_repr = value
 
706
        count, vfs_count, medium_repr = (
 
707
            value['count'], value['vfs_count'], value['medium_repr'])
527
708
        # In case this callback is invoked for the same ref twice (by the
528
709
        # weakref callback and by the atexit function), set the call count back
529
710
        # to 0 so this item won't be reported twice.
530
 
        value[0] = 0
 
711
        value['count'] = 0
 
712
        value['vfs_count'] = 0
531
713
        if count != 0:
532
 
            trace.note('HPSS calls: %d %s', count, medium_repr)
 
714
            trace.note(gettext('HPSS calls: {0} ({1} vfs) {2}').format(
 
715
                       count, vfs_count, medium_repr))
533
716
 
534
717
    def flush_all(self):
535
718
        for ref in list(self.counts.keys()):
536
719
            self.done(ref)
537
720
 
538
721
_debug_counter = None
 
722
_vfs_refuser = None
539
723
 
540
724
 
541
725
class SmartClientMedium(SmartMedium):
558
742
            if _debug_counter is None:
559
743
                _debug_counter = _DebugCounter()
560
744
            _debug_counter.track(self)
 
745
        if 'hpss_client_no_vfs' in debug.debug_flags:
 
746
            global _vfs_refuser
 
747
            if _vfs_refuser is None:
 
748
                _vfs_refuser = _VfsRefuser()
561
749
 
562
750
    def _is_remote_before(self, version_tuple):
563
751
        """Is it possible the remote side supports RPCs for a given version?
592
780
            # which is newer than a previously supplied older-than version.
593
781
            # This indicates that some smart verb call is not guarded
594
782
            # appropriately (it should simply not have been tried).
595
 
            raise AssertionError(
 
783
            trace.mutter(
596
784
                "_remember_remote_is_before(%r) called, but "
597
785
                "_remember_remote_is_before(%r) was called previously."
598
 
                % (version_tuple, self._remote_version_is_before))
 
786
                , version_tuple, self._remote_version_is_before)
 
787
            if 'hpss' in debug.debug_flags:
 
788
                ui.ui_factory.show_warning(
 
789
                    "_remember_remote_is_before(%r) called, but "
 
790
                    "_remember_remote_is_before(%r) was called previously."
 
791
                    % (version_tuple, self._remote_version_is_before))
 
792
            return
599
793
        self._remote_version_is_before = version_tuple
600
794
 
601
795
    def protocol_version(self):
648
842
        """
649
843
        medium_base = urlutils.join(self.base, '/')
650
844
        rel_url = urlutils.relative_url(medium_base, transport.base)
651
 
        return urllib.unquote(rel_url)
 
845
        return urlutils.unquote(rel_url)
652
846
 
653
847
 
654
848
class SmartClientStreamMedium(SmartClientMedium):
689
883
        """
690
884
        return SmartClientStreamMediumRequest(self)
691
885
 
 
886
    def reset(self):
 
887
        """We have been disconnected, reset current state.
 
888
 
 
889
        This resets things like _current_request and connected state.
 
890
        """
 
891
        self.disconnect()
 
892
        self._current_request = None
 
893
 
692
894
 
693
895
class SmartSimplePipesClientMedium(SmartClientStreamMedium):
694
896
    """A client medium using simple pipes.
703
905
 
704
906
    def _accept_bytes(self, bytes):
705
907
        """See SmartClientStreamMedium.accept_bytes."""
706
 
        self._writeable_pipe.write(bytes)
 
908
        try:
 
909
            self._writeable_pipe.write(bytes)
 
910
        except IOError, e:
 
911
            if e.errno in (errno.EINVAL, errno.EPIPE):
 
912
                raise errors.ConnectionReset(
 
913
                    "Error trying to write to subprocess", e)
 
914
            raise
707
915
        self._report_activity(len(bytes), 'write')
708
916
 
709
917
    def _flush(self):
710
918
        """See SmartClientStreamMedium._flush()."""
 
919
        # Note: If flush were to fail, we'd like to raise ConnectionReset, etc.
 
920
        #       However, testing shows that even when the child process is
 
921
        #       gone, this doesn't error.
711
922
        self._writeable_pipe.flush()
712
923
 
713
924
    def _read_bytes(self, count):
714
925
        """See SmartClientStreamMedium._read_bytes."""
715
 
        bytes = self._readable_pipe.read(count)
 
926
        bytes_to_read = min(count, _MAX_READ_SIZE)
 
927
        bytes = self._readable_pipe.read(bytes_to_read)
716
928
        self._report_activity(len(bytes), 'read')
717
929
        return bytes
718
930
 
719
931
 
 
932
class SSHParams(object):
 
933
    """A set of parameters for starting a remote bzr via SSH."""
 
934
 
 
935
    def __init__(self, host, port=None, username=None, password=None,
 
936
            bzr_remote_path='bzr'):
 
937
        self.host = host
 
938
        self.port = port
 
939
        self.username = username
 
940
        self.password = password
 
941
        self.bzr_remote_path = bzr_remote_path
 
942
 
 
943
 
720
944
class SmartSSHClientMedium(SmartClientStreamMedium):
721
 
    """A client medium using SSH."""
722
 
 
723
 
    def __init__(self, host, port=None, username=None, password=None,
724
 
            base=None, vendor=None, bzr_remote_path=None):
 
945
    """A client medium using SSH.
 
946
 
 
947
    It delegates IO to a SmartSimplePipesClientMedium or
 
948
    SmartClientAlreadyConnectedSocketMedium (depending on platform).
 
949
    """
 
950
 
 
951
    def __init__(self, base, ssh_params, vendor=None):
725
952
        """Creates a client that will connect on the first use.
726
953
 
 
954
        :param ssh_params: A SSHParams instance.
727
955
        :param vendor: An optional override for the ssh vendor to use. See
728
956
            bzrlib.transport.ssh for details on ssh vendors.
729
957
        """
730
 
        self._connected = False
731
 
        self._host = host
732
 
        self._password = password
733
 
        self._port = port
734
 
        self._username = username
 
958
        self._real_medium = None
 
959
        self._ssh_params = ssh_params
 
960
        # for the benefit of progress making a short description of this
 
961
        # transport
 
962
        self._scheme = 'bzr+ssh'
735
963
        # SmartClientStreamMedium stores the repr of this object in its
736
964
        # _DebugCounter so we have to store all the values used in our repr
737
965
        # method before calling the super init.
738
966
        SmartClientStreamMedium.__init__(self, base)
739
 
        self._read_from = None
 
967
        self._vendor = vendor
740
968
        self._ssh_connection = None
741
 
        self._vendor = vendor
742
 
        self._write_to = None
743
 
        self._bzr_remote_path = bzr_remote_path
744
 
        # for the benefit of progress making a short description of this
745
 
        # transport
746
 
        self._scheme = 'bzr+ssh'
747
969
 
748
970
    def __repr__(self):
749
 
        return "%s(connected=%r, username=%r, host=%r, port=%r)" % (
 
971
        if self._ssh_params.port is None:
 
972
            maybe_port = ''
 
973
        else:
 
974
            maybe_port = ':%s' % self._ssh_params.port
 
975
        if self._ssh_params.username is None:
 
976
            maybe_user = ''
 
977
        else:
 
978
            maybe_user = '%s@' % self._ssh_params.username
 
979
        return "%s(%s://%s%s%s/)" % (
750
980
            self.__class__.__name__,
751
 
            self._connected,
752
 
            self._username,
753
 
            self._host,
754
 
            self._port)
 
981
            self._scheme,
 
982
            maybe_user,
 
983
            self._ssh_params.host,
 
984
            maybe_port)
755
985
 
756
986
    def _accept_bytes(self, bytes):
757
987
        """See SmartClientStreamMedium.accept_bytes."""
758
988
        self._ensure_connection()
759
 
        self._write_to.write(bytes)
760
 
        self._report_activity(len(bytes), 'write')
 
989
        self._real_medium.accept_bytes(bytes)
761
990
 
762
991
    def disconnect(self):
763
992
        """See SmartClientMedium.disconnect()."""
764
 
        if not self._connected:
765
 
            return
766
 
        self._read_from.close()
767
 
        self._write_to.close()
768
 
        self._ssh_connection.close()
769
 
        self._connected = False
 
993
        if self._real_medium is not None:
 
994
            self._real_medium.disconnect()
 
995
            self._real_medium = None
 
996
        if self._ssh_connection is not None:
 
997
            self._ssh_connection.close()
 
998
            self._ssh_connection = None
770
999
 
771
1000
    def _ensure_connection(self):
772
1001
        """Connect this medium if not already connected."""
773
 
        if self._connected:
 
1002
        if self._real_medium is not None:
774
1003
            return
775
1004
        if self._vendor is None:
776
1005
            vendor = ssh._get_ssh_vendor()
777
1006
        else:
778
1007
            vendor = self._vendor
779
 
        self._ssh_connection = vendor.connect_ssh(self._username,
780
 
                self._password, self._host, self._port,
781
 
                command=[self._bzr_remote_path, 'serve', '--inet',
 
1008
        self._ssh_connection = vendor.connect_ssh(self._ssh_params.username,
 
1009
                self._ssh_params.password, self._ssh_params.host,
 
1010
                self._ssh_params.port,
 
1011
                command=[self._ssh_params.bzr_remote_path, 'serve', '--inet',
782
1012
                         '--directory=/', '--allow-writes'])
783
 
        self._read_from, self._write_to = \
784
 
            self._ssh_connection.get_filelike_channels()
785
 
        self._connected = True
 
1013
        io_kind, io_object = self._ssh_connection.get_sock_or_pipes()
 
1014
        if io_kind == 'socket':
 
1015
            self._real_medium = SmartClientAlreadyConnectedSocketMedium(
 
1016
                self.base, io_object)
 
1017
        elif io_kind == 'pipes':
 
1018
            read_from, write_to = io_object
 
1019
            self._real_medium = SmartSimplePipesClientMedium(
 
1020
                read_from, write_to, self.base)
 
1021
        else:
 
1022
            raise AssertionError(
 
1023
                "Unexpected io_kind %r from %r"
 
1024
                % (io_kind, self._ssh_connection))
 
1025
        for hook in transport.Transport.hooks["post_connect"]:
 
1026
            hook(self)
786
1027
 
787
1028
    def _flush(self):
788
1029
        """See SmartClientStreamMedium._flush()."""
789
 
        self._write_to.flush()
 
1030
        self._real_medium._flush()
790
1031
 
791
1032
    def _read_bytes(self, count):
792
1033
        """See SmartClientStreamMedium.read_bytes."""
793
 
        if not self._connected:
 
1034
        if self._real_medium is None:
794
1035
            raise errors.MediumNotConnected(self)
795
 
        bytes_to_read = min(count, _MAX_READ_SIZE)
796
 
        bytes = self._read_from.read(bytes_to_read)
797
 
        self._report_activity(len(bytes), 'read')
798
 
        return bytes
 
1036
        return self._real_medium.read_bytes(count)
799
1037
 
800
1038
 
801
1039
# Port 4155 is the default port for bzr://, registered with IANA.
803
1041
BZR_DEFAULT_PORT = 4155
804
1042
 
805
1043
 
806
 
class SmartTCPClientMedium(SmartClientStreamMedium):
807
 
    """A client medium using TCP."""
808
 
 
809
 
    def __init__(self, host, port, base):
810
 
        """Creates a client that will connect on the first use."""
 
1044
class SmartClientSocketMedium(SmartClientStreamMedium):
 
1045
    """A client medium using a socket.
 
1046
 
 
1047
    This class isn't usable directly.  Use one of its subclasses instead.
 
1048
    """
 
1049
 
 
1050
    def __init__(self, base):
811
1051
        SmartClientStreamMedium.__init__(self, base)
 
1052
        self._socket = None
812
1053
        self._connected = False
813
 
        self._host = host
814
 
        self._port = port
815
 
        self._socket = None
816
1054
 
817
1055
    def _accept_bytes(self, bytes):
818
1056
        """See SmartClientMedium.accept_bytes."""
819
1057
        self._ensure_connection()
820
1058
        osutils.send_all(self._socket, bytes, self._report_activity)
821
1059
 
 
1060
    def _ensure_connection(self):
 
1061
        """Connect this medium if not already connected."""
 
1062
        raise NotImplementedError(self._ensure_connection)
 
1063
 
 
1064
    def _flush(self):
 
1065
        """See SmartClientStreamMedium._flush().
 
1066
 
 
1067
        For sockets we do no flushing. For TCP sockets we may want to turn off
 
1068
        TCP_NODELAY and add a means to do a flush, but that can be done in the
 
1069
        future.
 
1070
        """
 
1071
 
 
1072
    def _read_bytes(self, count):
 
1073
        """See SmartClientMedium.read_bytes."""
 
1074
        if not self._connected:
 
1075
            raise errors.MediumNotConnected(self)
 
1076
        return osutils.read_bytes_from_socket(
 
1077
            self._socket, self._report_activity)
 
1078
 
822
1079
    def disconnect(self):
823
1080
        """See SmartClientMedium.disconnect()."""
824
1081
        if not self._connected:
827
1084
        self._socket = None
828
1085
        self._connected = False
829
1086
 
 
1087
 
 
1088
class SmartTCPClientMedium(SmartClientSocketMedium):
 
1089
    """A client medium that creates a TCP connection."""
 
1090
 
 
1091
    def __init__(self, host, port, base):
 
1092
        """Creates a client that will connect on the first use."""
 
1093
        SmartClientSocketMedium.__init__(self, base)
 
1094
        self._host = host
 
1095
        self._port = port
 
1096
 
830
1097
    def _ensure_connection(self):
831
1098
        """Connect this medium if not already connected."""
832
1099
        if self._connected:
865
1132
            raise errors.ConnectionError("failed to connect to %s:%d: %s" %
866
1133
                    (self._host, port, err_msg))
867
1134
        self._connected = True
868
 
 
869
 
    def _flush(self):
870
 
        """See SmartClientStreamMedium._flush().
871
 
 
872
 
        For TCP we do no flushing. We may want to turn off TCP_NODELAY and
873
 
        add a means to do a flush, but that can be done in the future.
874
 
        """
875
 
 
876
 
    def _read_bytes(self, count):
877
 
        """See SmartClientMedium.read_bytes."""
878
 
        if not self._connected:
879
 
            raise errors.MediumNotConnected(self)
880
 
        # We ignore the desired_count because on sockets it's more efficient to
881
 
        # read large chunks (of _MAX_READ_SIZE bytes) at a time.
882
 
        try:
883
 
            bytes = osutils.until_no_eintr(self._socket.recv, _MAX_READ_SIZE)
884
 
        except socket.error, e:
885
 
            if len(e.args) and e.args[0] == errno.ECONNRESET:
886
 
                # Callers expect an empty string in that case
887
 
                return ''
888
 
            else:
889
 
                raise
890
 
        else:
891
 
            self._report_activity(len(bytes), 'read')
892
 
            return bytes
 
1135
        for hook in transport.Transport.hooks["post_connect"]:
 
1136
            hook(self)
 
1137
 
 
1138
 
 
1139
class SmartClientAlreadyConnectedSocketMedium(SmartClientSocketMedium):
 
1140
    """A client medium for an already connected socket.
 
1141
    
 
1142
    Note that this class will assume it "owns" the socket, so it will close it
 
1143
    when its disconnect method is called.
 
1144
    """
 
1145
 
 
1146
    def __init__(self, base, sock):
 
1147
        SmartClientSocketMedium.__init__(self, base)
 
1148
        self._socket = sock
 
1149
        self._connected = True
 
1150
 
 
1151
    def _ensure_connection(self):
 
1152
        # Already connected, by definition!  So nothing to do.
 
1153
        pass
893
1154
 
894
1155
 
895
1156
class SmartClientStreamMediumRequest(SmartClientMediumRequest):
930
1191
        This invokes self._medium._flush to ensure all bytes are transmitted.
931
1192
        """
932
1193
        self._medium._flush()
933