/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: Breezy landing bot
  • Author(s): Colin Watson
  • Date: 2020-11-16 21:47:08 UTC
  • mfrom: (7521.1.1 remove-lp-workaround)
  • Revision ID: breezy.the.bot@gmail.com-20201116214708-jos209mgxi41oy15
Remove breezy.git workaround for bazaar.launchpad.net.

Merged from https://code.launchpad.net/~cjwatson/brz/remove-lp-workaround/+merge/393710

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