-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbencode.py
313 lines (279 loc) · 6.8 KB
/
bencode.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
# Written by Petru Paler
# see LICENSE.txt for license information
from builtins import object
from typing import Sized
def decode_int(x, f: int) -> tuple:
f += 1
newf = x.index(b'e', f)
try:
n = int(x[f:newf])
except (OverflowError, ValueError):
n = int(x[f:newf])
if x[f:f + 1] == b'-':
if x[f + 1:f + 2] == b'0':
raise ValueError
elif x[f:f + 1] == b'0' and newf != f + 1:
raise ValueError
return n, newf + 1
def decode_string(x, f) -> tuple:
colon = x.index(b':', f)
try:
n = int(x[f:colon])
except (OverflowError, ValueError):
n = int(x[f:colon])
if x[f:f + 1] == b'0' and colon != f + 1:
raise ValueError
colon += 1
return x[colon:colon + n], colon + n
def decode_list(x, f) -> tuple:
r, f = [], f + 1
while x[f:f + 1] != b'e':
v, f = decode_func[x[f:f + 1]](x, f)
r.append(v)
return r, f + 1
def decode_dict(x, f) -> tuple:
r, f = {}, f + 1
lastkey = None
while x[f:f + 1] != b'e':
k, f = decode_string(x, f)
if lastkey is not None and lastkey >= k:
raise ValueError
lastkey = k
r[k], f = decode_func[x[f:f + 1]](x, f)
return r, f + 1
decode_func = {
b'l': decode_list,
b'd': decode_dict,
b'i': decode_int,
b'0': decode_string,
b'1': decode_string,
b'2': decode_string,
b'3': decode_string,
b'4': decode_string,
b'5': decode_string,
b'6': decode_string,
b'7': decode_string,
b'8': decode_string,
b'9': decode_string,
}
def bdecode(x: Sized):
try:
r, pos = decode_func[x[0:1]](x, 0)
except (IndexError, KeyError):
raise ValueError
if pos != len(x):
raise ValueError
return r
def test_bdecode() -> None:
try:
bdecode(b'0:0:')
assert 0
except ValueError:
pass
try:
bdecode(b'ie')
assert 0
except ValueError:
pass
try:
bdecode(b'i341foo382e')
assert 0
except ValueError:
pass
assert bdecode(b'i4e') == 4
assert bdecode(b'i0e') == 0
assert bdecode(b'i123456789e') == 123456789
assert bdecode(b'i-10e') == -10
try:
bdecode(b'i-0e')
assert 0
except ValueError:
pass
try:
bdecode(b'i123')
assert 0
except ValueError:
pass
try:
bdecode(b'')
assert 0
except ValueError:
pass
try:
bdecode(b'i6easd')
assert 0
except ValueError:
pass
try:
bdecode(b'35208734823ljdahflajhdf')
assert 0
except ValueError:
pass
try:
bdecode(b'2:abfdjslhfld')
assert 0
except ValueError:
pass
assert bdecode(b'0:') == b''
assert bdecode(b'3:abc') == b'abc'
assert bdecode(b'10:1234567890') == b'1234567890'
try:
bdecode(b'02:xy')
assert 0
except ValueError:
pass
try:
bdecode(b'l')
assert 0
except ValueError:
pass
assert bdecode(b'le') == []
try:
bdecode(b'leanfdldjfh')
assert 0
except ValueError:
pass
assert bdecode(b'l0:0:0:e') == [b'', b'', b'']
try:
bdecode(b'relwjhrlewjh')
assert 0
except ValueError:
pass
assert bdecode(b'li1ei2ei3ee') == [1, 2, 3]
assert bdecode(b'l3:asd2:xye') == [b'asd', b'xy']
assert bdecode(b'll5:Alice3:Bobeli2ei3eee') == [[b'Alice', b'Bob'], [2, 3]]
try:
bdecode(b'd')
assert 0
except ValueError:
pass
try:
bdecode(b'defoobar')
assert 0
except ValueError:
pass
assert bdecode(b'de') == {}
assert bdecode(b'd3:agei25e4:eyes4:bluee') == {b'age': 25, b'eyes': b'blue'}
assert bdecode(b'd8:spam.mp3d6:author5:Alice6:lengthi100000eee') == {b'spam.mp3': {b'author': b'Alice', b'length': 100000}}
try:
bdecode(b'd3:fooe')
assert 0
except ValueError:
pass
try:
bdecode(b'di1e0:e')
assert 0
except ValueError:
pass
try:
bdecode(b'd1:b0:1:a0:e')
assert 0
except ValueError:
pass
try:
bdecode(b'd1:a0:1:a0:e')
assert 0
except ValueError:
pass
try:
bdecode(b'i03e')
assert 0
except ValueError:
pass
try:
bdecode(b'l01:ae')
assert 0
except ValueError:
pass
try:
bdecode(b'9999:x')
assert 0
except ValueError:
pass
try:
bdecode(b'l0:')
assert 0
except ValueError:
pass
try:
bdecode(b'd0:0:')
assert 0
except ValueError:
pass
try:
bdecode(b'd0:')
assert 0
except ValueError:
pass
try:
bdecode(b'00:')
assert 0
except ValueError:
pass
try:
bdecode(b'l-3:e')
assert 0
except ValueError:
pass
try:
bdecode(b'i-03e')
assert 0
except ValueError:
pass
bdecode(b'd0:i3ee')
class Bencached(object):
__slots__ = ['bencoded']
def __init__(self, s) -> None:
self.bencoded = s
def encode_bencached(x, r) -> None:
r.append(x.bencoded)
def encode_int(x, r) -> None:
r.extend((b'i', b'%d' % x, b'e'))
def encode_string(x: Sized, r) -> None:
r.extend((b'%d' % len(x), b':', x))
def encode_list(x, r) -> None:
r.append(b'l')
for i in x:
encode_func[type(i)](i, r)
r.append(b'e')
def encode_dict(x, r) -> None:
r.append(b'd')
ilist = list(x.items())
ilist.sort()
for k, v in ilist:
r.extend((b'%d' % len(k), b':', k))
encode_func[type(v)](v, r)
r.append(b'e')
encode_func = {
type(Bencached(0)): encode_bencached,
bool: encode_int,
int: encode_int,
bytes: encode_string,
list: encode_list,
tuple: encode_list,
dict: encode_dict,
}
def bencode(x) -> bytes:
r = []
encode_func[type(x)](x, r)
return b''.join(r)
def test_bencode() -> None:
assert bencode(4) == b'i4e'
assert bencode(0) == b'i0e'
assert bencode(-10) == b'i-10e'
assert bencode(12345678901234567890) == b'i12345678901234567890e'
assert bencode(b'') == b'0:'
assert bencode(b'abc') == b'3:abc'
assert bencode(b'1234567890') == b'10:1234567890'
assert bencode([]) == b'le'
assert bencode([1, 2, 3]) == b'li1ei2ei3ee'
assert bencode([[b'Alice', b'Bob'], [2, 3]]) == b'll5:Alice3:Bobeli2ei3eee'
assert bencode({}) == b'de'
assert bencode({b'age': 25, b'eyes': b'blue'}) == b'd3:agei25e4:eyes4:bluee'
assert bencode({b'spam.mp3': {b'author': b'Alice', b'length': 100000}}) == b'd8:spam.mp3d6:author5:Alice6:lengthi100000eee'
assert bencode(Bencached(bencode(3))) == b'i3e'
try:
bencode({1: b'foo'})
except TypeError:
return
assert 0