Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | /* Module definition and import implementation */ |
| 3 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 4 | #include "Python.h" |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 5 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 6 | #include "Python-ast.h" |
Kristján Valur Jónsson | 67387fb | 2007-04-25 00:17:39 +0000 | [diff] [blame] | 7 | #undef Yield /* undefine macro conflicting with winbase.h */ |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 8 | #include "pyarena.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 9 | #include "pythonrun.h" |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 10 | #include "errcode.h" |
Guido van Rossum | c405b7b | 1991-06-04 19:39:42 +0000 | [diff] [blame] | 11 | #include "marshal.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 12 | #include "code.h" |
Guido van Rossum | c405b7b | 1991-06-04 19:39:42 +0000 | [diff] [blame] | 13 | #include "compile.h" |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 14 | #include "eval.h" |
Guido van Rossum | d8bac6d | 1992-02-26 15:19:13 +0000 | [diff] [blame] | 15 | #include "osdefs.h" |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 16 | #include "importdl.h" |
Guido van Rossum | c405b7b | 1991-06-04 19:39:42 +0000 | [diff] [blame] | 17 | |
Guido van Rossum | 55a8338 | 2000-09-20 20:31:38 +0000 | [diff] [blame] | 18 | #ifdef HAVE_FCNTL_H |
| 19 | #include <fcntl.h> |
| 20 | #endif |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +0000 | [diff] [blame] | 21 | #ifdef __cplusplus |
Brett Cannon | b166afc | 2010-05-05 20:25:47 +0000 | [diff] [blame] | 22 | extern "C" { |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +0000 | [diff] [blame] | 23 | #endif |
Guido van Rossum | 55a8338 | 2000-09-20 20:31:38 +0000 | [diff] [blame] | 24 | |
Christian Heimes | 5e8e6d2 | 2008-02-23 23:59:45 +0000 | [diff] [blame] | 25 | #ifdef MS_WINDOWS |
| 26 | /* for stat.st_mode */ |
| 27 | typedef unsigned short mode_t; |
| 28 | #endif |
| 29 | |
Guido van Rossum | 21d335e | 1993-10-15 13:01:11 +0000 | [diff] [blame] | 30 | |
Jeremy Hylton | d4ceb31 | 2004-04-01 02:45:22 +0000 | [diff] [blame] | 31 | /* Magic word to reject .pyc files generated by other Python versions. |
| 32 | It should change for each incompatible change to the bytecode. |
| 33 | |
| 34 | The value of CR and LF is incorporated so if you ever read or write |
Guido van Rossum | 7faeab3 | 1995-07-07 22:50:36 +0000 | [diff] [blame] | 35 | a .pyc file in text mode the magic number will be wrong; also, the |
Tim Peters | 36515e2 | 2001-11-18 04:06:29 +0000 | [diff] [blame] | 36 | Apple MPW compiler swaps their values, botching string constants. |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 37 | |
Martin v. Löwis | ef82d2f | 2004-06-27 16:51:46 +0000 | [diff] [blame] | 38 | The magic numbers must be spaced apart atleast 2 values, as the |
| 39 | -U interpeter flag will cause MAGIC+1 being used. They have been |
| 40 | odd numbers for some time now. |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 41 | |
Jeremy Hylton | d4ceb31 | 2004-04-01 02:45:22 +0000 | [diff] [blame] | 42 | There were a variety of old schemes for setting the magic number. |
| 43 | The current working scheme is to increment the previous value by |
| 44 | 10. |
Guido van Rossum | f689492 | 2002-08-31 15:16:14 +0000 | [diff] [blame] | 45 | |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 46 | Known values: |
| 47 | Python 1.5: 20121 |
| 48 | Python 1.5.1: 20121 |
| 49 | Python 1.5.2: 20121 |
Skip Montanaro | 4ec3c26 | 2006-03-25 14:12:03 +0000 | [diff] [blame] | 50 | Python 1.6: 50428 |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 51 | Python 2.0: 50823 |
| 52 | Python 2.0.1: 50823 |
| 53 | Python 2.1: 60202 |
| 54 | Python 2.1.1: 60202 |
| 55 | Python 2.1.2: 60202 |
| 56 | Python 2.2: 60717 |
Neal Norwitz | 7fdcb41 | 2002-06-14 01:07:39 +0000 | [diff] [blame] | 57 | Python 2.3a0: 62011 |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 58 | Python 2.3a0: 62021 |
Guido van Rossum | f689492 | 2002-08-31 15:16:14 +0000 | [diff] [blame] | 59 | Python 2.3a0: 62011 (!) |
Martin v. Löwis | ef82d2f | 2004-06-27 16:51:46 +0000 | [diff] [blame] | 60 | Python 2.4a0: 62041 |
Raymond Hettinger | fd2d1f7 | 2004-08-23 23:37:48 +0000 | [diff] [blame] | 61 | Python 2.4a3: 62051 |
Raymond Hettinger | 2c31a05 | 2004-09-22 18:44:21 +0000 | [diff] [blame] | 62 | Python 2.4b1: 62061 |
Michael W. Hudson | df88846 | 2005-06-03 14:41:55 +0000 | [diff] [blame] | 63 | Python 2.5a0: 62071 |
Michael W. Hudson | aee2e28 | 2005-10-21 11:32:20 +0000 | [diff] [blame] | 64 | Python 2.5a0: 62081 (ast-branch) |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 65 | Python 2.5a0: 62091 (with) |
Guido van Rossum | f669436 | 2006-03-10 02:28:35 +0000 | [diff] [blame] | 66 | Python 2.5a0: 62092 (changed WITH_CLEANUP opcode) |
Neal Norwitz | 0d62a06 | 2006-07-30 06:53:31 +0000 | [diff] [blame] | 67 | Python 2.5b3: 62101 (fix wrong code: for x, in ...) |
| 68 | Python 2.5b3: 62111 (fix wrong code: x += yield) |
Neal Norwitz | 9a70f95 | 2006-08-04 05:12:19 +0000 | [diff] [blame] | 69 | Python 2.5c1: 62121 (fix wrong lnotab with for loops and |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 70 | storing constants that should have been removed) |
Neal Norwitz | dac090d | 2006-09-05 03:53:08 +0000 | [diff] [blame] | 71 | Python 2.5c2: 62131 (fix wrong code: for x, in ... in listcomp/genexp) |
Raymond Hettinger | effde12 | 2007-12-18 18:26:18 +0000 | [diff] [blame] | 72 | Python 2.6a0: 62151 (peephole optimizations and STORE_MAP opcode) |
Nick Coghlan | 7af53be | 2008-03-07 14:13:28 +0000 | [diff] [blame] | 73 | Python 2.6a1: 62161 (WITH_CLEANUP optimization) |
Antoine Pitrou | d0c3515 | 2008-12-17 00:38:28 +0000 | [diff] [blame] | 74 | Python 2.7a0: 62171 (optimize list comprehensions/change LIST_APPEND) |
Jeffrey Yasskin | 68d6852 | 2009-02-28 19:03:21 +0000 | [diff] [blame] | 75 | Python 2.7a0: 62181 (optimize conditional branches: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 76 | introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE) |
Benjamin Peterson | 1880d8b | 2009-05-25 13:13:44 +0000 | [diff] [blame] | 77 | Python 2.7a0 62191 (introduce SETUP_WITH) |
Alexandre Vassalotti | ee936a2 | 2010-01-09 23:35:54 +0000 | [diff] [blame] | 78 | Python 2.7a0 62201 (introduce BUILD_SET) |
Alexandre Vassalotti | b646547 | 2010-01-11 22:36:12 +0000 | [diff] [blame] | 79 | Python 2.7a0 62211 (introduce MAP_ADD and SET_ADD) |
Michael W. Hudson | aee2e28 | 2005-10-21 11:32:20 +0000 | [diff] [blame] | 80 | . |
Tim Peters | 36515e2 | 2001-11-18 04:06:29 +0000 | [diff] [blame] | 81 | */ |
Alexandre Vassalotti | b646547 | 2010-01-11 22:36:12 +0000 | [diff] [blame] | 82 | #define MAGIC (62211 | ((long)'\r'<<16) | ((long)'\n'<<24)) |
Guido van Rossum | 3ddee71 | 1991-12-16 13:06:34 +0000 | [diff] [blame] | 83 | |
Guido van Rossum | 96774c1 | 2000-05-01 20:19:08 +0000 | [diff] [blame] | 84 | /* Magic word as global; note that _PyImport_Init() can change the |
Jeremy Hylton | 9262b8a | 2000-06-30 04:59:17 +0000 | [diff] [blame] | 85 | value of this global to accommodate for alterations of how the |
Guido van Rossum | 96774c1 | 2000-05-01 20:19:08 +0000 | [diff] [blame] | 86 | compiler works which are enabled by command line switches. */ |
Christian Heimes | 61e4590 | 2008-03-27 10:35:52 +0000 | [diff] [blame] | 87 | static long pyc_magic = MAGIC; |
Guido van Rossum | 96774c1 | 2000-05-01 20:19:08 +0000 | [diff] [blame] | 88 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 89 | /* See _PyImport_FixupExtension() below */ |
| 90 | static PyObject *extensions = NULL; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 91 | |
Guido van Rossum | 771c6c8 | 1997-10-31 18:37:24 +0000 | [diff] [blame] | 92 | /* This table is defined in config.c: */ |
| 93 | extern struct _inittab _PyImport_Inittab[]; |
| 94 | |
| 95 | struct _inittab *PyImport_Inittab = _PyImport_Inittab; |
Guido van Rossum | 66f1fa8 | 1991-04-03 19:03:52 +0000 | [diff] [blame] | 96 | |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 97 | /* these tables define the module suffixes that Python recognizes */ |
| 98 | struct filedescr * _PyImport_Filetab = NULL; |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 99 | |
| 100 | #ifdef RISCOS |
| 101 | static const struct filedescr _PyImport_StandardFiletab[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 102 | {"/py", "U", PY_SOURCE}, |
| 103 | {"/pyc", "rb", PY_COMPILED}, |
| 104 | {0, 0} |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 105 | }; |
| 106 | #else |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 107 | static const struct filedescr _PyImport_StandardFiletab[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 108 | {".py", "U", PY_SOURCE}, |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 109 | #ifdef MS_WINDOWS |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 110 | {".pyw", "U", PY_SOURCE}, |
Tim Peters | 36515e2 | 2001-11-18 04:06:29 +0000 | [diff] [blame] | 111 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 112 | {".pyc", "rb", PY_COMPILED}, |
| 113 | {0, 0} |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 114 | }; |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 115 | #endif |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 116 | |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 117 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 118 | /* Initialize things */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 119 | |
| 120 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 121 | _PyImport_Init(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 122 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 123 | const struct filedescr *scan; |
| 124 | struct filedescr *filetab; |
| 125 | int countD = 0; |
| 126 | int countS = 0; |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 127 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 128 | /* prepare _PyImport_Filetab: copy entries from |
| 129 | _PyImport_DynLoadFiletab and _PyImport_StandardFiletab. |
| 130 | */ |
Georg Brandl | add36e5 | 2007-08-23 18:08:06 +0000 | [diff] [blame] | 131 | #ifdef HAVE_DYNAMIC_LOADING |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 132 | for (scan = _PyImport_DynLoadFiletab; scan->suffix != NULL; ++scan) |
| 133 | ++countD; |
Georg Brandl | add36e5 | 2007-08-23 18:08:06 +0000 | [diff] [blame] | 134 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 135 | for (scan = _PyImport_StandardFiletab; scan->suffix != NULL; ++scan) |
| 136 | ++countS; |
| 137 | filetab = PyMem_NEW(struct filedescr, countD + countS + 1); |
| 138 | if (filetab == NULL) |
| 139 | Py_FatalError("Can't initialize import file table."); |
Georg Brandl | add36e5 | 2007-08-23 18:08:06 +0000 | [diff] [blame] | 140 | #ifdef HAVE_DYNAMIC_LOADING |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 141 | memcpy(filetab, _PyImport_DynLoadFiletab, |
| 142 | countD * sizeof(struct filedescr)); |
Georg Brandl | add36e5 | 2007-08-23 18:08:06 +0000 | [diff] [blame] | 143 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 144 | memcpy(filetab + countD, _PyImport_StandardFiletab, |
| 145 | countS * sizeof(struct filedescr)); |
| 146 | filetab[countD + countS].suffix = NULL; |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 147 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 148 | _PyImport_Filetab = filetab; |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 149 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 150 | if (Py_OptimizeFlag) { |
| 151 | /* Replace ".pyc" with ".pyo" in _PyImport_Filetab */ |
| 152 | for (; filetab->suffix != NULL; filetab++) { |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 153 | #ifndef RISCOS |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 154 | if (strcmp(filetab->suffix, ".pyc") == 0) |
| 155 | filetab->suffix = ".pyo"; |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 156 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 157 | if (strcmp(filetab->suffix, "/pyc") == 0) |
| 158 | filetab->suffix = "/pyo"; |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 159 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 160 | } |
| 161 | } |
Guido van Rossum | 96774c1 | 2000-05-01 20:19:08 +0000 | [diff] [blame] | 162 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 163 | if (Py_UnicodeFlag) { |
| 164 | /* Fix the pyc_magic so that byte compiled code created |
| 165 | using the all-Unicode method doesn't interfere with |
| 166 | code created in normal operation mode. */ |
| 167 | pyc_magic = MAGIC + 1; |
| 168 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 169 | } |
| 170 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 171 | void |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 172 | _PyImportHooks_Init(void) |
| 173 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 174 | PyObject *v, *path_hooks = NULL, *zimpimport; |
| 175 | int err = 0; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 176 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 177 | /* adding sys.path_hooks and sys.path_importer_cache, setting up |
| 178 | zipimport */ |
| 179 | if (PyType_Ready(&PyNullImporter_Type) < 0) |
| 180 | goto error; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 181 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 182 | if (Py_VerboseFlag) |
| 183 | PySys_WriteStderr("# installing zipimport hook\n"); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 184 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 185 | v = PyList_New(0); |
| 186 | if (v == NULL) |
| 187 | goto error; |
| 188 | err = PySys_SetObject("meta_path", v); |
| 189 | Py_DECREF(v); |
| 190 | if (err) |
| 191 | goto error; |
| 192 | v = PyDict_New(); |
| 193 | if (v == NULL) |
| 194 | goto error; |
| 195 | err = PySys_SetObject("path_importer_cache", v); |
| 196 | Py_DECREF(v); |
| 197 | if (err) |
| 198 | goto error; |
| 199 | path_hooks = PyList_New(0); |
| 200 | if (path_hooks == NULL) |
| 201 | goto error; |
| 202 | err = PySys_SetObject("path_hooks", path_hooks); |
| 203 | if (err) { |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 204 | error: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 205 | PyErr_Print(); |
| 206 | Py_FatalError("initializing sys.meta_path, sys.path_hooks, " |
| 207 | "path_importer_cache, or NullImporter failed" |
| 208 | ); |
| 209 | } |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 210 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 211 | zimpimport = PyImport_ImportModule("zipimport"); |
| 212 | if (zimpimport == NULL) { |
| 213 | PyErr_Clear(); /* No zip import module -- okay */ |
| 214 | if (Py_VerboseFlag) |
| 215 | PySys_WriteStderr("# can't import zipimport\n"); |
| 216 | } |
| 217 | else { |
| 218 | PyObject *zipimporter = PyObject_GetAttrString(zimpimport, |
| 219 | "zipimporter"); |
| 220 | Py_DECREF(zimpimport); |
| 221 | if (zipimporter == NULL) { |
| 222 | PyErr_Clear(); /* No zipimporter object -- okay */ |
| 223 | if (Py_VerboseFlag) |
| 224 | PySys_WriteStderr( |
| 225 | "# can't import zipimport.zipimporter\n"); |
| 226 | } |
| 227 | else { |
| 228 | /* sys.path_hooks.append(zipimporter) */ |
| 229 | err = PyList_Append(path_hooks, zipimporter); |
| 230 | Py_DECREF(zipimporter); |
| 231 | if (err) |
| 232 | goto error; |
| 233 | if (Py_VerboseFlag) |
| 234 | PySys_WriteStderr( |
| 235 | "# installed zipimport hook\n"); |
| 236 | } |
| 237 | } |
| 238 | Py_DECREF(path_hooks); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 242 | _PyImport_Fini(void) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 243 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 244 | Py_XDECREF(extensions); |
| 245 | extensions = NULL; |
| 246 | PyMem_DEL(_PyImport_Filetab); |
| 247 | _PyImport_Filetab = NULL; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 251 | /* Locking primitives to prevent parallel imports of the same module |
| 252 | in different threads to return with a partially loaded module. |
| 253 | These calls are serialized by the global interpreter lock. */ |
| 254 | |
| 255 | #ifdef WITH_THREAD |
| 256 | |
Guido van Rossum | 49b5606 | 1998-10-01 20:42:43 +0000 | [diff] [blame] | 257 | #include "pythread.h" |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 258 | |
Guido van Rossum | 65d5b57 | 1998-12-21 19:32:43 +0000 | [diff] [blame] | 259 | static PyThread_type_lock import_lock = 0; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 260 | static long import_lock_thread = -1; |
| 261 | static int import_lock_level = 0; |
| 262 | |
Thomas Wouters | c4dcb38 | 2009-09-16 19:55:54 +0000 | [diff] [blame] | 263 | void |
| 264 | _PyImport_AcquireLock(void) |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 265 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 266 | long me = PyThread_get_thread_ident(); |
| 267 | if (me == -1) |
| 268 | return; /* Too bad */ |
| 269 | if (import_lock == NULL) { |
| 270 | import_lock = PyThread_allocate_lock(); |
| 271 | if (import_lock == NULL) |
| 272 | return; /* Nothing much we can do. */ |
| 273 | } |
| 274 | if (import_lock_thread == me) { |
| 275 | import_lock_level++; |
| 276 | return; |
| 277 | } |
| 278 | if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0)) |
| 279 | { |
| 280 | PyThreadState *tstate = PyEval_SaveThread(); |
| 281 | PyThread_acquire_lock(import_lock, 1); |
| 282 | PyEval_RestoreThread(tstate); |
| 283 | } |
| 284 | import_lock_thread = me; |
| 285 | import_lock_level = 1; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Thomas Wouters | c4dcb38 | 2009-09-16 19:55:54 +0000 | [diff] [blame] | 288 | int |
| 289 | _PyImport_ReleaseLock(void) |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 290 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 291 | long me = PyThread_get_thread_ident(); |
| 292 | if (me == -1 || import_lock == NULL) |
| 293 | return 0; /* Too bad */ |
| 294 | if (import_lock_thread != me) |
| 295 | return -1; |
| 296 | import_lock_level--; |
| 297 | if (import_lock_level == 0) { |
| 298 | import_lock_thread = -1; |
| 299 | PyThread_release_lock(import_lock); |
| 300 | } |
| 301 | return 1; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 302 | } |
| 303 | |
Gregory P. Smith | 9e5d132 | 2010-03-01 01:22:39 +0000 | [diff] [blame] | 304 | /* This function is called from PyOS_AfterFork to ensure that newly |
| 305 | created child processes do not share locks with the parent. |
| 306 | We now acquire the import lock around fork() calls but on some platforms |
| 307 | (Solaris 9 and earlier? see isue7242) that still left us with problems. */ |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 308 | |
| 309 | void |
| 310 | _PyImport_ReInitLock(void) |
| 311 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 312 | if (import_lock != NULL) |
| 313 | import_lock = PyThread_allocate_lock(); |
| 314 | import_lock_thread = -1; |
| 315 | import_lock_level = 0; |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 318 | #endif |
| 319 | |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 320 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 321 | imp_lock_held(PyObject *self, PyObject *noargs) |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 322 | { |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 323 | #ifdef WITH_THREAD |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 324 | return PyBool_FromLong(import_lock_thread != -1); |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 325 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 326 | return PyBool_FromLong(0); |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 327 | #endif |
| 328 | } |
| 329 | |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 330 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 331 | imp_acquire_lock(PyObject *self, PyObject *noargs) |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 332 | { |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 333 | #ifdef WITH_THREAD |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 334 | _PyImport_AcquireLock(); |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 335 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 336 | Py_INCREF(Py_None); |
| 337 | return Py_None; |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 341 | imp_release_lock(PyObject *self, PyObject *noargs) |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 342 | { |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 343 | #ifdef WITH_THREAD |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 344 | if (_PyImport_ReleaseLock() < 0) { |
| 345 | PyErr_SetString(PyExc_RuntimeError, |
| 346 | "not holding the import lock"); |
| 347 | return NULL; |
| 348 | } |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 349 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 350 | Py_INCREF(Py_None); |
| 351 | return Py_None; |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 352 | } |
| 353 | |
Collin Winter | 276887b | 2007-03-12 16:11:39 +0000 | [diff] [blame] | 354 | static void |
Neal Norwitz | 75c7c80 | 2007-03-13 05:31:38 +0000 | [diff] [blame] | 355 | imp_modules_reloading_clear(void) |
Collin Winter | 276887b | 2007-03-12 16:11:39 +0000 | [diff] [blame] | 356 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 357 | PyInterpreterState *interp = PyThreadState_Get()->interp; |
| 358 | if (interp->modules_reloading != NULL) |
| 359 | PyDict_Clear(interp->modules_reloading); |
Collin Winter | 276887b | 2007-03-12 16:11:39 +0000 | [diff] [blame] | 360 | } |
| 361 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 362 | /* Helper for sys */ |
| 363 | |
| 364 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 365 | PyImport_GetModuleDict(void) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 366 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 367 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 368 | if (interp->modules == NULL) |
| 369 | Py_FatalError("PyImport_GetModuleDict: no module dictionary!"); |
| 370 | return interp->modules; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 371 | } |
| 372 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 373 | |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 374 | /* List of names to clear in sys */ |
| 375 | static char* sys_deletes[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 376 | "path", "argv", "ps1", "ps2", "exitfunc", |
| 377 | "exc_type", "exc_value", "exc_traceback", |
| 378 | "last_type", "last_value", "last_traceback", |
| 379 | "path_hooks", "path_importer_cache", "meta_path", |
| 380 | /* misc stuff */ |
| 381 | "flags", "float_info", |
| 382 | NULL |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 383 | }; |
| 384 | |
Guido van Rossum | 05f9dce | 1998-02-19 20:58:44 +0000 | [diff] [blame] | 385 | static char* sys_files[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 386 | "stdin", "__stdin__", |
| 387 | "stdout", "__stdout__", |
| 388 | "stderr", "__stderr__", |
| 389 | NULL |
Guido van Rossum | 05f9dce | 1998-02-19 20:58:44 +0000 | [diff] [blame] | 390 | }; |
| 391 | |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 392 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 393 | /* Un-initialize things, as good as we can */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 394 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 395 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 396 | PyImport_Cleanup(void) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 397 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 398 | Py_ssize_t pos, ndone; |
| 399 | char *name; |
| 400 | PyObject *key, *value, *dict; |
| 401 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 402 | PyObject *modules = interp->modules; |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 403 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 404 | if (modules == NULL) |
| 405 | return; /* Already done */ |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 406 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 407 | /* Delete some special variables first. These are common |
| 408 | places where user values hide and people complain when their |
| 409 | destructors fail. Since the modules containing them are |
| 410 | deleted *last* of all, they would come too late in the normal |
| 411 | destruction order. Sigh. */ |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 412 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 413 | value = PyDict_GetItemString(modules, "__builtin__"); |
| 414 | if (value != NULL && PyModule_Check(value)) { |
| 415 | dict = PyModule_GetDict(value); |
| 416 | if (Py_VerboseFlag) |
| 417 | PySys_WriteStderr("# clear __builtin__._\n"); |
| 418 | PyDict_SetItemString(dict, "_", Py_None); |
| 419 | } |
| 420 | value = PyDict_GetItemString(modules, "sys"); |
| 421 | if (value != NULL && PyModule_Check(value)) { |
| 422 | char **p; |
| 423 | PyObject *v; |
| 424 | dict = PyModule_GetDict(value); |
| 425 | for (p = sys_deletes; *p != NULL; p++) { |
| 426 | if (Py_VerboseFlag) |
| 427 | PySys_WriteStderr("# clear sys.%s\n", *p); |
| 428 | PyDict_SetItemString(dict, *p, Py_None); |
| 429 | } |
| 430 | for (p = sys_files; *p != NULL; p+=2) { |
| 431 | if (Py_VerboseFlag) |
| 432 | PySys_WriteStderr("# restore sys.%s\n", *p); |
| 433 | v = PyDict_GetItemString(dict, *(p+1)); |
| 434 | if (v == NULL) |
| 435 | v = Py_None; |
| 436 | PyDict_SetItemString(dict, *p, v); |
| 437 | } |
| 438 | } |
Guido van Rossum | 05f9dce | 1998-02-19 20:58:44 +0000 | [diff] [blame] | 439 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 440 | /* First, delete __main__ */ |
| 441 | value = PyDict_GetItemString(modules, "__main__"); |
| 442 | if (value != NULL && PyModule_Check(value)) { |
| 443 | if (Py_VerboseFlag) |
| 444 | PySys_WriteStderr("# cleanup __main__\n"); |
| 445 | _PyModule_Clear(value); |
| 446 | PyDict_SetItemString(modules, "__main__", Py_None); |
| 447 | } |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 448 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 449 | /* The special treatment of __builtin__ here is because even |
| 450 | when it's not referenced as a module, its dictionary is |
| 451 | referenced by almost every module's __builtins__. Since |
| 452 | deleting a module clears its dictionary (even if there are |
| 453 | references left to it), we need to delete the __builtin__ |
| 454 | module last. Likewise, we don't delete sys until the very |
| 455 | end because it is implicitly referenced (e.g. by print). |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 456 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 457 | Also note that we 'delete' modules by replacing their entry |
| 458 | in the modules dict with None, rather than really deleting |
| 459 | them; this avoids a rehash of the modules dictionary and |
| 460 | also marks them as "non existent" so they won't be |
| 461 | re-imported. */ |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 462 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 463 | /* Next, repeatedly delete modules with a reference count of |
| 464 | one (skipping __builtin__ and sys) and delete them */ |
| 465 | do { |
| 466 | ndone = 0; |
| 467 | pos = 0; |
| 468 | while (PyDict_Next(modules, &pos, &key, &value)) { |
| 469 | if (value->ob_refcnt != 1) |
| 470 | continue; |
| 471 | if (PyString_Check(key) && PyModule_Check(value)) { |
| 472 | name = PyString_AS_STRING(key); |
| 473 | if (strcmp(name, "__builtin__") == 0) |
| 474 | continue; |
| 475 | if (strcmp(name, "sys") == 0) |
| 476 | continue; |
| 477 | if (Py_VerboseFlag) |
| 478 | PySys_WriteStderr( |
| 479 | "# cleanup[1] %s\n", name); |
| 480 | _PyModule_Clear(value); |
| 481 | PyDict_SetItem(modules, key, Py_None); |
| 482 | ndone++; |
| 483 | } |
| 484 | } |
| 485 | } while (ndone > 0); |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 486 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 487 | /* Next, delete all modules (still skipping __builtin__ and sys) */ |
| 488 | pos = 0; |
| 489 | while (PyDict_Next(modules, &pos, &key, &value)) { |
| 490 | if (PyString_Check(key) && PyModule_Check(value)) { |
| 491 | name = PyString_AS_STRING(key); |
| 492 | if (strcmp(name, "__builtin__") == 0) |
| 493 | continue; |
| 494 | if (strcmp(name, "sys") == 0) |
| 495 | continue; |
| 496 | if (Py_VerboseFlag) |
| 497 | PySys_WriteStderr("# cleanup[2] %s\n", name); |
| 498 | _PyModule_Clear(value); |
| 499 | PyDict_SetItem(modules, key, Py_None); |
| 500 | } |
| 501 | } |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 502 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 503 | /* Next, delete sys and __builtin__ (in that order) */ |
| 504 | value = PyDict_GetItemString(modules, "sys"); |
| 505 | if (value != NULL && PyModule_Check(value)) { |
| 506 | if (Py_VerboseFlag) |
| 507 | PySys_WriteStderr("# cleanup sys\n"); |
| 508 | _PyModule_Clear(value); |
| 509 | PyDict_SetItemString(modules, "sys", Py_None); |
| 510 | } |
| 511 | value = PyDict_GetItemString(modules, "__builtin__"); |
| 512 | if (value != NULL && PyModule_Check(value)) { |
| 513 | if (Py_VerboseFlag) |
| 514 | PySys_WriteStderr("# cleanup __builtin__\n"); |
| 515 | _PyModule_Clear(value); |
| 516 | PyDict_SetItemString(modules, "__builtin__", Py_None); |
| 517 | } |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 518 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 519 | /* Finally, clear and delete the modules directory */ |
| 520 | PyDict_Clear(modules); |
| 521 | interp->modules = NULL; |
| 522 | Py_DECREF(modules); |
| 523 | Py_CLEAR(interp->modules_reloading); |
Guido van Rossum | 8d15b5d | 1990-10-26 14:58:58 +0000 | [diff] [blame] | 524 | } |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 525 | |
| 526 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 527 | /* Helper for pythonrun.c -- return magic number */ |
| 528 | |
| 529 | long |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 530 | PyImport_GetMagicNumber(void) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 531 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 532 | return pyc_magic; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 536 | /* Magic for extension modules (built-in as well as dynamically |
| 537 | loaded). To prevent initializing an extension module more than |
| 538 | once, we keep a static dictionary 'extensions' keyed by module name |
| 539 | (for built-in modules) or by filename (for dynamically loaded |
Barry Warsaw | 9288338 | 2001-08-13 23:05:44 +0000 | [diff] [blame] | 540 | modules), containing these modules. A copy of the module's |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 541 | dictionary is stored by calling _PyImport_FixupExtension() |
| 542 | immediately after the module initialization function succeeds. A |
| 543 | copy can be retrieved from there by calling |
| 544 | _PyImport_FindExtension(). */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 545 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 546 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 547 | _PyImport_FixupExtension(char *name, char *filename) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 548 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 549 | PyObject *modules, *mod, *dict, *copy; |
| 550 | if (extensions == NULL) { |
| 551 | extensions = PyDict_New(); |
| 552 | if (extensions == NULL) |
| 553 | return NULL; |
| 554 | } |
| 555 | modules = PyImport_GetModuleDict(); |
| 556 | mod = PyDict_GetItemString(modules, name); |
| 557 | if (mod == NULL || !PyModule_Check(mod)) { |
| 558 | PyErr_Format(PyExc_SystemError, |
| 559 | "_PyImport_FixupExtension: module %.200s not loaded", name); |
| 560 | return NULL; |
| 561 | } |
| 562 | dict = PyModule_GetDict(mod); |
| 563 | if (dict == NULL) |
| 564 | return NULL; |
| 565 | copy = PyDict_Copy(dict); |
| 566 | if (copy == NULL) |
| 567 | return NULL; |
| 568 | PyDict_SetItemString(extensions, filename, copy); |
| 569 | Py_DECREF(copy); |
| 570 | return copy; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 571 | } |
| 572 | |
| 573 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 574 | _PyImport_FindExtension(char *name, char *filename) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 575 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 576 | PyObject *dict, *mod, *mdict; |
| 577 | if (extensions == NULL) |
| 578 | return NULL; |
| 579 | dict = PyDict_GetItemString(extensions, filename); |
| 580 | if (dict == NULL) |
| 581 | return NULL; |
| 582 | mod = PyImport_AddModule(name); |
| 583 | if (mod == NULL) |
| 584 | return NULL; |
| 585 | mdict = PyModule_GetDict(mod); |
| 586 | if (mdict == NULL) |
| 587 | return NULL; |
| 588 | if (PyDict_Update(mdict, dict)) |
| 589 | return NULL; |
| 590 | if (Py_VerboseFlag) |
| 591 | PySys_WriteStderr("import %s # previously loaded (%s)\n", |
| 592 | name, filename); |
| 593 | return mod; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | |
| 597 | /* Get the module object corresponding to a module name. |
| 598 | First check the modules dictionary if there's one there, |
Walter Dörwald | f0dfc7a | 2003-10-20 14:01:56 +0000 | [diff] [blame] | 599 | if not, create a new one and insert it in the modules dictionary. |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 600 | Because the former action is most common, THIS DOES NOT RETURN A |
| 601 | 'NEW' REFERENCE! */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 602 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 603 | PyObject * |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 604 | PyImport_AddModule(const char *name) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 605 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 606 | PyObject *modules = PyImport_GetModuleDict(); |
| 607 | PyObject *m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 608 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 609 | if ((m = PyDict_GetItemString(modules, name)) != NULL && |
| 610 | PyModule_Check(m)) |
| 611 | return m; |
| 612 | m = PyModule_New(name); |
| 613 | if (m == NULL) |
| 614 | return NULL; |
| 615 | if (PyDict_SetItemString(modules, name, m) != 0) { |
| 616 | Py_DECREF(m); |
| 617 | return NULL; |
| 618 | } |
| 619 | Py_DECREF(m); /* Yes, it still exists, in modules! */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 620 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 621 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 622 | } |
| 623 | |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 624 | /* Remove name from sys.modules, if it's there. */ |
| 625 | static void |
Benjamin Peterson | 0663873 | 2010-03-25 23:27:16 +0000 | [diff] [blame] | 626 | remove_module(const char *name) |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 627 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 628 | PyObject *modules = PyImport_GetModuleDict(); |
| 629 | if (PyDict_GetItemString(modules, name) == NULL) |
| 630 | return; |
| 631 | if (PyDict_DelItemString(modules, name) < 0) |
| 632 | Py_FatalError("import: deleting existing key in" |
| 633 | "sys.modules failed"); |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 634 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 635 | |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 636 | /* Execute a code object in a module and return the module object |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 637 | * WITH INCREMENTED REFERENCE COUNT. If an error occurs, name is |
| 638 | * removed from sys.modules, to avoid leaving damaged module objects |
| 639 | * in sys.modules. The caller may wish to restore the original |
| 640 | * module object (if any) in this case; PyImport_ReloadModule is an |
| 641 | * example. |
| 642 | */ |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 643 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 644 | PyImport_ExecCodeModule(char *name, PyObject *co) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 645 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 646 | return PyImport_ExecCodeModuleEx(name, co, (char *)NULL); |
Guido van Rossum | e32bf6e | 1998-02-11 05:53:02 +0000 | [diff] [blame] | 647 | } |
| 648 | |
| 649 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 650 | PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname) |
Guido van Rossum | e32bf6e | 1998-02-11 05:53:02 +0000 | [diff] [blame] | 651 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 652 | PyObject *modules = PyImport_GetModuleDict(); |
| 653 | PyObject *m, *d, *v; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 654 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 655 | m = PyImport_AddModule(name); |
| 656 | if (m == NULL) |
| 657 | return NULL; |
| 658 | /* If the module is being reloaded, we get the old module back |
| 659 | and re-use its dict to exec the new code. */ |
| 660 | d = PyModule_GetDict(m); |
| 661 | if (PyDict_GetItemString(d, "__builtins__") == NULL) { |
| 662 | if (PyDict_SetItemString(d, "__builtins__", |
| 663 | PyEval_GetBuiltins()) != 0) |
| 664 | goto error; |
| 665 | } |
| 666 | /* Remember the filename as the __file__ attribute */ |
| 667 | v = NULL; |
| 668 | if (pathname != NULL) { |
| 669 | v = PyString_FromString(pathname); |
| 670 | if (v == NULL) |
| 671 | PyErr_Clear(); |
| 672 | } |
| 673 | if (v == NULL) { |
| 674 | v = ((PyCodeObject *)co)->co_filename; |
| 675 | Py_INCREF(v); |
| 676 | } |
| 677 | if (PyDict_SetItemString(d, "__file__", v) != 0) |
| 678 | PyErr_Clear(); /* Not important enough to report */ |
| 679 | Py_DECREF(v); |
Guido van Rossum | e32bf6e | 1998-02-11 05:53:02 +0000 | [diff] [blame] | 680 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 681 | v = PyEval_EvalCode((PyCodeObject *)co, d, d); |
| 682 | if (v == NULL) |
| 683 | goto error; |
| 684 | Py_DECREF(v); |
Guido van Rossum | b65e85c | 1997-07-10 18:00:45 +0000 | [diff] [blame] | 685 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 686 | if ((m = PyDict_GetItemString(modules, name)) == NULL) { |
| 687 | PyErr_Format(PyExc_ImportError, |
| 688 | "Loaded module %.200s not found in sys.modules", |
| 689 | name); |
| 690 | return NULL; |
| 691 | } |
Guido van Rossum | b65e85c | 1997-07-10 18:00:45 +0000 | [diff] [blame] | 692 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 693 | Py_INCREF(m); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 694 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 695 | return m; |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 696 | |
| 697 | error: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 698 | remove_module(name); |
| 699 | return NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | |
| 703 | /* Given a pathname for a Python source file, fill a buffer with the |
| 704 | pathname for the corresponding compiled file. Return the pathname |
| 705 | for the compiled file, or NULL if there's no space in the buffer. |
| 706 | Doesn't set an exception. */ |
| 707 | |
| 708 | static char * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 709 | make_compiled_pathname(char *pathname, char *buf, size_t buflen) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 710 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 711 | size_t len = strlen(pathname); |
| 712 | if (len+2 > buflen) |
| 713 | return NULL; |
Tim Peters | c173137 | 2001-08-04 08:12:36 +0000 | [diff] [blame] | 714 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 715 | #ifdef MS_WINDOWS |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 716 | /* Treat .pyw as if it were .py. The case of ".pyw" must match |
| 717 | that used in _PyImport_StandardFiletab. */ |
| 718 | if (len >= 4 && strcmp(&pathname[len-4], ".pyw") == 0) |
| 719 | --len; /* pretend 'w' isn't there */ |
Tim Peters | c173137 | 2001-08-04 08:12:36 +0000 | [diff] [blame] | 720 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 721 | memcpy(buf, pathname, len); |
| 722 | buf[len] = Py_OptimizeFlag ? 'o' : 'c'; |
| 723 | buf[len+1] = '\0'; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 724 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 725 | return buf; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | |
| 729 | /* Given a pathname for a Python source file, its time of last |
| 730 | modification, and a pathname for a compiled file, check whether the |
| 731 | compiled file represents the same version of the source. If so, |
| 732 | return a FILE pointer for the compiled file, positioned just after |
| 733 | the header; if not, return NULL. |
| 734 | Doesn't set an exception. */ |
| 735 | |
| 736 | static FILE * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 737 | check_compiled_module(char *pathname, time_t mtime, char *cpathname) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 738 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 739 | FILE *fp; |
| 740 | long magic; |
| 741 | long pyc_mtime; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 742 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 743 | fp = fopen(cpathname, "rb"); |
| 744 | if (fp == NULL) |
| 745 | return NULL; |
| 746 | magic = PyMarshal_ReadLongFromFile(fp); |
| 747 | if (magic != pyc_magic) { |
| 748 | if (Py_VerboseFlag) |
| 749 | PySys_WriteStderr("# %s has bad magic\n", cpathname); |
| 750 | fclose(fp); |
| 751 | return NULL; |
| 752 | } |
| 753 | pyc_mtime = PyMarshal_ReadLongFromFile(fp); |
| 754 | if (pyc_mtime != mtime) { |
| 755 | if (Py_VerboseFlag) |
| 756 | PySys_WriteStderr("# %s has bad mtime\n", cpathname); |
| 757 | fclose(fp); |
| 758 | return NULL; |
| 759 | } |
| 760 | if (Py_VerboseFlag) |
| 761 | PySys_WriteStderr("# %s matches %s\n", cpathname, pathname); |
| 762 | return fp; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 763 | } |
| 764 | |
| 765 | |
| 766 | /* Read a code object from a file and check it for validity */ |
| 767 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 768 | static PyCodeObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 769 | read_compiled_module(char *cpathname, FILE *fp) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 770 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 771 | PyObject *co; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 772 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 773 | co = PyMarshal_ReadLastObjectFromFile(fp); |
| 774 | if (co == NULL) |
| 775 | return NULL; |
| 776 | if (!PyCode_Check(co)) { |
| 777 | PyErr_Format(PyExc_ImportError, |
| 778 | "Non-code object in %.200s", cpathname); |
| 779 | Py_DECREF(co); |
| 780 | return NULL; |
| 781 | } |
| 782 | return (PyCodeObject *)co; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 783 | } |
| 784 | |
| 785 | |
| 786 | /* Load a module from a compiled file, execute it, and return its |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 787 | module object WITH INCREMENTED REFERENCE COUNT */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 788 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 789 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 790 | load_compiled_module(char *name, char *cpathname, FILE *fp) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 791 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 792 | long magic; |
| 793 | PyCodeObject *co; |
| 794 | PyObject *m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 795 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 796 | magic = PyMarshal_ReadLongFromFile(fp); |
| 797 | if (magic != pyc_magic) { |
| 798 | PyErr_Format(PyExc_ImportError, |
| 799 | "Bad magic number in %.200s", cpathname); |
| 800 | return NULL; |
| 801 | } |
| 802 | (void) PyMarshal_ReadLongFromFile(fp); |
| 803 | co = read_compiled_module(cpathname, fp); |
| 804 | if (co == NULL) |
| 805 | return NULL; |
| 806 | if (Py_VerboseFlag) |
| 807 | PySys_WriteStderr("import %s # precompiled from %s\n", |
| 808 | name, cpathname); |
| 809 | m = PyImport_ExecCodeModuleEx(name, (PyObject *)co, cpathname); |
| 810 | Py_DECREF(co); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 811 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 812 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 813 | } |
| 814 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 815 | /* Parse a source file and return the corresponding code object */ |
| 816 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 817 | static PyCodeObject * |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 818 | parse_source_module(const char *pathname, FILE *fp) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 819 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 820 | PyCodeObject *co = NULL; |
| 821 | mod_ty mod; |
| 822 | PyCompilerFlags flags; |
| 823 | PyArena *arena = PyArena_New(); |
| 824 | if (arena == NULL) |
| 825 | return NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 826 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 827 | flags.cf_flags = 0; |
Christian Heimes | 7f23d86 | 2008-03-26 22:51:58 +0000 | [diff] [blame] | 828 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 829 | mod = PyParser_ASTFromFile(fp, pathname, Py_file_input, 0, 0, &flags, |
| 830 | NULL, arena); |
| 831 | if (mod) { |
| 832 | co = PyAST_Compile(mod, pathname, NULL, arena); |
| 833 | } |
| 834 | PyArena_Free(arena); |
| 835 | return co; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | |
Guido van Rossum | 55a8338 | 2000-09-20 20:31:38 +0000 | [diff] [blame] | 839 | /* Helper to open a bytecode file for writing in exclusive mode */ |
| 840 | |
| 841 | static FILE * |
Christian Heimes | 4034685 | 2008-02-23 17:52:07 +0000 | [diff] [blame] | 842 | open_exclusive(char *filename, mode_t mode) |
Guido van Rossum | 55a8338 | 2000-09-20 20:31:38 +0000 | [diff] [blame] | 843 | { |
| 844 | #if defined(O_EXCL)&&defined(O_CREAT)&&defined(O_WRONLY)&&defined(O_TRUNC) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 845 | /* Use O_EXCL to avoid a race condition when another process tries to |
| 846 | write the same file. When that happens, our open() call fails, |
| 847 | which is just fine (since it's only a cache). |
| 848 | XXX If the file exists and is writable but the directory is not |
| 849 | writable, the file will never be written. Oh well. |
| 850 | */ |
| 851 | int fd; |
| 852 | (void) unlink(filename); |
| 853 | fd = open(filename, O_EXCL|O_CREAT|O_WRONLY|O_TRUNC |
Tim Peters | 42c83af | 2000-09-29 04:03:10 +0000 | [diff] [blame] | 854 | #ifdef O_BINARY |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 855 | |O_BINARY /* necessary for Windows */ |
Tim Peters | 42c83af | 2000-09-29 04:03:10 +0000 | [diff] [blame] | 856 | #endif |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 857 | #ifdef __VMS |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 858 | , mode, "ctxt=bin", "shr=nil" |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 859 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 860 | , mode |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 861 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 862 | ); |
| 863 | if (fd < 0) |
| 864 | return NULL; |
| 865 | return fdopen(fd, "wb"); |
Guido van Rossum | 55a8338 | 2000-09-20 20:31:38 +0000 | [diff] [blame] | 866 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 867 | /* Best we can do -- on Windows this can't happen anyway */ |
| 868 | return fopen(filename, "wb"); |
Guido van Rossum | 55a8338 | 2000-09-20 20:31:38 +0000 | [diff] [blame] | 869 | #endif |
| 870 | } |
| 871 | |
| 872 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 873 | /* Write a compiled module to a file, placing the time of last |
| 874 | modification of its source into the header. |
| 875 | Errors are ignored, if a write error occurs an attempt is made to |
| 876 | remove the file. */ |
| 877 | |
| 878 | static void |
Christian Heimes | 4034685 | 2008-02-23 17:52:07 +0000 | [diff] [blame] | 879 | write_compiled_module(PyCodeObject *co, char *cpathname, struct stat *srcstat) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 880 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 881 | FILE *fp; |
| 882 | time_t mtime = srcstat->st_mtime; |
R. David Murray | 3310a10 | 2009-07-07 09:54:16 +0000 | [diff] [blame] | 883 | #ifdef MS_WINDOWS /* since Windows uses different permissions */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 884 | mode_t mode = srcstat->st_mode & ~S_IEXEC; |
R. David Murray | 3310a10 | 2009-07-07 09:54:16 +0000 | [diff] [blame] | 885 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 886 | mode_t mode = srcstat->st_mode & ~S_IXUSR & ~S_IXGRP & ~S_IXOTH; |
Brett Cannon | b166afc | 2010-05-05 20:25:47 +0000 | [diff] [blame] | 887 | #endif |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 888 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 889 | fp = open_exclusive(cpathname, mode); |
| 890 | if (fp == NULL) { |
| 891 | if (Py_VerboseFlag) |
| 892 | PySys_WriteStderr( |
| 893 | "# can't create %s\n", cpathname); |
| 894 | return; |
| 895 | } |
| 896 | PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION); |
| 897 | /* First write a 0 for mtime */ |
| 898 | PyMarshal_WriteLongToFile(0L, fp, Py_MARSHAL_VERSION); |
| 899 | PyMarshal_WriteObjectToFile((PyObject *)co, fp, Py_MARSHAL_VERSION); |
| 900 | if (fflush(fp) != 0 || ferror(fp)) { |
| 901 | if (Py_VerboseFlag) |
| 902 | PySys_WriteStderr("# can't write %s\n", cpathname); |
| 903 | /* Don't keep partial file */ |
| 904 | fclose(fp); |
| 905 | (void) unlink(cpathname); |
| 906 | return; |
| 907 | } |
| 908 | /* Now write the true mtime */ |
| 909 | fseek(fp, 4L, 0); |
| 910 | assert(mtime < LONG_MAX); |
| 911 | PyMarshal_WriteLongToFile((long)mtime, fp, Py_MARSHAL_VERSION); |
| 912 | fflush(fp); |
| 913 | fclose(fp); |
| 914 | if (Py_VerboseFlag) |
| 915 | PySys_WriteStderr("# wrote %s\n", cpathname); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 916 | } |
| 917 | |
Antoine Pitrou | e96d4ea | 2009-01-06 18:10:47 +0000 | [diff] [blame] | 918 | static void |
| 919 | update_code_filenames(PyCodeObject *co, PyObject *oldname, PyObject *newname) |
| 920 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 921 | PyObject *constants, *tmp; |
| 922 | Py_ssize_t i, n; |
Antoine Pitrou | e96d4ea | 2009-01-06 18:10:47 +0000 | [diff] [blame] | 923 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 924 | if (!_PyString_Eq(co->co_filename, oldname)) |
| 925 | return; |
Antoine Pitrou | e96d4ea | 2009-01-06 18:10:47 +0000 | [diff] [blame] | 926 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 927 | tmp = co->co_filename; |
| 928 | co->co_filename = newname; |
| 929 | Py_INCREF(co->co_filename); |
| 930 | Py_DECREF(tmp); |
Antoine Pitrou | e96d4ea | 2009-01-06 18:10:47 +0000 | [diff] [blame] | 931 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 932 | constants = co->co_consts; |
| 933 | n = PyTuple_GET_SIZE(constants); |
| 934 | for (i = 0; i < n; i++) { |
| 935 | tmp = PyTuple_GET_ITEM(constants, i); |
| 936 | if (PyCode_Check(tmp)) |
| 937 | update_code_filenames((PyCodeObject *)tmp, |
| 938 | oldname, newname); |
| 939 | } |
Antoine Pitrou | e96d4ea | 2009-01-06 18:10:47 +0000 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | static int |
| 943 | update_compiled_module(PyCodeObject *co, char *pathname) |
| 944 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 945 | PyObject *oldname, *newname; |
Antoine Pitrou | e96d4ea | 2009-01-06 18:10:47 +0000 | [diff] [blame] | 946 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 947 | if (strcmp(PyString_AsString(co->co_filename), pathname) == 0) |
| 948 | return 0; |
Antoine Pitrou | e96d4ea | 2009-01-06 18:10:47 +0000 | [diff] [blame] | 949 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 950 | newname = PyString_FromString(pathname); |
| 951 | if (newname == NULL) |
| 952 | return -1; |
Antoine Pitrou | e96d4ea | 2009-01-06 18:10:47 +0000 | [diff] [blame] | 953 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 954 | oldname = co->co_filename; |
| 955 | Py_INCREF(oldname); |
| 956 | update_code_filenames(co, oldname, newname); |
| 957 | Py_DECREF(oldname); |
| 958 | Py_DECREF(newname); |
| 959 | return 1; |
Antoine Pitrou | e96d4ea | 2009-01-06 18:10:47 +0000 | [diff] [blame] | 960 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 961 | |
| 962 | /* Load a source module from a given file and return its module |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 963 | object WITH INCREMENTED REFERENCE COUNT. If there's a matching |
| 964 | byte-compiled file, use that instead. */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 965 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 966 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 967 | load_source_module(char *name, char *pathname, FILE *fp) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 968 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 969 | struct stat st; |
| 970 | FILE *fpc; |
| 971 | char buf[MAXPATHLEN+1]; |
| 972 | char *cpathname; |
| 973 | PyCodeObject *co; |
| 974 | PyObject *m; |
Brett Cannon | b166afc | 2010-05-05 20:25:47 +0000 | [diff] [blame] | 975 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 976 | if (fstat(fileno(fp), &st) != 0) { |
| 977 | PyErr_Format(PyExc_RuntimeError, |
| 978 | "unable to get file status from '%s'", |
| 979 | pathname); |
| 980 | return NULL; |
| 981 | } |
Fred Drake | 4c82b23 | 2000-06-30 16:18:57 +0000 | [diff] [blame] | 982 | #if SIZEOF_TIME_T > 4 |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 983 | /* Python's .pyc timestamp handling presumes that the timestamp fits |
| 984 | in 4 bytes. This will be fine until sometime in the year 2038, |
| 985 | when a 4-byte signed time_t will overflow. |
| 986 | */ |
| 987 | if (st.st_mtime >> 32) { |
| 988 | PyErr_SetString(PyExc_OverflowError, |
| 989 | "modification time overflows a 4 byte field"); |
| 990 | return NULL; |
| 991 | } |
Fred Drake | 4c82b23 | 2000-06-30 16:18:57 +0000 | [diff] [blame] | 992 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 993 | cpathname = make_compiled_pathname(pathname, buf, |
| 994 | (size_t)MAXPATHLEN + 1); |
| 995 | if (cpathname != NULL && |
| 996 | (fpc = check_compiled_module(pathname, st.st_mtime, cpathname))) { |
| 997 | co = read_compiled_module(cpathname, fpc); |
| 998 | fclose(fpc); |
| 999 | if (co == NULL) |
| 1000 | return NULL; |
| 1001 | if (update_compiled_module(co, pathname) < 0) |
| 1002 | return NULL; |
| 1003 | if (Py_VerboseFlag) |
| 1004 | PySys_WriteStderr("import %s # precompiled from %s\n", |
| 1005 | name, cpathname); |
| 1006 | pathname = cpathname; |
| 1007 | } |
| 1008 | else { |
| 1009 | co = parse_source_module(pathname, fp); |
| 1010 | if (co == NULL) |
| 1011 | return NULL; |
| 1012 | if (Py_VerboseFlag) |
| 1013 | PySys_WriteStderr("import %s # from %s\n", |
| 1014 | name, pathname); |
| 1015 | if (cpathname) { |
| 1016 | PyObject *ro = PySys_GetObject("dont_write_bytecode"); |
| 1017 | if (ro == NULL || !PyObject_IsTrue(ro)) |
| 1018 | write_compiled_module(co, cpathname, &st); |
| 1019 | } |
| 1020 | } |
| 1021 | m = PyImport_ExecCodeModuleEx(name, (PyObject *)co, pathname); |
| 1022 | Py_DECREF(co); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1023 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1024 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1025 | } |
| 1026 | |
| 1027 | |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1028 | /* Forward */ |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1029 | static PyObject *load_module(char *, FILE *, char *, int, PyObject *); |
| 1030 | static struct filedescr *find_module(char *, char *, PyObject *, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1031 | char *, size_t, FILE **, PyObject **); |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 1032 | static struct _frozen *find_frozen(char *name); |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1033 | |
| 1034 | /* Load a package and return its module object WITH INCREMENTED |
| 1035 | REFERENCE COUNT */ |
| 1036 | |
| 1037 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1038 | load_package(char *name, char *pathname) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1039 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1040 | PyObject *m, *d; |
| 1041 | PyObject *file = NULL; |
| 1042 | PyObject *path = NULL; |
| 1043 | int err; |
| 1044 | char buf[MAXPATHLEN+1]; |
| 1045 | FILE *fp = NULL; |
| 1046 | struct filedescr *fdp; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1047 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1048 | m = PyImport_AddModule(name); |
| 1049 | if (m == NULL) |
| 1050 | return NULL; |
| 1051 | if (Py_VerboseFlag) |
| 1052 | PySys_WriteStderr("import %s # directory %s\n", |
| 1053 | name, pathname); |
| 1054 | d = PyModule_GetDict(m); |
| 1055 | file = PyString_FromString(pathname); |
| 1056 | if (file == NULL) |
| 1057 | goto error; |
| 1058 | path = Py_BuildValue("[O]", file); |
| 1059 | if (path == NULL) |
| 1060 | goto error; |
| 1061 | err = PyDict_SetItemString(d, "__file__", file); |
| 1062 | if (err == 0) |
| 1063 | err = PyDict_SetItemString(d, "__path__", path); |
| 1064 | if (err != 0) |
| 1065 | goto error; |
| 1066 | buf[0] = '\0'; |
| 1067 | fdp = find_module(name, "__init__", path, buf, sizeof(buf), &fp, NULL); |
| 1068 | if (fdp == NULL) { |
| 1069 | if (PyErr_ExceptionMatches(PyExc_ImportError)) { |
| 1070 | PyErr_Clear(); |
| 1071 | Py_INCREF(m); |
| 1072 | } |
| 1073 | else |
| 1074 | m = NULL; |
| 1075 | goto cleanup; |
| 1076 | } |
| 1077 | m = load_module(name, fp, buf, fdp->type, NULL); |
| 1078 | if (fp != NULL) |
| 1079 | fclose(fp); |
| 1080 | goto cleanup; |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 1081 | |
| 1082 | error: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1083 | m = NULL; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1084 | cleanup: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1085 | Py_XDECREF(path); |
| 1086 | Py_XDECREF(file); |
| 1087 | return m; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | |
| 1091 | /* Helper to test for built-in module */ |
| 1092 | |
| 1093 | static int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1094 | is_builtin(char *name) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1095 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1096 | int i; |
| 1097 | for (i = 0; PyImport_Inittab[i].name != NULL; i++) { |
| 1098 | if (strcmp(name, PyImport_Inittab[i].name) == 0) { |
| 1099 | if (PyImport_Inittab[i].initfunc == NULL) |
| 1100 | return -1; |
| 1101 | else |
| 1102 | return 1; |
| 1103 | } |
| 1104 | } |
| 1105 | return 0; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1106 | } |
| 1107 | |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1108 | |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1109 | /* Return an importer object for a sys.path/pkg.__path__ item 'p', |
| 1110 | possibly by fetching it from the path_importer_cache dict. If it |
Brett Cannon | 94b69f6 | 2006-09-28 22:10:14 +0000 | [diff] [blame] | 1111 | wasn't yet cached, traverse path_hooks until a hook is found |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1112 | that can handle the path item. Return None if no hook could; |
| 1113 | this tells our caller it should fall back to the builtin |
| 1114 | import mechanism. Cache the result in path_importer_cache. |
| 1115 | Returns a borrowed reference. */ |
| 1116 | |
| 1117 | static PyObject * |
| 1118 | get_path_importer(PyObject *path_importer_cache, PyObject *path_hooks, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1119 | PyObject *p) |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1120 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1121 | PyObject *importer; |
| 1122 | Py_ssize_t j, nhooks; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1123 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1124 | /* These conditions are the caller's responsibility: */ |
| 1125 | assert(PyList_Check(path_hooks)); |
| 1126 | assert(PyDict_Check(path_importer_cache)); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1127 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1128 | nhooks = PyList_Size(path_hooks); |
| 1129 | if (nhooks < 0) |
| 1130 | return NULL; /* Shouldn't happen */ |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1131 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1132 | importer = PyDict_GetItem(path_importer_cache, p); |
| 1133 | if (importer != NULL) |
| 1134 | return importer; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1135 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1136 | /* set path_importer_cache[p] to None to avoid recursion */ |
| 1137 | if (PyDict_SetItem(path_importer_cache, p, Py_None) != 0) |
| 1138 | return NULL; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1139 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1140 | for (j = 0; j < nhooks; j++) { |
| 1141 | PyObject *hook = PyList_GetItem(path_hooks, j); |
| 1142 | if (hook == NULL) |
| 1143 | return NULL; |
| 1144 | importer = PyObject_CallFunctionObjArgs(hook, p, NULL); |
| 1145 | if (importer != NULL) |
| 1146 | break; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1147 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1148 | if (!PyErr_ExceptionMatches(PyExc_ImportError)) { |
| 1149 | return NULL; |
| 1150 | } |
| 1151 | PyErr_Clear(); |
| 1152 | } |
| 1153 | if (importer == NULL) { |
| 1154 | importer = PyObject_CallFunctionObjArgs( |
| 1155 | (PyObject *)&PyNullImporter_Type, p, NULL |
| 1156 | ); |
| 1157 | if (importer == NULL) { |
| 1158 | if (PyErr_ExceptionMatches(PyExc_ImportError)) { |
| 1159 | PyErr_Clear(); |
| 1160 | return Py_None; |
| 1161 | } |
| 1162 | } |
| 1163 | } |
| 1164 | if (importer != NULL) { |
| 1165 | int err = PyDict_SetItem(path_importer_cache, p, importer); |
| 1166 | Py_DECREF(importer); |
| 1167 | if (err != 0) |
| 1168 | return NULL; |
| 1169 | } |
| 1170 | return importer; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1171 | } |
| 1172 | |
Nick Coghlan | 327a39b | 2007-11-18 11:56:28 +0000 | [diff] [blame] | 1173 | PyAPI_FUNC(PyObject *) |
| 1174 | PyImport_GetImporter(PyObject *path) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1175 | PyObject *importer=NULL, *path_importer_cache=NULL, *path_hooks=NULL; |
Nick Coghlan | 327a39b | 2007-11-18 11:56:28 +0000 | [diff] [blame] | 1176 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1177 | if ((path_importer_cache = PySys_GetObject("path_importer_cache"))) { |
| 1178 | if ((path_hooks = PySys_GetObject("path_hooks"))) { |
| 1179 | importer = get_path_importer(path_importer_cache, |
| 1180 | path_hooks, path); |
| 1181 | } |
| 1182 | } |
| 1183 | Py_XINCREF(importer); /* get_path_importer returns a borrowed reference */ |
| 1184 | return importer; |
Nick Coghlan | 327a39b | 2007-11-18 11:56:28 +0000 | [diff] [blame] | 1185 | } |
| 1186 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1187 | /* Search the path (default sys.path) for a module. Return the |
| 1188 | corresponding filedescr struct, and (via return arguments) the |
| 1189 | pathname and an open file. Return NULL if the module is not found. */ |
| 1190 | |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1191 | #ifdef MS_COREDLL |
Thomas Wouters | b4bd21c | 2000-07-22 23:38:01 +0000 | [diff] [blame] | 1192 | extern FILE *PyWin_FindRegisteredModule(const char *, struct filedescr **, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1193 | char *, Py_ssize_t); |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1194 | #endif |
| 1195 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1196 | static int case_ok(char *, Py_ssize_t, Py_ssize_t, char *); |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 1197 | static int find_init_module(char *); /* Forward */ |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1198 | static struct filedescr importhookdescr = {"", "", IMP_HOOK}; |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 1199 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1200 | static struct filedescr * |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1201 | find_module(char *fullname, char *subname, PyObject *path, char *buf, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1202 | size_t buflen, FILE **p_fp, PyObject **p_loader) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1203 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1204 | Py_ssize_t i, npath; |
| 1205 | size_t len, namelen; |
| 1206 | struct filedescr *fdp = NULL; |
| 1207 | char *filemode; |
| 1208 | FILE *fp = NULL; |
| 1209 | PyObject *path_hooks, *path_importer_cache; |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 1210 | #ifndef RISCOS |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1211 | struct stat statbuf; |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 1212 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1213 | static struct filedescr fd_frozen = {"", "", PY_FROZEN}; |
| 1214 | static struct filedescr fd_builtin = {"", "", C_BUILTIN}; |
| 1215 | static struct filedescr fd_package = {"", "", PKG_DIRECTORY}; |
| 1216 | char name[MAXPATHLEN+1]; |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1217 | #if defined(PYOS_OS2) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1218 | size_t saved_len; |
| 1219 | size_t saved_namelen; |
| 1220 | char *saved_buf = NULL; |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1221 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1222 | if (p_loader != NULL) |
| 1223 | *p_loader = NULL; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1224 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1225 | if (strlen(subname) > MAXPATHLEN) { |
| 1226 | PyErr_SetString(PyExc_OverflowError, |
| 1227 | "module name is too long"); |
| 1228 | return NULL; |
| 1229 | } |
| 1230 | strcpy(name, subname); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1231 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1232 | /* sys.meta_path import hook */ |
| 1233 | if (p_loader != NULL) { |
| 1234 | PyObject *meta_path; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1235 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1236 | meta_path = PySys_GetObject("meta_path"); |
| 1237 | if (meta_path == NULL || !PyList_Check(meta_path)) { |
Victor Stinner | ed36c06 | 2011-09-15 19:45:53 +0200 | [diff] [blame^] | 1238 | PyErr_SetString(PyExc_RuntimeError, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1239 | "sys.meta_path must be a list of " |
| 1240 | "import hooks"); |
| 1241 | return NULL; |
| 1242 | } |
| 1243 | Py_INCREF(meta_path); /* zap guard */ |
| 1244 | npath = PyList_Size(meta_path); |
| 1245 | for (i = 0; i < npath; i++) { |
| 1246 | PyObject *loader; |
| 1247 | PyObject *hook = PyList_GetItem(meta_path, i); |
| 1248 | loader = PyObject_CallMethod(hook, "find_module", |
| 1249 | "sO", fullname, |
| 1250 | path != NULL ? |
| 1251 | path : Py_None); |
| 1252 | if (loader == NULL) { |
| 1253 | Py_DECREF(meta_path); |
| 1254 | return NULL; /* true error */ |
| 1255 | } |
| 1256 | if (loader != Py_None) { |
| 1257 | /* a loader was found */ |
| 1258 | *p_loader = loader; |
| 1259 | Py_DECREF(meta_path); |
| 1260 | return &importhookdescr; |
| 1261 | } |
| 1262 | Py_DECREF(loader); |
| 1263 | } |
| 1264 | Py_DECREF(meta_path); |
| 1265 | } |
Guido van Rossum | 0506a43 | 1998-08-11 15:07:39 +0000 | [diff] [blame] | 1266 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1267 | if (path != NULL && PyString_Check(path)) { |
| 1268 | /* The only type of submodule allowed inside a "frozen" |
| 1269 | package are other frozen modules or packages. */ |
| 1270 | if (PyString_Size(path) + 1 + strlen(name) >= (size_t)buflen) { |
| 1271 | PyErr_SetString(PyExc_ImportError, |
| 1272 | "full frozen module name too long"); |
| 1273 | return NULL; |
| 1274 | } |
| 1275 | strcpy(buf, PyString_AsString(path)); |
| 1276 | strcat(buf, "."); |
| 1277 | strcat(buf, name); |
| 1278 | strcpy(name, buf); |
| 1279 | if (find_frozen(name) != NULL) { |
| 1280 | strcpy(buf, name); |
| 1281 | return &fd_frozen; |
| 1282 | } |
| 1283 | PyErr_Format(PyExc_ImportError, |
| 1284 | "No frozen submodule named %.200s", name); |
| 1285 | return NULL; |
| 1286 | } |
| 1287 | if (path == NULL) { |
| 1288 | if (is_builtin(name)) { |
| 1289 | strcpy(buf, name); |
| 1290 | return &fd_builtin; |
| 1291 | } |
| 1292 | if ((find_frozen(name)) != NULL) { |
| 1293 | strcpy(buf, name); |
| 1294 | return &fd_frozen; |
| 1295 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1296 | |
Guido van Rossum | ac27910 | 1996-08-22 23:10:58 +0000 | [diff] [blame] | 1297 | #ifdef MS_COREDLL |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1298 | fp = PyWin_FindRegisteredModule(name, &fdp, buf, buflen); |
| 1299 | if (fp != NULL) { |
| 1300 | *p_fp = fp; |
| 1301 | return fdp; |
| 1302 | } |
Guido van Rossum | a5a3db7 | 1996-04-09 02:39:59 +0000 | [diff] [blame] | 1303 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1304 | path = PySys_GetObject("path"); |
| 1305 | } |
| 1306 | if (path == NULL || !PyList_Check(path)) { |
Victor Stinner | ed36c06 | 2011-09-15 19:45:53 +0200 | [diff] [blame^] | 1307 | PyErr_SetString(PyExc_RuntimeError, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1308 | "sys.path must be a list of directory names"); |
| 1309 | return NULL; |
| 1310 | } |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1311 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1312 | path_hooks = PySys_GetObject("path_hooks"); |
| 1313 | if (path_hooks == NULL || !PyList_Check(path_hooks)) { |
Victor Stinner | ed36c06 | 2011-09-15 19:45:53 +0200 | [diff] [blame^] | 1314 | PyErr_SetString(PyExc_RuntimeError, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1315 | "sys.path_hooks must be a list of " |
| 1316 | "import hooks"); |
| 1317 | return NULL; |
| 1318 | } |
| 1319 | path_importer_cache = PySys_GetObject("path_importer_cache"); |
| 1320 | if (path_importer_cache == NULL || |
| 1321 | !PyDict_Check(path_importer_cache)) { |
Victor Stinner | ed36c06 | 2011-09-15 19:45:53 +0200 | [diff] [blame^] | 1322 | PyErr_SetString(PyExc_RuntimeError, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1323 | "sys.path_importer_cache must be a dict"); |
| 1324 | return NULL; |
| 1325 | } |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1326 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1327 | npath = PyList_Size(path); |
| 1328 | namelen = strlen(name); |
| 1329 | for (i = 0; i < npath; i++) { |
| 1330 | PyObject *copy = NULL; |
| 1331 | PyObject *v = PyList_GetItem(path, i); |
| 1332 | if (!v) |
| 1333 | return NULL; |
Walter Dörwald | 3430d70 | 2002-06-17 10:43:59 +0000 | [diff] [blame] | 1334 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1335 | if (PyUnicode_Check(v)) { |
| 1336 | copy = PyUnicode_Encode(PyUnicode_AS_UNICODE(v), |
| 1337 | PyUnicode_GET_SIZE(v), Py_FileSystemDefaultEncoding, NULL); |
| 1338 | if (copy == NULL) |
| 1339 | return NULL; |
| 1340 | v = copy; |
| 1341 | } |
| 1342 | else |
Walter Dörwald | 3430d70 | 2002-06-17 10:43:59 +0000 | [diff] [blame] | 1343 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1344 | if (!PyString_Check(v)) |
| 1345 | continue; |
| 1346 | len = PyString_GET_SIZE(v); |
| 1347 | if (len + 2 + namelen + MAXSUFFIXSIZE >= buflen) { |
| 1348 | Py_XDECREF(copy); |
| 1349 | continue; /* Too long */ |
| 1350 | } |
| 1351 | strcpy(buf, PyString_AS_STRING(v)); |
| 1352 | if (strlen(buf) != len) { |
| 1353 | Py_XDECREF(copy); |
| 1354 | continue; /* v contains '\0' */ |
| 1355 | } |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1356 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1357 | /* sys.path_hooks import hook */ |
| 1358 | if (p_loader != NULL) { |
| 1359 | PyObject *importer; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1360 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1361 | importer = get_path_importer(path_importer_cache, |
| 1362 | path_hooks, v); |
| 1363 | if (importer == NULL) { |
| 1364 | Py_XDECREF(copy); |
| 1365 | return NULL; |
| 1366 | } |
| 1367 | /* Note: importer is a borrowed reference */ |
| 1368 | if (importer != Py_None) { |
| 1369 | PyObject *loader; |
| 1370 | loader = PyObject_CallMethod(importer, |
| 1371 | "find_module", |
| 1372 | "s", fullname); |
| 1373 | Py_XDECREF(copy); |
| 1374 | if (loader == NULL) |
| 1375 | return NULL; /* error */ |
| 1376 | if (loader != Py_None) { |
| 1377 | /* a loader was found */ |
| 1378 | *p_loader = loader; |
| 1379 | return &importhookdescr; |
| 1380 | } |
| 1381 | Py_DECREF(loader); |
| 1382 | continue; |
| 1383 | } |
| 1384 | } |
| 1385 | /* no hook was found, use builtin import */ |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1386 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1387 | if (len > 0 && buf[len-1] != SEP |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1388 | #ifdef ALTSEP |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1389 | && buf[len-1] != ALTSEP |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1390 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1391 | ) |
| 1392 | buf[len++] = SEP; |
| 1393 | strcpy(buf+len, name); |
| 1394 | len += namelen; |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1395 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1396 | /* Check for package import (buf holds a directory name, |
| 1397 | and there's an __init__ module in that directory */ |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1398 | #ifdef HAVE_STAT |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1399 | if (stat(buf, &statbuf) == 0 && /* it exists */ |
| 1400 | S_ISDIR(statbuf.st_mode) && /* it's a directory */ |
| 1401 | case_ok(buf, len, namelen, name)) { /* case matches */ |
| 1402 | if (find_init_module(buf)) { /* and has __init__.py */ |
| 1403 | Py_XDECREF(copy); |
| 1404 | return &fd_package; |
| 1405 | } |
| 1406 | else { |
| 1407 | char warnstr[MAXPATHLEN+80]; |
| 1408 | sprintf(warnstr, "Not importing directory " |
| 1409 | "'%.*s': missing __init__.py", |
| 1410 | MAXPATHLEN, buf); |
| 1411 | if (PyErr_Warn(PyExc_ImportWarning, |
| 1412 | warnstr)) { |
| 1413 | Py_XDECREF(copy); |
| 1414 | return NULL; |
| 1415 | } |
| 1416 | } |
| 1417 | } |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1418 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1419 | /* XXX How are you going to test for directories? */ |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 1420 | #ifdef RISCOS |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1421 | if (isdir(buf) && |
| 1422 | case_ok(buf, len, namelen, name)) { |
| 1423 | if (find_init_module(buf)) { |
| 1424 | Py_XDECREF(copy); |
| 1425 | return &fd_package; |
| 1426 | } |
| 1427 | else { |
| 1428 | char warnstr[MAXPATHLEN+80]; |
| 1429 | sprintf(warnstr, "Not importing directory " |
| 1430 | "'%.*s': missing __init__.py", |
| 1431 | MAXPATHLEN, buf); |
| 1432 | if (PyErr_Warn(PyExc_ImportWarning, |
| 1433 | warnstr)) { |
| 1434 | Py_XDECREF(copy); |
| 1435 | return NULL; |
| 1436 | } |
| 1437 | } |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 1438 | #endif |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1439 | #endif |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1440 | #if defined(PYOS_OS2) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1441 | /* take a snapshot of the module spec for restoration |
| 1442 | * after the 8 character DLL hackery |
| 1443 | */ |
| 1444 | saved_buf = strdup(buf); |
| 1445 | saved_len = len; |
| 1446 | saved_namelen = namelen; |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1447 | #endif /* PYOS_OS2 */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1448 | for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { |
Georg Brandl | add36e5 | 2007-08-23 18:08:06 +0000 | [diff] [blame] | 1449 | #if defined(PYOS_OS2) && defined(HAVE_DYNAMIC_LOADING) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1450 | /* OS/2 limits DLLs to 8 character names (w/o |
| 1451 | extension) |
| 1452 | * so if the name is longer than that and its a |
| 1453 | * dynamically loaded module we're going to try, |
| 1454 | * truncate the name before trying |
| 1455 | */ |
| 1456 | if (strlen(subname) > 8) { |
| 1457 | /* is this an attempt to load a C extension? */ |
| 1458 | const struct filedescr *scan; |
| 1459 | scan = _PyImport_DynLoadFiletab; |
| 1460 | while (scan->suffix != NULL) { |
| 1461 | if (!strcmp(scan->suffix, fdp->suffix)) |
| 1462 | break; |
| 1463 | else |
| 1464 | scan++; |
| 1465 | } |
| 1466 | if (scan->suffix != NULL) { |
| 1467 | /* yes, so truncate the name */ |
| 1468 | namelen = 8; |
| 1469 | len -= strlen(subname) - namelen; |
| 1470 | buf[len] = '\0'; |
| 1471 | } |
| 1472 | } |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1473 | #endif /* PYOS_OS2 */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1474 | strcpy(buf+len, fdp->suffix); |
| 1475 | if (Py_VerboseFlag > 1) |
| 1476 | PySys_WriteStderr("# trying %s\n", buf); |
| 1477 | filemode = fdp->mode; |
| 1478 | if (filemode[0] == 'U') |
| 1479 | filemode = "r" PY_STDIOTEXTMODE; |
| 1480 | fp = fopen(buf, filemode); |
| 1481 | if (fp != NULL) { |
| 1482 | if (case_ok(buf, len, namelen, name)) |
| 1483 | break; |
| 1484 | else { /* continue search */ |
| 1485 | fclose(fp); |
| 1486 | fp = NULL; |
| 1487 | } |
| 1488 | } |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1489 | #if defined(PYOS_OS2) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1490 | /* restore the saved snapshot */ |
| 1491 | strcpy(buf, saved_buf); |
| 1492 | len = saved_len; |
| 1493 | namelen = saved_namelen; |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1494 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1495 | } |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1496 | #if defined(PYOS_OS2) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1497 | /* don't need/want the module name snapshot anymore */ |
| 1498 | if (saved_buf) |
| 1499 | { |
| 1500 | free(saved_buf); |
| 1501 | saved_buf = NULL; |
| 1502 | } |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1503 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1504 | Py_XDECREF(copy); |
| 1505 | if (fp != NULL) |
| 1506 | break; |
| 1507 | } |
| 1508 | if (fp == NULL) { |
| 1509 | PyErr_Format(PyExc_ImportError, |
| 1510 | "No module named %.200s", name); |
| 1511 | return NULL; |
| 1512 | } |
| 1513 | *p_fp = fp; |
| 1514 | return fdp; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1515 | } |
| 1516 | |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 1517 | /* Helpers for main.c |
| 1518 | * Find the source file corresponding to a named module |
| 1519 | */ |
| 1520 | struct filedescr * |
| 1521 | _PyImport_FindModule(const char *name, PyObject *path, char *buf, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1522 | size_t buflen, FILE **p_fp, PyObject **p_loader) |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 1523 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1524 | return find_module((char *) name, (char *) name, path, |
| 1525 | buf, buflen, p_fp, p_loader); |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 1526 | } |
| 1527 | |
| 1528 | PyAPI_FUNC(int) _PyImport_IsScript(struct filedescr * fd) |
| 1529 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1530 | return fd->type == PY_SOURCE || fd->type == PY_COMPILED; |
Raymond Hettinger | db29e0f | 2004-10-07 06:46:25 +0000 | [diff] [blame] | 1531 | } |
| 1532 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1533 | /* case_ok(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name) |
Tim Peters | d1e87a8 | 2001-03-01 18:12:00 +0000 | [diff] [blame] | 1534 | * The arguments here are tricky, best shown by example: |
| 1535 | * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0 |
| 1536 | * ^ ^ ^ ^ |
| 1537 | * |--------------------- buf ---------------------| |
| 1538 | * |------------------- len ------------------| |
| 1539 | * |------ name -------| |
| 1540 | * |----- namelen -----| |
| 1541 | * buf is the full path, but len only counts up to (& exclusive of) the |
| 1542 | * extension. name is the module name, also exclusive of extension. |
| 1543 | * |
| 1544 | * We've already done a successful stat() or fopen() on buf, so know that |
| 1545 | * there's some match, possibly case-insensitive. |
| 1546 | * |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1547 | * case_ok() is to return 1 if there's a case-sensitive match for |
| 1548 | * name, else 0. case_ok() is also to return 1 if envar PYTHONCASEOK |
| 1549 | * exists. |
Tim Peters | d1e87a8 | 2001-03-01 18:12:00 +0000 | [diff] [blame] | 1550 | * |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1551 | * case_ok() is used to implement case-sensitive import semantics even |
| 1552 | * on platforms with case-insensitive filesystems. It's trivial to implement |
| 1553 | * for case-sensitive filesystems. It's pretty much a cross-platform |
| 1554 | * nightmare for systems with case-insensitive filesystems. |
| 1555 | */ |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 1556 | |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1557 | /* First we may need a pile of platform-specific header files; the sequence |
| 1558 | * of #if's here should match the sequence in the body of case_ok(). |
| 1559 | */ |
Jason Tishler | 7961aa6 | 2005-05-20 00:56:54 +0000 | [diff] [blame] | 1560 | #if defined(MS_WINDOWS) |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 1561 | #include <windows.h> |
Guido van Rossum | 4c3f57c | 2001-01-10 20:40:46 +0000 | [diff] [blame] | 1562 | |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1563 | #elif defined(DJGPP) |
| 1564 | #include <dir.h> |
| 1565 | |
Jason Tishler | 7961aa6 | 2005-05-20 00:56:54 +0000 | [diff] [blame] | 1566 | #elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H) |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 1567 | #include <sys/types.h> |
| 1568 | #include <dirent.h> |
| 1569 | |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1570 | #elif defined(PYOS_OS2) |
| 1571 | #define INCL_DOS |
| 1572 | #define INCL_DOSERRORS |
| 1573 | #define INCL_NOPMAPI |
| 1574 | #include <os2.h> |
| 1575 | |
Guido van Rossum | e2ae77b | 2001-10-24 20:42:55 +0000 | [diff] [blame] | 1576 | #elif defined(RISCOS) |
| 1577 | #include "oslib/osfscontrol.h" |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1578 | #endif |
| 1579 | |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 1580 | static int |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1581 | case_ok(char *buf, Py_ssize_t len, Py_ssize_t namelen, char *name) |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 1582 | { |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1583 | /* Pick a platform-specific implementation; the sequence of #if's here should |
| 1584 | * match the sequence just above. |
| 1585 | */ |
| 1586 | |
Jason Tishler | 7961aa6 | 2005-05-20 00:56:54 +0000 | [diff] [blame] | 1587 | /* MS_WINDOWS */ |
| 1588 | #if defined(MS_WINDOWS) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1589 | WIN32_FIND_DATA data; |
| 1590 | HANDLE h; |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1591 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1592 | if (Py_GETENV("PYTHONCASEOK") != NULL) |
| 1593 | return 1; |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1594 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1595 | h = FindFirstFile(buf, &data); |
| 1596 | if (h == INVALID_HANDLE_VALUE) { |
| 1597 | PyErr_Format(PyExc_NameError, |
| 1598 | "Can't find file for module %.100s\n(filename %.300s)", |
| 1599 | name, buf); |
| 1600 | return 0; |
| 1601 | } |
| 1602 | FindClose(h); |
| 1603 | return strncmp(data.cFileName, name, namelen) == 0; |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1604 | |
| 1605 | /* DJGPP */ |
| 1606 | #elif defined(DJGPP) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1607 | struct ffblk ffblk; |
| 1608 | int done; |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1609 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1610 | if (Py_GETENV("PYTHONCASEOK") != NULL) |
| 1611 | return 1; |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1612 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1613 | done = findfirst(buf, &ffblk, FA_ARCH|FA_RDONLY|FA_HIDDEN|FA_DIREC); |
| 1614 | if (done) { |
| 1615 | PyErr_Format(PyExc_NameError, |
| 1616 | "Can't find file for module %.100s\n(filename %.300s)", |
| 1617 | name, buf); |
| 1618 | return 0; |
| 1619 | } |
| 1620 | return strncmp(ffblk.ff_name, name, namelen) == 0; |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 1621 | |
Jason Tishler | 7961aa6 | 2005-05-20 00:56:54 +0000 | [diff] [blame] | 1622 | /* new-fangled macintosh (macosx) or Cygwin */ |
| 1623 | #elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1624 | DIR *dirp; |
| 1625 | struct dirent *dp; |
| 1626 | char dirname[MAXPATHLEN + 1]; |
| 1627 | const int dirlen = len - namelen - 1; /* don't want trailing SEP */ |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 1628 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1629 | if (Py_GETENV("PYTHONCASEOK") != NULL) |
| 1630 | return 1; |
Tim Peters | dbe6ebb | 2001-03-01 08:47:29 +0000 | [diff] [blame] | 1631 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1632 | /* Copy the dir component into dirname; substitute "." if empty */ |
| 1633 | if (dirlen <= 0) { |
| 1634 | dirname[0] = '.'; |
| 1635 | dirname[1] = '\0'; |
| 1636 | } |
| 1637 | else { |
| 1638 | assert(dirlen <= MAXPATHLEN); |
| 1639 | memcpy(dirname, buf, dirlen); |
| 1640 | dirname[dirlen] = '\0'; |
| 1641 | } |
| 1642 | /* Open the directory and search the entries for an exact match. */ |
| 1643 | dirp = opendir(dirname); |
| 1644 | if (dirp) { |
| 1645 | char *nameWithExt = buf + len - namelen; |
| 1646 | while ((dp = readdir(dirp)) != NULL) { |
| 1647 | const int thislen = |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 1648 | #ifdef _DIRENT_HAVE_D_NAMELEN |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1649 | dp->d_namlen; |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 1650 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1651 | strlen(dp->d_name); |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 1652 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1653 | if (thislen >= namelen && |
| 1654 | strcmp(dp->d_name, nameWithExt) == 0) { |
| 1655 | (void)closedir(dirp); |
| 1656 | return 1; /* Found */ |
| 1657 | } |
| 1658 | } |
| 1659 | (void)closedir(dirp); |
| 1660 | } |
| 1661 | return 0 ; /* Not found */ |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 1662 | |
Guido van Rossum | e2ae77b | 2001-10-24 20:42:55 +0000 | [diff] [blame] | 1663 | /* RISC OS */ |
| 1664 | #elif defined(RISCOS) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1665 | char canon[MAXPATHLEN+1]; /* buffer for the canonical form of the path */ |
| 1666 | char buf2[MAXPATHLEN+2]; |
| 1667 | char *nameWithExt = buf+len-namelen; |
| 1668 | int canonlen; |
| 1669 | os_error *e; |
Guido van Rossum | e2ae77b | 2001-10-24 20:42:55 +0000 | [diff] [blame] | 1670 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1671 | if (Py_GETENV("PYTHONCASEOK") != NULL) |
| 1672 | return 1; |
Guido van Rossum | e2ae77b | 2001-10-24 20:42:55 +0000 | [diff] [blame] | 1673 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1674 | /* workaround: |
| 1675 | append wildcard, otherwise case of filename wouldn't be touched */ |
| 1676 | strcpy(buf2, buf); |
| 1677 | strcat(buf2, "*"); |
Guido van Rossum | e2ae77b | 2001-10-24 20:42:55 +0000 | [diff] [blame] | 1678 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1679 | e = xosfscontrol_canonicalise_path(buf2,canon,0,0,MAXPATHLEN+1,&canonlen); |
| 1680 | canonlen = MAXPATHLEN+1-canonlen; |
| 1681 | if (e || canonlen<=0 || canonlen>(MAXPATHLEN+1) ) |
| 1682 | return 0; |
| 1683 | if (strcmp(nameWithExt, canon+canonlen-strlen(nameWithExt))==0) |
| 1684 | return 1; /* match */ |
Guido van Rossum | e2ae77b | 2001-10-24 20:42:55 +0000 | [diff] [blame] | 1685 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1686 | return 0; |
Guido van Rossum | e2ae77b | 2001-10-24 20:42:55 +0000 | [diff] [blame] | 1687 | |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1688 | /* OS/2 */ |
| 1689 | #elif defined(PYOS_OS2) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1690 | HDIR hdir = 1; |
| 1691 | ULONG srchcnt = 1; |
| 1692 | FILEFINDBUF3 ffbuf; |
| 1693 | APIRET rc; |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1694 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1695 | if (Py_GETENV("PYTHONCASEOK") != NULL) |
| 1696 | return 1; |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1697 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1698 | rc = DosFindFirst(buf, |
| 1699 | &hdir, |
| 1700 | FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY, |
| 1701 | &ffbuf, sizeof(ffbuf), |
| 1702 | &srchcnt, |
| 1703 | FIL_STANDARD); |
| 1704 | if (rc != NO_ERROR) |
| 1705 | return 0; |
| 1706 | return strncmp(ffbuf.achName, name, namelen) == 0; |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 1707 | |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1708 | /* assuming it's a case-sensitive filesystem, so there's nothing to do! */ |
| 1709 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1710 | return 1; |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 1711 | |
Guido van Rossum | 4d1b3b9 | 1998-02-13 23:27:59 +0000 | [diff] [blame] | 1712 | #endif |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1713 | } |
Guido van Rossum | 4d1b3b9 | 1998-02-13 23:27:59 +0000 | [diff] [blame] | 1714 | |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 1715 | |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 1716 | #ifdef HAVE_STAT |
| 1717 | /* Helper to look for __init__.py or __init__.py[co] in potential package */ |
| 1718 | static int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1719 | find_init_module(char *buf) |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 1720 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1721 | const size_t save_len = strlen(buf); |
| 1722 | size_t i = save_len; |
| 1723 | char *pname; /* pointer to start of __init__ */ |
| 1724 | struct stat statbuf; |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 1725 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1726 | /* For calling case_ok(buf, len, namelen, name): |
| 1727 | * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0 |
| 1728 | * ^ ^ ^ ^ |
| 1729 | * |--------------------- buf ---------------------| |
| 1730 | * |------------------- len ------------------| |
| 1731 | * |------ name -------| |
| 1732 | * |----- namelen -----| |
Tim Peters | 0f9431f | 2001-07-05 03:47:53 +0000 | [diff] [blame] | 1733 | */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1734 | if (save_len + 13 >= MAXPATHLEN) |
| 1735 | return 0; |
| 1736 | buf[i++] = SEP; |
| 1737 | pname = buf + i; |
| 1738 | strcpy(pname, "__init__.py"); |
| 1739 | if (stat(buf, &statbuf) == 0) { |
| 1740 | if (case_ok(buf, |
| 1741 | save_len + 9, /* len("/__init__") */ |
| 1742 | 8, /* len("__init__") */ |
| 1743 | pname)) { |
| 1744 | buf[save_len] = '\0'; |
| 1745 | return 1; |
| 1746 | } |
| 1747 | } |
| 1748 | i += strlen(pname); |
| 1749 | strcpy(buf+i, Py_OptimizeFlag ? "o" : "c"); |
| 1750 | if (stat(buf, &statbuf) == 0) { |
| 1751 | if (case_ok(buf, |
| 1752 | save_len + 9, /* len("/__init__") */ |
| 1753 | 8, /* len("__init__") */ |
| 1754 | pname)) { |
| 1755 | buf[save_len] = '\0'; |
| 1756 | return 1; |
| 1757 | } |
| 1758 | } |
| 1759 | buf[save_len] = '\0'; |
| 1760 | return 0; |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 1761 | } |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 1762 | |
| 1763 | #else |
| 1764 | |
| 1765 | #ifdef RISCOS |
| 1766 | static int |
| 1767 | find_init_module(buf) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1768 | char *buf; |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 1769 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1770 | int save_len = strlen(buf); |
| 1771 | int i = save_len; |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 1772 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1773 | if (save_len + 13 >= MAXPATHLEN) |
| 1774 | return 0; |
| 1775 | buf[i++] = SEP; |
| 1776 | strcpy(buf+i, "__init__/py"); |
| 1777 | if (isfile(buf)) { |
| 1778 | buf[save_len] = '\0'; |
| 1779 | return 1; |
| 1780 | } |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 1781 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1782 | if (Py_OptimizeFlag) |
| 1783 | strcpy(buf+i, "o"); |
| 1784 | else |
| 1785 | strcpy(buf+i, "c"); |
| 1786 | if (isfile(buf)) { |
| 1787 | buf[save_len] = '\0'; |
| 1788 | return 1; |
| 1789 | } |
| 1790 | buf[save_len] = '\0'; |
| 1791 | return 0; |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 1792 | } |
| 1793 | #endif /*RISCOS*/ |
| 1794 | |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 1795 | #endif /* HAVE_STAT */ |
| 1796 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1797 | |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 1798 | static int init_builtin(char *); /* Forward */ |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1799 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1800 | /* Load an external module using the default search path and return |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 1801 | its module object WITH INCREMENTED REFERENCE COUNT */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1802 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1803 | static PyObject * |
Amaury Forgeot d'Arc | 982b2fa | 2009-07-25 16:22:06 +0000 | [diff] [blame] | 1804 | load_module(char *name, FILE *fp, char *pathname, int type, PyObject *loader) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1805 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1806 | PyObject *modules; |
| 1807 | PyObject *m; |
| 1808 | int err; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1809 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1810 | /* First check that there's an open file (if we need one) */ |
| 1811 | switch (type) { |
| 1812 | case PY_SOURCE: |
| 1813 | case PY_COMPILED: |
| 1814 | if (fp == NULL) { |
| 1815 | PyErr_Format(PyExc_ValueError, |
| 1816 | "file object required for import (type code %d)", |
| 1817 | type); |
| 1818 | return NULL; |
| 1819 | } |
| 1820 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1821 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1822 | switch (type) { |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1823 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1824 | case PY_SOURCE: |
| 1825 | m = load_source_module(name, pathname, fp); |
| 1826 | break; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1827 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1828 | case PY_COMPILED: |
| 1829 | m = load_compiled_module(name, pathname, fp); |
| 1830 | break; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1831 | |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 1832 | #ifdef HAVE_DYNAMIC_LOADING |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1833 | case C_EXTENSION: |
| 1834 | m = _PyImport_LoadDynamicModule(name, pathname, fp); |
| 1835 | break; |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 1836 | #endif |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1837 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1838 | case PKG_DIRECTORY: |
| 1839 | m = load_package(name, pathname); |
| 1840 | break; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1841 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1842 | case C_BUILTIN: |
| 1843 | case PY_FROZEN: |
| 1844 | if (pathname != NULL && pathname[0] != '\0') |
| 1845 | name = pathname; |
| 1846 | if (type == C_BUILTIN) |
| 1847 | err = init_builtin(name); |
| 1848 | else |
| 1849 | err = PyImport_ImportFrozenModule(name); |
| 1850 | if (err < 0) |
| 1851 | return NULL; |
| 1852 | if (err == 0) { |
| 1853 | PyErr_Format(PyExc_ImportError, |
| 1854 | "Purported %s module %.200s not found", |
| 1855 | type == C_BUILTIN ? |
| 1856 | "builtin" : "frozen", |
| 1857 | name); |
| 1858 | return NULL; |
| 1859 | } |
| 1860 | modules = PyImport_GetModuleDict(); |
| 1861 | m = PyDict_GetItemString(modules, name); |
| 1862 | if (m == NULL) { |
| 1863 | PyErr_Format( |
| 1864 | PyExc_ImportError, |
| 1865 | "%s module %.200s not properly initialized", |
| 1866 | type == C_BUILTIN ? |
| 1867 | "builtin" : "frozen", |
| 1868 | name); |
| 1869 | return NULL; |
| 1870 | } |
| 1871 | Py_INCREF(m); |
| 1872 | break; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1873 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1874 | case IMP_HOOK: { |
| 1875 | if (loader == NULL) { |
| 1876 | PyErr_SetString(PyExc_ImportError, |
| 1877 | "import hook without loader"); |
| 1878 | return NULL; |
| 1879 | } |
| 1880 | m = PyObject_CallMethod(loader, "load_module", "s", name); |
| 1881 | break; |
| 1882 | } |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1883 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1884 | default: |
| 1885 | PyErr_Format(PyExc_ImportError, |
| 1886 | "Don't know how to import %.200s (type code %d)", |
| 1887 | name, type); |
| 1888 | m = NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1889 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1890 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1891 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1892 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1893 | } |
| 1894 | |
| 1895 | |
| 1896 | /* Initialize a built-in module. |
Brett Cannon | 5a9aa4f | 2006-10-03 21:58:55 +0000 | [diff] [blame] | 1897 | Return 1 for success, 0 if the module is not found, and -1 with |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1898 | an exception set if the initialization failed. */ |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 1899 | |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 1900 | static int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1901 | init_builtin(char *name) |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 1902 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1903 | struct _inittab *p; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 1904 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1905 | if (_PyImport_FindExtension(name, name) != NULL) |
| 1906 | return 1; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 1907 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1908 | for (p = PyImport_Inittab; p->name != NULL; p++) { |
| 1909 | if (strcmp(name, p->name) == 0) { |
| 1910 | if (p->initfunc == NULL) { |
| 1911 | PyErr_Format(PyExc_ImportError, |
| 1912 | "Cannot re-init internal module %.200s", |
| 1913 | name); |
| 1914 | return -1; |
| 1915 | } |
| 1916 | if (Py_VerboseFlag) |
| 1917 | PySys_WriteStderr("import %s # builtin\n", name); |
| 1918 | (*p->initfunc)(); |
| 1919 | if (PyErr_Occurred()) |
| 1920 | return -1; |
| 1921 | if (_PyImport_FixupExtension(name, name) == NULL) |
| 1922 | return -1; |
| 1923 | return 1; |
| 1924 | } |
| 1925 | } |
| 1926 | return 0; |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 1927 | } |
Guido van Rossum | f56e3db | 1993-04-01 20:59:32 +0000 | [diff] [blame] | 1928 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1929 | |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1930 | /* Frozen modules */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1931 | |
Guido van Rossum | cfd0a22 | 1996-06-17 17:06:34 +0000 | [diff] [blame] | 1932 | static struct _frozen * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1933 | find_frozen(char *name) |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1934 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1935 | struct _frozen *p; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1936 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1937 | for (p = PyImport_FrozenModules; ; p++) { |
| 1938 | if (p->name == NULL) |
| 1939 | return NULL; |
| 1940 | if (strcmp(p->name, name) == 0) |
| 1941 | break; |
| 1942 | } |
| 1943 | return p; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1944 | } |
| 1945 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1946 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1947 | get_frozen_object(char *name) |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1948 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1949 | struct _frozen *p = find_frozen(name); |
| 1950 | int size; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1951 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1952 | if (p == NULL) { |
| 1953 | PyErr_Format(PyExc_ImportError, |
| 1954 | "No such frozen object named %.200s", |
| 1955 | name); |
| 1956 | return NULL; |
| 1957 | } |
| 1958 | if (p->code == NULL) { |
| 1959 | PyErr_Format(PyExc_ImportError, |
| 1960 | "Excluded frozen object named %.200s", |
| 1961 | name); |
| 1962 | return NULL; |
| 1963 | } |
| 1964 | size = p->size; |
| 1965 | if (size < 0) |
| 1966 | size = -size; |
| 1967 | return PyMarshal_ReadObjectFromString((char *)p->code, size); |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1968 | } |
| 1969 | |
| 1970 | /* Initialize a frozen module. |
| 1971 | Return 1 for succes, 0 if the module is not found, and -1 with |
| 1972 | an exception set if the initialization failed. |
| 1973 | This function is also used from frozenmain.c */ |
Guido van Rossum | 0b34490 | 1995-02-07 15:35:27 +0000 | [diff] [blame] | 1974 | |
| 1975 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1976 | PyImport_ImportFrozenModule(char *name) |
Guido van Rossum | f56e3db | 1993-04-01 20:59:32 +0000 | [diff] [blame] | 1977 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1978 | struct _frozen *p = find_frozen(name); |
| 1979 | PyObject *co; |
| 1980 | PyObject *m; |
| 1981 | int ispackage; |
| 1982 | int size; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1983 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1984 | if (p == NULL) |
| 1985 | return 0; |
| 1986 | if (p->code == NULL) { |
| 1987 | PyErr_Format(PyExc_ImportError, |
| 1988 | "Excluded frozen object named %.200s", |
| 1989 | name); |
| 1990 | return -1; |
| 1991 | } |
| 1992 | size = p->size; |
| 1993 | ispackage = (size < 0); |
| 1994 | if (ispackage) |
| 1995 | size = -size; |
| 1996 | if (Py_VerboseFlag) |
| 1997 | PySys_WriteStderr("import %s # frozen%s\n", |
| 1998 | name, ispackage ? " package" : ""); |
| 1999 | co = PyMarshal_ReadObjectFromString((char *)p->code, size); |
| 2000 | if (co == NULL) |
| 2001 | return -1; |
| 2002 | if (!PyCode_Check(co)) { |
| 2003 | PyErr_Format(PyExc_TypeError, |
| 2004 | "frozen object %.200s is not a code object", |
| 2005 | name); |
| 2006 | goto err_return; |
| 2007 | } |
| 2008 | if (ispackage) { |
| 2009 | /* Set __path__ to the package name */ |
| 2010 | PyObject *d, *s; |
| 2011 | int err; |
| 2012 | m = PyImport_AddModule(name); |
| 2013 | if (m == NULL) |
| 2014 | goto err_return; |
| 2015 | d = PyModule_GetDict(m); |
| 2016 | s = PyString_InternFromString(name); |
| 2017 | if (s == NULL) |
| 2018 | goto err_return; |
| 2019 | err = PyDict_SetItemString(d, "__path__", s); |
| 2020 | Py_DECREF(s); |
| 2021 | if (err != 0) |
| 2022 | goto err_return; |
| 2023 | } |
| 2024 | m = PyImport_ExecCodeModuleEx(name, co, "<frozen>"); |
| 2025 | if (m == NULL) |
| 2026 | goto err_return; |
| 2027 | Py_DECREF(co); |
| 2028 | Py_DECREF(m); |
| 2029 | return 1; |
Neal Norwitz | c0cde4d | 2006-07-16 02:17:36 +0000 | [diff] [blame] | 2030 | err_return: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2031 | Py_DECREF(co); |
| 2032 | return -1; |
Guido van Rossum | f56e3db | 1993-04-01 20:59:32 +0000 | [diff] [blame] | 2033 | } |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 2034 | |
| 2035 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2036 | /* Import a module, either built-in, frozen, or external, and return |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 2037 | its module object WITH INCREMENTED REFERENCE COUNT */ |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 2038 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2039 | PyObject * |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 2040 | PyImport_ImportModule(const char *name) |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 2041 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2042 | PyObject *pname; |
| 2043 | PyObject *result; |
Marc-André Lemburg | 3c61c35 | 2001-02-09 19:40:15 +0000 | [diff] [blame] | 2044 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2045 | pname = PyString_FromString(name); |
| 2046 | if (pname == NULL) |
| 2047 | return NULL; |
| 2048 | result = PyImport_Import(pname); |
| 2049 | Py_DECREF(pname); |
| 2050 | return result; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2051 | } |
| 2052 | |
Christian Heimes | 000a074 | 2008-01-03 22:16:32 +0000 | [diff] [blame] | 2053 | /* Import a module without blocking |
| 2054 | * |
| 2055 | * At first it tries to fetch the module from sys.modules. If the module was |
| 2056 | * never loaded before it loads it with PyImport_ImportModule() unless another |
| 2057 | * thread holds the import lock. In the latter case the function raises an |
| 2058 | * ImportError instead of blocking. |
| 2059 | * |
| 2060 | * Returns the module object with incremented ref count. |
| 2061 | */ |
| 2062 | PyObject * |
| 2063 | PyImport_ImportModuleNoBlock(const char *name) |
| 2064 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2065 | PyObject *result; |
| 2066 | PyObject *modules; |
Victor Stinner | 871a0fb | 2011-09-02 00:21:36 +0200 | [diff] [blame] | 2067 | #ifdef WITH_THREAD |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2068 | long me; |
Victor Stinner | 871a0fb | 2011-09-02 00:21:36 +0200 | [diff] [blame] | 2069 | #endif |
Christian Heimes | 000a074 | 2008-01-03 22:16:32 +0000 | [diff] [blame] | 2070 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2071 | /* Try to get the module from sys.modules[name] */ |
| 2072 | modules = PyImport_GetModuleDict(); |
| 2073 | if (modules == NULL) |
| 2074 | return NULL; |
Christian Heimes | 000a074 | 2008-01-03 22:16:32 +0000 | [diff] [blame] | 2075 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2076 | result = PyDict_GetItemString(modules, name); |
| 2077 | if (result != NULL) { |
| 2078 | Py_INCREF(result); |
| 2079 | return result; |
| 2080 | } |
| 2081 | else { |
| 2082 | PyErr_Clear(); |
| 2083 | } |
Benjamin Peterson | 17f03ca | 2008-09-01 14:18:30 +0000 | [diff] [blame] | 2084 | #ifdef WITH_THREAD |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2085 | /* check the import lock |
| 2086 | * me might be -1 but I ignore the error here, the lock function |
| 2087 | * takes care of the problem */ |
| 2088 | me = PyThread_get_thread_ident(); |
| 2089 | if (import_lock_thread == -1 || import_lock_thread == me) { |
| 2090 | /* no thread or me is holding the lock */ |
| 2091 | return PyImport_ImportModule(name); |
| 2092 | } |
| 2093 | else { |
| 2094 | PyErr_Format(PyExc_ImportError, |
| 2095 | "Failed to import %.200s because the import lock" |
| 2096 | "is held by another thread.", |
| 2097 | name); |
| 2098 | return NULL; |
| 2099 | } |
Benjamin Peterson | 17f03ca | 2008-09-01 14:18:30 +0000 | [diff] [blame] | 2100 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2101 | return PyImport_ImportModule(name); |
Benjamin Peterson | 17f03ca | 2008-09-01 14:18:30 +0000 | [diff] [blame] | 2102 | #endif |
Christian Heimes | 000a074 | 2008-01-03 22:16:32 +0000 | [diff] [blame] | 2103 | } |
| 2104 | |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2105 | /* Forward declarations for helper routines */ |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2106 | static PyObject *get_parent(PyObject *globals, char *buf, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2107 | Py_ssize_t *p_buflen, int level); |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 2108 | static PyObject *load_next(PyObject *mod, PyObject *altmod, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2109 | char **p_name, char *buf, Py_ssize_t *p_buflen); |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 2110 | static int mark_miss(char *name); |
| 2111 | static int ensure_fromlist(PyObject *mod, PyObject *fromlist, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2112 | char *buf, Py_ssize_t buflen, int recursive); |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 2113 | static PyObject * import_submodule(PyObject *mod, char *name, char *fullname); |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2114 | |
| 2115 | /* The Magnum Opus of dotted-name import :-) */ |
| 2116 | |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 2117 | static PyObject * |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2118 | import_module_level(char *name, PyObject *globals, PyObject *locals, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2119 | PyObject *fromlist, int level) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2120 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2121 | char buf[MAXPATHLEN+1]; |
| 2122 | Py_ssize_t buflen = 0; |
| 2123 | PyObject *parent, *head, *next, *tail; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2124 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2125 | if (strchr(name, '/') != NULL |
Christian Heimes | 3403f15 | 2008-01-09 19:56:33 +0000 | [diff] [blame] | 2126 | #ifdef MS_WINDOWS |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2127 | || strchr(name, '\\') != NULL |
Christian Heimes | 3403f15 | 2008-01-09 19:56:33 +0000 | [diff] [blame] | 2128 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2129 | ) { |
| 2130 | PyErr_SetString(PyExc_ImportError, |
| 2131 | "Import by filename is not supported."); |
| 2132 | return NULL; |
| 2133 | } |
Christian Heimes | 3403f15 | 2008-01-09 19:56:33 +0000 | [diff] [blame] | 2134 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2135 | parent = get_parent(globals, buf, &buflen, level); |
| 2136 | if (parent == NULL) |
| 2137 | return NULL; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2138 | |
Brett Cannon | eb3cd30 | 2010-05-20 18:37:55 +0000 | [diff] [blame] | 2139 | head = load_next(parent, level < 0 ? Py_None : parent, &name, buf, |
| 2140 | &buflen); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2141 | if (head == NULL) |
| 2142 | return NULL; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2143 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2144 | tail = head; |
| 2145 | Py_INCREF(tail); |
| 2146 | while (name) { |
| 2147 | next = load_next(tail, tail, &name, buf, &buflen); |
| 2148 | Py_DECREF(tail); |
| 2149 | if (next == NULL) { |
| 2150 | Py_DECREF(head); |
| 2151 | return NULL; |
| 2152 | } |
| 2153 | tail = next; |
| 2154 | } |
| 2155 | if (tail == Py_None) { |
| 2156 | /* If tail is Py_None, both get_parent and load_next found |
| 2157 | an empty module name: someone called __import__("") or |
| 2158 | doctored faulty bytecode */ |
| 2159 | Py_DECREF(tail); |
| 2160 | Py_DECREF(head); |
| 2161 | PyErr_SetString(PyExc_ValueError, |
| 2162 | "Empty module name"); |
| 2163 | return NULL; |
| 2164 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2165 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2166 | if (fromlist != NULL) { |
| 2167 | if (fromlist == Py_None || !PyObject_IsTrue(fromlist)) |
| 2168 | fromlist = NULL; |
| 2169 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2170 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2171 | if (fromlist == NULL) { |
| 2172 | Py_DECREF(tail); |
| 2173 | return head; |
| 2174 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2175 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2176 | Py_DECREF(head); |
| 2177 | if (!ensure_fromlist(tail, fromlist, buf, buflen, 0)) { |
| 2178 | Py_DECREF(tail); |
| 2179 | return NULL; |
| 2180 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2181 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2182 | return tail; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2183 | } |
| 2184 | |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2185 | PyObject * |
| 2186 | PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2187 | PyObject *fromlist, int level) |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2188 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2189 | PyObject *result; |
| 2190 | _PyImport_AcquireLock(); |
| 2191 | result = import_module_level(name, globals, locals, fromlist, level); |
| 2192 | if (_PyImport_ReleaseLock() < 0) { |
| 2193 | Py_XDECREF(result); |
| 2194 | PyErr_SetString(PyExc_RuntimeError, |
| 2195 | "not holding the import lock"); |
| 2196 | return NULL; |
| 2197 | } |
| 2198 | return result; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 2199 | } |
| 2200 | |
Fred Drake | 8759090 | 2004-05-28 20:21:36 +0000 | [diff] [blame] | 2201 | /* Return the package that an import is being performed in. If globals comes |
| 2202 | from the module foo.bar.bat (not itself a package), this returns the |
| 2203 | sys.modules entry for foo.bar. If globals is from a package's __init__.py, |
Georg Brandl | 5f6861d | 2006-05-28 21:57:35 +0000 | [diff] [blame] | 2204 | the package's entry in sys.modules is returned, as a borrowed reference. |
Fred Drake | 8759090 | 2004-05-28 20:21:36 +0000 | [diff] [blame] | 2205 | |
| 2206 | The *name* of the returned package is returned in buf, with the length of |
| 2207 | the name in *p_buflen. |
| 2208 | |
| 2209 | If globals doesn't come from a package or a module in a package, or a |
| 2210 | corresponding entry is not found in sys.modules, Py_None is returned. |
| 2211 | */ |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2212 | static PyObject * |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2213 | get_parent(PyObject *globals, char *buf, Py_ssize_t *p_buflen, int level) |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2214 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2215 | static PyObject *namestr = NULL; |
| 2216 | static PyObject *pathstr = NULL; |
| 2217 | static PyObject *pkgstr = NULL; |
| 2218 | PyObject *pkgname, *modname, *modpath, *modules, *parent; |
| 2219 | int orig_level = level; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2220 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2221 | if (globals == NULL || !PyDict_Check(globals) || !level) |
| 2222 | return Py_None; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2223 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2224 | if (namestr == NULL) { |
| 2225 | namestr = PyString_InternFromString("__name__"); |
| 2226 | if (namestr == NULL) |
| 2227 | return NULL; |
| 2228 | } |
| 2229 | if (pathstr == NULL) { |
| 2230 | pathstr = PyString_InternFromString("__path__"); |
| 2231 | if (pathstr == NULL) |
| 2232 | return NULL; |
| 2233 | } |
| 2234 | if (pkgstr == NULL) { |
| 2235 | pkgstr = PyString_InternFromString("__package__"); |
| 2236 | if (pkgstr == NULL) |
| 2237 | return NULL; |
| 2238 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2239 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2240 | *buf = '\0'; |
| 2241 | *p_buflen = 0; |
| 2242 | pkgname = PyDict_GetItem(globals, pkgstr); |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2243 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2244 | if ((pkgname != NULL) && (pkgname != Py_None)) { |
| 2245 | /* __package__ is set, so use it */ |
| 2246 | Py_ssize_t len; |
| 2247 | if (!PyString_Check(pkgname)) { |
| 2248 | PyErr_SetString(PyExc_ValueError, |
| 2249 | "__package__ set to non-string"); |
| 2250 | return NULL; |
| 2251 | } |
| 2252 | len = PyString_GET_SIZE(pkgname); |
| 2253 | if (len == 0) { |
| 2254 | if (level > 0) { |
| 2255 | PyErr_SetString(PyExc_ValueError, |
| 2256 | "Attempted relative import in non-package"); |
| 2257 | return NULL; |
| 2258 | } |
| 2259 | return Py_None; |
| 2260 | } |
| 2261 | if (len > MAXPATHLEN) { |
| 2262 | PyErr_SetString(PyExc_ValueError, |
| 2263 | "Package name too long"); |
| 2264 | return NULL; |
| 2265 | } |
| 2266 | strcpy(buf, PyString_AS_STRING(pkgname)); |
| 2267 | } else { |
| 2268 | /* __package__ not set, so figure it out and set it */ |
| 2269 | modname = PyDict_GetItem(globals, namestr); |
| 2270 | if (modname == NULL || !PyString_Check(modname)) |
| 2271 | return Py_None; |
Brett Cannon | b166afc | 2010-05-05 20:25:47 +0000 | [diff] [blame] | 2272 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2273 | modpath = PyDict_GetItem(globals, pathstr); |
| 2274 | if (modpath != NULL) { |
| 2275 | /* __path__ is set, so modname is already the package name */ |
| 2276 | Py_ssize_t len = PyString_GET_SIZE(modname); |
| 2277 | int error; |
| 2278 | if (len > MAXPATHLEN) { |
| 2279 | PyErr_SetString(PyExc_ValueError, |
| 2280 | "Module name too long"); |
| 2281 | return NULL; |
| 2282 | } |
| 2283 | strcpy(buf, PyString_AS_STRING(modname)); |
| 2284 | error = PyDict_SetItem(globals, pkgstr, modname); |
| 2285 | if (error) { |
| 2286 | PyErr_SetString(PyExc_ValueError, |
| 2287 | "Could not set __package__"); |
| 2288 | return NULL; |
| 2289 | } |
| 2290 | } else { |
| 2291 | /* Normal module, so work out the package name if any */ |
| 2292 | char *start = PyString_AS_STRING(modname); |
| 2293 | char *lastdot = strrchr(start, '.'); |
| 2294 | size_t len; |
| 2295 | int error; |
| 2296 | if (lastdot == NULL && level > 0) { |
| 2297 | PyErr_SetString(PyExc_ValueError, |
| 2298 | "Attempted relative import in non-package"); |
| 2299 | return NULL; |
| 2300 | } |
| 2301 | if (lastdot == NULL) { |
| 2302 | error = PyDict_SetItem(globals, pkgstr, Py_None); |
| 2303 | if (error) { |
| 2304 | PyErr_SetString(PyExc_ValueError, |
| 2305 | "Could not set __package__"); |
| 2306 | return NULL; |
| 2307 | } |
| 2308 | return Py_None; |
| 2309 | } |
| 2310 | len = lastdot - start; |
| 2311 | if (len >= MAXPATHLEN) { |
| 2312 | PyErr_SetString(PyExc_ValueError, |
| 2313 | "Module name too long"); |
| 2314 | return NULL; |
| 2315 | } |
| 2316 | strncpy(buf, start, len); |
| 2317 | buf[len] = '\0'; |
| 2318 | pkgname = PyString_FromString(buf); |
| 2319 | if (pkgname == NULL) { |
| 2320 | return NULL; |
| 2321 | } |
| 2322 | error = PyDict_SetItem(globals, pkgstr, pkgname); |
| 2323 | Py_DECREF(pkgname); |
| 2324 | if (error) { |
| 2325 | PyErr_SetString(PyExc_ValueError, |
| 2326 | "Could not set __package__"); |
| 2327 | return NULL; |
| 2328 | } |
| 2329 | } |
| 2330 | } |
| 2331 | while (--level > 0) { |
| 2332 | char *dot = strrchr(buf, '.'); |
| 2333 | if (dot == NULL) { |
| 2334 | PyErr_SetString(PyExc_ValueError, |
| 2335 | "Attempted relative import beyond " |
| 2336 | "toplevel package"); |
| 2337 | return NULL; |
| 2338 | } |
| 2339 | *dot = '\0'; |
| 2340 | } |
| 2341 | *p_buflen = strlen(buf); |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2342 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2343 | modules = PyImport_GetModuleDict(); |
| 2344 | parent = PyDict_GetItemString(modules, buf); |
| 2345 | if (parent == NULL) { |
| 2346 | if (orig_level < 1) { |
| 2347 | PyObject *err_msg = PyString_FromFormat( |
| 2348 | "Parent module '%.200s' not found " |
| 2349 | "while handling absolute import", buf); |
| 2350 | if (err_msg == NULL) { |
| 2351 | return NULL; |
| 2352 | } |
| 2353 | if (!PyErr_WarnEx(PyExc_RuntimeWarning, |
| 2354 | PyString_AsString(err_msg), 1)) { |
| 2355 | *buf = '\0'; |
| 2356 | *p_buflen = 0; |
| 2357 | parent = Py_None; |
| 2358 | } |
| 2359 | Py_DECREF(err_msg); |
| 2360 | } else { |
| 2361 | PyErr_Format(PyExc_SystemError, |
| 2362 | "Parent module '%.200s' not loaded, " |
| 2363 | "cannot perform relative import", buf); |
| 2364 | } |
| 2365 | } |
| 2366 | return parent; |
| 2367 | /* We expect, but can't guarantee, if parent != None, that: |
| 2368 | - parent.__name__ == buf |
| 2369 | - parent.__dict__ is globals |
| 2370 | If this is violated... Who cares? */ |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2371 | } |
| 2372 | |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2373 | /* altmod is either None or same as mod */ |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2374 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2375 | load_next(PyObject *mod, PyObject *altmod, char **p_name, char *buf, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2376 | Py_ssize_t *p_buflen) |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2377 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2378 | char *name = *p_name; |
| 2379 | char *dot = strchr(name, '.'); |
| 2380 | size_t len; |
| 2381 | char *p; |
| 2382 | PyObject *result; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2383 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2384 | if (strlen(name) == 0) { |
| 2385 | /* completely empty module name should only happen in |
| 2386 | 'from . import' (or '__import__("")')*/ |
| 2387 | Py_INCREF(mod); |
| 2388 | *p_name = NULL; |
| 2389 | return mod; |
| 2390 | } |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2391 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2392 | if (dot == NULL) { |
| 2393 | *p_name = NULL; |
| 2394 | len = strlen(name); |
| 2395 | } |
| 2396 | else { |
| 2397 | *p_name = dot+1; |
| 2398 | len = dot-name; |
| 2399 | } |
| 2400 | if (len == 0) { |
| 2401 | PyErr_SetString(PyExc_ValueError, |
| 2402 | "Empty module name"); |
| 2403 | return NULL; |
| 2404 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2405 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2406 | p = buf + *p_buflen; |
| 2407 | if (p != buf) |
| 2408 | *p++ = '.'; |
| 2409 | if (p+len-buf >= MAXPATHLEN) { |
| 2410 | PyErr_SetString(PyExc_ValueError, |
| 2411 | "Module name too long"); |
| 2412 | return NULL; |
| 2413 | } |
| 2414 | strncpy(p, name, len); |
| 2415 | p[len] = '\0'; |
| 2416 | *p_buflen = p+len-buf; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2417 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2418 | result = import_submodule(mod, p, buf); |
| 2419 | if (result == Py_None && altmod != mod) { |
| 2420 | Py_DECREF(result); |
| 2421 | /* Here, altmod must be None and mod must not be None */ |
| 2422 | result = import_submodule(altmod, p, p); |
| 2423 | if (result != NULL && result != Py_None) { |
| 2424 | if (mark_miss(buf) != 0) { |
| 2425 | Py_DECREF(result); |
| 2426 | return NULL; |
| 2427 | } |
| 2428 | strncpy(buf, name, len); |
| 2429 | buf[len] = '\0'; |
| 2430 | *p_buflen = len; |
| 2431 | } |
| 2432 | } |
| 2433 | if (result == NULL) |
| 2434 | return NULL; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2435 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2436 | if (result == Py_None) { |
| 2437 | Py_DECREF(result); |
| 2438 | PyErr_Format(PyExc_ImportError, |
| 2439 | "No module named %.200s", name); |
| 2440 | return NULL; |
| 2441 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2442 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2443 | return result; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2444 | } |
| 2445 | |
| 2446 | static int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2447 | mark_miss(char *name) |
Guido van Rossum | f5f5fdb | 1997-09-06 20:29:52 +0000 | [diff] [blame] | 2448 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2449 | PyObject *modules = PyImport_GetModuleDict(); |
| 2450 | return PyDict_SetItemString(modules, name, Py_None); |
Guido van Rossum | f5f5fdb | 1997-09-06 20:29:52 +0000 | [diff] [blame] | 2451 | } |
| 2452 | |
| 2453 | static int |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 2454 | ensure_fromlist(PyObject *mod, PyObject *fromlist, char *buf, Py_ssize_t buflen, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2455 | int recursive) |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2456 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2457 | int i; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2458 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2459 | if (!PyObject_HasAttrString(mod, "__path__")) |
| 2460 | return 1; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2461 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2462 | for (i = 0; ; i++) { |
| 2463 | PyObject *item = PySequence_GetItem(fromlist, i); |
| 2464 | int hasit; |
| 2465 | if (item == NULL) { |
| 2466 | if (PyErr_ExceptionMatches(PyExc_IndexError)) { |
| 2467 | PyErr_Clear(); |
| 2468 | return 1; |
| 2469 | } |
| 2470 | return 0; |
| 2471 | } |
| 2472 | if (!PyString_Check(item)) { |
| 2473 | PyErr_SetString(PyExc_TypeError, |
| 2474 | "Item in ``from list'' not a string"); |
| 2475 | Py_DECREF(item); |
| 2476 | return 0; |
| 2477 | } |
| 2478 | if (PyString_AS_STRING(item)[0] == '*') { |
| 2479 | PyObject *all; |
| 2480 | Py_DECREF(item); |
| 2481 | /* See if the package defines __all__ */ |
| 2482 | if (recursive) |
| 2483 | continue; /* Avoid endless recursion */ |
| 2484 | all = PyObject_GetAttrString(mod, "__all__"); |
| 2485 | if (all == NULL) |
| 2486 | PyErr_Clear(); |
| 2487 | else { |
| 2488 | int ret = ensure_fromlist(mod, all, buf, buflen, 1); |
| 2489 | Py_DECREF(all); |
| 2490 | if (!ret) |
| 2491 | return 0; |
| 2492 | } |
| 2493 | continue; |
| 2494 | } |
| 2495 | hasit = PyObject_HasAttr(mod, item); |
| 2496 | if (!hasit) { |
| 2497 | char *subname = PyString_AS_STRING(item); |
| 2498 | PyObject *submod; |
| 2499 | char *p; |
| 2500 | if (buflen + strlen(subname) >= MAXPATHLEN) { |
| 2501 | PyErr_SetString(PyExc_ValueError, |
| 2502 | "Module name too long"); |
| 2503 | Py_DECREF(item); |
| 2504 | return 0; |
| 2505 | } |
| 2506 | p = buf + buflen; |
| 2507 | *p++ = '.'; |
| 2508 | strcpy(p, subname); |
| 2509 | submod = import_submodule(mod, subname, buf); |
| 2510 | Py_XDECREF(submod); |
| 2511 | if (submod == NULL) { |
| 2512 | Py_DECREF(item); |
| 2513 | return 0; |
| 2514 | } |
| 2515 | } |
| 2516 | Py_DECREF(item); |
| 2517 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2518 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2519 | /* NOTREACHED */ |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2520 | } |
| 2521 | |
Neil Schemenauer | 00b0966 | 2003-06-16 21:03:07 +0000 | [diff] [blame] | 2522 | static int |
| 2523 | add_submodule(PyObject *mod, PyObject *submod, char *fullname, char *subname, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2524 | PyObject *modules) |
Neil Schemenauer | 00b0966 | 2003-06-16 21:03:07 +0000 | [diff] [blame] | 2525 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2526 | if (mod == Py_None) |
| 2527 | return 1; |
| 2528 | /* Irrespective of the success of this load, make a |
| 2529 | reference to it in the parent package module. A copy gets |
| 2530 | saved in the modules dictionary under the full name, so get a |
| 2531 | reference from there, if need be. (The exception is when the |
| 2532 | load failed with a SyntaxError -- then there's no trace in |
| 2533 | sys.modules. In that case, of course, do nothing extra.) */ |
| 2534 | if (submod == NULL) { |
| 2535 | submod = PyDict_GetItemString(modules, fullname); |
| 2536 | if (submod == NULL) |
| 2537 | return 1; |
| 2538 | } |
| 2539 | if (PyModule_Check(mod)) { |
| 2540 | /* We can't use setattr here since it can give a |
| 2541 | * spurious warning if the submodule name shadows a |
| 2542 | * builtin name */ |
| 2543 | PyObject *dict = PyModule_GetDict(mod); |
| 2544 | if (!dict) |
| 2545 | return 0; |
| 2546 | if (PyDict_SetItemString(dict, subname, submod) < 0) |
| 2547 | return 0; |
| 2548 | } |
| 2549 | else { |
| 2550 | if (PyObject_SetAttrString(mod, subname, submod) < 0) |
| 2551 | return 0; |
| 2552 | } |
| 2553 | return 1; |
Neil Schemenauer | 00b0966 | 2003-06-16 21:03:07 +0000 | [diff] [blame] | 2554 | } |
| 2555 | |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2556 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2557 | import_submodule(PyObject *mod, char *subname, char *fullname) |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2558 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2559 | PyObject *modules = PyImport_GetModuleDict(); |
| 2560 | PyObject *m = NULL; |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 2561 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2562 | /* Require: |
| 2563 | if mod == None: subname == fullname |
| 2564 | else: mod.__name__ + "." + subname == fullname |
| 2565 | */ |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2566 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2567 | if ((m = PyDict_GetItemString(modules, fullname)) != NULL) { |
| 2568 | Py_INCREF(m); |
| 2569 | } |
| 2570 | else { |
| 2571 | PyObject *path, *loader = NULL; |
| 2572 | char buf[MAXPATHLEN+1]; |
| 2573 | struct filedescr *fdp; |
| 2574 | FILE *fp = NULL; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2575 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2576 | if (mod == Py_None) |
| 2577 | path = NULL; |
| 2578 | else { |
| 2579 | path = PyObject_GetAttrString(mod, "__path__"); |
| 2580 | if (path == NULL) { |
| 2581 | PyErr_Clear(); |
| 2582 | Py_INCREF(Py_None); |
| 2583 | return Py_None; |
| 2584 | } |
| 2585 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2586 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2587 | buf[0] = '\0'; |
| 2588 | fdp = find_module(fullname, subname, path, buf, MAXPATHLEN+1, |
| 2589 | &fp, &loader); |
| 2590 | Py_XDECREF(path); |
| 2591 | if (fdp == NULL) { |
| 2592 | if (!PyErr_ExceptionMatches(PyExc_ImportError)) |
| 2593 | return NULL; |
| 2594 | PyErr_Clear(); |
| 2595 | Py_INCREF(Py_None); |
| 2596 | return Py_None; |
| 2597 | } |
| 2598 | m = load_module(fullname, fp, buf, fdp->type, loader); |
| 2599 | Py_XDECREF(loader); |
| 2600 | if (fp) |
| 2601 | fclose(fp); |
| 2602 | if (!add_submodule(mod, m, fullname, subname, modules)) { |
| 2603 | Py_XDECREF(m); |
| 2604 | m = NULL; |
| 2605 | } |
| 2606 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2607 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2608 | return m; |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 2609 | } |
| 2610 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2611 | |
| 2612 | /* Re-import a module of any kind and return its module object, WITH |
| 2613 | INCREMENTED REFERENCE COUNT */ |
| 2614 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2615 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2616 | PyImport_ReloadModule(PyObject *m) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2617 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2618 | PyInterpreterState *interp = PyThreadState_Get()->interp; |
| 2619 | PyObject *modules_reloading = interp->modules_reloading; |
| 2620 | PyObject *modules = PyImport_GetModuleDict(); |
| 2621 | PyObject *path = NULL, *loader = NULL, *existing_m = NULL; |
| 2622 | char *name, *subname; |
| 2623 | char buf[MAXPATHLEN+1]; |
| 2624 | struct filedescr *fdp; |
| 2625 | FILE *fp = NULL; |
| 2626 | PyObject *newm; |
Brett Cannon | b166afc | 2010-05-05 20:25:47 +0000 | [diff] [blame] | 2627 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2628 | if (modules_reloading == NULL) { |
| 2629 | Py_FatalError("PyImport_ReloadModule: " |
| 2630 | "no modules_reloading dictionary!"); |
| 2631 | return NULL; |
| 2632 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2633 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2634 | if (m == NULL || !PyModule_Check(m)) { |
| 2635 | PyErr_SetString(PyExc_TypeError, |
| 2636 | "reload() argument must be module"); |
| 2637 | return NULL; |
| 2638 | } |
| 2639 | name = PyModule_GetName(m); |
| 2640 | if (name == NULL) |
| 2641 | return NULL; |
| 2642 | if (m != PyDict_GetItemString(modules, name)) { |
| 2643 | PyErr_Format(PyExc_ImportError, |
| 2644 | "reload(): module %.200s not in sys.modules", |
| 2645 | name); |
| 2646 | return NULL; |
| 2647 | } |
| 2648 | existing_m = PyDict_GetItemString(modules_reloading, name); |
| 2649 | if (existing_m != NULL) { |
| 2650 | /* Due to a recursive reload, this module is already |
| 2651 | being reloaded. */ |
| 2652 | Py_INCREF(existing_m); |
| 2653 | return existing_m; |
| 2654 | } |
| 2655 | if (PyDict_SetItemString(modules_reloading, name, m) < 0) |
| 2656 | return NULL; |
Collin Winter | 276887b | 2007-03-12 16:11:39 +0000 | [diff] [blame] | 2657 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2658 | subname = strrchr(name, '.'); |
| 2659 | if (subname == NULL) |
| 2660 | subname = name; |
| 2661 | else { |
| 2662 | PyObject *parentname, *parent; |
| 2663 | parentname = PyString_FromStringAndSize(name, (subname-name)); |
| 2664 | if (parentname == NULL) { |
| 2665 | imp_modules_reloading_clear(); |
| 2666 | return NULL; |
| 2667 | } |
| 2668 | parent = PyDict_GetItem(modules, parentname); |
| 2669 | if (parent == NULL) { |
| 2670 | PyErr_Format(PyExc_ImportError, |
| 2671 | "reload(): parent %.200s not in sys.modules", |
| 2672 | PyString_AS_STRING(parentname)); |
| 2673 | Py_DECREF(parentname); |
| 2674 | imp_modules_reloading_clear(); |
| 2675 | return NULL; |
| 2676 | } |
| 2677 | Py_DECREF(parentname); |
| 2678 | subname++; |
| 2679 | path = PyObject_GetAttrString(parent, "__path__"); |
| 2680 | if (path == NULL) |
| 2681 | PyErr_Clear(); |
| 2682 | } |
| 2683 | buf[0] = '\0'; |
| 2684 | fdp = find_module(name, subname, path, buf, MAXPATHLEN+1, &fp, &loader); |
| 2685 | Py_XDECREF(path); |
Phillip J. Eby | 7ec642a | 2004-09-23 04:37:36 +0000 | [diff] [blame] | 2686 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2687 | if (fdp == NULL) { |
| 2688 | Py_XDECREF(loader); |
| 2689 | imp_modules_reloading_clear(); |
| 2690 | return NULL; |
| 2691 | } |
Phillip J. Eby | 7ec642a | 2004-09-23 04:37:36 +0000 | [diff] [blame] | 2692 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2693 | newm = load_module(name, fp, buf, fdp->type, loader); |
| 2694 | Py_XDECREF(loader); |
Phillip J. Eby | 7ec642a | 2004-09-23 04:37:36 +0000 | [diff] [blame] | 2695 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2696 | if (fp) |
| 2697 | fclose(fp); |
| 2698 | if (newm == NULL) { |
| 2699 | /* load_module probably removed name from modules because of |
| 2700 | * the error. Put back the original module object. We're |
| 2701 | * going to return NULL in this case regardless of whether |
| 2702 | * replacing name succeeds, so the return value is ignored. |
| 2703 | */ |
| 2704 | PyDict_SetItemString(modules, name, m); |
| 2705 | } |
| 2706 | imp_modules_reloading_clear(); |
| 2707 | return newm; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2708 | } |
| 2709 | |
| 2710 | |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 2711 | /* Higher-level import emulator which emulates the "import" statement |
| 2712 | more accurately -- it invokes the __import__() function from the |
| 2713 | builtins of the current globals. This means that the import is |
| 2714 | done using whatever import hooks are installed in the current |
Guido van Rossum | 6058eb4 | 1998-12-21 19:51:00 +0000 | [diff] [blame] | 2715 | environment, e.g. by "rexec". |
| 2716 | A dummy list ["__doc__"] is passed as the 4th argument so that |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 2717 | e.g. PyImport_Import(PyString_FromString("win32com.client.gencache")) |
Guido van Rossum | 6058eb4 | 1998-12-21 19:51:00 +0000 | [diff] [blame] | 2718 | will return <module "gencache"> instead of <module "win32com">. */ |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 2719 | |
| 2720 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2721 | PyImport_Import(PyObject *module_name) |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 2722 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2723 | static PyObject *silly_list = NULL; |
| 2724 | static PyObject *builtins_str = NULL; |
| 2725 | static PyObject *import_str = NULL; |
| 2726 | PyObject *globals = NULL; |
| 2727 | PyObject *import = NULL; |
| 2728 | PyObject *builtins = NULL; |
| 2729 | PyObject *r = NULL; |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 2730 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2731 | /* Initialize constant string objects */ |
| 2732 | if (silly_list == NULL) { |
| 2733 | import_str = PyString_InternFromString("__import__"); |
| 2734 | if (import_str == NULL) |
| 2735 | return NULL; |
| 2736 | builtins_str = PyString_InternFromString("__builtins__"); |
| 2737 | if (builtins_str == NULL) |
| 2738 | return NULL; |
| 2739 | silly_list = Py_BuildValue("[s]", "__doc__"); |
| 2740 | if (silly_list == NULL) |
| 2741 | return NULL; |
| 2742 | } |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 2743 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2744 | /* Get the builtins from current globals */ |
| 2745 | globals = PyEval_GetGlobals(); |
| 2746 | if (globals != NULL) { |
| 2747 | Py_INCREF(globals); |
| 2748 | builtins = PyObject_GetItem(globals, builtins_str); |
| 2749 | if (builtins == NULL) |
| 2750 | goto err; |
| 2751 | } |
| 2752 | else { |
| 2753 | /* No globals -- use standard builtins, and fake globals */ |
| 2754 | builtins = PyImport_ImportModuleLevel("__builtin__", |
| 2755 | NULL, NULL, NULL, 0); |
| 2756 | if (builtins == NULL) |
| 2757 | return NULL; |
| 2758 | globals = Py_BuildValue("{OO}", builtins_str, builtins); |
| 2759 | if (globals == NULL) |
| 2760 | goto err; |
| 2761 | } |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 2762 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2763 | /* Get the __import__ function from the builtins */ |
| 2764 | if (PyDict_Check(builtins)) { |
| 2765 | import = PyObject_GetItem(builtins, import_str); |
| 2766 | if (import == NULL) |
| 2767 | PyErr_SetObject(PyExc_KeyError, import_str); |
| 2768 | } |
| 2769 | else |
| 2770 | import = PyObject_GetAttr(builtins, import_str); |
| 2771 | if (import == NULL) |
| 2772 | goto err; |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 2773 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2774 | /* Call the __import__ function with the proper argument list |
| 2775 | * Always use absolute import here. */ |
| 2776 | r = PyObject_CallFunction(import, "OOOOi", module_name, globals, |
| 2777 | globals, silly_list, 0, NULL); |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 2778 | |
| 2779 | err: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2780 | Py_XDECREF(globals); |
| 2781 | Py_XDECREF(builtins); |
| 2782 | Py_XDECREF(import); |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2783 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2784 | return r; |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 2785 | } |
| 2786 | |
| 2787 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2788 | /* Module 'imp' provides Python access to the primitives used for |
| 2789 | importing modules. |
| 2790 | */ |
| 2791 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2792 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 2793 | imp_get_magic(PyObject *self, PyObject *noargs) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2794 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2795 | char buf[4]; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2796 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2797 | buf[0] = (char) ((pyc_magic >> 0) & 0xff); |
| 2798 | buf[1] = (char) ((pyc_magic >> 8) & 0xff); |
| 2799 | buf[2] = (char) ((pyc_magic >> 16) & 0xff); |
| 2800 | buf[3] = (char) ((pyc_magic >> 24) & 0xff); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2801 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2802 | return PyString_FromStringAndSize(buf, 4); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2803 | } |
| 2804 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2805 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 2806 | imp_get_suffixes(PyObject *self, PyObject *noargs) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2807 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2808 | PyObject *list; |
| 2809 | struct filedescr *fdp; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2810 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2811 | list = PyList_New(0); |
| 2812 | if (list == NULL) |
| 2813 | return NULL; |
| 2814 | for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { |
| 2815 | PyObject *item = Py_BuildValue("ssi", |
| 2816 | fdp->suffix, fdp->mode, fdp->type); |
| 2817 | if (item == NULL) { |
| 2818 | Py_DECREF(list); |
| 2819 | return NULL; |
| 2820 | } |
| 2821 | if (PyList_Append(list, item) < 0) { |
| 2822 | Py_DECREF(list); |
| 2823 | Py_DECREF(item); |
| 2824 | return NULL; |
| 2825 | } |
| 2826 | Py_DECREF(item); |
| 2827 | } |
| 2828 | return list; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2829 | } |
| 2830 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2831 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2832 | call_find_module(char *name, PyObject *path) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2833 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2834 | extern int fclose(FILE *); |
| 2835 | PyObject *fob, *ret; |
| 2836 | struct filedescr *fdp; |
| 2837 | char pathname[MAXPATHLEN+1]; |
| 2838 | FILE *fp = NULL; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2839 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2840 | pathname[0] = '\0'; |
| 2841 | if (path == Py_None) |
| 2842 | path = NULL; |
| 2843 | fdp = find_module(NULL, name, path, pathname, MAXPATHLEN+1, &fp, NULL); |
| 2844 | if (fdp == NULL) |
| 2845 | return NULL; |
| 2846 | if (fp != NULL) { |
| 2847 | fob = PyFile_FromFile(fp, pathname, fdp->mode, fclose); |
| 2848 | if (fob == NULL) { |
| 2849 | fclose(fp); |
| 2850 | return NULL; |
| 2851 | } |
| 2852 | } |
| 2853 | else { |
| 2854 | fob = Py_None; |
| 2855 | Py_INCREF(fob); |
| 2856 | } |
| 2857 | ret = Py_BuildValue("Os(ssi)", |
| 2858 | fob, pathname, fdp->suffix, fdp->mode, fdp->type); |
| 2859 | Py_DECREF(fob); |
| 2860 | return ret; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2861 | } |
| 2862 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2863 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2864 | imp_find_module(PyObject *self, PyObject *args) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2865 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2866 | char *name; |
| 2867 | PyObject *path = NULL; |
| 2868 | if (!PyArg_ParseTuple(args, "s|O:find_module", &name, &path)) |
| 2869 | return NULL; |
| 2870 | return call_find_module(name, path); |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2871 | } |
| 2872 | |
| 2873 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2874 | imp_init_builtin(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2875 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2876 | char *name; |
| 2877 | int ret; |
| 2878 | PyObject *m; |
| 2879 | if (!PyArg_ParseTuple(args, "s:init_builtin", &name)) |
| 2880 | return NULL; |
| 2881 | ret = init_builtin(name); |
| 2882 | if (ret < 0) |
| 2883 | return NULL; |
| 2884 | if (ret == 0) { |
| 2885 | Py_INCREF(Py_None); |
| 2886 | return Py_None; |
| 2887 | } |
| 2888 | m = PyImport_AddModule(name); |
| 2889 | Py_XINCREF(m); |
| 2890 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2891 | } |
| 2892 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2893 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2894 | imp_init_frozen(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2895 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2896 | char *name; |
| 2897 | int ret; |
| 2898 | PyObject *m; |
| 2899 | if (!PyArg_ParseTuple(args, "s:init_frozen", &name)) |
| 2900 | return NULL; |
| 2901 | ret = PyImport_ImportFrozenModule(name); |
| 2902 | if (ret < 0) |
| 2903 | return NULL; |
| 2904 | if (ret == 0) { |
| 2905 | Py_INCREF(Py_None); |
| 2906 | return Py_None; |
| 2907 | } |
| 2908 | m = PyImport_AddModule(name); |
| 2909 | Py_XINCREF(m); |
| 2910 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2911 | } |
| 2912 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2913 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2914 | imp_get_frozen_object(PyObject *self, PyObject *args) |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2915 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2916 | char *name; |
Jack Jansen | 95ffa23 | 1995-10-03 14:38:41 +0000 | [diff] [blame] | 2917 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2918 | if (!PyArg_ParseTuple(args, "s:get_frozen_object", &name)) |
| 2919 | return NULL; |
| 2920 | return get_frozen_object(name); |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2921 | } |
| 2922 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2923 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2924 | imp_is_builtin(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2925 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2926 | char *name; |
| 2927 | if (!PyArg_ParseTuple(args, "s:is_builtin", &name)) |
| 2928 | return NULL; |
| 2929 | return PyInt_FromLong(is_builtin(name)); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2930 | } |
| 2931 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2932 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2933 | imp_is_frozen(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2934 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2935 | char *name; |
| 2936 | struct _frozen *p; |
| 2937 | if (!PyArg_ParseTuple(args, "s:is_frozen", &name)) |
| 2938 | return NULL; |
| 2939 | p = find_frozen(name); |
| 2940 | return PyBool_FromLong((long) (p == NULL ? 0 : p->size)); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2941 | } |
| 2942 | |
| 2943 | static FILE * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2944 | get_file(char *pathname, PyObject *fob, char *mode) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2945 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2946 | FILE *fp; |
| 2947 | if (fob == NULL) { |
| 2948 | if (mode[0] == 'U') |
| 2949 | mode = "r" PY_STDIOTEXTMODE; |
| 2950 | fp = fopen(pathname, mode); |
| 2951 | if (fp == NULL) |
| 2952 | PyErr_SetFromErrno(PyExc_IOError); |
| 2953 | } |
| 2954 | else { |
| 2955 | fp = PyFile_AsFile(fob); |
| 2956 | if (fp == NULL) |
| 2957 | PyErr_SetString(PyExc_ValueError, |
| 2958 | "bad/closed file object"); |
| 2959 | } |
| 2960 | return fp; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2961 | } |
| 2962 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2963 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2964 | imp_load_compiled(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2965 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2966 | char *name; |
| 2967 | char *pathname; |
| 2968 | PyObject *fob = NULL; |
| 2969 | PyObject *m; |
| 2970 | FILE *fp; |
| 2971 | if (!PyArg_ParseTuple(args, "ss|O!:load_compiled", &name, &pathname, |
| 2972 | &PyFile_Type, &fob)) |
| 2973 | return NULL; |
| 2974 | fp = get_file(pathname, fob, "rb"); |
| 2975 | if (fp == NULL) |
| 2976 | return NULL; |
| 2977 | m = load_compiled_module(name, pathname, fp); |
| 2978 | if (fob == NULL) |
| 2979 | fclose(fp); |
| 2980 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2981 | } |
| 2982 | |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 2983 | #ifdef HAVE_DYNAMIC_LOADING |
| 2984 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2985 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2986 | imp_load_dynamic(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2987 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2988 | char *name; |
| 2989 | char *pathname; |
| 2990 | PyObject *fob = NULL; |
| 2991 | PyObject *m; |
| 2992 | FILE *fp = NULL; |
| 2993 | if (!PyArg_ParseTuple(args, "ss|O!:load_dynamic", &name, &pathname, |
| 2994 | &PyFile_Type, &fob)) |
| 2995 | return NULL; |
| 2996 | if (fob) { |
| 2997 | fp = get_file(pathname, fob, "r"); |
| 2998 | if (fp == NULL) |
| 2999 | return NULL; |
| 3000 | } |
| 3001 | m = _PyImport_LoadDynamicModule(name, pathname, fp); |
| 3002 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3003 | } |
| 3004 | |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 3005 | #endif /* HAVE_DYNAMIC_LOADING */ |
| 3006 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3007 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3008 | imp_load_source(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3009 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3010 | char *name; |
| 3011 | char *pathname; |
| 3012 | PyObject *fob = NULL; |
| 3013 | PyObject *m; |
| 3014 | FILE *fp; |
| 3015 | if (!PyArg_ParseTuple(args, "ss|O!:load_source", &name, &pathname, |
| 3016 | &PyFile_Type, &fob)) |
| 3017 | return NULL; |
| 3018 | fp = get_file(pathname, fob, "r"); |
| 3019 | if (fp == NULL) |
| 3020 | return NULL; |
| 3021 | m = load_source_module(name, pathname, fp); |
| 3022 | if (fob == NULL) |
| 3023 | fclose(fp); |
| 3024 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3025 | } |
| 3026 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3027 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3028 | imp_load_module(PyObject *self, PyObject *args) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3029 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3030 | char *name; |
| 3031 | PyObject *fob; |
| 3032 | char *pathname; |
| 3033 | char *suffix; /* Unused */ |
| 3034 | char *mode; |
| 3035 | int type; |
| 3036 | FILE *fp; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3037 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3038 | if (!PyArg_ParseTuple(args, "sOs(ssi):load_module", |
| 3039 | &name, &fob, &pathname, |
| 3040 | &suffix, &mode, &type)) |
| 3041 | return NULL; |
| 3042 | if (*mode) { |
| 3043 | /* Mode must start with 'r' or 'U' and must not contain '+'. |
| 3044 | Implicit in this test is the assumption that the mode |
| 3045 | may contain other modifiers like 'b' or 't'. */ |
Guido van Rossum | 5e2c5fa | 2002-05-30 17:33:07 +0000 | [diff] [blame] | 3046 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3047 | if (!(*mode == 'r' || *mode == 'U') || strchr(mode, '+')) { |
| 3048 | PyErr_Format(PyExc_ValueError, |
| 3049 | "invalid file open mode %.200s", mode); |
| 3050 | return NULL; |
| 3051 | } |
| 3052 | } |
| 3053 | if (fob == Py_None) |
| 3054 | fp = NULL; |
| 3055 | else { |
| 3056 | if (!PyFile_Check(fob)) { |
| 3057 | PyErr_SetString(PyExc_ValueError, |
| 3058 | "load_module arg#2 should be a file or None"); |
| 3059 | return NULL; |
| 3060 | } |
| 3061 | fp = get_file(pathname, fob, mode); |
| 3062 | if (fp == NULL) |
| 3063 | return NULL; |
| 3064 | } |
| 3065 | return load_module(name, fp, pathname, type, NULL); |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3066 | } |
| 3067 | |
| 3068 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3069 | imp_load_package(PyObject *self, PyObject *args) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3070 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3071 | char *name; |
| 3072 | char *pathname; |
| 3073 | if (!PyArg_ParseTuple(args, "ss:load_package", &name, &pathname)) |
| 3074 | return NULL; |
| 3075 | return load_package(name, pathname); |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3076 | } |
| 3077 | |
| 3078 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3079 | imp_new_module(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3080 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3081 | char *name; |
| 3082 | if (!PyArg_ParseTuple(args, "s:new_module", &name)) |
| 3083 | return NULL; |
| 3084 | return PyModule_New(name); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3085 | } |
| 3086 | |
Brett Cannon | 3aa2a49 | 2008-08-06 22:28:09 +0000 | [diff] [blame] | 3087 | static PyObject * |
| 3088 | imp_reload(PyObject *self, PyObject *v) |
| 3089 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3090 | return PyImport_ReloadModule(v); |
Brett Cannon | 3aa2a49 | 2008-08-06 22:28:09 +0000 | [diff] [blame] | 3091 | } |
| 3092 | |
| 3093 | |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3094 | /* Doc strings */ |
| 3095 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3096 | PyDoc_STRVAR(doc_imp, |
| 3097 | "This module provides the components needed to build your own\n\ |
| 3098 | __import__ function. Undocumented functions are obsolete."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3099 | |
Brett Cannon | 3aa2a49 | 2008-08-06 22:28:09 +0000 | [diff] [blame] | 3100 | PyDoc_STRVAR(doc_reload, |
| 3101 | "reload(module) -> module\n\ |
| 3102 | \n\ |
| 3103 | Reload the module. The module must have been successfully imported before."); |
| 3104 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3105 | PyDoc_STRVAR(doc_find_module, |
| 3106 | "find_module(name, [path]) -> (file, filename, (suffix, mode, type))\n\ |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3107 | Search for a module. If path is omitted or None, search for a\n\ |
| 3108 | built-in, frozen or special module and continue search in sys.path.\n\ |
| 3109 | The module name cannot contain '.'; to search for a submodule of a\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3110 | package, pass the submodule name and the package's __path__."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3111 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3112 | PyDoc_STRVAR(doc_load_module, |
| 3113 | "load_module(name, file, filename, (suffix, mode, type)) -> module\n\ |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3114 | Load a module, given information returned by find_module().\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3115 | The module name must include the full package name, if any."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3116 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3117 | PyDoc_STRVAR(doc_get_magic, |
| 3118 | "get_magic() -> string\n\ |
| 3119 | Return the magic number for .pyc or .pyo files."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3120 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3121 | PyDoc_STRVAR(doc_get_suffixes, |
| 3122 | "get_suffixes() -> [(suffix, mode, type), ...]\n\ |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3123 | Return a list of (suffix, mode, type) tuples describing the files\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3124 | that find_module() looks for."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3125 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3126 | PyDoc_STRVAR(doc_new_module, |
| 3127 | "new_module(name) -> module\n\ |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3128 | Create a new module. Do not enter it in sys.modules.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3129 | The module name must include the full package name, if any."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3130 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3131 | PyDoc_STRVAR(doc_lock_held, |
Tim Peters | a7c6509 | 2004-08-01 23:26:05 +0000 | [diff] [blame] | 3132 | "lock_held() -> boolean\n\ |
| 3133 | Return True if the import lock is currently held, else False.\n\ |
| 3134 | On platforms without threads, return False."); |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 3135 | |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 3136 | PyDoc_STRVAR(doc_acquire_lock, |
| 3137 | "acquire_lock() -> None\n\ |
Neal Norwitz | 2294c0d | 2003-02-12 23:02:21 +0000 | [diff] [blame] | 3138 | Acquires the interpreter's import lock for the current thread.\n\ |
| 3139 | This lock should be used by import hooks to ensure thread-safety\n\ |
| 3140 | when importing modules.\n\ |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 3141 | On platforms without threads, this function does nothing."); |
| 3142 | |
| 3143 | PyDoc_STRVAR(doc_release_lock, |
| 3144 | "release_lock() -> None\n\ |
| 3145 | Release the interpreter's import lock.\n\ |
| 3146 | On platforms without threads, this function does nothing."); |
| 3147 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3148 | static PyMethodDef imp_methods[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3149 | {"reload", imp_reload, METH_O, doc_reload}, |
| 3150 | {"find_module", imp_find_module, METH_VARARGS, doc_find_module}, |
| 3151 | {"get_magic", imp_get_magic, METH_NOARGS, doc_get_magic}, |
| 3152 | {"get_suffixes", imp_get_suffixes, METH_NOARGS, doc_get_suffixes}, |
| 3153 | {"load_module", imp_load_module, METH_VARARGS, doc_load_module}, |
| 3154 | {"new_module", imp_new_module, METH_VARARGS, doc_new_module}, |
| 3155 | {"lock_held", imp_lock_held, METH_NOARGS, doc_lock_held}, |
| 3156 | {"acquire_lock", imp_acquire_lock, METH_NOARGS, doc_acquire_lock}, |
| 3157 | {"release_lock", imp_release_lock, METH_NOARGS, doc_release_lock}, |
| 3158 | /* The rest are obsolete */ |
| 3159 | {"get_frozen_object", imp_get_frozen_object, METH_VARARGS}, |
| 3160 | {"init_builtin", imp_init_builtin, METH_VARARGS}, |
| 3161 | {"init_frozen", imp_init_frozen, METH_VARARGS}, |
| 3162 | {"is_builtin", imp_is_builtin, METH_VARARGS}, |
| 3163 | {"is_frozen", imp_is_frozen, METH_VARARGS}, |
| 3164 | {"load_compiled", imp_load_compiled, METH_VARARGS}, |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 3165 | #ifdef HAVE_DYNAMIC_LOADING |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3166 | {"load_dynamic", imp_load_dynamic, METH_VARARGS}, |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 3167 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3168 | {"load_package", imp_load_package, METH_VARARGS}, |
| 3169 | {"load_source", imp_load_source, METH_VARARGS}, |
| 3170 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3171 | }; |
| 3172 | |
Guido van Rossum | 1a8791e | 1998-08-04 22:46:29 +0000 | [diff] [blame] | 3173 | static int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3174 | setint(PyObject *d, char *name, int value) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3175 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3176 | PyObject *v; |
| 3177 | int err; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3178 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3179 | v = PyInt_FromLong((long)value); |
| 3180 | err = PyDict_SetItemString(d, name, v); |
| 3181 | Py_XDECREF(v); |
| 3182 | return err; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3183 | } |
| 3184 | |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3185 | typedef struct { |
| 3186 | PyObject_HEAD |
| 3187 | } NullImporter; |
| 3188 | |
| 3189 | static int |
| 3190 | NullImporter_init(NullImporter *self, PyObject *args, PyObject *kwds) |
| 3191 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3192 | char *path; |
| 3193 | Py_ssize_t pathlen; |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3194 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3195 | if (!_PyArg_NoKeywords("NullImporter()", kwds)) |
| 3196 | return -1; |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3197 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3198 | if (!PyArg_ParseTuple(args, "s:NullImporter", |
| 3199 | &path)) |
| 3200 | return -1; |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3201 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3202 | pathlen = strlen(path); |
| 3203 | if (pathlen == 0) { |
| 3204 | PyErr_SetString(PyExc_ImportError, "empty pathname"); |
| 3205 | return -1; |
| 3206 | } else { |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3207 | #ifndef RISCOS |
Kristján Valur Jónsson | 3b2a6b8 | 2009-01-09 20:10:59 +0000 | [diff] [blame] | 3208 | #ifndef MS_WINDOWS |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3209 | struct stat statbuf; |
| 3210 | int rv; |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3211 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3212 | rv = stat(path, &statbuf); |
| 3213 | if (rv == 0) { |
| 3214 | /* it exists */ |
| 3215 | if (S_ISDIR(statbuf.st_mode)) { |
| 3216 | /* it's a directory */ |
| 3217 | PyErr_SetString(PyExc_ImportError, |
| 3218 | "existing directory"); |
| 3219 | return -1; |
| 3220 | } |
| 3221 | } |
Kristján Valur Jónsson | 3b2a6b8 | 2009-01-09 20:10:59 +0000 | [diff] [blame] | 3222 | #else /* MS_WINDOWS */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3223 | DWORD rv; |
| 3224 | /* see issue1293 and issue3677: |
| 3225 | * stat() on Windows doesn't recognise paths like |
| 3226 | * "e:\\shared\\" and "\\\\whiterab-c2znlh\\shared" as dirs. |
| 3227 | */ |
| 3228 | rv = GetFileAttributesA(path); |
| 3229 | if (rv != INVALID_FILE_ATTRIBUTES) { |
| 3230 | /* it exists */ |
| 3231 | if (rv & FILE_ATTRIBUTE_DIRECTORY) { |
| 3232 | /* it's a directory */ |
| 3233 | PyErr_SetString(PyExc_ImportError, |
| 3234 | "existing directory"); |
| 3235 | return -1; |
| 3236 | } |
| 3237 | } |
Kristján Valur Jónsson | 3b2a6b8 | 2009-01-09 20:10:59 +0000 | [diff] [blame] | 3238 | #endif |
| 3239 | #else /* RISCOS */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3240 | if (object_exists(path)) { |
| 3241 | /* it exists */ |
| 3242 | if (isdir(path)) { |
| 3243 | /* it's a directory */ |
| 3244 | PyErr_SetString(PyExc_ImportError, |
| 3245 | "existing directory"); |
| 3246 | return -1; |
| 3247 | } |
| 3248 | } |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3249 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3250 | } |
| 3251 | return 0; |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3252 | } |
| 3253 | |
| 3254 | static PyObject * |
| 3255 | NullImporter_find_module(NullImporter *self, PyObject *args) |
| 3256 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3257 | Py_RETURN_NONE; |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3258 | } |
| 3259 | |
| 3260 | static PyMethodDef NullImporter_methods[] = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3261 | {"find_module", (PyCFunction)NullImporter_find_module, METH_VARARGS, |
| 3262 | "Always return None" |
| 3263 | }, |
| 3264 | {NULL} /* Sentinel */ |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3265 | }; |
| 3266 | |
| 3267 | |
Nick Coghlan | 327a39b | 2007-11-18 11:56:28 +0000 | [diff] [blame] | 3268 | PyTypeObject PyNullImporter_Type = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3269 | PyVarObject_HEAD_INIT(NULL, 0) |
| 3270 | "imp.NullImporter", /*tp_name*/ |
| 3271 | sizeof(NullImporter), /*tp_basicsize*/ |
| 3272 | 0, /*tp_itemsize*/ |
| 3273 | 0, /*tp_dealloc*/ |
| 3274 | 0, /*tp_print*/ |
| 3275 | 0, /*tp_getattr*/ |
| 3276 | 0, /*tp_setattr*/ |
| 3277 | 0, /*tp_compare*/ |
| 3278 | 0, /*tp_repr*/ |
| 3279 | 0, /*tp_as_number*/ |
| 3280 | 0, /*tp_as_sequence*/ |
| 3281 | 0, /*tp_as_mapping*/ |
| 3282 | 0, /*tp_hash */ |
| 3283 | 0, /*tp_call*/ |
| 3284 | 0, /*tp_str*/ |
| 3285 | 0, /*tp_getattro*/ |
| 3286 | 0, /*tp_setattro*/ |
| 3287 | 0, /*tp_as_buffer*/ |
| 3288 | Py_TPFLAGS_DEFAULT, /*tp_flags*/ |
| 3289 | "Null importer object", /* tp_doc */ |
| 3290 | 0, /* tp_traverse */ |
| 3291 | 0, /* tp_clear */ |
| 3292 | 0, /* tp_richcompare */ |
| 3293 | 0, /* tp_weaklistoffset */ |
| 3294 | 0, /* tp_iter */ |
| 3295 | 0, /* tp_iternext */ |
| 3296 | NullImporter_methods, /* tp_methods */ |
| 3297 | 0, /* tp_members */ |
| 3298 | 0, /* tp_getset */ |
| 3299 | 0, /* tp_base */ |
| 3300 | 0, /* tp_dict */ |
| 3301 | 0, /* tp_descr_get */ |
| 3302 | 0, /* tp_descr_set */ |
| 3303 | 0, /* tp_dictoffset */ |
| 3304 | (initproc)NullImporter_init, /* tp_init */ |
| 3305 | 0, /* tp_alloc */ |
| 3306 | PyType_GenericNew /* tp_new */ |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3307 | }; |
| 3308 | |
| 3309 | |
Jason Tishler | 6bc06ec | 2003-09-04 11:59:50 +0000 | [diff] [blame] | 3310 | PyMODINIT_FUNC |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3311 | initimp(void) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3312 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3313 | PyObject *m, *d; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3314 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3315 | if (PyType_Ready(&PyNullImporter_Type) < 0) |
| 3316 | goto failure; |
Phillip J. Eby | f7575d0 | 2006-07-28 21:12:07 +0000 | [diff] [blame] | 3317 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3318 | m = Py_InitModule4("imp", imp_methods, doc_imp, |
| 3319 | NULL, PYTHON_API_VERSION); |
| 3320 | if (m == NULL) |
| 3321 | goto failure; |
| 3322 | d = PyModule_GetDict(m); |
| 3323 | if (d == NULL) |
| 3324 | goto failure; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3325 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3326 | if (setint(d, "SEARCH_ERROR", SEARCH_ERROR) < 0) goto failure; |
| 3327 | if (setint(d, "PY_SOURCE", PY_SOURCE) < 0) goto failure; |
| 3328 | if (setint(d, "PY_COMPILED", PY_COMPILED) < 0) goto failure; |
| 3329 | if (setint(d, "C_EXTENSION", C_EXTENSION) < 0) goto failure; |
| 3330 | if (setint(d, "PY_RESOURCE", PY_RESOURCE) < 0) goto failure; |
| 3331 | if (setint(d, "PKG_DIRECTORY", PKG_DIRECTORY) < 0) goto failure; |
| 3332 | if (setint(d, "C_BUILTIN", C_BUILTIN) < 0) goto failure; |
| 3333 | if (setint(d, "PY_FROZEN", PY_FROZEN) < 0) goto failure; |
| 3334 | if (setint(d, "PY_CODERESOURCE", PY_CODERESOURCE) < 0) goto failure; |
| 3335 | if (setint(d, "IMP_HOOK", IMP_HOOK) < 0) goto failure; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3336 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3337 | Py_INCREF(&PyNullImporter_Type); |
| 3338 | PyModule_AddObject(m, "NullImporter", (PyObject *)&PyNullImporter_Type); |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3339 | failure: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3340 | ; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3341 | } |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3342 | |
| 3343 | |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 3344 | /* API for embedding applications that want to add their own entries |
| 3345 | to the table of built-in modules. This should normally be called |
| 3346 | *before* Py_Initialize(). When the table resize fails, -1 is |
| 3347 | returned and the existing table is unchanged. |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3348 | |
| 3349 | After a similar function by Just van Rossum. */ |
| 3350 | |
| 3351 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3352 | PyImport_ExtendInittab(struct _inittab *newtab) |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3353 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3354 | static struct _inittab *our_copy = NULL; |
| 3355 | struct _inittab *p; |
| 3356 | int i, n; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3357 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3358 | /* Count the number of entries in both tables */ |
| 3359 | for (n = 0; newtab[n].name != NULL; n++) |
| 3360 | ; |
| 3361 | if (n == 0) |
| 3362 | return 0; /* Nothing to do */ |
| 3363 | for (i = 0; PyImport_Inittab[i].name != NULL; i++) |
| 3364 | ; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3365 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3366 | /* Allocate new memory for the combined table */ |
| 3367 | p = our_copy; |
| 3368 | PyMem_RESIZE(p, struct _inittab, i+n+1); |
| 3369 | if (p == NULL) |
| 3370 | return -1; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3371 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3372 | /* Copy the tables into the new memory */ |
| 3373 | if (our_copy != PyImport_Inittab) |
| 3374 | memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct _inittab)); |
| 3375 | PyImport_Inittab = our_copy = p; |
| 3376 | memcpy(p+i, newtab, (n+1) * sizeof(struct _inittab)); |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3377 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3378 | return 0; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3379 | } |
| 3380 | |
| 3381 | /* Shorthand to add a single entry given a name and a function */ |
| 3382 | |
| 3383 | int |
Brett Cannon | c4f90eb | 2009-04-02 03:17:39 +0000 | [diff] [blame] | 3384 | PyImport_AppendInittab(const char *name, void (*initfunc)(void)) |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3385 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3386 | struct _inittab newtab[2]; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3387 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3388 | memset(newtab, '\0', sizeof newtab); |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3389 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3390 | newtab[0].name = (char *)name; |
| 3391 | newtab[0].initfunc = initfunc; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3392 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 3393 | return PyImport_ExtendInittab(newtab); |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 3394 | } |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +0000 | [diff] [blame] | 3395 | |
| 3396 | #ifdef __cplusplus |
| 3397 | } |
| 3398 | #endif |