~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/medium.py

  • Committer: Martin Pool
  • Date: 2009-01-13 03:11:04 UTC
  • mto: This revision was merged to the branch mainline in revision 3937.
  • Revision ID: mbp@sourcefrog.net-20090113031104-03my054s02i9l2pe
Bump version to 1.12 and add news template

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2011 Canonical Ltd
 
1
# Copyright (C) 2006 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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
 
from __future__ import absolute_import
28
 
 
29
27
import errno
30
28
import os
 
29
import socket
31
30
import sys
32
 
import time
 
31
import urllib
33
32
 
34
 
import bzrlib
35
33
from bzrlib.lazy_import import lazy_import
36
34
lazy_import(globals(), """
37
 
import select
38
 
import socket
39
 
import thread
 
35
import atexit
40
36
import weakref
41
 
 
42
37
from bzrlib import (
43
38
    debug,
44
39
    errors,
 
40
    osutils,
 
41
    symbol_versioning,
45
42
    trace,
46
 
    transport,
47
 
    ui,
48
43
    urlutils,
49
44
    )
50
 
from bzrlib.i18n import gettext
51
 
from bzrlib.smart import client, protocol, request, signals, vfs
 
45
from bzrlib.smart import client, protocol
52
46
from bzrlib.transport import ssh
53
47
""")
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
 
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
 
61
55
 
62
56
def _get_protocol_factory_for_bytes(bytes):
63
57
    """Determine the right protocol factory for 'bytes'.
93
87
 
94
88
def _get_line(read_bytes_func):
95
89
    """Read bytes using read_bytes_func until a newline byte.
96
 
 
 
90
    
97
91
    This isn't particularly efficient, so should only be used when the
98
92
    expected size of the line is quite short.
99
 
 
 
93
    
100
94
    :returns: a tuple of two strs: (line, excess)
101
95
    """
102
96
    newline_pos = -1
118
112
 
119
113
    def __init__(self):
120
114
        self._push_back_buffer = None
121
 
 
 
115
        
122
116
    def _push_back(self, bytes):
123
117
        """Return unused bytes to the medium, because they belong to the next
124
118
        request(s).
158
152
 
159
153
    def _get_line(self):
160
154
        """Read bytes from this request's response until a newline byte.
161
 
 
 
155
        
162
156
        This isn't particularly efficient, so should only be used when the
163
157
        expected size of the line is quite short.
164
158
 
167
161
        line, excess = _get_line(self.read_bytes)
168
162
        self._push_back(excess)
169
163
        return line
170
 
 
171
 
    def _report_activity(self, bytes, direction):
172
 
        """Notify that this medium has activity.
173
 
 
174
 
        Implementations should call this from all methods that actually do IO.
175
 
        Be careful that it's not called twice, if one method is implemented on
176
 
        top of another.
177
 
 
178
 
        :param bytes: Number of bytes read or written.
179
 
        :param direction: 'read' or 'write' or None.
180
 
        """
181
 
        ui.ui_factory.report_transport_activity(self, bytes, direction)
182
 
 
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
 
 
 
164
 
191
165
 
192
166
class SmartServerStreamMedium(SmartMedium):
193
167
    """Handles smart commands coming over a stream.
198
172
    One instance is created for each connected client; it can serve multiple
199
173
    requests in the lifetime of the connection.
200
174
 
201
 
    The server passes requests through to an underlying backing transport,
 
175
    The server passes requests through to an underlying backing transport, 
202
176
    which will typically be a LocalTransport looking at the server's filesystem.
203
177
 
204
178
    :ivar _push_back_buffer: a str of bytes that have been read from the stream
207
181
        the stream.  See also the _push_back method.
208
182
    """
209
183
 
210
 
    _timer = time.time
211
 
 
212
 
    def __init__(self, backing_transport, root_client_path='/', timeout=None):
 
184
    def __init__(self, backing_transport, root_client_path='/'):
213
185
        """Construct new server.
214
186
 
215
187
        :param backing_transport: Transport for the directory served.
218
190
        self.backing_transport = backing_transport
219
191
        self.root_client_path = root_client_path
220
192
        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)
225
193
        SmartMedium.__init__(self)
226
194
 
227
195
    def serve(self):
233
201
            while not self.finished:
234
202
                server_protocol = self._build_protocol()
235
203
                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
242
204
        except Exception, e:
243
205
            stderr.write("%s terminating on exception %s\n" % (self, e))
244
206
            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)
269
207
 
270
208
    def _build_protocol(self):
271
209
        """Identifies the version of the incoming request, and returns an
276
214
 
277
215
        :returns: a SmartServerRequestProtocol.
278
216
        """
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
283
217
        bytes = self._get_line()
284
218
        protocol_factory, unused_bytes = _get_protocol_factory_for_bytes(bytes)
285
219
        protocol = protocol_factory(
287
221
        protocol.accept_bytes(unused_bytes)
288
222
        return protocol
289
223
 
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
 
 
321
224
    def _serve_one_request(self, protocol):
322
225
        """Read one request from input, process, send back a response.
323
 
 
 
226
        
324
227
        :param protocol: a SmartServerRequestProtocol.
325
228
        """
326
 
        if protocol is None:
327
 
            return
328
229
        try:
329
230
            self._serve_one_request_unguarded(protocol)
330
231
        except KeyboardInterrupt:
346
247
 
347
248
class SmartServerSocketStreamMedium(SmartServerStreamMedium):
348
249
 
349
 
    def __init__(self, sock, backing_transport, root_client_path='/',
350
 
                 timeout=None):
 
250
    def __init__(self, sock, backing_transport, root_client_path='/'):
351
251
        """Constructor.
352
252
 
353
253
        :param sock: the socket the server will read from.  It will be put
354
254
            into blocking mode.
355
255
        """
356
256
        SmartServerStreamMedium.__init__(
357
 
            self, backing_transport, root_client_path=root_client_path,
358
 
            timeout=timeout)
 
257
            self, backing_transport, root_client_path=root_client_path)
359
258
        sock.setblocking(True)
360
259
        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)
373
260
 
374
261
    def _serve_one_request_unguarded(self, protocol):
375
262
        while protocol.next_read_size():
376
263
            # We can safely try to read large chunks.  If there is less data
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)
 
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)
380
267
            if bytes == '':
381
268
                self.finished = True
382
269
                return
383
270
            protocol.accept_bytes(bytes)
384
 
 
 
271
        
385
272
        self._push_back(protocol.unused_data)
386
273
 
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
 
 
403
274
    def _read_bytes(self, desired_count):
404
 
        return osutils.read_bytes_from_socket(
405
 
            self.socket, self._report_activity)
 
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 osutils.until_no_eintr(self.socket.recv, _MAX_READ_SIZE)
406
278
 
407
279
    def terminate_due_to_error(self):
408
280
        # TODO: This should log to a server log file, but no such thing
411
283
        self.finished = True
412
284
 
413
285
    def _write_out(self, bytes):
414
 
        tstart = osutils.timer_func()
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))
 
286
        osutils.send_all(self.socket, bytes)
421
287
 
422
288
 
423
289
class SmartServerPipeStreamMedium(SmartServerStreamMedium):
424
290
 
425
 
    def __init__(self, in_file, out_file, backing_transport, timeout=None):
 
291
    def __init__(self, in_file, out_file, backing_transport):
426
292
        """Construct new server.
427
293
 
428
294
        :param in_file: Python file from which requests can be read.
429
295
        :param out_file: Python file to write responses.
430
296
        :param backing_transport: Transport for the directory served.
431
297
        """
432
 
        SmartServerStreamMedium.__init__(self, backing_transport,
433
 
            timeout=timeout)
 
298
        SmartServerStreamMedium.__init__(self, backing_transport)
434
299
        if sys.platform == 'win32':
435
300
            # force binary mode for files
436
301
            import msvcrt
441
306
        self._in = in_file
442
307
        self._out = out_file
443
308
 
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
 
 
455
309
    def _serve_one_request_unguarded(self, protocol):
456
310
        while True:
457
311
            # We need to be careful not to read past the end of the current
470
324
                return
471
325
            protocol.accept_bytes(bytes)
472
326
 
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
 
 
494
327
    def _read_bytes(self, desired_count):
495
328
        return self._in.read(desired_count)
496
329
 
517
350
    request.finished_reading()
518
351
 
519
352
    It is up to the individual SmartClientMedium whether multiple concurrent
520
 
    requests can exist. See SmartClientMedium.get_request to obtain instances
521
 
    of SmartClientMediumRequest, and the concrete Medium you are using for
 
353
    requests can exist. See SmartClientMedium.get_request to obtain instances 
 
354
    of SmartClientMediumRequest, and the concrete Medium you are using for 
522
355
    details on concurrency and pipelining.
523
356
    """
524
357
 
533
366
    def accept_bytes(self, bytes):
534
367
        """Accept bytes for inclusion in this request.
535
368
 
536
 
        This method may not be called after finished_writing() has been
 
369
        This method may not be be called after finished_writing() has been
537
370
        called.  It depends upon the Medium whether or not the bytes will be
538
371
        immediately transmitted. Message based Mediums will tend to buffer the
539
372
        bytes until finished_writing() is called.
570
403
    def _finished_reading(self):
571
404
        """Helper for finished_reading.
572
405
 
573
 
        finished_reading checks the state of the request to determine if
 
406
        finished_reading checks the state of the request to determine if 
574
407
        finished_reading is allowed, and if it is hands off to _finished_reading
575
408
        to perform the action.
576
409
        """
590
423
    def _finished_writing(self):
591
424
        """Helper for finished_writing.
592
425
 
593
 
        finished_writing checks the state of the request to determine if
 
426
        finished_writing checks the state of the request to determine if 
594
427
        finished_writing is allowed, and if it is hands off to _finished_writing
595
428
        to perform the action.
596
429
        """
616
449
        read_bytes checks the state of the request to determing if bytes
617
450
        should be read. After that it hands off to _read_bytes to do the
618
451
        actual read.
619
 
 
 
452
        
620
453
        By default this forwards to self._medium.read_bytes because we are
621
454
        operating on the medium's stream.
622
455
        """
627
460
        if not line.endswith('\n'):
628
461
            # end of file encountered reading from server
629
462
            raise errors.ConnectionReset(
630
 
                "Unexpected end of message. Please check connectivity "
631
 
                "and permissions, and report a bug if problems persist.")
 
463
                "please check connectivity and permissions",
 
464
                "(and try -Dhpss if further diagnosis is required)")
632
465
        return line
633
466
 
634
467
    def _read_line(self):
635
468
        """Helper for SmartClientMediumRequest.read_line.
636
 
 
 
469
        
637
470
        By default this forwards to self._medium._get_line because we are
638
471
        operating on the medium's stream.
639
472
        """
640
473
        return self._medium._get_line()
641
474
 
642
475
 
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
 
 
662
476
class _DebugCounter(object):
663
477
    """An object that counts the HPSS calls made to each client medium.
664
478
 
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.
 
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.
668
482
    """
669
483
 
670
484
    def __init__(self):
671
485
        self.counts = weakref.WeakKeyDictionary()
672
486
        client._SmartClient.hooks.install_named_hook(
673
487
            'call', self.increment_call_count, 'hpss call counter')
674
 
        bzrlib.global_state.cleanups.add_cleanup(self.flush_all)
 
488
        atexit.register(self.flush_all)
675
489
 
676
490
    def track(self, medium):
677
491
        """Start tracking calls made to a medium.
681
495
        """
682
496
        medium_repr = repr(medium)
683
497
        # Add this medium to the WeakKeyDictionary
684
 
        self.counts[medium] = dict(count=0, vfs_count=0,
685
 
                                   medium_repr=medium_repr)
 
498
        self.counts[medium] = [0, medium_repr]
686
499
        # Weakref callbacks are fired in reverse order of their association
687
500
        # with the referenced object.  So we add a weakref *after* adding to
688
501
        # the WeakKeyDict so that we can report the value from it before the
692
505
    def increment_call_count(self, params):
693
506
        # Increment the count in the WeakKeyDictionary
694
507
        value = self.counts[params.medium]
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
 
508
        value[0] += 1
703
509
 
704
510
    def done(self, ref):
705
511
        value = self.counts[ref]
706
 
        count, vfs_count, medium_repr = (
707
 
            value['count'], value['vfs_count'], value['medium_repr'])
 
512
        count, medium_repr = value
708
513
        # In case this callback is invoked for the same ref twice (by the
709
514
        # weakref callback and by the atexit function), set the call count back
710
515
        # to 0 so this item won't be reported twice.
711
 
        value['count'] = 0
712
 
        value['vfs_count'] = 0
 
516
        value[0] = 0
713
517
        if count != 0:
714
 
            trace.note(gettext('HPSS calls: {0} ({1} vfs) {2}').format(
715
 
                       count, vfs_count, medium_repr))
716
 
 
 
518
            trace.note('HPSS calls: %d %s', count, medium_repr)
 
519
        
717
520
    def flush_all(self):
718
521
        for ref in list(self.counts.keys()):
719
522
            self.done(ref)
720
523
 
721
524
_debug_counter = None
722
 
_vfs_refuser = None
723
 
 
724
 
 
 
525
  
 
526
  
725
527
class SmartClientMedium(SmartMedium):
726
528
    """Smart client is a medium for sending smart protocol requests over."""
727
529
 
742
544
            if _debug_counter is None:
743
545
                _debug_counter = _DebugCounter()
744
546
            _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()
749
547
 
750
548
    def _is_remote_before(self, version_tuple):
751
549
        """Is it possible the remote side supports RPCs for a given version?
776
574
        """
777
575
        if (self._remote_version_is_before is not None and
778
576
            version_tuple > self._remote_version_is_before):
779
 
            # We have been told that the remote side is older than some version
780
 
            # which is newer than a previously supplied older-than version.
781
 
            # This indicates that some smart verb call is not guarded
782
 
            # appropriately (it should simply not have been tried).
783
 
            trace.mutter(
 
577
            raise AssertionError(
784
578
                "_remember_remote_is_before(%r) called, but "
785
579
                "_remember_remote_is_before(%r) was called previously."
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
 
580
                % (version_tuple, self._remote_version_is_before))
793
581
        self._remote_version_is_before = version_tuple
794
582
 
795
583
    def protocol_version(self):
829
617
 
830
618
    def disconnect(self):
831
619
        """If this medium maintains a persistent connection, close it.
832
 
 
 
620
        
833
621
        The default implementation does nothing.
834
622
        """
835
 
 
 
623
        
836
624
    def remote_path_from_transport(self, transport):
837
625
        """Convert transport into a path suitable for using in a request.
838
 
 
 
626
        
839
627
        Note that the resulting remote path doesn't encode the host name or
840
628
        anything but path, so it is only safe to use it in requests sent over
841
629
        the medium from the matching transport.
842
630
        """
843
631
        medium_base = urlutils.join(self.base, '/')
844
632
        rel_url = urlutils.relative_url(medium_base, transport.base)
845
 
        return urlutils.unquote(rel_url)
 
633
        return urllib.unquote(rel_url)
846
634
 
847
635
 
848
636
class SmartClientStreamMedium(SmartClientMedium):
869
657
 
870
658
    def _flush(self):
871
659
        """Flush the output stream.
872
 
 
 
660
        
873
661
        This method is used by the SmartClientStreamMediumRequest to ensure that
874
662
        all data for a request is sent, to avoid long timeouts or deadlocks.
875
663
        """
883
671
        """
884
672
        return SmartClientStreamMediumRequest(self)
885
673
 
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
 
 
894
674
 
895
675
class SmartSimplePipesClientMedium(SmartClientStreamMedium):
896
676
    """A client medium using simple pipes.
897
 
 
 
677
    
898
678
    This client does not manage the pipes: it assumes they will always be open.
899
679
    """
900
680
 
905
685
 
906
686
    def _accept_bytes(self, bytes):
907
687
        """See SmartClientStreamMedium.accept_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
915
 
        self._report_activity(len(bytes), 'write')
 
688
        self._writeable_pipe.write(bytes)
916
689
 
917
690
    def _flush(self):
918
691
        """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.
922
692
        self._writeable_pipe.flush()
923
693
 
924
694
    def _read_bytes(self, count):
925
695
        """See SmartClientStreamMedium._read_bytes."""
926
 
        bytes_to_read = min(count, _MAX_READ_SIZE)
927
 
        bytes = self._readable_pipe.read(bytes_to_read)
928
 
        self._report_activity(len(bytes), 'read')
929
 
        return bytes
930
 
 
931
 
 
932
 
class SSHParams(object):
933
 
    """A set of parameters for starting a remote bzr via SSH."""
934
 
 
 
696
        return self._readable_pipe.read(count)
 
697
 
 
698
 
 
699
class SmartSSHClientMedium(SmartClientStreamMedium):
 
700
    """A client medium using SSH."""
 
701
    
935
702
    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
 
 
944
 
class SmartSSHClientMedium(SmartClientStreamMedium):
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):
 
703
            base=None, vendor=None, bzr_remote_path=None):
952
704
        """Creates a client that will connect on the first use.
953
 
 
954
 
        :param ssh_params: A SSHParams instance.
 
705
        
955
706
        :param vendor: An optional override for the ssh vendor to use. See
956
707
            bzrlib.transport.ssh for details on ssh vendors.
957
708
        """
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'
963
 
        # SmartClientStreamMedium stores the repr of this object in its
964
 
        # _DebugCounter so we have to store all the values used in our repr
965
 
        # method before calling the super init.
966
709
        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
 
716
        self._ssh_connection = None
967
717
        self._vendor = vendor
968
 
        self._ssh_connection = None
969
 
 
970
 
    def __repr__(self):
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/)" % (
980
 
            self.__class__.__name__,
981
 
            self._scheme,
982
 
            maybe_user,
983
 
            self._ssh_params.host,
984
 
            maybe_port)
 
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')
985
725
 
986
726
    def _accept_bytes(self, bytes):
987
727
        """See SmartClientStreamMedium.accept_bytes."""
988
728
        self._ensure_connection()
989
 
        self._real_medium.accept_bytes(bytes)
 
729
        self._write_to.write(bytes)
990
730
 
991
731
    def disconnect(self):
992
732
        """See SmartClientMedium.disconnect()."""
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
 
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
999
739
 
1000
740
    def _ensure_connection(self):
1001
741
        """Connect this medium if not already connected."""
1002
 
        if self._real_medium is not None:
 
742
        if self._connected:
1003
743
            return
1004
744
        if self._vendor is None:
1005
745
            vendor = ssh._get_ssh_vendor()
1006
746
        else:
1007
747
            vendor = self._vendor
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',
 
748
        self._ssh_connection = vendor.connect_ssh(self._username,
 
749
                self._password, self._host, self._port,
 
750
                command=[self._bzr_remote_path, 'serve', '--inet',
1012
751
                         '--directory=/', '--allow-writes'])
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)
 
752
        self._read_from, self._write_to = \
 
753
            self._ssh_connection.get_filelike_channels()
 
754
        self._connected = True
1027
755
 
1028
756
    def _flush(self):
1029
757
        """See SmartClientStreamMedium._flush()."""
1030
 
        self._real_medium._flush()
 
758
        self._write_to.flush()
1031
759
 
1032
760
    def _read_bytes(self, count):
1033
761
        """See SmartClientStreamMedium.read_bytes."""
1034
 
        if self._real_medium is None:
 
762
        if not self._connected:
1035
763
            raise errors.MediumNotConnected(self)
1036
 
        return self._real_medium.read_bytes(count)
 
764
        bytes_to_read = min(count, _MAX_READ_SIZE)
 
765
        return self._read_from.read(bytes_to_read)
1037
766
 
1038
767
 
1039
768
# Port 4155 is the default port for bzr://, registered with IANA.
1041
770
BZR_DEFAULT_PORT = 4155
1042
771
 
1043
772
 
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):
 
773
class SmartTCPClientMedium(SmartClientStreamMedium):
 
774
    """A client medium using TCP."""
 
775
    
 
776
    def __init__(self, host, port, base):
 
777
        """Creates a client that will connect on the first use."""
1051
778
        SmartClientStreamMedium.__init__(self, base)
 
779
        self._connected = False
 
780
        self._host = host
 
781
        self._port = port
1052
782
        self._socket = None
1053
 
        self._connected = False
1054
783
 
1055
784
    def _accept_bytes(self, bytes):
1056
785
        """See SmartClientMedium.accept_bytes."""
1057
786
        self._ensure_connection()
1058
 
        osutils.send_all(self._socket, bytes, self._report_activity)
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)
 
787
        osutils.send_all(self._socket, bytes)
1078
788
 
1079
789
    def disconnect(self):
1080
790
        """See SmartClientMedium.disconnect()."""
1084
794
        self._socket = None
1085
795
        self._connected = False
1086
796
 
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
 
 
1097
797
    def _ensure_connection(self):
1098
798
        """Connect this medium if not already connected."""
1099
799
        if self._connected:
1103
803
        else:
1104
804
            port = int(self._port)
1105
805
        try:
1106
 
            sockaddrs = socket.getaddrinfo(self._host, port, socket.AF_UNSPEC,
 
806
            sockaddrs = socket.getaddrinfo(self._host, port, socket.AF_UNSPEC, 
1107
807
                socket.SOCK_STREAM, 0, 0)
1108
808
        except socket.gaierror, (err_num, err_msg):
1109
809
            raise errors.ConnectionError("failed to lookup %s:%d: %s" %
1113
813
        for (family, socktype, proto, canonname, sockaddr) in sockaddrs:
1114
814
            try:
1115
815
                self._socket = socket.socket(family, socktype, proto)
1116
 
                self._socket.setsockopt(socket.IPPROTO_TCP,
 
816
                self._socket.setsockopt(socket.IPPROTO_TCP, 
1117
817
                                        socket.TCP_NODELAY, 1)
1118
818
                self._socket.connect(sockaddr)
1119
819
            except socket.error, err:
1132
832
            raise errors.ConnectionError("failed to connect to %s:%d: %s" %
1133
833
                    (self._host, port, err_msg))
1134
834
        self._connected = True
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
 
835
 
 
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
1154
857
 
1155
858
 
1156
859
class SmartClientStreamMediumRequest(SmartClientMediumRequest):
1169
872
 
1170
873
    def _accept_bytes(self, bytes):
1171
874
        """See SmartClientMediumRequest._accept_bytes.
1172
 
 
 
875
        
1173
876
        This forwards to self._medium._accept_bytes because we are operating
1174
877
        on the mediums stream.
1175
878
        """
1178
881
    def _finished_reading(self):
1179
882
        """See SmartClientMediumRequest._finished_reading.
1180
883
 
1181
 
        This clears the _current_request on self._medium to allow a new
 
884
        This clears the _current_request on self._medium to allow a new 
1182
885
        request to be created.
1183
886
        """
1184
887
        if self._medium._current_request is not self:
1185
888
            raise AssertionError()
1186
889
        self._medium._current_request = None
1187
 
 
 
890
        
1188
891
    def _finished_writing(self):
1189
892
        """See SmartClientMediumRequest._finished_writing.
1190
893
 
1191
894
        This invokes self._medium._flush to ensure all bytes are transmitted.
1192
895
        """
1193
896
        self._medium._flush()
 
897