/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/util/_bencode_py.py

  • Committer: Martin
  • Date: 2017-06-11 01:12:29 UTC
  • mto: This revision was merged to the branch mainline in revision 6685.
  • Revision ID: gzlist@googlemail.com-20170611011229-somdjbalby8m7vlw
Make _chunks_to_lines pass for Python 3

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#
16
16
# Modifications copyright (C) 2008 Canonical Ltd
17
17
 
 
18
from __future__ import absolute_import
 
19
 
 
20
import sys
 
21
 
 
22
 
18
23
class BDecoder(object):
19
24
 
20
25
    def __init__(self, yield_tuples=False):
25
30
        """
26
31
        self.yield_tuples = yield_tuples
27
32
        decode_func = {}
28
 
        decode_func['l'] = self.decode_list
29
 
        decode_func['d'] = self.decode_dict
30
 
        decode_func['i'] = self.decode_int
31
 
        decode_func['0'] = self.decode_string
32
 
        decode_func['1'] = self.decode_string
33
 
        decode_func['2'] = self.decode_string
34
 
        decode_func['3'] = self.decode_string
35
 
        decode_func['4'] = self.decode_string
36
 
        decode_func['5'] = self.decode_string
37
 
        decode_func['6'] = self.decode_string
38
 
        decode_func['7'] = self.decode_string
39
 
        decode_func['8'] = self.decode_string
40
 
        decode_func['9'] = self.decode_string
 
33
        decode_func[b'l'] = self.decode_list
 
34
        decode_func[b'd'] = self.decode_dict
 
35
        decode_func[b'i'] = self.decode_int
 
36
        decode_func[b'0'] = self.decode_string
 
37
        decode_func[b'1'] = self.decode_string
 
38
        decode_func[b'2'] = self.decode_string
 
39
        decode_func[b'3'] = self.decode_string
 
40
        decode_func[b'4'] = self.decode_string
 
41
        decode_func[b'5'] = self.decode_string
 
42
        decode_func[b'6'] = self.decode_string
 
43
        decode_func[b'7'] = self.decode_string
 
44
        decode_func[b'8'] = self.decode_string
 
45
        decode_func[b'9'] = self.decode_string
41
46
        self.decode_func = decode_func
42
47
 
43
48
    def decode_int(self, x, f):
44
49
        f += 1
45
 
        newf = x.index('e', f)
46
 
        try:
47
 
            n = int(x[f:newf])
48
 
        except (OverflowError, ValueError):
49
 
            n = long(x[f:newf])
50
 
        if x[f] == '-':
51
 
            if x[f + 1] == '0':
 
50
        newf = x.index(b'e', f)
 
51
        n = int(x[f:newf])
 
52
        if x[f] == b'-':
 
53
            if x[f + 1] == b'0':
52
54
                raise ValueError
53
 
        elif x[f] == '0' and newf != f+1:
 
55
        elif x[f] == b'0' and newf != f+1:
54
56
            raise ValueError
55
57
        return (n, newf+1)
56
58
 
57
59
    def decode_string(self, x, f):
58
 
        colon = x.index(':', f)
59
 
        try:
60
 
            n = int(x[f:colon])
61
 
        except (OverflowError, ValueError):
62
 
            n = long(x[f:colon])
63
 
        if x[f] == '0' and colon != f+1:
 
60
        colon = x.index(b':', f)
 
61
        n = int(x[f:colon])
 
62
        if x[f] == b'0' and colon != f+1:
64
63
            raise ValueError
65
64
        colon += 1
66
65
        return (x[colon:colon+n], colon+n)
67
66
 
68
67
    def decode_list(self, x, f):
69
68
        r, f = [], f+1
70
 
        while x[f] != 'e':
 
69
        while x[f] != b'e':
71
70
            v, f = self.decode_func[x[f]](x, f)
72
71
            r.append(v)
73
72
        if self.yield_tuples:
77
76
    def decode_dict(self, x, f):
78
77
        r, f = {}, f+1
79
78
        lastkey = None
80
 
        while x[f] != 'e':
 
79
        while x[f] != b'e':
81
80
            k, f = self.decode_string(x, f)
82
81
            if lastkey >= k:
83
82
                raise ValueError
86
85
        return (r, f + 1)
87
86
 
88
87
    def bdecode(self, x):
89
 
        if type(x) != str:
 
88
        if not isinstance(x, bytes):
90
89
            raise TypeError
91
90
        try:
92
 
            r, l = self.decode_func[x[0]](x, 0)
93
 
        except (IndexError, KeyError, OverflowError), e:
94
 
            import sys
95
 
            raise ValueError, ValueError(str(e)), sys.exc_info()[2]
 
91
            r, l = self.decode_func[x[:1]](x, 0)
 
92
        except (IndexError, KeyError, OverflowError) as e:
 
93
            raise ValueError(str(e))
96
94
        if l != len(x):
97
95
            raise ValueError
98
96
        return r
105
103
bdecode_as_tuple = _tuple_decoder.bdecode
106
104
 
107
105
 
108
 
from types import StringType, IntType, LongType, DictType, ListType, TupleType
109
 
 
110
106
class Bencached(object):
111
107
    __slots__ = ['bencoded']
112
108
 
116
112
def encode_bencached(x,r):
117
113
    r.append(x.bencoded)
118
114
 
 
115
def encode_bool(x,r):
 
116
    encode_int(int(x), r)
 
117
 
119
118
def encode_int(x, r):
120
 
    r.extend(('i', str(x), 'e'))
 
119
    r.extend((b'i', int_to_bytes(x), b'e'))
121
120
 
122
121
def encode_string(x, r):
123
 
    r.extend((str(len(x)), ':', x))
 
122
    r.extend((int_to_bytes(len(x)), b':', x))
 
123
 
 
124
def encode_unicode(x, r):
 
125
    r.extend((int_to_bytes(len(x)), b':', x))
124
126
 
125
127
def encode_list(x, r):
126
 
    r.append('l')
 
128
    r.append(b'l')
127
129
    for i in x:
128
130
        encode_func[type(i)](i, r)
129
 
    r.append('e')
 
131
    r.append(b'e')
130
132
 
131
133
def encode_dict(x,r):
132
 
    r.append('d')
133
 
    ilist = x.items()
134
 
    ilist.sort()
 
134
    r.append(b'd')
 
135
    ilist = sorted(x.items())
135
136
    for k, v in ilist:
136
 
        r.extend((str(len(k)), ':', k))
 
137
        r.extend((int_to_bytes(len(k)), b':', k))
137
138
        encode_func[type(v)](v, r)
138
 
    r.append('e')
 
139
    r.append(b'e')
139
140
 
140
141
encode_func = {}
141
142
encode_func[type(Bencached(0))] = encode_bencached
142
 
encode_func[IntType] = encode_int
143
 
encode_func[LongType] = encode_int
144
 
encode_func[StringType] = encode_string
145
 
encode_func[ListType] = encode_list
146
 
encode_func[TupleType] = encode_list
147
 
encode_func[DictType] = encode_dict
148
 
 
149
 
try:
150
 
    from types import BooleanType
151
 
except ImportError:
152
 
    pass
 
143
encode_func[int] = encode_int
 
144
if sys.version_info < (3,):
 
145
    encode_func[long] = encode_int
 
146
    int_to_bytes = str
153
147
else:
154
 
    def encode_bool(x,r):
155
 
        encode_int(int(x), r)
156
 
    encode_func[BooleanType] = encode_bool
 
148
    int_to_bytes = lambda n: b"%d" % n
 
149
encode_func[bytes] = encode_string
 
150
encode_func[list] = encode_list
 
151
encode_func[tuple] = encode_list
 
152
encode_func[dict] = encode_dict
 
153
encode_func[bool] = encode_bool
157
154
 
158
 
from bzrlib._static_tuple_py import StaticTuple
 
155
from breezy._static_tuple_py import StaticTuple
159
156
encode_func[StaticTuple] = encode_list
160
157
try:
161
 
    from bzrlib._static_tuple_c import StaticTuple
 
158
    from breezy._static_tuple_c import StaticTuple
162
159
except ImportError:
163
160
    pass
164
161
else:
168
165
def bencode(x):
169
166
    r = []
170
167
    encode_func[type(x)](x, r)
171
 
    return ''.join(r)
 
168
    return b''.join(r)
172
169