| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | /********************************************************************
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +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"
 | 
					
						
							| 
									
										
										
										
											2000-07-03 23:51:17 +00:00
										 |  |  | #include "malloc.h" /* for alloca */
 | 
					
						
							| 
									
										
										
										
											1997-09-29 23:39:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-03 23:51:17 +00:00
										 |  |  | /* a string loaded from the DLL at startup */ | 
					
						
							|  |  |  | extern const char *PyWin_DLLVersionString; | 
					
						
							| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-03 23:51:17 +00:00
										 |  |  | FILE *PyWin_FindRegisteredModule(const char *moduleName, | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |                                  struct filedescr **ppFileDesc, | 
					
						
							|  |  |  |                                  char *pathBuf, | 
					
						
							|  |  |  |                                  Py_ssize_t pathLen) | 
					
						
							| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     char *moduleKey; | 
					
						
							|  |  |  |     const char keyPrefix[] = "Software\\Python\\PythonCore\\"; | 
					
						
							|  |  |  |     const char keySuffix[] = "\\Modules\\"; | 
					
						
							| 
									
										
										
										
											1998-05-26 13:53:23 +00:00
										 |  |  | #ifdef _DEBUG
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     /* In debugging builds, we _must_ have the debug version
 | 
					
						
							|  |  |  |      * registered. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     const char debugString[] = "\\Debug"; | 
					
						
							| 
									
										
										
										
											1998-05-26 13:53:23 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     const char debugString[] = ""; | 
					
						
							| 
									
										
										
										
											1998-05-26 13:53:23 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     struct filedescr *fdp = NULL; | 
					
						
							|  |  |  |     FILE *fp; | 
					
						
							|  |  |  |     HKEY keyBase = HKEY_CURRENT_USER; | 
					
						
							|  |  |  |     int modNameSize; | 
					
						
							|  |  |  |     long regStat; | 
					
						
							| 
									
										
										
										
											1997-09-29 23:39:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     /* Calculate the size for the sprintf buffer.
 | 
					
						
							|  |  |  |      * Get the size of the chars only, plus 1 NULL. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     size_t bufSize = sizeof(keyPrefix)-1 + | 
					
						
							|  |  |  |                      strlen(PyWin_DLLVersionString) + | 
					
						
							|  |  |  |                      sizeof(keySuffix) + | 
					
						
							|  |  |  |                      strlen(moduleName) + | 
					
						
							|  |  |  |                      sizeof(debugString) - 1; | 
					
						
							|  |  |  |     /* alloca == no free required, but memory only local to fn,
 | 
					
						
							|  |  |  |      * also no heap fragmentation! | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     moduleKey = alloca(bufSize); | 
					
						
							|  |  |  |     PyOS_snprintf(moduleKey, bufSize, | 
					
						
							|  |  |  |                   "Software\\Python\\PythonCore\\%s\\Modules\\%s%s", | 
					
						
							|  |  |  |                   PyWin_DLLVersionString, moduleName, debugString); | 
					
						
							| 
									
										
										
										
											1997-09-29 23:39:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     assert(pathLen < INT_MAX); | 
					
						
							|  |  |  |     modNameSize = (int)pathLen; | 
					
						
							|  |  |  |     regStat = RegQueryValue(keyBase, moduleKey, pathBuf, &modNameSize); | 
					
						
							|  |  |  |     if (regStat != ERROR_SUCCESS) { | 
					
						
							|  |  |  |         /* No user setting - lookup in machine settings */ | 
					
						
							|  |  |  |         keyBase = HKEY_LOCAL_MACHINE; | 
					
						
							|  |  |  |         /* be anal - failure may have reset size param */ | 
					
						
							|  |  |  |         modNameSize = (int)pathLen; | 
					
						
							|  |  |  |         regStat = RegQueryValue(keyBase, moduleKey, | 
					
						
							|  |  |  |                                 pathBuf, &modNameSize); | 
					
						
							| 
									
										
										
										
											2000-08-22 11:20:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         if (regStat != ERROR_SUCCESS) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* use the file extension to locate the type entry. */ | 
					
						
							|  |  |  |     for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { | 
					
						
							|  |  |  |         size_t extLen = strlen(fdp->suffix); | 
					
						
							|  |  |  |         assert(modNameSize >= 0); /* else cast to size_t is wrong */ | 
					
						
							|  |  |  |         if ((size_t)modNameSize > extLen && | 
					
						
							|  |  |  |             strnicmp(pathBuf + ((size_t)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; | 
					
						
							| 
									
										
										
										
											1996-08-21 15:03:37 +00:00
										 |  |  | } |