~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-01-15 04:49:48 UTC
  • mfrom: (3984.5.22 switch-r-183559)
  • Revision ID: pqm@pqm.ubuntu.com-20100115044948-yxz5m3vchxapbq22
(andrew) Add --revision option to 'bzr switch'. (#184559)

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""The 'medium' layer for the smart servers and clients.
18
18
 
24
24
bzrlib/transport/smart/__init__.py.
25
25
"""
26
26
 
 
27
import errno
27
28
import os
28
29
import socket
29
30
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
30
38
 
31
39
from bzrlib import (
 
40
    debug,
32
41
    errors,
33
 
    osutils,
34
42
    symbol_versioning,
35
 
    )
36
 
from bzrlib.smart.protocol import (
37
 
    REQUEST_VERSION_TWO,
38
 
    SmartServerRequestProtocolOne,
39
 
    SmartServerRequestProtocolTwo,
40
 
    )
 
43
    trace,
 
44
    ui,
 
45
    urlutils,
 
46
    )
 
47
from bzrlib.smart import client, protocol, request, vfs
41
48
from bzrlib.transport import ssh
42
 
 
43
 
 
44
 
class SmartServerStreamMedium(object):
 
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):
45
182
    """Handles smart commands coming over a stream.
46
183
 
47
184
    The stream may be a pipe connected to sshd, or a tcp socket, or an
50
187
    One instance is created for each connected client; it can serve multiple
51
188
    requests in the lifetime of the connection.
52
189
 
53
 
    The server passes requests through to an underlying backing transport, 
 
190
    The server passes requests through to an underlying backing transport,
54
191
    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.
55
197
    """
56
198
 
57
 
    def __init__(self, backing_transport):
 
199
    def __init__(self, backing_transport, root_client_path='/'):
58
200
        """Construct new server.
59
201
 
60
202
        :param backing_transport: Transport for the directory served.
61
203
        """
62
204
        # backing_transport could be passed to serve instead of __init__
63
205
        self.backing_transport = backing_transport
 
206
        self.root_client_path = root_client_path
64
207
        self.finished = False
 
208
        SmartMedium.__init__(self)
65
209
 
66
210
    def serve(self):
67
211
        """Serve requests until the client disconnects."""
85
229
 
86
230
        :returns: a SmartServerRequestProtocol.
87
231
        """
88
 
        # Identify the protocol version.
89
232
        bytes = self._get_line()
90
 
        if bytes.startswith(REQUEST_VERSION_TWO):
91
 
            protocol_class = SmartServerRequestProtocolTwo
92
 
            bytes = bytes[len(REQUEST_VERSION_TWO):]
93
 
        else:
94
 
            protocol_class = SmartServerRequestProtocolOne
95
 
        protocol = protocol_class(self.backing_transport, self._write_out)
96
 
        protocol.accept_bytes(bytes)
 
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)
97
237
        return protocol
98
238
 
99
239
    def _serve_one_request(self, protocol):
100
240
        """Read one request from input, process, send back a response.
101
 
        
 
241
 
102
242
        :param protocol: a SmartServerRequestProtocol.
103
243
        """
104
244
        try:
112
252
        """Called when an unhandled exception from the protocol occurs."""
113
253
        raise NotImplementedError(self.terminate_due_to_error)
114
254
 
115
 
    def _get_bytes(self, desired_count):
 
255
    def _read_bytes(self, desired_count):
116
256
        """Get some bytes from the medium.
117
257
 
118
258
        :param desired_count: number of bytes we want to read.
119
259
        """
120
 
        raise NotImplementedError(self._get_bytes)
121
 
 
122
 
    def _get_line(self):
123
 
        """Read bytes from this request's response until a newline byte.
124
 
        
125
 
        This isn't particularly efficient, so should only be used when the
126
 
        expected size of the line is quite short.
127
 
 
128
 
        :returns: a string of bytes ending in a newline (byte 0x0A).
129
 
        """
130
 
        # XXX: this duplicates SmartClientRequestProtocolOne._recv_tuple
131
 
        line = ''
132
 
        while not line or line[-1] != '\n':
133
 
            new_char = self._get_bytes(1)
134
 
            line += new_char
135
 
            if new_char == '':
136
 
                # Ran out of bytes before receiving a complete line.
137
 
                break
138
 
        return line
 
260
        raise NotImplementedError(self._read_bytes)
139
261
 
140
262
 
141
263
class SmartServerSocketStreamMedium(SmartServerStreamMedium):
142
264
 
143
 
    def __init__(self, sock, backing_transport):
 
265
    def __init__(self, sock, backing_transport, root_client_path='/'):
144
266
        """Constructor.
145
267
 
146
268
        :param sock: the socket the server will read from.  It will be put
147
269
            into blocking mode.
148
270
        """
149
 
        SmartServerStreamMedium.__init__(self, backing_transport)
150
 
        self.push_back = ''
 
271
        SmartServerStreamMedium.__init__(
 
272
            self, backing_transport, root_client_path=root_client_path)
151
273
        sock.setblocking(True)
152
274
        self.socket = sock
153
275
 
154
276
    def _serve_one_request_unguarded(self, protocol):
155
277
        while protocol.next_read_size():
156
 
            if self.push_back:
157
 
                protocol.accept_bytes(self.push_back)
158
 
                self.push_back = ''
159
 
            else:
160
 
                bytes = self._get_bytes(4096)
161
 
                if bytes == '':
162
 
                    self.finished = True
163
 
                    return
164
 
                protocol.accept_bytes(bytes)
165
 
        
166
 
        self.push_back = protocol.excess_buffer
167
 
 
168
 
    def _get_bytes(self, desired_count):
169
 
        # We ignore the desired_count because on sockets it's more efficient to
170
 
        # read 4k at a time.
171
 
        return self.socket.recv(4096)
172
 
    
 
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
 
173
293
    def terminate_due_to_error(self):
174
 
        """Called when an unhandled exception from the protocol occurs."""
175
294
        # TODO: This should log to a server log file, but no such thing
176
295
        # exists yet.  Andrew Bennetts 2006-09-29.
177
 
        self.socket.close()
 
296
        osutils.until_no_eintr(self.socket.close)
178
297
        self.finished = True
179
298
 
180
299
    def _write_out(self, bytes):
181
 
        osutils.send_all(self.socket, 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
307
 
183
308
 
184
309
class SmartServerPipeStreamMedium(SmartServerStreamMedium):
203
328
 
204
329
    def _serve_one_request_unguarded(self, protocol):
205
330
        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().
206
334
            bytes_to_read = protocol.next_read_size()
207
335
            if bytes_to_read == 0:
208
336
                # Finished serving this request.
209
 
                self._out.flush()
 
337
                osutils.until_no_eintr(self._out.flush)
210
338
                return
211
 
            bytes = self._get_bytes(bytes_to_read)
 
339
            bytes = self.read_bytes(bytes_to_read)
212
340
            if bytes == '':
213
341
                # Connection has been closed.
214
342
                self.finished = True
215
 
                self._out.flush()
 
343
                osutils.until_no_eintr(self._out.flush)
216
344
                return
217
345
            protocol.accept_bytes(bytes)
218
346
 
219
 
    def _get_bytes(self, desired_count):
220
 
        return self._in.read(desired_count)
 
347
    def _read_bytes(self, desired_count):
 
348
        return osutils.until_no_eintr(self._in.read, desired_count)
221
349
 
222
350
    def terminate_due_to_error(self):
223
351
        # TODO: This should log to a server log file, but no such thing
224
352
        # exists yet.  Andrew Bennetts 2006-09-29.
225
 
        self._out.close()
 
353
        osutils.until_no_eintr(self._out.close)
226
354
        self.finished = True
227
355
 
228
356
    def _write_out(self, bytes):
229
 
        self._out.write(bytes)
 
357
        osutils.until_no_eintr(self._out.write, bytes)
230
358
 
231
359
 
232
360
class SmartClientMediumRequest(object):
242
370
    request.finished_reading()
243
371
 
244
372
    It is up to the individual SmartClientMedium whether multiple concurrent
245
 
    requests can exist. See SmartClientMedium.get_request to obtain instances 
246
 
    of SmartClientMediumRequest, and the concrete Medium you are using for 
 
373
    requests can exist. See SmartClientMedium.get_request to obtain instances
 
374
    of SmartClientMediumRequest, and the concrete Medium you are using for
247
375
    details on concurrency and pipelining.
248
376
    """
249
377
 
258
386
    def accept_bytes(self, bytes):
259
387
        """Accept bytes for inclusion in this request.
260
388
 
261
 
        This method may not be be called after finished_writing() has been
 
389
        This method may not be called after finished_writing() has been
262
390
        called.  It depends upon the Medium whether or not the bytes will be
263
391
        immediately transmitted. Message based Mediums will tend to buffer the
264
392
        bytes until finished_writing() is called.
295
423
    def _finished_reading(self):
296
424
        """Helper for finished_reading.
297
425
 
298
 
        finished_reading checks the state of the request to determine if 
 
426
        finished_reading checks the state of the request to determine if
299
427
        finished_reading is allowed, and if it is hands off to _finished_reading
300
428
        to perform the action.
301
429
        """
315
443
    def _finished_writing(self):
316
444
        """Helper for finished_writing.
317
445
 
318
 
        finished_writing checks the state of the request to determine if 
 
446
        finished_writing checks the state of the request to determine if
319
447
        finished_writing is allowed, and if it is hands off to _finished_writing
320
448
        to perform the action.
321
449
        """
336
464
        return self._read_bytes(count)
337
465
 
338
466
    def _read_bytes(self, count):
339
 
        """Helper for read_bytes.
 
467
        """Helper for SmartClientMediumRequest.read_bytes.
340
468
 
341
469
        read_bytes checks the state of the request to determing if bytes
342
470
        should be read. After that it hands off to _read_bytes to do the
343
471
        actual read.
 
472
 
 
473
        By default this forwards to self._medium.read_bytes because we are
 
474
        operating on the medium's stream.
344
475
        """
345
 
        raise NotImplementedError(self._read_bytes)
 
476
        return self._medium.read_bytes(count)
346
477
 
347
478
    def read_line(self):
348
 
        """Read bytes from this request's response until a newline byte.
349
 
        
350
 
        This isn't particularly efficient, so should only be used when the
351
 
        expected size of the line is quite short.
352
 
 
353
 
        :returns: a string of bytes ending in a newline (byte 0x0A).
354
 
        """
355
 
        # XXX: this duplicates SmartClientRequestProtocolOne._recv_tuple
356
 
        line = ''
357
 
        while not line or line[-1] != '\n':
358
 
            new_char = self.read_bytes(1)
359
 
            line += new_char
360
 
            if new_char == '':
361
 
                # end of file encountered reading from server
362
 
                raise errors.ConnectionReset(
363
 
                    "please check connectivity and permissions",
364
 
                    "(and try -Dhpss if further diagnosis is required)")
 
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.")
365
485
        return line
366
486
 
367
 
 
368
 
class SmartClientMedium(object):
 
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):
369
559
    """Smart client is a medium for sending smart protocol requests over."""
370
560
 
 
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
 
371
653
    def disconnect(self):
372
654
        """If this medium maintains a persistent connection, close it.
373
 
        
 
655
 
374
656
        The default implementation does nothing.
375
657
        """
376
 
        
 
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
 
377
670
 
378
671
class SmartClientStreamMedium(SmartClientMedium):
379
672
    """Stream based medium common class.
384
677
    receive bytes.
385
678
    """
386
679
 
387
 
    def __init__(self):
 
680
    def __init__(self, base):
 
681
        SmartClientMedium.__init__(self, base)
388
682
        self._current_request = None
389
 
        # Be optimistic: we assume the remote end can accept new remote
390
 
        # requests until we get an error saying otherwise.  (1.2 adds some
391
 
        # requests that send bodies, which confuses older servers.)
392
 
        self._remote_is_at_least_1_2 = True
393
683
 
394
684
    def accept_bytes(self, bytes):
395
685
        self._accept_bytes(bytes)
402
692
 
403
693
    def _flush(self):
404
694
        """Flush the output stream.
405
 
        
 
695
 
406
696
        This method is used by the SmartClientStreamMediumRequest to ensure that
407
697
        all data for a request is sent, to avoid long timeouts or deadlocks.
408
698
        """
416
706
        """
417
707
        return SmartClientStreamMediumRequest(self)
418
708
 
419
 
    def read_bytes(self, count):
420
 
        return self._read_bytes(count)
421
 
 
422
709
 
423
710
class SmartSimplePipesClientMedium(SmartClientStreamMedium):
424
711
    """A client medium using simple pipes.
425
 
    
 
712
 
426
713
    This client does not manage the pipes: it assumes they will always be open.
427
714
    """
428
715
 
429
 
    def __init__(self, readable_pipe, writeable_pipe):
430
 
        SmartClientStreamMedium.__init__(self)
 
716
    def __init__(self, readable_pipe, writeable_pipe, base):
 
717
        SmartClientStreamMedium.__init__(self, base)
431
718
        self._readable_pipe = readable_pipe
432
719
        self._writeable_pipe = writeable_pipe
433
720
 
434
721
    def _accept_bytes(self, bytes):
435
722
        """See SmartClientStreamMedium.accept_bytes."""
436
 
        self._writeable_pipe.write(bytes)
 
723
        osutils.until_no_eintr(self._writeable_pipe.write, bytes)
 
724
        self._report_activity(len(bytes), 'write')
437
725
 
438
726
    def _flush(self):
439
727
        """See SmartClientStreamMedium._flush()."""
440
 
        self._writeable_pipe.flush()
 
728
        osutils.until_no_eintr(self._writeable_pipe.flush)
441
729
 
442
730
    def _read_bytes(self, count):
443
731
        """See SmartClientStreamMedium._read_bytes."""
444
 
        return self._readable_pipe.read(count)
 
732
        bytes = osutils.until_no_eintr(self._readable_pipe.read, count)
 
733
        self._report_activity(len(bytes), 'read')
 
734
        return bytes
445
735
 
446
736
 
447
737
class SmartSSHClientMedium(SmartClientStreamMedium):
448
738
    """A client medium using SSH."""
449
 
    
 
739
 
450
740
    def __init__(self, host, port=None, username=None, password=None,
451
 
            vendor=None, bzr_remote_path=None):
 
741
            base=None, vendor=None, bzr_remote_path=None):
452
742
        """Creates a client that will connect on the first use.
453
 
        
 
743
 
454
744
        :param vendor: An optional override for the ssh vendor to use. See
455
745
            bzrlib.transport.ssh for details on ssh vendors.
456
746
        """
457
 
        SmartClientStreamMedium.__init__(self)
458
747
        self._connected = False
459
748
        self._host = host
460
749
        self._password = password
461
750
        self._port = port
462
751
        self._username = username
 
752
        # SmartClientStreamMedium stores the repr of this object in its
 
753
        # _DebugCounter so we have to store all the values used in our repr
 
754
        # method before calling the super init.
 
755
        SmartClientStreamMedium.__init__(self, base)
463
756
        self._read_from = None
464
757
        self._ssh_connection = None
465
758
        self._vendor = vendor
466
759
        self._write_to = None
467
760
        self._bzr_remote_path = bzr_remote_path
468
 
        if self._bzr_remote_path is None:
469
 
            symbol_versioning.warn(
470
 
                'bzr_remote_path is required as of bzr 0.92',
471
 
                DeprecationWarning, stacklevel=2)
472
 
            self._bzr_remote_path = os.environ.get('BZR_REMOTE_PATH', 'bzr')
 
761
        # for the benefit of progress making a short description of this
 
762
        # transport
 
763
        self._scheme = 'bzr+ssh'
 
764
 
 
765
    def __repr__(self):
 
766
        return "%s(connected=%r, username=%r, host=%r, port=%r)" % (
 
767
            self.__class__.__name__,
 
768
            self._connected,
 
769
            self._username,
 
770
            self._host,
 
771
            self._port)
473
772
 
474
773
    def _accept_bytes(self, bytes):
475
774
        """See SmartClientStreamMedium.accept_bytes."""
476
775
        self._ensure_connection()
477
 
        self._write_to.write(bytes)
 
776
        osutils.until_no_eintr(self._write_to.write, bytes)
 
777
        self._report_activity(len(bytes), 'write')
478
778
 
479
779
    def disconnect(self):
480
780
        """See SmartClientMedium.disconnect()."""
481
781
        if not self._connected:
482
782
            return
483
 
        self._read_from.close()
484
 
        self._write_to.close()
 
783
        osutils.until_no_eintr(self._read_from.close)
 
784
        osutils.until_no_eintr(self._write_to.close)
485
785
        self._ssh_connection.close()
486
786
        self._connected = False
487
787
 
509
809
        """See SmartClientStreamMedium.read_bytes."""
510
810
        if not self._connected:
511
811
            raise errors.MediumNotConnected(self)
512
 
        return self._read_from.read(count)
 
812
        bytes_to_read = min(count, _MAX_READ_SIZE)
 
813
        bytes = osutils.until_no_eintr(self._read_from.read, bytes_to_read)
 
814
        self._report_activity(len(bytes), 'read')
 
815
        return bytes
513
816
 
514
817
 
515
818
# Port 4155 is the default port for bzr://, registered with IANA.
516
 
BZR_DEFAULT_INTERFACE = '0.0.0.0'
 
819
BZR_DEFAULT_INTERFACE = None
517
820
BZR_DEFAULT_PORT = 4155
518
821
 
519
822
 
520
823
class SmartTCPClientMedium(SmartClientStreamMedium):
521
824
    """A client medium using TCP."""
522
 
    
523
 
    def __init__(self, host, port):
 
825
 
 
826
    def __init__(self, host, port, base):
524
827
        """Creates a client that will connect on the first use."""
525
 
        SmartClientStreamMedium.__init__(self)
 
828
        SmartClientStreamMedium.__init__(self, base)
526
829
        self._connected = False
527
830
        self._host = host
528
831
        self._port = port
531
834
    def _accept_bytes(self, bytes):
532
835
        """See SmartClientMedium.accept_bytes."""
533
836
        self._ensure_connection()
534
 
        osutils.send_all(self._socket, bytes)
 
837
        osutils.send_all(self._socket, bytes, self._report_activity)
535
838
 
536
839
    def disconnect(self):
537
840
        """See SmartClientMedium.disconnect()."""
538
841
        if not self._connected:
539
842
            return
540
 
        self._socket.close()
 
843
        osutils.until_no_eintr(self._socket.close)
541
844
        self._socket = None
542
845
        self._connected = False
543
846
 
545
848
        """Connect this medium if not already connected."""
546
849
        if self._connected:
547
850
            return
548
 
        self._socket = socket.socket()
549
 
        self._socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
550
851
        if self._port is None:
551
852
            port = BZR_DEFAULT_PORT
552
853
        else:
553
854
            port = int(self._port)
554
855
        try:
555
 
            self._socket.connect((self._host, port))
556
 
        except socket.error, err:
 
856
            sockaddrs = socket.getaddrinfo(self._host, port, socket.AF_UNSPEC,
 
857
                socket.SOCK_STREAM, 0, 0)
 
858
        except socket.gaierror, (err_num, err_msg):
 
859
            raise errors.ConnectionError("failed to lookup %s:%d: %s" %
 
860
                    (self._host, port, err_msg))
 
861
        # Initialize err in case there are no addresses returned:
 
862
        err = socket.error("no address found for %s" % self._host)
 
863
        for (family, socktype, proto, canonname, sockaddr) in sockaddrs:
 
864
            try:
 
865
                self._socket = socket.socket(family, socktype, proto)
 
866
                self._socket.setsockopt(socket.IPPROTO_TCP,
 
867
                                        socket.TCP_NODELAY, 1)
 
868
                self._socket.connect(sockaddr)
 
869
            except socket.error, err:
 
870
                if self._socket is not None:
 
871
                    self._socket.close()
 
872
                self._socket = None
 
873
                continue
 
874
            break
 
875
        if self._socket is None:
557
876
            # socket errors either have a (string) or (errno, string) as their
558
877
            # args.
559
878
            if type(err.args) is str:
566
885
 
567
886
    def _flush(self):
568
887
        """See SmartClientStreamMedium._flush().
569
 
        
570
 
        For TCP we do no flushing. We may want to turn off TCP_NODELAY and 
 
888
 
 
889
        For TCP we do no flushing. We may want to turn off TCP_NODELAY and
571
890
        add a means to do a flush, but that can be done in the future.
572
891
        """
573
892
 
575
894
        """See SmartClientMedium.read_bytes."""
576
895
        if not self._connected:
577
896
            raise errors.MediumNotConnected(self)
578
 
        return self._socket.recv(count)
 
897
        return _read_bytes_from_socket(
 
898
            self._socket.recv, count, self._report_activity)
579
899
 
580
900
 
581
901
class SmartClientStreamMediumRequest(SmartClientMediumRequest):
594
914
 
595
915
    def _accept_bytes(self, bytes):
596
916
        """See SmartClientMediumRequest._accept_bytes.
597
 
        
 
917
 
598
918
        This forwards to self._medium._accept_bytes because we are operating
599
919
        on the mediums stream.
600
920
        """
603
923
    def _finished_reading(self):
604
924
        """See SmartClientMediumRequest._finished_reading.
605
925
 
606
 
        This clears the _current_request on self._medium to allow a new 
 
926
        This clears the _current_request on self._medium to allow a new
607
927
        request to be created.
608
928
        """
609
 
        assert self._medium._current_request is self
 
929
        if self._medium._current_request is not self:
 
930
            raise AssertionError()
610
931
        self._medium._current_request = None
611
 
        
 
932
 
612
933
    def _finished_writing(self):
613
934
        """See SmartClientMediumRequest._finished_writing.
614
935
 
616
937
        """
617
938
        self._medium._flush()
618
939
 
619
 
    def _read_bytes(self, count):
620
 
        """See SmartClientMediumRequest._read_bytes.
621
 
        
622
 
        This forwards to self._medium._read_bytes because we are operating
623
 
        on the mediums stream.
624
 
        """
625
 
        return self._medium._read_bytes(count)
 
940
 
 
941
def _read_bytes_from_socket(sock, desired_count, report_activity):
 
942
    # We ignore the desired_count because on sockets it's more efficient to
 
943
    # read large chunks (of _MAX_READ_SIZE bytes) at a time.
 
944
    try:
 
945
        bytes = osutils.until_no_eintr(sock, _MAX_READ_SIZE)
 
946
    except socket.error, e:
 
947
        if len(e.args) and e.args[0] in (errno.ECONNRESET, 10054):
 
948
            # The connection was closed by the other side.  Callers expect an
 
949
            # empty string to signal end-of-stream.
 
950
            bytes = ''
 
951
        else:
 
952
            raise
 
953
    else:
 
954
        report_activity(len(bytes), 'read')
 
955
    return bytes
626
956