mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
glapi: gl_SPARC_asm.py use argparse instead of getopt
Also drop -m switch, which only accepted a single value or raised an error, and was unused in the makefile. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com> Acked-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
f2e78bd697
commit
86c9fb526e
1 changed files with 14 additions and 24 deletions
|
|
@ -25,9 +25,10 @@
|
|||
# Authors:
|
||||
# Ian Romanick <idr@us.ibm.com>
|
||||
|
||||
import argparse
|
||||
|
||||
import license
|
||||
import gl_XML, glX_XML
|
||||
import sys, getopt
|
||||
|
||||
class PrintGenericStubs(gl_XML.gl_print_base):
|
||||
def __init__(self):
|
||||
|
|
@ -244,30 +245,19 @@ class PrintGenericStubs(gl_XML.gl_print_base):
|
|||
return
|
||||
|
||||
|
||||
def show_usage():
|
||||
print "Usage: %s [-f input_file_name] [-m output_mode]" % sys.argv[0]
|
||||
sys.exit(1)
|
||||
def _parser():
|
||||
"""Parse arguments and return a namespace."""
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('-f',
|
||||
dest='filename',
|
||||
default='gl_API.xml',
|
||||
help='An XML description of an API.')
|
||||
return parser.parse_args()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
file_name = "gl_API.xml"
|
||||
mode = "generic"
|
||||
args = _parser()
|
||||
printer = PrintGenericStubs()
|
||||
|
||||
try:
|
||||
(args, trail) = getopt.getopt(sys.argv[1:], "m:f:")
|
||||
except Exception,e:
|
||||
show_usage()
|
||||
|
||||
for (arg,val) in args:
|
||||
if arg == '-m':
|
||||
mode = val
|
||||
elif arg == "-f":
|
||||
file_name = val
|
||||
|
||||
if mode == "generic":
|
||||
printer = PrintGenericStubs()
|
||||
else:
|
||||
print "ERROR: Invalid mode \"%s\" specified." % mode
|
||||
show_usage()
|
||||
|
||||
api = gl_XML.parse_GL_API(file_name, glX_XML.glx_item_factory())
|
||||
api = gl_XML.parse_GL_API(args.filename, glX_XML.glx_item_factory())
|
||||
printer.Print(api)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue