~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/util/bencode.py

  • Committer: Andrew Bennetts
  • Date: 2009-01-07 02:18:47 UTC
  • mto: This revision was merged to the branch mainline in revision 3971.
  • Revision ID: andrew.bennetts@canonical.com-20090107021847-iugqd7lq1lrtcebd
Fix encoding of bools, provide a bdecode_tuple function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
# connection with the Software or the use or other dealings in the
23
23
# Software.
24
24
 
25
 
def decode_int(x, f):
26
 
    f += 1
27
 
    newf = x.index('e', f)
28
 
    try:
29
 
        n = int(x[f:newf])
30
 
    except (OverflowError, ValueError):
31
 
        n = long(x[f:newf])
32
 
    if x[f] == '-':
33
 
        if x[f + 1] == '0':
34
 
            raise ValueError
35
 
    elif x[f] == '0' and newf != f+1:
36
 
        raise ValueError
37
 
    return (n, newf+1)
38
 
 
39
 
def decode_string(x, f):
40
 
    colon = x.index(':', f)
41
 
    try:
42
 
        n = int(x[f:colon])
43
 
    except (OverflowError, ValueError):
44
 
        n = long(x[f:colon])
45
 
    if x[f] == '0' and colon != f+1:
46
 
        raise ValueError
47
 
    colon += 1
48
 
    return (x[colon:colon+n], colon+n)
49
 
 
50
 
def decode_list(x, f):
51
 
    r, f = [], f+1
52
 
    while x[f] != 'e':
53
 
        v, f = decode_func[x[f]](x, f)
54
 
        r.append(v)
55
 
    return (r, f + 1)
56
 
 
57
 
def decode_dict(x, f):
58
 
    r, f = {}, f+1
59
 
    lastkey = None
60
 
    while x[f] != 'e':
61
 
        k, f = decode_string(x, f)
62
 
        if lastkey >= k:
63
 
            raise ValueError
64
 
        lastkey = k
65
 
        r[k], f = decode_func[x[f]](x, f)
66
 
    return (r, f + 1)
67
 
 
68
 
decode_func = {}
69
 
decode_func['l'] = decode_list
70
 
decode_func['d'] = decode_dict
71
 
decode_func['i'] = decode_int
72
 
decode_func['0'] = decode_string
73
 
decode_func['1'] = decode_string
74
 
decode_func['2'] = decode_string
75
 
decode_func['3'] = decode_string
76
 
decode_func['4'] = decode_string
77
 
decode_func['5'] = decode_string
78
 
decode_func['6'] = decode_string
79
 
decode_func['7'] = decode_string
80
 
decode_func['8'] = decode_string
81
 
decode_func['9'] = decode_string
82
 
 
83
 
def bdecode(x):
84
 
    try:
85
 
        r, l = decode_func[x[0]](x, 0)
86
 
    except (IndexError, KeyError):
87
 
        raise ValueError
88
 
    if l != len(x):
89
 
        raise ValueError
90
 
    return r
 
25
class BDecoder(object):
 
26
 
 
27
    def __init__(self, yield_tuples=False):
 
28
        """Constructor.
 
29
 
 
30
        :param yield_tuples: if true, decode "l" elements as tuples rather than
 
31
            lists.
 
32
        """
 
33
        self.yield_tuples = yield_tuples
 
34
        decode_func = {}
 
35
        decode_func['l'] = self.decode_list
 
36
        decode_func['d'] = self.decode_dict
 
37
        decode_func['i'] = self.decode_int
 
38
        decode_func['0'] = self.decode_string
 
39
        decode_func['1'] = self.decode_string
 
40
        decode_func['2'] = self.decode_string
 
41
        decode_func['3'] = self.decode_string
 
42
        decode_func['4'] = self.decode_string
 
43
        decode_func['5'] = self.decode_string
 
44
        decode_func['6'] = self.decode_string
 
45
        decode_func['7'] = self.decode_string
 
46
        decode_func['8'] = self.decode_string
 
47
        decode_func['9'] = self.decode_string
 
48
        self.decode_func = decode_func
 
49
 
 
50
    def decode_int(self, x, f):
 
51
        f += 1
 
52
        newf = x.index('e', f)
 
53
        try:
 
54
            n = int(x[f:newf])
 
55
        except (OverflowError, ValueError):
 
56
            n = long(x[f:newf])
 
57
        if x[f] == '-':
 
58
            if x[f + 1] == '0':
 
59
                raise ValueError
 
60
        elif x[f] == '0' and newf != f+1:
 
61
            raise ValueError
 
62
        return (n, newf+1)
 
63
 
 
64
    def decode_string(self, x, f):
 
65
        colon = x.index(':', f)
 
66
        try:
 
67
            n = int(x[f:colon])
 
68
        except (OverflowError, ValueError):
 
69
            n = long(x[f:colon])
 
70
        if x[f] == '0' and colon != f+1:
 
71
            raise ValueError
 
72
        colon += 1
 
73
        return (x[colon:colon+n], colon+n)
 
74
 
 
75
    def decode_list(self, x, f):
 
76
        r, f = [], f+1
 
77
        while x[f] != 'e':
 
78
            v, f = self.decode_func[x[f]](x, f)
 
79
            r.append(v)
 
80
        if self.yield_tuples:
 
81
            r = tuple(r)
 
82
        return (r, f + 1)
 
83
 
 
84
    def decode_dict(self, x, f):
 
85
        r, f = {}, f+1
 
86
        lastkey = None
 
87
        while x[f] != 'e':
 
88
            k, f = self.decode_string(x, f)
 
89
            if lastkey >= k:
 
90
                raise ValueError
 
91
            lastkey = k
 
92
            r[k], f = self.decode_func[x[f]](x, f)
 
93
        return (r, f + 1)
 
94
 
 
95
    def bdecode(self, x):
 
96
        try:
 
97
            r, l = self.decode_func[x[0]](x, 0)
 
98
        except (IndexError, KeyError):
 
99
            raise ValueError
 
100
        if l != len(x):
 
101
            raise ValueError
 
102
        return r
 
103
 
 
104
 
 
105
_decoder = BDecoder()
 
106
bdecode = _decoder.bdecode
 
107
 
 
108
_tuple_decoder = BDecoder(True)
 
109
bdecode_tuple = _tuple_decoder.bdecode
91
110
 
92
111
 
93
112
from types import StringType, IntType, LongType, DictType, ListType, TupleType
133
152
 
134
153
try:
135
154
    from types import BooleanType
136
 
    encode_func[BooleanType] = encode_int
137
155
except ImportError:
138
156
    pass
 
157
else:
 
158
    def encode_bool(x,r):
 
159
        encode_int(int(x), r)
 
160
    encode_func[BooleanType] = encode_bool
 
161
 
139
162
 
140
163
def bencode(x):
141
164
    r = []