/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: Richard Wilbur
  • Date: 2016-02-04 19:07:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6618.
  • Revision ID: richard.wilbur@gmail.com-20160204190728-p0zvfii6zase0fw7
Update COPYING.txt from the original http://www.gnu.org/licenses/gpl-2.0.txt  (Only differences were in whitespace.)  Thanks to Petr Stodulka for pointing out the discrepancy.

Show diffs side-by-side

added added

removed removed

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