1995-01-02 15:04:15 -04:00
|
|
|
|
|
|
|
/* Support for dynamic loading of extension modules */
|
|
|
|
|
1997-04-29 17:08:16 -03:00
|
|
|
#include "Python.h"
|
1995-01-02 15:04:15 -04:00
|
|
|
|
1999-12-22 10:09:35 -04:00
|
|
|
/* ./configure sets HAVE_DYNAMIC_LOADING if dynamic loading of modules is
|
|
|
|
supported on this platform. configure will then compile and link in one
|
|
|
|
of the dynload_*.c files, as appropriate. We will call a function in
|
|
|
|
those modules to get a function pointer to the module's init function.
|
1995-01-02 15:04:15 -04:00
|
|
|
*/
|
1999-12-20 17:20:42 -04:00
|
|
|
#ifdef HAVE_DYNAMIC_LOADING
|
1995-01-02 15:04:15 -04:00
|
|
|
|
1999-12-22 10:09:35 -04:00
|
|
|
#include "importdl.h"
|
|
|
|
|
1999-12-20 17:20:42 -04:00
|
|
|
extern dl_funcptr _PyImport_GetDynLoadFunc(const char *name,
|
1999-12-22 10:09:35 -04:00
|
|
|
const char *shortname,
|
1999-12-20 17:20:42 -04:00
|
|
|
const char *pathname, FILE *fp);
|
1997-11-22 17:53:48 -04:00
|
|
|
|
1996-07-31 14:55:19 -03:00
|
|
|
|
1999-12-20 17:20:42 -04:00
|
|
|
|
1997-04-29 17:08:16 -03:00
|
|
|
PyObject *
|
2000-07-22 15:47:25 -03:00
|
|
|
_PyImport_LoadDynamicModule(char *name, char *pathname, FILE *fp)
|
1995-01-02 15:04:15 -04:00
|
|
|
{
|
2002-08-26 18:15:11 -03:00
|
|
|
PyObject *m;
|
2001-10-16 17:07:34 -03:00
|
|
|
char *lastdot, *shortname, *packagecontext, *oldcontext;
|
1999-12-22 10:09:35 -04:00
|
|
|
dl_funcptr p;
|
1999-12-20 17:20:42 -04:00
|
|
|
|
1997-08-02 00:10:38 -03:00
|
|
|
if ((m = _PyImport_FindExtension(name, pathname)) != NULL) {
|
|
|
|
Py_INCREF(m);
|
|
|
|
return m;
|
|
|
|
}
|
1997-11-19 14:53:33 -04:00
|
|
|
lastdot = strrchr(name, '.');
|
|
|
|
if (lastdot == NULL) {
|
|
|
|
packagecontext = NULL;
|
|
|
|
shortname = name;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
packagecontext = name;
|
|
|
|
shortname = lastdot+1;
|
|
|
|
}
|
1995-07-18 11:40:09 -03:00
|
|
|
|
1999-12-22 10:09:35 -04:00
|
|
|
p = _PyImport_GetDynLoadFunc(name, shortname, pathname, fp);
|
1999-12-20 17:20:42 -04:00
|
|
|
if (PyErr_Occurred())
|
1995-01-02 15:04:15 -04:00
|
|
|
return NULL;
|
|
|
|
if (p == NULL) {
|
1997-11-19 14:53:33 -04:00
|
|
|
PyErr_Format(PyExc_ImportError,
|
1999-12-22 10:09:35 -04:00
|
|
|
"dynamic module does not define init function (init%.200s)",
|
|
|
|
shortname);
|
1995-01-02 15:04:15 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
2001-10-16 17:07:34 -03:00
|
|
|
oldcontext = _Py_PackageContext;
|
1997-11-19 14:53:33 -04:00
|
|
|
_Py_PackageContext = packagecontext;
|
1995-01-02 15:04:15 -04:00
|
|
|
(*p)();
|
2001-10-16 17:07:34 -03:00
|
|
|
_Py_PackageContext = oldcontext;
|
1997-08-02 00:10:38 -03:00
|
|
|
if (PyErr_Occurred())
|
|
|
|
return NULL;
|
1995-01-02 15:04:15 -04:00
|
|
|
|
1997-07-21 11:54:36 -03:00
|
|
|
m = PyDict_GetItemString(PyImport_GetModuleDict(), name);
|
1995-01-02 15:04:15 -04:00
|
|
|
if (m == NULL) {
|
1997-08-02 00:10:38 -03:00
|
|
|
PyErr_SetString(PyExc_SystemError,
|
|
|
|
"dynamic module not initialized properly");
|
1995-01-02 15:04:15 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
1996-08-19 19:12:10 -03:00
|
|
|
/* Remember the filename as the __file__ attribute */
|
2002-08-26 18:15:11 -03:00
|
|
|
if (PyModule_AddStringConstant(m, "__file__", pathname) < 0)
|
1997-04-29 17:08:16 -03:00
|
|
|
PyErr_Clear(); /* Not important enough to report */
|
2003-09-04 15:45:59 -03:00
|
|
|
|
|
|
|
if (_PyImport_FixupExtension(name, pathname) == NULL)
|
|
|
|
return NULL;
|
1997-04-29 17:08:16 -03:00
|
|
|
if (Py_VerboseFlag)
|
1998-10-12 15:23:55 -03:00
|
|
|
PySys_WriteStderr(
|
1995-01-02 15:04:15 -04:00
|
|
|
"import %s # dynamically loaded from %s\n",
|
|
|
|
name, pathname);
|
1997-04-29 17:08:16 -03:00
|
|
|
Py_INCREF(m);
|
1995-01-02 15:04:15 -04:00
|
|
|
return m;
|
1998-08-04 19:46:29 -03:00
|
|
|
}
|
1999-12-22 10:09:35 -04:00
|
|
|
|
|
|
|
#endif /* HAVE_DYNAMIC_LOADING */
|