1 # Scan an Apple header file, generating a Python file of generator calls.
4 from bgenlocations
import TOOLBOXDIR
, BGENDIR
5 sys
.path
.append(BGENDIR
)
6 from scantools
import Scanner
14 output
= SHORT
+ "gen.py"
15 defsoutput
= TOOLBOXDIR
+ LONG
+ ".py"
16 scanner
= MyScanner(input, output
, defsoutput
)
19 print "=== Testing definitions output code ==="
20 execfile(defsoutput
, {}, {})
21 print "=== Done scanning and generating, now importing the generated code... ==="
22 exec "import " + SHORT
+ "support"
23 print "=== Done. It's up to you to compile it now! ==="
25 class MyScanner(Scanner
):
27 def destination(self
, type, name
, arglist
):
28 classname
= "Function"
29 listname
= "functions"
32 # This is non-functional today
33 if t
== OBJECT
and m
== "InMode":
36 return classname
, listname
38 def makeblacklistnames(self
):
42 # Constants with funny definitions
43 "kSelectorAllHugeData",
44 "kSelectorAllAvailableData",
46 # Something in a comment accidentally seen as a const definition
49 'IconServicesTerminate',
51 "GetIconRefFromFileInfo"
54 def makeblacklisttypes(self
):
62 def makerepairinstructions(self
):
66 def writeinitialdefs(self
):
67 self
.defsfile
.write("def FOUR_CHAR_CODE(x): return x\n")
68 self
.defsfile
.write("from Carbon.Files import *\n")
70 if __name__
== "__main__":