3 # Read #define's and translate to Python code.
4 # Handle #include statements.
5 # Handle #define macros with one argument.
6 # Anything that isn't recognized or doesn't translate into valid
9 # Without filename arguments, acts as a filter.
10 # If one or more filenames are given, output is written to corresponding
11 # filenames in the local directory, translated to all uppercase, with
12 # the extension replaced by ".py".
14 # By passing one or more options of the form "-i regular_expression"
15 # you can specify additional strings to be ignored. This is useful
16 # e.g. to ignore casts to u_long: simply specify "-i '(u_long)'".
19 # - turn trailing C comments into Python comments
20 # - turn C Boolean operators "&& || !" into Python "and or not"
21 # - what to do about #if(def)?
22 # - what to do about macros with multiple parameters?
24 import sys
, re
, getopt
, os
26 p_define
= re
.compile('^[\t ]*#[\t ]*define[\t ]+([a-zA-Z0-9_]+)[\t ]+')
29 '^[\t ]*#[\t ]*define[\t ]+'
30 '([a-zA-Z0-9_]+)\(([_a-zA-Z][_a-zA-Z0-9]*)\)[\t ]+')
32 p_include
= re
.compile('^[\t ]*#[\t ]*include[\t ]+<([a-zA-Z0-9_/\.]+)')
34 p_comment
= re
.compile(r
'/\*([^*]+|\*+[^/])*(\*+/)?')
35 p_cpp_comment
= re
.compile('//.*')
37 ignores
= [p_comment
, p_cpp_comment
]
39 p_char
= re
.compile(r
"'(\\.[^\\]*|[^\\])'")
45 searchdirs
=os
.environ
['include'].split(';')
48 searchdirs
=os
.environ
['INCLUDE'].split(';')
51 if sys
.platform
.find("beos") == 0:
52 searchdirs
=os
.environ
['BEINCLUDES'].split(';')
53 elif sys
.platform
.startswith("atheos"):
54 searchdirs
=os
.environ
['C_INCLUDE_PATH'].split(':')
58 searchdirs
=['/usr/include']
62 opts
, args
= getopt
.getopt(sys
.argv
[1:], 'i:')
65 ignores
.append(re
.compile(a
))
70 sys
.stdout
.write('# Generated by h2py from stdin\n')
71 process(sys
.stdin
, sys
.stdout
)
73 fp
= open(filename
, 'r')
74 outfile
= os
.path
.basename(filename
)
75 i
= outfile
.rfind('.')
76 if i
> 0: outfile
= outfile
[:i
]
77 modname
= outfile
.upper()
78 outfile
= modname
+ '.py'
79 outfp
= open(outfile
, 'w')
80 outfp
.write('# Generated by h2py from %s\n' % filename
)
82 for dir in searchdirs
:
83 if filename
[:len(dir)] == dir:
84 filedict
[filename
[len(dir)+1:]] = None # no '/' trailing
85 importable
[filename
[len(dir)+1:]] = modname
91 def process(fp
, outfp
, env
= {}):
97 match
= p_define
.match(line
)
99 # gobble up continuation lines
100 while line
[-2:] == '\\\n':
101 nextline
= fp
.readline()
102 if not nextline
: break
104 line
= line
+ nextline
105 name
= match
.group(1)
106 body
= line
[match
.end():]
107 # replace ignored patterns by spaces
109 body
= p
.sub(' ', body
)
110 # replace char literals by ord(...)
111 body
= p_char
.sub('ord(\\0)', body
)
112 stmt
= '%s = %s\n' % (name
, body
.strip())
117 sys
.stderr
.write('Skipping: %s' % stmt
)
120 match
= p_macro
.match(line
)
122 macro
, arg
= match
.group(1, 2)
123 body
= line
[match
.end():]
125 body
= p
.sub(' ', body
)
126 body
= p_char
.sub('ord(\\0)', body
)
127 stmt
= 'def %s(%s): return %s\n' % (macro
, arg
, body
)
131 sys
.stderr
.write('Skipping: %s' % stmt
)
134 match
= p_include
.match(line
)
139 if importable
.has_key(filename
):
140 outfp
.write('from %s import *\n' % importable
[filename
])
141 elif not filedict
.has_key(filename
):
142 filedict
[filename
] = None
144 for dir in searchdirs
:
146 inclfp
= open(dir + '/' + filename
)
152 '\n# Included from %s\n' % filename
)
153 process(inclfp
, outfp
, env
)
155 sys
.stderr
.write('Warning - could not find file %s\n' %