mirror of
https://github.com/python/cpython.git
synced 2025-10-03 05:35:59 +00:00
Process command line arguments; skip #defines that generate invalid
Python
This commit is contained in:
parent
ef5bca380c
commit
09336f9f73
1 changed files with 36 additions and 7 deletions
|
@ -1,11 +1,13 @@
|
||||||
#! /usr/local/bin/python
|
#! /usr/local/bin/python
|
||||||
|
|
||||||
# Read #define's from stdin and translate to Python code on stdout.
|
# Read #define's from stdin and translate to Python code on stdout.
|
||||||
# Very primitive: non-#define's are ignored, no check for valid Python
|
# Very primitive: non-#define's are ignored.
|
||||||
# syntax is made -- you will have to edit the output in most cases.
|
# You will have to edit the output in some cases.
|
||||||
|
# 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".
|
||||||
|
|
||||||
# XXX To do:
|
# XXX To do:
|
||||||
# - accept filename arguments
|
|
||||||
# - turn trailing C comments into Python comments
|
# - turn trailing C comments into Python comments
|
||||||
# - turn C string quotes into Python comments
|
# - turn C string quotes into Python comments
|
||||||
# - turn C Boolean operators "&& || !" into Python "and or not"
|
# - turn C Boolean operators "&& || !" into Python "and or not"
|
||||||
|
@ -13,16 +15,35 @@
|
||||||
# - what to do about macros with parameters?
|
# - what to do about macros with parameters?
|
||||||
# - reject definitions with semicolons in them
|
# - reject definitions with semicolons in them
|
||||||
|
|
||||||
import sys, regex, string
|
import sys, regex, string, getopt, os
|
||||||
|
|
||||||
p_define = regex.compile('^#[\t ]*define[\t ]+\([a-zA-Z0-9_]+\)[\t ]+')
|
p_define = regex.compile('^#[\t ]*define[\t ]+\([a-zA-Z0-9_]+\)[\t ]+')
|
||||||
|
|
||||||
p_comment = regex.compile('/\*\([^*]+\|\*+[^/]\)*\(\*+/\)?')
|
p_comment = regex.compile('/\*\([^*]+\|\*+[^/]\)*\(\*+/\)?')
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
process(sys.stdin)
|
opts, args = getopt.getopt(sys.argv[1:], '')
|
||||||
|
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 = string.rfind(outfile, '.')
|
||||||
|
if i > 0: outfile = outfile[:i]
|
||||||
|
outfile = string.upper(outfile)
|
||||||
|
outfile = outfile + '.py'
|
||||||
|
outfp = open(outfile, 'w')
|
||||||
|
outfp.write('# Generated by h2py from %s\n' % filename)
|
||||||
|
process(fp, outfp)
|
||||||
|
outfp.close()
|
||||||
|
fp.close()
|
||||||
|
|
||||||
def process(fp):
|
def process(fp, outfp):
|
||||||
|
env = {}
|
||||||
lineno = 0
|
lineno = 0
|
||||||
while 1:
|
while 1:
|
||||||
line = fp.readline()
|
line = fp.readline()
|
||||||
|
@ -44,6 +65,14 @@ def process(fp):
|
||||||
while p_comment.search(body) >= 0:
|
while p_comment.search(body) >= 0:
|
||||||
a, b = p_comment.regs[0]
|
a, b = p_comment.regs[0]
|
||||||
body = body[:a] + ' ' + body[b:]
|
body = body[:a] + ' ' + body[b:]
|
||||||
print name, '=', string.strip(body)
|
stmt = '%s = %s\n' % (name, string.strip(body))
|
||||||
|
ok = 0
|
||||||
|
try:
|
||||||
|
exec stmt in env
|
||||||
|
ok = 1
|
||||||
|
except:
|
||||||
|
sys.stderr.write('Skipping: %s' % stmt)
|
||||||
|
if ok:
|
||||||
|
outfp.write(stmt)
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue