blob: 901510e0531341aa2f392c0de22f3fac8645e986 [file] [log] [blame]
Ole Troan5f9dcff2016-08-01 04:59:13 +02001#!/usr/bin/env python
2#
3# Copyright (c) 2016 Cisco and/or its affiliates.
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at:
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17from __future__ import print_function
18import argparse, sys, os, importlib, pprint
19
20parser = argparse.ArgumentParser(description='VPP Python API generator')
21parser.add_argument('-i', '--input', action="store", dest="inputfile", type=argparse.FileType('r'))
22parser.add_argument('-c', '--cfile', action="store")
23args = parser.parse_args()
24
25#
26# Read API definitions file into vppapidefs
27#
28exec(args.inputfile.read())
29
30# https://docs.python.org/3/library/struct.html
31format_struct = {'u8': 'B',
32 'u16' : 'H',
33 'u32' : 'I',
34 'i32' : 'i',
35 'u64' : 'Q',
36 'f64' : 'd',
37 'vl_api_ip4_fib_counter_t' : 'IBQQ',
38 'vl_api_ip6_fib_counter_t' : 'QQBQQ',
39 };
40#
41# NB: If new types are introduced in vpe.api, these must be updated.
42#
43type_size = {'u8': 1,
44 'u16' : 2,
45 'u32' : 4,
46 'i32' : 4,
47 'u64' : 8,
48 'f64' : 8,
49 'vl_api_ip4_fib_counter_t' : 21,
50 'vl_api_ip6_fib_counter_t' : 33,
51};
52
53def eprint(*args, **kwargs):
54 print(*args, file=sys.stderr, **kwargs)
55
56def get_args(t):
57 argslist = []
58 for i in t:
59 if i[1][0] == '_':
60 argslist.append(i[1][1:])
61 else:
62 argslist.append(i[1])
63
64 return argslist
65
66def get_pack(f):
67 zeroarray = False
68 bytecount = 0
69 pack = ''
70 elements = 1
Ole Troan1732fc12016-08-30 21:03:51 +020071 if len(f) is 3 or len(f) is 4:
Ole Troan5f9dcff2016-08-01 04:59:13 +020072 size = type_size[f[0]]
73 bytecount += size * int(f[2])
74 # Check if we have a zero length array
75 if f[2] == '0':
76 # If len 3 zero array
77 elements = 0;
78 pack += format_struct[f[0]]
79 bytecount = size
80 elif size == 1:
81 n = f[2] * size
82 pack += str(n) + 's'
83 else:
84 pack += format_struct[f[0]] * int(f[2])
85 elements = int(f[2])
86 else:
87 bytecount += type_size[f[0]]
88 pack += format_struct[f[0]]
89 return (pack, elements, bytecount)
90
91
92'''
93def get_reply_func(f):
94 if f['name']+'_reply' in func_name:
95 return func_name[f['name']+'_reply']
96 if f['name'].find('_dump') > 0:
97 r = f['name'].replace('_dump','_details')
98 if r in func_name:
99 return func_name[r]
100 return None
101'''
102
103def footer_print():
104 print('''
105def msg_id_base_set(b):
106 global base
107 base = b
108
109import os
110name = os.path.splitext(os.path.basename(__file__))[0]
111 ''')
112 print(u"plugin_register(name, api_func_table, api_name_to_id,", vl_api_version, ", msg_id_base_set)")
113
114def api_table_print(name, i):
115 msg_id_in = 'VL_API_' + name.upper()
116 fstr = name + '_decode'
117 print('api_func_table.append(' + fstr + ')')
118 print('api_name_to_id["' + msg_id_in + '"] =', i)
119 print('')
120
Gabriel Gannece64b8e2016-09-19 14:05:15 +0200121
Ole Troan5f9dcff2016-08-01 04:59:13 +0200122def encode_print(name, id, t):
Ole Troan5f9dcff2016-08-01 04:59:13 +0200123 args = get_args(t)
Ole Troan5f9dcff2016-08-01 04:59:13 +0200124
125 if name.find('_dump') > 0:
126 multipart = True
127 else:
128 multipart = False
129
130 if len(args) < 4:
131 print(u"def", name + "(async = False):")
132 else:
133 print(u"def", name + "(" + ', '.join(args[3:]) + ", async = False):")
134 print(u" global base")
135 print(u" context = get_context(base + " + id + ")")
136
137 print('''
138 results_prepare(context)
139 waiting_for_reply_set()
140 ''')
141 if multipart == True:
142 print(u" results_more_set(context)")
143
Ole Troan1732fc12016-08-30 21:03:51 +0200144 t = list(t)
Ole Troan1732fc12016-08-30 21:03:51 +0200145
Gabriel Gannece64b8e2016-09-19 14:05:15 +0200146 # only the last field can be a variable-length-array
147 # it can either be 0, or a string
148 # first, deal with all the other fields
149 pack = '>' + ''.join([get_pack(f)[0] for f in t[:-1]])
150
151 # now see if the last field is a vla
152 if len(t[-1]) >= 3 and t[-1][2] == '0':
153 print(u" vpp_api.write(pack('" + pack + "', base + " +
154 id + ", 0, context, " + ', '.join(args[3:-1]) + ") + "
155 + args[-1] + ")")
156 else:
157 pack += get_pack(t[-1])[0]
158 print(u" vpp_api.write(pack('" + pack + "', base + " + id +
159 ", 0, context, " + ', '.join(args[3:]) + "))")
Ole Troan5f9dcff2016-08-01 04:59:13 +0200160
161 if multipart == True:
Ole Troan1732fc12016-08-30 21:03:51 +0200162 print(
163 u" vpp_api.write(pack('>HII', VL_API_CONTROL_PING, 0, context))")
Ole Troan5f9dcff2016-08-01 04:59:13 +0200164
165 print('''
166 if not async:
167 results_event_wait(context, 5)
168 return results_get(context)
169 return context
170 ''')
171
172def get_normal_pack(t, i, pack, offset):
173 while t:
174 f = t.pop(0)
175 i += 1
176 if len(f) >= 3:
177 return t, i, pack, offset, f
178 p, elements, size = get_pack(f)
179 pack += p
180 offset += size
181 return t, i, pack, offset, None
182
183def decode_print(name, t):
184 #
185 # Generate code for each element
186 #
187 print(u'def ' + name + u'_decode(msg):')
188 total = 0
189 args = get_args(t)
190 print(u" n = namedtuple('" + name + "', '" + ', '.join(args) + "')")
191 print(u" res = []")
192
193 pack = '>'
194 start = 0
195 end = 0
196 offset = 0
197 t = list(t)
198 i = 0
199 while t:
200 t, i, pack, offset, array = get_normal_pack(t, i, pack, offset)
201 if array:
202 p, elements, size = get_pack(array)
203
204 # Byte string
205 if elements > 0 and type_size[array[0]] == 1:
206 pack += p
207 offset += size * elements
208 continue
209
210 # Dump current pack string
211 if pack != '>':
212 print(u" tr = unpack_from('" + pack + "', msg[" + str(start) + ":])")
213 print(u" res.extend(list(tr))")
214 start += offset
215 pack = '>'
216
217 if elements == 0:
218 # This has to be the last element
219 if len(array) == 3:
220 print(u" res.append(msg[" + str(offset) + ":])")
221 if len(t) > 0:
222 eprint('WARNING: Variable length array must be last element in message', name, array)
223
224 continue
225 if size == 1 or len(p) == 1:
226 # Do it as a bytestring.
227 if p == 'B':
228 p = 's'
229 # XXX: Assume that length parameter is the previous field. Add validation.
230 print(u" c = res[" + str(i - 2) + "]")
231 print(u" tr = unpack_from('>' + str(c) + '" + p + "', msg[" + str(start) + ":])")
232 print(u" res.append(tr)")
233 continue
234 print(u" tr2 = []")
235 print(u" offset = " + str(total))
236 print(u" for j in range(res[" + str(i - 2) + "]):")
237 print(u" tr2.append(unpack_from('>" + p + "', msg[" + str(start) + ":], offset))")
238 print(u" offset += " + str(size))
239 print(u" res.append(tr2)")
240 continue
241
242 # Missing something!!
243 print(u" tr = unpack_from('>" + p + "', msg[" + str(start) + ":])")
244 start += size
245
246 print(u" res.append(tr)")
247
248 if pack != '>':
249 print(u" tr = unpack_from('" + pack + "', msg[" + str(start) + ":])")
250 print(u" res.extend(list(tr))")
251 print(u" return n._make(res)")
252 print('')
253
254#
255# Generate the main Python file
256#
257def main():
258 print('''
259#
260# AUTO-GENERATED FILE. PLEASE DO NOT EDIT.
261#
262from vpp_api_base import *
263from struct import *
264from collections import namedtuple
265import vpp_api
266api_func_table = []
267api_name_to_id = {}
268 ''')
269
Marek Gradzki101759c2016-09-29 13:20:52 +0200270 for i, a in enumerate(messages):
Ole Troan5f9dcff2016-08-01 04:59:13 +0200271 name = a[0]
272 encode_print(name, str(i), a[1:])
273 decode_print(name, a[1:])
274 api_table_print(name, i)
275 footer_print()
276
277if __name__ == "__main__":
278 main()