/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 breezy/util/_bencode_py.py

  • Committer: Jelmer Vernooij
  • Date: 2017-06-08 23:30:31 UTC
  • mto: This revision was merged to the branch mainline in revision 6690.
  • Revision ID: jelmer@jelmer.uk-20170608233031-3qavls2o7a1pqllj
Update imports.

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
from __future__ import absolute_import
 
19
 
18
20
import sys
19
21
 
20
22
 
28
30
        """
29
31
        self.yield_tuples = yield_tuples
30
32
        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
 
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
44
46
        self.decode_func = decode_func
45
47
 
46
48
    def decode_int(self, x, f):
47
49
        f += 1
48
 
        newf = x.index(b'e', f)
 
50
        newf = x.index('e', f)
49
51
        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)
 
52
        if x[f] == '-':
 
53
            if x[f + 1] == '0':
 
54
                raise ValueError
 
55
        elif x[f] == '0' and newf != f+1:
 
56
            raise ValueError
 
57
        return (n, newf+1)
55
58
 
56
59
    def decode_string(self, x, f):
57
 
        colon = x.index(b':', f)
 
60
        colon = x.index(':', f)
58
61
        n = int(x[f:colon])
59
 
        if x[f:f + 1] == b'0' and colon != f + 1:
 
62
        if x[f] == '0' and colon != f+1:
60
63
            raise ValueError
61
64
        colon += 1
62
 
        return (x[colon:colon + n], colon + n)
 
65
        return (x[colon:colon+n], colon+n)
63
66
 
64
67
    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)
 
68
        r, f = [], f+1
 
69
        while x[f] != 'e':
 
70
            v, f = self.decode_func[x[f]](x, f)
68
71
            r.append(v)
69
72
        if self.yield_tuples:
70
73
            r = tuple(r)
71
74
        return (r, f + 1)
72
75
 
73
76
    def decode_dict(self, x, f):
74
 
        r, f = {}, f + 1
 
77
        r, f = {}, f+1
75
78
        lastkey = None
76
 
        while x[f:f + 1] != b'e':
 
79
        while x[f] != 'e':
77
80
            k, f = self.decode_string(x, f)
78
 
            if lastkey is not None and lastkey >= k:
 
81
            if lastkey >= k:
79
82
                raise ValueError
80
83
            lastkey = k
81
 
            r[k], f = self.decode_func[x[f:f + 1]](x, f)
 
84
            r[k], f = self.decode_func[x[f]](x, f)
82
85
        return (r, f + 1)
83
86
 
84
87
    def bdecode(self, x):
85
88
        if not isinstance(x, bytes):
86
89
            raise TypeError
87
90
        try:
88
 
            r, l = self.decode_func[x[:1]](x, 0)
 
91
            r, l = self.decode_func[x[0]](x, 0)
89
92
        except (IndexError, KeyError, OverflowError) as e:
90
93
            raise ValueError(str(e))
91
94
        if l != len(x):
106
109
    def __init__(self, s):
107
110
        self.bencoded = s
108
111
 
109
 
 
110
 
def encode_bencached(x, r):
 
112
def encode_bencached(x,r):
111
113
    r.append(x.bencoded)
112
114
 
113
 
 
114
 
def encode_bool(x, r):
 
115
def encode_bool(x,r):
115
116
    encode_int(int(x), r)
116
117
 
117
 
 
118
118
def encode_int(x, r):
119
 
    r.extend((b'i', int_to_bytes(x), b'e'))
120
 
 
 
119
    r.extend(('i', str(x), 'e'))
121
120
 
122
121
def encode_string(x, r):
123
 
    r.extend((int_to_bytes(len(x)), b':', x))
124
 
 
 
122
    r.extend((str(len(x)), ':', x))
125
123
 
126
124
def encode_list(x, r):
127
 
    r.append(b'l')
 
125
    r.append('l')
128
126
    for i in x:
129
127
        encode_func[type(i)](i, r)
130
 
    r.append(b'e')
131
 
 
132
 
 
133
 
def encode_dict(x, r):
134
 
    r.append(b'd')
 
128
    r.append('e')
 
129
 
 
130
def encode_dict(x,r):
 
131
    r.append('d')
135
132
    ilist = sorted(x.items())
136
133
    for k, v in ilist:
137
 
        r.extend((int_to_bytes(len(k)), b':', k))
 
134
        r.extend((str(len(k)), ':', k))
138
135
        encode_func[type(v)](v, r)
139
 
    r.append(b'e')
140
 
 
 
136
    r.append('e')
141
137
 
142
138
encode_func = {}
143
139
encode_func[type(Bencached(0))] = encode_bencached
144
140
encode_func[int] = encode_int
145
 
def int_to_bytes(n):
146
 
    return b'%d' % n
 
141
if sys.version_info < (3,):
 
142
    encode_func[long] = encode_int
147
143
encode_func[bytes] = encode_string
148
144
encode_func[list] = encode_list
149
145
encode_func[tuple] = encode_list
163
159
def bencode(x):
164
160
    r = []
165
161
    encode_func[type(x)](x, r)
166
 
    return b''.join(r)
 
162
    return ''.join(r)
 
163