~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/medium.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-17 18:13:57 UTC
  • mfrom: (5268.7.29 transport-segments)
  • Revision ID: pqm@pqm.ubuntu.com-20110817181357-y5q5eth1hk8bl3om
(jelmer) Allow specifying the colocated branch to use in the branch URL,
 and retrieving the branch name using ControlDir._get_selected_branch.
 (Jelmer Vernooij)

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
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""The 'medium' layer for the smart servers and clients.
18
18
 
24
24
bzrlib/transport/smart/__init__.py.
25
25
"""
26
26
 
27
 
import errno
28
27
import os
29
 
import socket
30
28
import sys
31
29
import urllib
32
30
 
 
31
import bzrlib
33
32
from bzrlib.lazy_import import lazy_import
34
33
lazy_import(globals(), """
35
 
import atexit
 
34
import socket
 
35
import thread
36
36
import weakref
 
37
 
37
38
from bzrlib import (
38
39
    debug,
39
40
    errors,
40
 
    osutils,
41
 
    symbol_versioning,
42
41
    trace,
 
42
    ui,
43
43
    urlutils,
44
44
    )
45
 
from bzrlib.smart import client, protocol
 
45
from bzrlib.smart import client, protocol, request, vfs
46
46
from bzrlib.transport import ssh
47
47
""")
48
 
 
49
 
 
50
 
# We must not read any more than 64k at a time so we don't risk "no buffer
51
 
# space available" errors on some platforms.  Windows in particular is likely
52
 
# to give error 10053 or 10055 if we read more than 64k from a socket.
53
 
_MAX_READ_SIZE = 64 * 1024
54
 
 
 
48
from bzrlib import osutils
 
49
 
 
50
# Throughout this module buffer size parameters are either limited to be at
 
51
# most _MAX_READ_SIZE, or are ignored and _MAX_READ_SIZE is used instead.
 
52
# For this module's purposes, MAX_SOCKET_CHUNK is a reasonable size for reads
 
53
# from non-sockets as well.
 
54
_MAX_READ_SIZE = osutils.MAX_SOCKET_CHUNK
55
55
 
56
56
def _get_protocol_factory_for_bytes(bytes):
57
57
    """Determine the right protocol factory for 'bytes'.
87
87
 
88
88
def _get_line(read_bytes_func):
89
89
    """Read bytes using read_bytes_func until a newline byte.
90
 
    
 
90
 
91
91
    This isn't particularly efficient, so should only be used when the
92
92
    expected size of the line is quite short.
93
 
    
 
93
 
94
94
    :returns: a tuple of two strs: (line, excess)
95
95
    """
96
96
    newline_pos = -1
112
112
 
113
113
    def __init__(self):
114
114
        self._push_back_buffer = None
115
 
        
 
115
 
116
116
    def _push_back(self, bytes):
117
117
        """Return unused bytes to the medium, because they belong to the next
118
118
        request(s).
152
152
 
153
153
    def _get_line(self):
154
154
        """Read bytes from this request's response until a newline byte.
155
 
        
 
155
 
156
156
        This isn't particularly efficient, so should only be used when the
157
157
        expected size of the line is quite short.
158
158
 
161
161
        line, excess = _get_line(self.read_bytes)
162
162
        self._push_back(excess)
163
163
        return line
164
 
 
 
164
 
 
165
    def _report_activity(self, bytes, direction):
 
166
        """Notify that this medium has activity.
 
167
 
 
168
        Implementations should call this from all methods that actually do IO.
 
169
        Be careful that it's not called twice, if one method is implemented on
 
170
        top of another.
 
171
 
 
172
        :param bytes: Number of bytes read or written.
 
173
        :param direction: 'read' or 'write' or None.
 
174
        """
 
175
        ui.ui_factory.report_transport_activity(self, bytes, direction)
 
176
 
165
177
 
166
178
class SmartServerStreamMedium(SmartMedium):
167
179
    """Handles smart commands coming over a stream.
172
184
    One instance is created for each connected client; it can serve multiple
173
185
    requests in the lifetime of the connection.
174
186
 
175
 
    The server passes requests through to an underlying backing transport, 
 
187
    The server passes requests through to an underlying backing transport,
176
188
    which will typically be a LocalTransport looking at the server's filesystem.
177
189
 
178
190
    :ivar _push_back_buffer: a str of bytes that have been read from the stream
223
235
 
224
236
    def _serve_one_request(self, protocol):
225
237
        """Read one request from input, process, send back a response.
226
 
        
 
238
 
227
239
        :param protocol: a SmartServerRequestProtocol.
228
240
        """
229
241
        try:
261
273
    def _serve_one_request_unguarded(self, protocol):
262
274
        while protocol.next_read_size():
263
275
            # We can safely try to read large chunks.  If there is less data
264
 
            # than _MAX_READ_SIZE ready, the socket wil just return a short
265
 
            # read immediately rather than block.
266
 
            bytes = self.read_bytes(_MAX_READ_SIZE)
 
276
            # than MAX_SOCKET_CHUNK ready, the socket will just return a
 
277
            # short read immediately rather than block.
 
278
            bytes = self.read_bytes(osutils.MAX_SOCKET_CHUNK)
267
279
            if bytes == '':
268
280
                self.finished = True
269
281
                return
270
282
            protocol.accept_bytes(bytes)
271
 
        
 
283
 
272
284
        self._push_back(protocol.unused_data)
273
285
 
274
286
    def _read_bytes(self, desired_count):
275
 
        # We ignore the desired_count because on sockets it's more efficient to
276
 
        # read large chunks (of _MAX_READ_SIZE bytes) at a time.
277
 
        return self.socket.recv(_MAX_READ_SIZE)
 
287
        return osutils.read_bytes_from_socket(
 
288
            self.socket, self._report_activity)
278
289
 
279
290
    def terminate_due_to_error(self):
280
291
        # TODO: This should log to a server log file, but no such thing
283
294
        self.finished = True
284
295
 
285
296
    def _write_out(self, bytes):
286
 
        osutils.send_all(self.socket, bytes)
 
297
        tstart = osutils.timer_func()
 
298
        osutils.send_all(self.socket, bytes, self._report_activity)
 
299
        if 'hpss' in debug.debug_flags:
 
300
            thread_id = thread.get_ident()
 
301
            trace.mutter('%12s: [%s] %d bytes to the socket in %.3fs'
 
302
                         % ('wrote', thread_id, len(bytes),
 
303
                            osutils.timer_func() - tstart))
287
304
 
288
305
 
289
306
class SmartServerPipeStreamMedium(SmartServerStreamMedium):
350
367
    request.finished_reading()
351
368
 
352
369
    It is up to the individual SmartClientMedium whether multiple concurrent
353
 
    requests can exist. See SmartClientMedium.get_request to obtain instances 
354
 
    of SmartClientMediumRequest, and the concrete Medium you are using for 
 
370
    requests can exist. See SmartClientMedium.get_request to obtain instances
 
371
    of SmartClientMediumRequest, and the concrete Medium you are using for
355
372
    details on concurrency and pipelining.
356
373
    """
357
374
 
366
383
    def accept_bytes(self, bytes):
367
384
        """Accept bytes for inclusion in this request.
368
385
 
369
 
        This method may not be be called after finished_writing() has been
 
386
        This method may not be called after finished_writing() has been
370
387
        called.  It depends upon the Medium whether or not the bytes will be
371
388
        immediately transmitted. Message based Mediums will tend to buffer the
372
389
        bytes until finished_writing() is called.
403
420
    def _finished_reading(self):
404
421
        """Helper for finished_reading.
405
422
 
406
 
        finished_reading checks the state of the request to determine if 
 
423
        finished_reading checks the state of the request to determine if
407
424
        finished_reading is allowed, and if it is hands off to _finished_reading
408
425
        to perform the action.
409
426
        """
423
440
    def _finished_writing(self):
424
441
        """Helper for finished_writing.
425
442
 
426
 
        finished_writing checks the state of the request to determine if 
 
443
        finished_writing checks the state of the request to determine if
427
444
        finished_writing is allowed, and if it is hands off to _finished_writing
428
445
        to perform the action.
429
446
        """
449
466
        read_bytes checks the state of the request to determing if bytes
450
467
        should be read. After that it hands off to _read_bytes to do the
451
468
        actual read.
452
 
        
 
469
 
453
470
        By default this forwards to self._medium.read_bytes because we are
454
471
        operating on the medium's stream.
455
472
        """
460
477
        if not line.endswith('\n'):
461
478
            # end of file encountered reading from server
462
479
            raise errors.ConnectionReset(
463
 
                "please check connectivity and permissions",
464
 
                "(and try -Dhpss if further diagnosis is required)")
 
480
                "Unexpected end of message. Please check connectivity "
 
481
                "and permissions, and report a bug if problems persist.")
465
482
        return line
466
483
 
467
484
    def _read_line(self):
468
485
        """Helper for SmartClientMediumRequest.read_line.
469
 
        
 
486
 
470
487
        By default this forwards to self._medium._get_line because we are
471
488
        operating on the medium's stream.
472
489
        """
476
493
class _DebugCounter(object):
477
494
    """An object that counts the HPSS calls made to each client medium.
478
495
 
479
 
    When a medium is garbage-collected, or failing that when atexit functions
480
 
    are run, the total number of calls made on that medium are reported via
481
 
    trace.note.
 
496
    When a medium is garbage-collected, or failing that when
 
497
    bzrlib.global_state exits, the total number of calls made on that medium
 
498
    are reported via trace.note.
482
499
    """
483
500
 
484
501
    def __init__(self):
485
502
        self.counts = weakref.WeakKeyDictionary()
486
503
        client._SmartClient.hooks.install_named_hook(
487
504
            'call', self.increment_call_count, 'hpss call counter')
488
 
        atexit.register(self.flush_all)
 
505
        bzrlib.global_state.cleanups.add_cleanup(self.flush_all)
489
506
 
490
507
    def track(self, medium):
491
508
        """Start tracking calls made to a medium.
495
512
        """
496
513
        medium_repr = repr(medium)
497
514
        # Add this medium to the WeakKeyDictionary
498
 
        self.counts[medium] = [0, medium_repr]
 
515
        self.counts[medium] = dict(count=0, vfs_count=0,
 
516
                                   medium_repr=medium_repr)
499
517
        # Weakref callbacks are fired in reverse order of their association
500
518
        # with the referenced object.  So we add a weakref *after* adding to
501
519
        # the WeakKeyDict so that we can report the value from it before the
505
523
    def increment_call_count(self, params):
506
524
        # Increment the count in the WeakKeyDictionary
507
525
        value = self.counts[params.medium]
508
 
        value[0] += 1
 
526
        value['count'] += 1
 
527
        try:
 
528
            request_method = request.request_handlers.get(params.method)
 
529
        except KeyError:
 
530
            # A method we don't know about doesn't count as a VFS method.
 
531
            return
 
532
        if issubclass(request_method, vfs.VfsRequest):
 
533
            value['vfs_count'] += 1
509
534
 
510
535
    def done(self, ref):
511
536
        value = self.counts[ref]
512
 
        count, medium_repr = value
 
537
        count, vfs_count, medium_repr = (
 
538
            value['count'], value['vfs_count'], value['medium_repr'])
513
539
        # In case this callback is invoked for the same ref twice (by the
514
540
        # weakref callback and by the atexit function), set the call count back
515
541
        # to 0 so this item won't be reported twice.
516
 
        value[0] = 0
 
542
        value['count'] = 0
 
543
        value['vfs_count'] = 0
517
544
        if count != 0:
518
 
            trace.note('HPSS calls: %d %s', count, medium_repr)
519
 
        
 
545
            trace.note('HPSS calls: %d (%d vfs) %s',
 
546
                       count, vfs_count, medium_repr)
 
547
 
520
548
    def flush_all(self):
521
549
        for ref in list(self.counts.keys()):
522
550
            self.done(ref)
523
551
 
524
552
_debug_counter = None
525
 
  
526
 
  
 
553
 
 
554
 
527
555
class SmartClientMedium(SmartMedium):
528
556
    """Smart client is a medium for sending smart protocol requests over."""
529
557
 
574
602
        """
575
603
        if (self._remote_version_is_before is not None and
576
604
            version_tuple > self._remote_version_is_before):
577
 
            raise AssertionError(
 
605
            # We have been told that the remote side is older than some version
 
606
            # which is newer than a previously supplied older-than version.
 
607
            # This indicates that some smart verb call is not guarded
 
608
            # appropriately (it should simply not have been tried).
 
609
            trace.mutter(
578
610
                "_remember_remote_is_before(%r) called, but "
579
611
                "_remember_remote_is_before(%r) was called previously."
580
 
                % (version_tuple, self._remote_version_is_before))
 
612
                , version_tuple, self._remote_version_is_before)
 
613
            if 'hpss' in debug.debug_flags:
 
614
                ui.ui_factory.show_warning(
 
615
                    "_remember_remote_is_before(%r) called, but "
 
616
                    "_remember_remote_is_before(%r) was called previously."
 
617
                    % (version_tuple, self._remote_version_is_before))
 
618
            return
581
619
        self._remote_version_is_before = version_tuple
582
620
 
583
621
    def protocol_version(self):
617
655
 
618
656
    def disconnect(self):
619
657
        """If this medium maintains a persistent connection, close it.
620
 
        
 
658
 
621
659
        The default implementation does nothing.
622
660
        """
623
 
        
 
661
 
624
662
    def remote_path_from_transport(self, transport):
625
663
        """Convert transport into a path suitable for using in a request.
626
 
        
 
664
 
627
665
        Note that the resulting remote path doesn't encode the host name or
628
666
        anything but path, so it is only safe to use it in requests sent over
629
667
        the medium from the matching transport.
657
695
 
658
696
    def _flush(self):
659
697
        """Flush the output stream.
660
 
        
 
698
 
661
699
        This method is used by the SmartClientStreamMediumRequest to ensure that
662
700
        all data for a request is sent, to avoid long timeouts or deadlocks.
663
701
        """
674
712
 
675
713
class SmartSimplePipesClientMedium(SmartClientStreamMedium):
676
714
    """A client medium using simple pipes.
677
 
    
 
715
 
678
716
    This client does not manage the pipes: it assumes they will always be open.
679
717
    """
680
718
 
686
724
    def _accept_bytes(self, bytes):
687
725
        """See SmartClientStreamMedium.accept_bytes."""
688
726
        self._writeable_pipe.write(bytes)
 
727
        self._report_activity(len(bytes), 'write')
689
728
 
690
729
    def _flush(self):
691
730
        """See SmartClientStreamMedium._flush()."""
693
732
 
694
733
    def _read_bytes(self, count):
695
734
        """See SmartClientStreamMedium._read_bytes."""
696
 
        return self._readable_pipe.read(count)
 
735
        bytes_to_read = min(count, _MAX_READ_SIZE)
 
736
        bytes = self._readable_pipe.read(bytes_to_read)
 
737
        self._report_activity(len(bytes), 'read')
 
738
        return bytes
 
739
 
 
740
 
 
741
class SSHParams(object):
 
742
    """A set of parameters for starting a remote bzr via SSH."""
 
743
 
 
744
    def __init__(self, host, port=None, username=None, password=None,
 
745
            bzr_remote_path='bzr'):
 
746
        self.host = host
 
747
        self.port = port
 
748
        self.username = username
 
749
        self.password = password
 
750
        self.bzr_remote_path = bzr_remote_path
697
751
 
698
752
 
699
753
class SmartSSHClientMedium(SmartClientStreamMedium):
700
 
    """A client medium using SSH."""
 
754
    """A client medium using SSH.
701
755
    
702
 
    def __init__(self, host, port=None, username=None, password=None,
703
 
            base=None, vendor=None, bzr_remote_path=None):
 
756
    It delegates IO to a SmartClientSocketMedium or
 
757
    SmartClientAlreadyConnectedSocketMedium (depending on platform).
 
758
    """
 
759
 
 
760
    def __init__(self, base, ssh_params, vendor=None):
704
761
        """Creates a client that will connect on the first use.
705
 
        
 
762
 
 
763
        :param ssh_params: A SSHParams instance.
706
764
        :param vendor: An optional override for the ssh vendor to use. See
707
765
            bzrlib.transport.ssh for details on ssh vendors.
708
766
        """
 
767
        self._real_medium = None
 
768
        self._ssh_params = ssh_params
 
769
        # for the benefit of progress making a short description of this
 
770
        # transport
 
771
        self._scheme = 'bzr+ssh'
 
772
        # SmartClientStreamMedium stores the repr of this object in its
 
773
        # _DebugCounter so we have to store all the values used in our repr
 
774
        # method before calling the super init.
709
775
        SmartClientStreamMedium.__init__(self, base)
710
 
        self._connected = False
711
 
        self._host = host
712
 
        self._password = password
713
 
        self._port = port
714
 
        self._username = username
715
 
        self._read_from = None
 
776
        self._vendor = vendor
716
777
        self._ssh_connection = None
717
 
        self._vendor = vendor
718
 
        self._write_to = None
719
 
        self._bzr_remote_path = bzr_remote_path
720
 
        if self._bzr_remote_path is None:
721
 
            symbol_versioning.warn(
722
 
                'bzr_remote_path is required as of bzr 0.92',
723
 
                DeprecationWarning, stacklevel=2)
724
 
            self._bzr_remote_path = os.environ.get('BZR_REMOTE_PATH', 'bzr')
 
778
 
 
779
    def __repr__(self):
 
780
        if self._ssh_params.port is None:
 
781
            maybe_port = ''
 
782
        else:
 
783
            maybe_port = ':%s' % self._ssh_params.port
 
784
        return "%s(%s://%s@%s%s/)" % (
 
785
            self.__class__.__name__,
 
786
            self._scheme,
 
787
            self._ssh_params.username,
 
788
            self._ssh_params.host,
 
789
            maybe_port)
725
790
 
726
791
    def _accept_bytes(self, bytes):
727
792
        """See SmartClientStreamMedium.accept_bytes."""
728
793
        self._ensure_connection()
729
 
        self._write_to.write(bytes)
 
794
        self._real_medium.accept_bytes(bytes)
730
795
 
731
796
    def disconnect(self):
732
797
        """See SmartClientMedium.disconnect()."""
733
 
        if not self._connected:
734
 
            return
735
 
        self._read_from.close()
736
 
        self._write_to.close()
737
 
        self._ssh_connection.close()
738
 
        self._connected = False
 
798
        if self._real_medium is not None:
 
799
            self._real_medium.disconnect()
 
800
            self._real_medium = None
 
801
        if self._ssh_connection is not None:
 
802
            self._ssh_connection.close()
 
803
            self._ssh_connection = None
739
804
 
740
805
    def _ensure_connection(self):
741
806
        """Connect this medium if not already connected."""
742
 
        if self._connected:
 
807
        if self._real_medium is not None:
743
808
            return
744
809
        if self._vendor is None:
745
810
            vendor = ssh._get_ssh_vendor()
746
811
        else:
747
812
            vendor = self._vendor
748
 
        self._ssh_connection = vendor.connect_ssh(self._username,
749
 
                self._password, self._host, self._port,
750
 
                command=[self._bzr_remote_path, 'serve', '--inet',
 
813
        self._ssh_connection = vendor.connect_ssh(self._ssh_params.username,
 
814
                self._ssh_params.password, self._ssh_params.host,
 
815
                self._ssh_params.port,
 
816
                command=[self._ssh_params.bzr_remote_path, 'serve', '--inet',
751
817
                         '--directory=/', '--allow-writes'])
752
 
        self._read_from, self._write_to = \
753
 
            self._ssh_connection.get_filelike_channels()
754
 
        self._connected = True
 
818
        io_kind, io_object = self._ssh_connection.get_sock_or_pipes()
 
819
        if io_kind == 'socket':
 
820
            self._real_medium = SmartClientAlreadyConnectedSocketMedium(
 
821
                self.base, io_object)
 
822
        elif io_kind == 'pipes':
 
823
            read_from, write_to = io_object
 
824
            self._real_medium = SmartSimplePipesClientMedium(
 
825
                read_from, write_to, self.base)
 
826
        else:
 
827
            raise AssertionError(
 
828
                "Unexpected io_kind %r from %r"
 
829
                % (io_kind, self._ssh_connection))
755
830
 
756
831
    def _flush(self):
757
832
        """See SmartClientStreamMedium._flush()."""
758
 
        self._write_to.flush()
 
833
        self._real_medium._flush()
759
834
 
760
835
    def _read_bytes(self, count):
761
836
        """See SmartClientStreamMedium.read_bytes."""
762
 
        if not self._connected:
 
837
        if self._real_medium is None:
763
838
            raise errors.MediumNotConnected(self)
764
 
        bytes_to_read = min(count, _MAX_READ_SIZE)
765
 
        return self._read_from.read(bytes_to_read)
 
839
        return self._real_medium.read_bytes(count)
766
840
 
767
841
 
768
842
# Port 4155 is the default port for bzr://, registered with IANA.
770
844
BZR_DEFAULT_PORT = 4155
771
845
 
772
846
 
773
 
class SmartTCPClientMedium(SmartClientStreamMedium):
774
 
    """A client medium using TCP."""
 
847
class SmartClientSocketMedium(SmartClientStreamMedium):
 
848
    """A client medium using a socket.
775
849
    
 
850
    This class isn't usable directly.  Use one of its subclasses instead.
 
851
    """
 
852
 
 
853
    def __init__(self, base):
 
854
        SmartClientStreamMedium.__init__(self, base)
 
855
        self._socket = None
 
856
        self._connected = False
 
857
 
 
858
    def _accept_bytes(self, bytes):
 
859
        """See SmartClientMedium.accept_bytes."""
 
860
        self._ensure_connection()
 
861
        osutils.send_all(self._socket, bytes, self._report_activity)
 
862
 
 
863
    def _ensure_connection(self):
 
864
        """Connect this medium if not already connected."""
 
865
        raise NotImplementedError(self._ensure_connection)
 
866
 
 
867
    def _flush(self):
 
868
        """See SmartClientStreamMedium._flush().
 
869
 
 
870
        For sockets we do no flushing. For TCP sockets we may want to turn off
 
871
        TCP_NODELAY and add a means to do a flush, but that can be done in the
 
872
        future.
 
873
        """
 
874
 
 
875
    def _read_bytes(self, count):
 
876
        """See SmartClientMedium.read_bytes."""
 
877
        if not self._connected:
 
878
            raise errors.MediumNotConnected(self)
 
879
        return osutils.read_bytes_from_socket(
 
880
            self._socket, self._report_activity)
 
881
 
 
882
    def disconnect(self):
 
883
        """See SmartClientMedium.disconnect()."""
 
884
        if not self._connected:
 
885
            return
 
886
        self._socket.close()
 
887
        self._socket = None
 
888
        self._connected = False
 
889
 
 
890
 
 
891
class SmartTCPClientMedium(SmartClientSocketMedium):
 
892
    """A client medium that creates a TCP connection."""
 
893
 
776
894
    def __init__(self, host, port, base):
777
895
        """Creates a client that will connect on the first use."""
778
 
        SmartClientStreamMedium.__init__(self, base)
779
 
        self._connected = False
 
896
        SmartClientSocketMedium.__init__(self, base)
780
897
        self._host = host
781
898
        self._port = port
782
 
        self._socket = None
783
 
 
784
 
    def _accept_bytes(self, bytes):
785
 
        """See SmartClientMedium.accept_bytes."""
786
 
        self._ensure_connection()
787
 
        osutils.send_all(self._socket, bytes)
788
 
 
789
 
    def disconnect(self):
790
 
        """See SmartClientMedium.disconnect()."""
791
 
        if not self._connected:
792
 
            return
793
 
        self._socket.close()
794
 
        self._socket = None
795
 
        self._connected = False
796
899
 
797
900
    def _ensure_connection(self):
798
901
        """Connect this medium if not already connected."""
803
906
        else:
804
907
            port = int(self._port)
805
908
        try:
806
 
            sockaddrs = socket.getaddrinfo(self._host, port, socket.AF_UNSPEC, 
 
909
            sockaddrs = socket.getaddrinfo(self._host, port, socket.AF_UNSPEC,
807
910
                socket.SOCK_STREAM, 0, 0)
808
911
        except socket.gaierror, (err_num, err_msg):
809
912
            raise errors.ConnectionError("failed to lookup %s:%d: %s" %
813
916
        for (family, socktype, proto, canonname, sockaddr) in sockaddrs:
814
917
            try:
815
918
                self._socket = socket.socket(family, socktype, proto)
816
 
                self._socket.setsockopt(socket.IPPROTO_TCP, 
 
919
                self._socket.setsockopt(socket.IPPROTO_TCP,
817
920
                                        socket.TCP_NODELAY, 1)
818
921
                self._socket.connect(sockaddr)
819
922
            except socket.error, err:
833
936
                    (self._host, port, err_msg))
834
937
        self._connected = True
835
938
 
836
 
    def _flush(self):
837
 
        """See SmartClientStreamMedium._flush().
838
 
        
839
 
        For TCP we do no flushing. We may want to turn off TCP_NODELAY and 
840
 
        add a means to do a flush, but that can be done in the future.
841
 
        """
842
 
 
843
 
    def _read_bytes(self, count):
844
 
        """See SmartClientMedium.read_bytes."""
845
 
        if not self._connected:
846
 
            raise errors.MediumNotConnected(self)
847
 
        # We ignore the desired_count because on sockets it's more efficient to
848
 
        # read large chunks (of _MAX_READ_SIZE bytes) at a time.
849
 
        try:
850
 
            return self._socket.recv(_MAX_READ_SIZE)
851
 
        except socket.error, e:
852
 
            if len(e.args) and e.args[0] == errno.ECONNRESET:
853
 
                # Callers expect an empty string in that case
854
 
                return ''
855
 
            else:
856
 
                raise
 
939
 
 
940
class SmartClientAlreadyConnectedSocketMedium(SmartClientSocketMedium):
 
941
    """A client medium for an already connected socket.
 
942
    
 
943
    Note that this class will assume it "owns" the socket, so it will close it
 
944
    when its disconnect method is called.
 
945
    """
 
946
 
 
947
    def __init__(self, base, sock):
 
948
        SmartClientSocketMedium.__init__(self, base)
 
949
        self._socket = sock
 
950
        self._connected = True
 
951
 
 
952
    def _ensure_connection(self):
 
953
        # Already connected, by definition!  So nothing to do.
 
954
        pass
857
955
 
858
956
 
859
957
class SmartClientStreamMediumRequest(SmartClientMediumRequest):
872
970
 
873
971
    def _accept_bytes(self, bytes):
874
972
        """See SmartClientMediumRequest._accept_bytes.
875
 
        
 
973
 
876
974
        This forwards to self._medium._accept_bytes because we are operating
877
975
        on the mediums stream.
878
976
        """
881
979
    def _finished_reading(self):
882
980
        """See SmartClientMediumRequest._finished_reading.
883
981
 
884
 
        This clears the _current_request on self._medium to allow a new 
 
982
        This clears the _current_request on self._medium to allow a new
885
983
        request to be created.
886
984
        """
887
985
        if self._medium._current_request is not self:
888
986
            raise AssertionError()
889
987
        self._medium._current_request = None
890
 
        
 
988
 
891
989
    def _finished_writing(self):
892
990
        """See SmartClientMediumRequest._finished_writing.
893
991
 
895
993
        """
896
994
        self._medium._flush()
897
995
 
 
996