blob: ea2dc2fc2ff9289d3c88e96ab0b19a2613cd155d [file] [log] [blame]
Jack Jansenb9968561995-11-30 15:03:09 +00001# Scan an Apple header file, generating a Python file of generator calls.
2
3import addpack
4addpack.addpack(':tools:bgen:bgen')
5from scantools import Scanner
Jack Jansen46d9e791996-04-12 16:29:23 +00006from bgenlocations import TOOLBOXDIR
Jack Jansenb9968561995-11-30 15:03:09 +00007
8LONG = "Components"
9SHORT = "Cm"
10
11def main():
12 input = "Components.h"
13 output = SHORT + "gen.py"
Jack Jansen46d9e791996-04-12 16:29:23 +000014 defsoutput = TOOLBOXDIR + LONG + ".py"
Jack Jansenb9968561995-11-30 15:03:09 +000015 scanner = MyScanner(input, output, defsoutput)
16 scanner.scan()
17 scanner.close()
18 print "=== Done scanning and generating, now importing the generated code... ==="
19 exec "import " + SHORT + "support"
20 print "=== Done. It's up to you to compile it now! ==="
21
22class MyScanner(Scanner):
23
24 def destination(self, type, name, arglist):
25 classname = "Function"
26 listname = "functions"
27 if arglist:
28 t, n, m = arglist[0]
29 #
30 # FindNextComponent is a special case, since it call also be called
31 # with None as the argument. Hence, we make it a function
32 #
33 if t == "Component" and m == "InMode" and name != "FindNextComponent":
34 classname = "Method"
35 listname = "c_methods"
36 elif t == "ComponentInstance" and m == "InMode":
37 classname = "Method"
38 listname = "ci_methods"
39 return classname, listname
40
41 def makeblacklistnames(self):
42 return [
Jack Jansen4a8c54e1997-02-24 13:56:59 +000043 "OpenADefaultComponent",
44 "GetComponentTypeModSeed",
45 "OpenAComponentResFile",
46 "CallComponentUnregister",
47 "CallComponentTarget",
48 "CallComponentRegister",
49 "CallComponentVersion",
50 "CallComponentCanDo",
51 "CallComponentClose",
52 "CallComponentOpen",
53 "OpenAComponent",
Jack Jansenb9968561995-11-30 15:03:09 +000054 ]
55
56 def makeblacklisttypes(self):
57 return [
58 "ResourceSpec",
59 "ComponentResource",
60 "ComponentPlatformInfo",
61 "ComponentResourceExtension",
62 "ComponentPlatformInfoArray",
63 "ExtComponentResource",
64 "ComponentParameters",
65
66 "ComponentRoutineUPP",
Jack Jansen4a8c54e1997-02-24 13:56:59 +000067 "ComponentMPWorkFunctionUPP",
Jack Jansenb9968561995-11-30 15:03:09 +000068 ]
69
70 def makerepairinstructions(self):
71 return [
72 ([('ComponentDescription', 'looking', 'OutMode')],
73 [('ComponentDescription', '*', 'InMode')]),
74 ]
75
76if __name__ == "__main__":
77 main()