-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcodegen_helpers.py
162 lines (143 loc) · 5.89 KB
/
codegen_helpers.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# -*- coding: utf-8 -*-
from __future__ import print_function
def genSingleEncode(spec, cValue, unresolved_domain):
buffer = []
type = spec.resolveDomain(unresolved_domain)
if type == 'shortstr':
buffer.append("buffer << %s.to_s.bytesize.chr" % (cValue,))
buffer.append("buffer << %s.to_s" % (cValue,))
elif type == 'longstr':
buffer.append("buffer << [%s.to_s.bytesize].pack(PACK_UINT32)" % (cValue,))
buffer.append("buffer << %s.to_s" % (cValue,))
elif type == 'octet':
buffer.append("buffer << [%s].pack(PACK_CHAR)" % (cValue,))
elif type == 'short':
buffer.append("buffer << [%s].pack(PACK_UINT16)" % (cValue,))
elif type == 'long':
buffer.append("buffer << [%s].pack(PACK_UINT32)" % (cValue,))
elif type == 'longlong':
buffer.append("buffer << AMQ::Pack.pack_uint64_big_endian(%s)" % (cValue,))
elif type == 'timestamp':
buffer.append("buffer << AMQ::Pack.pack_uint64_big_endian(%s)" % (cValue,))
elif type == 'bit':
raise "Can't encode bit in genSingleEncode"
elif type == 'table':
buffer.append("buffer << AMQ::Protocol::Table.encode(%s)" % (cValue,))
else:
raise "Illegal domain in genSingleEncode: {0}".format(type)
return buffer
def genSingleDecode(spec, field):
cLvalue = field.ruby_name
unresolved_domain = field.domain
if cLvalue == "known_hosts":
import sys
print(field, field.ignored, file = sys.stderr)
type = spec.resolveDomain(unresolved_domain)
buffer = []
if type == 'shortstr':
buffer.append("length = data[offset, 1].unpack(PACK_CHAR).first")
buffer.append("offset += 1")
buffer.append("%s = data[offset, length]" % (cLvalue,))
buffer.append("offset += length")
elif type == 'longstr':
buffer.append("length = data[offset, 4].unpack(PACK_UINT32).first")
buffer.append("offset += 4")
buffer.append("%s = data[offset, length]" % (cLvalue,))
buffer.append("offset += length")
elif type == 'octet':
buffer.append("%s = data[offset, 1].unpack(PACK_CHAR).first" % (cLvalue,))
buffer.append("offset += 1")
elif type == 'short':
buffer.append("%s = data[offset, 2].unpack(PACK_UINT16).first" % (cLvalue,))
buffer.append("offset += 2")
elif type == 'long':
buffer.append("%s = data[offset, 4].unpack(PACK_UINT32).first" % (cLvalue,))
buffer.append("offset += 4")
elif type == 'longlong':
buffer.append("%s = AMQ::Pack.unpack_uint64_big_endian(data[offset, 8]).first" % (cLvalue,))
buffer.append("offset += 8")
elif type == 'timestamp':
buffer.append("%s = data[offset, 8].unpack(PACK_UINT64_BE).first" % (cLvalue,))
buffer.append("offset += 8")
elif type == 'bit':
raise "Can't decode bit in genSingleDecode"
elif type == 'table':
buffer.append("table_length = Table.length(data[offset, 4])")
buffer.append("%s = Table.decode(data[offset, table_length + 4])" % (cLvalue,))
buffer.append("offset += table_length + 4")
else:
raise StandardError("Illegal domain '{0}' in genSingleDecode".format(type))
return buffer
def genSingleSimpleDecode(spec, field):
cLvalue = field.ruby_name
unresolved_domain = field.domain
if cLvalue == "known_hosts":
import sys
print >> sys.stderr, field, field.ignored
type = spec.resolveDomain(unresolved_domain)
buffer = []
if type == 'shortstr':
buffer.append("data.to_s")
elif type == 'longstr':
buffer.append("data.to_s")
elif type == 'octet':
buffer.append("data.unpack(PACK_INT8).first")
elif type == 'short':
buffer.append("data.unpack(PACK_UINT16).first")
elif type == 'long':
buffer.append("data.unpack(PACK_UINT32).first")
elif type == 'longlong':
buffer.append("AMQ::Pack.unpack_uint64_big_endian(data).first")
elif type == 'timestamp':
buffer.append("Time.at(data.unpack(PACK_UINT64_BE).last)")
elif type == 'bit':
raise "Can't decode bit in genSingleDecode"
elif type == 'table':
buffer.append("Table.decode(data)")
else:
raise StandardError("Illegal domain '" + type + "' in genSingleSimpleDecode")
return buffer
def genEncodeMethodDefinition(spec, m):
def finishBits():
if bit_index is not None:
buffer.append("buffer << [bit_buffer].pack(PACK_CHAR)")
bit_index = None
buffer = []
for f in m.arguments:
if spec.resolveDomain(f.domain) == 'bit':
if bit_index is None:
bit_index = 0
buffer.append("bit_buffer = 0")
if bit_index >= 8:
finishBits()
buffer.append("bit_buffer = 0")
bit_index = 0
buffer.append("bit_buffer = bit_buffer | (1 << %d) if %s" % (bit_index, f.ruby_name))
bit_index = bit_index + 1
else:
finishBits()
bit_index = None
buffer += genSingleEncode(spec, f.ruby_name, f.domain)
finishBits()
return buffer
def genDecodeMethodDefinition(spec, m):
buffer = []
bitindex = None
for f in m.arguments:
if spec.resolveDomain(f.domain) == 'bit':
if bitindex is None:
bitindex = 0
if bitindex >= 8:
bitindex = 0
if bitindex == 0:
buffer.append("bit_buffer = data[offset, 1].unpack(PACK_CHAR).first")
buffer.append("offset += 1")
buffer.append("%s = (bit_buffer & (1 << %d)) != 0" % (f.ruby_name, bitindex))
#### TODO: ADD bitindex TO THE buffer
else:
buffer.append("%s = (bit_buffer & (1 << %d)) != 0" % (f.ruby_name, bitindex))
bitindex = bitindex + 1
else:
bitindex = None
buffer += genSingleDecode(spec, f)
return buffer