~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: 2007-06-18 03:33:56 UTC
  • mfrom: (2527.1.1 breakin)
  • Revision ID: pqm@pqm.ubuntu.com-20070618033356-q24jtmuwbf03ojvd
Fix race in test_breakin_harder that can cause test suite hang.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2010 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
 
import errno
28
27
import os
29
28
import socket
30
29
import sys
31
 
import urllib
32
 
 
33
 
from bzrlib.lazy_import import lazy_import
34
 
lazy_import(globals(), """
35
 
import atexit
36
 
import thread
37
 
import weakref
38
 
 
39
 
from bzrlib import (
40
 
    debug,
41
 
    errors,
42
 
    symbol_versioning,
43
 
    trace,
44
 
    ui,
45
 
    urlutils,
 
30
 
 
31
from bzrlib import errors
 
32
from bzrlib.smart.protocol import (
 
33
    REQUEST_VERSION_TWO,
 
34
    SmartServerRequestProtocolOne,
 
35
    SmartServerRequestProtocolTwo,
46
36
    )
47
 
from bzrlib.smart import client, protocol, request, vfs
48
 
from bzrlib.transport import ssh
49
 
""")
50
 
#usually already imported, and getting IllegalScoperReplacer on it here.
51
 
from bzrlib import osutils
52
 
 
53
 
# We must not read any more than 64k at a time so we don't risk "no buffer
54
 
# space available" errors on some platforms.  Windows in particular is likely
55
 
# to give error 10053 or 10055 if we read more than 64k from a socket.
56
 
_MAX_READ_SIZE = 64 * 1024
57
 
 
58
 
 
59
 
def _get_protocol_factory_for_bytes(bytes):
60
 
    """Determine the right protocol factory for 'bytes'.
61
 
 
62
 
    This will return an appropriate protocol factory depending on the version
63
 
    of the protocol being used, as determined by inspecting the given bytes.
64
 
    The bytes should have at least one newline byte (i.e. be a whole line),
65
 
    otherwise it's possible that a request will be incorrectly identified as
66
 
    version 1.
67
 
 
68
 
    Typical use would be::
69
 
 
70
 
         factory, unused_bytes = _get_protocol_factory_for_bytes(bytes)
71
 
         server_protocol = factory(transport, write_func, root_client_path)
72
 
         server_protocol.accept_bytes(unused_bytes)
73
 
 
74
 
    :param bytes: a str of bytes of the start of the request.
75
 
    :returns: 2-tuple of (protocol_factory, unused_bytes).  protocol_factory is
76
 
        a callable that takes three args: transport, write_func,
77
 
        root_client_path.  unused_bytes are any bytes that were not part of a
78
 
        protocol version marker.
79
 
    """
80
 
    if bytes.startswith(protocol.MESSAGE_VERSION_THREE):
81
 
        protocol_factory = protocol.build_server_protocol_three
82
 
        bytes = bytes[len(protocol.MESSAGE_VERSION_THREE):]
83
 
    elif bytes.startswith(protocol.REQUEST_VERSION_TWO):
84
 
        protocol_factory = protocol.SmartServerRequestProtocolTwo
85
 
        bytes = bytes[len(protocol.REQUEST_VERSION_TWO):]
86
 
    else:
87
 
        protocol_factory = protocol.SmartServerRequestProtocolOne
88
 
    return protocol_factory, bytes
89
 
 
90
 
 
91
 
def _get_line(read_bytes_func):
92
 
    """Read bytes using read_bytes_func until a newline byte.
93
 
 
94
 
    This isn't particularly efficient, so should only be used when the
95
 
    expected size of the line is quite short.
96
 
 
97
 
    :returns: a tuple of two strs: (line, excess)
98
 
    """
99
 
    newline_pos = -1
100
 
    bytes = ''
101
 
    while newline_pos == -1:
102
 
        new_bytes = read_bytes_func(1)
103
 
        bytes += new_bytes
104
 
        if new_bytes == '':
105
 
            # Ran out of bytes before receiving a complete line.
106
 
            return bytes, ''
107
 
        newline_pos = bytes.find('\n')
108
 
    line = bytes[:newline_pos+1]
109
 
    excess = bytes[newline_pos+1:]
110
 
    return line, excess
111
 
 
112
 
 
113
 
class SmartMedium(object):
114
 
    """Base class for smart protocol media, both client- and server-side."""
115
 
 
116
 
    def __init__(self):
117
 
        self._push_back_buffer = None
118
 
 
119
 
    def _push_back(self, bytes):
120
 
        """Return unused bytes to the medium, because they belong to the next
121
 
        request(s).
122
 
 
123
 
        This sets the _push_back_buffer to the given bytes.
124
 
        """
125
 
        if self._push_back_buffer is not None:
126
 
            raise AssertionError(
127
 
                "_push_back called when self._push_back_buffer is %r"
128
 
                % (self._push_back_buffer,))
129
 
        if bytes == '':
130
 
            return
131
 
        self._push_back_buffer = bytes
132
 
 
133
 
    def _get_push_back_buffer(self):
134
 
        if self._push_back_buffer == '':
135
 
            raise AssertionError(
136
 
                '%s._push_back_buffer should never be the empty string, '
137
 
                'which can be confused with EOF' % (self,))
138
 
        bytes = self._push_back_buffer
139
 
        self._push_back_buffer = None
140
 
        return bytes
141
 
 
142
 
    def read_bytes(self, desired_count):
143
 
        """Read some bytes from this medium.
144
 
 
145
 
        :returns: some bytes, possibly more or less than the number requested
146
 
            in 'desired_count' depending on the medium.
147
 
        """
148
 
        if self._push_back_buffer is not None:
149
 
            return self._get_push_back_buffer()
150
 
        bytes_to_read = min(desired_count, _MAX_READ_SIZE)
151
 
        return self._read_bytes(bytes_to_read)
152
 
 
153
 
    def _read_bytes(self, count):
154
 
        raise NotImplementedError(self._read_bytes)
155
 
 
156
 
    def _get_line(self):
157
 
        """Read bytes from this request's response until a newline byte.
158
 
 
159
 
        This isn't particularly efficient, so should only be used when the
160
 
        expected size of the line is quite short.
161
 
 
162
 
        :returns: a string of bytes ending in a newline (byte 0x0A).
163
 
        """
164
 
        line, excess = _get_line(self.read_bytes)
165
 
        self._push_back(excess)
166
 
        return line
167
 
 
168
 
    def _report_activity(self, bytes, direction):
169
 
        """Notify that this medium has activity.
170
 
 
171
 
        Implementations should call this from all methods that actually do IO.
172
 
        Be careful that it's not called twice, if one method is implemented on
173
 
        top of another.
174
 
 
175
 
        :param bytes: Number of bytes read or written.
176
 
        :param direction: 'read' or 'write' or None.
177
 
        """
178
 
        ui.ui_factory.report_transport_activity(self, bytes, direction)
179
 
 
180
 
 
181
 
class SmartServerStreamMedium(SmartMedium):
 
37
 
 
38
try:
 
39
    from bzrlib.transport import ssh
 
40
except errors.ParamikoNotPresent:
 
41
    # no paramiko.  SmartSSHClientMedium will break.
 
42
    pass
 
43
 
 
44
 
 
45
class SmartServerStreamMedium(object):
182
46
    """Handles smart commands coming over a stream.
183
47
 
184
48
    The stream may be a pipe connected to sshd, or a tcp socket, or an
187
51
    One instance is created for each connected client; it can serve multiple
188
52
    requests in the lifetime of the connection.
189
53
 
190
 
    The server passes requests through to an underlying backing transport,
 
54
    The server passes requests through to an underlying backing transport, 
191
55
    which will typically be a LocalTransport looking at the server's filesystem.
192
 
 
193
 
    :ivar _push_back_buffer: a str of bytes that have been read from the stream
194
 
        but not used yet, or None if there are no buffered bytes.  Subclasses
195
 
        should make sure to exhaust this buffer before reading more bytes from
196
 
        the stream.  See also the _push_back method.
197
56
    """
198
57
 
199
 
    def __init__(self, backing_transport, root_client_path='/'):
 
58
    def __init__(self, backing_transport):
200
59
        """Construct new server.
201
60
 
202
61
        :param backing_transport: Transport for the directory served.
203
62
        """
204
63
        # backing_transport could be passed to serve instead of __init__
205
64
        self.backing_transport = backing_transport
206
 
        self.root_client_path = root_client_path
207
65
        self.finished = False
208
 
        SmartMedium.__init__(self)
209
66
 
210
67
    def serve(self):
211
68
        """Serve requests until the client disconnects."""
229
86
 
230
87
        :returns: a SmartServerRequestProtocol.
231
88
        """
 
89
        # Identify the protocol version.
232
90
        bytes = self._get_line()
233
 
        protocol_factory, unused_bytes = _get_protocol_factory_for_bytes(bytes)
234
 
        protocol = protocol_factory(
235
 
            self.backing_transport, self._write_out, self.root_client_path)
236
 
        protocol.accept_bytes(unused_bytes)
 
91
        if bytes.startswith(REQUEST_VERSION_TWO):
 
92
            protocol_class = SmartServerRequestProtocolTwo
 
93
            bytes = bytes[len(REQUEST_VERSION_TWO):]
 
94
        else:
 
95
            protocol_class = SmartServerRequestProtocolOne
 
96
        protocol = protocol_class(self.backing_transport, self._write_out)
 
97
        protocol.accept_bytes(bytes)
237
98
        return protocol
238
99
 
239
100
    def _serve_one_request(self, protocol):
240
101
        """Read one request from input, process, send back a response.
241
 
 
 
102
        
242
103
        :param protocol: a SmartServerRequestProtocol.
243
104
        """
244
105
        try:
252
113
        """Called when an unhandled exception from the protocol occurs."""
253
114
        raise NotImplementedError(self.terminate_due_to_error)
254
115
 
255
 
    def _read_bytes(self, desired_count):
 
116
    def _get_bytes(self, desired_count):
256
117
        """Get some bytes from the medium.
257
118
 
258
119
        :param desired_count: number of bytes we want to read.
259
120
        """
260
 
        raise NotImplementedError(self._read_bytes)
 
121
        raise NotImplementedError(self._get_bytes)
 
122
 
 
123
    def _get_line(self):
 
124
        """Read bytes from this request's response until a newline byte.
 
125
        
 
126
        This isn't particularly efficient, so should only be used when the
 
127
        expected size of the line is quite short.
 
128
 
 
129
        :returns: a string of bytes ending in a newline (byte 0x0A).
 
130
        """
 
131
        # XXX: this duplicates SmartClientRequestProtocolOne._recv_tuple
 
132
        line = ''
 
133
        while not line or line[-1] != '\n':
 
134
            new_char = self._get_bytes(1)
 
135
            line += new_char
 
136
            if new_char == '':
 
137
                # Ran out of bytes before receiving a complete line.
 
138
                break
 
139
        return line
261
140
 
262
141
 
263
142
class SmartServerSocketStreamMedium(SmartServerStreamMedium):
264
143
 
265
 
    def __init__(self, sock, backing_transport, root_client_path='/'):
 
144
    def __init__(self, sock, backing_transport):
266
145
        """Constructor.
267
146
 
268
147
        :param sock: the socket the server will read from.  It will be put
269
148
            into blocking mode.
270
149
        """
271
 
        SmartServerStreamMedium.__init__(
272
 
            self, backing_transport, root_client_path=root_client_path)
 
150
        SmartServerStreamMedium.__init__(self, backing_transport)
 
151
        self.push_back = ''
273
152
        sock.setblocking(True)
274
153
        self.socket = sock
275
154
 
276
155
    def _serve_one_request_unguarded(self, protocol):
277
156
        while protocol.next_read_size():
278
 
            # We can safely try to read large chunks.  If there is less data
279
 
            # than _MAX_READ_SIZE ready, the socket wil just return a short
280
 
            # read immediately rather than block.
281
 
            bytes = self.read_bytes(_MAX_READ_SIZE)
282
 
            if bytes == '':
283
 
                self.finished = True
284
 
                return
285
 
            protocol.accept_bytes(bytes)
286
 
 
287
 
        self._push_back(protocol.unused_data)
288
 
 
289
 
    def _read_bytes(self, desired_count):
290
 
        return _read_bytes_from_socket(
291
 
            self.socket.recv, desired_count, self._report_activity)
292
 
 
 
157
            if self.push_back:
 
158
                protocol.accept_bytes(self.push_back)
 
159
                self.push_back = ''
 
160
            else:
 
161
                bytes = self._get_bytes(4096)
 
162
                if bytes == '':
 
163
                    self.finished = True
 
164
                    return
 
165
                protocol.accept_bytes(bytes)
 
166
        
 
167
        self.push_back = protocol.excess_buffer
 
168
 
 
169
    def _get_bytes(self, desired_count):
 
170
        # We ignore the desired_count because on sockets it's more efficient to
 
171
        # read 4k at a time.
 
172
        return self.socket.recv(4096)
 
173
    
293
174
    def terminate_due_to_error(self):
 
175
        """Called when an unhandled exception from the protocol occurs."""
294
176
        # TODO: This should log to a server log file, but no such thing
295
177
        # exists yet.  Andrew Bennetts 2006-09-29.
296
 
        osutils.until_no_eintr(self.socket.close)
 
178
        self.socket.close()
297
179
        self.finished = True
298
180
 
299
181
    def _write_out(self, bytes):
300
 
        tstart = osutils.timer_func()
301
 
        osutils.send_all(self.socket, bytes, self._report_activity)
302
 
        if 'hpss' in debug.debug_flags:
303
 
            thread_id = thread.get_ident()
304
 
            trace.mutter('%12s: [%s] %d bytes to the socket in %.3fs'
305
 
                         % ('wrote', thread_id, len(bytes),
306
 
                            osutils.timer_func() - tstart))
 
182
        self.socket.sendall(bytes)
307
183
 
308
184
 
309
185
class SmartServerPipeStreamMedium(SmartServerStreamMedium):
328
204
 
329
205
    def _serve_one_request_unguarded(self, protocol):
330
206
        while True:
331
 
            # We need to be careful not to read past the end of the current
332
 
            # request, or else the read from the pipe will block, so we use
333
 
            # protocol.next_read_size().
334
207
            bytes_to_read = protocol.next_read_size()
335
208
            if bytes_to_read == 0:
336
209
                # Finished serving this request.
337
 
                osutils.until_no_eintr(self._out.flush)
 
210
                self._out.flush()
338
211
                return
339
 
            bytes = self.read_bytes(bytes_to_read)
 
212
            bytes = self._get_bytes(bytes_to_read)
340
213
            if bytes == '':
341
214
                # Connection has been closed.
342
215
                self.finished = True
343
 
                osutils.until_no_eintr(self._out.flush)
 
216
                self._out.flush()
344
217
                return
345
218
            protocol.accept_bytes(bytes)
346
219
 
347
 
    def _read_bytes(self, desired_count):
348
 
        return osutils.until_no_eintr(self._in.read, desired_count)
 
220
    def _get_bytes(self, desired_count):
 
221
        return self._in.read(desired_count)
349
222
 
350
223
    def terminate_due_to_error(self):
351
224
        # TODO: This should log to a server log file, but no such thing
352
225
        # exists yet.  Andrew Bennetts 2006-09-29.
353
 
        osutils.until_no_eintr(self._out.close)
 
226
        self._out.close()
354
227
        self.finished = True
355
228
 
356
229
    def _write_out(self, bytes):
357
 
        osutils.until_no_eintr(self._out.write, bytes)
 
230
        self._out.write(bytes)
358
231
 
359
232
 
360
233
class SmartClientMediumRequest(object):
370
243
    request.finished_reading()
371
244
 
372
245
    It is up to the individual SmartClientMedium whether multiple concurrent
373
 
    requests can exist. See SmartClientMedium.get_request to obtain instances
374
 
    of SmartClientMediumRequest, and the concrete Medium you are using for
 
246
    requests can exist. See SmartClientMedium.get_request to obtain instances 
 
247
    of SmartClientMediumRequest, and the concrete Medium you are using for 
375
248
    details on concurrency and pipelining.
376
249
    """
377
250
 
386
259
    def accept_bytes(self, bytes):
387
260
        """Accept bytes for inclusion in this request.
388
261
 
389
 
        This method may not be called after finished_writing() has been
 
262
        This method may not be be called after finished_writing() has been
390
263
        called.  It depends upon the Medium whether or not the bytes will be
391
264
        immediately transmitted. Message based Mediums will tend to buffer the
392
265
        bytes until finished_writing() is called.
423
296
    def _finished_reading(self):
424
297
        """Helper for finished_reading.
425
298
 
426
 
        finished_reading checks the state of the request to determine if
 
299
        finished_reading checks the state of the request to determine if 
427
300
        finished_reading is allowed, and if it is hands off to _finished_reading
428
301
        to perform the action.
429
302
        """
443
316
    def _finished_writing(self):
444
317
        """Helper for finished_writing.
445
318
 
446
 
        finished_writing checks the state of the request to determine if
 
319
        finished_writing checks the state of the request to determine if 
447
320
        finished_writing is allowed, and if it is hands off to _finished_writing
448
321
        to perform the action.
449
322
        """
464
337
        return self._read_bytes(count)
465
338
 
466
339
    def _read_bytes(self, count):
467
 
        """Helper for SmartClientMediumRequest.read_bytes.
 
340
        """Helper for read_bytes.
468
341
 
469
342
        read_bytes checks the state of the request to determing if bytes
470
343
        should be read. After that it hands off to _read_bytes to do the
471
344
        actual read.
472
 
 
473
 
        By default this forwards to self._medium.read_bytes because we are
474
 
        operating on the medium's stream.
475
345
        """
476
 
        return self._medium.read_bytes(count)
 
346
        raise NotImplementedError(self._read_bytes)
477
347
 
478
348
    def read_line(self):
479
 
        line = self._read_line()
480
 
        if not line.endswith('\n'):
481
 
            # end of file encountered reading from server
482
 
            raise errors.ConnectionReset(
483
 
                "Unexpected end of message. Please check connectivity "
484
 
                "and permissions, and report a bug if problems persist.")
 
349
        """Read bytes from this request's response until a newline byte.
 
350
        
 
351
        This isn't particularly efficient, so should only be used when the
 
352
        expected size of the line is quite short.
 
353
 
 
354
        :returns: a string of bytes ending in a newline (byte 0x0A).
 
355
        """
 
356
        # XXX: this duplicates SmartClientRequestProtocolOne._recv_tuple
 
357
        line = ''
 
358
        while not line or line[-1] != '\n':
 
359
            new_char = self.read_bytes(1)
 
360
            line += new_char
 
361
            if new_char == '':
 
362
                raise errors.SmartProtocolError(
 
363
                    'unexpected end of file reading from server')
485
364
        return line
486
365
 
487
 
    def _read_line(self):
488
 
        """Helper for SmartClientMediumRequest.read_line.
489
 
 
490
 
        By default this forwards to self._medium._get_line because we are
491
 
        operating on the medium's stream.
492
 
        """
493
 
        return self._medium._get_line()
494
 
 
495
 
 
496
 
class _DebugCounter(object):
497
 
    """An object that counts the HPSS calls made to each client medium.
498
 
 
499
 
    When a medium is garbage-collected, or failing that when atexit functions
500
 
    are run, the total number of calls made on that medium are reported via
501
 
    trace.note.
502
 
    """
503
 
 
504
 
    def __init__(self):
505
 
        self.counts = weakref.WeakKeyDictionary()
506
 
        client._SmartClient.hooks.install_named_hook(
507
 
            'call', self.increment_call_count, 'hpss call counter')
508
 
        atexit.register(self.flush_all)
509
 
 
510
 
    def track(self, medium):
511
 
        """Start tracking calls made to a medium.
512
 
 
513
 
        This only keeps a weakref to the medium, so shouldn't affect the
514
 
        medium's lifetime.
515
 
        """
516
 
        medium_repr = repr(medium)
517
 
        # Add this medium to the WeakKeyDictionary
518
 
        self.counts[medium] = dict(count=0, vfs_count=0,
519
 
                                   medium_repr=medium_repr)
520
 
        # Weakref callbacks are fired in reverse order of their association
521
 
        # with the referenced object.  So we add a weakref *after* adding to
522
 
        # the WeakKeyDict so that we can report the value from it before the
523
 
        # entry is removed by the WeakKeyDict's own callback.
524
 
        ref = weakref.ref(medium, self.done)
525
 
 
526
 
    def increment_call_count(self, params):
527
 
        # Increment the count in the WeakKeyDictionary
528
 
        value = self.counts[params.medium]
529
 
        value['count'] += 1
530
 
        try:
531
 
            request_method = request.request_handlers.get(params.method)
532
 
        except KeyError:
533
 
            # A method we don't know about doesn't count as a VFS method.
534
 
            return
535
 
        if issubclass(request_method, vfs.VfsRequest):
536
 
            value['vfs_count'] += 1
537
 
 
538
 
    def done(self, ref):
539
 
        value = self.counts[ref]
540
 
        count, vfs_count, medium_repr = (
541
 
            value['count'], value['vfs_count'], value['medium_repr'])
542
 
        # In case this callback is invoked for the same ref twice (by the
543
 
        # weakref callback and by the atexit function), set the call count back
544
 
        # to 0 so this item won't be reported twice.
545
 
        value['count'] = 0
546
 
        value['vfs_count'] = 0
547
 
        if count != 0:
548
 
            trace.note('HPSS calls: %d (%d vfs) %s',
549
 
                       count, vfs_count, medium_repr)
550
 
 
551
 
    def flush_all(self):
552
 
        for ref in list(self.counts.keys()):
553
 
            self.done(ref)
554
 
 
555
 
_debug_counter = None
556
 
 
557
 
 
558
 
class SmartClientMedium(SmartMedium):
 
366
 
 
367
class SmartClientMedium(object):
559
368
    """Smart client is a medium for sending smart protocol requests over."""
560
369
 
561
 
    def __init__(self, base):
562
 
        super(SmartClientMedium, self).__init__()
563
 
        self.base = base
564
 
        self._protocol_version_error = None
565
 
        self._protocol_version = None
566
 
        self._done_hello = False
567
 
        # Be optimistic: we assume the remote end can accept new remote
568
 
        # requests until we get an error saying otherwise.
569
 
        # _remote_version_is_before tracks the bzr version the remote side
570
 
        # can be based on what we've seen so far.
571
 
        self._remote_version_is_before = None
572
 
        # Install debug hook function if debug flag is set.
573
 
        if 'hpss' in debug.debug_flags:
574
 
            global _debug_counter
575
 
            if _debug_counter is None:
576
 
                _debug_counter = _DebugCounter()
577
 
            _debug_counter.track(self)
578
 
 
579
 
    def _is_remote_before(self, version_tuple):
580
 
        """Is it possible the remote side supports RPCs for a given version?
581
 
 
582
 
        Typical use::
583
 
 
584
 
            needed_version = (1, 2)
585
 
            if medium._is_remote_before(needed_version):
586
 
                fallback_to_pre_1_2_rpc()
587
 
            else:
588
 
                try:
589
 
                    do_1_2_rpc()
590
 
                except UnknownSmartMethod:
591
 
                    medium._remember_remote_is_before(needed_version)
592
 
                    fallback_to_pre_1_2_rpc()
593
 
 
594
 
        :seealso: _remember_remote_is_before
595
 
        """
596
 
        if self._remote_version_is_before is None:
597
 
            # So far, the remote side seems to support everything
598
 
            return False
599
 
        return version_tuple >= self._remote_version_is_before
600
 
 
601
 
    def _remember_remote_is_before(self, version_tuple):
602
 
        """Tell this medium that the remote side is older the given version.
603
 
 
604
 
        :seealso: _is_remote_before
605
 
        """
606
 
        if (self._remote_version_is_before is not None and
607
 
            version_tuple > self._remote_version_is_before):
608
 
            # We have been told that the remote side is older than some version
609
 
            # which is newer than a previously supplied older-than version.
610
 
            # This indicates that some smart verb call is not guarded
611
 
            # appropriately (it should simply not have been tried).
612
 
            raise AssertionError(
613
 
                "_remember_remote_is_before(%r) called, but "
614
 
                "_remember_remote_is_before(%r) was called previously."
615
 
                % (version_tuple, self._remote_version_is_before))
616
 
        self._remote_version_is_before = version_tuple
617
 
 
618
 
    def protocol_version(self):
619
 
        """Find out if 'hello' smart request works."""
620
 
        if self._protocol_version_error is not None:
621
 
            raise self._protocol_version_error
622
 
        if not self._done_hello:
623
 
            try:
624
 
                medium_request = self.get_request()
625
 
                # Send a 'hello' request in protocol version one, for maximum
626
 
                # backwards compatibility.
627
 
                client_protocol = protocol.SmartClientRequestProtocolOne(medium_request)
628
 
                client_protocol.query_version()
629
 
                self._done_hello = True
630
 
            except errors.SmartProtocolError, e:
631
 
                # Cache the error, just like we would cache a successful
632
 
                # result.
633
 
                self._protocol_version_error = e
634
 
                raise
635
 
        return '2'
636
 
 
637
 
    def should_probe(self):
638
 
        """Should RemoteBzrDirFormat.probe_transport send a smart request on
639
 
        this medium?
640
 
 
641
 
        Some transports are unambiguously smart-only; there's no need to check
642
 
        if the transport is able to carry smart requests, because that's all
643
 
        it is for.  In those cases, this method should return False.
644
 
 
645
 
        But some HTTP transports can sometimes fail to carry smart requests,
646
 
        but still be usuable for accessing remote bzrdirs via plain file
647
 
        accesses.  So for those transports, their media should return True here
648
 
        so that RemoteBzrDirFormat can determine if it is appropriate for that
649
 
        transport.
650
 
        """
651
 
        return False
652
 
 
653
370
    def disconnect(self):
654
371
        """If this medium maintains a persistent connection, close it.
655
 
 
 
372
        
656
373
        The default implementation does nothing.
657
374
        """
658
 
 
659
 
    def remote_path_from_transport(self, transport):
660
 
        """Convert transport into a path suitable for using in a request.
661
 
 
662
 
        Note that the resulting remote path doesn't encode the host name or
663
 
        anything but path, so it is only safe to use it in requests sent over
664
 
        the medium from the matching transport.
665
 
        """
666
 
        medium_base = urlutils.join(self.base, '/')
667
 
        rel_url = urlutils.relative_url(medium_base, transport.base)
668
 
        return urllib.unquote(rel_url)
669
 
 
 
375
        
670
376
 
671
377
class SmartClientStreamMedium(SmartClientMedium):
672
378
    """Stream based medium common class.
677
383
    receive bytes.
678
384
    """
679
385
 
680
 
    def __init__(self, base):
681
 
        SmartClientMedium.__init__(self, base)
 
386
    def __init__(self):
682
387
        self._current_request = None
683
388
 
684
389
    def accept_bytes(self, bytes):
692
397
 
693
398
    def _flush(self):
694
399
        """Flush the output stream.
695
 
 
 
400
        
696
401
        This method is used by the SmartClientStreamMediumRequest to ensure that
697
402
        all data for a request is sent, to avoid long timeouts or deadlocks.
698
403
        """
706
411
        """
707
412
        return SmartClientStreamMediumRequest(self)
708
413
 
 
414
    def read_bytes(self, count):
 
415
        return self._read_bytes(count)
 
416
 
709
417
 
710
418
class SmartSimplePipesClientMedium(SmartClientStreamMedium):
711
419
    """A client medium using simple pipes.
712
 
 
 
420
    
713
421
    This client does not manage the pipes: it assumes they will always be open.
714
422
    """
715
423
 
716
 
    def __init__(self, readable_pipe, writeable_pipe, base):
717
 
        SmartClientStreamMedium.__init__(self, base)
 
424
    def __init__(self, readable_pipe, writeable_pipe):
 
425
        SmartClientStreamMedium.__init__(self)
718
426
        self._readable_pipe = readable_pipe
719
427
        self._writeable_pipe = writeable_pipe
720
428
 
721
429
    def _accept_bytes(self, bytes):
722
430
        """See SmartClientStreamMedium.accept_bytes."""
723
 
        osutils.until_no_eintr(self._writeable_pipe.write, bytes)
724
 
        self._report_activity(len(bytes), 'write')
 
431
        self._writeable_pipe.write(bytes)
725
432
 
726
433
    def _flush(self):
727
434
        """See SmartClientStreamMedium._flush()."""
728
 
        osutils.until_no_eintr(self._writeable_pipe.flush)
 
435
        self._writeable_pipe.flush()
729
436
 
730
437
    def _read_bytes(self, count):
731
438
        """See SmartClientStreamMedium._read_bytes."""
732
 
        bytes = osutils.until_no_eintr(self._readable_pipe.read, count)
733
 
        self._report_activity(len(bytes), 'read')
734
 
        return bytes
 
439
        return self._readable_pipe.read(count)
735
440
 
736
441
 
737
442
class SmartSSHClientMedium(SmartClientStreamMedium):
738
443
    """A client medium using SSH."""
739
 
 
 
444
    
740
445
    def __init__(self, host, port=None, username=None, password=None,
741
 
            base=None, vendor=None, bzr_remote_path=None):
 
446
            vendor=None):
742
447
        """Creates a client that will connect on the first use.
743
 
 
 
448
        
744
449
        :param vendor: An optional override for the ssh vendor to use. See
745
450
            bzrlib.transport.ssh for details on ssh vendors.
746
451
        """
 
452
        SmartClientStreamMedium.__init__(self)
747
453
        self._connected = False
748
454
        self._host = host
749
455
        self._password = password
750
456
        self._port = port
751
457
        self._username = username
752
 
        # for the benefit of progress making a short description of this
753
 
        # transport
754
 
        self._scheme = 'bzr+ssh'
755
 
        # SmartClientStreamMedium stores the repr of this object in its
756
 
        # _DebugCounter so we have to store all the values used in our repr
757
 
        # method before calling the super init.
758
 
        SmartClientStreamMedium.__init__(self, base)
759
458
        self._read_from = None
760
459
        self._ssh_connection = None
761
460
        self._vendor = vendor
762
461
        self._write_to = None
763
 
        self._bzr_remote_path = bzr_remote_path
764
 
 
765
 
    def __repr__(self):
766
 
        if self._port is None:
767
 
            maybe_port = ''
768
 
        else:
769
 
            maybe_port = ':%s' % self._port
770
 
        return "%s(%s://%s@%s%s/)" % (
771
 
            self.__class__.__name__,
772
 
            self._scheme,
773
 
            self._username,
774
 
            self._host,
775
 
            maybe_port)
776
462
 
777
463
    def _accept_bytes(self, bytes):
778
464
        """See SmartClientStreamMedium.accept_bytes."""
779
465
        self._ensure_connection()
780
 
        osutils.until_no_eintr(self._write_to.write, bytes)
781
 
        self._report_activity(len(bytes), 'write')
 
466
        self._write_to.write(bytes)
782
467
 
783
468
    def disconnect(self):
784
469
        """See SmartClientMedium.disconnect()."""
785
470
        if not self._connected:
786
471
            return
787
 
        osutils.until_no_eintr(self._read_from.close)
788
 
        osutils.until_no_eintr(self._write_to.close)
 
472
        self._read_from.close()
 
473
        self._write_to.close()
789
474
        self._ssh_connection.close()
790
475
        self._connected = False
791
476
 
793
478
        """Connect this medium if not already connected."""
794
479
        if self._connected:
795
480
            return
 
481
        executable = os.environ.get('BZR_REMOTE_PATH', 'bzr')
796
482
        if self._vendor is None:
797
483
            vendor = ssh._get_ssh_vendor()
798
484
        else:
799
485
            vendor = self._vendor
800
486
        self._ssh_connection = vendor.connect_ssh(self._username,
801
487
                self._password, self._host, self._port,
802
 
                command=[self._bzr_remote_path, 'serve', '--inet',
803
 
                         '--directory=/', '--allow-writes'])
 
488
                command=[executable, 'serve', '--inet', '--directory=/',
 
489
                         '--allow-writes'])
804
490
        self._read_from, self._write_to = \
805
491
            self._ssh_connection.get_filelike_channels()
806
492
        self._connected = True
813
499
        """See SmartClientStreamMedium.read_bytes."""
814
500
        if not self._connected:
815
501
            raise errors.MediumNotConnected(self)
816
 
        bytes_to_read = min(count, _MAX_READ_SIZE)
817
 
        bytes = osutils.until_no_eintr(self._read_from.read, bytes_to_read)
818
 
        self._report_activity(len(bytes), 'read')
819
 
        return bytes
820
 
 
821
 
 
822
 
# Port 4155 is the default port for bzr://, registered with IANA.
823
 
BZR_DEFAULT_INTERFACE = None
824
 
BZR_DEFAULT_PORT = 4155
 
502
        return self._read_from.read(count)
825
503
 
826
504
 
827
505
class SmartTCPClientMedium(SmartClientStreamMedium):
828
506
    """A client medium using TCP."""
829
 
 
830
 
    def __init__(self, host, port, base):
 
507
    
 
508
    def __init__(self, host, port):
831
509
        """Creates a client that will connect on the first use."""
832
 
        SmartClientStreamMedium.__init__(self, base)
 
510
        SmartClientStreamMedium.__init__(self)
833
511
        self._connected = False
834
512
        self._host = host
835
513
        self._port = port
838
516
    def _accept_bytes(self, bytes):
839
517
        """See SmartClientMedium.accept_bytes."""
840
518
        self._ensure_connection()
841
 
        osutils.send_all(self._socket, bytes, self._report_activity)
 
519
        self._socket.sendall(bytes)
842
520
 
843
521
    def disconnect(self):
844
522
        """See SmartClientMedium.disconnect()."""
845
523
        if not self._connected:
846
524
            return
847
 
        osutils.until_no_eintr(self._socket.close)
 
525
        self._socket.close()
848
526
        self._socket = None
849
527
        self._connected = False
850
528
 
852
530
        """Connect this medium if not already connected."""
853
531
        if self._connected:
854
532
            return
855
 
        if self._port is None:
856
 
            port = BZR_DEFAULT_PORT
857
 
        else:
858
 
            port = int(self._port)
859
 
        try:
860
 
            sockaddrs = socket.getaddrinfo(self._host, port, socket.AF_UNSPEC,
861
 
                socket.SOCK_STREAM, 0, 0)
862
 
        except socket.gaierror, (err_num, err_msg):
863
 
            raise errors.ConnectionError("failed to lookup %s:%d: %s" %
864
 
                    (self._host, port, err_msg))
865
 
        # Initialize err in case there are no addresses returned:
866
 
        err = socket.error("no address found for %s" % self._host)
867
 
        for (family, socktype, proto, canonname, sockaddr) in sockaddrs:
868
 
            try:
869
 
                self._socket = socket.socket(family, socktype, proto)
870
 
                self._socket.setsockopt(socket.IPPROTO_TCP,
871
 
                                        socket.TCP_NODELAY, 1)
872
 
                self._socket.connect(sockaddr)
873
 
            except socket.error, err:
874
 
                if self._socket is not None:
875
 
                    self._socket.close()
876
 
                self._socket = None
877
 
                continue
878
 
            break
879
 
        if self._socket is None:
880
 
            # socket errors either have a (string) or (errno, string) as their
881
 
            # args.
882
 
            if type(err.args) is str:
883
 
                err_msg = err.args
884
 
            else:
885
 
                err_msg = err.args[1]
 
533
        self._socket = socket.socket()
 
534
        self._socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
 
535
        result = self._socket.connect_ex((self._host, int(self._port)))
 
536
        if result:
886
537
            raise errors.ConnectionError("failed to connect to %s:%d: %s" %
887
 
                    (self._host, port, err_msg))
 
538
                    (self._host, self._port, os.strerror(result)))
888
539
        self._connected = True
889
540
 
890
541
    def _flush(self):
891
542
        """See SmartClientStreamMedium._flush().
892
 
 
893
 
        For TCP we do no flushing. We may want to turn off TCP_NODELAY and
 
543
        
 
544
        For TCP we do no flushing. We may want to turn off TCP_NODELAY and 
894
545
        add a means to do a flush, but that can be done in the future.
895
546
        """
896
547
 
898
549
        """See SmartClientMedium.read_bytes."""
899
550
        if not self._connected:
900
551
            raise errors.MediumNotConnected(self)
901
 
        return _read_bytes_from_socket(
902
 
            self._socket.recv, count, self._report_activity)
 
552
        return self._socket.recv(count)
903
553
 
904
554
 
905
555
class SmartClientStreamMediumRequest(SmartClientMediumRequest):
918
568
 
919
569
    def _accept_bytes(self, bytes):
920
570
        """See SmartClientMediumRequest._accept_bytes.
921
 
 
 
571
        
922
572
        This forwards to self._medium._accept_bytes because we are operating
923
573
        on the mediums stream.
924
574
        """
927
577
    def _finished_reading(self):
928
578
        """See SmartClientMediumRequest._finished_reading.
929
579
 
930
 
        This clears the _current_request on self._medium to allow a new
 
580
        This clears the _current_request on self._medium to allow a new 
931
581
        request to be created.
932
582
        """
933
 
        if self._medium._current_request is not self:
934
 
            raise AssertionError()
 
583
        assert self._medium._current_request is self
935
584
        self._medium._current_request = None
936
 
 
 
585
        
937
586
    def _finished_writing(self):
938
587
        """See SmartClientMediumRequest._finished_writing.
939
588
 
941
590
        """
942
591
        self._medium._flush()
943
592
 
944
 
 
945
 
def _read_bytes_from_socket(sock, desired_count, report_activity):
946
 
    # We ignore the desired_count because on sockets it's more efficient to
947
 
    # read large chunks (of _MAX_READ_SIZE bytes) at a time.
948
 
    try:
949
 
        bytes = osutils.until_no_eintr(sock, _MAX_READ_SIZE)
950
 
    except socket.error, e:
951
 
        if len(e.args) and e.args[0] in (errno.ECONNRESET, 10054):
952
 
            # The connection was closed by the other side.  Callers expect an
953
 
            # empty string to signal end-of-stream.
954
 
            bytes = ''
955
 
        else:
956
 
            raise
957
 
    else:
958
 
        report_activity(len(bytes), 'read')
959
 
    return bytes
 
593
    def _read_bytes(self, count):
 
594
        """See SmartClientMediumRequest._read_bytes.
 
595
        
 
596
        This forwards to self._medium._read_bytes because we are operating
 
597
        on the mediums stream.
 
598
        """
 
599
        return self._medium._read_bytes(count)
960
600