blob: e09365b8c995c02276a39f10881ec2de13af4733 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002/* Module definition and import implementation */
3
Guido van Rossum79f25d91997-04-29 20:08:16 +00004#include "Python.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00006#include "Python-ast.h"
Neal Norwitzadb69fc2005-12-17 20:54:49 +00007#include "pyarena.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00008#include "pythonrun.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00009#include "errcode.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +000010#include "marshal.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000011#include "code.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +000012#include "compile.h"
Guido van Rossumff4949e1992-08-05 19:58:53 +000013#include "eval.h"
Guido van Rossumd8bac6d1992-02-26 15:19:13 +000014#include "osdefs.h"
Guido van Rossum1ae940a1995-01-02 19:04:15 +000015#include "importdl.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +000016
Guido van Rossum55a83382000-09-20 20:31:38 +000017#ifdef HAVE_FCNTL_H
18#include <fcntl.h>
19#endif
Anthony Baxterac6bd462006-04-13 02:06:09 +000020#ifdef __cplusplus
21extern "C" {
22#endif
Guido van Rossum55a83382000-09-20 20:31:38 +000023
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000024extern time_t PyOS_GetLastModificationTime(char *, FILE *);
25 /* In getmtime.c */
Guido van Rossum21d335e1993-10-15 13:01:11 +000026
Jeremy Hyltond4ceb312004-04-01 02:45:22 +000027/* Magic word to reject .pyc files generated by other Python versions.
28 It should change for each incompatible change to the bytecode.
29
30 The value of CR and LF is incorporated so if you ever read or write
Guido van Rossum7faeab31995-07-07 22:50:36 +000031 a .pyc file in text mode the magic number will be wrong; also, the
Tim Peters36515e22001-11-18 04:06:29 +000032 Apple MPW compiler swaps their values, botching string constants.
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000033
Martin v. Löwisef82d2f2004-06-27 16:51:46 +000034 The magic numbers must be spaced apart atleast 2 values, as the
35 -U interpeter flag will cause MAGIC+1 being used. They have been
36 odd numbers for some time now.
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000037
Jeremy Hyltond4ceb312004-04-01 02:45:22 +000038 There were a variety of old schemes for setting the magic number.
39 The current working scheme is to increment the previous value by
40 10.
Guido van Rossumf6894922002-08-31 15:16:14 +000041
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000042 Known values:
43 Python 1.5: 20121
44 Python 1.5.1: 20121
45 Python 1.5.2: 20121
Skip Montanaro4ec3c262006-03-25 14:12:03 +000046 Python 1.6: 50428
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000047 Python 2.0: 50823
48 Python 2.0.1: 50823
49 Python 2.1: 60202
50 Python 2.1.1: 60202
51 Python 2.1.2: 60202
52 Python 2.2: 60717
Neal Norwitz7fdcb412002-06-14 01:07:39 +000053 Python 2.3a0: 62011
Michael W. Hudsondd32a912002-08-15 14:59:02 +000054 Python 2.3a0: 62021
Guido van Rossumf6894922002-08-31 15:16:14 +000055 Python 2.3a0: 62011 (!)
Martin v. Löwisef82d2f2004-06-27 16:51:46 +000056 Python 2.4a0: 62041
Raymond Hettingerfd2d1f72004-08-23 23:37:48 +000057 Python 2.4a3: 62051
Raymond Hettinger2c31a052004-09-22 18:44:21 +000058 Python 2.4b1: 62061
Michael W. Hudsondf888462005-06-03 14:41:55 +000059 Python 2.5a0: 62071
Michael W. Hudsonaee2e282005-10-21 11:32:20 +000060 Python 2.5a0: 62081 (ast-branch)
Guido van Rossumc2e20742006-02-27 22:32:47 +000061 Python 2.5a0: 62091 (with)
Guido van Rossumf6694362006-03-10 02:28:35 +000062 Python 2.5a0: 62092 (changed WITH_CLEANUP opcode)
Michael W. Hudsonaee2e282005-10-21 11:32:20 +000063.
Tim Peters36515e22001-11-18 04:06:29 +000064*/
Thomas Woutersf7f438b2006-02-28 16:09:29 +000065#define MAGIC (62092 | ((long)'\r'<<16) | ((long)'\n'<<24))
Guido van Rossum3ddee711991-12-16 13:06:34 +000066
Guido van Rossum96774c12000-05-01 20:19:08 +000067/* Magic word as global; note that _PyImport_Init() can change the
Jeremy Hylton9262b8a2000-06-30 04:59:17 +000068 value of this global to accommodate for alterations of how the
Guido van Rossum96774c12000-05-01 20:19:08 +000069 compiler works which are enabled by command line switches. */
70static long pyc_magic = MAGIC;
71
Guido van Rossum25ce5661997-08-02 03:10:38 +000072/* See _PyImport_FixupExtension() below */
73static PyObject *extensions = NULL;
Guido van Rossum3f5da241990-12-20 15:06:42 +000074
Guido van Rossum771c6c81997-10-31 18:37:24 +000075/* This table is defined in config.c: */
76extern struct _inittab _PyImport_Inittab[];
77
78struct _inittab *PyImport_Inittab = _PyImport_Inittab;
Guido van Rossum66f1fa81991-04-03 19:03:52 +000079
Guido van Rossumed1170e1999-12-20 21:23:41 +000080/* these tables define the module suffixes that Python recognizes */
81struct filedescr * _PyImport_Filetab = NULL;
Guido van Rossum48a680c2001-03-02 06:34:14 +000082
83#ifdef RISCOS
84static const struct filedescr _PyImport_StandardFiletab[] = {
Jack Jansenc88da1f2002-05-28 10:58:19 +000085 {"/py", "U", PY_SOURCE},
Guido van Rossum48a680c2001-03-02 06:34:14 +000086 {"/pyc", "rb", PY_COMPILED},
87 {0, 0}
88};
89#else
Guido van Rossumed1170e1999-12-20 21:23:41 +000090static const struct filedescr _PyImport_StandardFiletab[] = {
Jack Jansenc88da1f2002-05-28 10:58:19 +000091 {".py", "U", PY_SOURCE},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000092#ifdef MS_WINDOWS
Jack Jansenc88da1f2002-05-28 10:58:19 +000093 {".pyw", "U", PY_SOURCE},
Tim Peters36515e22001-11-18 04:06:29 +000094#endif
Guido van Rossumed1170e1999-12-20 21:23:41 +000095 {".pyc", "rb", PY_COMPILED},
96 {0, 0}
97};
Guido van Rossum48a680c2001-03-02 06:34:14 +000098#endif
Guido van Rossumed1170e1999-12-20 21:23:41 +000099
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000100/* Initialize things */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000101
102void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000103_PyImport_Init(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000104{
Guido van Rossumed1170e1999-12-20 21:23:41 +0000105 const struct filedescr *scan;
106 struct filedescr *filetab;
107 int countD = 0;
108 int countS = 0;
109
110 /* prepare _PyImport_Filetab: copy entries from
111 _PyImport_DynLoadFiletab and _PyImport_StandardFiletab.
112 */
113 for (scan = _PyImport_DynLoadFiletab; scan->suffix != NULL; ++scan)
114 ++countD;
115 for (scan = _PyImport_StandardFiletab; scan->suffix != NULL; ++scan)
116 ++countS;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000117 filetab = PyMem_NEW(struct filedescr, countD + countS + 1);
Guido van Rossumed1170e1999-12-20 21:23:41 +0000118 memcpy(filetab, _PyImport_DynLoadFiletab,
119 countD * sizeof(struct filedescr));
120 memcpy(filetab + countD, _PyImport_StandardFiletab,
121 countS * sizeof(struct filedescr));
122 filetab[countD + countS].suffix = NULL;
123
124 _PyImport_Filetab = filetab;
125
Guido van Rossum0824f631997-03-11 18:37:35 +0000126 if (Py_OptimizeFlag) {
Guido van Rossumed1170e1999-12-20 21:23:41 +0000127 /* Replace ".pyc" with ".pyo" in _PyImport_Filetab */
128 for (; filetab->suffix != NULL; filetab++) {
Guido van Rossum48a680c2001-03-02 06:34:14 +0000129#ifndef RISCOS
Guido van Rossumed1170e1999-12-20 21:23:41 +0000130 if (strcmp(filetab->suffix, ".pyc") == 0)
131 filetab->suffix = ".pyo";
Guido van Rossum48a680c2001-03-02 06:34:14 +0000132#else
133 if (strcmp(filetab->suffix, "/pyc") == 0)
134 filetab->suffix = "/pyo";
135#endif
Guido van Rossum0824f631997-03-11 18:37:35 +0000136 }
137 }
Guido van Rossum96774c12000-05-01 20:19:08 +0000138
139 if (Py_UnicodeFlag) {
140 /* Fix the pyc_magic so that byte compiled code created
141 using the all-Unicode method doesn't interfere with
142 code created in normal operation mode. */
143 pyc_magic = MAGIC + 1;
144 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000145}
146
Guido van Rossum25ce5661997-08-02 03:10:38 +0000147void
Just van Rossum52e14d62002-12-30 22:08:05 +0000148_PyImportHooks_Init(void)
149{
150 PyObject *v, *path_hooks = NULL, *zimpimport;
151 int err = 0;
152
153 /* adding sys.path_hooks and sys.path_importer_cache, setting up
154 zipimport */
155
156 if (Py_VerboseFlag)
157 PySys_WriteStderr("# installing zipimport hook\n");
158
159 v = PyList_New(0);
160 if (v == NULL)
161 goto error;
162 err = PySys_SetObject("meta_path", v);
163 Py_DECREF(v);
164 if (err)
165 goto error;
166 v = PyDict_New();
167 if (v == NULL)
168 goto error;
169 err = PySys_SetObject("path_importer_cache", v);
170 Py_DECREF(v);
171 if (err)
172 goto error;
173 path_hooks = PyList_New(0);
174 if (path_hooks == NULL)
175 goto error;
176 err = PySys_SetObject("path_hooks", path_hooks);
177 if (err) {
178 error:
179 PyErr_Print();
180 Py_FatalError("initializing sys.meta_path, sys.path_hooks or "
181 "path_importer_cache failed");
182 }
183 zimpimport = PyImport_ImportModule("zipimport");
184 if (zimpimport == NULL) {
185 PyErr_Clear(); /* No zip import module -- okay */
186 if (Py_VerboseFlag)
187 PySys_WriteStderr("# can't import zipimport\n");
188 }
189 else {
190 PyObject *zipimporter = PyObject_GetAttrString(zimpimport,
191 "zipimporter");
192 Py_DECREF(zimpimport);
193 if (zipimporter == NULL) {
194 PyErr_Clear(); /* No zipimporter object -- okay */
195 if (Py_VerboseFlag)
196 PySys_WriteStderr(
Fred Drake1e5fc552003-07-11 15:01:02 +0000197 "# can't import zipimport.zipimporter\n");
Just van Rossum52e14d62002-12-30 22:08:05 +0000198 }
199 else {
200 /* sys.path_hooks.append(zipimporter) */
201 err = PyList_Append(path_hooks, zipimporter);
202 Py_DECREF(zipimporter);
203 if (err)
204 goto error;
205 if (Py_VerboseFlag)
206 PySys_WriteStderr(
207 "# installed zipimport hook\n");
208 }
209 }
210 Py_DECREF(path_hooks);
211}
212
213void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000214_PyImport_Fini(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000215{
216 Py_XDECREF(extensions);
217 extensions = NULL;
Barry Warsaw84294482000-10-03 16:02:05 +0000218 PyMem_DEL(_PyImport_Filetab);
219 _PyImport_Filetab = NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000220}
221
222
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000223/* Locking primitives to prevent parallel imports of the same module
224 in different threads to return with a partially loaded module.
225 These calls are serialized by the global interpreter lock. */
226
227#ifdef WITH_THREAD
228
Guido van Rossum49b56061998-10-01 20:42:43 +0000229#include "pythread.h"
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000230
Guido van Rossum65d5b571998-12-21 19:32:43 +0000231static PyThread_type_lock import_lock = 0;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000232static long import_lock_thread = -1;
233static int import_lock_level = 0;
234
235static void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000236lock_import(void)
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000237{
Guido van Rossum65d5b571998-12-21 19:32:43 +0000238 long me = PyThread_get_thread_ident();
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000239 if (me == -1)
240 return; /* Too bad */
241 if (import_lock == NULL)
Guido van Rossum65d5b571998-12-21 19:32:43 +0000242 import_lock = PyThread_allocate_lock();
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000243 if (import_lock_thread == me) {
244 import_lock_level++;
245 return;
246 }
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000247 if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0))
248 {
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000249 PyThreadState *tstate = PyEval_SaveThread();
Guido van Rossum65d5b571998-12-21 19:32:43 +0000250 PyThread_acquire_lock(import_lock, 1);
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000251 PyEval_RestoreThread(tstate);
252 }
253 import_lock_thread = me;
254 import_lock_level = 1;
255}
256
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000257static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000258unlock_import(void)
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000259{
Guido van Rossum65d5b571998-12-21 19:32:43 +0000260 long me = PyThread_get_thread_ident();
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000261 if (me == -1)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000262 return 0; /* Too bad */
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000263 if (import_lock_thread != me)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000264 return -1;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000265 import_lock_level--;
266 if (import_lock_level == 0) {
267 import_lock_thread = -1;
Guido van Rossum65d5b571998-12-21 19:32:43 +0000268 PyThread_release_lock(import_lock);
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000269 }
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000270 return 1;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000271}
272
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000273/* This function is called from PyOS_AfterFork to ensure that newly
274 created child processes do not share locks with the parent. */
275
276void
277_PyImport_ReInitLock(void)
278{
279#ifdef _AIX
280 if (import_lock != NULL)
281 import_lock = PyThread_allocate_lock();
282#endif
283}
284
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000285#else
286
287#define lock_import()
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000288#define unlock_import() 0
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000289
290#endif
291
Tim Peters69232342001-08-30 05:16:13 +0000292static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000293imp_lock_held(PyObject *self, PyObject *noargs)
Tim Peters69232342001-08-30 05:16:13 +0000294{
Tim Peters69232342001-08-30 05:16:13 +0000295#ifdef WITH_THREAD
Guido van Rossumb8bff3f2002-04-07 06:34:38 +0000296 return PyBool_FromLong(import_lock_thread != -1);
Tim Peters69232342001-08-30 05:16:13 +0000297#else
Guido van Rossumb8bff3f2002-04-07 06:34:38 +0000298 return PyBool_FromLong(0);
Tim Peters69232342001-08-30 05:16:13 +0000299#endif
300}
301
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000302static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000303imp_acquire_lock(PyObject *self, PyObject *noargs)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000304{
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000305#ifdef WITH_THREAD
306 lock_import();
307#endif
Neal Norwitz2294c0d2003-02-12 23:02:21 +0000308 Py_INCREF(Py_None);
309 return Py_None;
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000310}
311
312static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000313imp_release_lock(PyObject *self, PyObject *noargs)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000314{
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000315#ifdef WITH_THREAD
316 if (unlock_import() < 0) {
317 PyErr_SetString(PyExc_RuntimeError,
318 "not holding the import lock");
319 return NULL;
320 }
321#endif
Neal Norwitz2294c0d2003-02-12 23:02:21 +0000322 Py_INCREF(Py_None);
323 return Py_None;
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000324}
325
Guido van Rossum25ce5661997-08-02 03:10:38 +0000326/* Helper for sys */
327
328PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000329PyImport_GetModuleDict(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000330{
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000331 PyInterpreterState *interp = PyThreadState_GET()->interp;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000332 if (interp->modules == NULL)
333 Py_FatalError("PyImport_GetModuleDict: no module dictionary!");
334 return interp->modules;
335}
336
Guido van Rossum3f5da241990-12-20 15:06:42 +0000337
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000338/* List of names to clear in sys */
339static char* sys_deletes[] = {
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000340 "path", "argv", "ps1", "ps2", "exitfunc",
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000341 "exc_type", "exc_value", "exc_traceback",
342 "last_type", "last_value", "last_traceback",
Just van Rossum52e14d62002-12-30 22:08:05 +0000343 "path_hooks", "path_importer_cache", "meta_path",
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000344 NULL
345};
346
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000347static char* sys_files[] = {
348 "stdin", "__stdin__",
349 "stdout", "__stdout__",
350 "stderr", "__stderr__",
351 NULL
352};
353
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000354
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000355/* Un-initialize things, as good as we can */
Guido van Rossum3f5da241990-12-20 15:06:42 +0000356
Guido van Rossum3f5da241990-12-20 15:06:42 +0000357void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000358PyImport_Cleanup(void)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000359{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000360 Py_ssize_t pos, ndone;
Guido van Rossum758eec01998-01-19 21:58:26 +0000361 char *name;
362 PyObject *key, *value, *dict;
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000363 PyInterpreterState *interp = PyThreadState_GET()->interp;
Guido van Rossum758eec01998-01-19 21:58:26 +0000364 PyObject *modules = interp->modules;
365
366 if (modules == NULL)
367 return; /* Already done */
368
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000369 /* Delete some special variables first. These are common
370 places where user values hide and people complain when their
371 destructors fail. Since the modules containing them are
372 deleted *last* of all, they would come too late in the normal
373 destruction order. Sigh. */
374
375 value = PyDict_GetItemString(modules, "__builtin__");
376 if (value != NULL && PyModule_Check(value)) {
377 dict = PyModule_GetDict(value);
378 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000379 PySys_WriteStderr("# clear __builtin__._\n");
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000380 PyDict_SetItemString(dict, "_", Py_None);
381 }
382 value = PyDict_GetItemString(modules, "sys");
383 if (value != NULL && PyModule_Check(value)) {
384 char **p;
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000385 PyObject *v;
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000386 dict = PyModule_GetDict(value);
387 for (p = sys_deletes; *p != NULL; p++) {
388 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000389 PySys_WriteStderr("# clear sys.%s\n", *p);
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000390 PyDict_SetItemString(dict, *p, Py_None);
391 }
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000392 for (p = sys_files; *p != NULL; p+=2) {
393 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000394 PySys_WriteStderr("# restore sys.%s\n", *p);
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000395 v = PyDict_GetItemString(dict, *(p+1));
396 if (v == NULL)
397 v = Py_None;
398 PyDict_SetItemString(dict, *p, v);
399 }
400 }
401
402 /* First, delete __main__ */
403 value = PyDict_GetItemString(modules, "__main__");
404 if (value != NULL && PyModule_Check(value)) {
405 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000406 PySys_WriteStderr("# cleanup __main__\n");
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000407 _PyModule_Clear(value);
408 PyDict_SetItemString(modules, "__main__", Py_None);
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000409 }
410
Guido van Rossum758eec01998-01-19 21:58:26 +0000411 /* The special treatment of __builtin__ here is because even
412 when it's not referenced as a module, its dictionary is
413 referenced by almost every module's __builtins__. Since
414 deleting a module clears its dictionary (even if there are
415 references left to it), we need to delete the __builtin__
416 module last. Likewise, we don't delete sys until the very
417 end because it is implicitly referenced (e.g. by print).
418
419 Also note that we 'delete' modules by replacing their entry
420 in the modules dict with None, rather than really deleting
421 them; this avoids a rehash of the modules dictionary and
422 also marks them as "non existent" so they won't be
423 re-imported. */
424
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000425 /* Next, repeatedly delete modules with a reference count of
Guido van Rossum758eec01998-01-19 21:58:26 +0000426 one (skipping __builtin__ and sys) and delete them */
427 do {
428 ndone = 0;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000429 pos = 0;
Guido van Rossum758eec01998-01-19 21:58:26 +0000430 while (PyDict_Next(modules, &pos, &key, &value)) {
431 if (value->ob_refcnt != 1)
432 continue;
Guido van Rossum566373e1998-10-01 15:24:50 +0000433 if (PyString_Check(key) && PyModule_Check(value)) {
434 name = PyString_AS_STRING(key);
Guido van Rossum758eec01998-01-19 21:58:26 +0000435 if (strcmp(name, "__builtin__") == 0)
436 continue;
437 if (strcmp(name, "sys") == 0)
438 continue;
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000439 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000440 PySys_WriteStderr(
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000441 "# cleanup[1] %s\n", name);
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000442 _PyModule_Clear(value);
Guido van Rossum758eec01998-01-19 21:58:26 +0000443 PyDict_SetItem(modules, key, Py_None);
444 ndone++;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000445 }
446 }
Guido van Rossum758eec01998-01-19 21:58:26 +0000447 } while (ndone > 0);
448
Guido van Rossum758eec01998-01-19 21:58:26 +0000449 /* Next, delete all modules (still skipping __builtin__ and sys) */
450 pos = 0;
451 while (PyDict_Next(modules, &pos, &key, &value)) {
Guido van Rossum566373e1998-10-01 15:24:50 +0000452 if (PyString_Check(key) && PyModule_Check(value)) {
453 name = PyString_AS_STRING(key);
Guido van Rossum758eec01998-01-19 21:58:26 +0000454 if (strcmp(name, "__builtin__") == 0)
455 continue;
456 if (strcmp(name, "sys") == 0)
457 continue;
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000458 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000459 PySys_WriteStderr("# cleanup[2] %s\n", name);
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000460 _PyModule_Clear(value);
Guido van Rossum758eec01998-01-19 21:58:26 +0000461 PyDict_SetItem(modules, key, Py_None);
462 }
463 }
464
465 /* Next, delete sys and __builtin__ (in that order) */
466 value = PyDict_GetItemString(modules, "sys");
467 if (value != NULL && PyModule_Check(value)) {
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000468 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000469 PySys_WriteStderr("# cleanup sys\n");
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000470 _PyModule_Clear(value);
Guido van Rossum758eec01998-01-19 21:58:26 +0000471 PyDict_SetItemString(modules, "sys", Py_None);
472 }
473 value = PyDict_GetItemString(modules, "__builtin__");
474 if (value != NULL && PyModule_Check(value)) {
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000475 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000476 PySys_WriteStderr("# cleanup __builtin__\n");
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000477 _PyModule_Clear(value);
Guido van Rossum758eec01998-01-19 21:58:26 +0000478 PyDict_SetItemString(modules, "__builtin__", Py_None);
479 }
480
481 /* Finally, clear and delete the modules directory */
482 PyDict_Clear(modules);
483 interp->modules = NULL;
484 Py_DECREF(modules);
Guido van Rossum8d15b5d1990-10-26 14:58:58 +0000485}
Guido van Rossum7f133ed1991-02-19 12:23:57 +0000486
487
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000488/* Helper for pythonrun.c -- return magic number */
489
490long
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000491PyImport_GetMagicNumber(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000492{
Guido van Rossum96774c12000-05-01 20:19:08 +0000493 return pyc_magic;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000494}
495
496
Guido van Rossum25ce5661997-08-02 03:10:38 +0000497/* Magic for extension modules (built-in as well as dynamically
498 loaded). To prevent initializing an extension module more than
499 once, we keep a static dictionary 'extensions' keyed by module name
500 (for built-in modules) or by filename (for dynamically loaded
Barry Warsaw92883382001-08-13 23:05:44 +0000501 modules), containing these modules. A copy of the module's
Guido van Rossum25ce5661997-08-02 03:10:38 +0000502 dictionary is stored by calling _PyImport_FixupExtension()
503 immediately after the module initialization function succeeds. A
504 copy can be retrieved from there by calling
505 _PyImport_FindExtension(). */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000506
Guido van Rossum79f25d91997-04-29 20:08:16 +0000507PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000508_PyImport_FixupExtension(char *name, char *filename)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000509{
Guido van Rossum25ce5661997-08-02 03:10:38 +0000510 PyObject *modules, *mod, *dict, *copy;
511 if (extensions == NULL) {
512 extensions = PyDict_New();
513 if (extensions == NULL)
514 return NULL;
515 }
516 modules = PyImport_GetModuleDict();
517 mod = PyDict_GetItemString(modules, name);
518 if (mod == NULL || !PyModule_Check(mod)) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000519 PyErr_Format(PyExc_SystemError,
520 "_PyImport_FixupExtension: module %.200s not loaded", name);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000521 return NULL;
522 }
523 dict = PyModule_GetDict(mod);
524 if (dict == NULL)
525 return NULL;
Fred Drake9cd0efc2001-10-25 21:38:59 +0000526 copy = PyDict_Copy(dict);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000527 if (copy == NULL)
528 return NULL;
529 PyDict_SetItemString(extensions, filename, copy);
530 Py_DECREF(copy);
531 return copy;
532}
533
534PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000535_PyImport_FindExtension(char *name, char *filename)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000536{
Fred Drake9cd0efc2001-10-25 21:38:59 +0000537 PyObject *dict, *mod, *mdict;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000538 if (extensions == NULL)
539 return NULL;
540 dict = PyDict_GetItemString(extensions, filename);
541 if (dict == NULL)
542 return NULL;
543 mod = PyImport_AddModule(name);
544 if (mod == NULL)
545 return NULL;
546 mdict = PyModule_GetDict(mod);
547 if (mdict == NULL)
548 return NULL;
Fred Drake9cd0efc2001-10-25 21:38:59 +0000549 if (PyDict_Update(mdict, dict))
Guido van Rossum25ce5661997-08-02 03:10:38 +0000550 return NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000551 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000552 PySys_WriteStderr("import %s # previously loaded (%s)\n",
Guido van Rossum25ce5661997-08-02 03:10:38 +0000553 name, filename);
554 return mod;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000555}
556
557
558/* Get the module object corresponding to a module name.
559 First check the modules dictionary if there's one there,
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +0000560 if not, create a new one and insert it in the modules dictionary.
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000561 Because the former action is most common, THIS DOES NOT RETURN A
562 'NEW' REFERENCE! */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000563
Guido van Rossum79f25d91997-04-29 20:08:16 +0000564PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000565PyImport_AddModule(const char *name)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000566{
Guido van Rossum25ce5661997-08-02 03:10:38 +0000567 PyObject *modules = PyImport_GetModuleDict();
Guido van Rossum79f25d91997-04-29 20:08:16 +0000568 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000569
Guido van Rossum25ce5661997-08-02 03:10:38 +0000570 if ((m = PyDict_GetItemString(modules, name)) != NULL &&
Guido van Rossum79f25d91997-04-29 20:08:16 +0000571 PyModule_Check(m))
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000572 return m;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000573 m = PyModule_New(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000574 if (m == NULL)
575 return NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000576 if (PyDict_SetItemString(modules, name, m) != 0) {
Guido van Rossum79f25d91997-04-29 20:08:16 +0000577 Py_DECREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000578 return NULL;
579 }
Guido van Rossum79f25d91997-04-29 20:08:16 +0000580 Py_DECREF(m); /* Yes, it still exists, in modules! */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000581
582 return m;
583}
584
Tim Peters1cd70172004-08-02 03:52:12 +0000585/* Remove name from sys.modules, if it's there. */
586static void
587_RemoveModule(const char *name)
588{
589 PyObject *modules = PyImport_GetModuleDict();
590 if (PyDict_GetItemString(modules, name) == NULL)
591 return;
592 if (PyDict_DelItemString(modules, name) < 0)
593 Py_FatalError("import: deleting existing key in"
594 "sys.modules failed");
595}
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000596
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000597/* Execute a code object in a module and return the module object
Tim Peters1cd70172004-08-02 03:52:12 +0000598 * WITH INCREMENTED REFERENCE COUNT. If an error occurs, name is
599 * removed from sys.modules, to avoid leaving damaged module objects
600 * in sys.modules. The caller may wish to restore the original
601 * module object (if any) in this case; PyImport_ReloadModule is an
602 * example.
603 */
Guido van Rossum79f25d91997-04-29 20:08:16 +0000604PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000605PyImport_ExecCodeModule(char *name, PyObject *co)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000606{
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000607 return PyImport_ExecCodeModuleEx(name, co, (char *)NULL);
608}
609
610PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000611PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname)
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000612{
Guido van Rossum25ce5661997-08-02 03:10:38 +0000613 PyObject *modules = PyImport_GetModuleDict();
Guido van Rossum79f25d91997-04-29 20:08:16 +0000614 PyObject *m, *d, *v;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000615
Guido van Rossum79f25d91997-04-29 20:08:16 +0000616 m = PyImport_AddModule(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000617 if (m == NULL)
618 return NULL;
Jeremy Hyltonecd91292004-01-02 23:25:32 +0000619 /* If the module is being reloaded, we get the old module back
620 and re-use its dict to exec the new code. */
Guido van Rossum79f25d91997-04-29 20:08:16 +0000621 d = PyModule_GetDict(m);
622 if (PyDict_GetItemString(d, "__builtins__") == NULL) {
623 if (PyDict_SetItemString(d, "__builtins__",
624 PyEval_GetBuiltins()) != 0)
Tim Peters1cd70172004-08-02 03:52:12 +0000625 goto error;
Guido van Rossum6135a871995-01-09 17:53:26 +0000626 }
Guido van Rossum9c9a07c1996-05-16 20:43:40 +0000627 /* Remember the filename as the __file__ attribute */
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000628 v = NULL;
629 if (pathname != NULL) {
630 v = PyString_FromString(pathname);
631 if (v == NULL)
632 PyErr_Clear();
633 }
634 if (v == NULL) {
635 v = ((PyCodeObject *)co)->co_filename;
636 Py_INCREF(v);
637 }
638 if (PyDict_SetItemString(d, "__file__", v) != 0)
Guido van Rossum79f25d91997-04-29 20:08:16 +0000639 PyErr_Clear(); /* Not important enough to report */
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000640 Py_DECREF(v);
641
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000642 v = PyEval_EvalCode((PyCodeObject *)co, d, d);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000643 if (v == NULL)
Tim Peters1cd70172004-08-02 03:52:12 +0000644 goto error;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000645 Py_DECREF(v);
Guido van Rossumb65e85c1997-07-10 18:00:45 +0000646
Guido van Rossum25ce5661997-08-02 03:10:38 +0000647 if ((m = PyDict_GetItemString(modules, name)) == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000648 PyErr_Format(PyExc_ImportError,
649 "Loaded module %.200s not found in sys.modules",
650 name);
Guido van Rossumb65e85c1997-07-10 18:00:45 +0000651 return NULL;
652 }
653
Guido van Rossum79f25d91997-04-29 20:08:16 +0000654 Py_INCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000655
656 return m;
Tim Peters1cd70172004-08-02 03:52:12 +0000657
658 error:
659 _RemoveModule(name);
660 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000661}
662
663
664/* Given a pathname for a Python source file, fill a buffer with the
665 pathname for the corresponding compiled file. Return the pathname
666 for the compiled file, or NULL if there's no space in the buffer.
667 Doesn't set an exception. */
668
669static char *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000670make_compiled_pathname(char *pathname, char *buf, size_t buflen)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000671{
Tim Petersc1731372001-08-04 08:12:36 +0000672 size_t len = strlen(pathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000673 if (len+2 > buflen)
674 return NULL;
Tim Petersc1731372001-08-04 08:12:36 +0000675
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000676#ifdef MS_WINDOWS
Tim Petersc1731372001-08-04 08:12:36 +0000677 /* Treat .pyw as if it were .py. The case of ".pyw" must match
678 that used in _PyImport_StandardFiletab. */
679 if (len >= 4 && strcmp(&pathname[len-4], ".pyw") == 0)
680 --len; /* pretend 'w' isn't there */
681#endif
682 memcpy(buf, pathname, len);
683 buf[len] = Py_OptimizeFlag ? 'o' : 'c';
684 buf[len+1] = '\0';
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000685
686 return buf;
687}
688
689
690/* Given a pathname for a Python source file, its time of last
691 modification, and a pathname for a compiled file, check whether the
692 compiled file represents the same version of the source. If so,
693 return a FILE pointer for the compiled file, positioned just after
694 the header; if not, return NULL.
695 Doesn't set an exception. */
696
697static FILE *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000698check_compiled_module(char *pathname, time_t mtime, char *cpathname)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000699{
700 FILE *fp;
701 long magic;
702 long pyc_mtime;
703
704 fp = fopen(cpathname, "rb");
705 if (fp == NULL)
706 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000707 magic = PyMarshal_ReadLongFromFile(fp);
Guido van Rossum96774c12000-05-01 20:19:08 +0000708 if (magic != pyc_magic) {
Guido van Rossum79f25d91997-04-29 20:08:16 +0000709 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000710 PySys_WriteStderr("# %s has bad magic\n", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000711 fclose(fp);
712 return NULL;
713 }
Guido van Rossum79f25d91997-04-29 20:08:16 +0000714 pyc_mtime = PyMarshal_ReadLongFromFile(fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000715 if (pyc_mtime != mtime) {
Guido van Rossum79f25d91997-04-29 20:08:16 +0000716 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000717 PySys_WriteStderr("# %s has bad mtime\n", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000718 fclose(fp);
719 return NULL;
720 }
Guido van Rossum79f25d91997-04-29 20:08:16 +0000721 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000722 PySys_WriteStderr("# %s matches %s\n", cpathname, pathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000723 return fp;
724}
725
726
727/* Read a code object from a file and check it for validity */
728
Guido van Rossum79f25d91997-04-29 20:08:16 +0000729static PyCodeObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000730read_compiled_module(char *cpathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000731{
Guido van Rossum79f25d91997-04-29 20:08:16 +0000732 PyObject *co;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000733
Tim Petersd9b9ac82001-01-28 00:27:39 +0000734 co = PyMarshal_ReadLastObjectFromFile(fp);
Armin Rigo01ab2792004-03-26 15:09:27 +0000735 if (co == NULL)
736 return NULL;
737 if (!PyCode_Check(co)) {
738 PyErr_Format(PyExc_ImportError,
739 "Non-code object in %.200s", cpathname);
740 Py_DECREF(co);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000741 return NULL;
742 }
Guido van Rossum79f25d91997-04-29 20:08:16 +0000743 return (PyCodeObject *)co;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000744}
745
746
747/* Load a module from a compiled file, execute it, and return its
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000748 module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000749
Guido van Rossum79f25d91997-04-29 20:08:16 +0000750static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000751load_compiled_module(char *name, char *cpathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000752{
753 long magic;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000754 PyCodeObject *co;
755 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000756
Guido van Rossum79f25d91997-04-29 20:08:16 +0000757 magic = PyMarshal_ReadLongFromFile(fp);
Guido van Rossum96774c12000-05-01 20:19:08 +0000758 if (magic != pyc_magic) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000759 PyErr_Format(PyExc_ImportError,
760 "Bad magic number in %.200s", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000761 return NULL;
762 }
Guido van Rossum79f25d91997-04-29 20:08:16 +0000763 (void) PyMarshal_ReadLongFromFile(fp);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000764 co = read_compiled_module(cpathname, fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000765 if (co == NULL)
766 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000767 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000768 PySys_WriteStderr("import %s # precompiled from %s\n",
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000769 name, cpathname);
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000770 m = PyImport_ExecCodeModuleEx(name, (PyObject *)co, cpathname);
Guido van Rossum79f25d91997-04-29 20:08:16 +0000771 Py_DECREF(co);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000772
773 return m;
774}
775
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000776/* Parse a source file and return the corresponding code object */
777
Guido van Rossum79f25d91997-04-29 20:08:16 +0000778static PyCodeObject *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000779parse_source_module(const char *pathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000780{
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000781 PyCodeObject *co = NULL;
782 mod_ty mod;
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000783 PyArena *arena = PyArena_New();
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000784
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000785 mod = PyParser_ASTFromFile(fp, pathname, Py_file_input, 0, 0, 0,
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000786 NULL, arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000787 if (mod) {
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000788 co = PyAST_Compile(mod, pathname, NULL, arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000789 }
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000790 PyArena_Free(arena);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000791 return co;
792}
793
794
Guido van Rossum55a83382000-09-20 20:31:38 +0000795/* Helper to open a bytecode file for writing in exclusive mode */
796
797static FILE *
798open_exclusive(char *filename)
799{
800#if defined(O_EXCL)&&defined(O_CREAT)&&defined(O_WRONLY)&&defined(O_TRUNC)
801 /* Use O_EXCL to avoid a race condition when another process tries to
802 write the same file. When that happens, our open() call fails,
803 which is just fine (since it's only a cache).
804 XXX If the file exists and is writable but the directory is not
805 writable, the file will never be written. Oh well.
806 */
807 int fd;
808 (void) unlink(filename);
Tim Peters42c83af2000-09-29 04:03:10 +0000809 fd = open(filename, O_EXCL|O_CREAT|O_WRONLY|O_TRUNC
810#ifdef O_BINARY
811 |O_BINARY /* necessary for Windows */
812#endif
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000813#ifdef __VMS
Martin v. Löwis18e16552006-02-15 17:27:45 +0000814 , 0666, "ctxt=bin", "shr=nil"
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000815#else
Martin v. Löwis18e16552006-02-15 17:27:45 +0000816 , 0666
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000817#endif
Martin v. Löwis18e16552006-02-15 17:27:45 +0000818 );
Guido van Rossum55a83382000-09-20 20:31:38 +0000819 if (fd < 0)
820 return NULL;
821 return fdopen(fd, "wb");
822#else
823 /* Best we can do -- on Windows this can't happen anyway */
824 return fopen(filename, "wb");
825#endif
826}
827
828
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000829/* Write a compiled module to a file, placing the time of last
830 modification of its source into the header.
831 Errors are ignored, if a write error occurs an attempt is made to
832 remove the file. */
833
834static void
Martin v. Löwis18e16552006-02-15 17:27:45 +0000835write_compiled_module(PyCodeObject *co, char *cpathname, time_t mtime)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000836{
837 FILE *fp;
838
Guido van Rossum55a83382000-09-20 20:31:38 +0000839 fp = open_exclusive(cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000840 if (fp == NULL) {
Guido van Rossum79f25d91997-04-29 20:08:16 +0000841 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000842 PySys_WriteStderr(
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000843 "# can't create %s\n", cpathname);
844 return;
845 }
Martin v. Löwisef82d2f2004-06-27 16:51:46 +0000846 PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000847 /* First write a 0 for mtime */
Martin v. Löwisef82d2f2004-06-27 16:51:46 +0000848 PyMarshal_WriteLongToFile(0L, fp, Py_MARSHAL_VERSION);
849 PyMarshal_WriteObjectToFile((PyObject *)co, fp, Py_MARSHAL_VERSION);
Armin Rigo01ab2792004-03-26 15:09:27 +0000850 if (fflush(fp) != 0 || ferror(fp)) {
Guido van Rossum79f25d91997-04-29 20:08:16 +0000851 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000852 PySys_WriteStderr("# can't write %s\n", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000853 /* Don't keep partial file */
854 fclose(fp);
855 (void) unlink(cpathname);
856 return;
857 }
858 /* Now write the true mtime */
859 fseek(fp, 4L, 0);
Martin v. Löwis18e16552006-02-15 17:27:45 +0000860 assert(mtime < LONG_MAX);
Martin v. Löwis725507b2006-03-07 12:08:51 +0000861 PyMarshal_WriteLongToFile((long)mtime, fp, Py_MARSHAL_VERSION);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000862 fflush(fp);
863 fclose(fp);
Guido van Rossum79f25d91997-04-29 20:08:16 +0000864 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000865 PySys_WriteStderr("# wrote %s\n", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000866}
867
868
869/* Load a source module from a given file and return its module
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000870 object WITH INCREMENTED REFERENCE COUNT. If there's a matching
871 byte-compiled file, use that instead. */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000872
Guido van Rossum79f25d91997-04-29 20:08:16 +0000873static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000874load_source_module(char *name, char *pathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000875{
Fred Drake4c82b232000-06-30 16:18:57 +0000876 time_t mtime;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000877 FILE *fpc;
878 char buf[MAXPATHLEN+1];
879 char *cpathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000880 PyCodeObject *co;
881 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000882
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000883 mtime = PyOS_GetLastModificationTime(pathname, fp);
Neal Norwitz708e51a2005-10-03 04:48:15 +0000884 if (mtime == (time_t)(-1)) {
885 PyErr_Format(PyExc_RuntimeError,
886 "unable to get modification time from '%s'",
887 pathname);
Fred Drake4c82b232000-06-30 16:18:57 +0000888 return NULL;
Neal Norwitz708e51a2005-10-03 04:48:15 +0000889 }
Fred Drake4c82b232000-06-30 16:18:57 +0000890#if SIZEOF_TIME_T > 4
891 /* Python's .pyc timestamp handling presumes that the timestamp fits
892 in 4 bytes. This will be fine until sometime in the year 2038,
893 when a 4-byte signed time_t will overflow.
894 */
895 if (mtime >> 32) {
896 PyErr_SetString(PyExc_OverflowError,
Fred Drakec63d3e92001-03-01 06:33:32 +0000897 "modification time overflows a 4 byte field");
Fred Drake4c82b232000-06-30 16:18:57 +0000898 return NULL;
899 }
900#endif
Tim Peters36515e22001-11-18 04:06:29 +0000901 cpathname = make_compiled_pathname(pathname, buf,
Jeremy Hylton37832f02001-04-13 17:50:20 +0000902 (size_t)MAXPATHLEN + 1);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000903 if (cpathname != NULL &&
904 (fpc = check_compiled_module(pathname, mtime, cpathname))) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000905 co = read_compiled_module(cpathname, fpc);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000906 fclose(fpc);
907 if (co == NULL)
908 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000909 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000910 PySys_WriteStderr("import %s # precompiled from %s\n",
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000911 name, cpathname);
Guido van Rossumafd3dae1998-08-25 18:44:34 +0000912 pathname = cpathname;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000913 }
914 else {
915 co = parse_source_module(pathname, fp);
916 if (co == NULL)
917 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +0000918 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000919 PySys_WriteStderr("import %s # from %s\n",
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000920 name, pathname);
921 write_compiled_module(co, cpathname, mtime);
922 }
Guido van Rossumafd3dae1998-08-25 18:44:34 +0000923 m = PyImport_ExecCodeModuleEx(name, (PyObject *)co, pathname);
Guido van Rossum79f25d91997-04-29 20:08:16 +0000924 Py_DECREF(co);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000925
926 return m;
927}
928
929
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000930/* Forward */
Just van Rossum52e14d62002-12-30 22:08:05 +0000931static PyObject *load_module(char *, FILE *, char *, int, PyObject *);
932static struct filedescr *find_module(char *, char *, PyObject *,
933 char *, size_t, FILE **, PyObject **);
Tim Petersdbd9ba62000-07-09 03:09:57 +0000934static struct _frozen *find_frozen(char *name);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000935
936/* Load a package and return its module object WITH INCREMENTED
937 REFERENCE COUNT */
938
939static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000940load_package(char *name, char *pathname)
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000941{
Tim Peters1cd70172004-08-02 03:52:12 +0000942 PyObject *m, *d;
943 PyObject *file = NULL;
944 PyObject *path = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000945 int err;
946 char buf[MAXPATHLEN+1];
947 FILE *fp = NULL;
948 struct filedescr *fdp;
949
950 m = PyImport_AddModule(name);
951 if (m == NULL)
952 return NULL;
Guido van Rossum17fc85f1997-09-06 18:52:03 +0000953 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +0000954 PySys_WriteStderr("import %s # directory %s\n",
Guido van Rossum17fc85f1997-09-06 18:52:03 +0000955 name, pathname);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000956 d = PyModule_GetDict(m);
957 file = PyString_FromString(pathname);
958 if (file == NULL)
Tim Peters1cd70172004-08-02 03:52:12 +0000959 goto error;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000960 path = Py_BuildValue("[O]", file);
Tim Peters1cd70172004-08-02 03:52:12 +0000961 if (path == NULL)
962 goto error;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000963 err = PyDict_SetItemString(d, "__file__", file);
964 if (err == 0)
965 err = PyDict_SetItemString(d, "__path__", path);
Tim Peters1cd70172004-08-02 03:52:12 +0000966 if (err != 0)
967 goto error;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000968 buf[0] = '\0';
Just van Rossum52e14d62002-12-30 22:08:05 +0000969 fdp = find_module(name, "__init__", path, buf, sizeof(buf), &fp, NULL);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000970 if (fdp == NULL) {
971 if (PyErr_ExceptionMatches(PyExc_ImportError)) {
972 PyErr_Clear();
Thomas Heller25653242004-06-07 15:04:10 +0000973 Py_INCREF(m);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000974 }
975 else
976 m = NULL;
977 goto cleanup;
978 }
Just van Rossum52e14d62002-12-30 22:08:05 +0000979 m = load_module(name, fp, buf, fdp->type, NULL);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000980 if (fp != NULL)
981 fclose(fp);
Tim Peters1cd70172004-08-02 03:52:12 +0000982 goto cleanup;
983
984 error:
985 m = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000986 cleanup:
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000987 Py_XDECREF(path);
988 Py_XDECREF(file);
989 return m;
990}
991
992
993/* Helper to test for built-in module */
994
995static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000996is_builtin(char *name)
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000997{
998 int i;
Guido van Rossum771c6c81997-10-31 18:37:24 +0000999 for (i = 0; PyImport_Inittab[i].name != NULL; i++) {
1000 if (strcmp(name, PyImport_Inittab[i].name) == 0) {
1001 if (PyImport_Inittab[i].initfunc == NULL)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001002 return -1;
1003 else
1004 return 1;
1005 }
1006 }
1007 return 0;
1008}
1009
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001010
Just van Rossum52e14d62002-12-30 22:08:05 +00001011/* Return an importer object for a sys.path/pkg.__path__ item 'p',
1012 possibly by fetching it from the path_importer_cache dict. If it
1013 wasn't yet cached, traverse path_hooks until it a hook is found
1014 that can handle the path item. Return None if no hook could;
1015 this tells our caller it should fall back to the builtin
1016 import mechanism. Cache the result in path_importer_cache.
1017 Returns a borrowed reference. */
1018
1019static PyObject *
1020get_path_importer(PyObject *path_importer_cache, PyObject *path_hooks,
1021 PyObject *p)
1022{
1023 PyObject *importer;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001024 Py_ssize_t j, nhooks;
Just van Rossum52e14d62002-12-30 22:08:05 +00001025
1026 /* These conditions are the caller's responsibility: */
1027 assert(PyList_Check(path_hooks));
1028 assert(PyDict_Check(path_importer_cache));
1029
1030 nhooks = PyList_Size(path_hooks);
1031 if (nhooks < 0)
1032 return NULL; /* Shouldn't happen */
1033
1034 importer = PyDict_GetItem(path_importer_cache, p);
1035 if (importer != NULL)
1036 return importer;
1037
1038 /* set path_importer_cache[p] to None to avoid recursion */
1039 if (PyDict_SetItem(path_importer_cache, p, Py_None) != 0)
1040 return NULL;
1041
1042 for (j = 0; j < nhooks; j++) {
1043 PyObject *hook = PyList_GetItem(path_hooks, j);
1044 if (hook == NULL)
1045 return NULL;
Georg Brandl684fd0c2006-05-25 19:15:31 +00001046 importer = PyObject_CallFunctionObjArgs(hook, p, NULL);
Just van Rossum52e14d62002-12-30 22:08:05 +00001047 if (importer != NULL)
1048 break;
1049
1050 if (!PyErr_ExceptionMatches(PyExc_ImportError)) {
1051 return NULL;
1052 }
1053 PyErr_Clear();
1054 }
1055 if (importer == NULL)
1056 importer = Py_None;
1057 else if (importer != Py_None) {
1058 int err = PyDict_SetItem(path_importer_cache, p, importer);
1059 Py_DECREF(importer);
1060 if (err != 0)
1061 return NULL;
1062 }
1063 return importer;
1064}
1065
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001066/* Search the path (default sys.path) for a module. Return the
1067 corresponding filedescr struct, and (via return arguments) the
1068 pathname and an open file. Return NULL if the module is not found. */
1069
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001070#ifdef MS_COREDLL
Thomas Woutersb4bd21c2000-07-22 23:38:01 +00001071extern FILE *PyWin_FindRegisteredModule(const char *, struct filedescr **,
Martin v. Löwis18e16552006-02-15 17:27:45 +00001072 char *, Py_ssize_t);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001073#endif
1074
Martin v. Löwis18e16552006-02-15 17:27:45 +00001075static int case_ok(char *, Py_ssize_t, Py_ssize_t, char *);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001076static int find_init_module(char *); /* Forward */
Just van Rossum52e14d62002-12-30 22:08:05 +00001077static struct filedescr importhookdescr = {"", "", IMP_HOOK};
Guido van Rossum197346f1997-10-31 18:38:52 +00001078
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001079static struct filedescr *
Just van Rossum52e14d62002-12-30 22:08:05 +00001080find_module(char *fullname, char *subname, PyObject *path, char *buf,
1081 size_t buflen, FILE **p_fp, PyObject **p_loader)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001082{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001083 Py_ssize_t i, npath;
Fred Drake4c82b232000-06-30 16:18:57 +00001084 size_t len, namelen;
Guido van Rossum80bb9651996-12-05 23:27:02 +00001085 struct filedescr *fdp = NULL;
Jack Jansenc88da1f2002-05-28 10:58:19 +00001086 char *filemode;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001087 FILE *fp = NULL;
Just van Rossum52e14d62002-12-30 22:08:05 +00001088 PyObject *path_hooks, *path_importer_cache;
Guido van Rossum48a680c2001-03-02 06:34:14 +00001089#ifndef RISCOS
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001090 struct stat statbuf;
Guido van Rossum48a680c2001-03-02 06:34:14 +00001091#endif
Guido van Rossuma5568d31998-03-05 03:45:08 +00001092 static struct filedescr fd_frozen = {"", "", PY_FROZEN};
1093 static struct filedescr fd_builtin = {"", "", C_BUILTIN};
1094 static struct filedescr fd_package = {"", "", PKG_DIRECTORY};
Guido van Rossum0506a431998-08-11 15:07:39 +00001095 char name[MAXPATHLEN+1];
Andrew MacIntyred9400542002-02-26 11:41:34 +00001096#if defined(PYOS_OS2)
1097 size_t saved_len;
1098 size_t saved_namelen;
1099 char *saved_buf = NULL;
1100#endif
Just van Rossum52e14d62002-12-30 22:08:05 +00001101 if (p_loader != NULL)
1102 *p_loader = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001103
Just van Rossum52e14d62002-12-30 22:08:05 +00001104 if (strlen(subname) > MAXPATHLEN) {
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001105 PyErr_SetString(PyExc_OverflowError,
1106 "module name is too long");
Fred Drake4c82b232000-06-30 16:18:57 +00001107 return NULL;
1108 }
Just van Rossum52e14d62002-12-30 22:08:05 +00001109 strcpy(name, subname);
1110
1111 /* sys.meta_path import hook */
1112 if (p_loader != NULL) {
1113 PyObject *meta_path;
1114
1115 meta_path = PySys_GetObject("meta_path");
1116 if (meta_path == NULL || !PyList_Check(meta_path)) {
1117 PyErr_SetString(PyExc_ImportError,
1118 "sys.meta_path must be a list of "
1119 "import hooks");
1120 return NULL;
1121 }
1122 Py_INCREF(meta_path); /* zap guard */
1123 npath = PyList_Size(meta_path);
1124 for (i = 0; i < npath; i++) {
1125 PyObject *loader;
1126 PyObject *hook = PyList_GetItem(meta_path, i);
1127 loader = PyObject_CallMethod(hook, "find_module",
1128 "sO", fullname,
1129 path != NULL ?
1130 path : Py_None);
1131 if (loader == NULL) {
1132 Py_DECREF(meta_path);
1133 return NULL; /* true error */
1134 }
1135 if (loader != Py_None) {
1136 /* a loader was found */
1137 *p_loader = loader;
1138 Py_DECREF(meta_path);
1139 return &importhookdescr;
1140 }
1141 Py_DECREF(loader);
1142 }
1143 Py_DECREF(meta_path);
1144 }
Guido van Rossum0506a431998-08-11 15:07:39 +00001145
1146 if (path != NULL && PyString_Check(path)) {
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001147 /* The only type of submodule allowed inside a "frozen"
1148 package are other frozen modules or packages. */
Guido van Rossum0506a431998-08-11 15:07:39 +00001149 if (PyString_Size(path) + 1 + strlen(name) >= (size_t)buflen) {
1150 PyErr_SetString(PyExc_ImportError,
1151 "full frozen module name too long");
1152 return NULL;
1153 }
1154 strcpy(buf, PyString_AsString(path));
1155 strcat(buf, ".");
1156 strcat(buf, name);
1157 strcpy(name, buf);
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001158 if (find_frozen(name) != NULL) {
1159 strcpy(buf, name);
1160 return &fd_frozen;
1161 }
1162 PyErr_Format(PyExc_ImportError,
1163 "No frozen submodule named %.200s", name);
1164 return NULL;
Guido van Rossum0506a431998-08-11 15:07:39 +00001165 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001166 if (path == NULL) {
1167 if (is_builtin(name)) {
Guido van Rossuma5568d31998-03-05 03:45:08 +00001168 strcpy(buf, name);
1169 return &fd_builtin;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001170 }
Greg Ward201baee2001-10-04 14:52:06 +00001171 if ((find_frozen(name)) != NULL) {
Guido van Rossuma5568d31998-03-05 03:45:08 +00001172 strcpy(buf, name);
1173 return &fd_frozen;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001174 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001175
Guido van Rossumac279101996-08-22 23:10:58 +00001176#ifdef MS_COREDLL
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001177 fp = PyWin_FindRegisteredModule(name, &fdp, buf, buflen);
1178 if (fp != NULL) {
1179 *p_fp = fp;
1180 return fdp;
1181 }
Guido van Rossuma5a3db71996-04-09 02:39:59 +00001182#endif
Guido van Rossuma5568d31998-03-05 03:45:08 +00001183 path = PySys_GetObject("path");
1184 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00001185 if (path == NULL || !PyList_Check(path)) {
1186 PyErr_SetString(PyExc_ImportError,
Guido van Rossuma5568d31998-03-05 03:45:08 +00001187 "sys.path must be a list of directory names");
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001188 return NULL;
1189 }
Just van Rossum52e14d62002-12-30 22:08:05 +00001190
1191 path_hooks = PySys_GetObject("path_hooks");
1192 if (path_hooks == NULL || !PyList_Check(path_hooks)) {
1193 PyErr_SetString(PyExc_ImportError,
1194 "sys.path_hooks must be a list of "
1195 "import hooks");
1196 return NULL;
1197 }
1198 path_importer_cache = PySys_GetObject("path_importer_cache");
1199 if (path_importer_cache == NULL ||
1200 !PyDict_Check(path_importer_cache)) {
1201 PyErr_SetString(PyExc_ImportError,
1202 "sys.path_importer_cache must be a dict");
1203 return NULL;
1204 }
1205
Guido van Rossum79f25d91997-04-29 20:08:16 +00001206 npath = PyList_Size(path);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001207 namelen = strlen(name);
1208 for (i = 0; i < npath; i++) {
Walter Dörwald3430d702002-06-17 10:43:59 +00001209 PyObject *copy = NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001210 PyObject *v = PyList_GetItem(path, i);
Walter Dörwald3430d702002-06-17 10:43:59 +00001211#ifdef Py_USING_UNICODE
1212 if (PyUnicode_Check(v)) {
1213 copy = PyUnicode_Encode(PyUnicode_AS_UNICODE(v),
1214 PyUnicode_GET_SIZE(v), Py_FileSystemDefaultEncoding, NULL);
1215 if (copy == NULL)
1216 return NULL;
1217 v = copy;
1218 }
1219 else
1220#endif
Guido van Rossum79f25d91997-04-29 20:08:16 +00001221 if (!PyString_Check(v))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001222 continue;
Neal Norwitz2aa9a5d2006-03-20 01:53:23 +00001223 len = PyString_GET_SIZE(v);
Walter Dörwald3430d702002-06-17 10:43:59 +00001224 if (len + 2 + namelen + MAXSUFFIXSIZE >= buflen) {
1225 Py_XDECREF(copy);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001226 continue; /* Too long */
Walter Dörwald3430d702002-06-17 10:43:59 +00001227 }
Neal Norwitz2aa9a5d2006-03-20 01:53:23 +00001228 strcpy(buf, PyString_AS_STRING(v));
Walter Dörwald3430d702002-06-17 10:43:59 +00001229 if (strlen(buf) != len) {
1230 Py_XDECREF(copy);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001231 continue; /* v contains '\0' */
Walter Dörwald3430d702002-06-17 10:43:59 +00001232 }
Just van Rossum52e14d62002-12-30 22:08:05 +00001233
1234 /* sys.path_hooks import hook */
1235 if (p_loader != NULL) {
1236 PyObject *importer;
1237
1238 importer = get_path_importer(path_importer_cache,
1239 path_hooks, v);
1240 if (importer == NULL)
1241 return NULL;
1242 /* Note: importer is a borrowed reference */
Georg Brandlf4ef1162006-05-26 18:03:31 +00001243 if (importer == Py_False) {
1244 /* Cached as not being a valid dir. */
1245 Py_XDECREF(copy);
1246 continue;
1247 }
1248 else if (importer == Py_True) {
1249 /* Cached as being a valid dir, so just
1250 * continue below. */
1251 }
1252 else if (importer == Py_None) {
1253 /* No importer was found, so it has to be a file.
1254 * Check if the directory is valid. */
1255#ifdef HAVE_STAT
1256 if (stat(buf, &statbuf) != 0) {
1257 /* Directory does not exist. */
1258 PyDict_SetItem(path_importer_cache,
1259 v, Py_False);
1260 Py_XDECREF(copy);
1261 continue;
1262 } else {
1263 PyDict_SetItem(path_importer_cache,
1264 v, Py_True);
1265 }
1266#endif
1267 }
1268 else {
1269 /* A real import hook importer was found. */
Just van Rossum52e14d62002-12-30 22:08:05 +00001270 PyObject *loader;
1271 loader = PyObject_CallMethod(importer,
1272 "find_module",
1273 "s", fullname);
1274 if (loader == NULL)
1275 return NULL; /* error */
1276 if (loader != Py_None) {
1277 /* a loader was found */
1278 *p_loader = loader;
1279 return &importhookdescr;
1280 }
1281 Py_DECREF(loader);
Georg Brandlf4ef1162006-05-26 18:03:31 +00001282 Py_XDECREF(copy);
1283 continue;
Just van Rossum52e14d62002-12-30 22:08:05 +00001284 }
Just van Rossum52e14d62002-12-30 22:08:05 +00001285 }
Georg Brandlf4ef1162006-05-26 18:03:31 +00001286 /* no hook was found, use builtin import */
Just van Rossum52e14d62002-12-30 22:08:05 +00001287
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001288 if (len > 0 && buf[len-1] != SEP
1289#ifdef ALTSEP
1290 && buf[len-1] != ALTSEP
1291#endif
1292 )
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001293 buf[len++] = SEP;
Guido van Rossum215c3402000-11-13 17:26:32 +00001294 strcpy(buf+len, name);
1295 len += namelen;
Tim Peters50d8d372001-02-28 05:34:27 +00001296
1297 /* Check for package import (buf holds a directory name,
1298 and there's an __init__ module in that directory */
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001299#ifdef HAVE_STAT
Walter Dörwald3430d702002-06-17 10:43:59 +00001300 if (stat(buf, &statbuf) == 0 && /* it exists */
1301 S_ISDIR(statbuf.st_mode) && /* it's a directory */
Thomas Wouters9df4e6f2006-04-27 23:13:20 +00001302 case_ok(buf, len, namelen, name)) { /* case matches */
1303 if (find_init_module(buf)) { /* and has __init__.py */
1304 Py_XDECREF(copy);
1305 return &fd_package;
1306 }
1307 else {
1308 char warnstr[MAXPATHLEN+80];
1309 sprintf(warnstr, "Not importing directory "
1310 "'%.*s': missing __init__.py",
1311 MAXPATHLEN, buf);
1312 if (PyErr_Warn(PyExc_ImportWarning,
1313 warnstr)) {
1314 Py_XDECREF(copy);
1315 return NULL;
1316 }
1317 }
Walter Dörwald3430d702002-06-17 10:43:59 +00001318 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001319#else
1320 /* XXX How are you going to test for directories? */
Guido van Rossum48a680c2001-03-02 06:34:14 +00001321#ifdef RISCOS
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001322 if (isdir(buf) &&
Walter Dörwald3430d702002-06-17 10:43:59 +00001323 case_ok(buf, len, namelen, name)) {
Thomas Wouters9df4e6f2006-04-27 23:13:20 +00001324 if (find_init_module(buf)) {
1325 Py_XDECREF(copy);
1326 return &fd_package;
1327 }
1328 else {
1329 char warnstr[MAXPATHLEN+80];
1330 sprintf(warnstr, "Not importing directory "
1331 "'%.*s': missing __init__.py",
1332 MAXPATHLEN, buf);
1333 if (PyErr_Warn(PyExc_ImportWarning,
1334 warnstr)) {
1335 Py_XDECREF(copy);
1336 return NULL;
1337 }
Walter Dörwald3430d702002-06-17 10:43:59 +00001338 }
Guido van Rossum48a680c2001-03-02 06:34:14 +00001339#endif
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001340#endif
Andrew MacIntyred9400542002-02-26 11:41:34 +00001341#if defined(PYOS_OS2)
1342 /* take a snapshot of the module spec for restoration
1343 * after the 8 character DLL hackery
1344 */
1345 saved_buf = strdup(buf);
1346 saved_len = len;
1347 saved_namelen = namelen;
1348#endif /* PYOS_OS2 */
Guido van Rossum79f25d91997-04-29 20:08:16 +00001349 for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
Andrew MacIntyred9400542002-02-26 11:41:34 +00001350#if defined(PYOS_OS2)
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001351 /* OS/2 limits DLLs to 8 character names (w/o
1352 extension)
Andrew MacIntyred9400542002-02-26 11:41:34 +00001353 * so if the name is longer than that and its a
1354 * dynamically loaded module we're going to try,
1355 * truncate the name before trying
1356 */
Just van Rossum52e14d62002-12-30 22:08:05 +00001357 if (strlen(subname) > 8) {
Andrew MacIntyred9400542002-02-26 11:41:34 +00001358 /* is this an attempt to load a C extension? */
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001359 const struct filedescr *scan;
1360 scan = _PyImport_DynLoadFiletab;
Andrew MacIntyred9400542002-02-26 11:41:34 +00001361 while (scan->suffix != NULL) {
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001362 if (!strcmp(scan->suffix, fdp->suffix))
Andrew MacIntyred9400542002-02-26 11:41:34 +00001363 break;
1364 else
1365 scan++;
1366 }
1367 if (scan->suffix != NULL) {
1368 /* yes, so truncate the name */
1369 namelen = 8;
Just van Rossum52e14d62002-12-30 22:08:05 +00001370 len -= strlen(subname) - namelen;
Andrew MacIntyred9400542002-02-26 11:41:34 +00001371 buf[len] = '\0';
1372 }
1373 }
1374#endif /* PYOS_OS2 */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001375 strcpy(buf+len, fdp->suffix);
Guido van Rossum79f25d91997-04-29 20:08:16 +00001376 if (Py_VerboseFlag > 1)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001377 PySys_WriteStderr("# trying %s\n", buf);
Jack Jansenc88da1f2002-05-28 10:58:19 +00001378 filemode = fdp->mode;
Tim Peters86c7d2f2004-08-01 23:24:21 +00001379 if (filemode[0] == 'U')
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001380 filemode = "r" PY_STDIOTEXTMODE;
Jack Jansenc88da1f2002-05-28 10:58:19 +00001381 fp = fopen(buf, filemode);
Tim Peters50d8d372001-02-28 05:34:27 +00001382 if (fp != NULL) {
1383 if (case_ok(buf, len, namelen, name))
1384 break;
1385 else { /* continue search */
1386 fclose(fp);
1387 fp = NULL;
Barry Warsaw914a0b12001-02-02 19:12:16 +00001388 }
Barry Warsaw914a0b12001-02-02 19:12:16 +00001389 }
Andrew MacIntyred9400542002-02-26 11:41:34 +00001390#if defined(PYOS_OS2)
1391 /* restore the saved snapshot */
1392 strcpy(buf, saved_buf);
1393 len = saved_len;
1394 namelen = saved_namelen;
1395#endif
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001396 }
Andrew MacIntyred9400542002-02-26 11:41:34 +00001397#if defined(PYOS_OS2)
1398 /* don't need/want the module name snapshot anymore */
1399 if (saved_buf)
1400 {
1401 free(saved_buf);
1402 saved_buf = NULL;
1403 }
1404#endif
Walter Dörwald3430d702002-06-17 10:43:59 +00001405 Py_XDECREF(copy);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001406 if (fp != NULL)
1407 break;
1408 }
1409 if (fp == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001410 PyErr_Format(PyExc_ImportError,
1411 "No module named %.200s", name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001412 return NULL;
1413 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001414 *p_fp = fp;
1415 return fdp;
1416}
1417
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +00001418/* Helpers for main.c
1419 * Find the source file corresponding to a named module
1420 */
1421struct filedescr *
1422_PyImport_FindModule(const char *name, PyObject *path, char *buf,
1423 size_t buflen, FILE **p_fp, PyObject **p_loader)
1424{
1425 return find_module((char *) name, (char *) name, path,
1426 buf, buflen, p_fp, p_loader);
1427}
1428
1429PyAPI_FUNC(int) _PyImport_IsScript(struct filedescr * fd)
1430{
1431 return fd->type == PY_SOURCE || fd->type == PY_COMPILED;
1432}
1433
Martin v. Löwis18e16552006-02-15 17:27:45 +00001434/* case_ok(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name)
Tim Petersd1e87a82001-03-01 18:12:00 +00001435 * The arguments here are tricky, best shown by example:
1436 * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0
1437 * ^ ^ ^ ^
1438 * |--------------------- buf ---------------------|
1439 * |------------------- len ------------------|
1440 * |------ name -------|
1441 * |----- namelen -----|
1442 * buf is the full path, but len only counts up to (& exclusive of) the
1443 * extension. name is the module name, also exclusive of extension.
1444 *
1445 * We've already done a successful stat() or fopen() on buf, so know that
1446 * there's some match, possibly case-insensitive.
1447 *
Tim Peters50d8d372001-02-28 05:34:27 +00001448 * case_ok() is to return 1 if there's a case-sensitive match for
1449 * name, else 0. case_ok() is also to return 1 if envar PYTHONCASEOK
1450 * exists.
Tim Petersd1e87a82001-03-01 18:12:00 +00001451 *
Tim Peters50d8d372001-02-28 05:34:27 +00001452 * case_ok() is used to implement case-sensitive import semantics even
1453 * on platforms with case-insensitive filesystems. It's trivial to implement
1454 * for case-sensitive filesystems. It's pretty much a cross-platform
1455 * nightmare for systems with case-insensitive filesystems.
1456 */
Guido van Rossum0980bd91998-02-13 17:18:36 +00001457
Tim Peters50d8d372001-02-28 05:34:27 +00001458/* First we may need a pile of platform-specific header files; the sequence
1459 * of #if's here should match the sequence in the body of case_ok().
1460 */
Jason Tishler7961aa62005-05-20 00:56:54 +00001461#if defined(MS_WINDOWS)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001462#include <windows.h>
Guido van Rossum4c3f57c2001-01-10 20:40:46 +00001463
Tim Peters50d8d372001-02-28 05:34:27 +00001464#elif defined(DJGPP)
1465#include <dir.h>
1466
Jason Tishler7961aa62005-05-20 00:56:54 +00001467#elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H)
Tim Peters430f5d42001-03-01 01:30:56 +00001468#include <sys/types.h>
1469#include <dirent.h>
1470
Andrew MacIntyred9400542002-02-26 11:41:34 +00001471#elif defined(PYOS_OS2)
1472#define INCL_DOS
1473#define INCL_DOSERRORS
1474#define INCL_NOPMAPI
1475#include <os2.h>
1476
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001477#elif defined(RISCOS)
1478#include "oslib/osfscontrol.h"
Tim Peters50d8d372001-02-28 05:34:27 +00001479#endif
1480
Guido van Rossum0980bd91998-02-13 17:18:36 +00001481static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00001482case_ok(char *buf, Py_ssize_t len, Py_ssize_t namelen, char *name)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001483{
Tim Peters50d8d372001-02-28 05:34:27 +00001484/* Pick a platform-specific implementation; the sequence of #if's here should
1485 * match the sequence just above.
1486 */
1487
Jason Tishler7961aa62005-05-20 00:56:54 +00001488/* MS_WINDOWS */
1489#if defined(MS_WINDOWS)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001490 WIN32_FIND_DATA data;
1491 HANDLE h;
Tim Peters50d8d372001-02-28 05:34:27 +00001492
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001493 if (Py_GETENV("PYTHONCASEOK") != NULL)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001494 return 1;
Tim Peters50d8d372001-02-28 05:34:27 +00001495
Guido van Rossum0980bd91998-02-13 17:18:36 +00001496 h = FindFirstFile(buf, &data);
1497 if (h == INVALID_HANDLE_VALUE) {
1498 PyErr_Format(PyExc_NameError,
1499 "Can't find file for module %.100s\n(filename %.300s)",
1500 name, buf);
1501 return 0;
1502 }
1503 FindClose(h);
Tim Peters50d8d372001-02-28 05:34:27 +00001504 return strncmp(data.cFileName, name, namelen) == 0;
1505
1506/* DJGPP */
1507#elif defined(DJGPP)
1508 struct ffblk ffblk;
1509 int done;
1510
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001511 if (Py_GETENV("PYTHONCASEOK") != NULL)
Guido van Rossum323bf5e1998-06-24 03:54:06 +00001512 return 1;
Tim Peters50d8d372001-02-28 05:34:27 +00001513
1514 done = findfirst(buf, &ffblk, FA_ARCH|FA_RDONLY|FA_HIDDEN|FA_DIREC);
1515 if (done) {
Guido van Rossum0980bd91998-02-13 17:18:36 +00001516 PyErr_Format(PyExc_NameError,
Tim Peters50d8d372001-02-28 05:34:27 +00001517 "Can't find file for module %.100s\n(filename %.300s)",
Guido van Rossum0980bd91998-02-13 17:18:36 +00001518 name, buf);
1519 return 0;
1520 }
Tim Peters50d8d372001-02-28 05:34:27 +00001521 return strncmp(ffblk.ff_name, name, namelen) == 0;
Guido van Rossum0980bd91998-02-13 17:18:36 +00001522
Jason Tishler7961aa62005-05-20 00:56:54 +00001523/* new-fangled macintosh (macosx) or Cygwin */
1524#elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H)
Tim Peters430f5d42001-03-01 01:30:56 +00001525 DIR *dirp;
1526 struct dirent *dp;
Tim Petersd1e87a82001-03-01 18:12:00 +00001527 char dirname[MAXPATHLEN + 1];
1528 const int dirlen = len - namelen - 1; /* don't want trailing SEP */
Tim Peters430f5d42001-03-01 01:30:56 +00001529
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001530 if (Py_GETENV("PYTHONCASEOK") != NULL)
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001531 return 1;
1532
Tim Petersd1e87a82001-03-01 18:12:00 +00001533 /* Copy the dir component into dirname; substitute "." if empty */
1534 if (dirlen <= 0) {
1535 dirname[0] = '.';
1536 dirname[1] = '\0';
Tim Peters430f5d42001-03-01 01:30:56 +00001537 }
1538 else {
Tim Petersd1e87a82001-03-01 18:12:00 +00001539 assert(dirlen <= MAXPATHLEN);
1540 memcpy(dirname, buf, dirlen);
1541 dirname[dirlen] = '\0';
Tim Peters430f5d42001-03-01 01:30:56 +00001542 }
1543 /* Open the directory and search the entries for an exact match. */
Tim Petersd1e87a82001-03-01 18:12:00 +00001544 dirp = opendir(dirname);
Tim Peters430f5d42001-03-01 01:30:56 +00001545 if (dirp) {
Tim Peters677898a2001-03-02 03:28:03 +00001546 char *nameWithExt = buf + len - namelen;
Tim Peters430f5d42001-03-01 01:30:56 +00001547 while ((dp = readdir(dirp)) != NULL) {
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001548 const int thislen =
Tim Peters430f5d42001-03-01 01:30:56 +00001549#ifdef _DIRENT_HAVE_D_NAMELEN
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001550 dp->d_namlen;
Tim Peters430f5d42001-03-01 01:30:56 +00001551#else
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001552 strlen(dp->d_name);
Tim Peters430f5d42001-03-01 01:30:56 +00001553#endif
Tim Petersd1e87a82001-03-01 18:12:00 +00001554 if (thislen >= namelen &&
Tim Peters677898a2001-03-02 03:28:03 +00001555 strcmp(dp->d_name, nameWithExt) == 0) {
Tim Peters430f5d42001-03-01 01:30:56 +00001556 (void)closedir(dirp);
1557 return 1; /* Found */
1558 }
1559 }
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001560 (void)closedir(dirp);
Tim Peters430f5d42001-03-01 01:30:56 +00001561 }
Tim Peters430f5d42001-03-01 01:30:56 +00001562 return 0 ; /* Not found */
Tim Peters430f5d42001-03-01 01:30:56 +00001563
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001564/* RISC OS */
1565#elif defined(RISCOS)
1566 char canon[MAXPATHLEN+1]; /* buffer for the canonical form of the path */
1567 char buf2[MAXPATHLEN+2];
1568 char *nameWithExt = buf+len-namelen;
1569 int canonlen;
1570 os_error *e;
1571
1572 if (Py_GETENV("PYTHONCASEOK") != NULL)
1573 return 1;
1574
1575 /* workaround:
1576 append wildcard, otherwise case of filename wouldn't be touched */
1577 strcpy(buf2, buf);
1578 strcat(buf2, "*");
1579
1580 e = xosfscontrol_canonicalise_path(buf2,canon,0,0,MAXPATHLEN+1,&canonlen);
1581 canonlen = MAXPATHLEN+1-canonlen;
1582 if (e || canonlen<=0 || canonlen>(MAXPATHLEN+1) )
1583 return 0;
1584 if (strcmp(nameWithExt, canon+canonlen-strlen(nameWithExt))==0)
1585 return 1; /* match */
1586
1587 return 0;
1588
Andrew MacIntyred9400542002-02-26 11:41:34 +00001589/* OS/2 */
1590#elif defined(PYOS_OS2)
1591 HDIR hdir = 1;
1592 ULONG srchcnt = 1;
1593 FILEFINDBUF3 ffbuf;
1594 APIRET rc;
1595
1596 if (getenv("PYTHONCASEOK") != NULL)
1597 return 1;
1598
1599 rc = DosFindFirst(buf,
1600 &hdir,
1601 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
1602 &ffbuf, sizeof(ffbuf),
1603 &srchcnt,
1604 FIL_STANDARD);
1605 if (rc != NO_ERROR)
1606 return 0;
1607 return strncmp(ffbuf.achName, name, namelen) == 0;
1608
Tim Peters50d8d372001-02-28 05:34:27 +00001609/* assuming it's a case-sensitive filesystem, so there's nothing to do! */
1610#else
Guido van Rossum0980bd91998-02-13 17:18:36 +00001611 return 1;
Guido van Rossum0980bd91998-02-13 17:18:36 +00001612
Guido van Rossum4d1b3b91998-02-13 23:27:59 +00001613#endif
Tim Peters50d8d372001-02-28 05:34:27 +00001614}
Guido van Rossum4d1b3b91998-02-13 23:27:59 +00001615
Guido van Rossum0980bd91998-02-13 17:18:36 +00001616
Guido van Rossum197346f1997-10-31 18:38:52 +00001617#ifdef HAVE_STAT
1618/* Helper to look for __init__.py or __init__.py[co] in potential package */
1619static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001620find_init_module(char *buf)
Guido van Rossum197346f1997-10-31 18:38:52 +00001621{
Tim Peters0f9431f2001-07-05 03:47:53 +00001622 const size_t save_len = strlen(buf);
Fred Drake4c82b232000-06-30 16:18:57 +00001623 size_t i = save_len;
Tim Peters0f9431f2001-07-05 03:47:53 +00001624 char *pname; /* pointer to start of __init__ */
Guido van Rossum197346f1997-10-31 18:38:52 +00001625 struct stat statbuf;
1626
Tim Peters0f9431f2001-07-05 03:47:53 +00001627/* For calling case_ok(buf, len, namelen, name):
1628 * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0
1629 * ^ ^ ^ ^
1630 * |--------------------- buf ---------------------|
1631 * |------------------- len ------------------|
1632 * |------ name -------|
1633 * |----- namelen -----|
1634 */
Guido van Rossum197346f1997-10-31 18:38:52 +00001635 if (save_len + 13 >= MAXPATHLEN)
1636 return 0;
1637 buf[i++] = SEP;
Tim Peters0f9431f2001-07-05 03:47:53 +00001638 pname = buf + i;
1639 strcpy(pname, "__init__.py");
Guido van Rossum197346f1997-10-31 18:38:52 +00001640 if (stat(buf, &statbuf) == 0) {
Tim Peters0f9431f2001-07-05 03:47:53 +00001641 if (case_ok(buf,
1642 save_len + 9, /* len("/__init__") */
1643 8, /* len("__init__") */
1644 pname)) {
1645 buf[save_len] = '\0';
1646 return 1;
1647 }
Guido van Rossum197346f1997-10-31 18:38:52 +00001648 }
Tim Peters0f9431f2001-07-05 03:47:53 +00001649 i += strlen(pname);
1650 strcpy(buf+i, Py_OptimizeFlag ? "o" : "c");
Guido van Rossum197346f1997-10-31 18:38:52 +00001651 if (stat(buf, &statbuf) == 0) {
Tim Peters0f9431f2001-07-05 03:47:53 +00001652 if (case_ok(buf,
1653 save_len + 9, /* len("/__init__") */
1654 8, /* len("__init__") */
1655 pname)) {
1656 buf[save_len] = '\0';
1657 return 1;
1658 }
Guido van Rossum197346f1997-10-31 18:38:52 +00001659 }
1660 buf[save_len] = '\0';
1661 return 0;
1662}
Guido van Rossum48a680c2001-03-02 06:34:14 +00001663
1664#else
1665
1666#ifdef RISCOS
1667static int
1668find_init_module(buf)
1669 char *buf;
1670{
1671 int save_len = strlen(buf);
1672 int i = save_len;
1673
1674 if (save_len + 13 >= MAXPATHLEN)
1675 return 0;
1676 buf[i++] = SEP;
1677 strcpy(buf+i, "__init__/py");
1678 if (isfile(buf)) {
1679 buf[save_len] = '\0';
1680 return 1;
1681 }
1682
1683 if (Py_OptimizeFlag)
1684 strcpy(buf+i, "o");
1685 else
1686 strcpy(buf+i, "c");
1687 if (isfile(buf)) {
1688 buf[save_len] = '\0';
1689 return 1;
1690 }
1691 buf[save_len] = '\0';
1692 return 0;
1693}
1694#endif /*RISCOS*/
1695
Guido van Rossum197346f1997-10-31 18:38:52 +00001696#endif /* HAVE_STAT */
1697
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001698
Tim Petersdbd9ba62000-07-09 03:09:57 +00001699static int init_builtin(char *); /* Forward */
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001700
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001701/* Load an external module using the default search path and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001702 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001703
Guido van Rossum79f25d91997-04-29 20:08:16 +00001704static PyObject *
Just van Rossum52e14d62002-12-30 22:08:05 +00001705load_module(char *name, FILE *fp, char *buf, int type, PyObject *loader)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001706{
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001707 PyObject *modules;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001708 PyObject *m;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001709 int err;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001710
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001711 /* First check that there's an open file (if we need one) */
1712 switch (type) {
1713 case PY_SOURCE:
1714 case PY_COMPILED:
1715 if (fp == NULL) {
1716 PyErr_Format(PyExc_ValueError,
1717 "file object required for import (type code %d)",
1718 type);
1719 return NULL;
1720 }
1721 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001722
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001723 switch (type) {
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001724
1725 case PY_SOURCE:
1726 m = load_source_module(name, buf, fp);
1727 break;
1728
1729 case PY_COMPILED:
1730 m = load_compiled_module(name, buf, fp);
1731 break;
1732
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001733#ifdef HAVE_DYNAMIC_LOADING
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001734 case C_EXTENSION:
Guido van Rossum79f25d91997-04-29 20:08:16 +00001735 m = _PyImport_LoadDynamicModule(name, buf, fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001736 break;
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001737#endif
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001738
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001739 case PKG_DIRECTORY:
1740 m = load_package(name, buf);
1741 break;
1742
1743 case C_BUILTIN:
1744 case PY_FROZEN:
Guido van Rossuma5568d31998-03-05 03:45:08 +00001745 if (buf != NULL && buf[0] != '\0')
1746 name = buf;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001747 if (type == C_BUILTIN)
1748 err = init_builtin(name);
1749 else
1750 err = PyImport_ImportFrozenModule(name);
1751 if (err < 0)
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001752 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001753 if (err == 0) {
1754 PyErr_Format(PyExc_ImportError,
1755 "Purported %s module %.200s not found",
1756 type == C_BUILTIN ?
1757 "builtin" : "frozen",
1758 name);
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001759 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001760 }
1761 modules = PyImport_GetModuleDict();
1762 m = PyDict_GetItemString(modules, name);
1763 if (m == NULL) {
1764 PyErr_Format(
1765 PyExc_ImportError,
1766 "%s module %.200s not properly initialized",
1767 type == C_BUILTIN ?
1768 "builtin" : "frozen",
1769 name);
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001770 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001771 }
1772 Py_INCREF(m);
1773 break;
1774
Just van Rossum52e14d62002-12-30 22:08:05 +00001775 case IMP_HOOK: {
1776 if (loader == NULL) {
1777 PyErr_SetString(PyExc_ImportError,
1778 "import hook without loader");
1779 return NULL;
1780 }
1781 m = PyObject_CallMethod(loader, "load_module", "s", name);
1782 break;
1783 }
1784
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001785 default:
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001786 PyErr_Format(PyExc_ImportError,
1787 "Don't know how to import %.200s (type code %d)",
1788 name, type);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001789 m = NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001790
1791 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001792
1793 return m;
1794}
1795
1796
1797/* Initialize a built-in module.
1798 Return 1 for succes, 0 if the module is not found, and -1 with
1799 an exception set if the initialization failed. */
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001800
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001801static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001802init_builtin(char *name)
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001803{
Guido van Rossum25ce5661997-08-02 03:10:38 +00001804 struct _inittab *p;
Guido van Rossum25ce5661997-08-02 03:10:38 +00001805
Greg Ward201baee2001-10-04 14:52:06 +00001806 if (_PyImport_FindExtension(name, name) != NULL)
Guido van Rossum25ce5661997-08-02 03:10:38 +00001807 return 1;
1808
Guido van Rossum771c6c81997-10-31 18:37:24 +00001809 for (p = PyImport_Inittab; p->name != NULL; p++) {
Guido van Rossum25ce5661997-08-02 03:10:38 +00001810 if (strcmp(name, p->name) == 0) {
1811 if (p->initfunc == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001812 PyErr_Format(PyExc_ImportError,
1813 "Cannot re-init internal module %.200s",
1814 name);
Guido van Rossum74e6a111994-08-29 12:54:38 +00001815 return -1;
1816 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00001817 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001818 PySys_WriteStderr("import %s # builtin\n", name);
Guido van Rossum25ce5661997-08-02 03:10:38 +00001819 (*p->initfunc)();
Guido van Rossum79f25d91997-04-29 20:08:16 +00001820 if (PyErr_Occurred())
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001821 return -1;
Guido van Rossum25ce5661997-08-02 03:10:38 +00001822 if (_PyImport_FixupExtension(name, name) == NULL)
1823 return -1;
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001824 return 1;
1825 }
1826 }
1827 return 0;
1828}
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001829
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001830
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001831/* Frozen modules */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001832
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001833static struct _frozen *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001834find_frozen(char *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001835{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001836 struct _frozen *p;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001837
Guido van Rossum79f25d91997-04-29 20:08:16 +00001838 for (p = PyImport_FrozenModules; ; p++) {
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001839 if (p->name == NULL)
1840 return NULL;
1841 if (strcmp(p->name, name) == 0)
1842 break;
1843 }
1844 return p;
1845}
1846
Guido van Rossum79f25d91997-04-29 20:08:16 +00001847static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001848get_frozen_object(char *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001849{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001850 struct _frozen *p = find_frozen(name);
Guido van Rossuma5568d31998-03-05 03:45:08 +00001851 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001852
1853 if (p == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001854 PyErr_Format(PyExc_ImportError,
1855 "No such frozen object named %.200s",
1856 name);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001857 return NULL;
1858 }
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001859 if (p->code == NULL) {
1860 PyErr_Format(PyExc_ImportError,
1861 "Excluded frozen object named %.200s",
1862 name);
1863 return NULL;
1864 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001865 size = p->size;
1866 if (size < 0)
1867 size = -size;
1868 return PyMarshal_ReadObjectFromString((char *)p->code, size);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001869}
1870
1871/* Initialize a frozen module.
1872 Return 1 for succes, 0 if the module is not found, and -1 with
1873 an exception set if the initialization failed.
1874 This function is also used from frozenmain.c */
Guido van Rossum0b344901995-02-07 15:35:27 +00001875
1876int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001877PyImport_ImportFrozenModule(char *name)
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001878{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001879 struct _frozen *p = find_frozen(name);
Guido van Rossum79f25d91997-04-29 20:08:16 +00001880 PyObject *co;
1881 PyObject *m;
Guido van Rossuma5568d31998-03-05 03:45:08 +00001882 int ispackage;
1883 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001884
1885 if (p == NULL)
1886 return 0;
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001887 if (p->code == NULL) {
1888 PyErr_Format(PyExc_ImportError,
1889 "Excluded frozen object named %.200s",
1890 name);
1891 return -1;
1892 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001893 size = p->size;
1894 ispackage = (size < 0);
1895 if (ispackage)
1896 size = -size;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001897 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001898 PySys_WriteStderr("import %s # frozen%s\n",
Guido van Rossuma5568d31998-03-05 03:45:08 +00001899 name, ispackage ? " package" : "");
1900 co = PyMarshal_ReadObjectFromString((char *)p->code, size);
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001901 if (co == NULL)
1902 return -1;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001903 if (!PyCode_Check(co)) {
1904 Py_DECREF(co);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001905 PyErr_Format(PyExc_TypeError,
1906 "frozen object %.200s is not a code object",
1907 name);
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001908 return -1;
1909 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001910 if (ispackage) {
1911 /* Set __path__ to the package name */
1912 PyObject *d, *s;
1913 int err;
1914 m = PyImport_AddModule(name);
1915 if (m == NULL)
1916 return -1;
1917 d = PyModule_GetDict(m);
1918 s = PyString_InternFromString(name);
1919 if (s == NULL)
1920 return -1;
1921 err = PyDict_SetItemString(d, "__path__", s);
1922 Py_DECREF(s);
1923 if (err != 0)
1924 return err;
1925 }
Guido van Rossume32bf6e1998-02-11 05:53:02 +00001926 m = PyImport_ExecCodeModuleEx(name, co, "<frozen>");
Guido van Rossum79f25d91997-04-29 20:08:16 +00001927 Py_DECREF(co);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001928 if (m == NULL)
1929 return -1;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001930 Py_DECREF(m);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001931 return 1;
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001932}
Guido van Rossum74e6a111994-08-29 12:54:38 +00001933
1934
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001935/* Import a module, either built-in, frozen, or external, and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001936 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum74e6a111994-08-29 12:54:38 +00001937
Guido van Rossum79f25d91997-04-29 20:08:16 +00001938PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001939PyImport_ImportModule(const char *name)
Guido van Rossum74e6a111994-08-29 12:54:38 +00001940{
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00001941 PyObject *pname;
1942 PyObject *result;
1943
1944 pname = PyString_FromString(name);
Neal Norwitza11e4c12003-03-23 14:31:01 +00001945 if (pname == NULL)
1946 return NULL;
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00001947 result = PyImport_Import(pname);
1948 Py_DECREF(pname);
1949 return result;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001950}
1951
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001952/* Forward declarations for helper routines */
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001953static PyObject *get_parent(PyObject *globals, char *buf,
1954 Py_ssize_t *p_buflen, int level);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001955static PyObject *load_next(PyObject *mod, PyObject *altmod,
Martin v. Löwis18e16552006-02-15 17:27:45 +00001956 char **p_name, char *buf, Py_ssize_t *p_buflen);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001957static int mark_miss(char *name);
1958static int ensure_fromlist(PyObject *mod, PyObject *fromlist,
Martin v. Löwis18e16552006-02-15 17:27:45 +00001959 char *buf, Py_ssize_t buflen, int recursive);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001960static PyObject * import_submodule(PyObject *mod, char *name, char *fullname);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001961
1962/* The Magnum Opus of dotted-name import :-) */
1963
Guido van Rossum75acc9c1998-03-03 22:26:50 +00001964static PyObject *
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001965import_module_level(char *name, PyObject *globals, PyObject *locals,
1966 PyObject *fromlist, int level)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001967{
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001968 char buf[MAXPATHLEN+1];
Martin v. Löwis18e16552006-02-15 17:27:45 +00001969 Py_ssize_t buflen = 0;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001970 PyObject *parent, *head, *next, *tail;
1971
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001972 parent = get_parent(globals, buf, &buflen, level);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001973 if (parent == NULL)
1974 return NULL;
1975
1976 head = load_next(parent, Py_None, &name, buf, &buflen);
1977 if (head == NULL)
1978 return NULL;
1979
1980 tail = head;
1981 Py_INCREF(tail);
1982 while (name) {
1983 next = load_next(tail, tail, &name, buf, &buflen);
1984 Py_DECREF(tail);
1985 if (next == NULL) {
1986 Py_DECREF(head);
1987 return NULL;
1988 }
1989 tail = next;
1990 }
Thomas Wouters8ddab272006-04-04 16:17:02 +00001991 if (tail == Py_None) {
1992 /* If tail is Py_None, both get_parent and load_next found
1993 an empty module name: someone called __import__("") or
1994 doctored faulty bytecode */
Thomas Wouters4bdaa272006-04-05 13:39:37 +00001995 Py_DECREF(tail);
1996 Py_DECREF(head);
Thomas Wouters8ddab272006-04-04 16:17:02 +00001997 PyErr_SetString(PyExc_ValueError,
1998 "Empty module name");
1999 return NULL;
2000 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002001
2002 if (fromlist != NULL) {
2003 if (fromlist == Py_None || !PyObject_IsTrue(fromlist))
2004 fromlist = NULL;
2005 }
2006
2007 if (fromlist == NULL) {
2008 Py_DECREF(tail);
2009 return head;
2010 }
2011
2012 Py_DECREF(head);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002013 if (!ensure_fromlist(tail, fromlist, buf, buflen, 0)) {
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002014 Py_DECREF(tail);
2015 return NULL;
2016 }
2017
2018 return tail;
2019}
2020
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002021/* For DLL compatibility */
2022#undef PyImport_ImportModuleEx
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002023PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002024PyImport_ImportModuleEx(char *name, PyObject *globals, PyObject *locals,
2025 PyObject *fromlist)
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002026{
2027 PyObject *result;
2028 lock_import();
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002029 result = import_module_level(name, globals, locals, fromlist, -1);
2030 if (unlock_import() < 0) {
2031 Py_XDECREF(result);
2032 PyErr_SetString(PyExc_RuntimeError,
2033 "not holding the import lock");
2034 return NULL;
2035 }
2036 return result;
2037}
2038#define PyImport_ImportModuleEx(n, g, l, f) \
2039 PyImport_ImportModuleLevel(n, g, l, f, -1);
2040
2041PyObject *
2042PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals,
2043 PyObject *fromlist, int level)
2044{
2045 PyObject *result;
2046 lock_import();
2047 result = import_module_level(name, globals, locals, fromlist, level);
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002048 if (unlock_import() < 0) {
2049 Py_XDECREF(result);
2050 PyErr_SetString(PyExc_RuntimeError,
2051 "not holding the import lock");
2052 return NULL;
2053 }
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002054 return result;
2055}
2056
Fred Drake87590902004-05-28 20:21:36 +00002057/* Return the package that an import is being performed in. If globals comes
2058 from the module foo.bar.bat (not itself a package), this returns the
2059 sys.modules entry for foo.bar. If globals is from a package's __init__.py,
2060 the package's entry in sys.modules is returned.
2061
2062 The *name* of the returned package is returned in buf, with the length of
2063 the name in *p_buflen.
2064
2065 If globals doesn't come from a package or a module in a package, or a
2066 corresponding entry is not found in sys.modules, Py_None is returned.
2067*/
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002068static PyObject *
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002069get_parent(PyObject *globals, char *buf, Py_ssize_t *p_buflen, int level)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002070{
2071 static PyObject *namestr = NULL;
2072 static PyObject *pathstr = NULL;
2073 PyObject *modname, *modpath, *modules, *parent;
2074
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002075 if (globals == NULL || !PyDict_Check(globals) || !level)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002076 return Py_None;
2077
2078 if (namestr == NULL) {
2079 namestr = PyString_InternFromString("__name__");
2080 if (namestr == NULL)
2081 return NULL;
2082 }
2083 if (pathstr == NULL) {
2084 pathstr = PyString_InternFromString("__path__");
2085 if (pathstr == NULL)
2086 return NULL;
2087 }
2088
2089 *buf = '\0';
2090 *p_buflen = 0;
2091 modname = PyDict_GetItem(globals, namestr);
2092 if (modname == NULL || !PyString_Check(modname))
2093 return Py_None;
2094
2095 modpath = PyDict_GetItem(globals, pathstr);
2096 if (modpath != NULL) {
Martin v. Löwis725507b2006-03-07 12:08:51 +00002097 Py_ssize_t len = PyString_GET_SIZE(modname);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002098 if (len > MAXPATHLEN) {
2099 PyErr_SetString(PyExc_ValueError,
2100 "Module name too long");
2101 return NULL;
2102 }
2103 strcpy(buf, PyString_AS_STRING(modname));
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002104 }
2105 else {
2106 char *start = PyString_AS_STRING(modname);
2107 char *lastdot = strrchr(start, '.');
Fred Drake4c82b232000-06-30 16:18:57 +00002108 size_t len;
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002109 if (lastdot == NULL && level > 0) {
2110 PyErr_SetString(PyExc_ValueError,
2111 "Relative importpath too deep");
2112 return NULL;
2113 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002114 if (lastdot == NULL)
2115 return Py_None;
2116 len = lastdot - start;
2117 if (len >= MAXPATHLEN) {
2118 PyErr_SetString(PyExc_ValueError,
2119 "Module name too long");
2120 return NULL;
2121 }
2122 strncpy(buf, start, len);
2123 buf[len] = '\0';
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002124 }
2125
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002126 while (--level > 0) {
2127 char *dot = strrchr(buf, '.');
2128 if (dot == NULL) {
2129 PyErr_SetString(PyExc_ValueError,
2130 "Relative importpath too deep");
2131 return NULL;
2132 }
2133 *dot = '\0';
2134 }
2135 *p_buflen = strlen(buf);
2136
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002137 modules = PyImport_GetModuleDict();
2138 parent = PyDict_GetItemString(modules, buf);
2139 if (parent == NULL)
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002140 PyErr_Format(PyExc_SystemError,
2141 "Parent module '%.200s' not loaded", buf);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002142 return parent;
2143 /* We expect, but can't guarantee, if parent != None, that:
2144 - parent.__name__ == buf
2145 - parent.__dict__ is globals
2146 If this is violated... Who cares? */
2147}
2148
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002149/* altmod is either None or same as mod */
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002150static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002151load_next(PyObject *mod, PyObject *altmod, char **p_name, char *buf,
Martin v. Löwis18e16552006-02-15 17:27:45 +00002152 Py_ssize_t *p_buflen)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002153{
2154 char *name = *p_name;
2155 char *dot = strchr(name, '.');
Fred Drake4c82b232000-06-30 16:18:57 +00002156 size_t len;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002157 char *p;
2158 PyObject *result;
2159
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002160 if (strlen(name) == 0) {
Thomas Wouters8ddab272006-04-04 16:17:02 +00002161 /* completely empty module name should only happen in
2162 'from . import' (or '__import__("")')*/
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002163 Py_INCREF(mod);
2164 *p_name = NULL;
2165 return mod;
2166 }
2167
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002168 if (dot == NULL) {
2169 *p_name = NULL;
2170 len = strlen(name);
2171 }
2172 else {
2173 *p_name = dot+1;
2174 len = dot-name;
2175 }
Guido van Rossum111c20b1998-04-11 17:38:22 +00002176 if (len == 0) {
2177 PyErr_SetString(PyExc_ValueError,
2178 "Empty module name");
2179 return NULL;
2180 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002181
2182 p = buf + *p_buflen;
2183 if (p != buf)
2184 *p++ = '.';
2185 if (p+len-buf >= MAXPATHLEN) {
2186 PyErr_SetString(PyExc_ValueError,
2187 "Module name too long");
2188 return NULL;
2189 }
2190 strncpy(p, name, len);
2191 p[len] = '\0';
2192 *p_buflen = p+len-buf;
2193
2194 result = import_submodule(mod, p, buf);
2195 if (result == Py_None && altmod != mod) {
2196 Py_DECREF(result);
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002197 /* Here, altmod must be None and mod must not be None */
Guido van Rossum0c819451997-09-07 06:16:57 +00002198 result = import_submodule(altmod, p, p);
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002199 if (result != NULL && result != Py_None) {
2200 if (mark_miss(buf) != 0) {
2201 Py_DECREF(result);
2202 return NULL;
2203 }
2204 strncpy(buf, name, len);
2205 buf[len] = '\0';
2206 *p_buflen = len;
2207 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002208 }
2209 if (result == NULL)
2210 return NULL;
2211
2212 if (result == Py_None) {
2213 Py_DECREF(result);
2214 PyErr_Format(PyExc_ImportError,
2215 "No module named %.200s", name);
2216 return NULL;
2217 }
2218
2219 return result;
2220}
2221
2222static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002223mark_miss(char *name)
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002224{
2225 PyObject *modules = PyImport_GetModuleDict();
2226 return PyDict_SetItemString(modules, name, Py_None);
2227}
2228
2229static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00002230ensure_fromlist(PyObject *mod, PyObject *fromlist, char *buf, Py_ssize_t buflen,
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002231 int recursive)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002232{
2233 int i;
2234
2235 if (!PyObject_HasAttrString(mod, "__path__"))
2236 return 1;
2237
2238 for (i = 0; ; i++) {
2239 PyObject *item = PySequence_GetItem(fromlist, i);
2240 int hasit;
2241 if (item == NULL) {
2242 if (PyErr_ExceptionMatches(PyExc_IndexError)) {
2243 PyErr_Clear();
2244 return 1;
2245 }
2246 return 0;
2247 }
2248 if (!PyString_Check(item)) {
2249 PyErr_SetString(PyExc_TypeError,
2250 "Item in ``from list'' not a string");
2251 Py_DECREF(item);
2252 return 0;
2253 }
2254 if (PyString_AS_STRING(item)[0] == '*') {
Guido van Rossum9905ef91997-09-08 16:07:11 +00002255 PyObject *all;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002256 Py_DECREF(item);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002257 /* See if the package defines __all__ */
2258 if (recursive)
2259 continue; /* Avoid endless recursion */
2260 all = PyObject_GetAttrString(mod, "__all__");
2261 if (all == NULL)
2262 PyErr_Clear();
2263 else {
Martin v. Löwis83969ee2004-03-23 16:28:13 +00002264 int ret = ensure_fromlist(mod, all, buf, buflen, 1);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002265 Py_DECREF(all);
Martin v. Löwis83969ee2004-03-23 16:28:13 +00002266 if (!ret)
2267 return 0;
Guido van Rossum9905ef91997-09-08 16:07:11 +00002268 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002269 continue;
2270 }
2271 hasit = PyObject_HasAttr(mod, item);
2272 if (!hasit) {
2273 char *subname = PyString_AS_STRING(item);
2274 PyObject *submod;
2275 char *p;
2276 if (buflen + strlen(subname) >= MAXPATHLEN) {
2277 PyErr_SetString(PyExc_ValueError,
2278 "Module name too long");
2279 Py_DECREF(item);
2280 return 0;
2281 }
2282 p = buf + buflen;
2283 *p++ = '.';
2284 strcpy(p, subname);
2285 submod = import_submodule(mod, subname, buf);
2286 Py_XDECREF(submod);
2287 if (submod == NULL) {
2288 Py_DECREF(item);
2289 return 0;
2290 }
2291 }
2292 Py_DECREF(item);
2293 }
2294
Guido van Rossuma7f2e811997-10-03 15:33:32 +00002295 /* NOTREACHED */
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002296}
2297
Neil Schemenauer00b09662003-06-16 21:03:07 +00002298static int
2299add_submodule(PyObject *mod, PyObject *submod, char *fullname, char *subname,
2300 PyObject *modules)
2301{
2302 if (mod == Py_None)
2303 return 1;
2304 /* Irrespective of the success of this load, make a
2305 reference to it in the parent package module. A copy gets
2306 saved in the modules dictionary under the full name, so get a
2307 reference from there, if need be. (The exception is when the
2308 load failed with a SyntaxError -- then there's no trace in
2309 sys.modules. In that case, of course, do nothing extra.) */
2310 if (submod == NULL) {
2311 submod = PyDict_GetItemString(modules, fullname);
2312 if (submod == NULL)
2313 return 1;
2314 }
2315 if (PyModule_Check(mod)) {
2316 /* We can't use setattr here since it can give a
2317 * spurious warning if the submodule name shadows a
2318 * builtin name */
2319 PyObject *dict = PyModule_GetDict(mod);
2320 if (!dict)
2321 return 0;
2322 if (PyDict_SetItemString(dict, subname, submod) < 0)
2323 return 0;
2324 }
2325 else {
2326 if (PyObject_SetAttrString(mod, subname, submod) < 0)
2327 return 0;
2328 }
2329 return 1;
2330}
2331
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002332static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002333import_submodule(PyObject *mod, char *subname, char *fullname)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002334{
Guido van Rossum25ce5661997-08-02 03:10:38 +00002335 PyObject *modules = PyImport_GetModuleDict();
Neil Schemenauer00b09662003-06-16 21:03:07 +00002336 PyObject *m = NULL;
Guido van Rossum74e6a111994-08-29 12:54:38 +00002337
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002338 /* Require:
2339 if mod == None: subname == fullname
2340 else: mod.__name__ + "." + subname == fullname
2341 */
2342
Tim Peters50d8d372001-02-28 05:34:27 +00002343 if ((m = PyDict_GetItemString(modules, fullname)) != NULL) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002344 Py_INCREF(m);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00002345 }
2346 else {
Just van Rossum52e14d62002-12-30 22:08:05 +00002347 PyObject *path, *loader = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002348 char buf[MAXPATHLEN+1];
2349 struct filedescr *fdp;
2350 FILE *fp = NULL;
2351
Guido van Rossum9c0afe51998-05-19 15:09:05 +00002352 if (mod == Py_None)
2353 path = NULL;
2354 else {
2355 path = PyObject_GetAttrString(mod, "__path__");
2356 if (path == NULL) {
2357 PyErr_Clear();
2358 Py_INCREF(Py_None);
2359 return Py_None;
2360 }
2361 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002362
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002363 buf[0] = '\0';
Just van Rossum52e14d62002-12-30 22:08:05 +00002364 fdp = find_module(fullname, subname, path, buf, MAXPATHLEN+1,
2365 &fp, &loader);
Guido van Rossumb68cd421998-07-01 17:36:26 +00002366 Py_XDECREF(path);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002367 if (fdp == NULL) {
2368 if (!PyErr_ExceptionMatches(PyExc_ImportError))
2369 return NULL;
2370 PyErr_Clear();
2371 Py_INCREF(Py_None);
2372 return Py_None;
2373 }
Just van Rossum52e14d62002-12-30 22:08:05 +00002374 m = load_module(fullname, fp, buf, fdp->type, loader);
2375 Py_XDECREF(loader);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002376 if (fp)
2377 fclose(fp);
Neil Schemenauer00b09662003-06-16 21:03:07 +00002378 if (!add_submodule(mod, m, fullname, subname, modules)) {
2379 Py_XDECREF(m);
2380 m = NULL;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002381 }
Guido van Rossum74e6a111994-08-29 12:54:38 +00002382 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002383
2384 return m;
Guido van Rossum74e6a111994-08-29 12:54:38 +00002385}
2386
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002387
2388/* Re-import a module of any kind and return its module object, WITH
2389 INCREMENTED REFERENCE COUNT */
2390
Guido van Rossum79f25d91997-04-29 20:08:16 +00002391PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002392PyImport_ReloadModule(PyObject *m)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002393{
Guido van Rossum25ce5661997-08-02 03:10:38 +00002394 PyObject *modules = PyImport_GetModuleDict();
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002395 PyObject *path = NULL, *loader = NULL;
Guido van Rossum222ef561997-09-06 19:41:09 +00002396 char *name, *subname;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002397 char buf[MAXPATHLEN+1];
2398 struct filedescr *fdp;
2399 FILE *fp = NULL;
Tim Peters1cd70172004-08-02 03:52:12 +00002400 PyObject *newm;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002401
Guido van Rossum79f25d91997-04-29 20:08:16 +00002402 if (m == NULL || !PyModule_Check(m)) {
2403 PyErr_SetString(PyExc_TypeError,
2404 "reload() argument must be module");
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002405 return NULL;
2406 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002407 name = PyModule_GetName(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002408 if (name == NULL)
2409 return NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +00002410 if (m != PyDict_GetItemString(modules, name)) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002411 PyErr_Format(PyExc_ImportError,
2412 "reload(): module %.200s not in sys.modules",
2413 name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002414 return NULL;
2415 }
Guido van Rossum222ef561997-09-06 19:41:09 +00002416 subname = strrchr(name, '.');
2417 if (subname == NULL)
2418 subname = name;
2419 else {
2420 PyObject *parentname, *parent;
2421 parentname = PyString_FromStringAndSize(name, (subname-name));
2422 if (parentname == NULL)
2423 return NULL;
2424 parent = PyDict_GetItem(modules, parentname);
2425 if (parent == NULL) {
2426 PyErr_Format(PyExc_ImportError,
2427 "reload(): parent %.200s not in sys.modules",
Georg Brandl0c55f292005-09-14 06:56:20 +00002428 PyString_AS_STRING(parentname));
2429 Py_DECREF(parentname);
Guido van Rossum222ef561997-09-06 19:41:09 +00002430 return NULL;
2431 }
Georg Brandl0c55f292005-09-14 06:56:20 +00002432 Py_DECREF(parentname);
Guido van Rossum222ef561997-09-06 19:41:09 +00002433 subname++;
2434 path = PyObject_GetAttrString(parent, "__path__");
2435 if (path == NULL)
2436 PyErr_Clear();
2437 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002438 buf[0] = '\0';
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002439 fdp = find_module(name, subname, path, buf, MAXPATHLEN+1, &fp, &loader);
Guido van Rossum222ef561997-09-06 19:41:09 +00002440 Py_XDECREF(path);
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002441
2442 if (fdp == NULL) {
2443 Py_XDECREF(loader);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002444 return NULL;
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002445 }
2446
2447 newm = load_module(name, fp, buf, fdp->type, loader);
2448 Py_XDECREF(loader);
2449
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002450 if (fp)
2451 fclose(fp);
Tim Peters1cd70172004-08-02 03:52:12 +00002452 if (newm == NULL) {
2453 /* load_module probably removed name from modules because of
2454 * the error. Put back the original module object. We're
2455 * going to return NULL in this case regardless of whether
2456 * replacing name succeeds, so the return value is ignored.
2457 */
2458 PyDict_SetItemString(modules, name, m);
2459 }
2460 return newm;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002461}
2462
2463
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002464/* Higher-level import emulator which emulates the "import" statement
2465 more accurately -- it invokes the __import__() function from the
2466 builtins of the current globals. This means that the import is
2467 done using whatever import hooks are installed in the current
Guido van Rossum6058eb41998-12-21 19:51:00 +00002468 environment, e.g. by "rexec".
2469 A dummy list ["__doc__"] is passed as the 4th argument so that
2470 e.g. PyImport_Import(PyString_FromString("win32com.client.gencache"))
2471 will return <module "gencache"> instead of <module "win32com">. */
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002472
2473PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002474PyImport_Import(PyObject *module_name)
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002475{
2476 static PyObject *silly_list = NULL;
2477 static PyObject *builtins_str = NULL;
2478 static PyObject *import_str = NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002479 PyObject *globals = NULL;
2480 PyObject *import = NULL;
2481 PyObject *builtins = NULL;
2482 PyObject *r = NULL;
2483
2484 /* Initialize constant string objects */
2485 if (silly_list == NULL) {
2486 import_str = PyString_InternFromString("__import__");
2487 if (import_str == NULL)
2488 return NULL;
2489 builtins_str = PyString_InternFromString("__builtins__");
2490 if (builtins_str == NULL)
2491 return NULL;
2492 silly_list = Py_BuildValue("[s]", "__doc__");
2493 if (silly_list == NULL)
2494 return NULL;
2495 }
2496
2497 /* Get the builtins from current globals */
2498 globals = PyEval_GetGlobals();
Guido van Rossum85cd1d62001-02-20 21:43:24 +00002499 if (globals != NULL) {
Guido van Rossum66468561998-10-22 15:46:50 +00002500 Py_INCREF(globals);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002501 builtins = PyObject_GetItem(globals, builtins_str);
2502 if (builtins == NULL)
2503 goto err;
2504 }
2505 else {
2506 /* No globals -- use standard builtins, and fake globals */
2507 PyErr_Clear();
2508
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002509 builtins = PyImport_ImportModuleLevel("__builtin__",
2510 NULL, NULL, NULL, 0);
Guido van Rossum85cd1d62001-02-20 21:43:24 +00002511 if (builtins == NULL)
2512 return NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002513 globals = Py_BuildValue("{OO}", builtins_str, builtins);
2514 if (globals == NULL)
2515 goto err;
2516 }
2517
2518 /* Get the __import__ function from the builtins */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002519 if (PyDict_Check(builtins)) {
Fred Drakea76ba6e2001-03-06 06:31:15 +00002520 import = PyObject_GetItem(builtins, import_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00002521 if (import == NULL)
2522 PyErr_SetObject(PyExc_KeyError, import_str);
2523 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002524 else
Fred Drakea76ba6e2001-03-06 06:31:15 +00002525 import = PyObject_GetAttr(builtins, import_str);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002526 if (import == NULL)
2527 goto err;
2528
2529 /* Call the _import__ function with the proper argument list */
Georg Brandl684fd0c2006-05-25 19:15:31 +00002530 r = PyObject_CallFunctionObjArgs(import, module_name, globals,
2531 globals, silly_list, NULL);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002532
2533 err:
2534 Py_XDECREF(globals);
2535 Py_XDECREF(builtins);
2536 Py_XDECREF(import);
Tim Peters50d8d372001-02-28 05:34:27 +00002537
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002538 return r;
2539}
2540
2541
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002542/* Module 'imp' provides Python access to the primitives used for
2543 importing modules.
2544*/
2545
Guido van Rossum79f25d91997-04-29 20:08:16 +00002546static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002547imp_get_magic(PyObject *self, PyObject *noargs)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002548{
2549 char buf[4];
2550
Guido van Rossum96774c12000-05-01 20:19:08 +00002551 buf[0] = (char) ((pyc_magic >> 0) & 0xff);
2552 buf[1] = (char) ((pyc_magic >> 8) & 0xff);
2553 buf[2] = (char) ((pyc_magic >> 16) & 0xff);
2554 buf[3] = (char) ((pyc_magic >> 24) & 0xff);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002555
Guido van Rossum79f25d91997-04-29 20:08:16 +00002556 return PyString_FromStringAndSize(buf, 4);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002557}
2558
Guido van Rossum79f25d91997-04-29 20:08:16 +00002559static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002560imp_get_suffixes(PyObject *self, PyObject *noargs)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002561{
Guido van Rossum79f25d91997-04-29 20:08:16 +00002562 PyObject *list;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002563 struct filedescr *fdp;
2564
Guido van Rossum79f25d91997-04-29 20:08:16 +00002565 list = PyList_New(0);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002566 if (list == NULL)
2567 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002568 for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
2569 PyObject *item = Py_BuildValue("ssi",
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002570 fdp->suffix, fdp->mode, fdp->type);
2571 if (item == NULL) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002572 Py_DECREF(list);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002573 return NULL;
2574 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002575 if (PyList_Append(list, item) < 0) {
2576 Py_DECREF(list);
2577 Py_DECREF(item);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002578 return NULL;
2579 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002580 Py_DECREF(item);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002581 }
2582 return list;
2583}
2584
Guido van Rossum79f25d91997-04-29 20:08:16 +00002585static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002586call_find_module(char *name, PyObject *path)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002587{
Tim Petersdbd9ba62000-07-09 03:09:57 +00002588 extern int fclose(FILE *);
Guido van Rossum79f25d91997-04-29 20:08:16 +00002589 PyObject *fob, *ret;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002590 struct filedescr *fdp;
2591 char pathname[MAXPATHLEN+1];
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002592 FILE *fp = NULL;
2593
2594 pathname[0] = '\0';
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002595 if (path == Py_None)
2596 path = NULL;
Just van Rossum52e14d62002-12-30 22:08:05 +00002597 fdp = find_module(NULL, name, path, pathname, MAXPATHLEN+1, &fp, NULL);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002598 if (fdp == NULL)
2599 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002600 if (fp != NULL) {
2601 fob = PyFile_FromFile(fp, pathname, fdp->mode, fclose);
2602 if (fob == NULL) {
2603 fclose(fp);
2604 return NULL;
2605 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002606 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002607 else {
2608 fob = Py_None;
2609 Py_INCREF(fob);
Tim Peters50d8d372001-02-28 05:34:27 +00002610 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002611 ret = Py_BuildValue("Os(ssi)",
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002612 fob, pathname, fdp->suffix, fdp->mode, fdp->type);
Guido van Rossum79f25d91997-04-29 20:08:16 +00002613 Py_DECREF(fob);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002614 return ret;
2615}
2616
Guido van Rossum79f25d91997-04-29 20:08:16 +00002617static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002618imp_find_module(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002619{
2620 char *name;
2621 PyObject *path = NULL;
Guido van Rossum43713e52000-02-29 13:59:29 +00002622 if (!PyArg_ParseTuple(args, "s|O:find_module", &name, &path))
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002623 return NULL;
2624 return call_find_module(name, path);
2625}
2626
2627static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002628imp_init_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002629{
2630 char *name;
2631 int ret;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002632 PyObject *m;
Guido van Rossum43713e52000-02-29 13:59:29 +00002633 if (!PyArg_ParseTuple(args, "s:init_builtin", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002634 return NULL;
2635 ret = init_builtin(name);
2636 if (ret < 0)
2637 return NULL;
2638 if (ret == 0) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002639 Py_INCREF(Py_None);
2640 return Py_None;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002641 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002642 m = PyImport_AddModule(name);
2643 Py_XINCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002644 return m;
2645}
2646
Guido van Rossum79f25d91997-04-29 20:08:16 +00002647static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002648imp_init_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002649{
2650 char *name;
2651 int ret;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002652 PyObject *m;
Guido van Rossum43713e52000-02-29 13:59:29 +00002653 if (!PyArg_ParseTuple(args, "s:init_frozen", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002654 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002655 ret = PyImport_ImportFrozenModule(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002656 if (ret < 0)
2657 return NULL;
2658 if (ret == 0) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002659 Py_INCREF(Py_None);
2660 return Py_None;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002661 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002662 m = PyImport_AddModule(name);
2663 Py_XINCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002664 return m;
2665}
2666
Guido van Rossum79f25d91997-04-29 20:08:16 +00002667static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002668imp_get_frozen_object(PyObject *self, PyObject *args)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002669{
2670 char *name;
Jack Jansen95ffa231995-10-03 14:38:41 +00002671
Guido van Rossum43713e52000-02-29 13:59:29 +00002672 if (!PyArg_ParseTuple(args, "s:get_frozen_object", &name))
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002673 return NULL;
2674 return get_frozen_object(name);
2675}
2676
Guido van Rossum79f25d91997-04-29 20:08:16 +00002677static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002678imp_is_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002679{
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002680 char *name;
Guido van Rossum43713e52000-02-29 13:59:29 +00002681 if (!PyArg_ParseTuple(args, "s:is_builtin", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002682 return NULL;
Guido van Rossum50ee94f2002-04-09 18:00:58 +00002683 return PyInt_FromLong(is_builtin(name));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002684}
2685
Guido van Rossum79f25d91997-04-29 20:08:16 +00002686static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002687imp_is_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002688{
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002689 char *name;
Guido van Rossum323bf5e1998-06-24 03:54:06 +00002690 struct _frozen *p;
Guido van Rossum43713e52000-02-29 13:59:29 +00002691 if (!PyArg_ParseTuple(args, "s:is_frozen", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002692 return NULL;
Guido van Rossum323bf5e1998-06-24 03:54:06 +00002693 p = find_frozen(name);
Guido van Rossumb8bff3f2002-04-07 06:34:38 +00002694 return PyBool_FromLong((long) (p == NULL ? 0 : p->size));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002695}
2696
2697static FILE *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002698get_file(char *pathname, PyObject *fob, char *mode)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002699{
2700 FILE *fp;
2701 if (fob == NULL) {
Tim Peters86c7d2f2004-08-01 23:24:21 +00002702 if (mode[0] == 'U')
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00002703 mode = "r" PY_STDIOTEXTMODE;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002704 fp = fopen(pathname, mode);
2705 if (fp == NULL)
Guido van Rossum79f25d91997-04-29 20:08:16 +00002706 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002707 }
2708 else {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002709 fp = PyFile_AsFile(fob);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002710 if (fp == NULL)
Guido van Rossum79f25d91997-04-29 20:08:16 +00002711 PyErr_SetString(PyExc_ValueError,
2712 "bad/closed file object");
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002713 }
2714 return fp;
2715}
2716
Guido van Rossum79f25d91997-04-29 20:08:16 +00002717static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002718imp_load_compiled(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002719{
2720 char *name;
2721 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002722 PyObject *fob = NULL;
2723 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002724 FILE *fp;
Guido van Rossum43713e52000-02-29 13:59:29 +00002725 if (!PyArg_ParseTuple(args, "ss|O!:load_compiled", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002726 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002727 return NULL;
2728 fp = get_file(pathname, fob, "rb");
2729 if (fp == NULL)
2730 return NULL;
2731 m = load_compiled_module(name, pathname, fp);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002732 if (fob == NULL)
2733 fclose(fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002734 return m;
2735}
2736
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002737#ifdef HAVE_DYNAMIC_LOADING
2738
Guido van Rossum79f25d91997-04-29 20:08:16 +00002739static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002740imp_load_dynamic(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002741{
2742 char *name;
2743 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002744 PyObject *fob = NULL;
2745 PyObject *m;
Guido van Rossum7faeab31995-07-07 22:50:36 +00002746 FILE *fp = NULL;
Guido van Rossum43713e52000-02-29 13:59:29 +00002747 if (!PyArg_ParseTuple(args, "ss|O!:load_dynamic", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002748 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002749 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002750 if (fob) {
Guido van Rossum7faeab31995-07-07 22:50:36 +00002751 fp = get_file(pathname, fob, "r");
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002752 if (fp == NULL)
2753 return NULL;
2754 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002755 m = _PyImport_LoadDynamicModule(name, pathname, fp);
Guido van Rossum7faeab31995-07-07 22:50:36 +00002756 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002757}
2758
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002759#endif /* HAVE_DYNAMIC_LOADING */
2760
Guido van Rossum79f25d91997-04-29 20:08:16 +00002761static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002762imp_load_source(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002763{
2764 char *name;
2765 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002766 PyObject *fob = NULL;
2767 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002768 FILE *fp;
Guido van Rossum43713e52000-02-29 13:59:29 +00002769 if (!PyArg_ParseTuple(args, "ss|O!:load_source", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002770 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002771 return NULL;
2772 fp = get_file(pathname, fob, "r");
2773 if (fp == NULL)
2774 return NULL;
2775 m = load_source_module(name, pathname, fp);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002776 if (fob == NULL)
2777 fclose(fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002778 return m;
2779}
2780
Guido van Rossum79f25d91997-04-29 20:08:16 +00002781static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002782imp_load_module(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002783{
2784 char *name;
2785 PyObject *fob;
2786 char *pathname;
2787 char *suffix; /* Unused */
2788 char *mode;
2789 int type;
2790 FILE *fp;
2791
Guido van Rossum43713e52000-02-29 13:59:29 +00002792 if (!PyArg_ParseTuple(args, "sOs(ssi):load_module",
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002793 &name, &fob, &pathname,
2794 &suffix, &mode, &type))
2795 return NULL;
Guido van Rossum5e2c5fa2002-05-30 17:33:07 +00002796 if (*mode) {
2797 /* Mode must start with 'r' or 'U' and must not contain '+'.
2798 Implicit in this test is the assumption that the mode
2799 may contain other modifiers like 'b' or 't'. */
2800
2801 if (!(*mode == 'r' || *mode == 'U') || strchr(mode, '+')) {
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00002802 PyErr_Format(PyExc_ValueError,
2803 "invalid file open mode %.200s", mode);
2804 return NULL;
Guido van Rossum5e2c5fa2002-05-30 17:33:07 +00002805 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002806 }
2807 if (fob == Py_None)
2808 fp = NULL;
2809 else {
2810 if (!PyFile_Check(fob)) {
2811 PyErr_SetString(PyExc_ValueError,
2812 "load_module arg#2 should be a file or None");
2813 return NULL;
2814 }
2815 fp = get_file(pathname, fob, mode);
2816 if (fp == NULL)
2817 return NULL;
2818 }
Just van Rossum52e14d62002-12-30 22:08:05 +00002819 return load_module(name, fp, pathname, type, NULL);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002820}
2821
2822static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002823imp_load_package(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002824{
2825 char *name;
2826 char *pathname;
Guido van Rossum43713e52000-02-29 13:59:29 +00002827 if (!PyArg_ParseTuple(args, "ss:load_package", &name, &pathname))
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002828 return NULL;
2829 return load_package(name, pathname);
2830}
2831
2832static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002833imp_new_module(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002834{
2835 char *name;
Guido van Rossum43713e52000-02-29 13:59:29 +00002836 if (!PyArg_ParseTuple(args, "s:new_module", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002837 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002838 return PyModule_New(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002839}
2840
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002841/* Doc strings */
2842
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002843PyDoc_STRVAR(doc_imp,
2844"This module provides the components needed to build your own\n\
2845__import__ function. Undocumented functions are obsolete.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002846
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002847PyDoc_STRVAR(doc_find_module,
2848"find_module(name, [path]) -> (file, filename, (suffix, mode, type))\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002849Search for a module. If path is omitted or None, search for a\n\
2850built-in, frozen or special module and continue search in sys.path.\n\
2851The module name cannot contain '.'; to search for a submodule of a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002852package, pass the submodule name and the package's __path__.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002853
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002854PyDoc_STRVAR(doc_load_module,
2855"load_module(name, file, filename, (suffix, mode, type)) -> module\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002856Load a module, given information returned by find_module().\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002857The module name must include the full package name, if any.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002858
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002859PyDoc_STRVAR(doc_get_magic,
2860"get_magic() -> string\n\
2861Return the magic number for .pyc or .pyo files.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002862
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002863PyDoc_STRVAR(doc_get_suffixes,
2864"get_suffixes() -> [(suffix, mode, type), ...]\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002865Return a list of (suffix, mode, type) tuples describing the files\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002866that find_module() looks for.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002867
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002868PyDoc_STRVAR(doc_new_module,
2869"new_module(name) -> module\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002870Create a new module. Do not enter it in sys.modules.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002871The module name must include the full package name, if any.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002872
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002873PyDoc_STRVAR(doc_lock_held,
Tim Petersa7c65092004-08-01 23:26:05 +00002874"lock_held() -> boolean\n\
2875Return True if the import lock is currently held, else False.\n\
2876On platforms without threads, return False.");
Tim Peters69232342001-08-30 05:16:13 +00002877
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002878PyDoc_STRVAR(doc_acquire_lock,
2879"acquire_lock() -> None\n\
Neal Norwitz2294c0d2003-02-12 23:02:21 +00002880Acquires the interpreter's import lock for the current thread.\n\
2881This lock should be used by import hooks to ensure thread-safety\n\
2882when importing modules.\n\
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002883On platforms without threads, this function does nothing.");
2884
2885PyDoc_STRVAR(doc_release_lock,
2886"release_lock() -> None\n\
2887Release the interpreter's import lock.\n\
2888On platforms without threads, this function does nothing.");
2889
Guido van Rossum79f25d91997-04-29 20:08:16 +00002890static PyMethodDef imp_methods[] = {
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002891 {"find_module", imp_find_module, METH_VARARGS, doc_find_module},
2892 {"get_magic", imp_get_magic, METH_NOARGS, doc_get_magic},
2893 {"get_suffixes", imp_get_suffixes, METH_NOARGS, doc_get_suffixes},
2894 {"load_module", imp_load_module, METH_VARARGS, doc_load_module},
2895 {"new_module", imp_new_module, METH_VARARGS, doc_new_module},
2896 {"lock_held", imp_lock_held, METH_NOARGS, doc_lock_held},
2897 {"acquire_lock", imp_acquire_lock, METH_NOARGS, doc_acquire_lock},
2898 {"release_lock", imp_release_lock, METH_NOARGS, doc_release_lock},
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002899 /* The rest are obsolete */
Neal Norwitz031829d2002-03-31 14:37:44 +00002900 {"get_frozen_object", imp_get_frozen_object, METH_VARARGS},
2901 {"init_builtin", imp_init_builtin, METH_VARARGS},
2902 {"init_frozen", imp_init_frozen, METH_VARARGS},
2903 {"is_builtin", imp_is_builtin, METH_VARARGS},
2904 {"is_frozen", imp_is_frozen, METH_VARARGS},
2905 {"load_compiled", imp_load_compiled, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002906#ifdef HAVE_DYNAMIC_LOADING
Neal Norwitz031829d2002-03-31 14:37:44 +00002907 {"load_dynamic", imp_load_dynamic, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002908#endif
Neal Norwitz031829d2002-03-31 14:37:44 +00002909 {"load_package", imp_load_package, METH_VARARGS},
Neal Norwitz031829d2002-03-31 14:37:44 +00002910 {"load_source", imp_load_source, METH_VARARGS},
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002911 {NULL, NULL} /* sentinel */
2912};
2913
Guido van Rossum1a8791e1998-08-04 22:46:29 +00002914static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002915setint(PyObject *d, char *name, int value)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002916{
2917 PyObject *v;
2918 int err;
2919
2920 v = PyInt_FromLong((long)value);
2921 err = PyDict_SetItemString(d, name, v);
2922 Py_XDECREF(v);
2923 return err;
2924}
2925
Jason Tishler6bc06ec2003-09-04 11:59:50 +00002926PyMODINIT_FUNC
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002927initimp(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002928{
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002929 PyObject *m, *d;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002930
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002931 m = Py_InitModule4("imp", imp_methods, doc_imp,
2932 NULL, PYTHON_API_VERSION);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00002933 if (m == NULL)
2934 goto failure;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002935 d = PyModule_GetDict(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002936
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002937 if (setint(d, "SEARCH_ERROR", SEARCH_ERROR) < 0) goto failure;
2938 if (setint(d, "PY_SOURCE", PY_SOURCE) < 0) goto failure;
2939 if (setint(d, "PY_COMPILED", PY_COMPILED) < 0) goto failure;
2940 if (setint(d, "C_EXTENSION", C_EXTENSION) < 0) goto failure;
2941 if (setint(d, "PY_RESOURCE", PY_RESOURCE) < 0) goto failure;
2942 if (setint(d, "PKG_DIRECTORY", PKG_DIRECTORY) < 0) goto failure;
2943 if (setint(d, "C_BUILTIN", C_BUILTIN) < 0) goto failure;
2944 if (setint(d, "PY_FROZEN", PY_FROZEN) < 0) goto failure;
Guido van Rossum0f84a341998-08-06 13:36:01 +00002945 if (setint(d, "PY_CODERESOURCE", PY_CODERESOURCE) < 0) goto failure;
Just van Rossum52e14d62002-12-30 22:08:05 +00002946 if (setint(d, "IMP_HOOK", IMP_HOOK) < 0) goto failure;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002947
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002948 failure:
2949 ;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002950}
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002951
2952
Guido van Rossumb18618d2000-05-03 23:44:39 +00002953/* API for embedding applications that want to add their own entries
2954 to the table of built-in modules. This should normally be called
2955 *before* Py_Initialize(). When the table resize fails, -1 is
2956 returned and the existing table is unchanged.
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002957
2958 After a similar function by Just van Rossum. */
2959
2960int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002961PyImport_ExtendInittab(struct _inittab *newtab)
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002962{
2963 static struct _inittab *our_copy = NULL;
2964 struct _inittab *p;
2965 int i, n;
2966
2967 /* Count the number of entries in both tables */
2968 for (n = 0; newtab[n].name != NULL; n++)
2969 ;
2970 if (n == 0)
2971 return 0; /* Nothing to do */
2972 for (i = 0; PyImport_Inittab[i].name != NULL; i++)
2973 ;
2974
2975 /* Allocate new memory for the combined table */
Guido van Rossumb18618d2000-05-03 23:44:39 +00002976 p = our_copy;
2977 PyMem_RESIZE(p, struct _inittab, i+n+1);
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002978 if (p == NULL)
2979 return -1;
2980
2981 /* Copy the tables into the new memory */
2982 if (our_copy != PyImport_Inittab)
2983 memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct _inittab));
2984 PyImport_Inittab = our_copy = p;
2985 memcpy(p+i, newtab, (n+1) * sizeof(struct _inittab));
2986
2987 return 0;
2988}
2989
2990/* Shorthand to add a single entry given a name and a function */
2991
2992int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002993PyImport_AppendInittab(char *name, void (*initfunc)(void))
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002994{
2995 struct _inittab newtab[2];
2996
2997 memset(newtab, '\0', sizeof newtab);
2998
2999 newtab[0].name = name;
3000 newtab[0].initfunc = initfunc;
3001
3002 return PyImport_ExtendInittab(newtab);
3003}
Anthony Baxterac6bd462006-04-13 02:06:09 +00003004
3005#ifdef __cplusplus
3006}
3007#endif