| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | /********************************************************************
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-22 00:06:59 +00:00
										 |  |  |  import_nt.c  | 
					
						
							| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   Win32 specific import code. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-05 21:45:44 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | #include "osdefs.h"
 | 
					
						
							|  |  |  | #include <windows.h>
 | 
					
						
							|  |  |  | #include "importdl.h"
 | 
					
						
							| 
									
										
										
										
											1997-09-29 23:39:31 +00:00
										 |  |  | #include "malloc.h" // for alloca
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern const char *PyWin_DLLVersionString; // a string loaded from the DLL at startup.
 | 
					
						
							| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-13 19:53:11 +00:00
										 |  |  | /* Return whether this is Win32s, i.e., Win32 API on Win 3.1(1).
 | 
					
						
							|  |  |  |    This function is exported! */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BOOL PyWin_IsWin32s() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	static BOOL bIsWin32s = -1; /* flag as "not yet looked" */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (bIsWin32s == -1) { | 
					
						
							|  |  |  | 		OSVERSIONINFO ver; | 
					
						
							|  |  |  | 		ver.dwOSVersionInfoSize = sizeof(ver); | 
					
						
							|  |  |  | 		GetVersionEx(&ver); | 
					
						
							|  |  |  | 		bIsWin32s = ver.dwPlatformId == VER_PLATFORM_WIN32s; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return bIsWin32s; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | FILE *PyWin_FindRegisteredModule( const char *moduleName, struct filedescr **ppFileDesc, char *pathBuf, int pathLen) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-09-29 23:39:31 +00:00
										 |  |  | 	char *moduleKey; | 
					
						
							|  |  |  | 	const char keyPrefix[] = "Software\\Python\\PythonCore\\"; | 
					
						
							|  |  |  | 	const char keySuffix[] = "\\Modules\\"; | 
					
						
							| 
									
										
										
										
											1998-05-26 13:53:23 +00:00
										 |  |  | #ifdef _DEBUG
 | 
					
						
							|  |  |  | 	// In debugging builds, we _must_ have the debug version registered.
 | 
					
						
							|  |  |  | 	const char debugString[] = "\\Debug"; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	const char debugString[] = ""; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | 	struct filedescr *fdp = NULL; | 
					
						
							|  |  |  | 	FILE *fp; | 
					
						
							|  |  |  | 	HKEY keyBase = PyWin_IsWin32s() ? HKEY_CLASSES_ROOT : HKEY_LOCAL_MACHINE; | 
					
						
							| 
									
										
										
										
											1998-05-26 13:53:23 +00:00
										 |  |  | 	int modNameSize; | 
					
						
							| 
									
										
										
										
											1998-06-15 18:01:34 +00:00
										 |  |  | 	long regStat; | 
					
						
							| 
									
										
										
										
											1997-09-29 23:39:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-26 13:53:23 +00:00
										 |  |  | 	// Calculate the size for the sprintf buffer.
 | 
					
						
							|  |  |  | 	// Get the size of the chars only, plus 1 NULL.
 | 
					
						
							|  |  |  | 	int bufSize = sizeof(keyPrefix)-1 + strlen(PyWin_DLLVersionString) + sizeof(keySuffix) + strlen(moduleName) + sizeof(debugString) - 1; | 
					
						
							| 
									
										
										
										
											1997-09-29 23:39:31 +00:00
										 |  |  | 	// alloca == no free required, but memory only local to fn, also no heap fragmentation!
 | 
					
						
							| 
									
										
										
										
											1998-05-26 13:53:23 +00:00
										 |  |  | 	moduleKey = alloca(bufSize);  | 
					
						
							|  |  |  | 	sprintf(moduleKey, "Software\\Python\\PythonCore\\%s\\Modules\\%s%s", PyWin_DLLVersionString, moduleName, debugString); | 
					
						
							| 
									
										
										
										
											1997-09-29 23:39:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-14 22:40:30 +00:00
										 |  |  | 	modNameSize = pathLen; | 
					
						
							| 
									
										
										
										
											1998-06-15 18:01:34 +00:00
										 |  |  | 	regStat = RegQueryValue(keyBase, moduleKey, pathBuf, &modNameSize); | 
					
						
							|  |  |  | 	if (regStat!=ERROR_SUCCESS) | 
					
						
							| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	// use the file extension to locate the type entry.
 | 
					
						
							| 
									
										
										
										
											1997-05-08 23:43:52 +00:00
										 |  |  | 	for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { | 
					
						
							| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | 		int extLen=strlen(fdp->suffix); | 
					
						
							|  |  |  | 		if (modNameSize>extLen && strnicmp(pathBuf+(modNameSize-extLen-1),fdp->suffix,extLen)==0) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (fdp->suffix==NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	fp = fopen(pathBuf, fdp->mode); | 
					
						
							|  |  |  | 	if (fp != NULL) | 
					
						
							|  |  |  | 		*ppFileDesc = fdp; | 
					
						
							|  |  |  | 	return fp; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-05-26 13:53:23 +00:00
										 |  |  | 
 |