mapi: remove old, unused ES* generator code
[mesa.git] / src / mapi / mapi_abi.py
1
2 # Mesa 3-D graphics library
3 #
4 # Copyright (C) 2010 LunarG Inc.
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining a
7 # copy of this software and associated documentation files (the "Software"),
8 # to deal in the Software without restriction, including without limitation
9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 # and/or sell copies of the Software, and to permit persons to whom the
11 # Software is furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 # DEALINGS IN THE SOFTWARE.
23 #
24 # Authors:
25 # Chia-I Wu <olv@lunarg.com>
26
27 from __future__ import print_function
28
29 import sys
30 # make it possible to import glapi
31 import os
32 GLAPI = os.path.join(".", os.path.dirname(__file__), "glapi", "gen")
33 sys.path.insert(0, GLAPI)
34
35 from operator import attrgetter
36 import re
37 from optparse import OptionParser
38 import gl_XML
39 import glX_XML
40
41
42 # number of dynamic entries
43 ABI_NUM_DYNAMIC_ENTRIES = 256
44
45 class ABIEntry(object):
46 """Represent an ABI entry."""
47
48 _match_c_param = re.compile(
49 '^(?P<type>[\w\s*]+?)(?P<name>\w+)(\[(?P<array>\d+)\])?$')
50
51 def __init__(self, cols, attrs, xml_data = None):
52 self._parse(cols)
53
54 self.slot = attrs['slot']
55 self.hidden = attrs['hidden']
56 self.alias = attrs['alias']
57 self.handcode = attrs['handcode']
58 self.xml_data = xml_data
59
60 def c_prototype(self):
61 return '%s %s(%s)' % (self.c_return(), self.name, self.c_params())
62
63 def c_return(self):
64 ret = self.ret
65 if not ret:
66 ret = 'void'
67
68 return ret
69
70 def c_params(self):
71 """Return the parameter list used in the entry prototype."""
72 c_params = []
73 for t, n, a in self.params:
74 sep = '' if t.endswith('*') else ' '
75 arr = '[%d]' % a if a else ''
76 c_params.append(t + sep + n + arr)
77 if not c_params:
78 c_params.append('void')
79
80 return ", ".join(c_params)
81
82 def c_args(self):
83 """Return the argument list used in the entry invocation."""
84 c_args = []
85 for t, n, a in self.params:
86 c_args.append(n)
87
88 return ", ".join(c_args)
89
90 def _parse(self, cols):
91 ret = cols.pop(0)
92 if ret == 'void':
93 ret = None
94
95 name = cols.pop(0)
96
97 params = []
98 if not cols:
99 raise Exception(cols)
100 elif len(cols) == 1 and cols[0] == 'void':
101 pass
102 else:
103 for val in cols:
104 params.append(self._parse_param(val))
105
106 self.ret = ret
107 self.name = name
108 self.params = params
109
110 def _parse_param(self, c_param):
111 m = self._match_c_param.match(c_param)
112 if not m:
113 raise Exception('unrecognized param ' + c_param)
114
115 c_type = m.group('type').strip()
116 c_name = m.group('name')
117 c_array = m.group('array')
118 c_array = int(c_array) if c_array else 0
119
120 return (c_type, c_name, c_array)
121
122 def __str__(self):
123 return self.c_prototype()
124
125 def __lt__(self, other):
126 # compare slot, alias, and then name
127 if self.slot == other.slot:
128 if not self.alias:
129 return True
130 elif not other.alias:
131 return False
132
133 return self.name < other.name
134
135 return self.slot < other.slot
136
137
138 def abi_parse_xml(xml):
139 """Parse a GLAPI XML file for ABI entries."""
140 api = gl_XML.parse_GL_API(xml, glX_XML.glx_item_factory())
141
142 entry_dict = {}
143 for func in api.functionIterateByOffset():
144 # make sure func.name appear first
145 entry_points = func.entry_points[:]
146 entry_points.remove(func.name)
147 entry_points.insert(0, func.name)
148
149 for name in entry_points:
150 attrs = {
151 'slot': func.offset,
152 'hidden': not func.is_static_entry_point(name),
153 'alias': None if name == func.name else func.name,
154 'handcode': bool(func.has_different_protocol(name)),
155 }
156
157 # post-process attrs
158 if attrs['alias']:
159 try:
160 alias = entry_dict[attrs['alias']]
161 except KeyError:
162 raise Exception('failed to alias %s' % attrs['alias'])
163 if alias.alias:
164 raise Exception('recursive alias %s' % ent.name)
165 attrs['alias'] = alias
166 if attrs['handcode']:
167 attrs['handcode'] = func.static_glx_name(name)
168 else:
169 attrs['handcode'] = None
170
171 if name in entry_dict:
172 raise Exception('%s is duplicated' % (name))
173
174 cols = []
175 cols.append(func.return_type)
176 cols.append(name)
177 params = func.get_parameter_string(name)
178 cols.extend([p.strip() for p in params.split(',')])
179
180 ent = ABIEntry(cols, attrs, func)
181 entry_dict[ent.name] = ent
182
183 entries = sorted(entry_dict.values())
184
185 return entries
186
187 def abi_parse_line(line):
188 cols = [col.strip() for col in line.split(',')]
189
190 attrs = {
191 'slot': -1,
192 'hidden': False,
193 'alias': None,
194 'handcode': None,
195 }
196
197 # extract attributes from the first column
198 vals = cols[0].split(':')
199 while len(vals) > 1:
200 val = vals.pop(0)
201 if val.startswith('slot='):
202 attrs['slot'] = int(val[5:])
203 elif val == 'hidden':
204 attrs['hidden'] = True
205 elif val.startswith('alias='):
206 attrs['alias'] = val[6:]
207 elif val.startswith('handcode='):
208 attrs['handcode'] = val[9:]
209 elif not val:
210 pass
211 else:
212 raise Exception('unknown attribute %s' % val)
213 cols[0] = vals[0]
214
215 return (attrs, cols)
216
217 def abi_parse(filename):
218 """Parse a CSV file for ABI entries."""
219 fp = open(filename) if filename != '-' else sys.stdin
220 lines = [line.strip() for line in fp.readlines()
221 if not line.startswith('#') and line.strip()]
222
223 entry_dict = {}
224 next_slot = 0
225 for line in lines:
226 attrs, cols = abi_parse_line(line)
227
228 # post-process attributes
229 if attrs['alias']:
230 try:
231 alias = entry_dict[attrs['alias']]
232 except KeyError:
233 raise Exception('failed to alias %s' % attrs['alias'])
234 if alias.alias:
235 raise Exception('recursive alias %s' % ent.name)
236 slot = alias.slot
237 attrs['alias'] = alias
238 else:
239 slot = next_slot
240 next_slot += 1
241
242 if attrs['slot'] < 0:
243 attrs['slot'] = slot
244 elif attrs['slot'] != slot:
245 raise Exception('invalid slot in %s' % (line))
246
247 ent = ABIEntry(cols, attrs)
248 if ent.name in entry_dict:
249 raise Exception('%s is duplicated' % (ent.name))
250 entry_dict[ent.name] = ent
251
252 entries = sorted(entry_dict.values())
253
254 return entries
255
256 def abi_sanity_check(entries):
257 if not entries:
258 return
259
260 all_names = []
261 last_slot = entries[-1].slot
262 i = 0
263 for slot in range(last_slot + 1):
264 if entries[i].slot != slot:
265 raise Exception('entries are not ordered by slots')
266 if entries[i].alias:
267 raise Exception('first entry of slot %d aliases %s'
268 % (slot, entries[i].alias.name))
269 handcode = None
270 while i < len(entries) and entries[i].slot == slot:
271 ent = entries[i]
272 if not handcode and ent.handcode:
273 handcode = ent.handcode
274 elif ent.handcode != handcode:
275 raise Exception('two aliases with handcode %s != %s',
276 ent.handcode, handcode)
277
278 if ent.name in all_names:
279 raise Exception('%s is duplicated' % (ent.name))
280 if ent.alias and ent.alias.name not in all_names:
281 raise Exception('failed to alias %s' % (ent.alias.name))
282 all_names.append(ent.name)
283 i += 1
284 if i < len(entries):
285 raise Exception('there are %d invalid entries' % (len(entries) - 1))
286
287 class ABIPrinter(object):
288 """MAPI Printer"""
289
290 def __init__(self, entries):
291 self.entries = entries
292
293 # sort entries by their names
294 self.entries_sorted_by_names = sorted(self.entries, key=attrgetter('name'))
295
296 self.indent = ' ' * 3
297 self.noop_warn = 'noop_warn'
298 self.noop_generic = 'noop_generic'
299 self.current_get = 'entry_current_get'
300
301 self.api_defines = []
302 self.api_headers = ['"KHR/khrplatform.h"']
303 self.api_call = 'KHRONOS_APICALL'
304 self.api_entry = 'KHRONOS_APIENTRY'
305 self.api_attrs = 'KHRONOS_APIATTRIBUTES'
306
307 self.c_header = ''
308
309 self.lib_need_table_size = True
310 self.lib_need_noop_array = True
311 self.lib_need_stubs = True
312 self.lib_need_all_entries = True
313 self.lib_need_non_hidden_entries = False
314
315 def c_notice(self):
316 return '/* This file is automatically generated by mapi_abi.py. Do not modify. */'
317
318 def c_public_includes(self):
319 """Return includes of the client API headers."""
320 defines = ['#define ' + d for d in self.api_defines]
321 includes = ['#include ' + h for h in self.api_headers]
322 return "\n".join(defines + includes)
323
324 def need_entry_point(self, ent):
325 """Return True if an entry point is needed for the entry."""
326 # non-handcode hidden aliases may share the entry they alias
327 use_alias = (ent.hidden and ent.alias and not ent.handcode)
328 return not use_alias
329
330 def c_public_declarations(self, prefix):
331 """Return the declarations of public entry points."""
332 decls = []
333 for ent in self.entries:
334 if not self.need_entry_point(ent):
335 continue
336 export = self.api_call if not ent.hidden else ''
337 if not ent.hidden:
338 decls.append(self._c_decl(ent, prefix, True, export) + ';')
339
340 return "\n".join(decls)
341
342 def c_mapi_table(self):
343 """Return defines of the dispatch table size."""
344 num_static_entries = self.entries[-1].slot + 1
345 return ('#define MAPI_TABLE_NUM_STATIC %d\n' + \
346 '#define MAPI_TABLE_NUM_DYNAMIC %d') % (
347 num_static_entries, ABI_NUM_DYNAMIC_ENTRIES)
348
349 def _c_function(self, ent, prefix, mangle=False, stringify=False):
350 """Return the function name of an entry."""
351 formats = {
352 True: { True: '%s_STR(%s)', False: '%s(%s)' },
353 False: { True: '"%s%s"', False: '%s%s' },
354 }
355 fmt = formats[prefix.isupper()][stringify]
356 name = ent.name
357 if mangle and ent.hidden:
358 name = '_dispatch_stub_' + str(ent.slot)
359 return fmt % (prefix, name)
360
361 def _c_function_call(self, ent, prefix):
362 """Return the function name used for calling."""
363 if ent.handcode:
364 # _c_function does not handle this case
365 formats = { True: '%s(%s)', False: '%s%s' }
366 fmt = formats[prefix.isupper()]
367 name = fmt % (prefix, ent.handcode)
368 elif self.need_entry_point(ent):
369 name = self._c_function(ent, prefix, True)
370 else:
371 name = self._c_function(ent.alias, prefix, True)
372 return name
373
374 def _c_decl(self, ent, prefix, mangle=False, export=''):
375 """Return the C declaration for the entry."""
376 decl = '%s %s %s(%s)' % (ent.c_return(), self.api_entry,
377 self._c_function(ent, prefix, mangle), ent.c_params())
378 if export:
379 decl = export + ' ' + decl
380 if self.api_attrs:
381 decl += ' ' + self.api_attrs
382
383 return decl
384
385 def _c_cast(self, ent):
386 """Return the C cast for the entry."""
387 cast = '%s (%s *)(%s)' % (
388 ent.c_return(), self.api_entry, ent.c_params())
389
390 return cast
391
392 def c_public_dispatches(self, prefix, no_hidden):
393 """Return the public dispatch functions."""
394 dispatches = []
395 for ent in self.entries:
396 if ent.hidden and no_hidden:
397 continue
398
399 if not self.need_entry_point(ent):
400 continue
401
402 export = self.api_call if not ent.hidden else ''
403
404 proto = self._c_decl(ent, prefix, True, export)
405 cast = self._c_cast(ent)
406
407 ret = ''
408 if ent.ret:
409 ret = 'return '
410 stmt1 = self.indent
411 stmt1 += 'const struct _glapi_table *_tbl = %s();' % (
412 self.current_get)
413 stmt2 = self.indent
414 stmt2 += 'mapi_func _func = ((const mapi_func *) _tbl)[%d];' % (
415 ent.slot)
416 stmt3 = self.indent
417 stmt3 += '%s((%s) _func)(%s);' % (ret, cast, ent.c_args())
418
419 disp = '%s\n{\n%s\n%s\n%s\n}' % (proto, stmt1, stmt2, stmt3)
420
421 if ent.handcode:
422 disp = '#if 0\n' + disp + '\n#endif'
423
424 dispatches.append(disp)
425
426 return '\n\n'.join(dispatches)
427
428 def c_public_initializer(self, prefix):
429 """Return the initializer for public dispatch functions."""
430 names = []
431 for ent in self.entries:
432 if ent.alias:
433 continue
434
435 name = '%s(mapi_func) %s' % (self.indent,
436 self._c_function_call(ent, prefix))
437 names.append(name)
438
439 return ',\n'.join(names)
440
441 def c_stub_string_pool(self):
442 """Return the string pool for use by stubs."""
443 # sort entries by their names
444 sorted_entries = sorted(self.entries, key=attrgetter('name'))
445
446 pool = []
447 offsets = {}
448 count = 0
449 for ent in sorted_entries:
450 offsets[ent] = count
451 pool.append('%s' % (ent.name))
452 count += len(ent.name) + 1
453
454 pool_str = self.indent + '"' + \
455 ('\\0"\n' + self.indent + '"').join(pool) + '";'
456 return (pool_str, offsets)
457
458 def c_stub_initializer(self, prefix, pool_offsets):
459 """Return the initializer for struct mapi_stub array."""
460 stubs = []
461 for ent in self.entries_sorted_by_names:
462 stubs.append('%s{ (void *) %d, %d, NULL }' % (
463 self.indent, pool_offsets[ent], ent.slot))
464
465 return ',\n'.join(stubs)
466
467 def c_noop_functions(self, prefix, warn_prefix):
468 """Return the noop functions."""
469 noops = []
470 for ent in self.entries:
471 if ent.alias:
472 continue
473
474 proto = self._c_decl(ent, prefix, False, 'static')
475
476 stmt1 = self.indent;
477 space = ''
478 for t, n, a in ent.params:
479 stmt1 += "%s(void) %s;" % (space, n)
480 space = ' '
481
482 if ent.params:
483 stmt1 += '\n';
484
485 stmt1 += self.indent + '%s(%s);' % (self.noop_warn,
486 self._c_function(ent, warn_prefix, False, True))
487
488 if ent.ret:
489 stmt2 = self.indent + 'return (%s) 0;' % (ent.ret)
490 noop = '%s\n{\n%s\n%s\n}' % (proto, stmt1, stmt2)
491 else:
492 noop = '%s\n{\n%s\n}' % (proto, stmt1)
493
494 noops.append(noop)
495
496 return '\n\n'.join(noops)
497
498 def c_noop_initializer(self, prefix, use_generic):
499 """Return an initializer for the noop dispatch table."""
500 entries = [self._c_function(ent, prefix)
501 for ent in self.entries if not ent.alias]
502 if use_generic:
503 entries = [self.noop_generic] * len(entries)
504
505 entries.extend([self.noop_generic] * ABI_NUM_DYNAMIC_ENTRIES)
506
507 pre = self.indent + '(mapi_func) '
508 return pre + (',\n' + pre).join(entries)
509
510 def c_asm_gcc(self, prefix, no_hidden):
511 asm = []
512
513 for ent in self.entries:
514 if ent.hidden and no_hidden:
515 continue
516
517 if not self.need_entry_point(ent):
518 continue
519
520 name = self._c_function(ent, prefix, True, True)
521
522 if ent.handcode:
523 asm.append('#if 0')
524
525 if ent.hidden:
526 asm.append('".hidden "%s"\\n"' % (name))
527
528 if ent.alias and not (ent.alias.hidden and no_hidden):
529 asm.append('".globl "%s"\\n"' % (name))
530 asm.append('".set "%s", "%s"\\n"' % (name,
531 self._c_function(ent.alias, prefix, True, True)))
532 else:
533 asm.append('STUB_ASM_ENTRY(%s)"\\n"' % (name))
534 asm.append('"\\t"STUB_ASM_CODE("%d")"\\n"' % (ent.slot))
535
536 if ent.handcode:
537 asm.append('#endif')
538 asm.append('')
539
540 return "\n".join(asm)
541
542 def output_for_lib(self):
543 print(self.c_notice())
544
545 if self.c_header:
546 print()
547 print(self.c_header)
548
549 print()
550 print('#ifdef MAPI_TMP_DEFINES')
551 print(self.c_public_includes())
552 print()
553 print(self.c_public_declarations(self.prefix_lib))
554 print('#undef MAPI_TMP_DEFINES')
555 print('#endif /* MAPI_TMP_DEFINES */')
556
557 if self.lib_need_table_size:
558 print()
559 print('#ifdef MAPI_TMP_TABLE')
560 print(self.c_mapi_table())
561 print('#undef MAPI_TMP_TABLE')
562 print('#endif /* MAPI_TMP_TABLE */')
563
564 if self.lib_need_noop_array:
565 print()
566 print('#ifdef MAPI_TMP_NOOP_ARRAY')
567 print('#ifdef DEBUG')
568 print()
569 print(self.c_noop_functions(self.prefix_noop, self.prefix_warn))
570 print()
571 print('const mapi_func table_%s_array[] = {' % (self.prefix_noop))
572 print(self.c_noop_initializer(self.prefix_noop, False))
573 print('};')
574 print()
575 print('#else /* DEBUG */')
576 print()
577 print('const mapi_func table_%s_array[] = {' % (self.prefix_noop))
578 print(self.c_noop_initializer(self.prefix_noop, True))
579 print('};')
580 print()
581 print('#endif /* DEBUG */')
582 print('#undef MAPI_TMP_NOOP_ARRAY')
583 print('#endif /* MAPI_TMP_NOOP_ARRAY */')
584
585 if self.lib_need_stubs:
586 pool, pool_offsets = self.c_stub_string_pool()
587 print()
588 print('#ifdef MAPI_TMP_PUBLIC_STUBS')
589 print('static const char public_string_pool[] =')
590 print(pool)
591 print()
592 print('static const struct mapi_stub public_stubs[] = {')
593 print(self.c_stub_initializer(self.prefix_lib, pool_offsets))
594 print('};')
595 print('#undef MAPI_TMP_PUBLIC_STUBS')
596 print('#endif /* MAPI_TMP_PUBLIC_STUBS */')
597
598 if self.lib_need_all_entries:
599 print()
600 print('#ifdef MAPI_TMP_PUBLIC_ENTRIES')
601 print(self.c_public_dispatches(self.prefix_lib, False))
602 print()
603 print('static const mapi_func public_entries[] = {')
604 print(self.c_public_initializer(self.prefix_lib))
605 print('};')
606 print('#undef MAPI_TMP_PUBLIC_ENTRIES')
607 print('#endif /* MAPI_TMP_PUBLIC_ENTRIES */')
608
609 print()
610 print('#ifdef MAPI_TMP_STUB_ASM_GCC')
611 print('__asm__(')
612 print(self.c_asm_gcc(self.prefix_lib, False))
613 print(');')
614 print('#undef MAPI_TMP_STUB_ASM_GCC')
615 print('#endif /* MAPI_TMP_STUB_ASM_GCC */')
616
617 if self.lib_need_non_hidden_entries:
618 all_hidden = True
619 for ent in self.entries:
620 if not ent.hidden:
621 all_hidden = False
622 break
623 if not all_hidden:
624 print()
625 print('#ifdef MAPI_TMP_PUBLIC_ENTRIES_NO_HIDDEN')
626 print(self.c_public_dispatches(self.prefix_lib, True))
627 print()
628 print('/* does not need public_entries */')
629 print('#undef MAPI_TMP_PUBLIC_ENTRIES_NO_HIDDEN')
630 print('#endif /* MAPI_TMP_PUBLIC_ENTRIES_NO_HIDDEN */')
631
632 print()
633 print('#ifdef MAPI_TMP_STUB_ASM_GCC_NO_HIDDEN')
634 print('__asm__(')
635 print(self.c_asm_gcc(self.prefix_lib, True))
636 print(');')
637 print('#undef MAPI_TMP_STUB_ASM_GCC_NO_HIDDEN')
638 print('#endif /* MAPI_TMP_STUB_ASM_GCC_NO_HIDDEN */')
639
640 class GLAPIPrinter(ABIPrinter):
641 """OpenGL API Printer"""
642
643 def __init__(self, entries):
644 for ent in entries:
645 self._override_for_api(ent)
646 super(GLAPIPrinter, self).__init__(entries)
647
648 self.api_defines = ['GL_GLEXT_PROTOTYPES']
649 self.api_headers = ['"GL/gl.h"', '"GL/glext.h"']
650 self.api_call = 'GLAPI'
651 self.api_entry = 'APIENTRY'
652 self.api_attrs = ''
653
654 self.lib_need_table_size = False
655 self.lib_need_noop_array = False
656 self.lib_need_stubs = False
657 self.lib_need_all_entries = False
658 self.lib_need_non_hidden_entries = True
659
660 self.prefix_lib = 'GLAPI_PREFIX'
661 self.prefix_noop = 'noop'
662 self.prefix_warn = self.prefix_lib
663
664 self.c_header = self._get_c_header()
665
666 def _override_for_api(self, ent):
667 """Override attributes of an entry if necessary for this
668 printer."""
669 # By default, no override is necessary.
670 pass
671
672 def _get_c_header(self):
673 header = """#ifndef _GLAPI_TMP_H_
674 #define _GLAPI_TMP_H_
675 #ifdef USE_MGL_NAMESPACE
676 #define GLAPI_PREFIX(func) mgl##func
677 #define GLAPI_PREFIX_STR(func) "mgl"#func
678 #else
679 #define GLAPI_PREFIX(func) gl##func
680 #define GLAPI_PREFIX_STR(func) "gl"#func
681 #endif /* USE_MGL_NAMESPACE */
682
683 typedef int GLclampx;
684 #endif /* _GLAPI_TMP_H_ */"""
685
686 return header
687
688 class SharedGLAPIPrinter(GLAPIPrinter):
689 """Shared GLAPI API Printer"""
690
691 def __init__(self, entries):
692 super(SharedGLAPIPrinter, self).__init__(entries)
693
694 self.lib_need_table_size = True
695 self.lib_need_noop_array = True
696 self.lib_need_stubs = True
697 self.lib_need_all_entries = True
698 self.lib_need_non_hidden_entries = False
699
700 self.prefix_lib = 'shared'
701 self.prefix_warn = 'gl'
702
703 def _override_for_api(self, ent):
704 ent.hidden = True
705 ent.handcode = False
706
707 def _get_c_header(self):
708 header = """#ifndef _GLAPI_TMP_H_
709 #define _GLAPI_TMP_H_
710 typedef int GLclampx;
711 #endif /* _GLAPI_TMP_H_ */"""
712
713 return header
714
715 def parse_args():
716 printers = ['glapi', 'es1api', 'es2api', 'shared-glapi']
717
718 parser = OptionParser(usage='usage: %prog [options] <filename>')
719 parser.add_option('-p', '--printer', dest='printer',
720 help='printer to use: %s' % (", ".join(printers)))
721
722 options, args = parser.parse_args()
723 if not args or options.printer not in printers:
724 parser.print_help()
725 sys.exit(1)
726
727 return (args[0], options)
728
729 def main():
730 printers = {
731 'glapi': GLAPIPrinter,
732 'shared-glapi': SharedGLAPIPrinter,
733 }
734
735 filename, options = parse_args()
736
737 if filename.endswith('.xml'):
738 entries = abi_parse_xml(filename)
739 else:
740 entries = abi_parse(filename)
741 abi_sanity_check(entries)
742
743 printer = printers[options.printer](entries)
744 printer.output_for_lib()
745
746 if __name__ == '__main__':
747 main()