1996-08-21 12:03:37 -03:00
|
|
|
/********************************************************************
|
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
import_nt.c
|
1996-08-21 12:03:37 -03:00
|
|
|
|
|
|
|
Win32 specific import code.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
1997-05-05 18:45:44 -03:00
|
|
|
#include "Python.h"
|
1996-08-21 12:03:37 -03:00
|
|
|
#include "osdefs.h"
|
|
|
|
#include <windows.h>
|
|
|
|
#include "importdl.h"
|
2000-07-03 20:51:17 -03:00
|
|
|
#include "malloc.h" /* for alloca */
|
1997-09-29 20:39:31 -03:00
|
|
|
|
2000-07-03 20:51:17 -03:00
|
|
|
/* a string loaded from the DLL at startup */
|
|
|
|
extern const char *PyWin_DLLVersionString;
|
1996-08-21 12:03:37 -03:00
|
|
|
|
2011-03-08 18:49:04 -04:00
|
|
|
/* Find a module on Windows.
|
|
|
|
|
|
|
|
Read the registry Software\Python\PythonCore\<version>\Modules\<name> (or
|
|
|
|
Software\Python\PythonCore\<version>\Modules\<name>\Debug in debug mode)
|
|
|
|
from HKEY_CURRENT_USER, or HKEY_LOCAL_MACHINE. Find the file descriptor using
|
|
|
|
the file extension. Open the file.
|
|
|
|
|
|
|
|
On success, write the file descriptor into *ppFileDesc, the module path
|
|
|
|
(Unicode object) into *pPath, and return the opened file object. If the
|
|
|
|
module cannot be found (e.g. no registry key or the file doesn't exist),
|
|
|
|
return NULL. On error, raise a Python exception and return NULL.
|
|
|
|
*/
|
|
|
|
FILE *
|
|
|
|
_PyWin_FindRegisteredModule(PyObject *moduleName,
|
|
|
|
struct filedescr **ppFileDesc,
|
|
|
|
PyObject **pPath)
|
1996-08-21 12:03:37 -03:00
|
|
|
{
|
2011-03-08 18:49:04 -04:00
|
|
|
wchar_t pathBuf[MAXPATHLEN+1];
|
|
|
|
int pathLen = MAXPATHLEN+1;
|
|
|
|
PyObject *path, *moduleKey, *suffix;
|
2011-11-20 21:01:41 -04:00
|
|
|
wchar_t *wmoduleKey, *wsuffix;
|
2011-03-08 18:49:04 -04:00
|
|
|
struct filedescr *fdp;
|
|
|
|
HKEY keyBase;
|
2010-05-09 12:52:27 -03:00
|
|
|
int modNameSize;
|
|
|
|
long regStat;
|
2011-03-08 18:49:04 -04:00
|
|
|
Py_ssize_t extLen;
|
|
|
|
FILE *fp;
|
1997-09-29 20:39:31 -03:00
|
|
|
|
2011-03-08 18:49:04 -04:00
|
|
|
moduleKey = PyUnicode_FromFormat(
|
|
|
|
#ifdef _DEBUG
|
|
|
|
/* In debugging builds, we _must_ have the debug version registered */
|
|
|
|
"Software\\Python\\PythonCore\\%s\\Modules\\%U\\Debug",
|
|
|
|
#else
|
|
|
|
"Software\\Python\\PythonCore\\%s\\Modules\\%U",
|
|
|
|
#endif
|
|
|
|
PyWin_DLLVersionString, moduleName);
|
|
|
|
if (moduleKey == NULL)
|
|
|
|
return NULL;
|
2011-11-20 21:01:41 -04:00
|
|
|
wmoduleKey = PyUnicode_AsUnicode(moduleKey);
|
|
|
|
if (wmoduleKey == NULL) {
|
|
|
|
Py_DECREF(moduleKey);
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-09-29 20:39:31 -03:00
|
|
|
|
2011-03-08 18:49:04 -04:00
|
|
|
keyBase = HKEY_CURRENT_USER;
|
|
|
|
modNameSize = pathLen;
|
2011-11-20 21:01:41 -04:00
|
|
|
regStat = RegQueryValueW(keyBase, wmoduleKey,
|
2011-03-08 18:49:04 -04:00
|
|
|
pathBuf, &modNameSize);
|
2010-05-09 12:52:27 -03:00
|
|
|
if (regStat != ERROR_SUCCESS) {
|
|
|
|
/* No user setting - lookup in machine settings */
|
|
|
|
keyBase = HKEY_LOCAL_MACHINE;
|
|
|
|
/* be anal - failure may have reset size param */
|
2011-03-08 18:49:04 -04:00
|
|
|
modNameSize = pathLen;
|
2011-11-20 21:01:41 -04:00
|
|
|
regStat = RegQueryValueW(keyBase, wmoduleKey,
|
2011-03-08 18:49:04 -04:00
|
|
|
pathBuf, &modNameSize);
|
|
|
|
if (regStat != ERROR_SUCCESS) {
|
|
|
|
Py_DECREF(moduleKey);
|
2010-05-09 12:52:27 -03:00
|
|
|
return NULL;
|
2011-03-08 18:49:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Py_DECREF(moduleKey);
|
|
|
|
if (modNameSize < 3) {
|
|
|
|
/* path shorter than "a.o" or negative length (cast to
|
|
|
|
size_t is wrong) */
|
|
|
|
return NULL;
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
|
|
|
/* use the file extension to locate the type entry. */
|
|
|
|
for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
|
2011-03-08 18:49:04 -04:00
|
|
|
suffix = PyUnicode_FromString(fdp->suffix);
|
|
|
|
if (suffix == NULL)
|
|
|
|
return NULL;
|
2011-11-20 21:01:41 -04:00
|
|
|
wsuffix = PyUnicode_AsUnicode(suffix);
|
|
|
|
if (wsuffix == NULL) {
|
|
|
|
Py_DECREF(suffix);
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-03-08 18:49:04 -04:00
|
|
|
extLen = PyUnicode_GET_SIZE(suffix);
|
|
|
|
if ((Py_ssize_t)modNameSize > extLen &&
|
|
|
|
_wcsnicmp(pathBuf + ((Py_ssize_t)modNameSize-extLen-1),
|
2011-11-20 21:01:41 -04:00
|
|
|
wsuffix,
|
2011-03-08 18:49:04 -04:00
|
|
|
extLen) == 0)
|
|
|
|
{
|
|
|
|
Py_DECREF(suffix);
|
2010-05-09 12:52:27 -03:00
|
|
|
break;
|
2011-03-08 18:49:04 -04:00
|
|
|
}
|
|
|
|
Py_DECREF(suffix);
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
|
|
|
if (fdp->suffix == NULL)
|
|
|
|
return NULL;
|
2011-09-28 02:41:54 -03:00
|
|
|
path = PyUnicode_FromWideChar(pathBuf, wcslen(pathBuf));
|
2011-03-08 18:49:04 -04:00
|
|
|
if (path == NULL)
|
|
|
|
return NULL;
|
|
|
|
fp = _Py_fopen(path, fdp->mode);
|
|
|
|
if (fp == NULL) {
|
|
|
|
Py_DECREF(path);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
*pPath = path;
|
|
|
|
*ppFileDesc = fdp;
|
2010-05-09 12:52:27 -03:00
|
|
|
return fp;
|
1996-08-21 12:03:37 -03:00
|
|
|
}
|