cpython/Tools/scripts/h2py.py

156 lines
5.1 KiB
Python
Raw Normal View History

#! /usr/bin/env python
1992-03-02 12:20:32 -04:00
# Read #define's and translate to Python code.
# Handle #include statements.
# Handle #define macros with one argument.
# Anything that isn't recognized or doesn't translate into valid
# Python is ignored.
# Without filename arguments, acts as a filter.
# If one or more filenames are given, output is written to corresponding
# filenames in the local directory, translated to all uppercase, with
# the extension replaced by ".py".
# By passing one or more options of the form "-i regular_expression"
# you can specify additional strings to be ignored. This is useful
# e.g. to ignore casts to u_long: simply specify "-i '(u_long)'".
1992-03-02 12:20:32 -04:00
# XXX To do:
# - turn trailing C comments into Python comments
# - turn C Boolean operators "&& || !" into Python "and or not"
# - what to do about #if(def)?
# - what to do about macros with multiple parameters?
1992-03-02 12:20:32 -04:00
import sys, re, getopt, os
1992-03-02 12:20:32 -04:00
p_define = re.compile('^[\t ]*#[\t ]*define[\t ]+([a-zA-Z0-9_]+)[\t ]+')
1992-03-02 12:20:32 -04:00
p_macro = re.compile(
'^[\t ]*#[\t ]*define[\t ]+'
'([a-zA-Z0-9_]+)\(([_a-zA-Z][_a-zA-Z0-9]*)\)[\t ]+')
p_include = re.compile('^[\t ]*#[\t ]*include[\t ]+<([a-zA-Z0-9_/\.]+)')
p_comment = re.compile(r'/\*([^*]+|\*+[^/])*(\*+/)?')
p_cpp_comment = re.compile('//.*')
1992-03-02 12:20:32 -04:00
1997-08-14 17:14:29 -03:00
ignores = [p_comment, p_cpp_comment]
p_char = re.compile(r"'(\\.[^\\]*|[^\\])'")
filedict = {}
importable = {}
1995-01-17 13:01:40 -04:00
try:
searchdirs=os.environ['include'].splitfields(';')
1995-01-17 13:01:40 -04:00
except KeyError:
2001-01-17 04:48:39 -04:00
try:
searchdirs=os.environ['INCLUDE'].splitfields(';')
2001-01-17 04:48:39 -04:00
except KeyError:
try:
if sys.platform.find("beos") == 0:
searchdirs=os.environ['BEINCLUDES'].splitfields(';')
2001-01-17 04:48:39 -04:00
else:
raise KeyError
except KeyError:
searchdirs=['/usr/include']
1995-01-17 13:01:40 -04:00
1992-03-02 12:20:32 -04:00
def main():
2001-01-17 04:48:39 -04:00
global filedict
opts, args = getopt.getopt(sys.argv[1:], 'i:')
for o, a in opts:
if o == '-i':
ignores.append(re.compile(a))
2001-01-17 04:48:39 -04:00
if not args:
args = ['-']
for filename in args:
if filename == '-':
sys.stdout.write('# Generated by h2py from stdin\n')
process(sys.stdin, sys.stdout)
else:
fp = open(filename, 'r')
outfile = os.path.basename(filename)
i = outfile.rfind('.')
2001-01-17 04:48:39 -04:00
if i > 0: outfile = outfile[:i]
modname = outfile.upper()
outfile = modname + '.py'
2001-01-17 04:48:39 -04:00
outfp = open(outfile, 'w')
outfp.write('# Generated by h2py from %s\n' % filename)
filedict = {}
for dir in searchdirs:
if filename[:len(dir)] == dir:
filedict[filename[len(dir)+1:]] = None # no '/' trailing
importable[filename[len(dir)+1:]] = modname
2001-01-17 04:48:39 -04:00
break
process(fp, outfp)
outfp.close()
fp.close()
1992-03-02 12:20:32 -04:00
def process(fp, outfp, env = {}):
2001-01-17 04:48:39 -04:00
lineno = 0
while 1:
line = fp.readline()
if not line: break
lineno = lineno + 1
match = p_define.match(line)
if match:
2001-01-17 04:48:39 -04:00
# gobble up continuation lines
while line[-2:] == '\\\n':
nextline = fp.readline()
if not nextline: break
lineno = lineno + 1
line = line + nextline
name = match.group(1)
body = line[match.end():]
2001-01-17 04:48:39 -04:00
# replace ignored patterns by spaces
for p in ignores:
body = p.sub(' ', body)
2001-01-17 04:48:39 -04:00
# replace char literals by ord(...)
body = p_char.sub('ord(\\0)', body)
stmt = '%s = %s\n' % (name, body.strip())
2001-01-17 04:48:39 -04:00
ok = 0
try:
exec stmt in env
except:
sys.stderr.write('Skipping: %s' % stmt)
else:
outfp.write(stmt)
match = p_macro.match(line)
if match:
macro, arg = match.group(1, 2)
body = line[match.end():]
2001-01-17 04:48:39 -04:00
for p in ignores:
body = p.sub(' ', body)
body = p_char.sub('ord(\\0)', body)
2001-01-17 04:48:39 -04:00
stmt = 'def %s(%s): return %s\n' % (macro, arg, body)
try:
exec stmt in env
except:
sys.stderr.write('Skipping: %s' % stmt)
else:
outfp.write(stmt)
match = p_include.match(line)
if match:
regs = match.regs
2001-01-17 04:48:39 -04:00
a, b = regs[1]
filename = line[a:b]
if importable.has_key(filename):
outfp.write('import %s\n' % importable[filename])
elif not filedict.has_key(filename):
2001-01-17 04:48:39 -04:00
filedict[filename] = None
inclfp = None
for dir in searchdirs:
try:
inclfp = open(dir + '/' + filename)
2001-01-17 04:48:39 -04:00
break
except IOError:
pass
if inclfp:
outfp.write(
'\n# Included from %s\n' % filename)
process(inclfp, outfp, env)
else:
sys.stderr.write('Warning - could not find file %s' % filename)
1995-01-17 13:01:40 -04:00
main()