blob: 6642082eb5953d142054f1e6859250c6018bd315 [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;
1046 importer = PyObject_CallFunction(hook, "O", p);
1047 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 */
1243 if (importer != Py_None) {
1244 PyObject *loader;
1245 loader = PyObject_CallMethod(importer,
1246 "find_module",
1247 "s", fullname);
1248 if (loader == NULL)
1249 return NULL; /* error */
1250 if (loader != Py_None) {
1251 /* a loader was found */
1252 *p_loader = loader;
1253 return &importhookdescr;
1254 }
1255 Py_DECREF(loader);
1256 }
1257 /* no hook was successful, use builtin import */
1258 }
1259
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001260 if (len > 0 && buf[len-1] != SEP
1261#ifdef ALTSEP
1262 && buf[len-1] != ALTSEP
1263#endif
1264 )
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001265 buf[len++] = SEP;
Guido van Rossum215c3402000-11-13 17:26:32 +00001266 strcpy(buf+len, name);
1267 len += namelen;
Tim Peters50d8d372001-02-28 05:34:27 +00001268
1269 /* Check for package import (buf holds a directory name,
1270 and there's an __init__ module in that directory */
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001271#ifdef HAVE_STAT
Walter Dörwald3430d702002-06-17 10:43:59 +00001272 if (stat(buf, &statbuf) == 0 && /* it exists */
1273 S_ISDIR(statbuf.st_mode) && /* it's a directory */
Thomas Wouters9df4e6f2006-04-27 23:13:20 +00001274 case_ok(buf, len, namelen, name)) { /* case matches */
1275 if (find_init_module(buf)) { /* and has __init__.py */
1276 Py_XDECREF(copy);
1277 return &fd_package;
1278 }
1279 else {
1280 char warnstr[MAXPATHLEN+80];
1281 sprintf(warnstr, "Not importing directory "
1282 "'%.*s': missing __init__.py",
1283 MAXPATHLEN, buf);
1284 if (PyErr_Warn(PyExc_ImportWarning,
1285 warnstr)) {
1286 Py_XDECREF(copy);
1287 return NULL;
1288 }
1289 }
Walter Dörwald3430d702002-06-17 10:43:59 +00001290 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001291#else
1292 /* XXX How are you going to test for directories? */
Guido van Rossum48a680c2001-03-02 06:34:14 +00001293#ifdef RISCOS
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001294 if (isdir(buf) &&
Walter Dörwald3430d702002-06-17 10:43:59 +00001295 case_ok(buf, len, namelen, name)) {
Thomas Wouters9df4e6f2006-04-27 23:13:20 +00001296 if (find_init_module(buf)) {
1297 Py_XDECREF(copy);
1298 return &fd_package;
1299 }
1300 else {
1301 char warnstr[MAXPATHLEN+80];
1302 sprintf(warnstr, "Not importing directory "
1303 "'%.*s': missing __init__.py",
1304 MAXPATHLEN, buf);
1305 if (PyErr_Warn(PyExc_ImportWarning,
1306 warnstr)) {
1307 Py_XDECREF(copy);
1308 return NULL;
1309 }
Walter Dörwald3430d702002-06-17 10:43:59 +00001310 }
Guido van Rossum48a680c2001-03-02 06:34:14 +00001311#endif
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001312#endif
Andrew MacIntyred9400542002-02-26 11:41:34 +00001313#if defined(PYOS_OS2)
1314 /* take a snapshot of the module spec for restoration
1315 * after the 8 character DLL hackery
1316 */
1317 saved_buf = strdup(buf);
1318 saved_len = len;
1319 saved_namelen = namelen;
1320#endif /* PYOS_OS2 */
Guido van Rossum79f25d91997-04-29 20:08:16 +00001321 for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
Andrew MacIntyred9400542002-02-26 11:41:34 +00001322#if defined(PYOS_OS2)
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001323 /* OS/2 limits DLLs to 8 character names (w/o
1324 extension)
Andrew MacIntyred9400542002-02-26 11:41:34 +00001325 * so if the name is longer than that and its a
1326 * dynamically loaded module we're going to try,
1327 * truncate the name before trying
1328 */
Just van Rossum52e14d62002-12-30 22:08:05 +00001329 if (strlen(subname) > 8) {
Andrew MacIntyred9400542002-02-26 11:41:34 +00001330 /* is this an attempt to load a C extension? */
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001331 const struct filedescr *scan;
1332 scan = _PyImport_DynLoadFiletab;
Andrew MacIntyred9400542002-02-26 11:41:34 +00001333 while (scan->suffix != NULL) {
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001334 if (!strcmp(scan->suffix, fdp->suffix))
Andrew MacIntyred9400542002-02-26 11:41:34 +00001335 break;
1336 else
1337 scan++;
1338 }
1339 if (scan->suffix != NULL) {
1340 /* yes, so truncate the name */
1341 namelen = 8;
Just van Rossum52e14d62002-12-30 22:08:05 +00001342 len -= strlen(subname) - namelen;
Andrew MacIntyred9400542002-02-26 11:41:34 +00001343 buf[len] = '\0';
1344 }
1345 }
1346#endif /* PYOS_OS2 */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001347 strcpy(buf+len, fdp->suffix);
Guido van Rossum79f25d91997-04-29 20:08:16 +00001348 if (Py_VerboseFlag > 1)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001349 PySys_WriteStderr("# trying %s\n", buf);
Jack Jansenc88da1f2002-05-28 10:58:19 +00001350 filemode = fdp->mode;
Tim Peters86c7d2f2004-08-01 23:24:21 +00001351 if (filemode[0] == 'U')
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00001352 filemode = "r" PY_STDIOTEXTMODE;
Jack Jansenc88da1f2002-05-28 10:58:19 +00001353 fp = fopen(buf, filemode);
Tim Peters50d8d372001-02-28 05:34:27 +00001354 if (fp != NULL) {
1355 if (case_ok(buf, len, namelen, name))
1356 break;
1357 else { /* continue search */
1358 fclose(fp);
1359 fp = NULL;
Barry Warsaw914a0b12001-02-02 19:12:16 +00001360 }
Barry Warsaw914a0b12001-02-02 19:12:16 +00001361 }
Andrew MacIntyred9400542002-02-26 11:41:34 +00001362#if defined(PYOS_OS2)
1363 /* restore the saved snapshot */
1364 strcpy(buf, saved_buf);
1365 len = saved_len;
1366 namelen = saved_namelen;
1367#endif
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001368 }
Andrew MacIntyred9400542002-02-26 11:41:34 +00001369#if defined(PYOS_OS2)
1370 /* don't need/want the module name snapshot anymore */
1371 if (saved_buf)
1372 {
1373 free(saved_buf);
1374 saved_buf = NULL;
1375 }
1376#endif
Walter Dörwald3430d702002-06-17 10:43:59 +00001377 Py_XDECREF(copy);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001378 if (fp != NULL)
1379 break;
1380 }
1381 if (fp == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001382 PyErr_Format(PyExc_ImportError,
1383 "No module named %.200s", name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001384 return NULL;
1385 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001386 *p_fp = fp;
1387 return fdp;
1388}
1389
Raymond Hettingerdb29e0f2004-10-07 06:46:25 +00001390/* Helpers for main.c
1391 * Find the source file corresponding to a named module
1392 */
1393struct filedescr *
1394_PyImport_FindModule(const char *name, PyObject *path, char *buf,
1395 size_t buflen, FILE **p_fp, PyObject **p_loader)
1396{
1397 return find_module((char *) name, (char *) name, path,
1398 buf, buflen, p_fp, p_loader);
1399}
1400
1401PyAPI_FUNC(int) _PyImport_IsScript(struct filedescr * fd)
1402{
1403 return fd->type == PY_SOURCE || fd->type == PY_COMPILED;
1404}
1405
Martin v. Löwis18e16552006-02-15 17:27:45 +00001406/* case_ok(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name)
Tim Petersd1e87a82001-03-01 18:12:00 +00001407 * The arguments here are tricky, best shown by example:
1408 * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0
1409 * ^ ^ ^ ^
1410 * |--------------------- buf ---------------------|
1411 * |------------------- len ------------------|
1412 * |------ name -------|
1413 * |----- namelen -----|
1414 * buf is the full path, but len only counts up to (& exclusive of) the
1415 * extension. name is the module name, also exclusive of extension.
1416 *
1417 * We've already done a successful stat() or fopen() on buf, so know that
1418 * there's some match, possibly case-insensitive.
1419 *
Tim Peters50d8d372001-02-28 05:34:27 +00001420 * case_ok() is to return 1 if there's a case-sensitive match for
1421 * name, else 0. case_ok() is also to return 1 if envar PYTHONCASEOK
1422 * exists.
Tim Petersd1e87a82001-03-01 18:12:00 +00001423 *
Tim Peters50d8d372001-02-28 05:34:27 +00001424 * case_ok() is used to implement case-sensitive import semantics even
1425 * on platforms with case-insensitive filesystems. It's trivial to implement
1426 * for case-sensitive filesystems. It's pretty much a cross-platform
1427 * nightmare for systems with case-insensitive filesystems.
1428 */
Guido van Rossum0980bd91998-02-13 17:18:36 +00001429
Tim Peters50d8d372001-02-28 05:34:27 +00001430/* First we may need a pile of platform-specific header files; the sequence
1431 * of #if's here should match the sequence in the body of case_ok().
1432 */
Jason Tishler7961aa62005-05-20 00:56:54 +00001433#if defined(MS_WINDOWS)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001434#include <windows.h>
Guido van Rossum4c3f57c2001-01-10 20:40:46 +00001435
Tim Peters50d8d372001-02-28 05:34:27 +00001436#elif defined(DJGPP)
1437#include <dir.h>
1438
Jason Tishler7961aa62005-05-20 00:56:54 +00001439#elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H)
Tim Peters430f5d42001-03-01 01:30:56 +00001440#include <sys/types.h>
1441#include <dirent.h>
1442
Andrew MacIntyred9400542002-02-26 11:41:34 +00001443#elif defined(PYOS_OS2)
1444#define INCL_DOS
1445#define INCL_DOSERRORS
1446#define INCL_NOPMAPI
1447#include <os2.h>
1448
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001449#elif defined(RISCOS)
1450#include "oslib/osfscontrol.h"
Tim Peters50d8d372001-02-28 05:34:27 +00001451#endif
1452
Guido van Rossum0980bd91998-02-13 17:18:36 +00001453static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00001454case_ok(char *buf, Py_ssize_t len, Py_ssize_t namelen, char *name)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001455{
Tim Peters50d8d372001-02-28 05:34:27 +00001456/* Pick a platform-specific implementation; the sequence of #if's here should
1457 * match the sequence just above.
1458 */
1459
Jason Tishler7961aa62005-05-20 00:56:54 +00001460/* MS_WINDOWS */
1461#if defined(MS_WINDOWS)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001462 WIN32_FIND_DATA data;
1463 HANDLE h;
Tim Peters50d8d372001-02-28 05:34:27 +00001464
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001465 if (Py_GETENV("PYTHONCASEOK") != NULL)
Guido van Rossum0980bd91998-02-13 17:18:36 +00001466 return 1;
Tim Peters50d8d372001-02-28 05:34:27 +00001467
Guido van Rossum0980bd91998-02-13 17:18:36 +00001468 h = FindFirstFile(buf, &data);
1469 if (h == INVALID_HANDLE_VALUE) {
1470 PyErr_Format(PyExc_NameError,
1471 "Can't find file for module %.100s\n(filename %.300s)",
1472 name, buf);
1473 return 0;
1474 }
1475 FindClose(h);
Tim Peters50d8d372001-02-28 05:34:27 +00001476 return strncmp(data.cFileName, name, namelen) == 0;
1477
1478/* DJGPP */
1479#elif defined(DJGPP)
1480 struct ffblk ffblk;
1481 int done;
1482
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001483 if (Py_GETENV("PYTHONCASEOK") != NULL)
Guido van Rossum323bf5e1998-06-24 03:54:06 +00001484 return 1;
Tim Peters50d8d372001-02-28 05:34:27 +00001485
1486 done = findfirst(buf, &ffblk, FA_ARCH|FA_RDONLY|FA_HIDDEN|FA_DIREC);
1487 if (done) {
Guido van Rossum0980bd91998-02-13 17:18:36 +00001488 PyErr_Format(PyExc_NameError,
Tim Peters50d8d372001-02-28 05:34:27 +00001489 "Can't find file for module %.100s\n(filename %.300s)",
Guido van Rossum0980bd91998-02-13 17:18:36 +00001490 name, buf);
1491 return 0;
1492 }
Tim Peters50d8d372001-02-28 05:34:27 +00001493 return strncmp(ffblk.ff_name, name, namelen) == 0;
Guido van Rossum0980bd91998-02-13 17:18:36 +00001494
Jason Tishler7961aa62005-05-20 00:56:54 +00001495/* new-fangled macintosh (macosx) or Cygwin */
1496#elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H)
Tim Peters430f5d42001-03-01 01:30:56 +00001497 DIR *dirp;
1498 struct dirent *dp;
Tim Petersd1e87a82001-03-01 18:12:00 +00001499 char dirname[MAXPATHLEN + 1];
1500 const int dirlen = len - namelen - 1; /* don't want trailing SEP */
Tim Peters430f5d42001-03-01 01:30:56 +00001501
Neil Schemenauer7d4bb9f2001-07-23 16:30:27 +00001502 if (Py_GETENV("PYTHONCASEOK") != NULL)
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001503 return 1;
1504
Tim Petersd1e87a82001-03-01 18:12:00 +00001505 /* Copy the dir component into dirname; substitute "." if empty */
1506 if (dirlen <= 0) {
1507 dirname[0] = '.';
1508 dirname[1] = '\0';
Tim Peters430f5d42001-03-01 01:30:56 +00001509 }
1510 else {
Tim Petersd1e87a82001-03-01 18:12:00 +00001511 assert(dirlen <= MAXPATHLEN);
1512 memcpy(dirname, buf, dirlen);
1513 dirname[dirlen] = '\0';
Tim Peters430f5d42001-03-01 01:30:56 +00001514 }
1515 /* Open the directory and search the entries for an exact match. */
Tim Petersd1e87a82001-03-01 18:12:00 +00001516 dirp = opendir(dirname);
Tim Peters430f5d42001-03-01 01:30:56 +00001517 if (dirp) {
Tim Peters677898a2001-03-02 03:28:03 +00001518 char *nameWithExt = buf + len - namelen;
Tim Peters430f5d42001-03-01 01:30:56 +00001519 while ((dp = readdir(dirp)) != NULL) {
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001520 const int thislen =
Tim Peters430f5d42001-03-01 01:30:56 +00001521#ifdef _DIRENT_HAVE_D_NAMELEN
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001522 dp->d_namlen;
Tim Peters430f5d42001-03-01 01:30:56 +00001523#else
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001524 strlen(dp->d_name);
Tim Peters430f5d42001-03-01 01:30:56 +00001525#endif
Tim Petersd1e87a82001-03-01 18:12:00 +00001526 if (thislen >= namelen &&
Tim Peters677898a2001-03-02 03:28:03 +00001527 strcmp(dp->d_name, nameWithExt) == 0) {
Tim Peters430f5d42001-03-01 01:30:56 +00001528 (void)closedir(dirp);
1529 return 1; /* Found */
1530 }
1531 }
Tim Petersdbe6ebb2001-03-01 08:47:29 +00001532 (void)closedir(dirp);
Tim Peters430f5d42001-03-01 01:30:56 +00001533 }
Tim Peters430f5d42001-03-01 01:30:56 +00001534 return 0 ; /* Not found */
Tim Peters430f5d42001-03-01 01:30:56 +00001535
Guido van Rossume2ae77b2001-10-24 20:42:55 +00001536/* RISC OS */
1537#elif defined(RISCOS)
1538 char canon[MAXPATHLEN+1]; /* buffer for the canonical form of the path */
1539 char buf2[MAXPATHLEN+2];
1540 char *nameWithExt = buf+len-namelen;
1541 int canonlen;
1542 os_error *e;
1543
1544 if (Py_GETENV("PYTHONCASEOK") != NULL)
1545 return 1;
1546
1547 /* workaround:
1548 append wildcard, otherwise case of filename wouldn't be touched */
1549 strcpy(buf2, buf);
1550 strcat(buf2, "*");
1551
1552 e = xosfscontrol_canonicalise_path(buf2,canon,0,0,MAXPATHLEN+1,&canonlen);
1553 canonlen = MAXPATHLEN+1-canonlen;
1554 if (e || canonlen<=0 || canonlen>(MAXPATHLEN+1) )
1555 return 0;
1556 if (strcmp(nameWithExt, canon+canonlen-strlen(nameWithExt))==0)
1557 return 1; /* match */
1558
1559 return 0;
1560
Andrew MacIntyred9400542002-02-26 11:41:34 +00001561/* OS/2 */
1562#elif defined(PYOS_OS2)
1563 HDIR hdir = 1;
1564 ULONG srchcnt = 1;
1565 FILEFINDBUF3 ffbuf;
1566 APIRET rc;
1567
1568 if (getenv("PYTHONCASEOK") != NULL)
1569 return 1;
1570
1571 rc = DosFindFirst(buf,
1572 &hdir,
1573 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
1574 &ffbuf, sizeof(ffbuf),
1575 &srchcnt,
1576 FIL_STANDARD);
1577 if (rc != NO_ERROR)
1578 return 0;
1579 return strncmp(ffbuf.achName, name, namelen) == 0;
1580
Tim Peters50d8d372001-02-28 05:34:27 +00001581/* assuming it's a case-sensitive filesystem, so there's nothing to do! */
1582#else
Guido van Rossum0980bd91998-02-13 17:18:36 +00001583 return 1;
Guido van Rossum0980bd91998-02-13 17:18:36 +00001584
Guido van Rossum4d1b3b91998-02-13 23:27:59 +00001585#endif
Tim Peters50d8d372001-02-28 05:34:27 +00001586}
Guido van Rossum4d1b3b91998-02-13 23:27:59 +00001587
Guido van Rossum0980bd91998-02-13 17:18:36 +00001588
Guido van Rossum197346f1997-10-31 18:38:52 +00001589#ifdef HAVE_STAT
1590/* Helper to look for __init__.py or __init__.py[co] in potential package */
1591static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001592find_init_module(char *buf)
Guido van Rossum197346f1997-10-31 18:38:52 +00001593{
Tim Peters0f9431f2001-07-05 03:47:53 +00001594 const size_t save_len = strlen(buf);
Fred Drake4c82b232000-06-30 16:18:57 +00001595 size_t i = save_len;
Tim Peters0f9431f2001-07-05 03:47:53 +00001596 char *pname; /* pointer to start of __init__ */
Guido van Rossum197346f1997-10-31 18:38:52 +00001597 struct stat statbuf;
1598
Tim Peters0f9431f2001-07-05 03:47:53 +00001599/* For calling case_ok(buf, len, namelen, name):
1600 * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0
1601 * ^ ^ ^ ^
1602 * |--------------------- buf ---------------------|
1603 * |------------------- len ------------------|
1604 * |------ name -------|
1605 * |----- namelen -----|
1606 */
Guido van Rossum197346f1997-10-31 18:38:52 +00001607 if (save_len + 13 >= MAXPATHLEN)
1608 return 0;
1609 buf[i++] = SEP;
Tim Peters0f9431f2001-07-05 03:47:53 +00001610 pname = buf + i;
1611 strcpy(pname, "__init__.py");
Guido van Rossum197346f1997-10-31 18:38:52 +00001612 if (stat(buf, &statbuf) == 0) {
Tim Peters0f9431f2001-07-05 03:47:53 +00001613 if (case_ok(buf,
1614 save_len + 9, /* len("/__init__") */
1615 8, /* len("__init__") */
1616 pname)) {
1617 buf[save_len] = '\0';
1618 return 1;
1619 }
Guido van Rossum197346f1997-10-31 18:38:52 +00001620 }
Tim Peters0f9431f2001-07-05 03:47:53 +00001621 i += strlen(pname);
1622 strcpy(buf+i, Py_OptimizeFlag ? "o" : "c");
Guido van Rossum197346f1997-10-31 18:38:52 +00001623 if (stat(buf, &statbuf) == 0) {
Tim Peters0f9431f2001-07-05 03:47:53 +00001624 if (case_ok(buf,
1625 save_len + 9, /* len("/__init__") */
1626 8, /* len("__init__") */
1627 pname)) {
1628 buf[save_len] = '\0';
1629 return 1;
1630 }
Guido van Rossum197346f1997-10-31 18:38:52 +00001631 }
1632 buf[save_len] = '\0';
1633 return 0;
1634}
Guido van Rossum48a680c2001-03-02 06:34:14 +00001635
1636#else
1637
1638#ifdef RISCOS
1639static int
1640find_init_module(buf)
1641 char *buf;
1642{
1643 int save_len = strlen(buf);
1644 int i = save_len;
1645
1646 if (save_len + 13 >= MAXPATHLEN)
1647 return 0;
1648 buf[i++] = SEP;
1649 strcpy(buf+i, "__init__/py");
1650 if (isfile(buf)) {
1651 buf[save_len] = '\0';
1652 return 1;
1653 }
1654
1655 if (Py_OptimizeFlag)
1656 strcpy(buf+i, "o");
1657 else
1658 strcpy(buf+i, "c");
1659 if (isfile(buf)) {
1660 buf[save_len] = '\0';
1661 return 1;
1662 }
1663 buf[save_len] = '\0';
1664 return 0;
1665}
1666#endif /*RISCOS*/
1667
Guido van Rossum197346f1997-10-31 18:38:52 +00001668#endif /* HAVE_STAT */
1669
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001670
Tim Petersdbd9ba62000-07-09 03:09:57 +00001671static int init_builtin(char *); /* Forward */
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001672
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001673/* Load an external module using the default search path and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001674 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001675
Guido van Rossum79f25d91997-04-29 20:08:16 +00001676static PyObject *
Just van Rossum52e14d62002-12-30 22:08:05 +00001677load_module(char *name, FILE *fp, char *buf, int type, PyObject *loader)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001678{
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001679 PyObject *modules;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001680 PyObject *m;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001681 int err;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001682
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001683 /* First check that there's an open file (if we need one) */
1684 switch (type) {
1685 case PY_SOURCE:
1686 case PY_COMPILED:
1687 if (fp == NULL) {
1688 PyErr_Format(PyExc_ValueError,
1689 "file object required for import (type code %d)",
1690 type);
1691 return NULL;
1692 }
1693 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001694
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001695 switch (type) {
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001696
1697 case PY_SOURCE:
1698 m = load_source_module(name, buf, fp);
1699 break;
1700
1701 case PY_COMPILED:
1702 m = load_compiled_module(name, buf, fp);
1703 break;
1704
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001705#ifdef HAVE_DYNAMIC_LOADING
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001706 case C_EXTENSION:
Guido van Rossum79f25d91997-04-29 20:08:16 +00001707 m = _PyImport_LoadDynamicModule(name, buf, fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001708 break;
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001709#endif
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001710
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001711 case PKG_DIRECTORY:
1712 m = load_package(name, buf);
1713 break;
1714
1715 case C_BUILTIN:
1716 case PY_FROZEN:
Guido van Rossuma5568d31998-03-05 03:45:08 +00001717 if (buf != NULL && buf[0] != '\0')
1718 name = buf;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001719 if (type == C_BUILTIN)
1720 err = init_builtin(name);
1721 else
1722 err = PyImport_ImportFrozenModule(name);
1723 if (err < 0)
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001724 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001725 if (err == 0) {
1726 PyErr_Format(PyExc_ImportError,
1727 "Purported %s module %.200s not found",
1728 type == C_BUILTIN ?
1729 "builtin" : "frozen",
1730 name);
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001731 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001732 }
1733 modules = PyImport_GetModuleDict();
1734 m = PyDict_GetItemString(modules, name);
1735 if (m == NULL) {
1736 PyErr_Format(
1737 PyExc_ImportError,
1738 "%s module %.200s not properly initialized",
1739 type == C_BUILTIN ?
1740 "builtin" : "frozen",
1741 name);
Guido van Rossuma86f77d1997-09-09 18:53:47 +00001742 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001743 }
1744 Py_INCREF(m);
1745 break;
1746
Just van Rossum52e14d62002-12-30 22:08:05 +00001747 case IMP_HOOK: {
1748 if (loader == NULL) {
1749 PyErr_SetString(PyExc_ImportError,
1750 "import hook without loader");
1751 return NULL;
1752 }
1753 m = PyObject_CallMethod(loader, "load_module", "s", name);
1754 break;
1755 }
1756
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001757 default:
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001758 PyErr_Format(PyExc_ImportError,
1759 "Don't know how to import %.200s (type code %d)",
1760 name, type);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001761 m = NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001762
1763 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001764
1765 return m;
1766}
1767
1768
1769/* Initialize a built-in module.
1770 Return 1 for succes, 0 if the module is not found, and -1 with
1771 an exception set if the initialization failed. */
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001772
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001773static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001774init_builtin(char *name)
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001775{
Guido van Rossum25ce5661997-08-02 03:10:38 +00001776 struct _inittab *p;
Guido van Rossum25ce5661997-08-02 03:10:38 +00001777
Greg Ward201baee2001-10-04 14:52:06 +00001778 if (_PyImport_FindExtension(name, name) != NULL)
Guido van Rossum25ce5661997-08-02 03:10:38 +00001779 return 1;
1780
Guido van Rossum771c6c81997-10-31 18:37:24 +00001781 for (p = PyImport_Inittab; p->name != NULL; p++) {
Guido van Rossum25ce5661997-08-02 03:10:38 +00001782 if (strcmp(name, p->name) == 0) {
1783 if (p->initfunc == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001784 PyErr_Format(PyExc_ImportError,
1785 "Cannot re-init internal module %.200s",
1786 name);
Guido van Rossum74e6a111994-08-29 12:54:38 +00001787 return -1;
1788 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00001789 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001790 PySys_WriteStderr("import %s # builtin\n", name);
Guido van Rossum25ce5661997-08-02 03:10:38 +00001791 (*p->initfunc)();
Guido van Rossum79f25d91997-04-29 20:08:16 +00001792 if (PyErr_Occurred())
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001793 return -1;
Guido van Rossum25ce5661997-08-02 03:10:38 +00001794 if (_PyImport_FixupExtension(name, name) == NULL)
1795 return -1;
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001796 return 1;
1797 }
1798 }
1799 return 0;
1800}
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001801
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001802
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001803/* Frozen modules */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001804
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001805static struct _frozen *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001806find_frozen(char *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001807{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001808 struct _frozen *p;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001809
Guido van Rossum79f25d91997-04-29 20:08:16 +00001810 for (p = PyImport_FrozenModules; ; p++) {
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001811 if (p->name == NULL)
1812 return NULL;
1813 if (strcmp(p->name, name) == 0)
1814 break;
1815 }
1816 return p;
1817}
1818
Guido van Rossum79f25d91997-04-29 20:08:16 +00001819static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001820get_frozen_object(char *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001821{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001822 struct _frozen *p = find_frozen(name);
Guido van Rossuma5568d31998-03-05 03:45:08 +00001823 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001824
1825 if (p == NULL) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001826 PyErr_Format(PyExc_ImportError,
1827 "No such frozen object named %.200s",
1828 name);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001829 return NULL;
1830 }
Guido van Rossum8f4d3312001-10-18 18:54:11 +00001831 if (p->code == NULL) {
1832 PyErr_Format(PyExc_ImportError,
1833 "Excluded frozen object named %.200s",
1834 name);
1835 return NULL;
1836 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001837 size = p->size;
1838 if (size < 0)
1839 size = -size;
1840 return PyMarshal_ReadObjectFromString((char *)p->code, size);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001841}
1842
1843/* Initialize a frozen module.
1844 Return 1 for succes, 0 if the module is not found, and -1 with
1845 an exception set if the initialization failed.
1846 This function is also used from frozenmain.c */
Guido van Rossum0b344901995-02-07 15:35:27 +00001847
1848int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001849PyImport_ImportFrozenModule(char *name)
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001850{
Guido van Rossumcfd0a221996-06-17 17:06:34 +00001851 struct _frozen *p = find_frozen(name);
Guido van Rossum79f25d91997-04-29 20:08:16 +00001852 PyObject *co;
1853 PyObject *m;
Guido van Rossuma5568d31998-03-05 03:45:08 +00001854 int ispackage;
1855 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001856
1857 if (p == NULL)
1858 return 0;
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 -1;
1864 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001865 size = p->size;
1866 ispackage = (size < 0);
1867 if (ispackage)
1868 size = -size;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001869 if (Py_VerboseFlag)
Guido van Rossum2f3667a1998-10-12 18:23:55 +00001870 PySys_WriteStderr("import %s # frozen%s\n",
Guido van Rossuma5568d31998-03-05 03:45:08 +00001871 name, ispackage ? " package" : "");
1872 co = PyMarshal_ReadObjectFromString((char *)p->code, size);
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001873 if (co == NULL)
1874 return -1;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001875 if (!PyCode_Check(co)) {
1876 Py_DECREF(co);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001877 PyErr_Format(PyExc_TypeError,
1878 "frozen object %.200s is not a code object",
1879 name);
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001880 return -1;
1881 }
Guido van Rossuma5568d31998-03-05 03:45:08 +00001882 if (ispackage) {
1883 /* Set __path__ to the package name */
1884 PyObject *d, *s;
1885 int err;
1886 m = PyImport_AddModule(name);
1887 if (m == NULL)
1888 return -1;
1889 d = PyModule_GetDict(m);
1890 s = PyString_InternFromString(name);
1891 if (s == NULL)
1892 return -1;
1893 err = PyDict_SetItemString(d, "__path__", s);
1894 Py_DECREF(s);
1895 if (err != 0)
1896 return err;
1897 }
Guido van Rossume32bf6e1998-02-11 05:53:02 +00001898 m = PyImport_ExecCodeModuleEx(name, co, "<frozen>");
Guido van Rossum79f25d91997-04-29 20:08:16 +00001899 Py_DECREF(co);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001900 if (m == NULL)
1901 return -1;
Guido van Rossum79f25d91997-04-29 20:08:16 +00001902 Py_DECREF(m);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001903 return 1;
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001904}
Guido van Rossum74e6a111994-08-29 12:54:38 +00001905
1906
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001907/* Import a module, either built-in, frozen, or external, and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001908 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum74e6a111994-08-29 12:54:38 +00001909
Guido van Rossum79f25d91997-04-29 20:08:16 +00001910PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001911PyImport_ImportModule(const char *name)
Guido van Rossum74e6a111994-08-29 12:54:38 +00001912{
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00001913 PyObject *pname;
1914 PyObject *result;
1915
1916 pname = PyString_FromString(name);
Neal Norwitza11e4c12003-03-23 14:31:01 +00001917 if (pname == NULL)
1918 return NULL;
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00001919 result = PyImport_Import(pname);
1920 Py_DECREF(pname);
1921 return result;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001922}
1923
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001924/* Forward declarations for helper routines */
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001925static PyObject *get_parent(PyObject *globals, char *buf,
1926 Py_ssize_t *p_buflen, int level);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001927static PyObject *load_next(PyObject *mod, PyObject *altmod,
Martin v. Löwis18e16552006-02-15 17:27:45 +00001928 char **p_name, char *buf, Py_ssize_t *p_buflen);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001929static int mark_miss(char *name);
1930static int ensure_fromlist(PyObject *mod, PyObject *fromlist,
Martin v. Löwis18e16552006-02-15 17:27:45 +00001931 char *buf, Py_ssize_t buflen, int recursive);
Tim Petersdbd9ba62000-07-09 03:09:57 +00001932static PyObject * import_submodule(PyObject *mod, char *name, char *fullname);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001933
1934/* The Magnum Opus of dotted-name import :-) */
1935
Guido van Rossum75acc9c1998-03-03 22:26:50 +00001936static PyObject *
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001937import_module_level(char *name, PyObject *globals, PyObject *locals,
1938 PyObject *fromlist, int level)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001939{
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001940 char buf[MAXPATHLEN+1];
Martin v. Löwis18e16552006-02-15 17:27:45 +00001941 Py_ssize_t buflen = 0;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001942 PyObject *parent, *head, *next, *tail;
1943
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001944 parent = get_parent(globals, buf, &buflen, level);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001945 if (parent == NULL)
1946 return NULL;
1947
1948 head = load_next(parent, Py_None, &name, buf, &buflen);
1949 if (head == NULL)
1950 return NULL;
1951
1952 tail = head;
1953 Py_INCREF(tail);
1954 while (name) {
1955 next = load_next(tail, tail, &name, buf, &buflen);
1956 Py_DECREF(tail);
1957 if (next == NULL) {
1958 Py_DECREF(head);
1959 return NULL;
1960 }
1961 tail = next;
1962 }
Thomas Wouters8ddab272006-04-04 16:17:02 +00001963 if (tail == Py_None) {
1964 /* If tail is Py_None, both get_parent and load_next found
1965 an empty module name: someone called __import__("") or
1966 doctored faulty bytecode */
Thomas Wouters4bdaa272006-04-05 13:39:37 +00001967 Py_DECREF(tail);
1968 Py_DECREF(head);
Thomas Wouters8ddab272006-04-04 16:17:02 +00001969 PyErr_SetString(PyExc_ValueError,
1970 "Empty module name");
1971 return NULL;
1972 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001973
1974 if (fromlist != NULL) {
1975 if (fromlist == Py_None || !PyObject_IsTrue(fromlist))
1976 fromlist = NULL;
1977 }
1978
1979 if (fromlist == NULL) {
1980 Py_DECREF(tail);
1981 return head;
1982 }
1983
1984 Py_DECREF(head);
Guido van Rossum9905ef91997-09-08 16:07:11 +00001985 if (!ensure_fromlist(tail, fromlist, buf, buflen, 0)) {
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001986 Py_DECREF(tail);
1987 return NULL;
1988 }
1989
1990 return tail;
1991}
1992
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001993/* For DLL compatibility */
1994#undef PyImport_ImportModuleEx
Guido van Rossum75acc9c1998-03-03 22:26:50 +00001995PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001996PyImport_ImportModuleEx(char *name, PyObject *globals, PyObject *locals,
1997 PyObject *fromlist)
Guido van Rossum75acc9c1998-03-03 22:26:50 +00001998{
1999 PyObject *result;
2000 lock_import();
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002001 result = import_module_level(name, globals, locals, fromlist, -1);
2002 if (unlock_import() < 0) {
2003 Py_XDECREF(result);
2004 PyErr_SetString(PyExc_RuntimeError,
2005 "not holding the import lock");
2006 return NULL;
2007 }
2008 return result;
2009}
2010#define PyImport_ImportModuleEx(n, g, l, f) \
2011 PyImport_ImportModuleLevel(n, g, l, f, -1);
2012
2013PyObject *
2014PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals,
2015 PyObject *fromlist, int level)
2016{
2017 PyObject *result;
2018 lock_import();
2019 result = import_module_level(name, globals, locals, fromlist, level);
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002020 if (unlock_import() < 0) {
2021 Py_XDECREF(result);
2022 PyErr_SetString(PyExc_RuntimeError,
2023 "not holding the import lock");
2024 return NULL;
2025 }
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002026 return result;
2027}
2028
Fred Drake87590902004-05-28 20:21:36 +00002029/* Return the package that an import is being performed in. If globals comes
2030 from the module foo.bar.bat (not itself a package), this returns the
2031 sys.modules entry for foo.bar. If globals is from a package's __init__.py,
2032 the package's entry in sys.modules is returned.
2033
2034 The *name* of the returned package is returned in buf, with the length of
2035 the name in *p_buflen.
2036
2037 If globals doesn't come from a package or a module in a package, or a
2038 corresponding entry is not found in sys.modules, Py_None is returned.
2039*/
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002040static PyObject *
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002041get_parent(PyObject *globals, char *buf, Py_ssize_t *p_buflen, int level)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002042{
2043 static PyObject *namestr = NULL;
2044 static PyObject *pathstr = NULL;
2045 PyObject *modname, *modpath, *modules, *parent;
2046
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002047 if (globals == NULL || !PyDict_Check(globals) || !level)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002048 return Py_None;
2049
2050 if (namestr == NULL) {
2051 namestr = PyString_InternFromString("__name__");
2052 if (namestr == NULL)
2053 return NULL;
2054 }
2055 if (pathstr == NULL) {
2056 pathstr = PyString_InternFromString("__path__");
2057 if (pathstr == NULL)
2058 return NULL;
2059 }
2060
2061 *buf = '\0';
2062 *p_buflen = 0;
2063 modname = PyDict_GetItem(globals, namestr);
2064 if (modname == NULL || !PyString_Check(modname))
2065 return Py_None;
2066
2067 modpath = PyDict_GetItem(globals, pathstr);
2068 if (modpath != NULL) {
Martin v. Löwis725507b2006-03-07 12:08:51 +00002069 Py_ssize_t len = PyString_GET_SIZE(modname);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002070 if (len > MAXPATHLEN) {
2071 PyErr_SetString(PyExc_ValueError,
2072 "Module name too long");
2073 return NULL;
2074 }
2075 strcpy(buf, PyString_AS_STRING(modname));
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002076 }
2077 else {
2078 char *start = PyString_AS_STRING(modname);
2079 char *lastdot = strrchr(start, '.');
Fred Drake4c82b232000-06-30 16:18:57 +00002080 size_t len;
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002081 if (lastdot == NULL && level > 0) {
2082 PyErr_SetString(PyExc_ValueError,
2083 "Relative importpath too deep");
2084 return NULL;
2085 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002086 if (lastdot == NULL)
2087 return Py_None;
2088 len = lastdot - start;
2089 if (len >= MAXPATHLEN) {
2090 PyErr_SetString(PyExc_ValueError,
2091 "Module name too long");
2092 return NULL;
2093 }
2094 strncpy(buf, start, len);
2095 buf[len] = '\0';
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002096 }
2097
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002098 while (--level > 0) {
2099 char *dot = strrchr(buf, '.');
2100 if (dot == NULL) {
2101 PyErr_SetString(PyExc_ValueError,
2102 "Relative importpath too deep");
2103 return NULL;
2104 }
2105 *dot = '\0';
2106 }
2107 *p_buflen = strlen(buf);
2108
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002109 modules = PyImport_GetModuleDict();
2110 parent = PyDict_GetItemString(modules, buf);
2111 if (parent == NULL)
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002112 PyErr_Format(PyExc_SystemError,
2113 "Parent module '%.200s' not loaded", buf);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002114 return parent;
2115 /* We expect, but can't guarantee, if parent != None, that:
2116 - parent.__name__ == buf
2117 - parent.__dict__ is globals
2118 If this is violated... Who cares? */
2119}
2120
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002121/* altmod is either None or same as mod */
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002122static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002123load_next(PyObject *mod, PyObject *altmod, char **p_name, char *buf,
Martin v. Löwis18e16552006-02-15 17:27:45 +00002124 Py_ssize_t *p_buflen)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002125{
2126 char *name = *p_name;
2127 char *dot = strchr(name, '.');
Fred Drake4c82b232000-06-30 16:18:57 +00002128 size_t len;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002129 char *p;
2130 PyObject *result;
2131
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002132 if (strlen(name) == 0) {
Thomas Wouters8ddab272006-04-04 16:17:02 +00002133 /* completely empty module name should only happen in
2134 'from . import' (or '__import__("")')*/
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002135 Py_INCREF(mod);
2136 *p_name = NULL;
2137 return mod;
2138 }
2139
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002140 if (dot == NULL) {
2141 *p_name = NULL;
2142 len = strlen(name);
2143 }
2144 else {
2145 *p_name = dot+1;
2146 len = dot-name;
2147 }
Guido van Rossum111c20b1998-04-11 17:38:22 +00002148 if (len == 0) {
2149 PyErr_SetString(PyExc_ValueError,
2150 "Empty module name");
2151 return NULL;
2152 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002153
2154 p = buf + *p_buflen;
2155 if (p != buf)
2156 *p++ = '.';
2157 if (p+len-buf >= MAXPATHLEN) {
2158 PyErr_SetString(PyExc_ValueError,
2159 "Module name too long");
2160 return NULL;
2161 }
2162 strncpy(p, name, len);
2163 p[len] = '\0';
2164 *p_buflen = p+len-buf;
2165
2166 result = import_submodule(mod, p, buf);
2167 if (result == Py_None && altmod != mod) {
2168 Py_DECREF(result);
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002169 /* Here, altmod must be None and mod must not be None */
Guido van Rossum0c819451997-09-07 06:16:57 +00002170 result = import_submodule(altmod, p, p);
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002171 if (result != NULL && result != Py_None) {
2172 if (mark_miss(buf) != 0) {
2173 Py_DECREF(result);
2174 return NULL;
2175 }
2176 strncpy(buf, name, len);
2177 buf[len] = '\0';
2178 *p_buflen = len;
2179 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002180 }
2181 if (result == NULL)
2182 return NULL;
2183
2184 if (result == Py_None) {
2185 Py_DECREF(result);
2186 PyErr_Format(PyExc_ImportError,
2187 "No module named %.200s", name);
2188 return NULL;
2189 }
2190
2191 return result;
2192}
2193
2194static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002195mark_miss(char *name)
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00002196{
2197 PyObject *modules = PyImport_GetModuleDict();
2198 return PyDict_SetItemString(modules, name, Py_None);
2199}
2200
2201static int
Martin v. Löwis18e16552006-02-15 17:27:45 +00002202ensure_fromlist(PyObject *mod, PyObject *fromlist, char *buf, Py_ssize_t buflen,
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002203 int recursive)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002204{
2205 int i;
2206
2207 if (!PyObject_HasAttrString(mod, "__path__"))
2208 return 1;
2209
2210 for (i = 0; ; i++) {
2211 PyObject *item = PySequence_GetItem(fromlist, i);
2212 int hasit;
2213 if (item == NULL) {
2214 if (PyErr_ExceptionMatches(PyExc_IndexError)) {
2215 PyErr_Clear();
2216 return 1;
2217 }
2218 return 0;
2219 }
2220 if (!PyString_Check(item)) {
2221 PyErr_SetString(PyExc_TypeError,
2222 "Item in ``from list'' not a string");
2223 Py_DECREF(item);
2224 return 0;
2225 }
2226 if (PyString_AS_STRING(item)[0] == '*') {
Guido van Rossum9905ef91997-09-08 16:07:11 +00002227 PyObject *all;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002228 Py_DECREF(item);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002229 /* See if the package defines __all__ */
2230 if (recursive)
2231 continue; /* Avoid endless recursion */
2232 all = PyObject_GetAttrString(mod, "__all__");
2233 if (all == NULL)
2234 PyErr_Clear();
2235 else {
Martin v. Löwis83969ee2004-03-23 16:28:13 +00002236 int ret = ensure_fromlist(mod, all, buf, buflen, 1);
Guido van Rossum9905ef91997-09-08 16:07:11 +00002237 Py_DECREF(all);
Martin v. Löwis83969ee2004-03-23 16:28:13 +00002238 if (!ret)
2239 return 0;
Guido van Rossum9905ef91997-09-08 16:07:11 +00002240 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002241 continue;
2242 }
2243 hasit = PyObject_HasAttr(mod, item);
2244 if (!hasit) {
2245 char *subname = PyString_AS_STRING(item);
2246 PyObject *submod;
2247 char *p;
2248 if (buflen + strlen(subname) >= MAXPATHLEN) {
2249 PyErr_SetString(PyExc_ValueError,
2250 "Module name too long");
2251 Py_DECREF(item);
2252 return 0;
2253 }
2254 p = buf + buflen;
2255 *p++ = '.';
2256 strcpy(p, subname);
2257 submod = import_submodule(mod, subname, buf);
2258 Py_XDECREF(submod);
2259 if (submod == NULL) {
2260 Py_DECREF(item);
2261 return 0;
2262 }
2263 }
2264 Py_DECREF(item);
2265 }
2266
Guido van Rossuma7f2e811997-10-03 15:33:32 +00002267 /* NOTREACHED */
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002268}
2269
Neil Schemenauer00b09662003-06-16 21:03:07 +00002270static int
2271add_submodule(PyObject *mod, PyObject *submod, char *fullname, char *subname,
2272 PyObject *modules)
2273{
2274 if (mod == Py_None)
2275 return 1;
2276 /* Irrespective of the success of this load, make a
2277 reference to it in the parent package module. A copy gets
2278 saved in the modules dictionary under the full name, so get a
2279 reference from there, if need be. (The exception is when the
2280 load failed with a SyntaxError -- then there's no trace in
2281 sys.modules. In that case, of course, do nothing extra.) */
2282 if (submod == NULL) {
2283 submod = PyDict_GetItemString(modules, fullname);
2284 if (submod == NULL)
2285 return 1;
2286 }
2287 if (PyModule_Check(mod)) {
2288 /* We can't use setattr here since it can give a
2289 * spurious warning if the submodule name shadows a
2290 * builtin name */
2291 PyObject *dict = PyModule_GetDict(mod);
2292 if (!dict)
2293 return 0;
2294 if (PyDict_SetItemString(dict, subname, submod) < 0)
2295 return 0;
2296 }
2297 else {
2298 if (PyObject_SetAttrString(mod, subname, submod) < 0)
2299 return 0;
2300 }
2301 return 1;
2302}
2303
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002304static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002305import_submodule(PyObject *mod, char *subname, char *fullname)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002306{
Guido van Rossum25ce5661997-08-02 03:10:38 +00002307 PyObject *modules = PyImport_GetModuleDict();
Neil Schemenauer00b09662003-06-16 21:03:07 +00002308 PyObject *m = NULL;
Guido van Rossum74e6a111994-08-29 12:54:38 +00002309
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002310 /* Require:
2311 if mod == None: subname == fullname
2312 else: mod.__name__ + "." + subname == fullname
2313 */
2314
Tim Peters50d8d372001-02-28 05:34:27 +00002315 if ((m = PyDict_GetItemString(modules, fullname)) != NULL) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002316 Py_INCREF(m);
Guido van Rossum7f9fa971995-01-20 16:53:12 +00002317 }
2318 else {
Just van Rossum52e14d62002-12-30 22:08:05 +00002319 PyObject *path, *loader = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002320 char buf[MAXPATHLEN+1];
2321 struct filedescr *fdp;
2322 FILE *fp = NULL;
2323
Guido van Rossum9c0afe51998-05-19 15:09:05 +00002324 if (mod == Py_None)
2325 path = NULL;
2326 else {
2327 path = PyObject_GetAttrString(mod, "__path__");
2328 if (path == NULL) {
2329 PyErr_Clear();
2330 Py_INCREF(Py_None);
2331 return Py_None;
2332 }
2333 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002334
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002335 buf[0] = '\0';
Just van Rossum52e14d62002-12-30 22:08:05 +00002336 fdp = find_module(fullname, subname, path, buf, MAXPATHLEN+1,
2337 &fp, &loader);
Guido van Rossumb68cd421998-07-01 17:36:26 +00002338 Py_XDECREF(path);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002339 if (fdp == NULL) {
2340 if (!PyErr_ExceptionMatches(PyExc_ImportError))
2341 return NULL;
2342 PyErr_Clear();
2343 Py_INCREF(Py_None);
2344 return Py_None;
2345 }
Just van Rossum52e14d62002-12-30 22:08:05 +00002346 m = load_module(fullname, fp, buf, fdp->type, loader);
2347 Py_XDECREF(loader);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002348 if (fp)
2349 fclose(fp);
Neil Schemenauer00b09662003-06-16 21:03:07 +00002350 if (!add_submodule(mod, m, fullname, subname, modules)) {
2351 Py_XDECREF(m);
2352 m = NULL;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002353 }
Guido van Rossum74e6a111994-08-29 12:54:38 +00002354 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002355
2356 return m;
Guido van Rossum74e6a111994-08-29 12:54:38 +00002357}
2358
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002359
2360/* Re-import a module of any kind and return its module object, WITH
2361 INCREMENTED REFERENCE COUNT */
2362
Guido van Rossum79f25d91997-04-29 20:08:16 +00002363PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002364PyImport_ReloadModule(PyObject *m)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002365{
Guido van Rossum25ce5661997-08-02 03:10:38 +00002366 PyObject *modules = PyImport_GetModuleDict();
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002367 PyObject *path = NULL, *loader = NULL;
Guido van Rossum222ef561997-09-06 19:41:09 +00002368 char *name, *subname;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002369 char buf[MAXPATHLEN+1];
2370 struct filedescr *fdp;
2371 FILE *fp = NULL;
Tim Peters1cd70172004-08-02 03:52:12 +00002372 PyObject *newm;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002373
Guido van Rossum79f25d91997-04-29 20:08:16 +00002374 if (m == NULL || !PyModule_Check(m)) {
2375 PyErr_SetString(PyExc_TypeError,
2376 "reload() argument must be module");
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002377 return NULL;
2378 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002379 name = PyModule_GetName(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002380 if (name == NULL)
2381 return NULL;
Guido van Rossum25ce5661997-08-02 03:10:38 +00002382 if (m != PyDict_GetItemString(modules, name)) {
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002383 PyErr_Format(PyExc_ImportError,
2384 "reload(): module %.200s not in sys.modules",
2385 name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002386 return NULL;
2387 }
Guido van Rossum222ef561997-09-06 19:41:09 +00002388 subname = strrchr(name, '.');
2389 if (subname == NULL)
2390 subname = name;
2391 else {
2392 PyObject *parentname, *parent;
2393 parentname = PyString_FromStringAndSize(name, (subname-name));
2394 if (parentname == NULL)
2395 return NULL;
2396 parent = PyDict_GetItem(modules, parentname);
2397 if (parent == NULL) {
2398 PyErr_Format(PyExc_ImportError,
2399 "reload(): parent %.200s not in sys.modules",
Georg Brandl0c55f292005-09-14 06:56:20 +00002400 PyString_AS_STRING(parentname));
2401 Py_DECREF(parentname);
Guido van Rossum222ef561997-09-06 19:41:09 +00002402 return NULL;
2403 }
Georg Brandl0c55f292005-09-14 06:56:20 +00002404 Py_DECREF(parentname);
Guido van Rossum222ef561997-09-06 19:41:09 +00002405 subname++;
2406 path = PyObject_GetAttrString(parent, "__path__");
2407 if (path == NULL)
2408 PyErr_Clear();
2409 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002410 buf[0] = '\0';
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002411 fdp = find_module(name, subname, path, buf, MAXPATHLEN+1, &fp, &loader);
Guido van Rossum222ef561997-09-06 19:41:09 +00002412 Py_XDECREF(path);
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002413
2414 if (fdp == NULL) {
2415 Py_XDECREF(loader);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002416 return NULL;
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00002417 }
2418
2419 newm = load_module(name, fp, buf, fdp->type, loader);
2420 Py_XDECREF(loader);
2421
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002422 if (fp)
2423 fclose(fp);
Tim Peters1cd70172004-08-02 03:52:12 +00002424 if (newm == NULL) {
2425 /* load_module probably removed name from modules because of
2426 * the error. Put back the original module object. We're
2427 * going to return NULL in this case regardless of whether
2428 * replacing name succeeds, so the return value is ignored.
2429 */
2430 PyDict_SetItemString(modules, name, m);
2431 }
2432 return newm;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002433}
2434
2435
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002436/* Higher-level import emulator which emulates the "import" statement
2437 more accurately -- it invokes the __import__() function from the
2438 builtins of the current globals. This means that the import is
2439 done using whatever import hooks are installed in the current
Guido van Rossum6058eb41998-12-21 19:51:00 +00002440 environment, e.g. by "rexec".
2441 A dummy list ["__doc__"] is passed as the 4th argument so that
2442 e.g. PyImport_Import(PyString_FromString("win32com.client.gencache"))
2443 will return <module "gencache"> instead of <module "win32com">. */
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002444
2445PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002446PyImport_Import(PyObject *module_name)
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002447{
2448 static PyObject *silly_list = NULL;
2449 static PyObject *builtins_str = NULL;
2450 static PyObject *import_str = NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002451 PyObject *globals = NULL;
2452 PyObject *import = NULL;
2453 PyObject *builtins = NULL;
2454 PyObject *r = NULL;
2455
2456 /* Initialize constant string objects */
2457 if (silly_list == NULL) {
2458 import_str = PyString_InternFromString("__import__");
2459 if (import_str == NULL)
2460 return NULL;
2461 builtins_str = PyString_InternFromString("__builtins__");
2462 if (builtins_str == NULL)
2463 return NULL;
2464 silly_list = Py_BuildValue("[s]", "__doc__");
2465 if (silly_list == NULL)
2466 return NULL;
2467 }
2468
2469 /* Get the builtins from current globals */
2470 globals = PyEval_GetGlobals();
Guido van Rossum85cd1d62001-02-20 21:43:24 +00002471 if (globals != NULL) {
Guido van Rossum66468561998-10-22 15:46:50 +00002472 Py_INCREF(globals);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002473 builtins = PyObject_GetItem(globals, builtins_str);
2474 if (builtins == NULL)
2475 goto err;
2476 }
2477 else {
2478 /* No globals -- use standard builtins, and fake globals */
2479 PyErr_Clear();
2480
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002481 builtins = PyImport_ImportModuleLevel("__builtin__",
2482 NULL, NULL, NULL, 0);
Guido van Rossum85cd1d62001-02-20 21:43:24 +00002483 if (builtins == NULL)
2484 return NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002485 globals = Py_BuildValue("{OO}", builtins_str, builtins);
2486 if (globals == NULL)
2487 goto err;
2488 }
2489
2490 /* Get the __import__ function from the builtins */
Tim Peters6d6c1a32001-08-02 04:15:00 +00002491 if (PyDict_Check(builtins)) {
Fred Drakea76ba6e2001-03-06 06:31:15 +00002492 import = PyObject_GetItem(builtins, import_str);
Tim Peters6d6c1a32001-08-02 04:15:00 +00002493 if (import == NULL)
2494 PyErr_SetObject(PyExc_KeyError, import_str);
2495 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002496 else
Fred Drakea76ba6e2001-03-06 06:31:15 +00002497 import = PyObject_GetAttr(builtins, import_str);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002498 if (import == NULL)
2499 goto err;
2500
2501 /* Call the _import__ function with the proper argument list */
2502 r = PyObject_CallFunction(import, "OOOO",
2503 module_name, globals, globals, silly_list);
2504
2505 err:
2506 Py_XDECREF(globals);
2507 Py_XDECREF(builtins);
2508 Py_XDECREF(import);
Tim Peters50d8d372001-02-28 05:34:27 +00002509
Guido van Rossumd47a0a81997-08-14 20:11:26 +00002510 return r;
2511}
2512
2513
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002514/* Module 'imp' provides Python access to the primitives used for
2515 importing modules.
2516*/
2517
Guido van Rossum79f25d91997-04-29 20:08:16 +00002518static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002519imp_get_magic(PyObject *self, PyObject *noargs)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002520{
2521 char buf[4];
2522
Guido van Rossum96774c12000-05-01 20:19:08 +00002523 buf[0] = (char) ((pyc_magic >> 0) & 0xff);
2524 buf[1] = (char) ((pyc_magic >> 8) & 0xff);
2525 buf[2] = (char) ((pyc_magic >> 16) & 0xff);
2526 buf[3] = (char) ((pyc_magic >> 24) & 0xff);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002527
Guido van Rossum79f25d91997-04-29 20:08:16 +00002528 return PyString_FromStringAndSize(buf, 4);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002529}
2530
Guido van Rossum79f25d91997-04-29 20:08:16 +00002531static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002532imp_get_suffixes(PyObject *self, PyObject *noargs)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002533{
Guido van Rossum79f25d91997-04-29 20:08:16 +00002534 PyObject *list;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002535 struct filedescr *fdp;
2536
Guido van Rossum79f25d91997-04-29 20:08:16 +00002537 list = PyList_New(0);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002538 if (list == NULL)
2539 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002540 for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
2541 PyObject *item = Py_BuildValue("ssi",
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002542 fdp->suffix, fdp->mode, fdp->type);
2543 if (item == NULL) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002544 Py_DECREF(list);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002545 return NULL;
2546 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002547 if (PyList_Append(list, item) < 0) {
2548 Py_DECREF(list);
2549 Py_DECREF(item);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002550 return NULL;
2551 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002552 Py_DECREF(item);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002553 }
2554 return list;
2555}
2556
Guido van Rossum79f25d91997-04-29 20:08:16 +00002557static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002558call_find_module(char *name, PyObject *path)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002559{
Tim Petersdbd9ba62000-07-09 03:09:57 +00002560 extern int fclose(FILE *);
Guido van Rossum79f25d91997-04-29 20:08:16 +00002561 PyObject *fob, *ret;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002562 struct filedescr *fdp;
2563 char pathname[MAXPATHLEN+1];
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002564 FILE *fp = NULL;
2565
2566 pathname[0] = '\0';
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002567 if (path == Py_None)
2568 path = NULL;
Just van Rossum52e14d62002-12-30 22:08:05 +00002569 fdp = find_module(NULL, name, path, pathname, MAXPATHLEN+1, &fp, NULL);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002570 if (fdp == NULL)
2571 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002572 if (fp != NULL) {
2573 fob = PyFile_FromFile(fp, pathname, fdp->mode, fclose);
2574 if (fob == NULL) {
2575 fclose(fp);
2576 return NULL;
2577 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002578 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002579 else {
2580 fob = Py_None;
2581 Py_INCREF(fob);
Tim Peters50d8d372001-02-28 05:34:27 +00002582 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002583 ret = Py_BuildValue("Os(ssi)",
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002584 fob, pathname, fdp->suffix, fdp->mode, fdp->type);
Guido van Rossum79f25d91997-04-29 20:08:16 +00002585 Py_DECREF(fob);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002586 return ret;
2587}
2588
Guido van Rossum79f25d91997-04-29 20:08:16 +00002589static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002590imp_find_module(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002591{
2592 char *name;
2593 PyObject *path = NULL;
Guido van Rossum43713e52000-02-29 13:59:29 +00002594 if (!PyArg_ParseTuple(args, "s|O:find_module", &name, &path))
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002595 return NULL;
2596 return call_find_module(name, path);
2597}
2598
2599static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002600imp_init_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002601{
2602 char *name;
2603 int ret;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002604 PyObject *m;
Guido van Rossum43713e52000-02-29 13:59:29 +00002605 if (!PyArg_ParseTuple(args, "s:init_builtin", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002606 return NULL;
2607 ret = init_builtin(name);
2608 if (ret < 0)
2609 return NULL;
2610 if (ret == 0) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002611 Py_INCREF(Py_None);
2612 return Py_None;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002613 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002614 m = PyImport_AddModule(name);
2615 Py_XINCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002616 return m;
2617}
2618
Guido van Rossum79f25d91997-04-29 20:08:16 +00002619static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002620imp_init_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002621{
2622 char *name;
2623 int ret;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002624 PyObject *m;
Guido van Rossum43713e52000-02-29 13:59:29 +00002625 if (!PyArg_ParseTuple(args, "s:init_frozen", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002626 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002627 ret = PyImport_ImportFrozenModule(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002628 if (ret < 0)
2629 return NULL;
2630 if (ret == 0) {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002631 Py_INCREF(Py_None);
2632 return Py_None;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002633 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002634 m = PyImport_AddModule(name);
2635 Py_XINCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002636 return m;
2637}
2638
Guido van Rossum79f25d91997-04-29 20:08:16 +00002639static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002640imp_get_frozen_object(PyObject *self, PyObject *args)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002641{
2642 char *name;
Jack Jansen95ffa231995-10-03 14:38:41 +00002643
Guido van Rossum43713e52000-02-29 13:59:29 +00002644 if (!PyArg_ParseTuple(args, "s:get_frozen_object", &name))
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002645 return NULL;
2646 return get_frozen_object(name);
2647}
2648
Guido van Rossum79f25d91997-04-29 20:08:16 +00002649static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002650imp_is_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002651{
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002652 char *name;
Guido van Rossum43713e52000-02-29 13:59:29 +00002653 if (!PyArg_ParseTuple(args, "s:is_builtin", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002654 return NULL;
Guido van Rossum50ee94f2002-04-09 18:00:58 +00002655 return PyInt_FromLong(is_builtin(name));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002656}
2657
Guido van Rossum79f25d91997-04-29 20:08:16 +00002658static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002659imp_is_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002660{
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002661 char *name;
Guido van Rossum323bf5e1998-06-24 03:54:06 +00002662 struct _frozen *p;
Guido van Rossum43713e52000-02-29 13:59:29 +00002663 if (!PyArg_ParseTuple(args, "s:is_frozen", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002664 return NULL;
Guido van Rossum323bf5e1998-06-24 03:54:06 +00002665 p = find_frozen(name);
Guido van Rossumb8bff3f2002-04-07 06:34:38 +00002666 return PyBool_FromLong((long) (p == NULL ? 0 : p->size));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002667}
2668
2669static FILE *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002670get_file(char *pathname, PyObject *fob, char *mode)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002671{
2672 FILE *fp;
2673 if (fob == NULL) {
Tim Peters86c7d2f2004-08-01 23:24:21 +00002674 if (mode[0] == 'U')
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00002675 mode = "r" PY_STDIOTEXTMODE;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002676 fp = fopen(pathname, mode);
2677 if (fp == NULL)
Guido van Rossum79f25d91997-04-29 20:08:16 +00002678 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002679 }
2680 else {
Guido van Rossum79f25d91997-04-29 20:08:16 +00002681 fp = PyFile_AsFile(fob);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002682 if (fp == NULL)
Guido van Rossum79f25d91997-04-29 20:08:16 +00002683 PyErr_SetString(PyExc_ValueError,
2684 "bad/closed file object");
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002685 }
2686 return fp;
2687}
2688
Guido van Rossum79f25d91997-04-29 20:08:16 +00002689static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002690imp_load_compiled(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002691{
2692 char *name;
2693 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002694 PyObject *fob = NULL;
2695 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002696 FILE *fp;
Guido van Rossum43713e52000-02-29 13:59:29 +00002697 if (!PyArg_ParseTuple(args, "ss|O!:load_compiled", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002698 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002699 return NULL;
2700 fp = get_file(pathname, fob, "rb");
2701 if (fp == NULL)
2702 return NULL;
2703 m = load_compiled_module(name, pathname, fp);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002704 if (fob == NULL)
2705 fclose(fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002706 return m;
2707}
2708
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002709#ifdef HAVE_DYNAMIC_LOADING
2710
Guido van Rossum79f25d91997-04-29 20:08:16 +00002711static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002712imp_load_dynamic(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002713{
2714 char *name;
2715 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002716 PyObject *fob = NULL;
2717 PyObject *m;
Guido van Rossum7faeab31995-07-07 22:50:36 +00002718 FILE *fp = NULL;
Guido van Rossum43713e52000-02-29 13:59:29 +00002719 if (!PyArg_ParseTuple(args, "ss|O!:load_dynamic", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002720 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002721 return NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002722 if (fob) {
Guido van Rossum7faeab31995-07-07 22:50:36 +00002723 fp = get_file(pathname, fob, "r");
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002724 if (fp == NULL)
2725 return NULL;
2726 }
Guido van Rossum79f25d91997-04-29 20:08:16 +00002727 m = _PyImport_LoadDynamicModule(name, pathname, fp);
Guido van Rossum7faeab31995-07-07 22:50:36 +00002728 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002729}
2730
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002731#endif /* HAVE_DYNAMIC_LOADING */
2732
Guido van Rossum79f25d91997-04-29 20:08:16 +00002733static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002734imp_load_source(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002735{
2736 char *name;
2737 char *pathname;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002738 PyObject *fob = NULL;
2739 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002740 FILE *fp;
Guido van Rossum43713e52000-02-29 13:59:29 +00002741 if (!PyArg_ParseTuple(args, "ss|O!:load_source", &name, &pathname,
Guido van Rossum79f25d91997-04-29 20:08:16 +00002742 &PyFile_Type, &fob))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002743 return NULL;
2744 fp = get_file(pathname, fob, "r");
2745 if (fp == NULL)
2746 return NULL;
2747 m = load_source_module(name, pathname, fp);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002748 if (fob == NULL)
2749 fclose(fp);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002750 return m;
2751}
2752
Guido van Rossum79f25d91997-04-29 20:08:16 +00002753static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002754imp_load_module(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002755{
2756 char *name;
2757 PyObject *fob;
2758 char *pathname;
2759 char *suffix; /* Unused */
2760 char *mode;
2761 int type;
2762 FILE *fp;
2763
Guido van Rossum43713e52000-02-29 13:59:29 +00002764 if (!PyArg_ParseTuple(args, "sOs(ssi):load_module",
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002765 &name, &fob, &pathname,
2766 &suffix, &mode, &type))
2767 return NULL;
Guido van Rossum5e2c5fa2002-05-30 17:33:07 +00002768 if (*mode) {
2769 /* Mode must start with 'r' or 'U' and must not contain '+'.
2770 Implicit in this test is the assumption that the mode
2771 may contain other modifiers like 'b' or 't'. */
2772
2773 if (!(*mode == 'r' || *mode == 'U') || strchr(mode, '+')) {
Jeremy Hylton4ae6fae2002-05-30 17:15:25 +00002774 PyErr_Format(PyExc_ValueError,
2775 "invalid file open mode %.200s", mode);
2776 return NULL;
Guido van Rossum5e2c5fa2002-05-30 17:33:07 +00002777 }
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002778 }
2779 if (fob == Py_None)
2780 fp = NULL;
2781 else {
2782 if (!PyFile_Check(fob)) {
2783 PyErr_SetString(PyExc_ValueError,
2784 "load_module arg#2 should be a file or None");
2785 return NULL;
2786 }
2787 fp = get_file(pathname, fob, mode);
2788 if (fp == NULL)
2789 return NULL;
2790 }
Just van Rossum52e14d62002-12-30 22:08:05 +00002791 return load_module(name, fp, pathname, type, NULL);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002792}
2793
2794static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002795imp_load_package(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002796{
2797 char *name;
2798 char *pathname;
Guido van Rossum43713e52000-02-29 13:59:29 +00002799 if (!PyArg_ParseTuple(args, "ss:load_package", &name, &pathname))
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002800 return NULL;
2801 return load_package(name, pathname);
2802}
2803
2804static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002805imp_new_module(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002806{
2807 char *name;
Guido van Rossum43713e52000-02-29 13:59:29 +00002808 if (!PyArg_ParseTuple(args, "s:new_module", &name))
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002809 return NULL;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002810 return PyModule_New(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002811}
2812
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002813/* Doc strings */
2814
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002815PyDoc_STRVAR(doc_imp,
2816"This module provides the components needed to build your own\n\
2817__import__ function. Undocumented functions are obsolete.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002818
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002819PyDoc_STRVAR(doc_find_module,
2820"find_module(name, [path]) -> (file, filename, (suffix, mode, type))\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002821Search for a module. If path is omitted or None, search for a\n\
2822built-in, frozen or special module and continue search in sys.path.\n\
2823The module name cannot contain '.'; to search for a submodule of a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002824package, pass the submodule name and the package's __path__.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002825
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002826PyDoc_STRVAR(doc_load_module,
2827"load_module(name, file, filename, (suffix, mode, type)) -> module\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002828Load a module, given information returned by find_module().\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002829The module name must include the full package name, if any.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002830
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002831PyDoc_STRVAR(doc_get_magic,
2832"get_magic() -> string\n\
2833Return the magic number for .pyc or .pyo files.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002834
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002835PyDoc_STRVAR(doc_get_suffixes,
2836"get_suffixes() -> [(suffix, mode, type), ...]\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002837Return a list of (suffix, mode, type) tuples describing the files\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002838that find_module() looks for.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002839
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002840PyDoc_STRVAR(doc_new_module,
2841"new_module(name) -> module\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002842Create a new module. Do not enter it in sys.modules.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002843The module name must include the full package name, if any.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002844
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002845PyDoc_STRVAR(doc_lock_held,
Tim Petersa7c65092004-08-01 23:26:05 +00002846"lock_held() -> boolean\n\
2847Return True if the import lock is currently held, else False.\n\
2848On platforms without threads, return False.");
Tim Peters69232342001-08-30 05:16:13 +00002849
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002850PyDoc_STRVAR(doc_acquire_lock,
2851"acquire_lock() -> None\n\
Neal Norwitz2294c0d2003-02-12 23:02:21 +00002852Acquires the interpreter's import lock for the current thread.\n\
2853This lock should be used by import hooks to ensure thread-safety\n\
2854when importing modules.\n\
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00002855On platforms without threads, this function does nothing.");
2856
2857PyDoc_STRVAR(doc_release_lock,
2858"release_lock() -> None\n\
2859Release the interpreter's import lock.\n\
2860On platforms without threads, this function does nothing.");
2861
Guido van Rossum79f25d91997-04-29 20:08:16 +00002862static PyMethodDef imp_methods[] = {
Neal Norwitz08ea61a2003-02-17 18:18:00 +00002863 {"find_module", imp_find_module, METH_VARARGS, doc_find_module},
2864 {"get_magic", imp_get_magic, METH_NOARGS, doc_get_magic},
2865 {"get_suffixes", imp_get_suffixes, METH_NOARGS, doc_get_suffixes},
2866 {"load_module", imp_load_module, METH_VARARGS, doc_load_module},
2867 {"new_module", imp_new_module, METH_VARARGS, doc_new_module},
2868 {"lock_held", imp_lock_held, METH_NOARGS, doc_lock_held},
2869 {"acquire_lock", imp_acquire_lock, METH_NOARGS, doc_acquire_lock},
2870 {"release_lock", imp_release_lock, METH_NOARGS, doc_release_lock},
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002871 /* The rest are obsolete */
Neal Norwitz031829d2002-03-31 14:37:44 +00002872 {"get_frozen_object", imp_get_frozen_object, METH_VARARGS},
2873 {"init_builtin", imp_init_builtin, METH_VARARGS},
2874 {"init_frozen", imp_init_frozen, METH_VARARGS},
2875 {"is_builtin", imp_is_builtin, METH_VARARGS},
2876 {"is_frozen", imp_is_frozen, METH_VARARGS},
2877 {"load_compiled", imp_load_compiled, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002878#ifdef HAVE_DYNAMIC_LOADING
Neal Norwitz031829d2002-03-31 14:37:44 +00002879 {"load_dynamic", imp_load_dynamic, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002880#endif
Neal Norwitz031829d2002-03-31 14:37:44 +00002881 {"load_package", imp_load_package, METH_VARARGS},
Neal Norwitz031829d2002-03-31 14:37:44 +00002882 {"load_source", imp_load_source, METH_VARARGS},
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002883 {NULL, NULL} /* sentinel */
2884};
2885
Guido van Rossum1a8791e1998-08-04 22:46:29 +00002886static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002887setint(PyObject *d, char *name, int value)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002888{
2889 PyObject *v;
2890 int err;
2891
2892 v = PyInt_FromLong((long)value);
2893 err = PyDict_SetItemString(d, name, v);
2894 Py_XDECREF(v);
2895 return err;
2896}
2897
Jason Tishler6bc06ec2003-09-04 11:59:50 +00002898PyMODINIT_FUNC
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002899initimp(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002900{
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002901 PyObject *m, *d;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002902
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002903 m = Py_InitModule4("imp", imp_methods, doc_imp,
2904 NULL, PYTHON_API_VERSION);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00002905 if (m == NULL)
2906 goto failure;
Guido van Rossum79f25d91997-04-29 20:08:16 +00002907 d = PyModule_GetDict(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002908
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002909 if (setint(d, "SEARCH_ERROR", SEARCH_ERROR) < 0) goto failure;
2910 if (setint(d, "PY_SOURCE", PY_SOURCE) < 0) goto failure;
2911 if (setint(d, "PY_COMPILED", PY_COMPILED) < 0) goto failure;
2912 if (setint(d, "C_EXTENSION", C_EXTENSION) < 0) goto failure;
2913 if (setint(d, "PY_RESOURCE", PY_RESOURCE) < 0) goto failure;
2914 if (setint(d, "PKG_DIRECTORY", PKG_DIRECTORY) < 0) goto failure;
2915 if (setint(d, "C_BUILTIN", C_BUILTIN) < 0) goto failure;
2916 if (setint(d, "PY_FROZEN", PY_FROZEN) < 0) goto failure;
Guido van Rossum0f84a341998-08-06 13:36:01 +00002917 if (setint(d, "PY_CODERESOURCE", PY_CODERESOURCE) < 0) goto failure;
Just van Rossum52e14d62002-12-30 22:08:05 +00002918 if (setint(d, "IMP_HOOK", IMP_HOOK) < 0) goto failure;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002919
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002920 failure:
2921 ;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002922}
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002923
2924
Guido van Rossumb18618d2000-05-03 23:44:39 +00002925/* API for embedding applications that want to add their own entries
2926 to the table of built-in modules. This should normally be called
2927 *before* Py_Initialize(). When the table resize fails, -1 is
2928 returned and the existing table is unchanged.
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002929
2930 After a similar function by Just van Rossum. */
2931
2932int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002933PyImport_ExtendInittab(struct _inittab *newtab)
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002934{
2935 static struct _inittab *our_copy = NULL;
2936 struct _inittab *p;
2937 int i, n;
2938
2939 /* Count the number of entries in both tables */
2940 for (n = 0; newtab[n].name != NULL; n++)
2941 ;
2942 if (n == 0)
2943 return 0; /* Nothing to do */
2944 for (i = 0; PyImport_Inittab[i].name != NULL; i++)
2945 ;
2946
2947 /* Allocate new memory for the combined table */
Guido van Rossumb18618d2000-05-03 23:44:39 +00002948 p = our_copy;
2949 PyMem_RESIZE(p, struct _inittab, i+n+1);
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002950 if (p == NULL)
2951 return -1;
2952
2953 /* Copy the tables into the new memory */
2954 if (our_copy != PyImport_Inittab)
2955 memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct _inittab));
2956 PyImport_Inittab = our_copy = p;
2957 memcpy(p+i, newtab, (n+1) * sizeof(struct _inittab));
2958
2959 return 0;
2960}
2961
2962/* Shorthand to add a single entry given a name and a function */
2963
2964int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002965PyImport_AppendInittab(char *name, void (*initfunc)(void))
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002966{
2967 struct _inittab newtab[2];
2968
2969 memset(newtab, '\0', sizeof newtab);
2970
2971 newtab[0].name = name;
2972 newtab[0].initfunc = initfunc;
2973
2974 return PyImport_ExtendInittab(newtab);
2975}
Anthony Baxterac6bd462006-04-13 02:06:09 +00002976
2977#ifdef __cplusplus
2978}
2979#endif