1996-04-12 13:25:30 -03:00
|
|
|
# Scan an Apple header file, generating a Python file of generator calls.
|
|
|
|
#
|
|
|
|
# Note that the scrap-manager include file is so weird that this
|
|
|
|
# generates a boilerplate to be edited by hand.
|
|
|
|
|
1998-04-17 11:07:56 -03:00
|
|
|
import sys
|
2002-08-05 12:39:30 -03:00
|
|
|
from bgenlocations import TOOLBOXDIR, BGENDIR
|
1998-04-17 11:07:56 -03:00
|
|
|
sys.path.append(BGENDIR)
|
1996-04-12 13:25:30 -03:00
|
|
|
from scantools import Scanner
|
|
|
|
|
|
|
|
LONG = "Scrap"
|
1999-12-12 17:41:51 -04:00
|
|
|
SHORT = "scrap"
|
1996-04-12 13:25:30 -03:00
|
|
|
|
|
|
|
def main():
|
2004-07-18 03:16:08 -03:00
|
|
|
input = "Scrap.h"
|
|
|
|
output = SHORT + "gen.py"
|
|
|
|
defsoutput = "@Scrap.py"
|
|
|
|
scanner = MyScanner(input, output, defsoutput)
|
|
|
|
scanner.scan()
|
|
|
|
scanner.close()
|
|
|
|
## print "=== Testing definitions output code ==="
|
|
|
|
## execfile(defsoutput, {}, {})
|
|
|
|
print "=== Done scanning and generating, now importing the generated code... ==="
|
|
|
|
exec "import " + SHORT + "support"
|
|
|
|
print "=== Done. It's up to you to compile it now! ==="
|
1996-04-12 13:25:30 -03:00
|
|
|
|
|
|
|
class MyScanner(Scanner):
|
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
def destination(self, type, name, arglist):
|
|
|
|
classname = "Function"
|
|
|
|
listname = "functions"
|
|
|
|
if arglist:
|
|
|
|
t, n, m = arglist[0]
|
|
|
|
if t == 'ScrapRef' and m == "InMode":
|
|
|
|
classname = "Method"
|
|
|
|
listname = "methods"
|
|
|
|
return classname, listname
|
|
|
|
|
|
|
|
def makeblacklistnames(self):
|
|
|
|
return [
|
|
|
|
"GetScrapFlavorInfoList",
|
|
|
|
'InfoScrap',
|
|
|
|
'GetScrap',
|
|
|
|
'ZeroScrap',
|
|
|
|
'PutScrap',
|
|
|
|
]
|
|
|
|
|
|
|
|
def makeblacklisttypes(self):
|
|
|
|
return [
|
|
|
|
'ScrapPromiseKeeperUPP',
|
|
|
|
]
|
|
|
|
|
|
|
|
def makerepairinstructions(self):
|
|
|
|
return [
|
|
|
|
([('void', '*', 'OutMode')], [('putscrapbuffer', '*', 'InMode')]),
|
|
|
|
([('void_ptr', '*', 'InMode')], [('putscrapbuffer', '*', 'InMode')]),
|
|
|
|
]
|
|
|
|
|
1996-04-12 13:25:30 -03:00
|
|
|
if __name__ == "__main__":
|
2004-07-18 03:16:08 -03:00
|
|
|
main()
|