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
18
from __future__ import absolute_import
23
class BDecoder(object):
25
def __init__(self, yield_tuples=False):
28
:param yield_tuples: if true, decode "l" elements as tuples rather than
31
self.yield_tuples = yield_tuples
33
decode_func['l'] = self.decode_list
34
decode_func['d'] = self.decode_dict
35
decode_func['i'] = self.decode_int
36
decode_func['0'] = self.decode_string
37
decode_func['1'] = self.decode_string
38
decode_func['2'] = self.decode_string
39
decode_func['3'] = self.decode_string
40
decode_func['4'] = self.decode_string
41
decode_func['5'] = self.decode_string
42
decode_func['6'] = self.decode_string
43
decode_func['7'] = self.decode_string
44
decode_func['8'] = self.decode_string
45
decode_func['9'] = self.decode_string
46
self.decode_func = decode_func
48
def decode_int(self, x, f):
50
newf = x.index('e', f)
55
elif x[f] == '0' and newf != f+1:
59
def decode_string(self, x, f):
60
colon = x.index(':', f)
62
if x[f] == '0' and colon != f+1:
65
return (x[colon:colon+n], colon+n)
67
def decode_list(self, x, f):
70
v, f = self.decode_func[x[f]](x, f)
76
def decode_dict(self, x, f):
80
k, f = self.decode_string(x, f)
84
r[k], f = self.decode_func[x[f]](x, f)
88
if not isinstance(x, bytes):
91
r, l = self.decode_func[x[0]](x, 0)
92
except (IndexError, KeyError, OverflowError) as e:
93
raise ValueError(str(e))
100
bdecode = _decoder.bdecode
102
_tuple_decoder = BDecoder(True)
103
bdecode_as_tuple = _tuple_decoder.bdecode
106
class Bencached(object):
107
__slots__ = ['bencoded']
109
def __init__(self, s):
112
def encode_bencached(x,r):
115
def encode_bool(x,r):
116
encode_int(int(x), r)
118
def encode_int(x, r):
119
r.extend(('i', str(x), 'e'))
121
def encode_string(x, r):
122
r.extend((str(len(x)), ':', x))
124
def encode_list(x, r):
127
encode_func[type(i)](i, r)
130
def encode_dict(x,r):
132
ilist = sorted(x.items())
134
r.extend((str(len(k)), ':', k))
135
encode_func[type(v)](v, r)
139
encode_func[type(Bencached(0))] = encode_bencached
140
encode_func[int] = encode_int
141
if sys.version_info < (3,):
142
encode_func[long] = encode_int
143
encode_func[bytes] = encode_string
144
encode_func[list] = encode_list
145
encode_func[tuple] = encode_list
146
encode_func[dict] = encode_dict
147
encode_func[bool] = encode_bool
149
from breezy._static_tuple_py import StaticTuple
150
encode_func[StaticTuple] = encode_list
152
from breezy._static_tuple_c import StaticTuple
156
encode_func[StaticTuple] = encode_list
161
encode_func[type(x)](x, r)