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
class BDecoder(object):
20
def __init__(self, yield_tuples=False):
23
:param yield_tuples: if true, decode "l" elements as tuples rather than
26
self.yield_tuples = yield_tuples
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
41
self.decode_func = decode_func
43
def decode_int(self, x, f):
45
newf = x.index('e', f)
48
except (OverflowError, ValueError):
53
elif x[f] == '0' and newf != f+1:
57
def decode_string(self, x, f):
58
colon = x.index(':', f)
61
except (OverflowError, ValueError):
63
if x[f] == '0' and colon != f+1:
66
return (x[colon:colon+n], colon+n)
68
def decode_list(self, x, f):
71
v, f = self.decode_func[x[f]](x, f)
77
def decode_dict(self, x, f):
81
k, f = self.decode_string(x, f)
85
r[k], f = self.decode_func[x[f]](x, f)
92
r, l = self.decode_func[x[0]](x, 0)
93
except (IndexError, KeyError, OverflowError), e:
95
raise ValueError, ValueError(str(e)), sys.exc_info()[2]
101
_decoder = BDecoder()
102
bdecode = _decoder.bdecode
104
_tuple_decoder = BDecoder(True)
105
bdecode_as_tuple = _tuple_decoder.bdecode
108
from types import StringType, IntType, LongType, DictType, ListType, TupleType
110
class Bencached(object):
111
__slots__ = ['bencoded']
113
def __init__(self, s):
116
def encode_bencached(x,r):
119
def encode_int(x, r):
120
r.extend(('i', str(x), 'e'))
122
def encode_string(x, r):
123
r.extend((str(len(x)), ':', x))
125
def encode_list(x, r):
128
encode_func[type(i)](i, r)
131
def encode_dict(x,r):
136
r.extend((str(len(k)), ':', k))
137
encode_func[type(v)](v, r)
141
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
150
from types import BooleanType
154
def encode_bool(x,r):
155
encode_int(int(x), r)
156
encode_func[BooleanType] = encode_bool
158
from bzrlib._static_tuple_py import StaticTuple
159
encode_func[StaticTuple] = encode_list
161
from bzrlib._static_tuple_c import StaticTuple
165
encode_func[StaticTuple] = encode_list
170
encode_func[type(x)](x, r)