Jack Jansen | b996856 | 1995-11-30 15:03:09 +0000 | [diff] [blame] | 1 | # Scan an Apple header file, generating a Python file of generator calls. |
| 2 | |
| 3 | import addpack |
| 4 | addpack.addpack(':tools:bgen:bgen') |
| 5 | from scantools import Scanner |
Jack Jansen | 46d9e79 | 1996-04-12 16:29:23 +0000 | [diff] [blame] | 6 | from bgenlocations import TOOLBOXDIR |
Jack Jansen | b996856 | 1995-11-30 15:03:09 +0000 | [diff] [blame] | 7 | |
| 8 | LONG = "Components" |
| 9 | SHORT = "Cm" |
| 10 | |
| 11 | def main(): |
| 12 | input = "Components.h" |
| 13 | output = SHORT + "gen.py" |
Jack Jansen | 46d9e79 | 1996-04-12 16:29:23 +0000 | [diff] [blame] | 14 | defsoutput = TOOLBOXDIR + LONG + ".py" |
Jack Jansen | b996856 | 1995-11-30 15:03:09 +0000 | [diff] [blame] | 15 | 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 | |
| 22 | class 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 Jansen | 4a8c54e | 1997-02-24 13:56:59 +0000 | [diff] [blame] | 43 | "OpenADefaultComponent", |
| 44 | "GetComponentTypeModSeed", |
| 45 | "OpenAComponentResFile", |
| 46 | "CallComponentUnregister", |
| 47 | "CallComponentTarget", |
| 48 | "CallComponentRegister", |
| 49 | "CallComponentVersion", |
| 50 | "CallComponentCanDo", |
| 51 | "CallComponentClose", |
| 52 | "CallComponentOpen", |
| 53 | "OpenAComponent", |
Jack Jansen | b996856 | 1995-11-30 15:03:09 +0000 | [diff] [blame] | 54 | ] |
| 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 Jansen | 4a8c54e | 1997-02-24 13:56:59 +0000 | [diff] [blame] | 67 | "ComponentMPWorkFunctionUPP", |
Jack Jansen | b996856 | 1995-11-30 15:03:09 +0000 | [diff] [blame] | 68 | ] |
| 69 | |
| 70 | def makerepairinstructions(self): |
| 71 | return [ |
| 72 | ([('ComponentDescription', 'looking', 'OutMode')], |
| 73 | [('ComponentDescription', '*', 'InMode')]), |
| 74 | ] |
| 75 | |
| 76 | if __name__ == "__main__": |
| 77 | main() |