/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/util/_bencode_py.py

  • Committer: Marius Kruger
  • Date: 2010-07-10 21:28:56 UTC
  • mto: (5384.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5385.
  • Revision ID: marius.kruger@enerweb.co.za-20100710212856-uq4ji3go0u5se7hx
* Update documentation
* add NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#
16
16
# Modifications copyright (C) 2008 Canonical Ltd
17
17
 
18
 
import sys
19
 
 
20
 
 
21
18
class BDecoder(object):
22
19
 
23
20
    def __init__(self, yield_tuples=False):
28
25
        """
29
26
        self.yield_tuples = yield_tuples
30
27
        decode_func = {}
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
 
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
44
41
        self.decode_func = decode_func
45
42
 
46
43
    def decode_int(self, x, f):
47
44
        f += 1
48
 
        newf = x.index(b'e', f)
49
 
        n = int(x[f:newf])
50
 
        if x[f:f + 2] == b'-0':
51
 
            raise ValueError
52
 
        elif x[f:f + 1] == b'0' and newf != f + 1:
53
 
            raise ValueError
54
 
        return (n, newf + 1)
 
45
        newf = x.index('e', f)
 
46
        try:
 
47
            n = int(x[f:newf])
 
48
        except (OverflowError, ValueError):
 
49
            n = long(x[f:newf])
 
50
        if x[f] == '-':
 
51
            if x[f + 1] == '0':
 
52
                raise ValueError
 
53
        elif x[f] == '0' and newf != f+1:
 
54
            raise ValueError
 
55
        return (n, newf+1)
55
56
 
56
57
    def decode_string(self, x, f):
57
 
        colon = x.index(b':', f)
58
 
        n = int(x[f:colon])
59
 
        if x[f:f + 1] == b'0' and colon != f + 1:
 
58
        colon = x.index(':', f)
 
59
        try:
 
60
            n = int(x[f:colon])
 
61
        except (OverflowError, ValueError):
 
62
            n = long(x[f:colon])
 
63
        if x[f] == '0' and colon != f+1:
60
64
            raise ValueError
61
65
        colon += 1
62
 
        return (x[colon:colon + n], colon + n)
 
66
        return (x[colon:colon+n], colon+n)
63
67
 
64
68
    def decode_list(self, x, f):
65
 
        r, f = [], f + 1
66
 
        while x[f:f + 1] != b'e':
67
 
            v, f = self.decode_func[x[f:f + 1]](x, f)
 
69
        r, f = [], f+1
 
70
        while x[f] != 'e':
 
71
            v, f = self.decode_func[x[f]](x, f)
68
72
            r.append(v)
69
73
        if self.yield_tuples:
70
74
            r = tuple(r)
71
75
        return (r, f + 1)
72
76
 
73
77
    def decode_dict(self, x, f):
74
 
        r, f = {}, f + 1
 
78
        r, f = {}, f+1
75
79
        lastkey = None
76
 
        while x[f:f + 1] != b'e':
 
80
        while x[f] != 'e':
77
81
            k, f = self.decode_string(x, f)
78
 
            if lastkey is not None and lastkey >= k:
 
82
            if lastkey >= k:
79
83
                raise ValueError
80
84
            lastkey = k
81
 
            r[k], f = self.decode_func[x[f:f + 1]](x, f)
 
85
            r[k], f = self.decode_func[x[f]](x, f)
82
86
        return (r, f + 1)
83
87
 
84
88
    def bdecode(self, x):
85
 
        if not isinstance(x, bytes):
 
89
        if type(x) != str:
86
90
            raise TypeError
87
91
        try:
88
 
            r, l = self.decode_func[x[:1]](x, 0)
89
 
        except (IndexError, KeyError, OverflowError) as e:
90
 
            raise ValueError(str(e))
 
92
            r, l = self.decode_func[x[0]](x, 0)
 
93
        except (IndexError, KeyError, OverflowError), e:
 
94
            import sys
 
95
            raise ValueError, ValueError(str(e)), sys.exc_info()[2]
91
96
        if l != len(x):
92
97
            raise ValueError
93
98
        return r
100
105
bdecode_as_tuple = _tuple_decoder.bdecode
101
106
 
102
107
 
 
108
from types import StringType, IntType, LongType, DictType, ListType, TupleType
 
109
 
103
110
class Bencached(object):
104
111
    __slots__ = ['bencoded']
105
112
 
106
113
    def __init__(self, s):
107
114
        self.bencoded = s
108
115
 
109
 
 
110
 
def encode_bencached(x, r):
 
116
def encode_bencached(x,r):
111
117
    r.append(x.bencoded)
112
118
 
113
 
 
114
 
def encode_bool(x, r):
115
 
    encode_int(int(x), r)
116
 
 
117
 
 
118
119
def encode_int(x, r):
119
 
    r.extend((b'i', int_to_bytes(x), b'e'))
120
 
 
 
120
    r.extend(('i', str(x), 'e'))
121
121
 
122
122
def encode_string(x, r):
123
 
    r.extend((int_to_bytes(len(x)), b':', x))
124
 
 
 
123
    r.extend((str(len(x)), ':', x))
125
124
 
126
125
def encode_list(x, r):
127
 
    r.append(b'l')
 
126
    r.append('l')
128
127
    for i in x:
129
128
        encode_func[type(i)](i, r)
130
 
    r.append(b'e')
131
 
 
132
 
 
133
 
def encode_dict(x, r):
134
 
    r.append(b'd')
135
 
    ilist = sorted(x.items())
 
129
    r.append('e')
 
130
 
 
131
def encode_dict(x,r):
 
132
    r.append('d')
 
133
    ilist = x.items()
 
134
    ilist.sort()
136
135
    for k, v in ilist:
137
 
        r.extend((int_to_bytes(len(k)), b':', k))
 
136
        r.extend((str(len(k)), ':', k))
138
137
        encode_func[type(v)](v, r)
139
 
    r.append(b'e')
140
 
 
 
138
    r.append('e')
141
139
 
142
140
encode_func = {}
143
141
encode_func[type(Bencached(0))] = encode_bencached
144
 
encode_func[int] = encode_int
145
 
def int_to_bytes(n):
146
 
    return b'%d' % n
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
152
 
 
153
 
from breezy._static_tuple_py import StaticTuple
 
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
 
148
 
 
149
try:
 
150
    from types import BooleanType
 
151
except ImportError:
 
152
    pass
 
153
else:
 
154
    def encode_bool(x,r):
 
155
        encode_int(int(x), r)
 
156
    encode_func[BooleanType] = encode_bool
 
157
 
 
158
from bzrlib._static_tuple_py import StaticTuple
154
159
encode_func[StaticTuple] = encode_list
155
160
try:
156
 
    from breezy._static_tuple_c import StaticTuple
 
161
    from bzrlib._static_tuple_c import StaticTuple
157
162
except ImportError:
158
163
    pass
159
164
else:
163
168
def bencode(x):
164
169
    r = []
165
170
    encode_func[type(x)](x, r)
166
 
    return b''.join(r)
 
171
    return ''.join(r)
 
172