ipip: refactor ipip.api with explicit types
[vpp.git] / src / tools / vppapigen / vppapigen_c.py
1 # C generation
2 import datetime
3 import os
4 import time
5
6 datestring = datetime.datetime.utcfromtimestamp(
7     int(os.environ.get('SOURCE_DATE_EPOCH', time.time())))
8 input_filename = 'inputfil'
9 top_boilerplate = '''\
10 /*
11  * VLIB API definitions {datestring}
12  * Input file: {input_filename}
13  * Automatically generated: please edit the input file NOT this file!
14  */
15
16 #include <stdbool.h>
17 #if defined(vl_msg_id)||defined(vl_union_id) \\
18     || defined(vl_printfun) ||defined(vl_endianfun) \\
19     || defined(vl_api_version)||defined(vl_typedefs) \\
20     || defined(vl_msg_name)||defined(vl_msg_name_crc_list) \\
21     || defined(vl_api_version_tuple)
22 /* ok, something was selected */
23 #else
24 #warning no content included from {input_filename}
25 #endif
26
27 #define VL_API_PACKED(x) x __attribute__ ((packed))
28 '''
29
30 bottom_boilerplate = '''\
31 /****** API CRC (whole file) *****/
32
33 #ifdef vl_api_version
34 vl_api_version({input_filename}, {file_crc:#08x})
35
36 #endif
37 '''
38
39
40 def msg_ids(s):
41     output = '''\
42
43 /****** Message ID / handler enum ******/
44
45 #ifdef vl_msg_id
46 '''
47
48     for t in s['Define']:
49         output += "vl_msg_id(VL_API_%s, vl_api_%s_t_handler)\n" % \
50                   (t.name.upper(), t.name)
51     output += "#endif"
52
53     return output
54
55
56 def msg_names(s):
57     output = '''\
58
59 /****** Message names ******/
60
61 #ifdef vl_msg_name
62 '''
63
64     for t in s['Define']:
65         dont_trace = 0 if t.dont_trace else 1
66         output += "vl_msg_name(vl_api_%s_t, %d)\n" % (t.name, dont_trace)
67     output += "#endif"
68
69     return output
70
71
72 def msg_name_crc_list(s, suffix):
73     output = '''\
74
75 /****** Message name, crc list ******/
76
77 #ifdef vl_msg_name_crc_list
78 '''
79     output += "#define foreach_vl_msg_name_crc_%s " % suffix
80
81     for t in s['Define']:
82         output += "\\\n_(VL_API_%s, %s, %08x) " % \
83                    (t.name.upper(), t.name, t.crc)
84     output += "\n#endif"
85
86     return output
87
88
89 def duplicate_wrapper_head(name):
90     s = "#ifndef _vl_api_defined_%s\n" % name
91     s += "#define _vl_api_defined_%s\n" % name
92     return s
93
94
95 def duplicate_wrapper_tail():
96     return '#endif\n\n'
97
98
99 def api2c(fieldtype):
100     mappingtable = {'string': 'vl_api_string_t', }
101     if fieldtype in mappingtable:
102         return mappingtable[fieldtype]
103     return fieldtype
104
105
106 def typedefs(objs, aliases, filename):
107     name = filename.replace('.', '_')
108     output = '''\
109
110
111 /****** Typedefs ******/
112
113 #ifdef vl_typedefs
114 #ifndef included_{module}
115 #define included_{module}
116 '''
117     output = output.format(module=name)
118
119     for k, v in aliases.items():
120         output += duplicate_wrapper_head(k)
121         if 'length' in v:
122             output +=  'typedef %s vl_api_%s_t[%s];\n' % (v['type'], k, v['length'])
123         else:
124             output += 'typedef %s vl_api_%s_t;\n' % (v['type'], k)
125         output += duplicate_wrapper_tail()
126
127     for o in objs:
128         tname = o.__class__.__name__
129         output += duplicate_wrapper_head(o.name)
130         if tname == 'Enum':
131             if o.enumtype == 'u32':
132                 output += "typedef enum {\n"
133             else:
134                 output += "typedef enum __attribute__((__packed__)) {\n"
135
136             for b in o.block:
137                 output += "    %s = %s,\n" % (b[0], b[1])
138             output += '} vl_api_%s_t;\n' % o.name
139             if o.enumtype != 'u32':
140                 size1 = 'sizeof(vl_api_%s_t)' % o.name
141                 size2 = 'sizeof(%s)' % o.enumtype
142                 err_str = 'size of API enum %s is wrong' % o.name
143                 output += 'STATIC_ASSERT(%s == %s, "%s");\n' % (size1, size2, err_str)
144         else:
145             if tname == 'Union':
146                 output += "typedef VL_API_PACKED(union _vl_api_%s {\n" % o.name
147             else:
148                 output += "typedef VL_API_PACKED(struct _vl_api_%s {\n" % o.name
149             for b in o.block:
150                 if b.type == 'Field':
151                     output += "    %s %s;\n" % (api2c(b.fieldtype), b.fieldname)
152                 elif b.type == 'Array':
153                     if b.lengthfield:
154                         output += "    %s %s[0];\n" % (api2c(b.fieldtype), b.fieldname)
155                     else:
156                         output += "    %s %s[%s];\n" % (api2c(b.fieldtype), b.fieldname,
157                                                         b.length)
158                 else:
159                     raise ValueError("Error in processing array type %s" % b)
160
161             output += '}) vl_api_%s_t;\n' % o.name
162         output += duplicate_wrapper_tail()
163
164     output += "\n#endif"
165     output += "\n#endif\n\n"
166
167     return output
168
169
170 format_strings = {'u8': '%u',
171                   'i8': '%d',
172                   'u16': '%u',
173                   'i16': '%d',
174                   'u32': '%u',
175                   'i32': '%ld',
176                   'u64': '%llu',
177                   'i64': '%llu',
178                   'f64': '%.2f', }
179
180
181 def printfun(objs):
182     output = '''\
183 /****** Print functions *****/
184 #ifdef vl_printfun
185
186 #ifdef LP64
187 #define _uword_fmt \"%lld\"
188 #define _uword_cast (long long)
189 #else
190 #define _uword_fmt \"%ld\"
191 #define _uword_cast long
192 #endif
193
194 '''
195     for t in objs:
196         if t.__class__.__name__ == 'Enum':
197             continue
198         if t.manual_print:
199             output += "/***** manual: vl_api_%s_t_print  *****/\n\n" % t.name
200             continue
201         output += duplicate_wrapper_head(t.name + '_t_print')
202         output += "static inline void *vl_api_%s_t_print (vl_api_%s_t *a," % \
203                   (t.name, t.name)
204         output += "void *handle)\n{\n"
205         output += "    vl_print(handle, \"vl_api_%s_t:\\n\");\n" % t.name
206
207         for o in t.block:
208             if o.type != 'Field':
209                 continue
210             if o.fieldtype in format_strings:
211                 output += "    vl_print(handle, \"%s: %s\\n\", a->%s);\n" % \
212                           (o.fieldname, format_strings[o.fieldtype],
213                            o.fieldname)
214
215         output += '    return handle;\n'
216         output += '}\n\n'
217         output += duplicate_wrapper_tail()
218
219     output += "\n#endif /* vl_printfun */\n"
220
221     return output
222
223
224 endian_strings = {
225     'u16': 'clib_net_to_host_u16',
226     'u32': 'clib_net_to_host_u32',
227     'u64': 'clib_net_to_host_u64',
228     'i16': 'clib_net_to_host_u16',
229     'i32': 'clib_net_to_host_u32',
230     'i64': 'clib_net_to_host_u64',
231 }
232
233
234 def endianfun(objs):
235     output = '''\
236
237 /****** Endian swap functions *****/\n\
238 #ifdef vl_endianfun
239
240 #undef clib_net_to_host_uword
241 #ifdef LP64
242 #define clib_net_to_host_uword clib_net_to_host_u64
243 #else
244 #define clib_net_to_host_uword clib_net_to_host_u32
245 #endif
246
247 '''
248
249     for t in objs:
250         if t.__class__.__name__ == 'Enum':
251             continue
252         if t.manual_endian:
253             output += "/***** manual: vl_api_%s_t_endian  *****/\n\n" % t.name
254             continue
255         output += duplicate_wrapper_head(t.name + '_t_endian')
256         output += "static inline void vl_api_%s_t_endian (vl_api_%s_t *a)" % \
257                   (t.name, t.name)
258         output += "\n{\n"
259
260         for o in t.block:
261             if o.type != 'Field':
262                 continue
263             if o.fieldtype in endian_strings:
264                 output += "    a->%s = %s(a->%s);\n" % \
265                         (o.fieldname, endian_strings[o.fieldtype], o.fieldname)
266             else:
267                 output += "    /* a->%s = a->%s (no-op) */\n" % \
268                                           (o.fieldname, o.fieldname)
269
270         output += '}\n\n'
271         output += duplicate_wrapper_tail()
272     output += "\n#endif /* vl_endianfun */\n\n"
273
274     return output
275
276
277 def version_tuple(s, module):
278     output = '''\
279 /****** Version tuple *****/
280
281 #ifdef vl_api_version_tuple
282
283 '''
284     if 'version' in s['Option']:
285         v = s['Option']['version']
286         (major, minor, patch) = v.split('.')
287         output += "vl_api_version_tuple(%s, %s, %s, %s)\n" % \
288                   (module, major, minor, patch)
289
290     output += "\n#endif /* vl_api_version_tuple */\n\n"
291
292     return output
293
294
295 #
296 # Plugin entry point
297 #
298 def run(input_filename, s, file_crc):
299     basename = os.path.basename(input_filename)
300     filename, file_extension = os.path.splitext(basename)
301     output = top_boilerplate.format(datestring=datestring,
302                                     input_filename=basename)
303     output += msg_ids(s)
304     output += msg_names(s)
305     output += msg_name_crc_list(s, filename)
306     output += typedefs(s['types'] + s['Define'], s['Alias'], filename + file_extension)
307     output += printfun(s['types'] + s['Define'])
308     output += endianfun(s['types'] + s['Define'])
309     output += version_tuple(s, basename)
310     output += bottom_boilerplate.format(input_filename=basename,
311                                         file_crc=file_crc)
312
313     return output