| 
									
										
										
										
											2003-12-02 23:01:43 +00:00
										 |  |  | # This script generates a Python interface for an Apple Macintosh Manager. | 
					
						
							|  |  |  | # It uses the "bgen" package to generate C code. | 
					
						
							|  |  |  | # The function specifications are generated by scanning the mamager's header file, | 
					
						
							|  |  |  | # using the "scantools" package (customized for this particular manager). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Declarations that change for each manager | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  | MODNAME = '_Launch'                             # The name of the module | 
					
						
							|  |  |  | OBJECTNAME = 'UNUSED'                   # The basic name of the objects used here | 
					
						
							|  |  |  | KIND = 'Record'                         # Usually 'Ptr' or 'Handle' | 
					
						
							| 
									
										
										
										
											2003-12-02 23:01:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # The following is *usually* unchanged but may still require tuning | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  | MODPREFIX = 'Launch'                    # The prefix for module-wide routines | 
					
						
							|  |  |  | OBJECTTYPE = OBJECTNAME + KIND          # The C type used to represent them | 
					
						
							|  |  |  | OBJECTPREFIX = MODPREFIX + 'Obj'        # The prefix for object methods | 
					
						
							| 
									
										
										
										
											2003-12-02 23:01:43 +00:00
										 |  |  | INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  | OUTPUTFILE = MODNAME + "module.c"       # The file generated by this program | 
					
						
							| 
									
										
										
										
											2003-12-02 23:01:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | from macsupport import * | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create the type objects | 
					
						
							|  |  |  | LSAcceptanceFlags = Type("LSAcceptanceFlags", "l") | 
					
						
							|  |  |  | LSInitializeFlags = Type("LSInitializeFlags", "l") | 
					
						
							|  |  |  | LSRequestedInfo = Type("LSRequestedInfo", "l") | 
					
						
							|  |  |  | LSRolesMask = Type("LSRolesMask", "l") | 
					
						
							| 
									
										
										
										
											2003-12-03 23:20:13 +00:00
										 |  |  | UniCharCount = Type("UniCharCount", "l") | 
					
						
							| 
									
										
										
										
											2003-12-02 23:01:43 +00:00
										 |  |  | OptCFStringRef = OpaqueByValueType("CFStringRef", "OptCFStringRefObj") | 
					
						
							|  |  |  | LSItemInfoRecord = OpaqueType("LSItemInfoRecord", "LSItemInfoRecord") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | includestuff = includestuff + """
 | 
					
						
							| 
									
										
										
										
											2003-12-09 14:51:21 +00:00
										 |  |  | #if PY_VERSION_HEX < 0x02040000 | 
					
						
							|  |  |  | PyObject *PyMac_GetOSErrException(void); | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-02 23:01:43 +00:00
										 |  |  | #include <ApplicationServices/ApplicationServices.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | ** Optional CFStringRef. None will pass NULL | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | OptCFStringRefObj_Convert(PyObject *v, CFStringRef *spec) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  |         if (v == Py_None) { | 
					
						
							|  |  |  |                 *spec = NULL; | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return CFStringRefObj_Convert(v, spec); | 
					
						
							| 
									
										
										
										
											2003-12-02 23:01:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | OptCFStringRefObj_New(CFStringRef it) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  |         if (it == NULL) { | 
					
						
							|  |  |  |                 Py_INCREF(Py_None); | 
					
						
							|  |  |  |                 return Py_None; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return CFStringRefObj_New(it); | 
					
						
							| 
									
										
										
										
											2003-12-02 23:01:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | ** Convert LSItemInfoRecord to Python. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | LSItemInfoRecord_New(LSItemInfoRecord *it) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-07-18 06:16:08 +00:00
										 |  |  |         return Py_BuildValue("{s:is:O&s:O&s:O&s:O&s:i}", | 
					
						
							|  |  |  |                 "flags", it->flags, | 
					
						
							|  |  |  |                 "filetype", PyMac_BuildOSType, it->filetype, | 
					
						
							|  |  |  |                 "creator", PyMac_BuildOSType, it->creator, | 
					
						
							|  |  |  |                 "extension", OptCFStringRefObj_New, it->extension, | 
					
						
							|  |  |  |                 "iconFileName", OptCFStringRefObj_New, it->iconFileName, | 
					
						
							|  |  |  |                 "kindID", it->kindID); | 
					
						
							| 
									
										
										
										
											2003-12-02 23:01:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # From here on it's basically all boiler plate... | 
					
						
							|  |  |  | execfile(string.lower(MODPREFIX) + 'typetest.py') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create the generator groups and link them | 
					
						
							|  |  |  | module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff) | 
					
						
							|  |  |  | ##object = MyObjectDefinition(OBJECTNAME, OBJECTPREFIX, OBJECTTYPE) | 
					
						
							|  |  |  | ##module.addobject(object) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create the generator classes used to populate the lists | 
					
						
							|  |  |  | Function = OSErrFunctionGenerator | 
					
						
							|  |  |  | ##Method = OSErrMethodGenerator | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create and populate the lists | 
					
						
							|  |  |  | functions = [] | 
					
						
							|  |  |  | ##methods = [] | 
					
						
							|  |  |  | execfile(INPUTFILE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # add the populated lists to the generator groups | 
					
						
							|  |  |  | # (in a different wordl the scan program would generate this) | 
					
						
							|  |  |  | for f in functions: module.add(f) | 
					
						
							|  |  |  | ##for f in methods: object.add(f) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # generate output (open the output file as late as possible) | 
					
						
							|  |  |  | SetOutputFileName(OUTPUTFILE) | 
					
						
							|  |  |  | module.generate() |