~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/protocol.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-17 18:13:57 UTC
  • mfrom: (5268.7.29 transport-segments)
  • Revision ID: pqm@pqm.ubuntu.com-20110817181357-y5q5eth1hk8bl3om
(jelmer) Allow specifying the colocated branch to use in the branch URL,
 and retrieving the branch name using ControlDir._get_selected_branch.
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

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