blob: 933f094e7d8d29f1e9f7f78ca15186771f91348c [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);
Neal Norwitza4df11d2006-07-06 04:28:59 +00001240 if (importer == NULL) {
1241 Py_XDECREF(copy);
Just van Rossum52e14d62002-12-30 22:08:05 +00001242 return NULL;
Neal Norwitza4df11d2006-07-06 04:28:59 +00001243 }
Just van Rossum52e14d62002-12-30 22:08:05 +00001244 /* Note: importer is a borrowed reference */
Georg Brandlf4ef1162006-05-26 18:03:31 +00001245 if (importer == Py_False) {
1246 /* Cached as not being a valid dir. */
1247 Py_XDECREF(copy);
1248 continue;
1249 }
1250 else if (importer == Py_True) {
1251 /* Cached as being a valid dir, so just
1252 * continue below. */
1253 }
1254 else if (importer == Py_None) {
1255 /* No importer was found, so it has to be a file.
Georg Brandl0fd12912006-05-28 20:11:45 +00001256 * Check if the directory is valid.
1257 * Note that the empty string is a valid path, but
1258 * not stat'able, hence the check for len. */
Georg Brandlf4ef1162006-05-26 18:03:31 +00001259#ifdef HAVE_STAT
Georg Brandl0fd12912006-05-28 20:11:45 +00001260 if (len && stat(buf, &statbuf) != 0) {
Georg Brandlf4ef1162006-05-26 18:03:31 +00001261 /* Directory does not exist. */
1262 PyDict_SetItem(path_importer_cache,
1263 v, Py_False);
1264 Py_XDECREF(copy);
1265 continue;
1266 } else {
1267 PyDict_SetItem(path_importer_cache,
1268 v, Py_True);
1269 }
1270#endif
1271 }
1272 else {
1273 /* A real import hook importer was found. */
Just van Rossum52e14d62002-12-30 22:08:05 +00001274 PyObject *loader;
1275 loader = PyObject_CallMethod(importer,
1276 "find_module",
1277 "s", fullname);
Neal Norwitza4df11d2006-07-06 04:28:59 +00001278 Py_XDECREF(copy);
Just van Rossum52e14d62002-12-30 22:08:05 +00001279 if (loader == NULL)
1280 return NULL; /* error */
1281 if (loader != Py_None) {
1282 /* a loader was found */
1283 *p_loader = loader;
1284 return &importhookdescr;
1285 }
1286 Py_DECREF(loader);
Georg Brandlf4ef1162006-05-26 18:03:31 +00001287 continue;
Just van Rossum52e14d62002-12-30 22:08:05 +00001288 }
Just van Rossum52e14d62002-12-30 22:08:05 +00001289 }
Georg Brandlf4ef1162006-05-26 18:03:31 +00001290 /* no hook was found, use builtin import */
Just van Rossum52e14d62002-12-30 22:08:05 +00001291
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001292 if (len > 0 && buf[len-1] != SEP
1293#ifdef ALTSEP
1294 && buf[len-1] != ALTSEP
1295#endif
1296 )
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001297 buf[len++] = SEP;
Guido van Rossum215c3402000-11-13 17:26:32 +00001298 strcpy(buf+len, name);
1299 len += namelen;
Tim Peters50d8d372001-02-28 05:34:27 +00001300
1301 /* Check for package import (buf holds a directory name,
1302 and there's an __init__ module in that directory */
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001303#ifdef HAVE_STAT
Walter Dörwald3430d702002-06-17 10:43:59 +00001304 if (stat(buf, &statbuf) == 0 && /* it exists */
1305 S_ISDIR(statbuf.st_mode) && /* it's a directory */
Thomas Wouters9df4e6f2006-04-27 23:13:20 +00001306 case_ok(buf, len, namelen, name)) { /* case matches */
1307 if (find_init_module(buf)) { /* and has __init__.py */
1308 Py_XDECREF(copy);
1309 return &fd_package;
1310 }
1311 else {
1312 char warnstr[MAXPATHLEN+80];
1313 sprintf(warnstr, "Not importing directory "
1314 "'%.*s': missing __init__.py",
1315 MAXPATHLEN, buf);
1316 if (PyErr_Warn(PyExc_ImportWarning,
1317 warnstr)) {
1318 Py_XDECREF(copy);
1319 return NULL;
1320 }
1321 }
Walter Dörwald3430d702002-06-17 10:43:59 +00001322 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001323#else
1324 /* XXX How are you going to test for directories? */
Guido van Rossum48a680c2001-03-02 06:34:14 +00001325#ifdef RISCOS
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001326 if (isdir(buf) &&
Walter Dörwald3430d702002-06-17 10:43:59 +00001327 case_ok(buf, len, namelen, name)) {
Thomas Wouters9df4e6f2006-04-27 23:13:20 +00001328 if (find_init_module(buf)) {
1329 Py_XDECREF(copy);
1330 return &fd_package;
1331 }
1332 else {
1333 char warnstr[MAXPATHLEN+80];
1334 sprintf(warnstr, "Not importing directory "
1335 "'%.*s': missing __init__.py",
1336 MAXPATHLEN, buf);
1337 if (PyErr_Warn(PyExc_ImportWarning,
1338 warnstr)) {
1339 Py_XDECREF(copy);
1340 return NULL;
1341 }
Walter Dörwald3430d702002-06-17 10:43:59 +00001342 }
Guido van Rossum48a680c2001-03-02 06:34:14 +00001343#endif
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001344#endif
Andrew MacIntyred9400542002-02-26 11:41:34 +00001345#if defined(PYOS_OS2)
1346 /* take a snapshot of the module spec for restoration
1347 * after the 8 character DLL hackery
1348 */
1349 saved_buf = strdup(buf);
1350 saved_len = len;
1351 saved_namelen = namelen;
1352#endif /* PYOS_OS2 */
Guido van Rossum79f25d91997-04-29 20:08:16 +00001353 for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
Andrew MacIntyred9400542002-02-26 11:41:34 +00001354#if defined(PYOS_OS2)
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001355 /* OS/2 limits DLLs to 8 character names (w/o
1356 extension)
Andrew MacIntyred9400542002-02-26 11:41:34 +00001357 * so if the name is longer than that and its a
1358 * dynamically loaded module we're going to try,
1359 * truncate the name before trying
1360 */
Just van Rossum52e14d62002-12-30 22:08:05 +00001361 if (strlen(subname) > 8) {
Andrew MacIntyred9400542002-02-26 11:41:34 +00001362 /* is this an attempt to load a C extension? */
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001363 const struct filedescr *scan;
1364 scan = _PyImport_DynLoadFiletab;
Andrew MacIntyred9400542002-02-26 11:41:34 +00001365 while (scan->suffix != NULL) {
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001366 if (!strcmp(scan->suffix, fdp->suffix))
Andrew MacIntyred9400542002-02-26 11:41:34 +00001367 break;
1368 else
1369 scan++;
1370 }
1371 if (scan->suffix != NULL) {
1372 /* yes, so truncate the name */
1373 namelen = 8;
Just van Rossum52e14d62002-12-30 22:08:05 +00001374 len -= strlen(subname) - namelen;
Andrew MacIntyred9400542002-02-26 11:41:34 +00001375 buf[len] = '\0';
1376 }
1377 }
1378#endif /* PYOS_OS2 */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001379 strcpy(buf+len, fdp->suffix);
Guido van Rossum79f25d91997-04-29 20:08:16 +00001380 if (Py_VerboseFlag > 1)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001381 PySys_WriteStderr("# trying %s\n", buf);
Jack Jansenc88da1f2002-05-28 10:58:19 +00001382 filemode = fdp->mode;
Tim Peters86c7d2f2004-08-01 23:24:21 +00001383 if (filemode[0] == 'U')
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001384 filemode = "r" PY_STDIOTEXTMODE;
Jack Jansenc88da1f2002-05-28 10:58:19 +00001385 fp = fopen(buf, filemode);
Tim Peters50d8d372001-02-28 05:34:27 +00001386 if (fp != NULL) {
1387 if (case_ok(buf, len, namelen, name))
1388 break;
1389 else { /* continue search */
1390 fclose(fp);
1391 fp = NULL;
Barry Warsaw914a0b12001-02-02 19:12:16 +00001392 }
Barry Warsaw914a0b12001-02-02 19:12:16 +00001393 }
Andrew MacIntyred9400542002-02-26 11:41:34 +00001394#if defined(PYOS_OS2)
1395 /* restore the saved snapshot */
1396 strcpy(buf, saved_buf);
1397 len = saved_len;
1398 namelen = saved_namelen;
1399#endif
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001400 }
Andrew MacIntyred9400542002-02-26 11:41:34 +00001401#if defined(PYOS_OS2)
1402 /* don't need/want the module name snapshot anymore */
1403 if (saved_buf)
1404 {
1405 free(saved_buf);
1406 saved_buf = NULL;
1407 }
1408#endif
Walter Dörwald3430d702002-06-17 10:43:59 +00001409 Py_XDECREF(copy);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001410 if (fp != NULL)
1411 break;
1412 }
1413 if (fp == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001414 PyErr_Format(PyExc_ImportError,
1415 "No module named %.200s", name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001416 return NULL;
1417 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001418 *p_fp = fp;
1419 return fdp;
1420}
1421
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +00001422/* Helpers for main.c
1423 * Find the source file corresponding to a named module
1424 */
1425struct filedescr *
1426_PyImport_FindModule(const char *name, PyObject *path, char *buf,
1427 size_t buflen, FILE **p_fp, PyObject **p_loader)
1428{
1429 return find_module((char *) name, (char *) name, path,
1430 buf, buflen, p_fp, p_loader);
1431}
1432
1433PyAPI_FUNC(int) _PyImport_IsScript(struct filedescr * fd)
1434{
1435 return fd->type == PY_SOURCE || fd->type == PY_COMPILED;
1436}
1437
Martin v. Löwis18e16552006-02-15 17:27:45 +00001438/* case_ok(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name)
Tim Petersd1e87a82001-03-01 18:12:00 +00001439 * The arguments here are tricky, best shown by example:
1440 * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0
1441 * ^ ^ ^ ^
1442 * |--------------------- buf ---------------------|
1443 * |------------------- len ------------------|
1444 * |------ name -------|
1445 * |----- namelen -----|
1446 * buf is the full path, but len only counts up to (& exclusive of) the
1447 * extension. name is the module name, also exclusive of extension.
1448 *
1449 * We've already done a successful stat() or fopen() on buf, so know that
1450 * there's some match, possibly case-insensitive.
1451 *
Tim Peters50d8d372001-02-28 05:34:27 +00001452 * case_ok() is to return 1 if there's a case-sensitive match for
1453 * name, else 0. case_ok() is also to return 1 if envar PYTHONCASEOK
1454 * exists.
Tim Petersd1e87a82001-03-01 18:12:00 +00001455 *
Tim Peters50d8d372001-02-28 05:34:27 +00001456 * case_ok() is used to implement case-sensitive import semantics even
1457 * on platforms with case-insensitive filesystems. It's trivial to implement
1458 * for case-sensitive filesystems. It's pretty much a cross-platform
1459 * nightmare for systems with case-insensitive filesystems.
1460 */
Guido van Rossum0980bd91998-02-13 17:18:36 +00001461
Tim Peters50d8d372001-02-28 05:34:27 +00001462/* First we may need a pile of platform-specific header files; the sequence
1463 * of #if's here should match the sequence in the body of case_ok().
1464 */
Jason Tishler7961aa62005-05-20 00:56:54 +00001465#if defined(MS_WINDOWS)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001466#include <windows.h>
Guido van Rossum4c3f57c2001-01-10 20:40:46 +00001467
Tim Peters50d8d372001-02-28 05:34:27 +00001468#elif defined(DJGPP)
1469#include <dir.h>
1470
Jason Tishler7961aa62005-05-20 00:56:54 +00001471#elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H)
Tim Peters430f5d42001-03-01 01:30:56 +00001472#include <sys/types.h>
1473#include <dirent.h>
1474
Andrew MacIntyred9400542002-02-26 11:41:34 +00001475#elif defined(PYOS_OS2)
1476#define INCL_DOS
1477#define INCL_DOSERRORS
1478#define INCL_NOPMAPI
1479#include <os2.h>
1480
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001481#elif defined(RISCOS)
1482#include "oslib/osfscontrol.h"
Tim Peters50d8d372001-02-28 05:34:27 +00001483#endif
1484
Guido van Rossum0980bd91998-02-13 17:18:36 +00001485static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00001486case_ok(char *buf, Py_ssize_t len, Py_ssize_t namelen, char *name)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001487{
Tim Peters50d8d372001-02-28 05:34:27 +00001488/* Pick a platform-specific implementation; the sequence of #if's here should
1489 * match the sequence just above.
1490 */
1491
Jason Tishler7961aa62005-05-20 00:56:54 +00001492/* MS_WINDOWS */
1493#if defined(MS_WINDOWS)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001494 WIN32_FIND_DATA data;
1495 HANDLE h;
Tim Peters50d8d372001-02-28 05:34:27 +00001496
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001497 if (Py_GETENV("PYTHONCASEOK") != NULL)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001498 return 1;
Tim Peters50d8d372001-02-28 05:34:27 +00001499
Guido van Rossum0980bd91998-02-13 17:18:36 +00001500 h = FindFirstFile(buf, &data);
1501 if (h == INVALID_HANDLE_VALUE) {
1502 PyErr_Format(PyExc_NameError,
1503 "Can't find file for module %.100s\n(filename %.300s)",
1504 name, buf);
1505 return 0;
1506 }
1507 FindClose(h);
Tim Peters50d8d372001-02-28 05:34:27 +00001508 return strncmp(data.cFileName, name, namelen) == 0;
1509
1510/* DJGPP */
1511#elif defined(DJGPP)
1512 struct ffblk ffblk;
1513 int done;
1514
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001515 if (Py_GETENV("PYTHONCASEOK") != NULL)
Guido van Rossum323bf5e1998-06-24 03:54:06 +00001516 return 1;
Tim Peters50d8d372001-02-28 05:34:27 +00001517
1518 done = findfirst(buf, &ffblk, FA_ARCH|FA_RDONLY|FA_HIDDEN|FA_DIREC);
1519 if (done) {
Guido van Rossum0980bd91998-02-13 17:18:36 +00001520 PyErr_Format(PyExc_NameError,
Tim Peters50d8d372001-02-28 05:34:27 +00001521 "Can't find file for module %.100s\n(filename %.300s)",
Guido van Rossum0980bd91998-02-13 17:18:36 +00001522 name, buf);
1523 return 0;
1524 }
Tim Peters50d8d372001-02-28 05:34:27 +00001525 return strncmp(ffblk.ff_name, name, namelen) == 0;
Guido van Rossum0980bd91998-02-13 17:18:36 +00001526
Jason Tishler7961aa62005-05-20 00:56:54 +00001527/* new-fangled macintosh (macosx) or Cygwin */
1528#elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H)
Tim Peters430f5d42001-03-01 01:30:56 +00001529 DIR *dirp;
1530 struct dirent *dp;
Tim Petersd1e87a82001-03-01 18:12:00 +00001531 char dirname[MAXPATHLEN + 1];
1532 const int dirlen = len - namelen - 1; /* don't want trailing SEP */
Tim Peters430f5d42001-03-01 01:30:56 +00001533
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001534 if (Py_GETENV("PYTHONCASEOK") != NULL)
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001535 return 1;
1536
Tim Petersd1e87a82001-03-01 18:12:00 +00001537 /* Copy the dir component into dirname; substitute "." if empty */
1538 if (dirlen <= 0) {
1539 dirname[0] = '.';
1540 dirname[1] = '\0';
Tim Peters430f5d42001-03-01 01:30:56 +00001541 }
1542 else {
Tim Petersd1e87a82001-03-01 18:12:00 +00001543 assert(dirlen <= MAXPATHLEN);
1544 memcpy(dirname, buf, dirlen);
1545 dirname[dirlen] = '\0';
Tim Peters430f5d42001-03-01 01:30:56 +00001546 }
1547 /* Open the directory and search the entries for an exact match. */
Tim Petersd1e87a82001-03-01 18:12:00 +00001548 dirp = opendir(dirname);
Tim Peters430f5d42001-03-01 01:30:56 +00001549 if (dirp) {
Tim Peters677898a2001-03-02 03:28:03 +00001550 char *nameWithExt = buf + len - namelen;
Tim Peters430f5d42001-03-01 01:30:56 +00001551 while ((dp = readdir(dirp)) != NULL) {
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001552 const int thislen =
Tim Peters430f5d42001-03-01 01:30:56 +00001553#ifdef _DIRENT_HAVE_D_NAMELEN
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001554 dp->d_namlen;
Tim Peters430f5d42001-03-01 01:30:56 +00001555#else
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001556 strlen(dp->d_name);
Tim Peters430f5d42001-03-01 01:30:56 +00001557#endif
Tim Petersd1e87a82001-03-01 18:12:00 +00001558 if (thislen >= namelen &&
Tim Peters677898a2001-03-02 03:28:03 +00001559 strcmp(dp->d_name, nameWithExt) == 0) {
Tim Peters430f5d42001-03-01 01:30:56 +00001560 (void)closedir(dirp);
1561 return 1; /* Found */
1562 }
1563 }
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001564 (void)closedir(dirp);
Tim Peters430f5d42001-03-01 01:30:56 +00001565 }
Tim Peters430f5d42001-03-01 01:30:56 +00001566 return 0 ; /* Not found */
Tim Peters430f5d42001-03-01 01:30:56 +00001567
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001568/* RISC OS */
1569#elif defined(RISCOS)
1570 char canon[MAXPATHLEN+1]; /* buffer for the canonical form of the path */
1571 char buf2[MAXPATHLEN+2];
1572 char *nameWithExt = buf+len-namelen;
1573 int canonlen;
1574 os_error *e;
1575
1576 if (Py_GETENV("PYTHONCASEOK") != NULL)
1577 return 1;
1578
1579 /* workaround:
1580 append wildcard, otherwise case of filename wouldn't be touched */
1581 strcpy(buf2, buf);
1582 strcat(buf2, "*");
1583
1584 e = xosfscontrol_canonicalise_path(buf2,canon,0,0,MAXPATHLEN+1,&canonlen);
1585 canonlen = MAXPATHLEN+1-canonlen;
1586 if (e || canonlen<=0 || canonlen>(MAXPATHLEN+1) )
1587 return 0;
1588 if (strcmp(nameWithExt, canon+canonlen-strlen(nameWithExt))==0)
1589 return 1; /* match */
1590
1591 return 0;
1592
Andrew MacIntyred9400542002-02-26 11:41:34 +00001593/* OS/2 */
1594#elif defined(PYOS_OS2)
1595 HDIR hdir = 1;
1596 ULONG srchcnt = 1;
1597 FILEFINDBUF3 ffbuf;
1598 APIRET rc;
1599
1600 if (getenv("PYTHONCASEOK") != NULL)
1601 return 1;
1602
1603 rc = DosFindFirst(buf,
1604 &hdir,
1605 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
1606 &ffbuf, sizeof(ffbuf),
1607 &srchcnt,
1608 FIL_STANDARD);
1609 if (rc != NO_ERROR)
1610 return 0;
1611 return strncmp(ffbuf.achName, name, namelen) == 0;
1612
Tim Peters50d8d372001-02-28 05:34:27 +00001613/* assuming it's a case-sensitive filesystem, so there's nothing to do! */
1614#else
Guido van Rossum0980bd91998-02-13 17:18:36 +00001615 return 1;
Guido van Rossum0980bd91998-02-13 17:18:36 +00001616
Guido van Rossum4d1b3b91998-02-13 23:27:59 +00001617#endif
Tim Peters50d8d372001-02-28 05:34:27 +00001618}
Guido van Rossum4d1b3b91998-02-13 23:27:59 +00001619
Guido van Rossum0980bd91998-02-13 17:18:36 +00001620
Guido van Rossum197346f1997-10-31 18:38:52 +00001621#ifdef HAVE_STAT
1622/* Helper to look for __init__.py or __init__.py[co] in potential package */
1623static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001624find_init_module(char *buf)
Guido van Rossum197346f1997-10-31 18:38:52 +00001625{
Tim Peters0f9431f2001-07-05 03:47:53 +00001626 const size_t save_len = strlen(buf);
Fred Drake4c82b232000-06-30 16:18:57 +00001627 size_t i = save_len;
Tim Peters0f9431f2001-07-05 03:47:53 +00001628 char *pname; /* pointer to start of __init__ */
Guido van Rossum197346f1997-10-31 18:38:52 +00001629 struct stat statbuf;
1630
Tim Peters0f9431f2001-07-05 03:47:53 +00001631/* For calling case_ok(buf, len, namelen, name):
1632 * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0
1633 * ^ ^ ^ ^
1634 * |--------------------- buf ---------------------|
1635 * |------------------- len ------------------|
1636 * |------ name -------|
1637 * |----- namelen -----|
1638 */
Guido van Rossum197346f1997-10-31 18:38:52 +00001639 if (save_len + 13 >= MAXPATHLEN)
1640 return 0;
1641 buf[i++] = SEP;
Tim Peters0f9431f2001-07-05 03:47:53 +00001642 pname = buf + i;
1643 strcpy(pname, "__init__.py");
Guido van Rossum197346f1997-10-31 18:38:52 +00001644 if (stat(buf, &statbuf) == 0) {
Tim Peters0f9431f2001-07-05 03:47:53 +00001645 if (case_ok(buf,
1646 save_len + 9, /* len("/__init__") */
1647 8, /* len("__init__") */
1648 pname)) {
1649 buf[save_len] = '\0';
1650 return 1;
1651 }
Guido van Rossum197346f1997-10-31 18:38:52 +00001652 }
Tim Peters0f9431f2001-07-05 03:47:53 +00001653 i += strlen(pname);
1654 strcpy(buf+i, Py_OptimizeFlag ? "o" : "c");
Guido van Rossum197346f1997-10-31 18:38:52 +00001655 if (stat(buf, &statbuf) == 0) {
Tim Peters0f9431f2001-07-05 03:47:53 +00001656 if (case_ok(buf,
1657 save_len + 9, /* len("/__init__") */
1658 8, /* len("__init__") */
1659 pname)) {
1660 buf[save_len] = '\0';
1661 return 1;
1662 }
Guido van Rossum197346f1997-10-31 18:38:52 +00001663 }
1664 buf[save_len] = '\0';
1665 return 0;
1666}
Guido van Rossum48a680c2001-03-02 06:34:14 +00001667
1668#else
1669
1670#ifdef RISCOS
1671static int
1672find_init_module(buf)
1673 char *buf;
1674{
1675 int save_len = strlen(buf);
1676 int i = save_len;
1677
1678 if (save_len + 13 >= MAXPATHLEN)
1679 return 0;
1680 buf[i++] = SEP;
1681 strcpy(buf+i, "__init__/py");
1682 if (isfile(buf)) {
1683 buf[save_len] = '\0';
1684 return 1;
1685 }
1686
1687 if (Py_OptimizeFlag)
1688 strcpy(buf+i, "o");
1689 else
1690 strcpy(buf+i, "c");
1691 if (isfile(buf)) {
1692 buf[save_len] = '\0';
1693 return 1;
1694 }
1695 buf[save_len] = '\0';
1696 return 0;
1697}
1698#endif /*RISCOS*/
1699
Guido van Rossum197346f1997-10-31 18:38:52 +00001700#endif /* HAVE_STAT */
1701
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001702
Tim Petersdbd9ba62000-07-09 03:09:57 +00001703static int init_builtin(char *); /* Forward */
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001704
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001705/* Load an external module using the default search path and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001706 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001707
Guido van Rossum79f25d91997-04-29 20:08:16 +00001708static PyObject *
Just van Rossum52e14d62002-12-30 22:08:05 +00001709load_module(char *name, FILE *fp, char *buf, int type, PyObject *loader)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001710{
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001711 PyObject *modules;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001712 PyObject *m;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001713 int err;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001714
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001715 /* First check that there's an open file (if we need one) */
1716 switch (type) {
1717 case PY_SOURCE:
1718 case PY_COMPILED:
1719 if (fp == NULL) {
1720 PyErr_Format(PyExc_ValueError,
1721 "file object required for import (type code %d)",
1722 type);
1723 return NULL;
1724 }
1725 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001726
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001727 switch (type) {
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001728
1729 case PY_SOURCE:
1730 m = load_source_module(name, buf, fp);
1731 break;
1732
1733 case PY_COMPILED:
1734 m = load_compiled_module(name, buf, fp);
1735 break;
1736
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001737#ifdef HAVE_DYNAMIC_LOADING
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001738 case C_EXTENSION:
Guido van Rossum79f25d91997-04-29 20:08:16 +00001739 m = _PyImport_LoadDynamicModule(name, buf, fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001740 break;
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001741#endif
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001742
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001743 case PKG_DIRECTORY:
1744 m = load_package(name, buf);
1745 break;
1746
1747 case C_BUILTIN:
1748 case PY_FROZEN:
Guido van Rossuma5568d31998-03-05 03:45:08 +00001749 if (buf != NULL && buf[0] != '\0')
1750 name = buf;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001751 if (type == C_BUILTIN)
1752 err = init_builtin(name);
1753 else
1754 err = PyImport_ImportFrozenModule(name);
1755 if (err < 0)
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001756 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001757 if (err == 0) {
1758 PyErr_Format(PyExc_ImportError,
1759 "Purported %s module %.200s not found",
1760 type == C_BUILTIN ?
1761 "builtin" : "frozen",
1762 name);
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001763 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001764 }
1765 modules = PyImport_GetModuleDict();
1766 m = PyDict_GetItemString(modules, name);
1767 if (m == NULL) {
1768 PyErr_Format(
1769 PyExc_ImportError,
1770 "%s module %.200s not properly initialized",
1771 type == C_BUILTIN ?
1772 "builtin" : "frozen",
1773 name);
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001774 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001775 }
1776 Py_INCREF(m);
1777 break;
1778
Just van Rossum52e14d62002-12-30 22:08:05 +00001779 case IMP_HOOK: {
1780 if (loader == NULL) {
1781 PyErr_SetString(PyExc_ImportError,
1782 "import hook without loader");
1783 return NULL;
1784 }
1785 m = PyObject_CallMethod(loader, "load_module", "s", name);
1786 break;
1787 }
1788
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001789 default:
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001790 PyErr_Format(PyExc_ImportError,
1791 "Don't know how to import %.200s (type code %d)",
1792 name, type);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001793 m = NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001794
1795 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001796
1797 return m;
1798}
1799
1800
1801/* Initialize a built-in module.
1802 Return 1 for succes, 0 if the module is not found, and -1 with
1803 an exception set if the initialization failed. */
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001804
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001805static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001806init_builtin(char *name)
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001807{
Guido van Rossum25ce5661997-08-02 03:10:38 +00001808 struct _inittab *p;
Guido van Rossum25ce5661997-08-02 03:10:38 +00001809
Greg Ward201baee2001-10-04 14:52:06 +00001810 if (_PyImport_FindExtension(name, name) != NULL)
Guido van Rossum25ce5661997-08-02 03:10:38 +00001811 return 1;
1812
Guido van Rossum771c6c81997-10-31 18:37:24 +00001813 for (p = PyImport_Inittab; p->name != NULL; p++) {
Guido van Rossum25ce5661997-08-02 03:10:38 +00001814 if (strcmp(name, p->name) == 0) {
1815 if (p->initfunc == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001816 PyErr_Format(PyExc_ImportError,
1817 "Cannot re-init internal module %.200s",
1818 name);
Guido van Rossum74e6a111994-08-29 12:54:38 +00001819 return -1;
1820 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00001821 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001822 PySys_WriteStderr("import %s # builtin\n", name);
Guido van Rossum25ce5661997-08-02 03:10:38 +00001823 (*p->initfunc)();
Guido van Rossum79f25d91997-04-29 20:08:16 +00001824 if (PyErr_Occurred())
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001825 return -1;
Guido van Rossum25ce5661997-08-02 03:10:38 +00001826 if (_PyImport_FixupExtension(name, name) == NULL)
1827 return -1;
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001828 return 1;
1829 }
1830 }
1831 return 0;
1832}
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001833
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001834
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001835/* Frozen modules */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001836
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001837static struct _frozen *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001838find_frozen(char *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001839{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001840 struct _frozen *p;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001841
Guido van Rossum79f25d91997-04-29 20:08:16 +00001842 for (p = PyImport_FrozenModules; ; p++) {
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001843 if (p->name == NULL)
1844 return NULL;
1845 if (strcmp(p->name, name) == 0)
1846 break;
1847 }
1848 return p;
1849}
1850
Guido van Rossum79f25d91997-04-29 20:08:16 +00001851static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001852get_frozen_object(char *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001853{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001854 struct _frozen *p = find_frozen(name);
Guido van Rossuma5568d31998-03-05 03:45:08 +00001855 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001856
1857 if (p == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001858 PyErr_Format(PyExc_ImportError,
1859 "No such frozen object named %.200s",
1860 name);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001861 return NULL;
1862 }
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001863 if (p->code == NULL) {
1864 PyErr_Format(PyExc_ImportError,
1865 "Excluded frozen object named %.200s",
1866 name);
1867 return NULL;
1868 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001869 size = p->size;
1870 if (size < 0)
1871 size = -size;
1872 return PyMarshal_ReadObjectFromString((char *)p->code, size);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001873}
1874
1875/* Initialize a frozen module.
1876 Return 1 for succes, 0 if the module is not found, and -1 with
1877 an exception set if the initialization failed.
1878 This function is also used from frozenmain.c */
Guido van Rossum0b344901995-02-07 15:35:27 +00001879
1880int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001881PyImport_ImportFrozenModule(char *name)
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001882{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001883 struct _frozen *p = find_frozen(name);
Guido van Rossum79f25d91997-04-29 20:08:16 +00001884 PyObject *co;
1885 PyObject *m;
Guido van Rossuma5568d31998-03-05 03:45:08 +00001886 int ispackage;
1887 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001888
1889 if (p == NULL)
1890 return 0;
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001891 if (p->code == NULL) {
1892 PyErr_Format(PyExc_ImportError,
1893 "Excluded frozen object named %.200s",
1894 name);
1895 return -1;
1896 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001897 size = p->size;
1898 ispackage = (size < 0);
1899 if (ispackage)
1900 size = -size;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001901 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001902 PySys_WriteStderr("import %s # frozen%s\n",
Guido van Rossuma5568d31998-03-05 03:45:08 +00001903 name, ispackage ? " package" : "");
1904 co = PyMarshal_ReadObjectFromString((char *)p->code, size);
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001905 if (co == NULL)
1906 return -1;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001907 if (!PyCode_Check(co)) {
1908 Py_DECREF(co);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001909 PyErr_Format(PyExc_TypeError,
1910 "frozen object %.200s is not a code object",
1911 name);
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001912 return -1;
1913 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001914 if (ispackage) {
1915 /* Set __path__ to the package name */
1916 PyObject *d, *s;
1917 int err;
1918 m = PyImport_AddModule(name);
1919 if (m == NULL)
1920 return -1;
1921 d = PyModule_GetDict(m);
1922 s = PyString_InternFromString(name);
1923 if (s == NULL)
1924 return -1;
1925 err = PyDict_SetItemString(d, "__path__", s);
1926 Py_DECREF(s);
1927 if (err != 0)
1928 return err;
1929 }
Guido van Rossume32bf6e1998-02-11 05:53:02 +00001930 m = PyImport_ExecCodeModuleEx(name, co, "<frozen>");
Guido van Rossum79f25d91997-04-29 20:08:16 +00001931 Py_DECREF(co);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001932 if (m == NULL)
1933 return -1;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001934 Py_DECREF(m);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001935 return 1;
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001936}
Guido van Rossum74e6a111994-08-29 12:54:38 +00001937
1938
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001939/* Import a module, either built-in, frozen, or external, and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001940 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum74e6a111994-08-29 12:54:38 +00001941
Guido van Rossum79f25d91997-04-29 20:08:16 +00001942PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001943PyImport_ImportModule(const char *name)
Guido van Rossum74e6a111994-08-29 12:54:38 +00001944{
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00001945 PyObject *pname;
1946 PyObject *result;
1947
1948 pname = PyString_FromString(name);
Neal Norwitza11e4c12003-03-23 14:31:01 +00001949 if (pname == NULL)
1950 return NULL;
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00001951 result = PyImport_Import(pname);
1952 Py_DECREF(pname);
1953 return result;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001954}
1955
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001956/* Forward declarations for helper routines */
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001957static PyObject *get_parent(PyObject *globals, char *buf,
1958 Py_ssize_t *p_buflen, int level);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001959static PyObject *load_next(PyObject *mod, PyObject *altmod,
Martin v. Löwis18e16552006-02-15 17:27:45 +00001960 char **p_name, char *buf, Py_ssize_t *p_buflen);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001961static int mark_miss(char *name);
1962static int ensure_fromlist(PyObject *mod, PyObject *fromlist,
Martin v. Löwis18e16552006-02-15 17:27:45 +00001963 char *buf, Py_ssize_t buflen, int recursive);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001964static PyObject * import_submodule(PyObject *mod, char *name, char *fullname);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001965
1966/* The Magnum Opus of dotted-name import :-) */
1967
Guido van Rossum75acc9c1998-03-03 22:26:50 +00001968static PyObject *
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001969import_module_level(char *name, PyObject *globals, PyObject *locals,
1970 PyObject *fromlist, int level)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001971{
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001972 char buf[MAXPATHLEN+1];
Martin v. Löwis18e16552006-02-15 17:27:45 +00001973 Py_ssize_t buflen = 0;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001974 PyObject *parent, *head, *next, *tail;
1975
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001976 parent = get_parent(globals, buf, &buflen, level);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001977 if (parent == NULL)
1978 return NULL;
1979
1980 head = load_next(parent, Py_None, &name, buf, &buflen);
1981 if (head == NULL)
1982 return NULL;
1983
1984 tail = head;
1985 Py_INCREF(tail);
1986 while (name) {
1987 next = load_next(tail, tail, &name, buf, &buflen);
1988 Py_DECREF(tail);
1989 if (next == NULL) {
1990 Py_DECREF(head);
1991 return NULL;
1992 }
1993 tail = next;
1994 }
Thomas Wouters8ddab272006-04-04 16:17:02 +00001995 if (tail == Py_None) {
1996 /* If tail is Py_None, both get_parent and load_next found
1997 an empty module name: someone called __import__("") or
1998 doctored faulty bytecode */
Thomas Wouters4bdaa272006-04-05 13:39:37 +00001999 Py_DECREF(tail);
2000 Py_DECREF(head);
Thomas Wouters8ddab272006-04-04 16:17:02 +00002001 PyErr_SetString(PyExc_ValueError,
2002 "Empty module name");
2003 return NULL;
2004 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002005
2006 if (fromlist != NULL) {
2007 if (fromlist == Py_None || !PyObject_IsTrue(fromlist))
2008 fromlist = NULL;
2009 }
2010
2011 if (fromlist == NULL) {
2012 Py_DECREF(tail);
2013 return head;
2014 }
2015
2016 Py_DECREF(head);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002017 if (!ensure_fromlist(tail, fromlist, buf, buflen, 0)) {
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002018 Py_DECREF(tail);
2019 return NULL;
2020 }
2021
2022 return tail;
2023}
2024
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002025/* For DLL compatibility */
2026#undef PyImport_ImportModuleEx
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002027PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002028PyImport_ImportModuleEx(char *name, PyObject *globals, PyObject *locals,
2029 PyObject *fromlist)
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002030{
2031 PyObject *result;
2032 lock_import();
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002033 result = import_module_level(name, globals, locals, fromlist, -1);
2034 if (unlock_import() < 0) {
2035 Py_XDECREF(result);
2036 PyErr_SetString(PyExc_RuntimeError,
2037 "not holding the import lock");
2038 return NULL;
2039 }
2040 return result;
2041}
2042#define PyImport_ImportModuleEx(n, g, l, f) \
2043 PyImport_ImportModuleLevel(n, g, l, f, -1);
2044
2045PyObject *
2046PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals,
2047 PyObject *fromlist, int level)
2048{
2049 PyObject *result;
2050 lock_import();
2051 result = import_module_level(name, globals, locals, fromlist, level);
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002052 if (unlock_import() < 0) {
2053 Py_XDECREF(result);
2054 PyErr_SetString(PyExc_RuntimeError,
2055 "not holding the import lock");
2056 return NULL;
2057 }
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002058 return result;
2059}
2060
Fred Drake87590902004-05-28 20:21:36 +00002061/* Return the package that an import is being performed in. If globals comes
2062 from the module foo.bar.bat (not itself a package), this returns the
2063 sys.modules entry for foo.bar. If globals is from a package's __init__.py,
Georg Brandl5f6861d2006-05-28 21:57:35 +00002064 the package's entry in sys.modules is returned, as a borrowed reference.
Fred Drake87590902004-05-28 20:21:36 +00002065
2066 The *name* of the returned package is returned in buf, with the length of
2067 the name in *p_buflen.
2068
2069 If globals doesn't come from a package or a module in a package, or a
2070 corresponding entry is not found in sys.modules, Py_None is returned.
2071*/
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002072static PyObject *
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002073get_parent(PyObject *globals, char *buf, Py_ssize_t *p_buflen, int level)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002074{
2075 static PyObject *namestr = NULL;
2076 static PyObject *pathstr = NULL;
2077 PyObject *modname, *modpath, *modules, *parent;
2078
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002079 if (globals == NULL || !PyDict_Check(globals) || !level)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002080 return Py_None;
2081
2082 if (namestr == NULL) {
2083 namestr = PyString_InternFromString("__name__");
2084 if (namestr == NULL)
2085 return NULL;
2086 }
2087 if (pathstr == NULL) {
2088 pathstr = PyString_InternFromString("__path__");
2089 if (pathstr == NULL)
2090 return NULL;
2091 }
2092
2093 *buf = '\0';
2094 *p_buflen = 0;
2095 modname = PyDict_GetItem(globals, namestr);
2096 if (modname == NULL || !PyString_Check(modname))
2097 return Py_None;
2098
2099 modpath = PyDict_GetItem(globals, pathstr);
2100 if (modpath != NULL) {
Martin v. Löwis725507b2006-03-07 12:08:51 +00002101 Py_ssize_t len = PyString_GET_SIZE(modname);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002102 if (len > MAXPATHLEN) {
2103 PyErr_SetString(PyExc_ValueError,
2104 "Module name too long");
2105 return NULL;
2106 }
2107 strcpy(buf, PyString_AS_STRING(modname));
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002108 }
2109 else {
2110 char *start = PyString_AS_STRING(modname);
2111 char *lastdot = strrchr(start, '.');
Fred Drake4c82b232000-06-30 16:18:57 +00002112 size_t len;
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002113 if (lastdot == NULL && level > 0) {
2114 PyErr_SetString(PyExc_ValueError,
2115 "Relative importpath too deep");
2116 return NULL;
2117 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002118 if (lastdot == NULL)
2119 return Py_None;
2120 len = lastdot - start;
2121 if (len >= MAXPATHLEN) {
2122 PyErr_SetString(PyExc_ValueError,
2123 "Module name too long");
2124 return NULL;
2125 }
2126 strncpy(buf, start, len);
2127 buf[len] = '\0';
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002128 }
2129
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002130 while (--level > 0) {
2131 char *dot = strrchr(buf, '.');
2132 if (dot == NULL) {
2133 PyErr_SetString(PyExc_ValueError,
2134 "Relative importpath too deep");
2135 return NULL;
2136 }
2137 *dot = '\0';
2138 }
2139 *p_buflen = strlen(buf);
2140
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002141 modules = PyImport_GetModuleDict();
2142 parent = PyDict_GetItemString(modules, buf);
2143 if (parent == NULL)
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002144 PyErr_Format(PyExc_SystemError,
2145 "Parent module '%.200s' not loaded", buf);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002146 return parent;
2147 /* We expect, but can't guarantee, if parent != None, that:
2148 - parent.__name__ == buf
2149 - parent.__dict__ is globals
2150 If this is violated... Who cares? */
2151}
2152
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002153/* altmod is either None or same as mod */
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002154static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002155load_next(PyObject *mod, PyObject *altmod, char **p_name, char *buf,
Martin v. Löwis18e16552006-02-15 17:27:45 +00002156 Py_ssize_t *p_buflen)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002157{
2158 char *name = *p_name;
2159 char *dot = strchr(name, '.');
Fred Drake4c82b232000-06-30 16:18:57 +00002160 size_t len;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002161 char *p;
2162 PyObject *result;
2163
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002164 if (strlen(name) == 0) {
Thomas Wouters8ddab272006-04-04 16:17:02 +00002165 /* completely empty module name should only happen in
2166 'from . import' (or '__import__("")')*/
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002167 Py_INCREF(mod);
2168 *p_name = NULL;
2169 return mod;
2170 }
2171
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002172 if (dot == NULL) {
2173 *p_name = NULL;
2174 len = strlen(name);
2175 }
2176 else {
2177 *p_name = dot+1;
2178 len = dot-name;
2179 }
Guido van Rossum111c20b1998-04-11 17:38:22 +00002180 if (len == 0) {
2181 PyErr_SetString(PyExc_ValueError,
2182 "Empty module name");
2183 return NULL;
2184 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002185
2186 p = buf + *p_buflen;
2187 if (p != buf)
2188 *p++ = '.';
2189 if (p+len-buf >= MAXPATHLEN) {
2190 PyErr_SetString(PyExc_ValueError,
2191 "Module name too long");
2192 return NULL;
2193 }
2194 strncpy(p, name, len);
2195 p[len] = '\0';
2196 *p_buflen = p+len-buf;
2197
2198 result = import_submodule(mod, p, buf);
2199 if (result == Py_None && altmod != mod) {
2200 Py_DECREF(result);
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002201 /* Here, altmod must be None and mod must not be None */
Guido van Rossum0c819451997-09-07 06:16:57 +00002202 result = import_submodule(altmod, p, p);
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002203 if (result != NULL && result != Py_None) {
2204 if (mark_miss(buf) != 0) {
2205 Py_DECREF(result);
2206 return NULL;
2207 }
2208 strncpy(buf, name, len);
2209 buf[len] = '\0';
2210 *p_buflen = len;
2211 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002212 }
2213 if (result == NULL)
2214 return NULL;
2215
2216 if (result == Py_None) {
2217 Py_DECREF(result);
2218 PyErr_Format(PyExc_ImportError,
2219 "No module named %.200s", name);
2220 return NULL;
2221 }
2222
2223 return result;
2224}
2225
2226static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002227mark_miss(char *name)
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002228{
2229 PyObject *modules = PyImport_GetModuleDict();
2230 return PyDict_SetItemString(modules, name, Py_None);
2231}
2232
2233static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00002234ensure_fromlist(PyObject *mod, PyObject *fromlist, char *buf, Py_ssize_t buflen,
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002235 int recursive)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002236{
2237 int i;
2238
2239 if (!PyObject_HasAttrString(mod, "__path__"))
2240 return 1;
2241
2242 for (i = 0; ; i++) {
2243 PyObject *item = PySequence_GetItem(fromlist, i);
2244 int hasit;
2245 if (item == NULL) {
2246 if (PyErr_ExceptionMatches(PyExc_IndexError)) {
2247 PyErr_Clear();
2248 return 1;
2249 }
2250 return 0;
2251 }
2252 if (!PyString_Check(item)) {
2253 PyErr_SetString(PyExc_TypeError,
2254 "Item in ``from list'' not a string");
2255 Py_DECREF(item);
2256 return 0;
2257 }
2258 if (PyString_AS_STRING(item)[0] == '*') {
Guido van Rossum9905ef91997-09-08 16:07:11 +00002259 PyObject *all;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002260 Py_DECREF(item);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002261 /* See if the package defines __all__ */
2262 if (recursive)
2263 continue; /* Avoid endless recursion */
2264 all = PyObject_GetAttrString(mod, "__all__");
2265 if (all == NULL)
2266 PyErr_Clear();
2267 else {
Martin v. Löwis83969ee2004-03-23 16:28:13 +00002268 int ret = ensure_fromlist(mod, all, buf, buflen, 1);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002269 Py_DECREF(all);
Martin v. Löwis83969ee2004-03-23 16:28:13 +00002270 if (!ret)
2271 return 0;
Guido van Rossum9905ef91997-09-08 16:07:11 +00002272 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002273 continue;
2274 }
2275 hasit = PyObject_HasAttr(mod, item);
2276 if (!hasit) {
2277 char *subname = PyString_AS_STRING(item);
2278 PyObject *submod;
2279 char *p;
2280 if (buflen + strlen(subname) >= MAXPATHLEN) {
2281 PyErr_SetString(PyExc_ValueError,
2282 "Module name too long");
2283 Py_DECREF(item);
2284 return 0;
2285 }
2286 p = buf + buflen;
2287 *p++ = '.';
2288 strcpy(p, subname);
2289 submod = import_submodule(mod, subname, buf);
2290 Py_XDECREF(submod);
2291 if (submod == NULL) {
2292 Py_DECREF(item);
2293 return 0;
2294 }
2295 }
2296 Py_DECREF(item);
2297 }
2298
Guido van Rossuma7f2e811997-10-03 15:33:32 +00002299 /* NOTREACHED */
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002300}
2301
Neil Schemenauer00b09662003-06-16 21:03:07 +00002302static int
2303add_submodule(PyObject *mod, PyObject *submod, char *fullname, char *subname,
2304 PyObject *modules)
2305{
2306 if (mod == Py_None)
2307 return 1;
2308 /* Irrespective of the success of this load, make a
2309 reference to it in the parent package module. A copy gets
2310 saved in the modules dictionary under the full name, so get a
2311 reference from there, if need be. (The exception is when the
2312 load failed with a SyntaxError -- then there's no trace in
2313 sys.modules. In that case, of course, do nothing extra.) */
2314 if (submod == NULL) {
2315 submod = PyDict_GetItemString(modules, fullname);
2316 if (submod == NULL)
2317 return 1;
2318 }
2319 if (PyModule_Check(mod)) {
2320 /* We can't use setattr here since it can give a
2321 * spurious warning if the submodule name shadows a
2322 * builtin name */
2323 PyObject *dict = PyModule_GetDict(mod);
2324 if (!dict)
2325 return 0;
2326 if (PyDict_SetItemString(dict, subname, submod) < 0)
2327 return 0;
2328 }
2329 else {
2330 if (PyObject_SetAttrString(mod, subname, submod) < 0)
2331 return 0;
2332 }
2333 return 1;
2334}
2335
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002336static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002337import_submodule(PyObject *mod, char *subname, char *fullname)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002338{
Guido van Rossum25ce5661997-08-02 03:10:38 +00002339 PyObject *modules = PyImport_GetModuleDict();
Neil Schemenauer00b09662003-06-16 21:03:07 +00002340 PyObject *m = NULL;
Guido van Rossum74e6a111994-08-29 12:54:38 +00002341
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002342 /* Require:
2343 if mod == None: subname == fullname
2344 else: mod.__name__ + "." + subname == fullname
2345 */
2346
Tim Peters50d8d372001-02-28 05:34:27 +00002347 if ((m = PyDict_GetItemString(modules, fullname)) != NULL) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002348 Py_INCREF(m);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00002349 }
2350 else {
Just van Rossum52e14d62002-12-30 22:08:05 +00002351 PyObject *path, *loader = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002352 char buf[MAXPATHLEN+1];
2353 struct filedescr *fdp;
2354 FILE *fp = NULL;
2355
Guido van Rossum9c0afe51998-05-19 15:09:05 +00002356 if (mod == Py_None)
2357 path = NULL;
2358 else {
2359 path = PyObject_GetAttrString(mod, "__path__");
2360 if (path == NULL) {
2361 PyErr_Clear();
2362 Py_INCREF(Py_None);
2363 return Py_None;
2364 }
2365 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002366
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002367 buf[0] = '\0';
Just van Rossum52e14d62002-12-30 22:08:05 +00002368 fdp = find_module(fullname, subname, path, buf, MAXPATHLEN+1,
2369 &fp, &loader);
Guido van Rossumb68cd421998-07-01 17:36:26 +00002370 Py_XDECREF(path);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002371 if (fdp == NULL) {
2372 if (!PyErr_ExceptionMatches(PyExc_ImportError))
2373 return NULL;
2374 PyErr_Clear();
2375 Py_INCREF(Py_None);
2376 return Py_None;
2377 }
Just van Rossum52e14d62002-12-30 22:08:05 +00002378 m = load_module(fullname, fp, buf, fdp->type, loader);
2379 Py_XDECREF(loader);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002380 if (fp)
2381 fclose(fp);
Neil Schemenauer00b09662003-06-16 21:03:07 +00002382 if (!add_submodule(mod, m, fullname, subname, modules)) {
2383 Py_XDECREF(m);
2384 m = NULL;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002385 }
Guido van Rossum74e6a111994-08-29 12:54:38 +00002386 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002387
2388 return m;
Guido van Rossum74e6a111994-08-29 12:54:38 +00002389}
2390
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002391
2392/* Re-import a module of any kind and return its module object, WITH
2393 INCREMENTED REFERENCE COUNT */
2394
Guido van Rossum79f25d91997-04-29 20:08:16 +00002395PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002396PyImport_ReloadModule(PyObject *m)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002397{
Guido van Rossum25ce5661997-08-02 03:10:38 +00002398 PyObject *modules = PyImport_GetModuleDict();
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002399 PyObject *path = NULL, *loader = NULL;
Guido van Rossum222ef561997-09-06 19:41:09 +00002400 char *name, *subname;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002401 char buf[MAXPATHLEN+1];
2402 struct filedescr *fdp;
2403 FILE *fp = NULL;
Tim Peters1cd70172004-08-02 03:52:12 +00002404 PyObject *newm;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002405
Guido van Rossum79f25d91997-04-29 20:08:16 +00002406 if (m == NULL || !PyModule_Check(m)) {
2407 PyErr_SetString(PyExc_TypeError,
2408 "reload() argument must be module");
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002409 return NULL;
2410 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002411 name = PyModule_GetName(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002412 if (name == NULL)
2413 return NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +00002414 if (m != PyDict_GetItemString(modules, name)) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002415 PyErr_Format(PyExc_ImportError,
2416 "reload(): module %.200s not in sys.modules",
2417 name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002418 return NULL;
2419 }
Guido van Rossum222ef561997-09-06 19:41:09 +00002420 subname = strrchr(name, '.');
2421 if (subname == NULL)
2422 subname = name;
2423 else {
2424 PyObject *parentname, *parent;
2425 parentname = PyString_FromStringAndSize(name, (subname-name));
2426 if (parentname == NULL)
2427 return NULL;
2428 parent = PyDict_GetItem(modules, parentname);
2429 if (parent == NULL) {
2430 PyErr_Format(PyExc_ImportError,
2431 "reload(): parent %.200s not in sys.modules",
Georg Brandl0c55f292005-09-14 06:56:20 +00002432 PyString_AS_STRING(parentname));
2433 Py_DECREF(parentname);
Guido van Rossum222ef561997-09-06 19:41:09 +00002434 return NULL;
2435 }
Georg Brandl0c55f292005-09-14 06:56:20 +00002436 Py_DECREF(parentname);
Guido van Rossum222ef561997-09-06 19:41:09 +00002437 subname++;
2438 path = PyObject_GetAttrString(parent, "__path__");
2439 if (path == NULL)
2440 PyErr_Clear();
2441 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002442 buf[0] = '\0';
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002443 fdp = find_module(name, subname, path, buf, MAXPATHLEN+1, &fp, &loader);
Guido van Rossum222ef561997-09-06 19:41:09 +00002444 Py_XDECREF(path);
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002445
2446 if (fdp == NULL) {
2447 Py_XDECREF(loader);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002448 return NULL;
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002449 }
2450
2451 newm = load_module(name, fp, buf, fdp->type, loader);
2452 Py_XDECREF(loader);
2453
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002454 if (fp)
2455 fclose(fp);
Tim Peters1cd70172004-08-02 03:52:12 +00002456 if (newm == NULL) {
2457 /* load_module probably removed name from modules because of
2458 * the error. Put back the original module object. We're
2459 * going to return NULL in this case regardless of whether
2460 * replacing name succeeds, so the return value is ignored.
2461 */
2462 PyDict_SetItemString(modules, name, m);
2463 }
2464 return newm;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002465}
2466
2467
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002468/* Higher-level import emulator which emulates the "import" statement
2469 more accurately -- it invokes the __import__() function from the
2470 builtins of the current globals. This means that the import is
2471 done using whatever import hooks are installed in the current
Guido van Rossum6058eb41998-12-21 19:51:00 +00002472 environment, e.g. by "rexec".
2473 A dummy list ["__doc__"] is passed as the 4th argument so that
2474 e.g. PyImport_Import(PyString_FromString("win32com.client.gencache"))
2475 will return <module "gencache"> instead of <module "win32com">. */
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002476
2477PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002478PyImport_Import(PyObject *module_name)
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002479{
2480 static PyObject *silly_list = NULL;
2481 static PyObject *builtins_str = NULL;
2482 static PyObject *import_str = NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002483 PyObject *globals = NULL;
2484 PyObject *import = NULL;
2485 PyObject *builtins = NULL;
2486 PyObject *r = NULL;
2487
2488 /* Initialize constant string objects */
2489 if (silly_list == NULL) {
2490 import_str = PyString_InternFromString("__import__");
2491 if (import_str == NULL)
2492 return NULL;
2493 builtins_str = PyString_InternFromString("__builtins__");
2494 if (builtins_str == NULL)
2495 return NULL;
2496 silly_list = Py_BuildValue("[s]", "__doc__");
2497 if (silly_list == NULL)
2498 return NULL;
2499 }
2500
2501 /* Get the builtins from current globals */
2502 globals = PyEval_GetGlobals();
Guido van Rossum85cd1d62001-02-20 21:43:24 +00002503 if (globals != NULL) {
Guido van Rossum66468561998-10-22 15:46:50 +00002504 Py_INCREF(globals);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002505 builtins = PyObject_GetItem(globals, builtins_str);
2506 if (builtins == NULL)
2507 goto err;
2508 }
2509 else {
2510 /* No globals -- use standard builtins, and fake globals */
2511 PyErr_Clear();
2512
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002513 builtins = PyImport_ImportModuleLevel("__builtin__",
2514 NULL, NULL, NULL, 0);
Guido van Rossum85cd1d62001-02-20 21:43:24 +00002515 if (builtins == NULL)
2516 return NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002517 globals = Py_BuildValue("{OO}", builtins_str, builtins);
2518 if (globals == NULL)
2519 goto err;
2520 }
2521
2522 /* Get the __import__ function from the builtins */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002523 if (PyDict_Check(builtins)) {
Fred Drakea76ba6e2001-03-06 06:31:15 +00002524 import = PyObject_GetItem(builtins, import_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00002525 if (import == NULL)
2526 PyErr_SetObject(PyExc_KeyError, import_str);
2527 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002528 else
Fred Drakea76ba6e2001-03-06 06:31:15 +00002529 import = PyObject_GetAttr(builtins, import_str);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002530 if (import == NULL)
2531 goto err;
2532
2533 /* Call the _import__ function with the proper argument list */
Georg Brandl684fd0c2006-05-25 19:15:31 +00002534 r = PyObject_CallFunctionObjArgs(import, module_name, globals,
2535 globals, silly_list, NULL);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002536
2537 err:
2538 Py_XDECREF(globals);
2539 Py_XDECREF(builtins);
2540 Py_XDECREF(import);
Tim Peters50d8d372001-02-28 05:34:27 +00002541
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002542 return r;
2543}
2544
2545
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002546/* Module 'imp' provides Python access to the primitives used for
2547 importing modules.
2548*/
2549
Guido van Rossum79f25d91997-04-29 20:08:16 +00002550static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002551imp_get_magic(PyObject *self, PyObject *noargs)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002552{
2553 char buf[4];
2554
Guido van Rossum96774c12000-05-01 20:19:08 +00002555 buf[0] = (char) ((pyc_magic >> 0) & 0xff);
2556 buf[1] = (char) ((pyc_magic >> 8) & 0xff);
2557 buf[2] = (char) ((pyc_magic >> 16) & 0xff);
2558 buf[3] = (char) ((pyc_magic >> 24) & 0xff);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002559
Guido van Rossum79f25d91997-04-29 20:08:16 +00002560 return PyString_FromStringAndSize(buf, 4);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002561}
2562
Guido van Rossum79f25d91997-04-29 20:08:16 +00002563static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002564imp_get_suffixes(PyObject *self, PyObject *noargs)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002565{
Guido van Rossum79f25d91997-04-29 20:08:16 +00002566 PyObject *list;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002567 struct filedescr *fdp;
2568
Guido van Rossum79f25d91997-04-29 20:08:16 +00002569 list = PyList_New(0);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002570 if (list == NULL)
2571 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002572 for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
2573 PyObject *item = Py_BuildValue("ssi",
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002574 fdp->suffix, fdp->mode, fdp->type);
2575 if (item == NULL) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002576 Py_DECREF(list);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002577 return NULL;
2578 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002579 if (PyList_Append(list, item) < 0) {
2580 Py_DECREF(list);
2581 Py_DECREF(item);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002582 return NULL;
2583 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002584 Py_DECREF(item);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002585 }
2586 return list;
2587}
2588
Guido van Rossum79f25d91997-04-29 20:08:16 +00002589static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002590call_find_module(char *name, PyObject *path)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002591{
Tim Petersdbd9ba62000-07-09 03:09:57 +00002592 extern int fclose(FILE *);
Guido van Rossum79f25d91997-04-29 20:08:16 +00002593 PyObject *fob, *ret;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002594 struct filedescr *fdp;
2595 char pathname[MAXPATHLEN+1];
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002596 FILE *fp = NULL;
2597
2598 pathname[0] = '\0';
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002599 if (path == Py_None)
2600 path = NULL;
Just van Rossum52e14d62002-12-30 22:08:05 +00002601 fdp = find_module(NULL, name, path, pathname, MAXPATHLEN+1, &fp, NULL);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002602 if (fdp == NULL)
2603 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002604 if (fp != NULL) {
2605 fob = PyFile_FromFile(fp, pathname, fdp->mode, fclose);
2606 if (fob == NULL) {
2607 fclose(fp);
2608 return NULL;
2609 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002610 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002611 else {
2612 fob = Py_None;
2613 Py_INCREF(fob);
Tim Peters50d8d372001-02-28 05:34:27 +00002614 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002615 ret = Py_BuildValue("Os(ssi)",
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002616 fob, pathname, fdp->suffix, fdp->mode, fdp->type);
Guido van Rossum79f25d91997-04-29 20:08:16 +00002617 Py_DECREF(fob);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002618 return ret;
2619}
2620
Guido van Rossum79f25d91997-04-29 20:08:16 +00002621static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002622imp_find_module(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002623{
2624 char *name;
2625 PyObject *path = NULL;
Guido van Rossum43713e52000-02-29 13:59:29 +00002626 if (!PyArg_ParseTuple(args, "s|O:find_module", &name, &path))
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002627 return NULL;
2628 return call_find_module(name, path);
2629}
2630
2631static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002632imp_init_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002633{
2634 char *name;
2635 int ret;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002636 PyObject *m;
Guido van Rossum43713e52000-02-29 13:59:29 +00002637 if (!PyArg_ParseTuple(args, "s:init_builtin", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002638 return NULL;
2639 ret = init_builtin(name);
2640 if (ret < 0)
2641 return NULL;
2642 if (ret == 0) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002643 Py_INCREF(Py_None);
2644 return Py_None;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002645 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002646 m = PyImport_AddModule(name);
2647 Py_XINCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002648 return m;
2649}
2650
Guido van Rossum79f25d91997-04-29 20:08:16 +00002651static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002652imp_init_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002653{
2654 char *name;
2655 int ret;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002656 PyObject *m;
Guido van Rossum43713e52000-02-29 13:59:29 +00002657 if (!PyArg_ParseTuple(args, "s:init_frozen", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002658 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002659 ret = PyImport_ImportFrozenModule(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002660 if (ret < 0)
2661 return NULL;
2662 if (ret == 0) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002663 Py_INCREF(Py_None);
2664 return Py_None;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002665 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002666 m = PyImport_AddModule(name);
2667 Py_XINCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002668 return m;
2669}
2670
Guido van Rossum79f25d91997-04-29 20:08:16 +00002671static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002672imp_get_frozen_object(PyObject *self, PyObject *args)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002673{
2674 char *name;
Jack Jansen95ffa231995-10-03 14:38:41 +00002675
Guido van Rossum43713e52000-02-29 13:59:29 +00002676 if (!PyArg_ParseTuple(args, "s:get_frozen_object", &name))
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002677 return NULL;
2678 return get_frozen_object(name);
2679}
2680
Guido van Rossum79f25d91997-04-29 20:08:16 +00002681static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002682imp_is_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002683{
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002684 char *name;
Guido van Rossum43713e52000-02-29 13:59:29 +00002685 if (!PyArg_ParseTuple(args, "s:is_builtin", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002686 return NULL;
Guido van Rossum50ee94f2002-04-09 18:00:58 +00002687 return PyInt_FromLong(is_builtin(name));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002688}
2689
Guido van Rossum79f25d91997-04-29 20:08:16 +00002690static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002691imp_is_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002692{
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002693 char *name;
Guido van Rossum323bf5e1998-06-24 03:54:06 +00002694 struct _frozen *p;
Guido van Rossum43713e52000-02-29 13:59:29 +00002695 if (!PyArg_ParseTuple(args, "s:is_frozen", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002696 return NULL;
Guido van Rossum323bf5e1998-06-24 03:54:06 +00002697 p = find_frozen(name);
Guido van Rossumb8bff3f2002-04-07 06:34:38 +00002698 return PyBool_FromLong((long) (p == NULL ? 0 : p->size));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002699}
2700
2701static FILE *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002702get_file(char *pathname, PyObject *fob, char *mode)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002703{
2704 FILE *fp;
2705 if (fob == NULL) {
Tim Peters86c7d2f2004-08-01 23:24:21 +00002706 if (mode[0] == 'U')
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00002707 mode = "r" PY_STDIOTEXTMODE;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002708 fp = fopen(pathname, mode);
2709 if (fp == NULL)
Guido van Rossum79f25d91997-04-29 20:08:16 +00002710 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002711 }
2712 else {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002713 fp = PyFile_AsFile(fob);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002714 if (fp == NULL)
Guido van Rossum79f25d91997-04-29 20:08:16 +00002715 PyErr_SetString(PyExc_ValueError,
2716 "bad/closed file object");
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002717 }
2718 return fp;
2719}
2720
Guido van Rossum79f25d91997-04-29 20:08:16 +00002721static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002722imp_load_compiled(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002723{
2724 char *name;
2725 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002726 PyObject *fob = NULL;
2727 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002728 FILE *fp;
Guido van Rossum43713e52000-02-29 13:59:29 +00002729 if (!PyArg_ParseTuple(args, "ss|O!:load_compiled", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002730 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002731 return NULL;
2732 fp = get_file(pathname, fob, "rb");
2733 if (fp == NULL)
2734 return NULL;
2735 m = load_compiled_module(name, pathname, fp);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002736 if (fob == NULL)
2737 fclose(fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002738 return m;
2739}
2740
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002741#ifdef HAVE_DYNAMIC_LOADING
2742
Guido van Rossum79f25d91997-04-29 20:08:16 +00002743static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002744imp_load_dynamic(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002745{
2746 char *name;
2747 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002748 PyObject *fob = NULL;
2749 PyObject *m;
Guido van Rossum7faeab31995-07-07 22:50:36 +00002750 FILE *fp = NULL;
Guido van Rossum43713e52000-02-29 13:59:29 +00002751 if (!PyArg_ParseTuple(args, "ss|O!:load_dynamic", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002752 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002753 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002754 if (fob) {
Guido van Rossum7faeab31995-07-07 22:50:36 +00002755 fp = get_file(pathname, fob, "r");
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002756 if (fp == NULL)
2757 return NULL;
2758 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002759 m = _PyImport_LoadDynamicModule(name, pathname, fp);
Guido van Rossum7faeab31995-07-07 22:50:36 +00002760 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002761}
2762
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002763#endif /* HAVE_DYNAMIC_LOADING */
2764
Guido van Rossum79f25d91997-04-29 20:08:16 +00002765static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002766imp_load_source(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002767{
2768 char *name;
2769 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002770 PyObject *fob = NULL;
2771 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002772 FILE *fp;
Guido van Rossum43713e52000-02-29 13:59:29 +00002773 if (!PyArg_ParseTuple(args, "ss|O!:load_source", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002774 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002775 return NULL;
2776 fp = get_file(pathname, fob, "r");
2777 if (fp == NULL)
2778 return NULL;
2779 m = load_source_module(name, pathname, fp);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002780 if (fob == NULL)
2781 fclose(fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002782 return m;
2783}
2784
Guido van Rossum79f25d91997-04-29 20:08:16 +00002785static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002786imp_load_module(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002787{
2788 char *name;
2789 PyObject *fob;
2790 char *pathname;
2791 char *suffix; /* Unused */
2792 char *mode;
2793 int type;
2794 FILE *fp;
2795
Guido van Rossum43713e52000-02-29 13:59:29 +00002796 if (!PyArg_ParseTuple(args, "sOs(ssi):load_module",
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002797 &name, &fob, &pathname,
2798 &suffix, &mode, &type))
2799 return NULL;
Guido van Rossum5e2c5fa2002-05-30 17:33:07 +00002800 if (*mode) {
2801 /* Mode must start with 'r' or 'U' and must not contain '+'.
2802 Implicit in this test is the assumption that the mode
2803 may contain other modifiers like 'b' or 't'. */
2804
2805 if (!(*mode == 'r' || *mode == 'U') || strchr(mode, '+')) {
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00002806 PyErr_Format(PyExc_ValueError,
2807 "invalid file open mode %.200s", mode);
2808 return NULL;
Guido van Rossum5e2c5fa2002-05-30 17:33:07 +00002809 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002810 }
2811 if (fob == Py_None)
2812 fp = NULL;
2813 else {
2814 if (!PyFile_Check(fob)) {
2815 PyErr_SetString(PyExc_ValueError,
2816 "load_module arg#2 should be a file or None");
2817 return NULL;
2818 }
2819 fp = get_file(pathname, fob, mode);
2820 if (fp == NULL)
2821 return NULL;
2822 }
Just van Rossum52e14d62002-12-30 22:08:05 +00002823 return load_module(name, fp, pathname, type, NULL);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002824}
2825
2826static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002827imp_load_package(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002828{
2829 char *name;
2830 char *pathname;
Guido van Rossum43713e52000-02-29 13:59:29 +00002831 if (!PyArg_ParseTuple(args, "ss:load_package", &name, &pathname))
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002832 return NULL;
2833 return load_package(name, pathname);
2834}
2835
2836static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002837imp_new_module(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002838{
2839 char *name;
Guido van Rossum43713e52000-02-29 13:59:29 +00002840 if (!PyArg_ParseTuple(args, "s:new_module", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002841 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002842 return PyModule_New(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002843}
2844
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002845/* Doc strings */
2846
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002847PyDoc_STRVAR(doc_imp,
2848"This module provides the components needed to build your own\n\
2849__import__ function. Undocumented functions are obsolete.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002850
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002851PyDoc_STRVAR(doc_find_module,
2852"find_module(name, [path]) -> (file, filename, (suffix, mode, type))\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002853Search for a module. If path is omitted or None, search for a\n\
2854built-in, frozen or special module and continue search in sys.path.\n\
2855The module name cannot contain '.'; to search for a submodule of a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002856package, pass the submodule name and the package's __path__.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002857
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002858PyDoc_STRVAR(doc_load_module,
2859"load_module(name, file, filename, (suffix, mode, type)) -> module\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002860Load a module, given information returned by find_module().\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002861The module name must include the full package name, if any.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002862
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002863PyDoc_STRVAR(doc_get_magic,
2864"get_magic() -> string\n\
2865Return the magic number for .pyc or .pyo files.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002866
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002867PyDoc_STRVAR(doc_get_suffixes,
2868"get_suffixes() -> [(suffix, mode, type), ...]\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002869Return a list of (suffix, mode, type) tuples describing the files\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002870that find_module() looks for.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002871
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002872PyDoc_STRVAR(doc_new_module,
2873"new_module(name) -> module\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002874Create a new module. Do not enter it in sys.modules.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002875The module name must include the full package name, if any.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002876
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002877PyDoc_STRVAR(doc_lock_held,
Tim Petersa7c65092004-08-01 23:26:05 +00002878"lock_held() -> boolean\n\
2879Return True if the import lock is currently held, else False.\n\
2880On platforms without threads, return False.");
Tim Peters69232342001-08-30 05:16:13 +00002881
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002882PyDoc_STRVAR(doc_acquire_lock,
2883"acquire_lock() -> None\n\
Neal Norwitz2294c0d2003-02-12 23:02:21 +00002884Acquires the interpreter's import lock for the current thread.\n\
2885This lock should be used by import hooks to ensure thread-safety\n\
2886when importing modules.\n\
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002887On platforms without threads, this function does nothing.");
2888
2889PyDoc_STRVAR(doc_release_lock,
2890"release_lock() -> None\n\
2891Release the interpreter's import lock.\n\
2892On platforms without threads, this function does nothing.");
2893
Guido van Rossum79f25d91997-04-29 20:08:16 +00002894static PyMethodDef imp_methods[] = {
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002895 {"find_module", imp_find_module, METH_VARARGS, doc_find_module},
2896 {"get_magic", imp_get_magic, METH_NOARGS, doc_get_magic},
2897 {"get_suffixes", imp_get_suffixes, METH_NOARGS, doc_get_suffixes},
2898 {"load_module", imp_load_module, METH_VARARGS, doc_load_module},
2899 {"new_module", imp_new_module, METH_VARARGS, doc_new_module},
2900 {"lock_held", imp_lock_held, METH_NOARGS, doc_lock_held},
2901 {"acquire_lock", imp_acquire_lock, METH_NOARGS, doc_acquire_lock},
2902 {"release_lock", imp_release_lock, METH_NOARGS, doc_release_lock},
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002903 /* The rest are obsolete */
Neal Norwitz031829d2002-03-31 14:37:44 +00002904 {"get_frozen_object", imp_get_frozen_object, METH_VARARGS},
2905 {"init_builtin", imp_init_builtin, METH_VARARGS},
2906 {"init_frozen", imp_init_frozen, METH_VARARGS},
2907 {"is_builtin", imp_is_builtin, METH_VARARGS},
2908 {"is_frozen", imp_is_frozen, METH_VARARGS},
2909 {"load_compiled", imp_load_compiled, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002910#ifdef HAVE_DYNAMIC_LOADING
Neal Norwitz031829d2002-03-31 14:37:44 +00002911 {"load_dynamic", imp_load_dynamic, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002912#endif
Neal Norwitz031829d2002-03-31 14:37:44 +00002913 {"load_package", imp_load_package, METH_VARARGS},
Neal Norwitz031829d2002-03-31 14:37:44 +00002914 {"load_source", imp_load_source, METH_VARARGS},
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002915 {NULL, NULL} /* sentinel */
2916};
2917
Guido van Rossum1a8791e1998-08-04 22:46:29 +00002918static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002919setint(PyObject *d, char *name, int value)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002920{
2921 PyObject *v;
2922 int err;
2923
2924 v = PyInt_FromLong((long)value);
2925 err = PyDict_SetItemString(d, name, v);
2926 Py_XDECREF(v);
2927 return err;
2928}
2929
Jason Tishler6bc06ec2003-09-04 11:59:50 +00002930PyMODINIT_FUNC
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002931initimp(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002932{
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002933 PyObject *m, *d;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002934
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002935 m = Py_InitModule4("imp", imp_methods, doc_imp,
2936 NULL, PYTHON_API_VERSION);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00002937 if (m == NULL)
2938 goto failure;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002939 d = PyModule_GetDict(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002940
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002941 if (setint(d, "SEARCH_ERROR", SEARCH_ERROR) < 0) goto failure;
2942 if (setint(d, "PY_SOURCE", PY_SOURCE) < 0) goto failure;
2943 if (setint(d, "PY_COMPILED", PY_COMPILED) < 0) goto failure;
2944 if (setint(d, "C_EXTENSION", C_EXTENSION) < 0) goto failure;
2945 if (setint(d, "PY_RESOURCE", PY_RESOURCE) < 0) goto failure;
2946 if (setint(d, "PKG_DIRECTORY", PKG_DIRECTORY) < 0) goto failure;
2947 if (setint(d, "C_BUILTIN", C_BUILTIN) < 0) goto failure;
2948 if (setint(d, "PY_FROZEN", PY_FROZEN) < 0) goto failure;
Guido van Rossum0f84a341998-08-06 13:36:01 +00002949 if (setint(d, "PY_CODERESOURCE", PY_CODERESOURCE) < 0) goto failure;
Just van Rossum52e14d62002-12-30 22:08:05 +00002950 if (setint(d, "IMP_HOOK", IMP_HOOK) < 0) goto failure;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002951
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002952 failure:
2953 ;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002954}
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002955
2956
Guido van Rossumb18618d2000-05-03 23:44:39 +00002957/* API for embedding applications that want to add their own entries
2958 to the table of built-in modules. This should normally be called
2959 *before* Py_Initialize(). When the table resize fails, -1 is
2960 returned and the existing table is unchanged.
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002961
2962 After a similar function by Just van Rossum. */
2963
2964int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002965PyImport_ExtendInittab(struct _inittab *newtab)
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002966{
2967 static struct _inittab *our_copy = NULL;
2968 struct _inittab *p;
2969 int i, n;
2970
2971 /* Count the number of entries in both tables */
2972 for (n = 0; newtab[n].name != NULL; n++)
2973 ;
2974 if (n == 0)
2975 return 0; /* Nothing to do */
2976 for (i = 0; PyImport_Inittab[i].name != NULL; i++)
2977 ;
2978
2979 /* Allocate new memory for the combined table */
Guido van Rossumb18618d2000-05-03 23:44:39 +00002980 p = our_copy;
2981 PyMem_RESIZE(p, struct _inittab, i+n+1);
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002982 if (p == NULL)
2983 return -1;
2984
2985 /* Copy the tables into the new memory */
2986 if (our_copy != PyImport_Inittab)
2987 memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct _inittab));
2988 PyImport_Inittab = our_copy = p;
2989 memcpy(p+i, newtab, (n+1) * sizeof(struct _inittab));
2990
2991 return 0;
2992}
2993
2994/* Shorthand to add a single entry given a name and a function */
2995
2996int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002997PyImport_AppendInittab(char *name, void (*initfunc)(void))
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002998{
2999 struct _inittab newtab[2];
3000
3001 memset(newtab, '\0', sizeof newtab);
3002
3003 newtab[0].name = name;
3004 newtab[0].initfunc = initfunc;
3005
3006 return PyImport_ExtendInittab(newtab);
3007}
Anthony Baxterac6bd462006-04-13 02:06:09 +00003008
3009#ifdef __cplusplus
3010}
3011#endif