31
26
self.yield_tuples = yield_tuples
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
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
46
41
self.decode_func = decode_func
48
43
def decode_int(self, x, f):
50
newf = x.index(b'e', f)
52
if x[f:f + 2] == b'-0':
54
elif x[f:f + 1] == b'0' and newf != f + 1:
45
newf = x.index('e', f)
48
except (OverflowError, ValueError):
53
elif x[f] == '0' and newf != f+1:
58
57
def decode_string(self, x, f):
59
colon = x.index(b':', f)
61
if x[f:f + 1] == b'0' and colon != f + 1:
58
colon = x.index(':', f)
61
except (OverflowError, ValueError):
63
if x[f] == '0' and colon != f+1:
64
return (x[colon:colon + n], colon + n)
66
return (x[colon:colon+n], colon+n)
66
68
def decode_list(self, x, f):
68
while x[f:f + 1] != b'e':
69
v, f = self.decode_func[x[f:f + 1]](x, f)
71
v, f = self.decode_func[x[f]](x, f)
71
73
if self.yield_tuples:
75
77
def decode_dict(self, x, f):
78
while x[f:f + 1] != b'e':
79
81
k, f = self.decode_string(x, f)
80
if lastkey is not None and lastkey >= k:
83
r[k], f = self.decode_func[x[f:f + 1]](x, f)
85
r[k], f = self.decode_func[x[f]](x, f)
86
88
def bdecode(self, x):
87
if not isinstance(x, bytes):
90
r, l = self.decode_func[x[:1]](x, 0)
91
except (IndexError, KeyError, OverflowError) as e:
92
raise ValueError(str(e))
92
r, l = self.decode_func[x[0]](x, 0)
93
except (IndexError, KeyError):
102
104
bdecode_as_tuple = _tuple_decoder.bdecode
107
from types import StringType, IntType, LongType, DictType, ListType, TupleType
105
109
class Bencached(object):
106
110
__slots__ = ['bencoded']
108
112
def __init__(self, s):
109
113
self.bencoded = s
112
def encode_bencached(x, r):
115
def encode_bencached(x,r):
113
116
r.append(x.bencoded)
116
def encode_bool(x, r):
117
encode_int(int(x), r)
120
118
def encode_int(x, r):
121
r.extend((b'i', int_to_bytes(x), b'e'))
119
r.extend(('i', str(x), 'e'))
124
121
def encode_string(x, r):
125
r.extend((int_to_bytes(len(x)), b':', x))
122
r.extend((str(len(x)), ':', x))
128
124
def encode_list(x, r):
131
127
encode_func[type(i)](i, r)
135
def encode_dict(x, r):
137
ilist = sorted(x.items())
130
def encode_dict(x,r):
138
134
for k, v in ilist:
139
r.extend((int_to_bytes(len(k)), b':', k))
135
r.extend((str(len(k)), ':', k))
140
136
encode_func[type(v)](v, r)
145
140
encode_func[type(Bencached(0))] = encode_bencached
146
encode_func[int] = encode_int
147
if sys.version_info < (3,):
148
encode_func[long] = encode_int
141
encode_func[IntType] = encode_int
142
encode_func[LongType] = encode_int
143
encode_func[StringType] = encode_string
144
encode_func[ListType] = encode_list
145
encode_func[TupleType] = encode_list
146
encode_func[DictType] = encode_dict
149
from types import BooleanType
153
encode_func[bytes] = encode_string
154
encode_func[list] = encode_list
155
encode_func[tuple] = encode_list
156
encode_func[dict] = encode_dict
157
encode_func[bool] = encode_bool
153
def encode_bool(x,r):
154
encode_int(int(x), r)
155
encode_func[BooleanType] = encode_bool
159
from breezy._static_tuple_py import StaticTuple
157
from bzrlib._static_tuple_py import StaticTuple
160
158
encode_func[StaticTuple] = encode_list
162
from breezy._static_tuple_c import StaticTuple
160
from bzrlib._static_tuple_c import StaticTuple
163
161
except ImportError: