| 
									
										
										
										
											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(): | 
					
						
							|  |  |  | 	input = "Scrap.h" | 
					
						
							|  |  |  | 	output = SHORT + "gen.py" | 
					
						
							|  |  |  | 	defsoutput = "@Scrap.py" | 
					
						
							|  |  |  | 	scanner = MyScanner(input, output, defsoutput) | 
					
						
							|  |  |  | 	scanner.scan() | 
					
						
							|  |  |  | 	scanner.close() | 
					
						
							| 
									
										
										
										
											2002-08-15 22:05:58 +00:00
										 |  |  | ##	print "=== Testing definitions output code ===" | 
					
						
							|  |  |  | ##	execfile(defsoutput, {}, {}) | 
					
						
							| 
									
										
										
										
											1996-04-12 16:25:30 +00:00
										 |  |  | 	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! ===" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MyScanner(Scanner): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def destination(self, type, name, arglist): | 
					
						
							|  |  |  | 		classname = "Function" | 
					
						
							|  |  |  | 		listname = "functions" | 
					
						
							| 
									
										
										
										
											2001-12-31 14:52:03 +00:00
										 |  |  | 		if arglist: | 
					
						
							|  |  |  | 			t, n, m = arglist[0] | 
					
						
							|  |  |  | 			if t == 'ScrapRef' and m == "InMode": | 
					
						
							|  |  |  | 				classname = "Method" | 
					
						
							|  |  |  | 				listname = "methods" | 
					
						
							| 
									
										
										
										
											1996-04-12 16:25:30 +00:00
										 |  |  | 		return classname, listname | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makeblacklistnames(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							| 
									
										
										
										
											2001-12-31 14:52:03 +00:00
										 |  |  | 			"GetScrapFlavorInfoList", | 
					
						
							| 
									
										
										
										
											2002-12-12 10:31:54 +00:00
										 |  |  | 			'InfoScrap', | 
					
						
							|  |  |  | 			'GetScrap', | 
					
						
							|  |  |  | 			'ZeroScrap', | 
					
						
							|  |  |  | 			'PutScrap', | 
					
						
							| 
									
										
										
										
											1996-04-12 16:25:30 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makeblacklisttypes(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							| 
									
										
										
										
											2001-12-31 14:52:03 +00:00
										 |  |  | 			'ScrapPromiseKeeperUPP', | 
					
						
							| 
									
										
										
										
											1996-04-12 16:25:30 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def makerepairinstructions(self): | 
					
						
							|  |  |  | 		return [ | 
					
						
							|  |  |  | 			([('void', '*', 'OutMode')], [('putscrapbuffer', '*', 'InMode')]), | 
					
						
							| 
									
										
										
										
											2001-01-24 16:04:01 +00:00
										 |  |  | 			([('void_ptr', '*', 'InMode')], [('putscrapbuffer', '*', 'InMode')]), | 
					
						
							| 
									
										
										
										
											1996-04-12 16:25:30 +00:00
										 |  |  | 			] | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  | 	main() |