| 
									
										
										
										
											1996-04-12 16:25:30 +00: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 14:07:56 +00:00
										 |  |  | import sys | 
					
						
							|  |  |  | import os | 
					
						
							| 
									
										
										
										
											2002-08-05 15:39:30 +00:00
										 |  |  | from bgenlocations import TOOLBOXDIR, BGENDIR | 
					
						
							| 
									
										
										
										
											1998-04-17 14:07:56 +00:00
										 |  |  | sys.path.append(BGENDIR) | 
					
						
							| 
									
										
										
										
											1996-04-12 16:25:30 +00:00
										 |  |  | from scantools import Scanner | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | LONG = "Scrap" | 
					
						
							| 
									
										
										
										
											1999-12-12 21:41:51 +00:00
										 |  |  | SHORT = "scrap" | 
					
						
							| 
									
										
										
										
											1996-04-12 16:25:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00: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 16:25:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class MyScanner(Scanner): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00: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 16:25:30 +00:00
										 |  |  | if __name__ == "__main__": | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  |     main() |