blob: 95abeedcaffce9b79f3c20c42a34f5d1e61f72ff [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 [
43 # "GetComponentInfo" # XXXX I dont know how the Handle args are expected...
44 ]
45
46 def makeblacklisttypes(self):
47 return [
48 "ResourceSpec",
49 "ComponentResource",
50 "ComponentPlatformInfo",
51 "ComponentResourceExtension",
52 "ComponentPlatformInfoArray",
53 "ExtComponentResource",
54 "ComponentParameters",
55
56 "ComponentRoutineUPP",
57 ]
58
59 def makerepairinstructions(self):
60 return [
61 ([('ComponentDescription', 'looking', 'OutMode')],
62 [('ComponentDescription', '*', 'InMode')]),
63 ]
64
65if __name__ == "__main__":
66 main()