~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: 2010-09-29 22:03:03 UTC
  • mfrom: (5416.2.6 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100929220303-cr95h8iwtggco721
(mbp) Add 'break-lock --force'

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2011 Canonical Ltd
 
1
# Copyright (C) 2006-2010 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
 
 
29
 
import errno
30
27
import os
31
28
import sys
32
 
import time
 
29
import urllib
33
30
 
34
31
import bzrlib
35
32
from bzrlib.lazy_import import lazy_import
36
33
lazy_import(globals(), """
37
 
import select
38
34
import socket
39
35
import thread
40
36
import weakref
42
38
from bzrlib import (
43
39
    debug,
44
40
    errors,
 
41
    symbol_versioning,
45
42
    trace,
46
 
    transport,
47
43
    ui,
48
44
    urlutils,
49
45
    )
50
 
from bzrlib.i18n import gettext
51
 
from bzrlib.smart import client, protocol, request, signals, vfs
 
46
from bzrlib.smart import client, protocol, request, vfs
52
47
from bzrlib.transport import ssh
53
48
""")
54
49
from bzrlib import osutils
181
176
        ui.ui_factory.report_transport_activity(self, bytes, direction)
182
177
 
183
178
 
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
 
 
192
179
class SmartServerStreamMedium(SmartMedium):
193
180
    """Handles smart commands coming over a stream.
194
181
 
207
194
        the stream.  See also the _push_back method.
208
195
    """
209
196
 
210
 
    _timer = time.time
211
 
 
212
 
    def __init__(self, backing_transport, root_client_path='/', timeout=None):
 
197
    def __init__(self, backing_transport, root_client_path='/'):
213
198
        """Construct new server.
214
199
 
215
200
        :param backing_transport: Transport for the directory served.
218
203
        self.backing_transport = backing_transport
219
204
        self.root_client_path = root_client_path
220
205
        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
206
        SmartMedium.__init__(self)
226
207
 
227
208
    def serve(self):
233
214
            while not self.finished:
234
215
                server_protocol = self._build_protocol()
235
216
                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
217
        except Exception, e:
243
218
            stderr.write("%s terminating on exception %s\n" % (self, e))
244
219
            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
220
 
270
221
    def _build_protocol(self):
271
222
        """Identifies the version of the incoming request, and returns an
276
227
 
277
228
        :returns: a SmartServerRequestProtocol.
278
229
        """
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
230
        bytes = self._get_line()
284
231
        protocol_factory, unused_bytes = _get_protocol_factory_for_bytes(bytes)
285
232
        protocol = protocol_factory(
287
234
        protocol.accept_bytes(unused_bytes)
288
235
        return protocol
289
236
 
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
237
    def _serve_one_request(self, protocol):
322
238
        """Read one request from input, process, send back a response.
323
239
 
324
240
        :param protocol: a SmartServerRequestProtocol.
325
241
        """
326
 
        if protocol is None:
327
 
            return
328
242
        try:
329
243
            self._serve_one_request_unguarded(protocol)
330
244
        except KeyboardInterrupt:
346
260
 
347
261
class SmartServerSocketStreamMedium(SmartServerStreamMedium):
348
262
 
349
 
    def __init__(self, sock, backing_transport, root_client_path='/',
350
 
                 timeout=None):
 
263
    def __init__(self, sock, backing_transport, root_client_path='/'):
351
264
        """Constructor.
352
265
 
353
266
        :param sock: the socket the server will read from.  It will be put
354
267
            into blocking mode.
355
268
        """
356
269
        SmartServerStreamMedium.__init__(
357
 
            self, backing_transport, root_client_path=root_client_path,
358
 
            timeout=timeout)
 
270
            self, backing_transport, root_client_path=root_client_path)
359
271
        sock.setblocking(True)
360
272
        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
273
 
374
274
    def _serve_one_request_unguarded(self, protocol):
375
275
        while protocol.next_read_size():
384
284
 
385
285
        self._push_back(protocol.unused_data)
386
286
 
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
287
    def _read_bytes(self, desired_count):
404
288
        return osutils.read_bytes_from_socket(
405
289
            self.socket, self._report_activity)
422
306
 
423
307
class SmartServerPipeStreamMedium(SmartServerStreamMedium):
424
308
 
425
 
    def __init__(self, in_file, out_file, backing_transport, timeout=None):
 
309
    def __init__(self, in_file, out_file, backing_transport):
426
310
        """Construct new server.
427
311
 
428
312
        :param in_file: Python file from which requests can be read.
429
313
        :param out_file: Python file to write responses.
430
314
        :param backing_transport: Transport for the directory served.
431
315
        """
432
 
        SmartServerStreamMedium.__init__(self, backing_transport,
433
 
            timeout=timeout)
 
316
        SmartServerStreamMedium.__init__(self, backing_transport)
434
317
        if sys.platform == 'win32':
435
318
            # force binary mode for files
436
319
            import msvcrt
441
324
        self._in = in_file
442
325
        self._out = out_file
443
326
 
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
327
    def _serve_one_request_unguarded(self, protocol):
456
328
        while True:
457
329
            # We need to be careful not to read past the end of the current
470
342
                return
471
343
            protocol.accept_bytes(bytes)
472
344
 
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
345
    def _read_bytes(self, desired_count):
495
346
        return self._in.read(desired_count)
496
347
 
640
491
        return self._medium._get_line()
641
492
 
642
493
 
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
494
class _DebugCounter(object):
663
495
    """An object that counts the HPSS calls made to each client medium.
664
496
 
711
543
        value['count'] = 0
712
544
        value['vfs_count'] = 0
713
545
        if count != 0:
714
 
            trace.note(gettext('HPSS calls: {0} ({1} vfs) {2}').format(
715
 
                       count, vfs_count, medium_repr))
 
546
            trace.note('HPSS calls: %d (%d vfs) %s',
 
547
                       count, vfs_count, medium_repr)
716
548
 
717
549
    def flush_all(self):
718
550
        for ref in list(self.counts.keys()):
719
551
            self.done(ref)
720
552
 
721
553
_debug_counter = None
722
 
_vfs_refuser = None
723
554
 
724
555
 
725
556
class SmartClientMedium(SmartMedium):
742
573
            if _debug_counter is None:
743
574
                _debug_counter = _DebugCounter()
744
575
            _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
576
 
750
577
    def _is_remote_before(self, version_tuple):
751
578
        """Is it possible the remote side supports RPCs for a given version?
842
669
        """
843
670
        medium_base = urlutils.join(self.base, '/')
844
671
        rel_url = urlutils.relative_url(medium_base, transport.base)
845
 
        return urlutils.unquote(rel_url)
 
672
        return urllib.unquote(rel_url)
846
673
 
847
674
 
848
675
class SmartClientStreamMedium(SmartClientMedium):
883
710
        """
884
711
        return SmartClientStreamMediumRequest(self)
885
712
 
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
713
 
895
714
class SmartSimplePipesClientMedium(SmartClientStreamMedium):
896
715
    """A client medium using simple pipes.
905
724
 
906
725
    def _accept_bytes(self, bytes):
907
726
        """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
 
727
        self._writeable_pipe.write(bytes)
915
728
        self._report_activity(len(bytes), 'write')
916
729
 
917
730
    def _flush(self):
918
731
        """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
732
        self._writeable_pipe.flush()
923
733
 
924
734
    def _read_bytes(self, count):
943
753
 
944
754
class SmartSSHClientMedium(SmartClientStreamMedium):
945
755
    """A client medium using SSH.
946
 
 
947
 
    It delegates IO to a SmartSimplePipesClientMedium or
 
756
    
 
757
    It delegates IO to a SmartClientSocketMedium or
948
758
    SmartClientAlreadyConnectedSocketMedium (depending on platform).
949
759
    """
950
760
 
972
782
            maybe_port = ''
973
783
        else:
974
784
            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/)" % (
 
785
        return "%s(%s://%s@%s%s/)" % (
980
786
            self.__class__.__name__,
981
787
            self._scheme,
982
 
            maybe_user,
 
788
            self._ssh_params.username,
983
789
            self._ssh_params.host,
984
790
            maybe_port)
985
791
 
1022
828
            raise AssertionError(
1023
829
                "Unexpected io_kind %r from %r"
1024
830
                % (io_kind, self._ssh_connection))
1025
 
        for hook in transport.Transport.hooks["post_connect"]:
1026
 
            hook(self)
1027
831
 
1028
832
    def _flush(self):
1029
833
        """See SmartClientStreamMedium._flush()."""
1043
847
 
1044
848
class SmartClientSocketMedium(SmartClientStreamMedium):
1045
849
    """A client medium using a socket.
1046
 
 
 
850
    
1047
851
    This class isn't usable directly.  Use one of its subclasses instead.
1048
852
    """
1049
853
 
1132
936
            raise errors.ConnectionError("failed to connect to %s:%d: %s" %
1133
937
                    (self._host, port, err_msg))
1134
938
        self._connected = True
1135
 
        for hook in transport.Transport.hooks["post_connect"]:
1136
 
            hook(self)
1137
939
 
1138
940
 
1139
941
class SmartClientAlreadyConnectedSocketMedium(SmartClientSocketMedium):
1191
993
        This invokes self._medium._flush to ensure all bytes are transmitted.
1192
994
        """
1193
995
        self._medium._flush()
 
996
 
 
997