blob: c49a91fc6a6ba02bbca83f9ac3daba604a5978a1 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002/* Module definition and import implementation */
3
Guido van Rossum79f25d91997-04-29 20:08:16 +00004#include "Python.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00006#include "Python-ast.h"
Neal Norwitzadb69fc2005-12-17 20:54:49 +00007#include "pyarena.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00008#include "pythonrun.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00009#include "errcode.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +000010#include "marshal.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000011#include "code.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +000012#include "compile.h"
Guido van Rossumff4949e1992-08-05 19:58:53 +000013#include "eval.h"
Guido van Rossumd8bac6d1992-02-26 15:19:13 +000014#include "osdefs.h"
Guido van Rossum1ae940a1995-01-02 19:04:15 +000015#include "importdl.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +000016
Guido van Rossum55a83382000-09-20 20:31:38 +000017#ifdef HAVE_FCNTL_H
18#include <fcntl.h>
19#endif
Anthony Baxterac6bd462006-04-13 02:06:09 +000020#ifdef __cplusplus
21extern "C" {
22#endif
Guido van Rossum55a83382000-09-20 20:31:38 +000023
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000024extern time_t PyOS_GetLastModificationTime(char *, FILE *);
25 /* In getmtime.c */
Guido van Rossum21d335e1993-10-15 13:01:11 +000026
Jeremy Hyltond4ceb312004-04-01 02:45:22 +000027/* Magic word to reject .pyc files generated by other Python versions.
28 It should change for each incompatible change to the bytecode.
29
30 The value of CR and LF is incorporated so if you ever read or write
Guido van Rossum7faeab31995-07-07 22:50:36 +000031 a .pyc file in text mode the magic number will be wrong; also, the
Tim Peters36515e22001-11-18 04:06:29 +000032 Apple MPW compiler swaps their values, botching string constants.
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000033
Martin v. Löwisef82d2f2004-06-27 16:51:46 +000034 The magic numbers must be spaced apart atleast 2 values, as the
35 -U interpeter flag will cause MAGIC+1 being used. They have been
36 odd numbers for some time now.
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000037
Jeremy Hyltond4ceb312004-04-01 02:45:22 +000038 There were a variety of old schemes for setting the magic number.
39 The current working scheme is to increment the previous value by
40 10.
Guido van Rossumf6894922002-08-31 15:16:14 +000041
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000042 Known values:
43 Python 1.5: 20121
44 Python 1.5.1: 20121
45 Python 1.5.2: 20121
Skip Montanaro4ec3c262006-03-25 14:12:03 +000046 Python 1.6: 50428
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000047 Python 2.0: 50823
48 Python 2.0.1: 50823
49 Python 2.1: 60202
50 Python 2.1.1: 60202
51 Python 2.1.2: 60202
52 Python 2.2: 60717
Neal Norwitz7fdcb412002-06-14 01:07:39 +000053 Python 2.3a0: 62011
Michael W. Hudsondd32a912002-08-15 14:59:02 +000054 Python 2.3a0: 62021
Guido van Rossumf6894922002-08-31 15:16:14 +000055 Python 2.3a0: 62011 (!)
Martin v. Löwisef82d2f2004-06-27 16:51:46 +000056 Python 2.4a0: 62041
Raymond Hettingerfd2d1f72004-08-23 23:37:48 +000057 Python 2.4a3: 62051
Raymond Hettinger2c31a052004-09-22 18:44:21 +000058 Python 2.4b1: 62061
Michael W. Hudsondf888462005-06-03 14:41:55 +000059 Python 2.5a0: 62071
Michael W. Hudsonaee2e282005-10-21 11:32:20 +000060 Python 2.5a0: 62081 (ast-branch)
Guido van Rossumc2e20742006-02-27 22:32:47 +000061 Python 2.5a0: 62091 (with)
Guido van Rossumf6694362006-03-10 02:28:35 +000062 Python 2.5a0: 62092 (changed WITH_CLEANUP opcode)
Michael W. Hudsonaee2e282005-10-21 11:32:20 +000063.
Tim Peters36515e22001-11-18 04:06:29 +000064*/
Thomas Woutersf7f438b2006-02-28 16:09:29 +000065#define MAGIC (62092 | ((long)'\r'<<16) | ((long)'\n'<<24))
Guido van Rossum3ddee711991-12-16 13:06:34 +000066
Guido van Rossum96774c12000-05-01 20:19:08 +000067/* Magic word as global; note that _PyImport_Init() can change the
Jeremy Hylton9262b8a2000-06-30 04:59:17 +000068 value of this global to accommodate for alterations of how the
Guido van Rossum96774c12000-05-01 20:19:08 +000069 compiler works which are enabled by command line switches. */
70static long pyc_magic = MAGIC;
71
Guido van Rossum25ce5661997-08-02 03:10:38 +000072/* See _PyImport_FixupExtension() below */
73static PyObject *extensions = NULL;
Guido van Rossum3f5da241990-12-20 15:06:42 +000074
Guido van Rossum771c6c81997-10-31 18:37:24 +000075/* This table is defined in config.c: */
76extern struct _inittab _PyImport_Inittab[];
77
78struct _inittab *PyImport_Inittab = _PyImport_Inittab;
Guido van Rossum66f1fa81991-04-03 19:03:52 +000079
Guido van Rossumed1170e1999-12-20 21:23:41 +000080/* these tables define the module suffixes that Python recognizes */
81struct filedescr * _PyImport_Filetab = NULL;
Guido van Rossum48a680c2001-03-02 06:34:14 +000082
83#ifdef RISCOS
84static const struct filedescr _PyImport_StandardFiletab[] = {
Jack Jansenc88da1f2002-05-28 10:58:19 +000085 {"/py", "U", PY_SOURCE},
Guido van Rossum48a680c2001-03-02 06:34:14 +000086 {"/pyc", "rb", PY_COMPILED},
87 {0, 0}
88};
89#else
Guido van Rossumed1170e1999-12-20 21:23:41 +000090static const struct filedescr _PyImport_StandardFiletab[] = {
Jack Jansenc88da1f2002-05-28 10:58:19 +000091 {".py", "U", PY_SOURCE},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000092#ifdef MS_WINDOWS
Jack Jansenc88da1f2002-05-28 10:58:19 +000093 {".pyw", "U", PY_SOURCE},
Tim Peters36515e22001-11-18 04:06:29 +000094#endif
Guido van Rossumed1170e1999-12-20 21:23:41 +000095 {".pyc", "rb", PY_COMPILED},
96 {0, 0}
97};
Guido van Rossum48a680c2001-03-02 06:34:14 +000098#endif
Guido van Rossumed1170e1999-12-20 21:23:41 +000099
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000100/* Initialize things */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000101
102void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000103_PyImport_Init(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000104{
Guido van Rossumed1170e1999-12-20 21:23:41 +0000105 const struct filedescr *scan;
106 struct filedescr *filetab;
107 int countD = 0;
108 int countS = 0;
109
110 /* prepare _PyImport_Filetab: copy entries from
111 _PyImport_DynLoadFiletab and _PyImport_StandardFiletab.
112 */
113 for (scan = _PyImport_DynLoadFiletab; scan->suffix != NULL; ++scan)
114 ++countD;
115 for (scan = _PyImport_StandardFiletab; scan->suffix != NULL; ++scan)
116 ++countS;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000117 filetab = PyMem_NEW(struct filedescr, countD + countS + 1);
Guido van Rossumed1170e1999-12-20 21:23:41 +0000118 memcpy(filetab, _PyImport_DynLoadFiletab,
119 countD * sizeof(struct filedescr));
120 memcpy(filetab + countD, _PyImport_StandardFiletab,
121 countS * sizeof(struct filedescr));
122 filetab[countD + countS].suffix = NULL;
123
124 _PyImport_Filetab = filetab;
125
Guido van Rossum0824f631997-03-11 18:37:35 +0000126 if (Py_OptimizeFlag) {
Guido van Rossumed1170e1999-12-20 21:23:41 +0000127 /* Replace ".pyc" with ".pyo" in _PyImport_Filetab */
128 for (; filetab->suffix != NULL; filetab++) {
Guido van Rossum48a680c2001-03-02 06:34:14 +0000129#ifndef RISCOS
Guido van Rossumed1170e1999-12-20 21:23:41 +0000130 if (strcmp(filetab->suffix, ".pyc") == 0)
131 filetab->suffix = ".pyo";
Guido van Rossum48a680c2001-03-02 06:34:14 +0000132#else
133 if (strcmp(filetab->suffix, "/pyc") == 0)
134 filetab->suffix = "/pyo";
135#endif
Guido van Rossum0824f631997-03-11 18:37:35 +0000136 }
137 }
Guido van Rossum96774c12000-05-01 20:19:08 +0000138
139 if (Py_UnicodeFlag) {
140 /* Fix the pyc_magic so that byte compiled code created
141 using the all-Unicode method doesn't interfere with
142 code created in normal operation mode. */
143 pyc_magic = MAGIC + 1;
144 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000145}
146
Guido van Rossum25ce5661997-08-02 03:10:38 +0000147void
Just van Rossum52e14d62002-12-30 22:08:05 +0000148_PyImportHooks_Init(void)
149{
150 PyObject *v, *path_hooks = NULL, *zimpimport;
151 int err = 0;
152
153 /* adding sys.path_hooks and sys.path_importer_cache, setting up
154 zipimport */
155
156 if (Py_VerboseFlag)
157 PySys_WriteStderr("# installing zipimport hook\n");
158
159 v = PyList_New(0);
160 if (v == NULL)
161 goto error;
162 err = PySys_SetObject("meta_path", v);
163 Py_DECREF(v);
164 if (err)
165 goto error;
166 v = PyDict_New();
167 if (v == NULL)
168 goto error;
169 err = PySys_SetObject("path_importer_cache", v);
170 Py_DECREF(v);
171 if (err)
172 goto error;
173 path_hooks = PyList_New(0);
174 if (path_hooks == NULL)
175 goto error;
176 err = PySys_SetObject("path_hooks", path_hooks);
177 if (err) {
178 error:
179 PyErr_Print();
180 Py_FatalError("initializing sys.meta_path, sys.path_hooks or "
181 "path_importer_cache failed");
182 }
183 zimpimport = PyImport_ImportModule("zipimport");
184 if (zimpimport == NULL) {
185 PyErr_Clear(); /* No zip import module -- okay */
186 if (Py_VerboseFlag)
187 PySys_WriteStderr("# can't import zipimport\n");
188 }
189 else {
190 PyObject *zipimporter = PyObject_GetAttrString(zimpimport,
191 "zipimporter");
192 Py_DECREF(zimpimport);
193 if (zipimporter == NULL) {
194 PyErr_Clear(); /* No zipimporter object -- okay */
195 if (Py_VerboseFlag)
196 PySys_WriteStderr(
Fred Drake1e5fc552003-07-11 15:01:02 +0000197 "# can't import zipimport.zipimporter\n");
Just van Rossum52e14d62002-12-30 22:08:05 +0000198 }
199 else {
200 /* sys.path_hooks.append(zipimporter) */
201 err = PyList_Append(path_hooks, zipimporter);
202 Py_DECREF(zipimporter);
203 if (err)
204 goto error;
205 if (Py_VerboseFlag)
206 PySys_WriteStderr(
207 "# installed zipimport hook\n");
208 }
209 }
210 Py_DECREF(path_hooks);
211}
212
213void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000214_PyImport_Fini(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000215{
216 Py_XDECREF(extensions);
217 extensions = NULL;
Barry Warsaw84294482000-10-03 16:02:05 +0000218 PyMem_DEL(_PyImport_Filetab);
219 _PyImport_Filetab = NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000220}
221
222
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000223/* Locking primitives to prevent parallel imports of the same module
224 in different threads to return with a partially loaded module.
225 These calls are serialized by the global interpreter lock. */
226
227#ifdef WITH_THREAD
228
Guido van Rossum49b56061998-10-01 20:42:43 +0000229#include "pythread.h"
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000230
Guido van Rossum65d5b571998-12-21 19:32:43 +0000231static PyThread_type_lock import_lock = 0;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000232static long import_lock_thread = -1;
233static int import_lock_level = 0;
234
235static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000236lock_import(void)
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000237{
Guido van Rossum65d5b571998-12-21 19:32:43 +0000238 long me = PyThread_get_thread_ident();
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000239 if (me == -1)
240 return; /* Too bad */
241 if (import_lock == NULL)
Guido van Rossum65d5b571998-12-21 19:32:43 +0000242 import_lock = PyThread_allocate_lock();
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000243 if (import_lock_thread == me) {
244 import_lock_level++;
245 return;
246 }
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000247 if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0))
248 {
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000249 PyThreadState *tstate = PyEval_SaveThread();
Guido van Rossum65d5b571998-12-21 19:32:43 +0000250 PyThread_acquire_lock(import_lock, 1);
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000251 PyEval_RestoreThread(tstate);
252 }
253 import_lock_thread = me;
254 import_lock_level = 1;
255}
256
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000257static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000258unlock_import(void)
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000259{
Guido van Rossum65d5b571998-12-21 19:32:43 +0000260 long me = PyThread_get_thread_ident();
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000261 if (me == -1)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000262 return 0; /* Too bad */
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000263 if (import_lock_thread != me)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000264 return -1;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000265 import_lock_level--;
266 if (import_lock_level == 0) {
267 import_lock_thread = -1;
Guido van Rossum65d5b571998-12-21 19:32:43 +0000268 PyThread_release_lock(import_lock);
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000269 }
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000270 return 1;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000271}
272
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000273/* This function is called from PyOS_AfterFork to ensure that newly
274 created child processes do not share locks with the parent. */
275
276void
277_PyImport_ReInitLock(void)
278{
279#ifdef _AIX
280 if (import_lock != NULL)
281 import_lock = PyThread_allocate_lock();
282#endif
283}
284
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000285#else
286
287#define lock_import()
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000288#define unlock_import() 0
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000289
290#endif
291
Tim Peters69232342001-08-30 05:16:13 +0000292static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000293imp_lock_held(PyObject *self, PyObject *noargs)
Tim Peters69232342001-08-30 05:16:13 +0000294{
Tim Peters69232342001-08-30 05:16:13 +0000295#ifdef WITH_THREAD
Guido van Rossumb8bff3f2002-04-07 06:34:38 +0000296 return PyBool_FromLong(import_lock_thread != -1);
Tim Peters69232342001-08-30 05:16:13 +0000297#else
Guido van Rossumb8bff3f2002-04-07 06:34:38 +0000298 return PyBool_FromLong(0);
Tim Peters69232342001-08-30 05:16:13 +0000299#endif
300}
301
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000302static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000303imp_acquire_lock(PyObject *self, PyObject *noargs)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000304{
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000305#ifdef WITH_THREAD
306 lock_import();
307#endif
Neal Norwitz2294c0d2003-02-12 23:02:21 +0000308 Py_INCREF(Py_None);
309 return Py_None;
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000310}
311
312static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000313imp_release_lock(PyObject *self, PyObject *noargs)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000314{
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000315#ifdef WITH_THREAD
316 if (unlock_import() < 0) {
317 PyErr_SetString(PyExc_RuntimeError,
318 "not holding the import lock");
319 return NULL;
320 }
321#endif
Neal Norwitz2294c0d2003-02-12 23:02:21 +0000322 Py_INCREF(Py_None);
323 return Py_None;
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000324}
325
Guido van Rossum25ce5661997-08-02 03:10:38 +0000326/* Helper for sys */
327
328PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000329PyImport_GetModuleDict(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000330{
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000331 PyInterpreterState *interp = PyThreadState_GET()->interp;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000332 if (interp->modules == NULL)
333 Py_FatalError("PyImport_GetModuleDict: no module dictionary!");
334 return interp->modules;
335}
336
Guido van Rossum3f5da241990-12-20 15:06:42 +0000337
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000338/* List of names to clear in sys */
339static char* sys_deletes[] = {
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000340 "path", "argv", "ps1", "ps2", "exitfunc",
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000341 "exc_type", "exc_value", "exc_traceback",
342 "last_type", "last_value", "last_traceback",
Just van Rossum52e14d62002-12-30 22:08:05 +0000343 "path_hooks", "path_importer_cache", "meta_path",
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000344 NULL
345};
346
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000347static char* sys_files[] = {
348 "stdin", "__stdin__",
349 "stdout", "__stdout__",
350 "stderr", "__stderr__",
351 NULL
352};
353
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000354
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000355/* Un-initialize things, as good as we can */
Guido van Rossum3f5da241990-12-20 15:06:42 +0000356
Guido van Rossum3f5da241990-12-20 15:06:42 +0000357void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000358PyImport_Cleanup(void)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000359{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000360 Py_ssize_t pos, ndone;
Guido van Rossum758eec01998-01-19 21:58:26 +0000361 char *name;
362 PyObject *key, *value, *dict;
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000363 PyInterpreterState *interp = PyThreadState_GET()->interp;
Guido van Rossum758eec01998-01-19 21:58:26 +0000364 PyObject *modules = interp->modules;
365
366 if (modules == NULL)
367 return; /* Already done */
368
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000369 /* Delete some special variables first. These are common
370 places where user values hide and people complain when their
371 destructors fail. Since the modules containing them are
372 deleted *last* of all, they would come too late in the normal
373 destruction order. Sigh. */
374
375 value = PyDict_GetItemString(modules, "__builtin__");
376 if (value != NULL && PyModule_Check(value)) {
377 dict = PyModule_GetDict(value);
378 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000379 PySys_WriteStderr("# clear __builtin__._\n");
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000380 PyDict_SetItemString(dict, "_", Py_None);
381 }
382 value = PyDict_GetItemString(modules, "sys");
383 if (value != NULL && PyModule_Check(value)) {
384 char **p;
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000385 PyObject *v;
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000386 dict = PyModule_GetDict(value);
387 for (p = sys_deletes; *p != NULL; p++) {
388 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000389 PySys_WriteStderr("# clear sys.%s\n", *p);
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000390 PyDict_SetItemString(dict, *p, Py_None);
391 }
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000392 for (p = sys_files; *p != NULL; p+=2) {
393 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000394 PySys_WriteStderr("# restore sys.%s\n", *p);
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000395 v = PyDict_GetItemString(dict, *(p+1));
396 if (v == NULL)
397 v = Py_None;
398 PyDict_SetItemString(dict, *p, v);
399 }
400 }
401
402 /* First, delete __main__ */
403 value = PyDict_GetItemString(modules, "__main__");
404 if (value != NULL && PyModule_Check(value)) {
405 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000406 PySys_WriteStderr("# cleanup __main__\n");
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000407 _PyModule_Clear(value);
408 PyDict_SetItemString(modules, "__main__", Py_None);
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000409 }
410
Guido van Rossum758eec01998-01-19 21:58:26 +0000411 /* The special treatment of __builtin__ here is because even
412 when it's not referenced as a module, its dictionary is
413 referenced by almost every module's __builtins__. Since
414 deleting a module clears its dictionary (even if there are
415 references left to it), we need to delete the __builtin__
416 module last. Likewise, we don't delete sys until the very
417 end because it is implicitly referenced (e.g. by print).
418
419 Also note that we 'delete' modules by replacing their entry
420 in the modules dict with None, rather than really deleting
421 them; this avoids a rehash of the modules dictionary and
422 also marks them as "non existent" so they won't be
423 re-imported. */
424
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000425 /* Next, repeatedly delete modules with a reference count of
Guido van Rossum758eec01998-01-19 21:58:26 +0000426 one (skipping __builtin__ and sys) and delete them */
427 do {
428 ndone = 0;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000429 pos = 0;
Guido van Rossum758eec01998-01-19 21:58:26 +0000430 while (PyDict_Next(modules, &pos, &key, &value)) {
431 if (value->ob_refcnt != 1)
432 continue;
Guido van Rossum566373e1998-10-01 15:24:50 +0000433 if (PyString_Check(key) && PyModule_Check(value)) {
434 name = PyString_AS_STRING(key);
Guido van Rossum758eec01998-01-19 21:58:26 +0000435 if (strcmp(name, "__builtin__") == 0)
436 continue;
437 if (strcmp(name, "sys") == 0)
438 continue;
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000439 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000440 PySys_WriteStderr(
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000441 "# cleanup[1] %s\n", name);
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000442 _PyModule_Clear(value);
Guido van Rossum758eec01998-01-19 21:58:26 +0000443 PyDict_SetItem(modules, key, Py_None);
444 ndone++;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000445 }
446 }
Guido van Rossum758eec01998-01-19 21:58:26 +0000447 } while (ndone > 0);
448
Guido van Rossum758eec01998-01-19 21:58:26 +0000449 /* Next, delete all modules (still skipping __builtin__ and sys) */
450 pos = 0;
451 while (PyDict_Next(modules, &pos, &key, &value)) {
Guido van Rossum566373e1998-10-01 15:24:50 +0000452 if (PyString_Check(key) && PyModule_Check(value)) {
453 name = PyString_AS_STRING(key);
Guido van Rossum758eec01998-01-19 21:58:26 +0000454 if (strcmp(name, "__builtin__") == 0)
455 continue;
456 if (strcmp(name, "sys") == 0)
457 continue;
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000458 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000459 PySys_WriteStderr("# cleanup[2] %s\n", name);
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000460 _PyModule_Clear(value);
Guido van Rossum758eec01998-01-19 21:58:26 +0000461 PyDict_SetItem(modules, key, Py_None);
462 }
463 }
464
465 /* Next, delete sys and __builtin__ (in that order) */
466 value = PyDict_GetItemString(modules, "sys");
467 if (value != NULL && PyModule_Check(value)) {
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000468 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000469 PySys_WriteStderr("# cleanup sys\n");
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000470 _PyModule_Clear(value);
Guido van Rossum758eec01998-01-19 21:58:26 +0000471 PyDict_SetItemString(modules, "sys", Py_None);
472 }
473 value = PyDict_GetItemString(modules, "__builtin__");
474 if (value != NULL && PyModule_Check(value)) {
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000475 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000476 PySys_WriteStderr("# cleanup __builtin__\n");
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000477 _PyModule_Clear(value);
Guido van Rossum758eec01998-01-19 21:58:26 +0000478 PyDict_SetItemString(modules, "__builtin__", Py_None);
479 }
480
481 /* Finally, clear and delete the modules directory */
482 PyDict_Clear(modules);
483 interp->modules = NULL;
484 Py_DECREF(modules);
Guido van Rossum8d15b5d1990-10-26 14:58:58 +0000485}
Guido van Rossum7f133ed1991-02-19 12:23:57 +0000486
487
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000488/* Helper for pythonrun.c -- return magic number */
489
490long
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000491PyImport_GetMagicNumber(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000492{
Guido van Rossum96774c12000-05-01 20:19:08 +0000493 return pyc_magic;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000494}
495
496
Guido van Rossum25ce5661997-08-02 03:10:38 +0000497/* Magic for extension modules (built-in as well as dynamically
498 loaded). To prevent initializing an extension module more than
499 once, we keep a static dictionary 'extensions' keyed by module name
500 (for built-in modules) or by filename (for dynamically loaded
Barry Warsaw92883382001-08-13 23:05:44 +0000501 modules), containing these modules. A copy of the module's
Guido van Rossum25ce5661997-08-02 03:10:38 +0000502 dictionary is stored by calling _PyImport_FixupExtension()
503 immediately after the module initialization function succeeds. A
504 copy can be retrieved from there by calling
505 _PyImport_FindExtension(). */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000506
Guido van Rossum79f25d91997-04-29 20:08:16 +0000507PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000508_PyImport_FixupExtension(char *name, char *filename)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000509{
Guido van Rossum25ce5661997-08-02 03:10:38 +0000510 PyObject *modules, *mod, *dict, *copy;
511 if (extensions == NULL) {
512 extensions = PyDict_New();
513 if (extensions == NULL)
514 return NULL;
515 }
516 modules = PyImport_GetModuleDict();
517 mod = PyDict_GetItemString(modules, name);
518 if (mod == NULL || !PyModule_Check(mod)) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000519 PyErr_Format(PyExc_SystemError,
520 "_PyImport_FixupExtension: module %.200s not loaded", name);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000521 return NULL;
522 }
523 dict = PyModule_GetDict(mod);
524 if (dict == NULL)
525 return NULL;
Fred Drake9cd0efc2001-10-25 21:38:59 +0000526 copy = PyDict_Copy(dict);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000527 if (copy == NULL)
528 return NULL;
529 PyDict_SetItemString(extensions, filename, copy);
530 Py_DECREF(copy);
531 return copy;
532}
533
534PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000535_PyImport_FindExtension(char *name, char *filename)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000536{
Fred Drake9cd0efc2001-10-25 21:38:59 +0000537 PyObject *dict, *mod, *mdict;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000538 if (extensions == NULL)
539 return NULL;
540 dict = PyDict_GetItemString(extensions, filename);
541 if (dict == NULL)
542 return NULL;
543 mod = PyImport_AddModule(name);
544 if (mod == NULL)
545 return NULL;
546 mdict = PyModule_GetDict(mod);
547 if (mdict == NULL)
548 return NULL;
Fred Drake9cd0efc2001-10-25 21:38:59 +0000549 if (PyDict_Update(mdict, dict))
Guido van Rossum25ce5661997-08-02 03:10:38 +0000550 return NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000551 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000552 PySys_WriteStderr("import %s # previously loaded (%s)\n",
Guido van Rossum25ce5661997-08-02 03:10:38 +0000553 name, filename);
554 return mod;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000555}
556
557
558/* Get the module object corresponding to a module name.
559 First check the modules dictionary if there's one there,
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +0000560 if not, create a new one and insert it in the modules dictionary.
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000561 Because the former action is most common, THIS DOES NOT RETURN A
562 'NEW' REFERENCE! */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000563
Guido van Rossum79f25d91997-04-29 20:08:16 +0000564PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000565PyImport_AddModule(const char *name)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000566{
Guido van Rossum25ce5661997-08-02 03:10:38 +0000567 PyObject *modules = PyImport_GetModuleDict();
Guido van Rossum79f25d91997-04-29 20:08:16 +0000568 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000569
Guido van Rossum25ce5661997-08-02 03:10:38 +0000570 if ((m = PyDict_GetItemString(modules, name)) != NULL &&
Guido van Rossum79f25d91997-04-29 20:08:16 +0000571 PyModule_Check(m))
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000572 return m;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000573 m = PyModule_New(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000574 if (m == NULL)
575 return NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000576 if (PyDict_SetItemString(modules, name, m) != 0) {
Guido van Rossum79f25d91997-04-29 20:08:16 +0000577 Py_DECREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000578 return NULL;
579 }
Guido van Rossum79f25d91997-04-29 20:08:16 +0000580 Py_DECREF(m); /* Yes, it still exists, in modules! */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000581
582 return m;
583}
584
Tim Peters1cd70172004-08-02 03:52:12 +0000585/* Remove name from sys.modules, if it's there. */
586static void
587_RemoveModule(const char *name)
588{
589 PyObject *modules = PyImport_GetModuleDict();
590 if (PyDict_GetItemString(modules, name) == NULL)
591 return;
592 if (PyDict_DelItemString(modules, name) < 0)
593 Py_FatalError("import: deleting existing key in"
594 "sys.modules failed");
595}
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000596
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000597/* Execute a code object in a module and return the module object
Tim Peters1cd70172004-08-02 03:52:12 +0000598 * WITH INCREMENTED REFERENCE COUNT. If an error occurs, name is
599 * removed from sys.modules, to avoid leaving damaged module objects
600 * in sys.modules. The caller may wish to restore the original
601 * module object (if any) in this case; PyImport_ReloadModule is an
602 * example.
603 */
Guido van Rossum79f25d91997-04-29 20:08:16 +0000604PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000605PyImport_ExecCodeModule(char *name, PyObject *co)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000606{
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000607 return PyImport_ExecCodeModuleEx(name, co, (char *)NULL);
608}
609
610PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000611PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname)
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000612{
Guido van Rossum25ce5661997-08-02 03:10:38 +0000613 PyObject *modules = PyImport_GetModuleDict();
Guido van Rossum79f25d91997-04-29 20:08:16 +0000614 PyObject *m, *d, *v;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000615
Guido van Rossum79f25d91997-04-29 20:08:16 +0000616 m = PyImport_AddModule(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000617 if (m == NULL)
618 return NULL;
Jeremy Hyltonecd91292004-01-02 23:25:32 +0000619 /* If the module is being reloaded, we get the old module back
620 and re-use its dict to exec the new code. */
Guido van Rossum79f25d91997-04-29 20:08:16 +0000621 d = PyModule_GetDict(m);
622 if (PyDict_GetItemString(d, "__builtins__") == NULL) {
623 if (PyDict_SetItemString(d, "__builtins__",
624 PyEval_GetBuiltins()) != 0)
Tim Peters1cd70172004-08-02 03:52:12 +0000625 goto error;
Guido van Rossum6135a871995-01-09 17:53:26 +0000626 }
Guido van Rossum9c9a07c1996-05-16 20:43:40 +0000627 /* Remember the filename as the __file__ attribute */
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000628 v = NULL;
629 if (pathname != NULL) {
630 v = PyString_FromString(pathname);
631 if (v == NULL)
632 PyErr_Clear();
633 }
634 if (v == NULL) {
635 v = ((PyCodeObject *)co)->co_filename;
636 Py_INCREF(v);
637 }
638 if (PyDict_SetItemString(d, "__file__", v) != 0)
Guido van Rossum79f25d91997-04-29 20:08:16 +0000639 PyErr_Clear(); /* Not important enough to report */
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000640 Py_DECREF(v);
641
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000642 v = PyEval_EvalCode((PyCodeObject *)co, d, d);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000643 if (v == NULL)
Tim Peters1cd70172004-08-02 03:52:12 +0000644 goto error;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000645 Py_DECREF(v);
Guido van Rossumb65e85c1997-07-10 18:00:45 +0000646
Guido van Rossum25ce5661997-08-02 03:10:38 +0000647 if ((m = PyDict_GetItemString(modules, name)) == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000648 PyErr_Format(PyExc_ImportError,
649 "Loaded module %.200s not found in sys.modules",
650 name);
Guido van Rossumb65e85c1997-07-10 18:00:45 +0000651 return NULL;
652 }
653
Guido van Rossum79f25d91997-04-29 20:08:16 +0000654 Py_INCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000655
656 return m;
Tim Peters1cd70172004-08-02 03:52:12 +0000657
658 error:
659 _RemoveModule(name);
660 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000661}
662
663
664/* Given a pathname for a Python source file, fill a buffer with the
665 pathname for the corresponding compiled file. Return the pathname
666 for the compiled file, or NULL if there's no space in the buffer.
667 Doesn't set an exception. */
668
669static char *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000670make_compiled_pathname(char *pathname, char *buf, size_t buflen)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000671{
Tim Petersc1731372001-08-04 08:12:36 +0000672 size_t len = strlen(pathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000673 if (len+2 > buflen)
674 return NULL;
Tim Petersc1731372001-08-04 08:12:36 +0000675
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000676#ifdef MS_WINDOWS
Tim Petersc1731372001-08-04 08:12:36 +0000677 /* Treat .pyw as if it were .py. The case of ".pyw" must match
678 that used in _PyImport_StandardFiletab. */
679 if (len >= 4 && strcmp(&pathname[len-4], ".pyw") == 0)
680 --len; /* pretend 'w' isn't there */
681#endif
682 memcpy(buf, pathname, len);
683 buf[len] = Py_OptimizeFlag ? 'o' : 'c';
684 buf[len+1] = '\0';
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000685
686 return buf;
687}
688
689
690/* Given a pathname for a Python source file, its time of last
691 modification, and a pathname for a compiled file, check whether the
692 compiled file represents the same version of the source. If so,
693 return a FILE pointer for the compiled file, positioned just after
694 the header; if not, return NULL.
695 Doesn't set an exception. */
696
697static FILE *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000698check_compiled_module(char *pathname, time_t mtime, char *cpathname)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000699{
700 FILE *fp;
701 long magic;
702 long pyc_mtime;
703
704 fp = fopen(cpathname, "rb");
705 if (fp == NULL)
706 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000707 magic = PyMarshal_ReadLongFromFile(fp);
Guido van Rossum96774c12000-05-01 20:19:08 +0000708 if (magic != pyc_magic) {
Guido van Rossum79f25d91997-04-29 20:08:16 +0000709 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000710 PySys_WriteStderr("# %s has bad magic\n", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000711 fclose(fp);
712 return NULL;
713 }
Guido van Rossum79f25d91997-04-29 20:08:16 +0000714 pyc_mtime = PyMarshal_ReadLongFromFile(fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000715 if (pyc_mtime != mtime) {
Guido van Rossum79f25d91997-04-29 20:08:16 +0000716 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000717 PySys_WriteStderr("# %s has bad mtime\n", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000718 fclose(fp);
719 return NULL;
720 }
Guido van Rossum79f25d91997-04-29 20:08:16 +0000721 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000722 PySys_WriteStderr("# %s matches %s\n", cpathname, pathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000723 return fp;
724}
725
726
727/* Read a code object from a file and check it for validity */
728
Guido van Rossum79f25d91997-04-29 20:08:16 +0000729static PyCodeObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000730read_compiled_module(char *cpathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000731{
Guido van Rossum79f25d91997-04-29 20:08:16 +0000732 PyObject *co;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000733
Tim Petersd9b9ac82001-01-28 00:27:39 +0000734 co = PyMarshal_ReadLastObjectFromFile(fp);
Armin Rigo01ab2792004-03-26 15:09:27 +0000735 if (co == NULL)
736 return NULL;
737 if (!PyCode_Check(co)) {
738 PyErr_Format(PyExc_ImportError,
739 "Non-code object in %.200s", cpathname);
740 Py_DECREF(co);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000741 return NULL;
742 }
Guido van Rossum79f25d91997-04-29 20:08:16 +0000743 return (PyCodeObject *)co;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000744}
745
746
747/* Load a module from a compiled file, execute it, and return its
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000748 module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000749
Guido van Rossum79f25d91997-04-29 20:08:16 +0000750static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000751load_compiled_module(char *name, char *cpathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000752{
753 long magic;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000754 PyCodeObject *co;
755 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000756
Guido van Rossum79f25d91997-04-29 20:08:16 +0000757 magic = PyMarshal_ReadLongFromFile(fp);
Guido van Rossum96774c12000-05-01 20:19:08 +0000758 if (magic != pyc_magic) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000759 PyErr_Format(PyExc_ImportError,
760 "Bad magic number in %.200s", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000761 return NULL;
762 }
Guido van Rossum79f25d91997-04-29 20:08:16 +0000763 (void) PyMarshal_ReadLongFromFile(fp);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000764 co = read_compiled_module(cpathname, fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000765 if (co == NULL)
766 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000767 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000768 PySys_WriteStderr("import %s # precompiled from %s\n",
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000769 name, cpathname);
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000770 m = PyImport_ExecCodeModuleEx(name, (PyObject *)co, cpathname);
Guido van Rossum79f25d91997-04-29 20:08:16 +0000771 Py_DECREF(co);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000772
773 return m;
774}
775
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000776/* Parse a source file and return the corresponding code object */
777
Guido van Rossum79f25d91997-04-29 20:08:16 +0000778static PyCodeObject *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000779parse_source_module(const char *pathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000780{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000781 PyCodeObject *co = NULL;
782 mod_ty mod;
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000783 PyArena *arena = PyArena_New();
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000784
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000785 mod = PyParser_ASTFromFile(fp, pathname, Py_file_input, 0, 0, 0,
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000786 NULL, arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000787 if (mod) {
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000788 co = PyAST_Compile(mod, pathname, NULL, arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000789 }
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000790 PyArena_Free(arena);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000791 return co;
792}
793
794
Guido van Rossum55a83382000-09-20 20:31:38 +0000795/* Helper to open a bytecode file for writing in exclusive mode */
796
797static FILE *
798open_exclusive(char *filename)
799{
800#if defined(O_EXCL)&&defined(O_CREAT)&&defined(O_WRONLY)&&defined(O_TRUNC)
801 /* Use O_EXCL to avoid a race condition when another process tries to
802 write the same file. When that happens, our open() call fails,
803 which is just fine (since it's only a cache).
804 XXX If the file exists and is writable but the directory is not
805 writable, the file will never be written. Oh well.
806 */
807 int fd;
808 (void) unlink(filename);
Tim Peters42c83af2000-09-29 04:03:10 +0000809 fd = open(filename, O_EXCL|O_CREAT|O_WRONLY|O_TRUNC
810#ifdef O_BINARY
811 |O_BINARY /* necessary for Windows */
812#endif
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000813#ifdef __VMS
Martin v. Löwis18e16552006-02-15 17:27:45 +0000814 , 0666, "ctxt=bin", "shr=nil"
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000815#else
Martin v. Löwis18e16552006-02-15 17:27:45 +0000816 , 0666
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000817#endif
Martin v. Löwis18e16552006-02-15 17:27:45 +0000818 );
Guido van Rossum55a83382000-09-20 20:31:38 +0000819 if (fd < 0)
820 return NULL;
821 return fdopen(fd, "wb");
822#else
823 /* Best we can do -- on Windows this can't happen anyway */
824 return fopen(filename, "wb");
825#endif
826}
827
828
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000829/* Write a compiled module to a file, placing the time of last
830 modification of its source into the header.
831 Errors are ignored, if a write error occurs an attempt is made to
832 remove the file. */
833
834static void
Martin v. Löwis18e16552006-02-15 17:27:45 +0000835write_compiled_module(PyCodeObject *co, char *cpathname, time_t mtime)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000836{
837 FILE *fp;
838
Guido van Rossum55a83382000-09-20 20:31:38 +0000839 fp = open_exclusive(cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000840 if (fp == NULL) {
Guido van Rossum79f25d91997-04-29 20:08:16 +0000841 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000842 PySys_WriteStderr(
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000843 "# can't create %s\n", cpathname);
844 return;
845 }
Martin v. Löwisef82d2f2004-06-27 16:51:46 +0000846 PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000847 /* First write a 0 for mtime */
Martin v. Löwisef82d2f2004-06-27 16:51:46 +0000848 PyMarshal_WriteLongToFile(0L, fp, Py_MARSHAL_VERSION);
849 PyMarshal_WriteObjectToFile((PyObject *)co, fp, Py_MARSHAL_VERSION);
Armin Rigo01ab2792004-03-26 15:09:27 +0000850 if (fflush(fp) != 0 || ferror(fp)) {
Guido van Rossum79f25d91997-04-29 20:08:16 +0000851 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000852 PySys_WriteStderr("# can't write %s\n", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000853 /* Don't keep partial file */
854 fclose(fp);
855 (void) unlink(cpathname);
856 return;
857 }
858 /* Now write the true mtime */
859 fseek(fp, 4L, 0);
Martin v. Löwis18e16552006-02-15 17:27:45 +0000860 assert(mtime < LONG_MAX);
Martin v. Löwis725507b2006-03-07 12:08:51 +0000861 PyMarshal_WriteLongToFile((long)mtime, fp, Py_MARSHAL_VERSION);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000862 fflush(fp);
863 fclose(fp);
Guido van Rossum79f25d91997-04-29 20:08:16 +0000864 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000865 PySys_WriteStderr("# wrote %s\n", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000866}
867
868
869/* Load a source module from a given file and return its module
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000870 object WITH INCREMENTED REFERENCE COUNT. If there's a matching
871 byte-compiled file, use that instead. */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000872
Guido van Rossum79f25d91997-04-29 20:08:16 +0000873static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000874load_source_module(char *name, char *pathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000875{
Fred Drake4c82b232000-06-30 16:18:57 +0000876 time_t mtime;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000877 FILE *fpc;
878 char buf[MAXPATHLEN+1];
879 char *cpathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000880 PyCodeObject *co;
881 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000882
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000883 mtime = PyOS_GetLastModificationTime(pathname, fp);
Neal Norwitz708e51a2005-10-03 04:48:15 +0000884 if (mtime == (time_t)(-1)) {
885 PyErr_Format(PyExc_RuntimeError,
886 "unable to get modification time from '%s'",
887 pathname);
Fred Drake4c82b232000-06-30 16:18:57 +0000888 return NULL;
Neal Norwitz708e51a2005-10-03 04:48:15 +0000889 }
Fred Drake4c82b232000-06-30 16:18:57 +0000890#if SIZEOF_TIME_T > 4
891 /* Python's .pyc timestamp handling presumes that the timestamp fits
892 in 4 bytes. This will be fine until sometime in the year 2038,
893 when a 4-byte signed time_t will overflow.
894 */
895 if (mtime >> 32) {
896 PyErr_SetString(PyExc_OverflowError,
Fred Drakec63d3e92001-03-01 06:33:32 +0000897 "modification time overflows a 4 byte field");
Fred Drake4c82b232000-06-30 16:18:57 +0000898 return NULL;
899 }
900#endif
Tim Peters36515e22001-11-18 04:06:29 +0000901 cpathname = make_compiled_pathname(pathname, buf,
Jeremy Hylton37832f02001-04-13 17:50:20 +0000902 (size_t)MAXPATHLEN + 1);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000903 if (cpathname != NULL &&
904 (fpc = check_compiled_module(pathname, mtime, cpathname))) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000905 co = read_compiled_module(cpathname, fpc);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000906 fclose(fpc);
907 if (co == NULL)
908 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000909 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000910 PySys_WriteStderr("import %s # precompiled from %s\n",
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000911 name, cpathname);
Guido van Rossumafd3dae1998-08-25 18:44:34 +0000912 pathname = cpathname;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000913 }
914 else {
915 co = parse_source_module(pathname, fp);
916 if (co == NULL)
917 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000918 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000919 PySys_WriteStderr("import %s # from %s\n",
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000920 name, pathname);
921 write_compiled_module(co, cpathname, mtime);
922 }
Guido van Rossumafd3dae1998-08-25 18:44:34 +0000923 m = PyImport_ExecCodeModuleEx(name, (PyObject *)co, pathname);
Guido van Rossum79f25d91997-04-29 20:08:16 +0000924 Py_DECREF(co);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000925
926 return m;
927}
928
929
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000930/* Forward */
Just van Rossum52e14d62002-12-30 22:08:05 +0000931static PyObject *load_module(char *, FILE *, char *, int, PyObject *);
932static struct filedescr *find_module(char *, char *, PyObject *,
933 char *, size_t, FILE **, PyObject **);
Tim Petersdbd9ba62000-07-09 03:09:57 +0000934static struct _frozen *find_frozen(char *name);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000935
936/* Load a package and return its module object WITH INCREMENTED
937 REFERENCE COUNT */
938
939static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000940load_package(char *name, char *pathname)
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000941{
Tim Peters1cd70172004-08-02 03:52:12 +0000942 PyObject *m, *d;
943 PyObject *file = NULL;
944 PyObject *path = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000945 int err;
946 char buf[MAXPATHLEN+1];
947 FILE *fp = NULL;
948 struct filedescr *fdp;
949
950 m = PyImport_AddModule(name);
951 if (m == NULL)
952 return NULL;
Guido van Rossum17fc85f1997-09-06 18:52:03 +0000953 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000954 PySys_WriteStderr("import %s # directory %s\n",
Guido van Rossum17fc85f1997-09-06 18:52:03 +0000955 name, pathname);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000956 d = PyModule_GetDict(m);
957 file = PyString_FromString(pathname);
958 if (file == NULL)
Tim Peters1cd70172004-08-02 03:52:12 +0000959 goto error;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000960 path = Py_BuildValue("[O]", file);
Tim Peters1cd70172004-08-02 03:52:12 +0000961 if (path == NULL)
962 goto error;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000963 err = PyDict_SetItemString(d, "__file__", file);
964 if (err == 0)
965 err = PyDict_SetItemString(d, "__path__", path);
Tim Peters1cd70172004-08-02 03:52:12 +0000966 if (err != 0)
967 goto error;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000968 buf[0] = '\0';
Just van Rossum52e14d62002-12-30 22:08:05 +0000969 fdp = find_module(name, "__init__", path, buf, sizeof(buf), &fp, NULL);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000970 if (fdp == NULL) {
971 if (PyErr_ExceptionMatches(PyExc_ImportError)) {
972 PyErr_Clear();
Thomas Heller25653242004-06-07 15:04:10 +0000973 Py_INCREF(m);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000974 }
975 else
976 m = NULL;
977 goto cleanup;
978 }
Just van Rossum52e14d62002-12-30 22:08:05 +0000979 m = load_module(name, fp, buf, fdp->type, NULL);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000980 if (fp != NULL)
981 fclose(fp);
Tim Peters1cd70172004-08-02 03:52:12 +0000982 goto cleanup;
983
984 error:
985 m = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000986 cleanup:
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000987 Py_XDECREF(path);
988 Py_XDECREF(file);
989 return m;
990}
991
992
993/* Helper to test for built-in module */
994
995static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000996is_builtin(char *name)
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000997{
998 int i;
Guido van Rossum771c6c81997-10-31 18:37:24 +0000999 for (i = 0; PyImport_Inittab[i].name != NULL; i++) {
1000 if (strcmp(name, PyImport_Inittab[i].name) == 0) {
1001 if (PyImport_Inittab[i].initfunc == NULL)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001002 return -1;
1003 else
1004 return 1;
1005 }
1006 }
1007 return 0;
1008}
1009
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001010
Just van Rossum52e14d62002-12-30 22:08:05 +00001011/* Return an importer object for a sys.path/pkg.__path__ item 'p',
1012 possibly by fetching it from the path_importer_cache dict. If it
1013 wasn't yet cached, traverse path_hooks until it a hook is found
1014 that can handle the path item. Return None if no hook could;
1015 this tells our caller it should fall back to the builtin
1016 import mechanism. Cache the result in path_importer_cache.
1017 Returns a borrowed reference. */
1018
1019static PyObject *
1020get_path_importer(PyObject *path_importer_cache, PyObject *path_hooks,
1021 PyObject *p)
1022{
1023 PyObject *importer;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001024 Py_ssize_t j, nhooks;
Just van Rossum52e14d62002-12-30 22:08:05 +00001025
1026 /* These conditions are the caller's responsibility: */
1027 assert(PyList_Check(path_hooks));
1028 assert(PyDict_Check(path_importer_cache));
1029
1030 nhooks = PyList_Size(path_hooks);
1031 if (nhooks < 0)
1032 return NULL; /* Shouldn't happen */
1033
1034 importer = PyDict_GetItem(path_importer_cache, p);
1035 if (importer != NULL)
1036 return importer;
1037
1038 /* set path_importer_cache[p] to None to avoid recursion */
1039 if (PyDict_SetItem(path_importer_cache, p, Py_None) != 0)
1040 return NULL;
1041
1042 for (j = 0; j < nhooks; j++) {
1043 PyObject *hook = PyList_GetItem(path_hooks, j);
1044 if (hook == NULL)
1045 return NULL;
Georg Brandl684fd0c2006-05-25 19:15:31 +00001046 importer = PyObject_CallFunctionObjArgs(hook, p, NULL);
Just van Rossum52e14d62002-12-30 22:08:05 +00001047 if (importer != NULL)
1048 break;
1049
1050 if (!PyErr_ExceptionMatches(PyExc_ImportError)) {
1051 return NULL;
1052 }
1053 PyErr_Clear();
1054 }
1055 if (importer == NULL)
1056 importer = Py_None;
1057 else if (importer != Py_None) {
1058 int err = PyDict_SetItem(path_importer_cache, p, importer);
1059 Py_DECREF(importer);
1060 if (err != 0)
1061 return NULL;
1062 }
1063 return importer;
1064}
1065
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001066/* Search the path (default sys.path) for a module. Return the
1067 corresponding filedescr struct, and (via return arguments) the
1068 pathname and an open file. Return NULL if the module is not found. */
1069
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001070#ifdef MS_COREDLL
Thomas Woutersb4bd21c2000-07-22 23:38:01 +00001071extern FILE *PyWin_FindRegisteredModule(const char *, struct filedescr **,
Martin v. Löwis18e16552006-02-15 17:27:45 +00001072 char *, Py_ssize_t);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001073#endif
1074
Martin v. Löwis18e16552006-02-15 17:27:45 +00001075static int case_ok(char *, Py_ssize_t, Py_ssize_t, char *);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001076static int find_init_module(char *); /* Forward */
Just van Rossum52e14d62002-12-30 22:08:05 +00001077static struct filedescr importhookdescr = {"", "", IMP_HOOK};
Guido van Rossum197346f1997-10-31 18:38:52 +00001078
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001079static struct filedescr *
Just van Rossum52e14d62002-12-30 22:08:05 +00001080find_module(char *fullname, char *subname, PyObject *path, char *buf,
1081 size_t buflen, FILE **p_fp, PyObject **p_loader)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001082{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001083 Py_ssize_t i, npath;
Fred Drake4c82b232000-06-30 16:18:57 +00001084 size_t len, namelen;
Guido van Rossum80bb9651996-12-05 23:27:02 +00001085 struct filedescr *fdp = NULL;
Jack Jansenc88da1f2002-05-28 10:58:19 +00001086 char *filemode;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001087 FILE *fp = NULL;
Just van Rossum52e14d62002-12-30 22:08:05 +00001088 PyObject *path_hooks, *path_importer_cache;
Guido van Rossum48a680c2001-03-02 06:34:14 +00001089#ifndef RISCOS
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001090 struct stat statbuf;
Guido van Rossum48a680c2001-03-02 06:34:14 +00001091#endif
Guido van Rossuma5568d31998-03-05 03:45:08 +00001092 static struct filedescr fd_frozen = {"", "", PY_FROZEN};
1093 static struct filedescr fd_builtin = {"", "", C_BUILTIN};
1094 static struct filedescr fd_package = {"", "", PKG_DIRECTORY};
Guido van Rossum0506a431998-08-11 15:07:39 +00001095 char name[MAXPATHLEN+1];
Andrew MacIntyred9400542002-02-26 11:41:34 +00001096#if defined(PYOS_OS2)
1097 size_t saved_len;
1098 size_t saved_namelen;
1099 char *saved_buf = NULL;
1100#endif
Just van Rossum52e14d62002-12-30 22:08:05 +00001101 if (p_loader != NULL)
1102 *p_loader = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001103
Just van Rossum52e14d62002-12-30 22:08:05 +00001104 if (strlen(subname) > MAXPATHLEN) {
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001105 PyErr_SetString(PyExc_OverflowError,
1106 "module name is too long");
Fred Drake4c82b232000-06-30 16:18:57 +00001107 return NULL;
1108 }
Just van Rossum52e14d62002-12-30 22:08:05 +00001109 strcpy(name, subname);
1110
1111 /* sys.meta_path import hook */
1112 if (p_loader != NULL) {
1113 PyObject *meta_path;
1114
1115 meta_path = PySys_GetObject("meta_path");
1116 if (meta_path == NULL || !PyList_Check(meta_path)) {
1117 PyErr_SetString(PyExc_ImportError,
1118 "sys.meta_path must be a list of "
1119 "import hooks");
1120 return NULL;
1121 }
1122 Py_INCREF(meta_path); /* zap guard */
1123 npath = PyList_Size(meta_path);
1124 for (i = 0; i < npath; i++) {
1125 PyObject *loader;
1126 PyObject *hook = PyList_GetItem(meta_path, i);
1127 loader = PyObject_CallMethod(hook, "find_module",
1128 "sO", fullname,
1129 path != NULL ?
1130 path : Py_None);
1131 if (loader == NULL) {
1132 Py_DECREF(meta_path);
1133 return NULL; /* true error */
1134 }
1135 if (loader != Py_None) {
1136 /* a loader was found */
1137 *p_loader = loader;
1138 Py_DECREF(meta_path);
1139 return &importhookdescr;
1140 }
1141 Py_DECREF(loader);
1142 }
1143 Py_DECREF(meta_path);
1144 }
Guido van Rossum0506a431998-08-11 15:07:39 +00001145
1146 if (path != NULL && PyString_Check(path)) {
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001147 /* The only type of submodule allowed inside a "frozen"
1148 package are other frozen modules or packages. */
Guido van Rossum0506a431998-08-11 15:07:39 +00001149 if (PyString_Size(path) + 1 + strlen(name) >= (size_t)buflen) {
1150 PyErr_SetString(PyExc_ImportError,
1151 "full frozen module name too long");
1152 return NULL;
1153 }
1154 strcpy(buf, PyString_AsString(path));
1155 strcat(buf, ".");
1156 strcat(buf, name);
1157 strcpy(name, buf);
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001158 if (find_frozen(name) != NULL) {
1159 strcpy(buf, name);
1160 return &fd_frozen;
1161 }
1162 PyErr_Format(PyExc_ImportError,
1163 "No frozen submodule named %.200s", name);
1164 return NULL;
Guido van Rossum0506a431998-08-11 15:07:39 +00001165 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001166 if (path == NULL) {
1167 if (is_builtin(name)) {
Guido van Rossuma5568d31998-03-05 03:45:08 +00001168 strcpy(buf, name);
1169 return &fd_builtin;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001170 }
Greg Ward201baee2001-10-04 14:52:06 +00001171 if ((find_frozen(name)) != NULL) {
Guido van Rossuma5568d31998-03-05 03:45:08 +00001172 strcpy(buf, name);
1173 return &fd_frozen;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001174 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001175
Guido van Rossumac279101996-08-22 23:10:58 +00001176#ifdef MS_COREDLL
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001177 fp = PyWin_FindRegisteredModule(name, &fdp, buf, buflen);
1178 if (fp != NULL) {
1179 *p_fp = fp;
1180 return fdp;
1181 }
Guido van Rossuma5a3db71996-04-09 02:39:59 +00001182#endif
Guido van Rossuma5568d31998-03-05 03:45:08 +00001183 path = PySys_GetObject("path");
1184 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00001185 if (path == NULL || !PyList_Check(path)) {
1186 PyErr_SetString(PyExc_ImportError,
Guido van Rossuma5568d31998-03-05 03:45:08 +00001187 "sys.path must be a list of directory names");
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001188 return NULL;
1189 }
Just van Rossum52e14d62002-12-30 22:08:05 +00001190
1191 path_hooks = PySys_GetObject("path_hooks");
1192 if (path_hooks == NULL || !PyList_Check(path_hooks)) {
1193 PyErr_SetString(PyExc_ImportError,
1194 "sys.path_hooks must be a list of "
1195 "import hooks");
1196 return NULL;
1197 }
1198 path_importer_cache = PySys_GetObject("path_importer_cache");
1199 if (path_importer_cache == NULL ||
1200 !PyDict_Check(path_importer_cache)) {
1201 PyErr_SetString(PyExc_ImportError,
1202 "sys.path_importer_cache must be a dict");
1203 return NULL;
1204 }
1205
Guido van Rossum79f25d91997-04-29 20:08:16 +00001206 npath = PyList_Size(path);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001207 namelen = strlen(name);
1208 for (i = 0; i < npath; i++) {
Walter Dörwald3430d702002-06-17 10:43:59 +00001209 PyObject *copy = NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001210 PyObject *v = PyList_GetItem(path, i);
Walter Dörwald3430d702002-06-17 10:43:59 +00001211#ifdef Py_USING_UNICODE
1212 if (PyUnicode_Check(v)) {
1213 copy = PyUnicode_Encode(PyUnicode_AS_UNICODE(v),
1214 PyUnicode_GET_SIZE(v), Py_FileSystemDefaultEncoding, NULL);
1215 if (copy == NULL)
1216 return NULL;
1217 v = copy;
1218 }
1219 else
1220#endif
Guido van Rossum79f25d91997-04-29 20:08:16 +00001221 if (!PyString_Check(v))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001222 continue;
Neal Norwitz2aa9a5d2006-03-20 01:53:23 +00001223 len = PyString_GET_SIZE(v);
Walter Dörwald3430d702002-06-17 10:43:59 +00001224 if (len + 2 + namelen + MAXSUFFIXSIZE >= buflen) {
1225 Py_XDECREF(copy);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001226 continue; /* Too long */
Walter Dörwald3430d702002-06-17 10:43:59 +00001227 }
Neal Norwitz2aa9a5d2006-03-20 01:53:23 +00001228 strcpy(buf, PyString_AS_STRING(v));
Walter Dörwald3430d702002-06-17 10:43:59 +00001229 if (strlen(buf) != len) {
1230 Py_XDECREF(copy);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001231 continue; /* v contains '\0' */
Walter Dörwald3430d702002-06-17 10:43:59 +00001232 }
Just van Rossum52e14d62002-12-30 22:08:05 +00001233
1234 /* sys.path_hooks import hook */
1235 if (p_loader != NULL) {
1236 PyObject *importer;
1237
1238 importer = get_path_importer(path_importer_cache,
1239 path_hooks, v);
1240 if (importer == NULL)
1241 return NULL;
1242 /* Note: importer is a borrowed reference */
Georg Brandlf4ef1162006-05-26 18:03:31 +00001243 if (importer == Py_False) {
1244 /* Cached as not being a valid dir. */
1245 Py_XDECREF(copy);
1246 continue;
1247 }
1248 else if (importer == Py_True) {
1249 /* Cached as being a valid dir, so just
1250 * continue below. */
1251 }
1252 else if (importer == Py_None) {
1253 /* No importer was found, so it has to be a file.
Georg Brandl0fd12912006-05-28 20:11:45 +00001254 * Check if the directory is valid.
1255 * Note that the empty string is a valid path, but
1256 * not stat'able, hence the check for len. */
Georg Brandlf4ef1162006-05-26 18:03:31 +00001257#ifdef HAVE_STAT
Georg Brandl0fd12912006-05-28 20:11:45 +00001258 if (len && stat(buf, &statbuf) != 0) {
Georg Brandlf4ef1162006-05-26 18:03:31 +00001259 /* Directory does not exist. */
1260 PyDict_SetItem(path_importer_cache,
1261 v, Py_False);
1262 Py_XDECREF(copy);
1263 continue;
1264 } else {
1265 PyDict_SetItem(path_importer_cache,
1266 v, Py_True);
1267 }
1268#endif
1269 }
1270 else {
1271 /* A real import hook importer was found. */
Just van Rossum52e14d62002-12-30 22:08:05 +00001272 PyObject *loader;
1273 loader = PyObject_CallMethod(importer,
1274 "find_module",
1275 "s", fullname);
1276 if (loader == NULL)
1277 return NULL; /* error */
1278 if (loader != Py_None) {
1279 /* a loader was found */
1280 *p_loader = loader;
1281 return &importhookdescr;
1282 }
1283 Py_DECREF(loader);
Georg Brandlf4ef1162006-05-26 18:03:31 +00001284 Py_XDECREF(copy);
1285 continue;
Just van Rossum52e14d62002-12-30 22:08:05 +00001286 }
Just van Rossum52e14d62002-12-30 22:08:05 +00001287 }
Georg Brandlf4ef1162006-05-26 18:03:31 +00001288 /* no hook was found, use builtin import */
Just van Rossum52e14d62002-12-30 22:08:05 +00001289
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001290 if (len > 0 && buf[len-1] != SEP
1291#ifdef ALTSEP
1292 && buf[len-1] != ALTSEP
1293#endif
1294 )
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001295 buf[len++] = SEP;
Guido van Rossum215c3402000-11-13 17:26:32 +00001296 strcpy(buf+len, name);
1297 len += namelen;
Tim Peters50d8d372001-02-28 05:34:27 +00001298
1299 /* Check for package import (buf holds a directory name,
1300 and there's an __init__ module in that directory */
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001301#ifdef HAVE_STAT
Walter Dörwald3430d702002-06-17 10:43:59 +00001302 if (stat(buf, &statbuf) == 0 && /* it exists */
1303 S_ISDIR(statbuf.st_mode) && /* it's a directory */
Thomas Wouters9df4e6f2006-04-27 23:13:20 +00001304 case_ok(buf, len, namelen, name)) { /* case matches */
1305 if (find_init_module(buf)) { /* and has __init__.py */
1306 Py_XDECREF(copy);
1307 return &fd_package;
1308 }
1309 else {
1310 char warnstr[MAXPATHLEN+80];
1311 sprintf(warnstr, "Not importing directory "
1312 "'%.*s': missing __init__.py",
1313 MAXPATHLEN, buf);
1314 if (PyErr_Warn(PyExc_ImportWarning,
1315 warnstr)) {
1316 Py_XDECREF(copy);
1317 return NULL;
1318 }
1319 }
Walter Dörwald3430d702002-06-17 10:43:59 +00001320 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001321#else
1322 /* XXX How are you going to test for directories? */
Guido van Rossum48a680c2001-03-02 06:34:14 +00001323#ifdef RISCOS
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001324 if (isdir(buf) &&
Walter Dörwald3430d702002-06-17 10:43:59 +00001325 case_ok(buf, len, namelen, name)) {
Thomas Wouters9df4e6f2006-04-27 23:13:20 +00001326 if (find_init_module(buf)) {
1327 Py_XDECREF(copy);
1328 return &fd_package;
1329 }
1330 else {
1331 char warnstr[MAXPATHLEN+80];
1332 sprintf(warnstr, "Not importing directory "
1333 "'%.*s': missing __init__.py",
1334 MAXPATHLEN, buf);
1335 if (PyErr_Warn(PyExc_ImportWarning,
1336 warnstr)) {
1337 Py_XDECREF(copy);
1338 return NULL;
1339 }
Walter Dörwald3430d702002-06-17 10:43:59 +00001340 }
Guido van Rossum48a680c2001-03-02 06:34:14 +00001341#endif
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001342#endif
Andrew MacIntyred9400542002-02-26 11:41:34 +00001343#if defined(PYOS_OS2)
1344 /* take a snapshot of the module spec for restoration
1345 * after the 8 character DLL hackery
1346 */
1347 saved_buf = strdup(buf);
1348 saved_len = len;
1349 saved_namelen = namelen;
1350#endif /* PYOS_OS2 */
Guido van Rossum79f25d91997-04-29 20:08:16 +00001351 for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
Andrew MacIntyred9400542002-02-26 11:41:34 +00001352#if defined(PYOS_OS2)
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001353 /* OS/2 limits DLLs to 8 character names (w/o
1354 extension)
Andrew MacIntyred9400542002-02-26 11:41:34 +00001355 * so if the name is longer than that and its a
1356 * dynamically loaded module we're going to try,
1357 * truncate the name before trying
1358 */
Just van Rossum52e14d62002-12-30 22:08:05 +00001359 if (strlen(subname) > 8) {
Andrew MacIntyred9400542002-02-26 11:41:34 +00001360 /* is this an attempt to load a C extension? */
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001361 const struct filedescr *scan;
1362 scan = _PyImport_DynLoadFiletab;
Andrew MacIntyred9400542002-02-26 11:41:34 +00001363 while (scan->suffix != NULL) {
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001364 if (!strcmp(scan->suffix, fdp->suffix))
Andrew MacIntyred9400542002-02-26 11:41:34 +00001365 break;
1366 else
1367 scan++;
1368 }
1369 if (scan->suffix != NULL) {
1370 /* yes, so truncate the name */
1371 namelen = 8;
Just van Rossum52e14d62002-12-30 22:08:05 +00001372 len -= strlen(subname) - namelen;
Andrew MacIntyred9400542002-02-26 11:41:34 +00001373 buf[len] = '\0';
1374 }
1375 }
1376#endif /* PYOS_OS2 */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001377 strcpy(buf+len, fdp->suffix);
Guido van Rossum79f25d91997-04-29 20:08:16 +00001378 if (Py_VerboseFlag > 1)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001379 PySys_WriteStderr("# trying %s\n", buf);
Jack Jansenc88da1f2002-05-28 10:58:19 +00001380 filemode = fdp->mode;
Tim Peters86c7d2f2004-08-01 23:24:21 +00001381 if (filemode[0] == 'U')
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001382 filemode = "r" PY_STDIOTEXTMODE;
Jack Jansenc88da1f2002-05-28 10:58:19 +00001383 fp = fopen(buf, filemode);
Tim Peters50d8d372001-02-28 05:34:27 +00001384 if (fp != NULL) {
1385 if (case_ok(buf, len, namelen, name))
1386 break;
1387 else { /* continue search */
1388 fclose(fp);
1389 fp = NULL;
Barry Warsaw914a0b12001-02-02 19:12:16 +00001390 }
Barry Warsaw914a0b12001-02-02 19:12:16 +00001391 }
Andrew MacIntyred9400542002-02-26 11:41:34 +00001392#if defined(PYOS_OS2)
1393 /* restore the saved snapshot */
1394 strcpy(buf, saved_buf);
1395 len = saved_len;
1396 namelen = saved_namelen;
1397#endif
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001398 }
Andrew MacIntyred9400542002-02-26 11:41:34 +00001399#if defined(PYOS_OS2)
1400 /* don't need/want the module name snapshot anymore */
1401 if (saved_buf)
1402 {
1403 free(saved_buf);
1404 saved_buf = NULL;
1405 }
1406#endif
Walter Dörwald3430d702002-06-17 10:43:59 +00001407 Py_XDECREF(copy);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001408 if (fp != NULL)
1409 break;
1410 }
1411 if (fp == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001412 PyErr_Format(PyExc_ImportError,
1413 "No module named %.200s", name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001414 return NULL;
1415 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001416 *p_fp = fp;
1417 return fdp;
1418}
1419
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +00001420/* Helpers for main.c
1421 * Find the source file corresponding to a named module
1422 */
1423struct filedescr *
1424_PyImport_FindModule(const char *name, PyObject *path, char *buf,
1425 size_t buflen, FILE **p_fp, PyObject **p_loader)
1426{
1427 return find_module((char *) name, (char *) name, path,
1428 buf, buflen, p_fp, p_loader);
1429}
1430
1431PyAPI_FUNC(int) _PyImport_IsScript(struct filedescr * fd)
1432{
1433 return fd->type == PY_SOURCE || fd->type == PY_COMPILED;
1434}
1435
Martin v. Löwis18e16552006-02-15 17:27:45 +00001436/* case_ok(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name)
Tim Petersd1e87a82001-03-01 18:12:00 +00001437 * The arguments here are tricky, best shown by example:
1438 * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0
1439 * ^ ^ ^ ^
1440 * |--------------------- buf ---------------------|
1441 * |------------------- len ------------------|
1442 * |------ name -------|
1443 * |----- namelen -----|
1444 * buf is the full path, but len only counts up to (& exclusive of) the
1445 * extension. name is the module name, also exclusive of extension.
1446 *
1447 * We've already done a successful stat() or fopen() on buf, so know that
1448 * there's some match, possibly case-insensitive.
1449 *
Tim Peters50d8d372001-02-28 05:34:27 +00001450 * case_ok() is to return 1 if there's a case-sensitive match for
1451 * name, else 0. case_ok() is also to return 1 if envar PYTHONCASEOK
1452 * exists.
Tim Petersd1e87a82001-03-01 18:12:00 +00001453 *
Tim Peters50d8d372001-02-28 05:34:27 +00001454 * case_ok() is used to implement case-sensitive import semantics even
1455 * on platforms with case-insensitive filesystems. It's trivial to implement
1456 * for case-sensitive filesystems. It's pretty much a cross-platform
1457 * nightmare for systems with case-insensitive filesystems.
1458 */
Guido van Rossum0980bd91998-02-13 17:18:36 +00001459
Tim Peters50d8d372001-02-28 05:34:27 +00001460/* First we may need a pile of platform-specific header files; the sequence
1461 * of #if's here should match the sequence in the body of case_ok().
1462 */
Jason Tishler7961aa62005-05-20 00:56:54 +00001463#if defined(MS_WINDOWS)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001464#include <windows.h>
Guido van Rossum4c3f57c2001-01-10 20:40:46 +00001465
Tim Peters50d8d372001-02-28 05:34:27 +00001466#elif defined(DJGPP)
1467#include <dir.h>
1468
Jason Tishler7961aa62005-05-20 00:56:54 +00001469#elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H)
Tim Peters430f5d42001-03-01 01:30:56 +00001470#include <sys/types.h>
1471#include <dirent.h>
1472
Andrew MacIntyred9400542002-02-26 11:41:34 +00001473#elif defined(PYOS_OS2)
1474#define INCL_DOS
1475#define INCL_DOSERRORS
1476#define INCL_NOPMAPI
1477#include <os2.h>
1478
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001479#elif defined(RISCOS)
1480#include "oslib/osfscontrol.h"
Tim Peters50d8d372001-02-28 05:34:27 +00001481#endif
1482
Guido van Rossum0980bd91998-02-13 17:18:36 +00001483static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00001484case_ok(char *buf, Py_ssize_t len, Py_ssize_t namelen, char *name)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001485{
Tim Peters50d8d372001-02-28 05:34:27 +00001486/* Pick a platform-specific implementation; the sequence of #if's here should
1487 * match the sequence just above.
1488 */
1489
Jason Tishler7961aa62005-05-20 00:56:54 +00001490/* MS_WINDOWS */
1491#if defined(MS_WINDOWS)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001492 WIN32_FIND_DATA data;
1493 HANDLE h;
Tim Peters50d8d372001-02-28 05:34:27 +00001494
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001495 if (Py_GETENV("PYTHONCASEOK") != NULL)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001496 return 1;
Tim Peters50d8d372001-02-28 05:34:27 +00001497
Guido van Rossum0980bd91998-02-13 17:18:36 +00001498 h = FindFirstFile(buf, &data);
1499 if (h == INVALID_HANDLE_VALUE) {
1500 PyErr_Format(PyExc_NameError,
1501 "Can't find file for module %.100s\n(filename %.300s)",
1502 name, buf);
1503 return 0;
1504 }
1505 FindClose(h);
Tim Peters50d8d372001-02-28 05:34:27 +00001506 return strncmp(data.cFileName, name, namelen) == 0;
1507
1508/* DJGPP */
1509#elif defined(DJGPP)
1510 struct ffblk ffblk;
1511 int done;
1512
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001513 if (Py_GETENV("PYTHONCASEOK") != NULL)
Guido van Rossum323bf5e1998-06-24 03:54:06 +00001514 return 1;
Tim Peters50d8d372001-02-28 05:34:27 +00001515
1516 done = findfirst(buf, &ffblk, FA_ARCH|FA_RDONLY|FA_HIDDEN|FA_DIREC);
1517 if (done) {
Guido van Rossum0980bd91998-02-13 17:18:36 +00001518 PyErr_Format(PyExc_NameError,
Tim Peters50d8d372001-02-28 05:34:27 +00001519 "Can't find file for module %.100s\n(filename %.300s)",
Guido van Rossum0980bd91998-02-13 17:18:36 +00001520 name, buf);
1521 return 0;
1522 }
Tim Peters50d8d372001-02-28 05:34:27 +00001523 return strncmp(ffblk.ff_name, name, namelen) == 0;
Guido van Rossum0980bd91998-02-13 17:18:36 +00001524
Jason Tishler7961aa62005-05-20 00:56:54 +00001525/* new-fangled macintosh (macosx) or Cygwin */
1526#elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H)
Tim Peters430f5d42001-03-01 01:30:56 +00001527 DIR *dirp;
1528 struct dirent *dp;
Tim Petersd1e87a82001-03-01 18:12:00 +00001529 char dirname[MAXPATHLEN + 1];
1530 const int dirlen = len - namelen - 1; /* don't want trailing SEP */
Tim Peters430f5d42001-03-01 01:30:56 +00001531
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001532 if (Py_GETENV("PYTHONCASEOK") != NULL)
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001533 return 1;
1534
Tim Petersd1e87a82001-03-01 18:12:00 +00001535 /* Copy the dir component into dirname; substitute "." if empty */
1536 if (dirlen <= 0) {
1537 dirname[0] = '.';
1538 dirname[1] = '\0';
Tim Peters430f5d42001-03-01 01:30:56 +00001539 }
1540 else {
Tim Petersd1e87a82001-03-01 18:12:00 +00001541 assert(dirlen <= MAXPATHLEN);
1542 memcpy(dirname, buf, dirlen);
1543 dirname[dirlen] = '\0';
Tim Peters430f5d42001-03-01 01:30:56 +00001544 }
1545 /* Open the directory and search the entries for an exact match. */
Tim Petersd1e87a82001-03-01 18:12:00 +00001546 dirp = opendir(dirname);
Tim Peters430f5d42001-03-01 01:30:56 +00001547 if (dirp) {
Tim Peters677898a2001-03-02 03:28:03 +00001548 char *nameWithExt = buf + len - namelen;
Tim Peters430f5d42001-03-01 01:30:56 +00001549 while ((dp = readdir(dirp)) != NULL) {
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001550 const int thislen =
Tim Peters430f5d42001-03-01 01:30:56 +00001551#ifdef _DIRENT_HAVE_D_NAMELEN
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001552 dp->d_namlen;
Tim Peters430f5d42001-03-01 01:30:56 +00001553#else
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001554 strlen(dp->d_name);
Tim Peters430f5d42001-03-01 01:30:56 +00001555#endif
Tim Petersd1e87a82001-03-01 18:12:00 +00001556 if (thislen >= namelen &&
Tim Peters677898a2001-03-02 03:28:03 +00001557 strcmp(dp->d_name, nameWithExt) == 0) {
Tim Peters430f5d42001-03-01 01:30:56 +00001558 (void)closedir(dirp);
1559 return 1; /* Found */
1560 }
1561 }
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001562 (void)closedir(dirp);
Tim Peters430f5d42001-03-01 01:30:56 +00001563 }
Tim Peters430f5d42001-03-01 01:30:56 +00001564 return 0 ; /* Not found */
Tim Peters430f5d42001-03-01 01:30:56 +00001565
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001566/* RISC OS */
1567#elif defined(RISCOS)
1568 char canon[MAXPATHLEN+1]; /* buffer for the canonical form of the path */
1569 char buf2[MAXPATHLEN+2];
1570 char *nameWithExt = buf+len-namelen;
1571 int canonlen;
1572 os_error *e;
1573
1574 if (Py_GETENV("PYTHONCASEOK") != NULL)
1575 return 1;
1576
1577 /* workaround:
1578 append wildcard, otherwise case of filename wouldn't be touched */
1579 strcpy(buf2, buf);
1580 strcat(buf2, "*");
1581
1582 e = xosfscontrol_canonicalise_path(buf2,canon,0,0,MAXPATHLEN+1,&canonlen);
1583 canonlen = MAXPATHLEN+1-canonlen;
1584 if (e || canonlen<=0 || canonlen>(MAXPATHLEN+1) )
1585 return 0;
1586 if (strcmp(nameWithExt, canon+canonlen-strlen(nameWithExt))==0)
1587 return 1; /* match */
1588
1589 return 0;
1590
Andrew MacIntyred9400542002-02-26 11:41:34 +00001591/* OS/2 */
1592#elif defined(PYOS_OS2)
1593 HDIR hdir = 1;
1594 ULONG srchcnt = 1;
1595 FILEFINDBUF3 ffbuf;
1596 APIRET rc;
1597
1598 if (getenv("PYTHONCASEOK") != NULL)
1599 return 1;
1600
1601 rc = DosFindFirst(buf,
1602 &hdir,
1603 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
1604 &ffbuf, sizeof(ffbuf),
1605 &srchcnt,
1606 FIL_STANDARD);
1607 if (rc != NO_ERROR)
1608 return 0;
1609 return strncmp(ffbuf.achName, name, namelen) == 0;
1610
Tim Peters50d8d372001-02-28 05:34:27 +00001611/* assuming it's a case-sensitive filesystem, so there's nothing to do! */
1612#else
Guido van Rossum0980bd91998-02-13 17:18:36 +00001613 return 1;
Guido van Rossum0980bd91998-02-13 17:18:36 +00001614
Guido van Rossum4d1b3b91998-02-13 23:27:59 +00001615#endif
Tim Peters50d8d372001-02-28 05:34:27 +00001616}
Guido van Rossum4d1b3b91998-02-13 23:27:59 +00001617
Guido van Rossum0980bd91998-02-13 17:18:36 +00001618
Guido van Rossum197346f1997-10-31 18:38:52 +00001619#ifdef HAVE_STAT
1620/* Helper to look for __init__.py or __init__.py[co] in potential package */
1621static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001622find_init_module(char *buf)
Guido van Rossum197346f1997-10-31 18:38:52 +00001623{
Tim Peters0f9431f2001-07-05 03:47:53 +00001624 const size_t save_len = strlen(buf);
Fred Drake4c82b232000-06-30 16:18:57 +00001625 size_t i = save_len;
Tim Peters0f9431f2001-07-05 03:47:53 +00001626 char *pname; /* pointer to start of __init__ */
Guido van Rossum197346f1997-10-31 18:38:52 +00001627 struct stat statbuf;
1628
Tim Peters0f9431f2001-07-05 03:47:53 +00001629/* For calling case_ok(buf, len, namelen, name):
1630 * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0
1631 * ^ ^ ^ ^
1632 * |--------------------- buf ---------------------|
1633 * |------------------- len ------------------|
1634 * |------ name -------|
1635 * |----- namelen -----|
1636 */
Guido van Rossum197346f1997-10-31 18:38:52 +00001637 if (save_len + 13 >= MAXPATHLEN)
1638 return 0;
1639 buf[i++] = SEP;
Tim Peters0f9431f2001-07-05 03:47:53 +00001640 pname = buf + i;
1641 strcpy(pname, "__init__.py");
Guido van Rossum197346f1997-10-31 18:38:52 +00001642 if (stat(buf, &statbuf) == 0) {
Tim Peters0f9431f2001-07-05 03:47:53 +00001643 if (case_ok(buf,
1644 save_len + 9, /* len("/__init__") */
1645 8, /* len("__init__") */
1646 pname)) {
1647 buf[save_len] = '\0';
1648 return 1;
1649 }
Guido van Rossum197346f1997-10-31 18:38:52 +00001650 }
Tim Peters0f9431f2001-07-05 03:47:53 +00001651 i += strlen(pname);
1652 strcpy(buf+i, Py_OptimizeFlag ? "o" : "c");
Guido van Rossum197346f1997-10-31 18:38:52 +00001653 if (stat(buf, &statbuf) == 0) {
Tim Peters0f9431f2001-07-05 03:47:53 +00001654 if (case_ok(buf,
1655 save_len + 9, /* len("/__init__") */
1656 8, /* len("__init__") */
1657 pname)) {
1658 buf[save_len] = '\0';
1659 return 1;
1660 }
Guido van Rossum197346f1997-10-31 18:38:52 +00001661 }
1662 buf[save_len] = '\0';
1663 return 0;
1664}
Guido van Rossum48a680c2001-03-02 06:34:14 +00001665
1666#else
1667
1668#ifdef RISCOS
1669static int
1670find_init_module(buf)
1671 char *buf;
1672{
1673 int save_len = strlen(buf);
1674 int i = save_len;
1675
1676 if (save_len + 13 >= MAXPATHLEN)
1677 return 0;
1678 buf[i++] = SEP;
1679 strcpy(buf+i, "__init__/py");
1680 if (isfile(buf)) {
1681 buf[save_len] = '\0';
1682 return 1;
1683 }
1684
1685 if (Py_OptimizeFlag)
1686 strcpy(buf+i, "o");
1687 else
1688 strcpy(buf+i, "c");
1689 if (isfile(buf)) {
1690 buf[save_len] = '\0';
1691 return 1;
1692 }
1693 buf[save_len] = '\0';
1694 return 0;
1695}
1696#endif /*RISCOS*/
1697
Guido van Rossum197346f1997-10-31 18:38:52 +00001698#endif /* HAVE_STAT */
1699
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001700
Tim Petersdbd9ba62000-07-09 03:09:57 +00001701static int init_builtin(char *); /* Forward */
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001702
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001703/* Load an external module using the default search path and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001704 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001705
Guido van Rossum79f25d91997-04-29 20:08:16 +00001706static PyObject *
Just van Rossum52e14d62002-12-30 22:08:05 +00001707load_module(char *name, FILE *fp, char *buf, int type, PyObject *loader)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001708{
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001709 PyObject *modules;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001710 PyObject *m;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001711 int err;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001712
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001713 /* First check that there's an open file (if we need one) */
1714 switch (type) {
1715 case PY_SOURCE:
1716 case PY_COMPILED:
1717 if (fp == NULL) {
1718 PyErr_Format(PyExc_ValueError,
1719 "file object required for import (type code %d)",
1720 type);
1721 return NULL;
1722 }
1723 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001724
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001725 switch (type) {
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001726
1727 case PY_SOURCE:
1728 m = load_source_module(name, buf, fp);
1729 break;
1730
1731 case PY_COMPILED:
1732 m = load_compiled_module(name, buf, fp);
1733 break;
1734
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001735#ifdef HAVE_DYNAMIC_LOADING
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001736 case C_EXTENSION:
Guido van Rossum79f25d91997-04-29 20:08:16 +00001737 m = _PyImport_LoadDynamicModule(name, buf, fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001738 break;
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001739#endif
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001740
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001741 case PKG_DIRECTORY:
1742 m = load_package(name, buf);
1743 break;
1744
1745 case C_BUILTIN:
1746 case PY_FROZEN:
Guido van Rossuma5568d31998-03-05 03:45:08 +00001747 if (buf != NULL && buf[0] != '\0')
1748 name = buf;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001749 if (type == C_BUILTIN)
1750 err = init_builtin(name);
1751 else
1752 err = PyImport_ImportFrozenModule(name);
1753 if (err < 0)
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001754 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001755 if (err == 0) {
1756 PyErr_Format(PyExc_ImportError,
1757 "Purported %s module %.200s not found",
1758 type == C_BUILTIN ?
1759 "builtin" : "frozen",
1760 name);
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001761 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001762 }
1763 modules = PyImport_GetModuleDict();
1764 m = PyDict_GetItemString(modules, name);
1765 if (m == NULL) {
1766 PyErr_Format(
1767 PyExc_ImportError,
1768 "%s module %.200s not properly initialized",
1769 type == C_BUILTIN ?
1770 "builtin" : "frozen",
1771 name);
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001772 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001773 }
1774 Py_INCREF(m);
1775 break;
1776
Just van Rossum52e14d62002-12-30 22:08:05 +00001777 case IMP_HOOK: {
1778 if (loader == NULL) {
1779 PyErr_SetString(PyExc_ImportError,
1780 "import hook without loader");
1781 return NULL;
1782 }
1783 m = PyObject_CallMethod(loader, "load_module", "s", name);
1784 break;
1785 }
1786
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001787 default:
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001788 PyErr_Format(PyExc_ImportError,
1789 "Don't know how to import %.200s (type code %d)",
1790 name, type);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001791 m = NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001792
1793 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001794
1795 return m;
1796}
1797
1798
1799/* Initialize a built-in module.
1800 Return 1 for succes, 0 if the module is not found, and -1 with
1801 an exception set if the initialization failed. */
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001802
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001803static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001804init_builtin(char *name)
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001805{
Guido van Rossum25ce5661997-08-02 03:10:38 +00001806 struct _inittab *p;
Guido van Rossum25ce5661997-08-02 03:10:38 +00001807
Greg Ward201baee2001-10-04 14:52:06 +00001808 if (_PyImport_FindExtension(name, name) != NULL)
Guido van Rossum25ce5661997-08-02 03:10:38 +00001809 return 1;
1810
Guido van Rossum771c6c81997-10-31 18:37:24 +00001811 for (p = PyImport_Inittab; p->name != NULL; p++) {
Guido van Rossum25ce5661997-08-02 03:10:38 +00001812 if (strcmp(name, p->name) == 0) {
1813 if (p->initfunc == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001814 PyErr_Format(PyExc_ImportError,
1815 "Cannot re-init internal module %.200s",
1816 name);
Guido van Rossum74e6a111994-08-29 12:54:38 +00001817 return -1;
1818 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00001819 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001820 PySys_WriteStderr("import %s # builtin\n", name);
Guido van Rossum25ce5661997-08-02 03:10:38 +00001821 (*p->initfunc)();
Guido van Rossum79f25d91997-04-29 20:08:16 +00001822 if (PyErr_Occurred())
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001823 return -1;
Guido van Rossum25ce5661997-08-02 03:10:38 +00001824 if (_PyImport_FixupExtension(name, name) == NULL)
1825 return -1;
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001826 return 1;
1827 }
1828 }
1829 return 0;
1830}
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001831
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001832
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001833/* Frozen modules */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001834
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001835static struct _frozen *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001836find_frozen(char *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001837{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001838 struct _frozen *p;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001839
Guido van Rossum79f25d91997-04-29 20:08:16 +00001840 for (p = PyImport_FrozenModules; ; p++) {
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001841 if (p->name == NULL)
1842 return NULL;
1843 if (strcmp(p->name, name) == 0)
1844 break;
1845 }
1846 return p;
1847}
1848
Guido van Rossum79f25d91997-04-29 20:08:16 +00001849static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001850get_frozen_object(char *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001851{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001852 struct _frozen *p = find_frozen(name);
Guido van Rossuma5568d31998-03-05 03:45:08 +00001853 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001854
1855 if (p == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001856 PyErr_Format(PyExc_ImportError,
1857 "No such frozen object named %.200s",
1858 name);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001859 return NULL;
1860 }
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001861 if (p->code == NULL) {
1862 PyErr_Format(PyExc_ImportError,
1863 "Excluded frozen object named %.200s",
1864 name);
1865 return NULL;
1866 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001867 size = p->size;
1868 if (size < 0)
1869 size = -size;
1870 return PyMarshal_ReadObjectFromString((char *)p->code, size);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001871}
1872
1873/* Initialize a frozen module.
1874 Return 1 for succes, 0 if the module is not found, and -1 with
1875 an exception set if the initialization failed.
1876 This function is also used from frozenmain.c */
Guido van Rossum0b344901995-02-07 15:35:27 +00001877
1878int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001879PyImport_ImportFrozenModule(char *name)
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001880{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001881 struct _frozen *p = find_frozen(name);
Guido van Rossum79f25d91997-04-29 20:08:16 +00001882 PyObject *co;
1883 PyObject *m;
Guido van Rossuma5568d31998-03-05 03:45:08 +00001884 int ispackage;
1885 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001886
1887 if (p == NULL)
1888 return 0;
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001889 if (p->code == NULL) {
1890 PyErr_Format(PyExc_ImportError,
1891 "Excluded frozen object named %.200s",
1892 name);
1893 return -1;
1894 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001895 size = p->size;
1896 ispackage = (size < 0);
1897 if (ispackage)
1898 size = -size;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001899 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001900 PySys_WriteStderr("import %s # frozen%s\n",
Guido van Rossuma5568d31998-03-05 03:45:08 +00001901 name, ispackage ? " package" : "");
1902 co = PyMarshal_ReadObjectFromString((char *)p->code, size);
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001903 if (co == NULL)
1904 return -1;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001905 if (!PyCode_Check(co)) {
1906 Py_DECREF(co);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001907 PyErr_Format(PyExc_TypeError,
1908 "frozen object %.200s is not a code object",
1909 name);
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001910 return -1;
1911 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001912 if (ispackage) {
1913 /* Set __path__ to the package name */
1914 PyObject *d, *s;
1915 int err;
1916 m = PyImport_AddModule(name);
1917 if (m == NULL)
1918 return -1;
1919 d = PyModule_GetDict(m);
1920 s = PyString_InternFromString(name);
1921 if (s == NULL)
1922 return -1;
1923 err = PyDict_SetItemString(d, "__path__", s);
1924 Py_DECREF(s);
1925 if (err != 0)
1926 return err;
1927 }
Guido van Rossume32bf6e1998-02-11 05:53:02 +00001928 m = PyImport_ExecCodeModuleEx(name, co, "<frozen>");
Guido van Rossum79f25d91997-04-29 20:08:16 +00001929 Py_DECREF(co);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001930 if (m == NULL)
1931 return -1;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001932 Py_DECREF(m);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001933 return 1;
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001934}
Guido van Rossum74e6a111994-08-29 12:54:38 +00001935
1936
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001937/* Import a module, either built-in, frozen, or external, and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001938 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum74e6a111994-08-29 12:54:38 +00001939
Guido van Rossum79f25d91997-04-29 20:08:16 +00001940PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001941PyImport_ImportModule(const char *name)
Guido van Rossum74e6a111994-08-29 12:54:38 +00001942{
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00001943 PyObject *pname;
1944 PyObject *result;
1945
1946 pname = PyString_FromString(name);
Neal Norwitza11e4c12003-03-23 14:31:01 +00001947 if (pname == NULL)
1948 return NULL;
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00001949 result = PyImport_Import(pname);
1950 Py_DECREF(pname);
1951 return result;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001952}
1953
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001954/* Forward declarations for helper routines */
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001955static PyObject *get_parent(PyObject *globals, char *buf,
1956 Py_ssize_t *p_buflen, int level);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001957static PyObject *load_next(PyObject *mod, PyObject *altmod,
Martin v. Löwis18e16552006-02-15 17:27:45 +00001958 char **p_name, char *buf, Py_ssize_t *p_buflen);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001959static int mark_miss(char *name);
1960static int ensure_fromlist(PyObject *mod, PyObject *fromlist,
Martin v. Löwis18e16552006-02-15 17:27:45 +00001961 char *buf, Py_ssize_t buflen, int recursive);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001962static PyObject * import_submodule(PyObject *mod, char *name, char *fullname);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001963
1964/* The Magnum Opus of dotted-name import :-) */
1965
Guido van Rossum75acc9c1998-03-03 22:26:50 +00001966static PyObject *
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001967import_module_level(char *name, PyObject *globals, PyObject *locals,
1968 PyObject *fromlist, int level)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001969{
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001970 char buf[MAXPATHLEN+1];
Martin v. Löwis18e16552006-02-15 17:27:45 +00001971 Py_ssize_t buflen = 0;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001972 PyObject *parent, *head, *next, *tail;
1973
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001974 parent = get_parent(globals, buf, &buflen, level);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001975 if (parent == NULL)
1976 return NULL;
1977
1978 head = load_next(parent, Py_None, &name, buf, &buflen);
1979 if (head == NULL)
1980 return NULL;
1981
1982 tail = head;
1983 Py_INCREF(tail);
1984 while (name) {
1985 next = load_next(tail, tail, &name, buf, &buflen);
1986 Py_DECREF(tail);
1987 if (next == NULL) {
1988 Py_DECREF(head);
1989 return NULL;
1990 }
1991 tail = next;
1992 }
Thomas Wouters8ddab272006-04-04 16:17:02 +00001993 if (tail == Py_None) {
1994 /* If tail is Py_None, both get_parent and load_next found
1995 an empty module name: someone called __import__("") or
1996 doctored faulty bytecode */
Thomas Wouters4bdaa272006-04-05 13:39:37 +00001997 Py_DECREF(tail);
1998 Py_DECREF(head);
Thomas Wouters8ddab272006-04-04 16:17:02 +00001999 PyErr_SetString(PyExc_ValueError,
2000 "Empty module name");
2001 return NULL;
2002 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002003
2004 if (fromlist != NULL) {
2005 if (fromlist == Py_None || !PyObject_IsTrue(fromlist))
2006 fromlist = NULL;
2007 }
2008
2009 if (fromlist == NULL) {
2010 Py_DECREF(tail);
2011 return head;
2012 }
2013
2014 Py_DECREF(head);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002015 if (!ensure_fromlist(tail, fromlist, buf, buflen, 0)) {
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002016 Py_DECREF(tail);
2017 return NULL;
2018 }
2019
2020 return tail;
2021}
2022
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002023/* For DLL compatibility */
2024#undef PyImport_ImportModuleEx
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002025PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002026PyImport_ImportModuleEx(char *name, PyObject *globals, PyObject *locals,
2027 PyObject *fromlist)
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002028{
2029 PyObject *result;
2030 lock_import();
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002031 result = import_module_level(name, globals, locals, fromlist, -1);
2032 if (unlock_import() < 0) {
2033 Py_XDECREF(result);
2034 PyErr_SetString(PyExc_RuntimeError,
2035 "not holding the import lock");
2036 return NULL;
2037 }
2038 return result;
2039}
2040#define PyImport_ImportModuleEx(n, g, l, f) \
2041 PyImport_ImportModuleLevel(n, g, l, f, -1);
2042
2043PyObject *
2044PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals,
2045 PyObject *fromlist, int level)
2046{
2047 PyObject *result;
2048 lock_import();
2049 result = import_module_level(name, globals, locals, fromlist, level);
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002050 if (unlock_import() < 0) {
2051 Py_XDECREF(result);
2052 PyErr_SetString(PyExc_RuntimeError,
2053 "not holding the import lock");
2054 return NULL;
2055 }
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002056 return result;
2057}
2058
Fred Drake87590902004-05-28 20:21:36 +00002059/* Return the package that an import is being performed in. If globals comes
2060 from the module foo.bar.bat (not itself a package), this returns the
2061 sys.modules entry for foo.bar. If globals is from a package's __init__.py,
Georg Brandl5f6861d2006-05-28 21:57:35 +00002062 the package's entry in sys.modules is returned, as a borrowed reference.
Fred Drake87590902004-05-28 20:21:36 +00002063
2064 The *name* of the returned package is returned in buf, with the length of
2065 the name in *p_buflen.
2066
2067 If globals doesn't come from a package or a module in a package, or a
2068 corresponding entry is not found in sys.modules, Py_None is returned.
2069*/
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002070static PyObject *
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002071get_parent(PyObject *globals, char *buf, Py_ssize_t *p_buflen, int level)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002072{
2073 static PyObject *namestr = NULL;
2074 static PyObject *pathstr = NULL;
2075 PyObject *modname, *modpath, *modules, *parent;
2076
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002077 if (globals == NULL || !PyDict_Check(globals) || !level)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002078 return Py_None;
2079
2080 if (namestr == NULL) {
2081 namestr = PyString_InternFromString("__name__");
2082 if (namestr == NULL)
2083 return NULL;
2084 }
2085 if (pathstr == NULL) {
2086 pathstr = PyString_InternFromString("__path__");
2087 if (pathstr == NULL)
2088 return NULL;
2089 }
2090
2091 *buf = '\0';
2092 *p_buflen = 0;
2093 modname = PyDict_GetItem(globals, namestr);
2094 if (modname == NULL || !PyString_Check(modname))
2095 return Py_None;
2096
2097 modpath = PyDict_GetItem(globals, pathstr);
2098 if (modpath != NULL) {
Martin v. Löwis725507b2006-03-07 12:08:51 +00002099 Py_ssize_t len = PyString_GET_SIZE(modname);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002100 if (len > MAXPATHLEN) {
2101 PyErr_SetString(PyExc_ValueError,
2102 "Module name too long");
2103 return NULL;
2104 }
2105 strcpy(buf, PyString_AS_STRING(modname));
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002106 }
2107 else {
2108 char *start = PyString_AS_STRING(modname);
2109 char *lastdot = strrchr(start, '.');
Fred Drake4c82b232000-06-30 16:18:57 +00002110 size_t len;
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002111 if (lastdot == NULL && level > 0) {
2112 PyErr_SetString(PyExc_ValueError,
2113 "Relative importpath too deep");
2114 return NULL;
2115 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002116 if (lastdot == NULL)
2117 return Py_None;
2118 len = lastdot - start;
2119 if (len >= MAXPATHLEN) {
2120 PyErr_SetString(PyExc_ValueError,
2121 "Module name too long");
2122 return NULL;
2123 }
2124 strncpy(buf, start, len);
2125 buf[len] = '\0';
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002126 }
2127
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002128 while (--level > 0) {
2129 char *dot = strrchr(buf, '.');
2130 if (dot == NULL) {
2131 PyErr_SetString(PyExc_ValueError,
2132 "Relative importpath too deep");
2133 return NULL;
2134 }
2135 *dot = '\0';
2136 }
2137 *p_buflen = strlen(buf);
2138
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002139 modules = PyImport_GetModuleDict();
2140 parent = PyDict_GetItemString(modules, buf);
2141 if (parent == NULL)
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002142 PyErr_Format(PyExc_SystemError,
2143 "Parent module '%.200s' not loaded", buf);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002144 return parent;
2145 /* We expect, but can't guarantee, if parent != None, that:
2146 - parent.__name__ == buf
2147 - parent.__dict__ is globals
2148 If this is violated... Who cares? */
2149}
2150
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002151/* altmod is either None or same as mod */
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002152static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002153load_next(PyObject *mod, PyObject *altmod, char **p_name, char *buf,
Martin v. Löwis18e16552006-02-15 17:27:45 +00002154 Py_ssize_t *p_buflen)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002155{
2156 char *name = *p_name;
2157 char *dot = strchr(name, '.');
Fred Drake4c82b232000-06-30 16:18:57 +00002158 size_t len;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002159 char *p;
2160 PyObject *result;
2161
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002162 if (strlen(name) == 0) {
Thomas Wouters8ddab272006-04-04 16:17:02 +00002163 /* completely empty module name should only happen in
2164 'from . import' (or '__import__("")')*/
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002165 Py_INCREF(mod);
2166 *p_name = NULL;
2167 return mod;
2168 }
2169
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002170 if (dot == NULL) {
2171 *p_name = NULL;
2172 len = strlen(name);
2173 }
2174 else {
2175 *p_name = dot+1;
2176 len = dot-name;
2177 }
Guido van Rossum111c20b1998-04-11 17:38:22 +00002178 if (len == 0) {
2179 PyErr_SetString(PyExc_ValueError,
2180 "Empty module name");
2181 return NULL;
2182 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002183
2184 p = buf + *p_buflen;
2185 if (p != buf)
2186 *p++ = '.';
2187 if (p+len-buf >= MAXPATHLEN) {
2188 PyErr_SetString(PyExc_ValueError,
2189 "Module name too long");
2190 return NULL;
2191 }
2192 strncpy(p, name, len);
2193 p[len] = '\0';
2194 *p_buflen = p+len-buf;
2195
2196 result = import_submodule(mod, p, buf);
2197 if (result == Py_None && altmod != mod) {
2198 Py_DECREF(result);
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002199 /* Here, altmod must be None and mod must not be None */
Guido van Rossum0c819451997-09-07 06:16:57 +00002200 result = import_submodule(altmod, p, p);
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002201 if (result != NULL && result != Py_None) {
2202 if (mark_miss(buf) != 0) {
2203 Py_DECREF(result);
2204 return NULL;
2205 }
2206 strncpy(buf, name, len);
2207 buf[len] = '\0';
2208 *p_buflen = len;
2209 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002210 }
2211 if (result == NULL)
2212 return NULL;
2213
2214 if (result == Py_None) {
2215 Py_DECREF(result);
2216 PyErr_Format(PyExc_ImportError,
2217 "No module named %.200s", name);
2218 return NULL;
2219 }
2220
2221 return result;
2222}
2223
2224static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002225mark_miss(char *name)
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002226{
2227 PyObject *modules = PyImport_GetModuleDict();
2228 return PyDict_SetItemString(modules, name, Py_None);
2229}
2230
2231static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00002232ensure_fromlist(PyObject *mod, PyObject *fromlist, char *buf, Py_ssize_t buflen,
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002233 int recursive)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002234{
2235 int i;
2236
2237 if (!PyObject_HasAttrString(mod, "__path__"))
2238 return 1;
2239
2240 for (i = 0; ; i++) {
2241 PyObject *item = PySequence_GetItem(fromlist, i);
2242 int hasit;
2243 if (item == NULL) {
2244 if (PyErr_ExceptionMatches(PyExc_IndexError)) {
2245 PyErr_Clear();
2246 return 1;
2247 }
2248 return 0;
2249 }
2250 if (!PyString_Check(item)) {
2251 PyErr_SetString(PyExc_TypeError,
2252 "Item in ``from list'' not a string");
2253 Py_DECREF(item);
2254 return 0;
2255 }
2256 if (PyString_AS_STRING(item)[0] == '*') {
Guido van Rossum9905ef91997-09-08 16:07:11 +00002257 PyObject *all;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002258 Py_DECREF(item);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002259 /* See if the package defines __all__ */
2260 if (recursive)
2261 continue; /* Avoid endless recursion */
2262 all = PyObject_GetAttrString(mod, "__all__");
2263 if (all == NULL)
2264 PyErr_Clear();
2265 else {
Martin v. Löwis83969ee2004-03-23 16:28:13 +00002266 int ret = ensure_fromlist(mod, all, buf, buflen, 1);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002267 Py_DECREF(all);
Martin v. Löwis83969ee2004-03-23 16:28:13 +00002268 if (!ret)
2269 return 0;
Guido van Rossum9905ef91997-09-08 16:07:11 +00002270 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002271 continue;
2272 }
2273 hasit = PyObject_HasAttr(mod, item);
2274 if (!hasit) {
2275 char *subname = PyString_AS_STRING(item);
2276 PyObject *submod;
2277 char *p;
2278 if (buflen + strlen(subname) >= MAXPATHLEN) {
2279 PyErr_SetString(PyExc_ValueError,
2280 "Module name too long");
2281 Py_DECREF(item);
2282 return 0;
2283 }
2284 p = buf + buflen;
2285 *p++ = '.';
2286 strcpy(p, subname);
2287 submod = import_submodule(mod, subname, buf);
2288 Py_XDECREF(submod);
2289 if (submod == NULL) {
2290 Py_DECREF(item);
2291 return 0;
2292 }
2293 }
2294 Py_DECREF(item);
2295 }
2296
Guido van Rossuma7f2e811997-10-03 15:33:32 +00002297 /* NOTREACHED */
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002298}
2299
Neil Schemenauer00b09662003-06-16 21:03:07 +00002300static int
2301add_submodule(PyObject *mod, PyObject *submod, char *fullname, char *subname,
2302 PyObject *modules)
2303{
2304 if (mod == Py_None)
2305 return 1;
2306 /* Irrespective of the success of this load, make a
2307 reference to it in the parent package module. A copy gets
2308 saved in the modules dictionary under the full name, so get a
2309 reference from there, if need be. (The exception is when the
2310 load failed with a SyntaxError -- then there's no trace in
2311 sys.modules. In that case, of course, do nothing extra.) */
2312 if (submod == NULL) {
2313 submod = PyDict_GetItemString(modules, fullname);
2314 if (submod == NULL)
2315 return 1;
2316 }
2317 if (PyModule_Check(mod)) {
2318 /* We can't use setattr here since it can give a
2319 * spurious warning if the submodule name shadows a
2320 * builtin name */
2321 PyObject *dict = PyModule_GetDict(mod);
2322 if (!dict)
2323 return 0;
2324 if (PyDict_SetItemString(dict, subname, submod) < 0)
2325 return 0;
2326 }
2327 else {
2328 if (PyObject_SetAttrString(mod, subname, submod) < 0)
2329 return 0;
2330 }
2331 return 1;
2332}
2333
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002334static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002335import_submodule(PyObject *mod, char *subname, char *fullname)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002336{
Guido van Rossum25ce5661997-08-02 03:10:38 +00002337 PyObject *modules = PyImport_GetModuleDict();
Neil Schemenauer00b09662003-06-16 21:03:07 +00002338 PyObject *m = NULL;
Guido van Rossum74e6a111994-08-29 12:54:38 +00002339
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002340 /* Require:
2341 if mod == None: subname == fullname
2342 else: mod.__name__ + "." + subname == fullname
2343 */
2344
Tim Peters50d8d372001-02-28 05:34:27 +00002345 if ((m = PyDict_GetItemString(modules, fullname)) != NULL) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002346 Py_INCREF(m);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00002347 }
2348 else {
Just van Rossum52e14d62002-12-30 22:08:05 +00002349 PyObject *path, *loader = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002350 char buf[MAXPATHLEN+1];
2351 struct filedescr *fdp;
2352 FILE *fp = NULL;
2353
Guido van Rossum9c0afe51998-05-19 15:09:05 +00002354 if (mod == Py_None)
2355 path = NULL;
2356 else {
2357 path = PyObject_GetAttrString(mod, "__path__");
2358 if (path == NULL) {
2359 PyErr_Clear();
2360 Py_INCREF(Py_None);
2361 return Py_None;
2362 }
2363 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002364
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002365 buf[0] = '\0';
Just van Rossum52e14d62002-12-30 22:08:05 +00002366 fdp = find_module(fullname, subname, path, buf, MAXPATHLEN+1,
2367 &fp, &loader);
Guido van Rossumb68cd421998-07-01 17:36:26 +00002368 Py_XDECREF(path);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002369 if (fdp == NULL) {
2370 if (!PyErr_ExceptionMatches(PyExc_ImportError))
2371 return NULL;
2372 PyErr_Clear();
2373 Py_INCREF(Py_None);
2374 return Py_None;
2375 }
Just van Rossum52e14d62002-12-30 22:08:05 +00002376 m = load_module(fullname, fp, buf, fdp->type, loader);
2377 Py_XDECREF(loader);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002378 if (fp)
2379 fclose(fp);
Neil Schemenauer00b09662003-06-16 21:03:07 +00002380 if (!add_submodule(mod, m, fullname, subname, modules)) {
2381 Py_XDECREF(m);
2382 m = NULL;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002383 }
Guido van Rossum74e6a111994-08-29 12:54:38 +00002384 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002385
2386 return m;
Guido van Rossum74e6a111994-08-29 12:54:38 +00002387}
2388
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002389
2390/* Re-import a module of any kind and return its module object, WITH
2391 INCREMENTED REFERENCE COUNT */
2392
Guido van Rossum79f25d91997-04-29 20:08:16 +00002393PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002394PyImport_ReloadModule(PyObject *m)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002395{
Guido van Rossum25ce5661997-08-02 03:10:38 +00002396 PyObject *modules = PyImport_GetModuleDict();
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002397 PyObject *path = NULL, *loader = NULL;
Guido van Rossum222ef561997-09-06 19:41:09 +00002398 char *name, *subname;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002399 char buf[MAXPATHLEN+1];
2400 struct filedescr *fdp;
2401 FILE *fp = NULL;
Tim Peters1cd70172004-08-02 03:52:12 +00002402 PyObject *newm;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002403
Guido van Rossum79f25d91997-04-29 20:08:16 +00002404 if (m == NULL || !PyModule_Check(m)) {
2405 PyErr_SetString(PyExc_TypeError,
2406 "reload() argument must be module");
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002407 return NULL;
2408 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002409 name = PyModule_GetName(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002410 if (name == NULL)
2411 return NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +00002412 if (m != PyDict_GetItemString(modules, name)) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002413 PyErr_Format(PyExc_ImportError,
2414 "reload(): module %.200s not in sys.modules",
2415 name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002416 return NULL;
2417 }
Guido van Rossum222ef561997-09-06 19:41:09 +00002418 subname = strrchr(name, '.');
2419 if (subname == NULL)
2420 subname = name;
2421 else {
2422 PyObject *parentname, *parent;
2423 parentname = PyString_FromStringAndSize(name, (subname-name));
2424 if (parentname == NULL)
2425 return NULL;
2426 parent = PyDict_GetItem(modules, parentname);
2427 if (parent == NULL) {
2428 PyErr_Format(PyExc_ImportError,
2429 "reload(): parent %.200s not in sys.modules",
Georg Brandl0c55f292005-09-14 06:56:20 +00002430 PyString_AS_STRING(parentname));
2431 Py_DECREF(parentname);
Guido van Rossum222ef561997-09-06 19:41:09 +00002432 return NULL;
2433 }
Georg Brandl0c55f292005-09-14 06:56:20 +00002434 Py_DECREF(parentname);
Guido van Rossum222ef561997-09-06 19:41:09 +00002435 subname++;
2436 path = PyObject_GetAttrString(parent, "__path__");
2437 if (path == NULL)
2438 PyErr_Clear();
2439 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002440 buf[0] = '\0';
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002441 fdp = find_module(name, subname, path, buf, MAXPATHLEN+1, &fp, &loader);
Guido van Rossum222ef561997-09-06 19:41:09 +00002442 Py_XDECREF(path);
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002443
2444 if (fdp == NULL) {
2445 Py_XDECREF(loader);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002446 return NULL;
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002447 }
2448
2449 newm = load_module(name, fp, buf, fdp->type, loader);
2450 Py_XDECREF(loader);
2451
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002452 if (fp)
2453 fclose(fp);
Tim Peters1cd70172004-08-02 03:52:12 +00002454 if (newm == NULL) {
2455 /* load_module probably removed name from modules because of
2456 * the error. Put back the original module object. We're
2457 * going to return NULL in this case regardless of whether
2458 * replacing name succeeds, so the return value is ignored.
2459 */
2460 PyDict_SetItemString(modules, name, m);
2461 }
2462 return newm;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002463}
2464
2465
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002466/* Higher-level import emulator which emulates the "import" statement
2467 more accurately -- it invokes the __import__() function from the
2468 builtins of the current globals. This means that the import is
2469 done using whatever import hooks are installed in the current
Guido van Rossum6058eb41998-12-21 19:51:00 +00002470 environment, e.g. by "rexec".
2471 A dummy list ["__doc__"] is passed as the 4th argument so that
2472 e.g. PyImport_Import(PyString_FromString("win32com.client.gencache"))
2473 will return <module "gencache"> instead of <module "win32com">. */
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002474
2475PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002476PyImport_Import(PyObject *module_name)
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002477{
2478 static PyObject *silly_list = NULL;
2479 static PyObject *builtins_str = NULL;
2480 static PyObject *import_str = NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002481 PyObject *globals = NULL;
2482 PyObject *import = NULL;
2483 PyObject *builtins = NULL;
2484 PyObject *r = NULL;
2485
2486 /* Initialize constant string objects */
2487 if (silly_list == NULL) {
2488 import_str = PyString_InternFromString("__import__");
2489 if (import_str == NULL)
2490 return NULL;
2491 builtins_str = PyString_InternFromString("__builtins__");
2492 if (builtins_str == NULL)
2493 return NULL;
2494 silly_list = Py_BuildValue("[s]", "__doc__");
2495 if (silly_list == NULL)
2496 return NULL;
2497 }
2498
2499 /* Get the builtins from current globals */
2500 globals = PyEval_GetGlobals();
Guido van Rossum85cd1d62001-02-20 21:43:24 +00002501 if (globals != NULL) {
Guido van Rossum66468561998-10-22 15:46:50 +00002502 Py_INCREF(globals);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002503 builtins = PyObject_GetItem(globals, builtins_str);
2504 if (builtins == NULL)
2505 goto err;
2506 }
2507 else {
2508 /* No globals -- use standard builtins, and fake globals */
2509 PyErr_Clear();
2510
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002511 builtins = PyImport_ImportModuleLevel("__builtin__",
2512 NULL, NULL, NULL, 0);
Guido van Rossum85cd1d62001-02-20 21:43:24 +00002513 if (builtins == NULL)
2514 return NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002515 globals = Py_BuildValue("{OO}", builtins_str, builtins);
2516 if (globals == NULL)
2517 goto err;
2518 }
2519
2520 /* Get the __import__ function from the builtins */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002521 if (PyDict_Check(builtins)) {
Fred Drakea76ba6e2001-03-06 06:31:15 +00002522 import = PyObject_GetItem(builtins, import_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00002523 if (import == NULL)
2524 PyErr_SetObject(PyExc_KeyError, import_str);
2525 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002526 else
Fred Drakea76ba6e2001-03-06 06:31:15 +00002527 import = PyObject_GetAttr(builtins, import_str);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002528 if (import == NULL)
2529 goto err;
2530
2531 /* Call the _import__ function with the proper argument list */
Georg Brandl684fd0c2006-05-25 19:15:31 +00002532 r = PyObject_CallFunctionObjArgs(import, module_name, globals,
2533 globals, silly_list, NULL);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002534
2535 err:
2536 Py_XDECREF(globals);
2537 Py_XDECREF(builtins);
2538 Py_XDECREF(import);
Tim Peters50d8d372001-02-28 05:34:27 +00002539
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002540 return r;
2541}
2542
2543
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002544/* Module 'imp' provides Python access to the primitives used for
2545 importing modules.
2546*/
2547
Guido van Rossum79f25d91997-04-29 20:08:16 +00002548static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002549imp_get_magic(PyObject *self, PyObject *noargs)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002550{
2551 char buf[4];
2552
Guido van Rossum96774c12000-05-01 20:19:08 +00002553 buf[0] = (char) ((pyc_magic >> 0) & 0xff);
2554 buf[1] = (char) ((pyc_magic >> 8) & 0xff);
2555 buf[2] = (char) ((pyc_magic >> 16) & 0xff);
2556 buf[3] = (char) ((pyc_magic >> 24) & 0xff);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002557
Guido van Rossum79f25d91997-04-29 20:08:16 +00002558 return PyString_FromStringAndSize(buf, 4);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002559}
2560
Guido van Rossum79f25d91997-04-29 20:08:16 +00002561static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002562imp_get_suffixes(PyObject *self, PyObject *noargs)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002563{
Guido van Rossum79f25d91997-04-29 20:08:16 +00002564 PyObject *list;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002565 struct filedescr *fdp;
2566
Guido van Rossum79f25d91997-04-29 20:08:16 +00002567 list = PyList_New(0);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002568 if (list == NULL)
2569 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002570 for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
2571 PyObject *item = Py_BuildValue("ssi",
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002572 fdp->suffix, fdp->mode, fdp->type);
2573 if (item == NULL) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002574 Py_DECREF(list);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002575 return NULL;
2576 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002577 if (PyList_Append(list, item) < 0) {
2578 Py_DECREF(list);
2579 Py_DECREF(item);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002580 return NULL;
2581 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002582 Py_DECREF(item);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002583 }
2584 return list;
2585}
2586
Guido van Rossum79f25d91997-04-29 20:08:16 +00002587static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002588call_find_module(char *name, PyObject *path)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002589{
Tim Petersdbd9ba62000-07-09 03:09:57 +00002590 extern int fclose(FILE *);
Guido van Rossum79f25d91997-04-29 20:08:16 +00002591 PyObject *fob, *ret;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002592 struct filedescr *fdp;
2593 char pathname[MAXPATHLEN+1];
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002594 FILE *fp = NULL;
2595
2596 pathname[0] = '\0';
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002597 if (path == Py_None)
2598 path = NULL;
Just van Rossum52e14d62002-12-30 22:08:05 +00002599 fdp = find_module(NULL, name, path, pathname, MAXPATHLEN+1, &fp, NULL);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002600 if (fdp == NULL)
2601 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002602 if (fp != NULL) {
2603 fob = PyFile_FromFile(fp, pathname, fdp->mode, fclose);
2604 if (fob == NULL) {
2605 fclose(fp);
2606 return NULL;
2607 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002608 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002609 else {
2610 fob = Py_None;
2611 Py_INCREF(fob);
Tim Peters50d8d372001-02-28 05:34:27 +00002612 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002613 ret = Py_BuildValue("Os(ssi)",
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002614 fob, pathname, fdp->suffix, fdp->mode, fdp->type);
Guido van Rossum79f25d91997-04-29 20:08:16 +00002615 Py_DECREF(fob);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002616 return ret;
2617}
2618
Guido van Rossum79f25d91997-04-29 20:08:16 +00002619static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002620imp_find_module(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002621{
2622 char *name;
2623 PyObject *path = NULL;
Guido van Rossum43713e52000-02-29 13:59:29 +00002624 if (!PyArg_ParseTuple(args, "s|O:find_module", &name, &path))
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002625 return NULL;
2626 return call_find_module(name, path);
2627}
2628
2629static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002630imp_init_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002631{
2632 char *name;
2633 int ret;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002634 PyObject *m;
Guido van Rossum43713e52000-02-29 13:59:29 +00002635 if (!PyArg_ParseTuple(args, "s:init_builtin", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002636 return NULL;
2637 ret = init_builtin(name);
2638 if (ret < 0)
2639 return NULL;
2640 if (ret == 0) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002641 Py_INCREF(Py_None);
2642 return Py_None;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002643 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002644 m = PyImport_AddModule(name);
2645 Py_XINCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002646 return m;
2647}
2648
Guido van Rossum79f25d91997-04-29 20:08:16 +00002649static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002650imp_init_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002651{
2652 char *name;
2653 int ret;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002654 PyObject *m;
Guido van Rossum43713e52000-02-29 13:59:29 +00002655 if (!PyArg_ParseTuple(args, "s:init_frozen", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002656 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002657 ret = PyImport_ImportFrozenModule(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002658 if (ret < 0)
2659 return NULL;
2660 if (ret == 0) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002661 Py_INCREF(Py_None);
2662 return Py_None;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002663 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002664 m = PyImport_AddModule(name);
2665 Py_XINCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002666 return m;
2667}
2668
Guido van Rossum79f25d91997-04-29 20:08:16 +00002669static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002670imp_get_frozen_object(PyObject *self, PyObject *args)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002671{
2672 char *name;
Jack Jansen95ffa231995-10-03 14:38:41 +00002673
Guido van Rossum43713e52000-02-29 13:59:29 +00002674 if (!PyArg_ParseTuple(args, "s:get_frozen_object", &name))
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002675 return NULL;
2676 return get_frozen_object(name);
2677}
2678
Guido van Rossum79f25d91997-04-29 20:08:16 +00002679static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002680imp_is_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002681{
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002682 char *name;
Guido van Rossum43713e52000-02-29 13:59:29 +00002683 if (!PyArg_ParseTuple(args, "s:is_builtin", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002684 return NULL;
Guido van Rossum50ee94f2002-04-09 18:00:58 +00002685 return PyInt_FromLong(is_builtin(name));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002686}
2687
Guido van Rossum79f25d91997-04-29 20:08:16 +00002688static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002689imp_is_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002690{
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002691 char *name;
Guido van Rossum323bf5e1998-06-24 03:54:06 +00002692 struct _frozen *p;
Guido van Rossum43713e52000-02-29 13:59:29 +00002693 if (!PyArg_ParseTuple(args, "s:is_frozen", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002694 return NULL;
Guido van Rossum323bf5e1998-06-24 03:54:06 +00002695 p = find_frozen(name);
Guido van Rossumb8bff3f2002-04-07 06:34:38 +00002696 return PyBool_FromLong((long) (p == NULL ? 0 : p->size));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002697}
2698
2699static FILE *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002700get_file(char *pathname, PyObject *fob, char *mode)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002701{
2702 FILE *fp;
2703 if (fob == NULL) {
Tim Peters86c7d2f2004-08-01 23:24:21 +00002704 if (mode[0] == 'U')
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00002705 mode = "r" PY_STDIOTEXTMODE;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002706 fp = fopen(pathname, mode);
2707 if (fp == NULL)
Guido van Rossum79f25d91997-04-29 20:08:16 +00002708 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002709 }
2710 else {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002711 fp = PyFile_AsFile(fob);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002712 if (fp == NULL)
Guido van Rossum79f25d91997-04-29 20:08:16 +00002713 PyErr_SetString(PyExc_ValueError,
2714 "bad/closed file object");
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002715 }
2716 return fp;
2717}
2718
Guido van Rossum79f25d91997-04-29 20:08:16 +00002719static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002720imp_load_compiled(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002721{
2722 char *name;
2723 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002724 PyObject *fob = NULL;
2725 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002726 FILE *fp;
Guido van Rossum43713e52000-02-29 13:59:29 +00002727 if (!PyArg_ParseTuple(args, "ss|O!:load_compiled", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002728 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002729 return NULL;
2730 fp = get_file(pathname, fob, "rb");
2731 if (fp == NULL)
2732 return NULL;
2733 m = load_compiled_module(name, pathname, fp);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002734 if (fob == NULL)
2735 fclose(fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002736 return m;
2737}
2738
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002739#ifdef HAVE_DYNAMIC_LOADING
2740
Guido van Rossum79f25d91997-04-29 20:08:16 +00002741static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002742imp_load_dynamic(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002743{
2744 char *name;
2745 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002746 PyObject *fob = NULL;
2747 PyObject *m;
Guido van Rossum7faeab31995-07-07 22:50:36 +00002748 FILE *fp = NULL;
Guido van Rossum43713e52000-02-29 13:59:29 +00002749 if (!PyArg_ParseTuple(args, "ss|O!:load_dynamic", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002750 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002751 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002752 if (fob) {
Guido van Rossum7faeab31995-07-07 22:50:36 +00002753 fp = get_file(pathname, fob, "r");
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002754 if (fp == NULL)
2755 return NULL;
2756 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002757 m = _PyImport_LoadDynamicModule(name, pathname, fp);
Guido van Rossum7faeab31995-07-07 22:50:36 +00002758 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002759}
2760
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002761#endif /* HAVE_DYNAMIC_LOADING */
2762
Guido van Rossum79f25d91997-04-29 20:08:16 +00002763static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002764imp_load_source(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002765{
2766 char *name;
2767 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002768 PyObject *fob = NULL;
2769 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002770 FILE *fp;
Guido van Rossum43713e52000-02-29 13:59:29 +00002771 if (!PyArg_ParseTuple(args, "ss|O!:load_source", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002772 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002773 return NULL;
2774 fp = get_file(pathname, fob, "r");
2775 if (fp == NULL)
2776 return NULL;
2777 m = load_source_module(name, pathname, fp);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002778 if (fob == NULL)
2779 fclose(fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002780 return m;
2781}
2782
Guido van Rossum79f25d91997-04-29 20:08:16 +00002783static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002784imp_load_module(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002785{
2786 char *name;
2787 PyObject *fob;
2788 char *pathname;
2789 char *suffix; /* Unused */
2790 char *mode;
2791 int type;
2792 FILE *fp;
2793
Guido van Rossum43713e52000-02-29 13:59:29 +00002794 if (!PyArg_ParseTuple(args, "sOs(ssi):load_module",
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002795 &name, &fob, &pathname,
2796 &suffix, &mode, &type))
2797 return NULL;
Guido van Rossum5e2c5fa2002-05-30 17:33:07 +00002798 if (*mode) {
2799 /* Mode must start with 'r' or 'U' and must not contain '+'.
2800 Implicit in this test is the assumption that the mode
2801 may contain other modifiers like 'b' or 't'. */
2802
2803 if (!(*mode == 'r' || *mode == 'U') || strchr(mode, '+')) {
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00002804 PyErr_Format(PyExc_ValueError,
2805 "invalid file open mode %.200s", mode);
2806 return NULL;
Guido van Rossum5e2c5fa2002-05-30 17:33:07 +00002807 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002808 }
2809 if (fob == Py_None)
2810 fp = NULL;
2811 else {
2812 if (!PyFile_Check(fob)) {
2813 PyErr_SetString(PyExc_ValueError,
2814 "load_module arg#2 should be a file or None");
2815 return NULL;
2816 }
2817 fp = get_file(pathname, fob, mode);
2818 if (fp == NULL)
2819 return NULL;
2820 }
Just van Rossum52e14d62002-12-30 22:08:05 +00002821 return load_module(name, fp, pathname, type, NULL);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002822}
2823
2824static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002825imp_load_package(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002826{
2827 char *name;
2828 char *pathname;
Guido van Rossum43713e52000-02-29 13:59:29 +00002829 if (!PyArg_ParseTuple(args, "ss:load_package", &name, &pathname))
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002830 return NULL;
2831 return load_package(name, pathname);
2832}
2833
2834static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002835imp_new_module(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002836{
2837 char *name;
Guido van Rossum43713e52000-02-29 13:59:29 +00002838 if (!PyArg_ParseTuple(args, "s:new_module", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002839 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002840 return PyModule_New(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002841}
2842
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002843/* Doc strings */
2844
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002845PyDoc_STRVAR(doc_imp,
2846"This module provides the components needed to build your own\n\
2847__import__ function. Undocumented functions are obsolete.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002848
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002849PyDoc_STRVAR(doc_find_module,
2850"find_module(name, [path]) -> (file, filename, (suffix, mode, type))\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002851Search for a module. If path is omitted or None, search for a\n\
2852built-in, frozen or special module and continue search in sys.path.\n\
2853The module name cannot contain '.'; to search for a submodule of a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002854package, pass the submodule name and the package's __path__.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002855
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002856PyDoc_STRVAR(doc_load_module,
2857"load_module(name, file, filename, (suffix, mode, type)) -> module\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002858Load a module, given information returned by find_module().\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002859The module name must include the full package name, if any.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002860
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002861PyDoc_STRVAR(doc_get_magic,
2862"get_magic() -> string\n\
2863Return the magic number for .pyc or .pyo files.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002864
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002865PyDoc_STRVAR(doc_get_suffixes,
2866"get_suffixes() -> [(suffix, mode, type), ...]\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002867Return a list of (suffix, mode, type) tuples describing the files\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002868that find_module() looks for.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002869
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002870PyDoc_STRVAR(doc_new_module,
2871"new_module(name) -> module\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002872Create a new module. Do not enter it in sys.modules.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002873The module name must include the full package name, if any.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002874
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002875PyDoc_STRVAR(doc_lock_held,
Tim Petersa7c65092004-08-01 23:26:05 +00002876"lock_held() -> boolean\n\
2877Return True if the import lock is currently held, else False.\n\
2878On platforms without threads, return False.");
Tim Peters69232342001-08-30 05:16:13 +00002879
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002880PyDoc_STRVAR(doc_acquire_lock,
2881"acquire_lock() -> None\n\
Neal Norwitz2294c0d2003-02-12 23:02:21 +00002882Acquires the interpreter's import lock for the current thread.\n\
2883This lock should be used by import hooks to ensure thread-safety\n\
2884when importing modules.\n\
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002885On platforms without threads, this function does nothing.");
2886
2887PyDoc_STRVAR(doc_release_lock,
2888"release_lock() -> None\n\
2889Release the interpreter's import lock.\n\
2890On platforms without threads, this function does nothing.");
2891
Guido van Rossum79f25d91997-04-29 20:08:16 +00002892static PyMethodDef imp_methods[] = {
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002893 {"find_module", imp_find_module, METH_VARARGS, doc_find_module},
2894 {"get_magic", imp_get_magic, METH_NOARGS, doc_get_magic},
2895 {"get_suffixes", imp_get_suffixes, METH_NOARGS, doc_get_suffixes},
2896 {"load_module", imp_load_module, METH_VARARGS, doc_load_module},
2897 {"new_module", imp_new_module, METH_VARARGS, doc_new_module},
2898 {"lock_held", imp_lock_held, METH_NOARGS, doc_lock_held},
2899 {"acquire_lock", imp_acquire_lock, METH_NOARGS, doc_acquire_lock},
2900 {"release_lock", imp_release_lock, METH_NOARGS, doc_release_lock},
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002901 /* The rest are obsolete */
Neal Norwitz031829d2002-03-31 14:37:44 +00002902 {"get_frozen_object", imp_get_frozen_object, METH_VARARGS},
2903 {"init_builtin", imp_init_builtin, METH_VARARGS},
2904 {"init_frozen", imp_init_frozen, METH_VARARGS},
2905 {"is_builtin", imp_is_builtin, METH_VARARGS},
2906 {"is_frozen", imp_is_frozen, METH_VARARGS},
2907 {"load_compiled", imp_load_compiled, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002908#ifdef HAVE_DYNAMIC_LOADING
Neal Norwitz031829d2002-03-31 14:37:44 +00002909 {"load_dynamic", imp_load_dynamic, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002910#endif
Neal Norwitz031829d2002-03-31 14:37:44 +00002911 {"load_package", imp_load_package, METH_VARARGS},
Neal Norwitz031829d2002-03-31 14:37:44 +00002912 {"load_source", imp_load_source, METH_VARARGS},
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002913 {NULL, NULL} /* sentinel */
2914};
2915
Guido van Rossum1a8791e1998-08-04 22:46:29 +00002916static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002917setint(PyObject *d, char *name, int value)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002918{
2919 PyObject *v;
2920 int err;
2921
2922 v = PyInt_FromLong((long)value);
2923 err = PyDict_SetItemString(d, name, v);
2924 Py_XDECREF(v);
2925 return err;
2926}
2927
Jason Tishler6bc06ec2003-09-04 11:59:50 +00002928PyMODINIT_FUNC
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002929initimp(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002930{
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002931 PyObject *m, *d;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002932
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002933 m = Py_InitModule4("imp", imp_methods, doc_imp,
2934 NULL, PYTHON_API_VERSION);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00002935 if (m == NULL)
2936 goto failure;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002937 d = PyModule_GetDict(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002938
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002939 if (setint(d, "SEARCH_ERROR", SEARCH_ERROR) < 0) goto failure;
2940 if (setint(d, "PY_SOURCE", PY_SOURCE) < 0) goto failure;
2941 if (setint(d, "PY_COMPILED", PY_COMPILED) < 0) goto failure;
2942 if (setint(d, "C_EXTENSION", C_EXTENSION) < 0) goto failure;
2943 if (setint(d, "PY_RESOURCE", PY_RESOURCE) < 0) goto failure;
2944 if (setint(d, "PKG_DIRECTORY", PKG_DIRECTORY) < 0) goto failure;
2945 if (setint(d, "C_BUILTIN", C_BUILTIN) < 0) goto failure;
2946 if (setint(d, "PY_FROZEN", PY_FROZEN) < 0) goto failure;
Guido van Rossum0f84a341998-08-06 13:36:01 +00002947 if (setint(d, "PY_CODERESOURCE", PY_CODERESOURCE) < 0) goto failure;
Just van Rossum52e14d62002-12-30 22:08:05 +00002948 if (setint(d, "IMP_HOOK", IMP_HOOK) < 0) goto failure;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002949
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002950 failure:
2951 ;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002952}
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002953
2954
Guido van Rossumb18618d2000-05-03 23:44:39 +00002955/* API for embedding applications that want to add their own entries
2956 to the table of built-in modules. This should normally be called
2957 *before* Py_Initialize(). When the table resize fails, -1 is
2958 returned and the existing table is unchanged.
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002959
2960 After a similar function by Just van Rossum. */
2961
2962int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002963PyImport_ExtendInittab(struct _inittab *newtab)
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002964{
2965 static struct _inittab *our_copy = NULL;
2966 struct _inittab *p;
2967 int i, n;
2968
2969 /* Count the number of entries in both tables */
2970 for (n = 0; newtab[n].name != NULL; n++)
2971 ;
2972 if (n == 0)
2973 return 0; /* Nothing to do */
2974 for (i = 0; PyImport_Inittab[i].name != NULL; i++)
2975 ;
2976
2977 /* Allocate new memory for the combined table */
Guido van Rossumb18618d2000-05-03 23:44:39 +00002978 p = our_copy;
2979 PyMem_RESIZE(p, struct _inittab, i+n+1);
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002980 if (p == NULL)
2981 return -1;
2982
2983 /* Copy the tables into the new memory */
2984 if (our_copy != PyImport_Inittab)
2985 memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct _inittab));
2986 PyImport_Inittab = our_copy = p;
2987 memcpy(p+i, newtab, (n+1) * sizeof(struct _inittab));
2988
2989 return 0;
2990}
2991
2992/* Shorthand to add a single entry given a name and a function */
2993
2994int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002995PyImport_AppendInittab(char *name, void (*initfunc)(void))
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002996{
2997 struct _inittab newtab[2];
2998
2999 memset(newtab, '\0', sizeof newtab);
3000
3001 newtab[0].name = name;
3002 newtab[0].initfunc = initfunc;
3003
3004 return PyImport_ExtendInittab(newtab);
3005}
Anthony Baxterac6bd462006-04-13 02:06:09 +00003006
3007#ifdef __cplusplus
3008}
3009#endif