~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/protocol.py

  • Committer: Martin Pool
  • Date: 2010-01-29 14:09:05 UTC
  • mto: This revision was merged to the branch mainline in revision 4992.
  • Revision ID: mbp@sourcefrog.net-20100129140905-2uiarb6p8di1ywsr
Correction to url

from review: https://code.edge.launchpad.net/~mbp/bzr/doc/+merge/18250

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2010 Canonical Ltd
 
1
# Copyright (C) 2006, 2007, 2008, 2009 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
62
62
 
63
63
def _encode_tuple(args):
64
64
    """Encode the tuple args to a bytestream."""
65
 
    joined = '\x01'.join(args) + '\n'
66
 
    if type(joined) is unicode:
67
 
        # XXX: We should fix things so this never happens!  -AJB, 20100304
68
 
        mutter('response args contain unicode, should be only bytes: %r',
69
 
               joined)
70
 
        joined = joined.encode('ascii')
71
 
    return joined
 
65
    return '\x01'.join(args) + '\n'
72
66
 
73
67
 
74
68
class Requester(object):
654
648
        """Make a remote call with a readv array.
655
649
 
656
650
        The body is encoded with one line per readv offset pair. The numbers in
657
 
        each pair are separated by a comma, and no trailing \\n is emitted.
 
651
        each pair are separated by a comma, and no trailing \n is emitted.
658
652
        """
659
653
        if 'hpss' in debug.debug_flags:
660
654
            mutter('hpss call w/readv: %s', repr(args)[1:-1])
1231
1225
                    if first_chunk is None:
1232
1226
                        first_chunk = chunk
1233
1227
                    self._write_prefixed_body(chunk)
1234
 
                    self.flush()
1235
1228
                    if 'hpssdetail' in debug.debug_flags:
1236
1229
                        # Not worth timing separately, as _write_func is
1237
1230
                        # actually buffered
1332
1325
        """Make a remote call with a readv array.
1333
1326
 
1334
1327
        The body is encoded with one line per readv offset pair. The numbers in
1335
 
        each pair are separated by a comma, and no trailing \\n is emitted.
 
1328
        each pair are separated by a comma, and no trailing \n is emitted.
1336
1329
        """
1337
1330
        if 'hpss' in debug.debug_flags:
1338
1331
            mutter('hpss call w/readv: %s', repr(args)[1:-1])