1
# bencode structured encoding
3
# Written by Petru Paler
5
# Permission is hereby granted, free of charge, to any person
6
# obtaining a copy of this software and associated documentation files
7
# (the "Software"), to deal in the Software without restriction,
8
# including without limitation the rights to use, copy, modify, merge,
9
# publish, distribute, sublicense, and/or sell copies of the Software,
10
# and to permit persons to whom the Software is furnished to do so,
11
# subject to the following conditions:
13
# The above copyright notice and this permission notice shall be
14
# included in all copies or substantial portions of the Software.
16
# Modifications copyright (C) 2008 Canonical Ltd
21
class BDecoder(object):
23
def __init__(self, yield_tuples=False):
26
:param yield_tuples: if true, decode "l" elements as tuples rather than
29
self.yield_tuples = yield_tuples
31
decode_func[b'l'] = self.decode_list
32
decode_func[b'd'] = self.decode_dict
33
decode_func[b'i'] = self.decode_int
34
decode_func[b'0'] = self.decode_string
35
decode_func[b'1'] = self.decode_string
36
decode_func[b'2'] = self.decode_string
37
decode_func[b'3'] = self.decode_string
38
decode_func[b'4'] = self.decode_string
39
decode_func[b'5'] = self.decode_string
40
decode_func[b'6'] = self.decode_string
41
decode_func[b'7'] = self.decode_string
42
decode_func[b'8'] = self.decode_string
43
decode_func[b'9'] = self.decode_string
44
self.decode_func = decode_func
46
def decode_int(self, x, f):
48
newf = x.index(b'e', f)
50
if x[f:f + 2] == b'-0':
52
elif x[f:f + 1] == b'0' and newf != f + 1:
56
def decode_string(self, x, f):
57
colon = x.index(b':', f)
59
if x[f:f + 1] == b'0' and colon != f + 1:
62
return (x[colon:colon + n], colon + n)
64
def decode_list(self, x, f):
66
while x[f:f + 1] != b'e':
67
v, f = self.decode_func[x[f:f + 1]](x, f)
73
def decode_dict(self, x, f):
76
while x[f:f + 1] != b'e':
77
k, f = self.decode_string(x, f)
78
if lastkey is not None and lastkey >= k:
81
r[k], f = self.decode_func[x[f:f + 1]](x, f)
85
if not isinstance(x, bytes):
88
r, l = self.decode_func[x[:1]](x, 0)
89
except (IndexError, KeyError, OverflowError) as e:
90
raise ValueError(str(e))
97
bdecode = _decoder.bdecode
99
_tuple_decoder = BDecoder(True)
100
bdecode_as_tuple = _tuple_decoder.bdecode
103
class Bencached(object):
104
__slots__ = ['bencoded']
106
def __init__(self, s):
110
def encode_bencached(x, r):
114
def encode_bool(x, r):
115
encode_int(int(x), r)
118
def encode_int(x, r):
119
r.extend((b'i', int_to_bytes(x), b'e'))
122
def encode_string(x, r):
123
r.extend((int_to_bytes(len(x)), b':', x))
126
def encode_list(x, r):
129
encode_func[type(i)](i, r)
133
def encode_dict(x, r):
135
ilist = sorted(x.items())
137
r.extend((int_to_bytes(len(k)), b':', k))
138
encode_func[type(v)](v, r)
143
encode_func[type(Bencached(0))] = encode_bencached
144
encode_func[int] = encode_int
147
encode_func[bytes] = encode_string
148
encode_func[list] = encode_list
149
encode_func[tuple] = encode_list
150
encode_func[dict] = encode_dict
151
encode_func[bool] = encode_bool
153
from breezy._static_tuple_py import StaticTuple
154
encode_func[StaticTuple] = encode_list
156
from breezy._static_tuple_c import StaticTuple
160
encode_func[StaticTuple] = encode_list
165
encode_func[type(x)](x, r)