Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 1 | #!/usr/bin/python2 |
| 2 | |
| 3 | # (C) Copyright IBM Corporation 2004 |
| 4 | # All Rights Reserved. |
| 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 | # on the rights to use, copy, modify, merge, publish, distribute, sub |
| 10 | # license, and/or sell copies of the Software, and to permit persons to whom |
| 11 | # the Software is furnished to do so, subject to the following conditions: |
| 12 | # |
| 13 | # The above copyright notice and this permission notice (including the next |
| 14 | # paragraph) shall be included in all copies or substantial portions of the |
| 15 | # Software. |
| 16 | # |
| 17 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 18 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 19 | # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL |
| 20 | # IBM AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 21 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 22 | # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 23 | # IN THE SOFTWARE. |
| 24 | # |
| 25 | # Authors: |
| 26 | # Ian Romanick <idr@us.ibm.com> |
| 27 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 28 | import gl_XML |
| 29 | import license |
| 30 | import sys, getopt |
| 31 | |
Ian Romanick | 66a5548 | 2005-06-21 23:42:43 +0000 | [diff] [blame^] | 32 | class PrintGlTable(gl_XML.gl_print_base): |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 33 | def __init__(self): |
Ian Romanick | 66a5548 | 2005-06-21 23:42:43 +0000 | [diff] [blame^] | 34 | gl_XML.gl_print_base.__init__(self) |
Ian Romanick | 497dd3e | 2005-05-26 16:34:58 +0000 | [diff] [blame] | 35 | |
Ian Romanick | 16c3c74 | 2005-01-28 19:00:54 +0000 | [diff] [blame] | 36 | self.header_tag = '_GLAPI_TABLE_H_' |
Ian Romanick | 497dd3e | 2005-05-26 16:34:58 +0000 | [diff] [blame] | 37 | self.name = "gl_table.py (from Mesa)" |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 38 | self.license = license.bsd_license_template % ( \ |
| 39 | """Copyright (C) 1999-2003 Brian Paul All Rights Reserved. |
| 40 | (C) Copyright IBM Corporation 2004""", "BRIAN PAUL, IBM") |
Ian Romanick | 66a5548 | 2005-06-21 23:42:43 +0000 | [diff] [blame^] | 41 | return |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 42 | |
| 43 | |
Ian Romanick | 66a5548 | 2005-06-21 23:42:43 +0000 | [diff] [blame^] | 44 | def printBody(self, api): |
| 45 | for f in api.functionIterateByOffset(): |
| 46 | arg_string = f.get_parameter_string() |
| 47 | print ' %s (GLAPIENTRYP %s)(%s); /* %d */' % (f.return_type, f.name, arg_string, f.offset) |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 48 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 49 | |
| 50 | def printRealHeader(self): |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 51 | print '#ifndef GLAPIENTRYP' |
| 52 | print '#define GLAPIENTRYP' |
| 53 | print '#endif' |
| 54 | print '' |
| 55 | print 'struct _glapi_table' |
| 56 | print '{' |
| 57 | return |
| 58 | |
Ian Romanick | 66a5548 | 2005-06-21 23:42:43 +0000 | [diff] [blame^] | 59 | |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 60 | def printRealFooter(self): |
| 61 | print '};' |
Ian Romanick | 73f59b0 | 2004-05-18 18:33:40 +0000 | [diff] [blame] | 62 | return |
| 63 | |
| 64 | |
| 65 | def show_usage(): |
| 66 | print "Usage: %s [-f input_file_name]" % sys.argv[0] |
| 67 | sys.exit(1) |
| 68 | |
| 69 | if __name__ == '__main__': |
| 70 | file_name = "gl_API.xml" |
| 71 | |
| 72 | try: |
| 73 | (args, trail) = getopt.getopt(sys.argv[1:], "f:") |
| 74 | except Exception,e: |
| 75 | show_usage() |
| 76 | |
| 77 | for (arg,val) in args: |
| 78 | if arg == "-f": |
| 79 | file_name = val |
| 80 | |
Ian Romanick | 66a5548 | 2005-06-21 23:42:43 +0000 | [diff] [blame^] | 81 | api = gl_XML.parse_GL_API( file_name ) |
| 82 | |
| 83 | printer = PrintGlTable() |
| 84 | printer.Print( api ) |