Use full package paths in imports.
[python/dscho.git] / Python / importdl.c
blob9255bbf58453db8f75199ad6390a2fb989023a9f
2 /* Support for dynamic loading of extension modules */
4 #include "Python.h"
6 /* ./configure sets HAVE_DYNAMIC_LOADING if dynamic loading of modules is
7 supported on this platform. configure will then compile and link in one
8 of the dynload_*.c files, as appropriate. We will call a function in
9 those modules to get a function pointer to the module's init function.
11 #ifdef HAVE_DYNAMIC_LOADING
13 #include "importdl.h"
15 extern dl_funcptr _PyImport_GetDynLoadFunc(const char *name,
16 const char *shortname,
17 const char *pathname, FILE *fp);
21 PyObject *
22 _PyImport_LoadDynamicModule(char *name, char *pathname, FILE *fp)
24 PyObject *m, *d, *s;
25 char *lastdot, *shortname, *packagecontext, *oldcontext;
26 dl_funcptr p;
28 if ((m = _PyImport_FindExtension(name, pathname)) != NULL) {
29 Py_INCREF(m);
30 return m;
32 lastdot = strrchr(name, '.');
33 if (lastdot == NULL) {
34 packagecontext = NULL;
35 shortname = name;
37 else {
38 packagecontext = name;
39 shortname = lastdot+1;
42 p = _PyImport_GetDynLoadFunc(name, shortname, pathname, fp);
43 if (PyErr_Occurred())
44 return NULL;
45 if (p == NULL) {
46 PyErr_Format(PyExc_ImportError,
47 "dynamic module does not define init function (init%.200s)",
48 shortname);
49 return NULL;
51 oldcontext = _Py_PackageContext;
52 _Py_PackageContext = packagecontext;
53 (*p)();
54 _Py_PackageContext = oldcontext;
55 if (PyErr_Occurred())
56 return NULL;
57 if (_PyImport_FixupExtension(name, pathname) == NULL)
58 return NULL;
60 m = PyDict_GetItemString(PyImport_GetModuleDict(), name);
61 if (m == NULL) {
62 PyErr_SetString(PyExc_SystemError,
63 "dynamic module not initialized properly");
64 return NULL;
66 /* Remember the filename as the __file__ attribute */
67 d = PyModule_GetDict(m);
68 s = PyString_FromString(pathname);
69 if (s == NULL || PyDict_SetItemString(d, "__file__", s) != 0)
70 PyErr_Clear(); /* Not important enough to report */
71 Py_XDECREF(s);
72 if (Py_VerboseFlag)
73 PySys_WriteStderr(
74 "import %s # dynamically loaded from %s\n",
75 name, pathname);
76 Py_INCREF(m);
77 return m;
80 #endif /* HAVE_DYNAMIC_LOADING */