/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: 2020-04-05 19:11:34 UTC
  • mto: (7490.7.16 work)
  • mto: This revision was merged to the branch mainline in revision 7501.
  • Revision ID: jelmer@jelmer.uk-20200405191134-0aebh8ikiwygxma5
Populate the .gitignore file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# bencode structured encoding
 
2
#
 
3
# Written by Petru Paler
 
4
#
 
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:
 
12
#
 
13
# The above copyright notice and this permission notice shall be
 
14
# included in all copies or substantial portions of the Software.
 
15
#
 
16
# Modifications copyright (C) 2008 Canonical Ltd
 
17
 
 
18
from __future__ import absolute_import
 
19
 
 
20
import sys
 
21
 
 
22
 
 
23
class BDecoder(object):
 
24
 
 
25
    def __init__(self, yield_tuples=False):
 
26
        """Constructor.
 
27
 
 
28
        :param yield_tuples: if true, decode "l" elements as tuples rather than
 
29
            lists.
 
30
        """
 
31
        self.yield_tuples = yield_tuples
 
32
        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
 
46
        self.decode_func = decode_func
 
47
 
 
48
    def decode_int(self, x, f):
 
49
        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:
 
55
            raise ValueError
 
56
        return (n, newf + 1)
 
57
 
 
58
    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:
 
62
            raise ValueError
 
63
        colon += 1
 
64
        return (x[colon:colon + n], colon + n)
 
65
 
 
66
    def decode_list(self, x, f):
 
67
        r, f = [], f + 1
 
68
        while x[f:f + 1] != b'e':
 
69
            v, f = self.decode_func[x[f:f + 1]](x, f)
 
70
            r.append(v)
 
71
        if self.yield_tuples:
 
72
            r = tuple(r)
 
73
        return (r, f + 1)
 
74
 
 
75
    def decode_dict(self, x, f):
 
76
        r, f = {}, f + 1
 
77
        lastkey = None
 
78
        while x[f:f + 1] != b'e':
 
79
            k, f = self.decode_string(x, f)
 
80
            if lastkey is not None and lastkey >= k:
 
81
                raise ValueError
 
82
            lastkey = k
 
83
            r[k], f = self.decode_func[x[f:f + 1]](x, f)
 
84
        return (r, f + 1)
 
85
 
 
86
    def bdecode(self, x):
 
87
        if not isinstance(x, bytes):
 
88
            raise TypeError
 
89
        try:
 
90
            r, l = self.decode_func[x[:1]](x, 0)
 
91
        except (IndexError, KeyError, OverflowError) as e:
 
92
            raise ValueError(str(e))
 
93
        if l != len(x):
 
94
            raise ValueError
 
95
        return r
 
96
 
 
97
 
 
98
_decoder = BDecoder()
 
99
bdecode = _decoder.bdecode
 
100
 
 
101
_tuple_decoder = BDecoder(True)
 
102
bdecode_as_tuple = _tuple_decoder.bdecode
 
103
 
 
104
 
 
105
class Bencached(object):
 
106
    __slots__ = ['bencoded']
 
107
 
 
108
    def __init__(self, s):
 
109
        self.bencoded = s
 
110
 
 
111
 
 
112
def encode_bencached(x, r):
 
113
    r.append(x.bencoded)
 
114
 
 
115
 
 
116
def encode_bool(x, r):
 
117
    encode_int(int(x), r)
 
118
 
 
119
 
 
120
def encode_int(x, r):
 
121
    r.extend((b'i', int_to_bytes(x), b'e'))
 
122
 
 
123
 
 
124
def encode_string(x, r):
 
125
    r.extend((int_to_bytes(len(x)), b':', x))
 
126
 
 
127
 
 
128
def encode_list(x, r):
 
129
    r.append(b'l')
 
130
    for i in x:
 
131
        encode_func[type(i)](i, r)
 
132
    r.append(b'e')
 
133
 
 
134
 
 
135
def encode_dict(x, r):
 
136
    r.append(b'd')
 
137
    ilist = sorted(x.items())
 
138
    for k, v in ilist:
 
139
        r.extend((int_to_bytes(len(k)), b':', k))
 
140
        encode_func[type(v)](v, r)
 
141
    r.append(b'e')
 
142
 
 
143
 
 
144
encode_func = {}
 
145
encode_func[type(Bencached(0))] = encode_bencached
 
146
encode_func[int] = encode_int
 
147
if sys.version_info < (3,):
 
148
    encode_func[long] = encode_int
 
149
    int_to_bytes = str
 
150
else:
 
151
    def int_to_bytes(n):
 
152
        return b'%d' % n
 
153
encode_func[bytes] = encode_string
 
154
encode_func[list] = encode_list
 
155
encode_func[tuple] = encode_list
 
156
encode_func[dict] = encode_dict
 
157
encode_func[bool] = encode_bool
 
158
 
 
159
from breezy._static_tuple_py import StaticTuple
 
160
encode_func[StaticTuple] = encode_list
 
161
try:
 
162
    from breezy._static_tuple_c import StaticTuple
 
163
except ImportError:
 
164
    pass
 
165
else:
 
166
    encode_func[StaticTuple] = encode_list
 
167
 
 
168
 
 
169
def bencode(x):
 
170
    r = []
 
171
    encode_func[type(x)](x, r)
 
172
    return b''.join(r)