1995-01-02 19:04:15 +00:00
|
|
|
|
|
|
|
/* Support for dynamic loading of extension modules */
|
|
|
|
|
1997-04-29 20:08:16 +00:00
|
|
|
#include "Python.h"
|
1995-01-02 19:04:15 +00:00
|
|
|
|
1999-12-22 14:09:35 +00: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 19:04:15 +00:00
|
|
|
*/
|
1999-12-20 21:20:42 +00:00
|
|
|
#ifdef HAVE_DYNAMIC_LOADING
|
1995-01-02 19:04:15 +00:00
|
|
|
|
1999-12-22 14:09:35 +00:00
|
|
|
#include "importdl.h"
|
|
|
|
|
1999-12-20 21:20:42 +00:00
|
|
|
extern dl_funcptr _PyImport_GetDynLoadFunc(const char *name,
|
1999-12-22 14:09:35 +00:00
|
|
|
const char *shortname,
|
1999-12-20 21:20:42 +00:00
|
|
|
const char *pathname, FILE *fp);
|
1997-11-22 21:53:48 +00:00
|
|
|
|
1996-07-31 17:55:19 +00:00
|
|
|
|
1999-12-20 21:20:42 +00:00
|
|
|
|
1997-04-29 20:08:16 +00:00
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
_PyImport_LoadDynamicModule(char *name, char *pathname, FILE *fp)
|
1995-01-02 19:04:15 +00:00
|
|
|
{
|
2002-08-26 21:15:11 +00:00
|
|
|
PyObject *m;
|
2007-10-15 16:08:26 +00:00
|
|
|
PyObject *path;
|
2001-10-16 20:07:34 +00:00
|
|
|
char *lastdot, *shortname, *packagecontext, *oldcontext;
|
2008-06-11 05:26:20 +00:00
|
|
|
dl_funcptr p0;
|
|
|
|
PyObject* (*p)(void);
|
|
|
|
struct PyModuleDef *def;
|
1999-12-20 21:20:42 +00:00
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
if ((m = _PyImport_FindExtension(name, pathname)) != NULL) {
|
|
|
|
Py_INCREF(m);
|
|
|
|
return m;
|
|
|
|
}
|
1997-11-19 18:53:33 +00:00
|
|
|
lastdot = strrchr(name, '.');
|
|
|
|
if (lastdot == NULL) {
|
|
|
|
packagecontext = NULL;
|
|
|
|
shortname = name;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
packagecontext = name;
|
|
|
|
shortname = lastdot+1;
|
|
|
|
}
|
1995-07-18 14:40:09 +00:00
|
|
|
|
2008-06-11 05:26:20 +00:00
|
|
|
p0 = _PyImport_GetDynLoadFunc(name, shortname, pathname, fp);
|
|
|
|
p = (PyObject*(*)(void))p0;
|
1999-12-20 21:20:42 +00:00
|
|
|
if (PyErr_Occurred())
|
1995-01-02 19:04:15 +00:00
|
|
|
return NULL;
|
|
|
|
if (p == NULL) {
|
1997-11-19 18:53:33 +00:00
|
|
|
PyErr_Format(PyExc_ImportError,
|
2008-06-11 05:26:20 +00:00
|
|
|
"dynamic module does not define init function (PyInit_%.200s)",
|
1999-12-22 14:09:35 +00:00
|
|
|
shortname);
|
1995-01-02 19:04:15 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2001-10-16 20:07:34 +00:00
|
|
|
oldcontext = _Py_PackageContext;
|
1997-11-19 18:53:33 +00:00
|
|
|
_Py_PackageContext = packagecontext;
|
2008-06-11 05:26:20 +00:00
|
|
|
m = (*p)();
|
2001-10-16 20:07:34 +00:00
|
|
|
_Py_PackageContext = oldcontext;
|
2008-06-11 05:26:20 +00:00
|
|
|
if (m == NULL)
|
1997-08-02 03:10:38 +00:00
|
|
|
return NULL;
|
1995-01-02 19:04:15 +00:00
|
|
|
|
2008-06-11 05:26:20 +00:00
|
|
|
if (PyErr_Occurred()) {
|
|
|
|
Py_DECREF(m);
|
|
|
|
PyErr_Format(PyExc_SystemError,
|
|
|
|
"initialization of %s raised unreported exception",
|
|
|
|
shortname);
|
1995-01-02 19:04:15 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-06-11 05:26:20 +00:00
|
|
|
|
|
|
|
/* Remember pointer to module init function. */
|
|
|
|
def = PyModule_GetDef(m);
|
|
|
|
def->m_base.m_init = p;
|
|
|
|
|
1996-08-19 22:12:10 +00:00
|
|
|
/* Remember the filename as the __file__ attribute */
|
2007-10-15 02:52:41 +00:00
|
|
|
path = PyUnicode_DecodeFSDefault(pathname);
|
|
|
|
if (PyModule_AddObject(m, "__file__", path) < 0)
|
1997-04-29 20:08:16 +00:00
|
|
|
PyErr_Clear(); /* Not important enough to report */
|
2003-09-04 18:45:59 +00:00
|
|
|
|
2008-06-11 05:26:20 +00:00
|
|
|
if (_PyImport_FixupExtension(m, name, pathname) < 0)
|
2003-09-04 18:45:59 +00:00
|
|
|
return NULL;
|
1997-04-29 20:08:16 +00:00
|
|
|
if (Py_VerboseFlag)
|
1998-10-12 18:23:55 +00:00
|
|
|
PySys_WriteStderr(
|
1995-01-02 19:04:15 +00:00
|
|
|
"import %s # dynamically loaded from %s\n",
|
|
|
|
name, pathname);
|
|
|
|
return m;
|
1998-08-04 22:46:29 +00:00
|
|
|
}
|
1999-12-22 14:09:35 +00:00
|
|
|
|
|
|
|
#endif /* HAVE_DYNAMIC_LOADING */
|