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" |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 7 | #undef Yield /* undefine macro conflicting with winbase.h */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 8 | #include "errcode.h" |
Guido van Rossum | c405b7b | 1991-06-04 19:39:42 +0000 | [diff] [blame] | 9 | #include "marshal.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 10 | #include "code.h" |
Guido van Rossum | d8bac6d | 1992-02-26 15:19:13 +0000 | [diff] [blame] | 11 | #include "osdefs.h" |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 12 | #include "importdl.h" |
Guido van Rossum | c405b7b | 1991-06-04 19:39:42 +0000 | [diff] [blame] | 13 | |
Guido van Rossum | 55a8338 | 2000-09-20 20:31:38 +0000 | [diff] [blame] | 14 | #ifdef HAVE_FCNTL_H |
| 15 | #include <fcntl.h> |
| 16 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 17 | #ifdef __cplusplus |
Brett Cannon | 9a5b25a | 2010-03-01 02:09:17 +0000 | [diff] [blame] | 18 | extern "C" { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 19 | #endif |
Guido van Rossum | 55a8338 | 2000-09-20 20:31:38 +0000 | [diff] [blame] | 20 | |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 21 | #ifdef MS_WINDOWS |
| 22 | /* for stat.st_mode */ |
| 23 | typedef unsigned short mode_t; |
Daniel Stutzbach | c793779 | 2010-09-09 21:18:04 +0000 | [diff] [blame] | 24 | /* for _mkdir */ |
| 25 | #include <direct.h> |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 26 | #endif |
| 27 | |
Guido van Rossum | 21d335e | 1993-10-15 13:01:11 +0000 | [diff] [blame] | 28 | |
Jeremy Hylton | d4ceb31 | 2004-04-01 02:45:22 +0000 | [diff] [blame] | 29 | /* Magic word to reject .pyc files generated by other Python versions. |
| 30 | It should change for each incompatible change to the bytecode. |
| 31 | |
| 32 | 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] | 33 | 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] | 34 | Apple MPW compiler swaps their values, botching string constants. |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 35 | |
Guido van Rossum | 45aecf4 | 2006-03-15 04:58:47 +0000 | [diff] [blame] | 36 | The magic numbers must be spaced apart at least 2 values, as the |
Martin v. Löwis | ef82d2f | 2004-06-27 16:51:46 +0000 | [diff] [blame] | 37 | -U interpeter flag will cause MAGIC+1 being used. They have been |
| 38 | odd numbers for some time now. |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 39 | |
Jeremy Hylton | d4ceb31 | 2004-04-01 02:45:22 +0000 | [diff] [blame] | 40 | There were a variety of old schemes for setting the magic number. |
| 41 | The current working scheme is to increment the previous value by |
| 42 | 10. |
Guido van Rossum | f689492 | 2002-08-31 15:16:14 +0000 | [diff] [blame] | 43 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 44 | Starting with the adoption of PEP 3147 in Python 3.2, every bump in magic |
| 45 | number also includes a new "magic tag", i.e. a human readable string used |
| 46 | to represent the magic number in __pycache__ directories. When you change |
| 47 | the magic number, you must also set a new unique magic tag. Generally this |
| 48 | can be named after the Python major version of the magic number bump, but |
| 49 | it can really be anything, as long as it's different than anything else |
| 50 | that's come before. The tags are included in the following table, starting |
| 51 | with Python 3.2a0. |
| 52 | |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 53 | Known values: |
| 54 | Python 1.5: 20121 |
| 55 | Python 1.5.1: 20121 |
| 56 | Python 1.5.2: 20121 |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 57 | Python 1.6: 50428 |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 58 | Python 2.0: 50823 |
| 59 | Python 2.0.1: 50823 |
| 60 | Python 2.1: 60202 |
| 61 | Python 2.1.1: 60202 |
| 62 | Python 2.1.2: 60202 |
| 63 | Python 2.2: 60717 |
Neal Norwitz | 7fdcb41 | 2002-06-14 01:07:39 +0000 | [diff] [blame] | 64 | Python 2.3a0: 62011 |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 65 | Python 2.3a0: 62021 |
Guido van Rossum | f689492 | 2002-08-31 15:16:14 +0000 | [diff] [blame] | 66 | Python 2.3a0: 62011 (!) |
Martin v. Löwis | ef82d2f | 2004-06-27 16:51:46 +0000 | [diff] [blame] | 67 | Python 2.4a0: 62041 |
Raymond Hettinger | fd2d1f7 | 2004-08-23 23:37:48 +0000 | [diff] [blame] | 68 | Python 2.4a3: 62051 |
Raymond Hettinger | 2c31a05 | 2004-09-22 18:44:21 +0000 | [diff] [blame] | 69 | Python 2.4b1: 62061 |
Michael W. Hudson | df88846 | 2005-06-03 14:41:55 +0000 | [diff] [blame] | 70 | Python 2.5a0: 62071 |
Michael W. Hudson | aee2e28 | 2005-10-21 11:32:20 +0000 | [diff] [blame] | 71 | Python 2.5a0: 62081 (ast-branch) |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 72 | Python 2.5a0: 62091 (with) |
Guido van Rossum | f669436 | 2006-03-10 02:28:35 +0000 | [diff] [blame] | 73 | Python 2.5a0: 62092 (changed WITH_CLEANUP opcode) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 74 | Python 2.5b3: 62101 (fix wrong code: for x, in ...) |
| 75 | Python 2.5b3: 62111 (fix wrong code: x += yield) |
| 76 | Python 2.5c1: 62121 (fix wrong lnotab with for loops and |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 77 | storing constants that should have been removed) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 78 | Python 2.5c2: 62131 (fix wrong code: for x, in ... in listcomp/genexp) |
Christian Heimes | 99170a5 | 2007-12-19 02:07:34 +0000 | [diff] [blame] | 79 | Python 2.6a0: 62151 (peephole optimizations and STORE_MAP opcode) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 80 | Python 2.6a1: 62161 (WITH_CLEANUP optimization) |
Guido van Rossum | 45aecf4 | 2006-03-15 04:58:47 +0000 | [diff] [blame] | 81 | Python 3000: 3000 |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 82 | 3010 (removed UNARY_CONVERT) |
| 83 | 3020 (added BUILD_SET) |
| 84 | 3030 (added keyword-only parameters) |
| 85 | 3040 (added signature annotations) |
| 86 | 3050 (print becomes a function) |
| 87 | 3060 (PEP 3115 metaclass syntax) |
| 88 | 3061 (string literals become unicode) |
| 89 | 3071 (PEP 3109 raise changes) |
| 90 | 3081 (PEP 3137 make __file__ and __name__ unicode) |
| 91 | 3091 (kill str8 interning) |
| 92 | 3101 (merge from 2.6a0, see 62151) |
| 93 | 3103 (__file__ points to source file) |
Benjamin Peterson | 0f6cae0 | 2009-12-10 02:09:08 +0000 | [diff] [blame] | 94 | Python 3.0a4: 3111 (WITH_CLEANUP optimization). |
| 95 | Python 3.0a5: 3131 (lexical exception stacking, including POP_EXCEPT) |
| 96 | Python 3.1a0: 3141 (optimize list, set and dict comprehensions: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 97 | change LIST_APPEND and SET_ADD, add MAP_ADD) |
Benjamin Peterson | 0f6cae0 | 2009-12-10 02:09:08 +0000 | [diff] [blame] | 98 | Python 3.1a0: 3151 (optimize conditional branches: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 99 | introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE) |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 100 | Python 3.2a0: 3160 (add SETUP_WITH) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 101 | tag: cpython-32 |
Antoine Pitrou | 74a69fa | 2010-09-04 18:43:52 +0000 | [diff] [blame] | 102 | Python 3.2a1: 3170 (add DUP_TOP_TWO, remove DUP_TOPX and ROT_FOUR) |
| 103 | tag: cpython-32 |
Benjamin Peterson | 6246d6d | 2010-09-10 21:51:44 +0000 | [diff] [blame] | 104 | Python 3.2a2 3180 (add DELETE_DEREF) |
Benjamin Peterson | e7c15fa | 2011-06-19 19:54:45 -0500 | [diff] [blame] | 105 | Python 3.3a0 3190 __class__ super closure changed |
Tim Peters | 36515e2 | 2001-11-18 04:06:29 +0000 | [diff] [blame] | 106 | */ |
Guido van Rossum | 3ddee71 | 1991-12-16 13:06:34 +0000 | [diff] [blame] | 107 | |
Nick Coghlan | cd419ab | 2010-09-11 00:39:25 +0000 | [diff] [blame] | 108 | /* MAGIC must change whenever the bytecode emitted by the compiler may no |
| 109 | longer be understood by older implementations of the eval loop (usually |
| 110 | due to the addition of new opcodes) |
Martin v. Löwis | fadcd31 | 2011-10-23 18:08:20 +0200 | [diff] [blame] | 111 | TAG must change for each major Python release. The magic number will take |
| 112 | care of any bytecode changes that occur during development. |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 113 | */ |
Benjamin Peterson | 48deae1 | 2011-06-03 17:50:16 -0500 | [diff] [blame] | 114 | #define QUOTE(arg) #arg |
| 115 | #define STRIFY(name) QUOTE(name) |
| 116 | #define MAJOR STRIFY(PY_MAJOR_VERSION) |
| 117 | #define MINOR STRIFY(PY_MINOR_VERSION) |
Benjamin Peterson | e7c15fa | 2011-06-19 19:54:45 -0500 | [diff] [blame] | 118 | #define MAGIC (3190 | ((long)'\r'<<16) | ((long)'\n'<<24)) |
Benjamin Peterson | 48deae1 | 2011-06-03 17:50:16 -0500 | [diff] [blame] | 119 | #define TAG "cpython-" MAJOR MINOR; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 120 | #define CACHEDIR "__pycache__" |
| 121 | /* Current magic word and string tag as globals. */ |
Guido van Rossum | 96774c1 | 2000-05-01 20:19:08 +0000 | [diff] [blame] | 122 | static long pyc_magic = MAGIC; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 123 | static const char *pyc_tag = TAG; |
Benjamin Peterson | 48deae1 | 2011-06-03 17:50:16 -0500 | [diff] [blame] | 124 | #undef QUOTE |
| 125 | #undef STRIFY |
| 126 | #undef MAJOR |
| 127 | #undef MINOR |
Guido van Rossum | 96774c1 | 2000-05-01 20:19:08 +0000 | [diff] [blame] | 128 | |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 129 | /* See _PyImport_FixupExtensionObject() below */ |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 130 | static PyObject *extensions = NULL; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 131 | |
Victor Stinner | fe7c5b5 | 2011-04-05 01:48:03 +0200 | [diff] [blame] | 132 | /* Function from Parser/tokenizer.c */ |
| 133 | extern char * PyTokenizer_FindEncodingFilename(int, PyObject *); |
| 134 | |
Guido van Rossum | 771c6c8 | 1997-10-31 18:37:24 +0000 | [diff] [blame] | 135 | /* This table is defined in config.c: */ |
| 136 | extern struct _inittab _PyImport_Inittab[]; |
| 137 | |
| 138 | struct _inittab *PyImport_Inittab = _PyImport_Inittab; |
Guido van Rossum | 66f1fa8 | 1991-04-03 19:03:52 +0000 | [diff] [blame] | 139 | |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 140 | /* these tables define the module suffixes that Python recognizes */ |
| 141 | struct filedescr * _PyImport_Filetab = NULL; |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 142 | |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 143 | static const struct filedescr _PyImport_StandardFiletab[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 144 | {".py", "U", PY_SOURCE}, |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 145 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 146 | {".pyw", "U", PY_SOURCE}, |
Tim Peters | 36515e2 | 2001-11-18 04:06:29 +0000 | [diff] [blame] | 147 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 148 | {".pyc", "rb", PY_COMPILED}, |
| 149 | {0, 0} |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 150 | }; |
| 151 | |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 152 | static PyObject *initstr = NULL; |
Martin v. Löwis | bd928fe | 2011-10-14 10:20:37 +0200 | [diff] [blame] | 153 | _Py_IDENTIFIER(__path__); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 154 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 155 | /* Initialize things */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 156 | |
| 157 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 158 | _PyImport_Init(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 159 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 160 | const struct filedescr *scan; |
| 161 | struct filedescr *filetab; |
| 162 | int countD = 0; |
| 163 | int countS = 0; |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 164 | |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 165 | initstr = PyUnicode_InternFromString("__init__"); |
| 166 | if (initstr == NULL) |
| 167 | Py_FatalError("Can't initialize import variables"); |
| 168 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 169 | /* prepare _PyImport_Filetab: copy entries from |
| 170 | _PyImport_DynLoadFiletab and _PyImport_StandardFiletab. |
| 171 | */ |
Guido van Rossum | 04110fb | 2007-08-24 16:32:05 +0000 | [diff] [blame] | 172 | #ifdef HAVE_DYNAMIC_LOADING |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 173 | for (scan = _PyImport_DynLoadFiletab; scan->suffix != NULL; ++scan) |
| 174 | ++countD; |
Guido van Rossum | 04110fb | 2007-08-24 16:32:05 +0000 | [diff] [blame] | 175 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 176 | for (scan = _PyImport_StandardFiletab; scan->suffix != NULL; ++scan) |
| 177 | ++countS; |
| 178 | filetab = PyMem_NEW(struct filedescr, countD + countS + 1); |
| 179 | if (filetab == NULL) |
| 180 | Py_FatalError("Can't initialize import file table."); |
Guido van Rossum | 04110fb | 2007-08-24 16:32:05 +0000 | [diff] [blame] | 181 | #ifdef HAVE_DYNAMIC_LOADING |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 182 | memcpy(filetab, _PyImport_DynLoadFiletab, |
| 183 | countD * sizeof(struct filedescr)); |
Guido van Rossum | 04110fb | 2007-08-24 16:32:05 +0000 | [diff] [blame] | 184 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 185 | memcpy(filetab + countD, _PyImport_StandardFiletab, |
| 186 | countS * sizeof(struct filedescr)); |
| 187 | filetab[countD + countS].suffix = NULL; |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 188 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 189 | _PyImport_Filetab = filetab; |
Guido van Rossum | ed1170e | 1999-12-20 21:23:41 +0000 | [diff] [blame] | 190 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 191 | if (Py_OptimizeFlag) { |
| 192 | /* Replace ".pyc" with ".pyo" in _PyImport_Filetab */ |
| 193 | for (; filetab->suffix != NULL; filetab++) { |
| 194 | if (strcmp(filetab->suffix, ".pyc") == 0) |
| 195 | filetab->suffix = ".pyo"; |
| 196 | } |
| 197 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 200 | void |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 201 | _PyImportHooks_Init(void) |
| 202 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 203 | PyObject *v, *path_hooks = NULL, *zimpimport; |
| 204 | int err = 0; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 205 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 206 | /* adding sys.path_hooks and sys.path_importer_cache, setting up |
| 207 | zipimport */ |
| 208 | if (PyType_Ready(&PyNullImporter_Type) < 0) |
| 209 | goto error; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 210 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 211 | if (Py_VerboseFlag) |
| 212 | PySys_WriteStderr("# installing zipimport hook\n"); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 213 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 214 | v = PyList_New(0); |
| 215 | if (v == NULL) |
| 216 | goto error; |
| 217 | err = PySys_SetObject("meta_path", v); |
| 218 | Py_DECREF(v); |
| 219 | if (err) |
| 220 | goto error; |
| 221 | v = PyDict_New(); |
| 222 | if (v == NULL) |
| 223 | goto error; |
| 224 | err = PySys_SetObject("path_importer_cache", v); |
| 225 | Py_DECREF(v); |
| 226 | if (err) |
| 227 | goto error; |
| 228 | path_hooks = PyList_New(0); |
| 229 | if (path_hooks == NULL) |
| 230 | goto error; |
| 231 | err = PySys_SetObject("path_hooks", path_hooks); |
| 232 | if (err) { |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 233 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 234 | PyErr_Print(); |
| 235 | Py_FatalError("initializing sys.meta_path, sys.path_hooks, " |
| 236 | "path_importer_cache, or NullImporter failed" |
| 237 | ); |
| 238 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 239 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 240 | zimpimport = PyImport_ImportModule("zipimport"); |
| 241 | if (zimpimport == NULL) { |
| 242 | PyErr_Clear(); /* No zip import module -- okay */ |
| 243 | if (Py_VerboseFlag) |
| 244 | PySys_WriteStderr("# can't import zipimport\n"); |
| 245 | } |
| 246 | else { |
Martin v. Löwis | bd928fe | 2011-10-14 10:20:37 +0200 | [diff] [blame] | 247 | _Py_IDENTIFIER(zipimporter); |
Martin v. Löwis | 1ee1b6f | 2011-10-10 18:11:30 +0200 | [diff] [blame] | 248 | PyObject *zipimporter = _PyObject_GetAttrId(zimpimport, |
| 249 | &PyId_zipimporter); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 250 | Py_DECREF(zimpimport); |
| 251 | if (zipimporter == NULL) { |
| 252 | PyErr_Clear(); /* No zipimporter object -- okay */ |
| 253 | if (Py_VerboseFlag) |
| 254 | PySys_WriteStderr( |
| 255 | "# can't import zipimport.zipimporter\n"); |
| 256 | } |
| 257 | else { |
| 258 | /* sys.path_hooks.append(zipimporter) */ |
| 259 | err = PyList_Append(path_hooks, zipimporter); |
| 260 | Py_DECREF(zipimporter); |
| 261 | if (err) |
| 262 | goto error; |
| 263 | if (Py_VerboseFlag) |
| 264 | PySys_WriteStderr( |
| 265 | "# installed zipimport hook\n"); |
| 266 | } |
| 267 | } |
| 268 | Py_DECREF(path_hooks); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 269 | } |
| 270 | |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 271 | /* Locking primitives to prevent parallel imports of the same module |
| 272 | in different threads to return with a partially loaded module. |
| 273 | These calls are serialized by the global interpreter lock. */ |
| 274 | |
| 275 | #ifdef WITH_THREAD |
| 276 | |
Guido van Rossum | 49b5606 | 1998-10-01 20:42:43 +0000 | [diff] [blame] | 277 | #include "pythread.h" |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 278 | |
Guido van Rossum | 65d5b57 | 1998-12-21 19:32:43 +0000 | [diff] [blame] | 279 | static PyThread_type_lock import_lock = 0; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 280 | static long import_lock_thread = -1; |
| 281 | static int import_lock_level = 0; |
| 282 | |
Benjamin Peterson | 0df35a9 | 2009-10-04 20:32:25 +0000 | [diff] [blame] | 283 | void |
| 284 | _PyImport_AcquireLock(void) |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 285 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 286 | long me = PyThread_get_thread_ident(); |
| 287 | if (me == -1) |
| 288 | return; /* Too bad */ |
| 289 | if (import_lock == NULL) { |
| 290 | import_lock = PyThread_allocate_lock(); |
| 291 | if (import_lock == NULL) |
| 292 | return; /* Nothing much we can do. */ |
| 293 | } |
| 294 | if (import_lock_thread == me) { |
| 295 | import_lock_level++; |
| 296 | return; |
| 297 | } |
| 298 | if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0)) |
| 299 | { |
| 300 | PyThreadState *tstate = PyEval_SaveThread(); |
| 301 | PyThread_acquire_lock(import_lock, 1); |
| 302 | PyEval_RestoreThread(tstate); |
| 303 | } |
| 304 | import_lock_thread = me; |
| 305 | import_lock_level = 1; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 306 | } |
| 307 | |
Benjamin Peterson | 0df35a9 | 2009-10-04 20:32:25 +0000 | [diff] [blame] | 308 | int |
| 309 | _PyImport_ReleaseLock(void) |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 310 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 311 | long me = PyThread_get_thread_ident(); |
| 312 | if (me == -1 || import_lock == NULL) |
| 313 | return 0; /* Too bad */ |
| 314 | if (import_lock_thread != me) |
| 315 | return -1; |
| 316 | import_lock_level--; |
| 317 | if (import_lock_level == 0) { |
| 318 | import_lock_thread = -1; |
| 319 | PyThread_release_lock(import_lock); |
| 320 | } |
| 321 | return 1; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 322 | } |
| 323 | |
Gregory P. Smith | 24cec9f | 2010-03-01 06:18:41 +0000 | [diff] [blame] | 324 | /* This function is called from PyOS_AfterFork to ensure that newly |
| 325 | created child processes do not share locks with the parent. |
| 326 | We now acquire the import lock around fork() calls but on some platforms |
| 327 | (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] | 328 | |
| 329 | void |
| 330 | _PyImport_ReInitLock(void) |
| 331 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 332 | if (import_lock != NULL) |
| 333 | import_lock = PyThread_allocate_lock(); |
Nick Coghlan | b2ddf79 | 2010-12-02 04:11:46 +0000 | [diff] [blame] | 334 | if (import_lock_level > 1) { |
| 335 | /* Forked as a side effect of import */ |
| 336 | long me = PyThread_get_thread_ident(); |
| 337 | PyThread_acquire_lock(import_lock, 0); |
Victor Stinner | 942003c | 2011-03-07 16:57:48 +0100 | [diff] [blame] | 338 | /* XXX: can the previous line fail? */ |
Nick Coghlan | b2ddf79 | 2010-12-02 04:11:46 +0000 | [diff] [blame] | 339 | import_lock_thread = me; |
| 340 | import_lock_level--; |
| 341 | } else { |
| 342 | import_lock_thread = -1; |
| 343 | import_lock_level = 0; |
| 344 | } |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 345 | } |
| 346 | |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 347 | #endif |
| 348 | |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 349 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 350 | imp_lock_held(PyObject *self, PyObject *noargs) |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 351 | { |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 352 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 353 | return PyBool_FromLong(import_lock_thread != -1); |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 354 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 355 | return PyBool_FromLong(0); |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 356 | #endif |
| 357 | } |
| 358 | |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 359 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 360 | imp_acquire_lock(PyObject *self, PyObject *noargs) |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 361 | { |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 362 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 363 | _PyImport_AcquireLock(); |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 364 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 365 | Py_INCREF(Py_None); |
| 366 | return Py_None; |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 370 | imp_release_lock(PyObject *self, PyObject *noargs) |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 371 | { |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 372 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 373 | if (_PyImport_ReleaseLock() < 0) { |
| 374 | PyErr_SetString(PyExc_RuntimeError, |
| 375 | "not holding the import lock"); |
| 376 | return NULL; |
| 377 | } |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 378 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 379 | Py_INCREF(Py_None); |
| 380 | return Py_None; |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 381 | } |
| 382 | |
Antoine Pitrou | 8db076c | 2011-10-30 19:13:55 +0100 | [diff] [blame] | 383 | void |
| 384 | _PyImport_Fini(void) |
| 385 | { |
| 386 | Py_XDECREF(extensions); |
| 387 | extensions = NULL; |
| 388 | PyMem_DEL(_PyImport_Filetab); |
| 389 | _PyImport_Filetab = NULL; |
| 390 | #ifdef WITH_THREAD |
| 391 | if (import_lock != NULL) { |
| 392 | PyThread_free_lock(import_lock); |
| 393 | import_lock = NULL; |
| 394 | } |
| 395 | #endif |
| 396 | } |
| 397 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 398 | static void |
| 399 | imp_modules_reloading_clear(void) |
| 400 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 401 | PyInterpreterState *interp = PyThreadState_Get()->interp; |
| 402 | if (interp->modules_reloading != NULL) |
| 403 | PyDict_Clear(interp->modules_reloading); |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 404 | } |
| 405 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 406 | /* Helper for sys */ |
| 407 | |
| 408 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 409 | PyImport_GetModuleDict(void) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 410 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 411 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 412 | if (interp->modules == NULL) |
| 413 | Py_FatalError("PyImport_GetModuleDict: no module dictionary!"); |
| 414 | return interp->modules; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 415 | } |
| 416 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 417 | |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 418 | /* List of names to clear in sys */ |
| 419 | static char* sys_deletes[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 420 | "path", "argv", "ps1", "ps2", |
| 421 | "last_type", "last_value", "last_traceback", |
| 422 | "path_hooks", "path_importer_cache", "meta_path", |
| 423 | /* misc stuff */ |
| 424 | "flags", "float_info", |
| 425 | NULL |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 426 | }; |
| 427 | |
Guido van Rossum | 05f9dce | 1998-02-19 20:58:44 +0000 | [diff] [blame] | 428 | static char* sys_files[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 429 | "stdin", "__stdin__", |
| 430 | "stdout", "__stdout__", |
| 431 | "stderr", "__stderr__", |
| 432 | NULL |
Guido van Rossum | 05f9dce | 1998-02-19 20:58:44 +0000 | [diff] [blame] | 433 | }; |
| 434 | |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 435 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 436 | /* Un-initialize things, as good as we can */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 437 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 438 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 439 | PyImport_Cleanup(void) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 440 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 441 | Py_ssize_t pos, ndone; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 442 | PyObject *key, *value, *dict; |
| 443 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 444 | PyObject *modules = interp->modules; |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 445 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 446 | if (modules == NULL) |
| 447 | return; /* Already done */ |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 448 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 449 | /* Delete some special variables first. These are common |
| 450 | places where user values hide and people complain when their |
| 451 | destructors fail. Since the modules containing them are |
| 452 | deleted *last* of all, they would come too late in the normal |
| 453 | destruction order. Sigh. */ |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 454 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 455 | value = PyDict_GetItemString(modules, "builtins"); |
| 456 | if (value != NULL && PyModule_Check(value)) { |
| 457 | dict = PyModule_GetDict(value); |
| 458 | if (Py_VerboseFlag) |
| 459 | PySys_WriteStderr("# clear builtins._\n"); |
| 460 | PyDict_SetItemString(dict, "_", Py_None); |
| 461 | } |
| 462 | value = PyDict_GetItemString(modules, "sys"); |
| 463 | if (value != NULL && PyModule_Check(value)) { |
| 464 | char **p; |
| 465 | PyObject *v; |
| 466 | dict = PyModule_GetDict(value); |
| 467 | for (p = sys_deletes; *p != NULL; p++) { |
| 468 | if (Py_VerboseFlag) |
| 469 | PySys_WriteStderr("# clear sys.%s\n", *p); |
| 470 | PyDict_SetItemString(dict, *p, Py_None); |
| 471 | } |
| 472 | for (p = sys_files; *p != NULL; p+=2) { |
| 473 | if (Py_VerboseFlag) |
| 474 | PySys_WriteStderr("# restore sys.%s\n", *p); |
| 475 | v = PyDict_GetItemString(dict, *(p+1)); |
| 476 | if (v == NULL) |
| 477 | v = Py_None; |
| 478 | PyDict_SetItemString(dict, *p, v); |
| 479 | } |
| 480 | } |
Guido van Rossum | 05f9dce | 1998-02-19 20:58:44 +0000 | [diff] [blame] | 481 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 482 | /* First, delete __main__ */ |
| 483 | value = PyDict_GetItemString(modules, "__main__"); |
| 484 | if (value != NULL && PyModule_Check(value)) { |
| 485 | if (Py_VerboseFlag) |
| 486 | PySys_WriteStderr("# cleanup __main__\n"); |
| 487 | _PyModule_Clear(value); |
| 488 | PyDict_SetItemString(modules, "__main__", Py_None); |
| 489 | } |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 490 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 491 | /* The special treatment of "builtins" here is because even |
| 492 | when it's not referenced as a module, its dictionary is |
| 493 | referenced by almost every module's __builtins__. Since |
| 494 | deleting a module clears its dictionary (even if there are |
| 495 | references left to it), we need to delete the "builtins" |
| 496 | module last. Likewise, we don't delete sys until the very |
| 497 | end because it is implicitly referenced (e.g. by print). |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 498 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 499 | Also note that we 'delete' modules by replacing their entry |
| 500 | in the modules dict with None, rather than really deleting |
| 501 | them; this avoids a rehash of the modules dictionary and |
| 502 | also marks them as "non existent" so they won't be |
| 503 | re-imported. */ |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 504 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 505 | /* Next, repeatedly delete modules with a reference count of |
| 506 | one (skipping builtins and sys) and delete them */ |
| 507 | do { |
| 508 | ndone = 0; |
| 509 | pos = 0; |
| 510 | while (PyDict_Next(modules, &pos, &key, &value)) { |
| 511 | if (value->ob_refcnt != 1) |
| 512 | continue; |
| 513 | if (PyUnicode_Check(key) && PyModule_Check(value)) { |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 514 | if (PyUnicode_CompareWithASCIIString(key, "builtins") == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 515 | continue; |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 516 | if (PyUnicode_CompareWithASCIIString(key, "sys") == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 517 | continue; |
| 518 | if (Py_VerboseFlag) |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 519 | PySys_FormatStderr( |
| 520 | "# cleanup[1] %U\n", key); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 521 | _PyModule_Clear(value); |
| 522 | PyDict_SetItem(modules, key, Py_None); |
| 523 | ndone++; |
| 524 | } |
| 525 | } |
| 526 | } while (ndone > 0); |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 527 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 528 | /* Next, delete all modules (still skipping builtins and sys) */ |
| 529 | pos = 0; |
| 530 | while (PyDict_Next(modules, &pos, &key, &value)) { |
| 531 | if (PyUnicode_Check(key) && PyModule_Check(value)) { |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 532 | if (PyUnicode_CompareWithASCIIString(key, "builtins") == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 533 | continue; |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 534 | if (PyUnicode_CompareWithASCIIString(key, "sys") == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 535 | continue; |
| 536 | if (Py_VerboseFlag) |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 537 | PySys_FormatStderr("# cleanup[2] %U\n", key); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 538 | _PyModule_Clear(value); |
| 539 | PyDict_SetItem(modules, key, Py_None); |
| 540 | } |
| 541 | } |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 542 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 543 | /* Next, delete sys and builtins (in that order) */ |
| 544 | value = PyDict_GetItemString(modules, "sys"); |
| 545 | if (value != NULL && PyModule_Check(value)) { |
| 546 | if (Py_VerboseFlag) |
| 547 | PySys_WriteStderr("# cleanup sys\n"); |
| 548 | _PyModule_Clear(value); |
| 549 | PyDict_SetItemString(modules, "sys", Py_None); |
| 550 | } |
| 551 | value = PyDict_GetItemString(modules, "builtins"); |
| 552 | if (value != NULL && PyModule_Check(value)) { |
| 553 | if (Py_VerboseFlag) |
| 554 | PySys_WriteStderr("# cleanup builtins\n"); |
| 555 | _PyModule_Clear(value); |
| 556 | PyDict_SetItemString(modules, "builtins", Py_None); |
| 557 | } |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 558 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 559 | /* Finally, clear and delete the modules directory */ |
| 560 | PyDict_Clear(modules); |
| 561 | interp->modules = NULL; |
| 562 | Py_DECREF(modules); |
| 563 | Py_CLEAR(interp->modules_reloading); |
Guido van Rossum | 8d15b5d | 1990-10-26 14:58:58 +0000 | [diff] [blame] | 564 | } |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 565 | |
| 566 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 567 | /* Helper for pythonrun.c -- return magic number and tag. */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 568 | |
| 569 | long |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 570 | PyImport_GetMagicNumber(void) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 571 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 572 | return pyc_magic; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 576 | const char * |
| 577 | PyImport_GetMagicTag(void) |
| 578 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 579 | return pyc_tag; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 580 | } |
| 581 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 582 | /* Magic for extension modules (built-in as well as dynamically |
| 583 | loaded). To prevent initializing an extension module more than |
| 584 | once, we keep a static dictionary 'extensions' keyed by module name |
| 585 | (for built-in modules) or by filename (for dynamically loaded |
Barry Warsaw | 9288338 | 2001-08-13 23:05:44 +0000 | [diff] [blame] | 586 | modules), containing these modules. A copy of the module's |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 587 | dictionary is stored by calling _PyImport_FixupExtensionObject() |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 588 | immediately after the module initialization function succeeds. A |
| 589 | copy can be retrieved from there by calling |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 590 | _PyImport_FindExtensionObject(). |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 591 | |
Barry Warsaw | 7c9627b | 2010-06-17 18:38:20 +0000 | [diff] [blame] | 592 | Modules which do support multiple initialization set their m_size |
| 593 | field to a non-negative number (indicating the size of the |
| 594 | module-specific state). They are still recorded in the extensions |
| 595 | dictionary, to avoid loading shared libraries twice. |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 596 | */ |
| 597 | |
| 598 | int |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 599 | _PyImport_FixupExtensionObject(PyObject *mod, PyObject *name, |
| 600 | PyObject *filename) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 601 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 602 | PyObject *modules, *dict; |
| 603 | struct PyModuleDef *def; |
| 604 | if (extensions == NULL) { |
| 605 | extensions = PyDict_New(); |
| 606 | if (extensions == NULL) |
| 607 | return -1; |
| 608 | } |
| 609 | if (mod == NULL || !PyModule_Check(mod)) { |
| 610 | PyErr_BadInternalCall(); |
| 611 | return -1; |
| 612 | } |
| 613 | def = PyModule_GetDef(mod); |
| 614 | if (!def) { |
| 615 | PyErr_BadInternalCall(); |
| 616 | return -1; |
| 617 | } |
| 618 | modules = PyImport_GetModuleDict(); |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 619 | if (PyDict_SetItem(modules, name, mod) < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 620 | return -1; |
| 621 | if (_PyState_AddModule(mod, def) < 0) { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 622 | PyDict_DelItem(modules, name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 623 | return -1; |
| 624 | } |
| 625 | if (def->m_size == -1) { |
| 626 | if (def->m_base.m_copy) { |
| 627 | /* Somebody already imported the module, |
| 628 | likely under a different name. |
| 629 | XXX this should really not happen. */ |
| 630 | Py_DECREF(def->m_base.m_copy); |
| 631 | def->m_base.m_copy = NULL; |
| 632 | } |
| 633 | dict = PyModule_GetDict(mod); |
| 634 | if (dict == NULL) |
| 635 | return -1; |
| 636 | def->m_base.m_copy = PyDict_Copy(dict); |
| 637 | if (def->m_base.m_copy == NULL) |
| 638 | return -1; |
| 639 | } |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 640 | PyDict_SetItem(extensions, filename, (PyObject*)def); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 641 | return 0; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 642 | } |
| 643 | |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 644 | int |
| 645 | _PyImport_FixupBuiltin(PyObject *mod, char *name) |
| 646 | { |
| 647 | int res; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 648 | PyObject *nameobj; |
Victor Stinner | 21fcd0c | 2011-03-07 18:28:15 +0100 | [diff] [blame] | 649 | nameobj = PyUnicode_InternFromString(name); |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 650 | if (nameobj == NULL) |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 651 | return -1; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 652 | res = _PyImport_FixupExtensionObject(mod, nameobj, nameobj); |
| 653 | Py_DECREF(nameobj); |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 654 | return res; |
| 655 | } |
| 656 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 657 | PyObject * |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 658 | _PyImport_FindExtensionObject(PyObject *name, PyObject *filename) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 659 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 660 | PyObject *mod, *mdict; |
| 661 | PyModuleDef* def; |
| 662 | if (extensions == NULL) |
| 663 | return NULL; |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 664 | def = (PyModuleDef*)PyDict_GetItem(extensions, filename); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 665 | if (def == NULL) |
| 666 | return NULL; |
| 667 | if (def->m_size == -1) { |
| 668 | /* Module does not support repeated initialization */ |
| 669 | if (def->m_base.m_copy == NULL) |
| 670 | return NULL; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 671 | mod = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 672 | if (mod == NULL) |
| 673 | return NULL; |
| 674 | mdict = PyModule_GetDict(mod); |
| 675 | if (mdict == NULL) |
| 676 | return NULL; |
| 677 | if (PyDict_Update(mdict, def->m_base.m_copy)) |
| 678 | return NULL; |
| 679 | } |
| 680 | else { |
| 681 | if (def->m_base.m_init == NULL) |
| 682 | return NULL; |
| 683 | mod = def->m_base.m_init(); |
| 684 | if (mod == NULL) |
| 685 | return NULL; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 686 | PyDict_SetItem(PyImport_GetModuleDict(), name, mod); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 687 | Py_DECREF(mod); |
| 688 | } |
| 689 | if (_PyState_AddModule(mod, def) < 0) { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 690 | PyDict_DelItem(PyImport_GetModuleDict(), name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 691 | Py_DECREF(mod); |
| 692 | return NULL; |
| 693 | } |
| 694 | if (Py_VerboseFlag) |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 695 | PySys_FormatStderr("import %U # previously loaded (%R)\n", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 696 | name, filename); |
| 697 | return mod; |
Brett Cannon | 9a5b25a | 2010-03-01 02:09:17 +0000 | [diff] [blame] | 698 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 699 | } |
| 700 | |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 701 | PyObject * |
Victor Stinner | 501c09a | 2011-02-23 00:02:00 +0000 | [diff] [blame] | 702 | _PyImport_FindBuiltin(const char *name) |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 703 | { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 704 | PyObject *res, *nameobj; |
Victor Stinner | 21fcd0c | 2011-03-07 18:28:15 +0100 | [diff] [blame] | 705 | nameobj = PyUnicode_InternFromString(name); |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 706 | if (nameobj == NULL) |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 707 | return NULL; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 708 | res = _PyImport_FindExtensionObject(nameobj, nameobj); |
| 709 | Py_DECREF(nameobj); |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 710 | return res; |
| 711 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 712 | |
| 713 | /* Get the module object corresponding to a module name. |
| 714 | First check the modules dictionary if there's one there, |
Walter Dörwald | f0dfc7a | 2003-10-20 14:01:56 +0000 | [diff] [blame] | 715 | 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] | 716 | Because the former action is most common, THIS DOES NOT RETURN A |
| 717 | 'NEW' REFERENCE! */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 718 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 719 | PyObject * |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 720 | PyImport_AddModuleObject(PyObject *name) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 721 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 722 | PyObject *modules = PyImport_GetModuleDict(); |
| 723 | PyObject *m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 724 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 725 | if ((m = PyDict_GetItem(modules, name)) != NULL && |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 726 | PyModule_Check(m)) |
| 727 | return m; |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 728 | m = PyModule_NewObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 729 | if (m == NULL) |
| 730 | return NULL; |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 731 | if (PyDict_SetItem(modules, name, m) != 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 732 | Py_DECREF(m); |
| 733 | return NULL; |
| 734 | } |
| 735 | Py_DECREF(m); /* Yes, it still exists, in modules! */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 736 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 737 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 738 | } |
| 739 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 740 | PyObject * |
| 741 | PyImport_AddModule(const char *name) |
| 742 | { |
| 743 | PyObject *nameobj, *module; |
| 744 | nameobj = PyUnicode_FromString(name); |
| 745 | if (nameobj == NULL) |
| 746 | return NULL; |
| 747 | module = PyImport_AddModuleObject(nameobj); |
| 748 | Py_DECREF(nameobj); |
| 749 | return module; |
| 750 | } |
| 751 | |
| 752 | |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 753 | /* Remove name from sys.modules, if it's there. */ |
| 754 | static void |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 755 | remove_module(PyObject *name) |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 756 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 757 | PyObject *modules = PyImport_GetModuleDict(); |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 758 | if (PyDict_GetItem(modules, name) == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 759 | return; |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 760 | if (PyDict_DelItem(modules, name) < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 761 | Py_FatalError("import: deleting existing key in" |
| 762 | "sys.modules failed"); |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 763 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 764 | |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 765 | static PyObject * get_sourcefile(PyObject *filename); |
| 766 | static PyObject *make_source_pathname(PyObject *pathname); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 767 | static PyObject* make_compiled_pathname(PyObject *pathname, int debug); |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 768 | |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 769 | /* Execute a code object in a module and return the module object |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 770 | * WITH INCREMENTED REFERENCE COUNT. If an error occurs, name is |
| 771 | * removed from sys.modules, to avoid leaving damaged module objects |
| 772 | * in sys.modules. The caller may wish to restore the original |
| 773 | * module object (if any) in this case; PyImport_ReloadModule is an |
| 774 | * example. |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 775 | * |
| 776 | * Note that PyImport_ExecCodeModuleWithPathnames() is the preferred, richer |
| 777 | * interface. The other two exist primarily for backward compatibility. |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 778 | */ |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 779 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 780 | PyImport_ExecCodeModule(char *name, PyObject *co) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 781 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 782 | return PyImport_ExecCodeModuleWithPathnames( |
| 783 | name, co, (char *)NULL, (char *)NULL); |
Guido van Rossum | e32bf6e | 1998-02-11 05:53:02 +0000 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 787 | PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname) |
Guido van Rossum | e32bf6e | 1998-02-11 05:53:02 +0000 | [diff] [blame] | 788 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 789 | return PyImport_ExecCodeModuleWithPathnames( |
| 790 | name, co, pathname, (char *)NULL); |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 791 | } |
| 792 | |
| 793 | PyObject * |
| 794 | PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 795 | char *cpathname) |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 796 | { |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 797 | PyObject *m = NULL; |
| 798 | PyObject *nameobj, *pathobj = NULL, *cpathobj = NULL; |
| 799 | |
| 800 | nameobj = PyUnicode_FromString(name); |
| 801 | if (nameobj == NULL) |
| 802 | return NULL; |
| 803 | |
| 804 | if (pathname != NULL) { |
| 805 | pathobj = PyUnicode_DecodeFSDefault(pathname); |
| 806 | if (pathobj == NULL) |
| 807 | goto error; |
| 808 | } else |
| 809 | pathobj = NULL; |
| 810 | if (cpathname != NULL) { |
| 811 | cpathobj = PyUnicode_DecodeFSDefault(cpathname); |
| 812 | if (cpathobj == NULL) |
| 813 | goto error; |
| 814 | } else |
| 815 | cpathobj = NULL; |
| 816 | m = PyImport_ExecCodeModuleObject(nameobj, co, pathobj, cpathobj); |
| 817 | error: |
| 818 | Py_DECREF(nameobj); |
| 819 | Py_XDECREF(pathobj); |
| 820 | Py_XDECREF(cpathobj); |
| 821 | return m; |
| 822 | } |
| 823 | |
| 824 | PyObject* |
| 825 | PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname, |
| 826 | PyObject *cpathname) |
| 827 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 828 | PyObject *modules = PyImport_GetModuleDict(); |
| 829 | PyObject *m, *d, *v; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 830 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 831 | m = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 832 | if (m == NULL) |
| 833 | return NULL; |
| 834 | /* If the module is being reloaded, we get the old module back |
| 835 | and re-use its dict to exec the new code. */ |
| 836 | d = PyModule_GetDict(m); |
| 837 | if (PyDict_GetItemString(d, "__builtins__") == NULL) { |
| 838 | if (PyDict_SetItemString(d, "__builtins__", |
| 839 | PyEval_GetBuiltins()) != 0) |
| 840 | goto error; |
| 841 | } |
| 842 | /* Remember the filename as the __file__ attribute */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 843 | if (pathname != NULL) { |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 844 | v = get_sourcefile(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 845 | if (v == NULL) |
| 846 | PyErr_Clear(); |
| 847 | } |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 848 | else |
| 849 | v = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 850 | if (v == NULL) { |
| 851 | v = ((PyCodeObject *)co)->co_filename; |
| 852 | Py_INCREF(v); |
| 853 | } |
| 854 | if (PyDict_SetItemString(d, "__file__", v) != 0) |
| 855 | PyErr_Clear(); /* Not important enough to report */ |
| 856 | Py_DECREF(v); |
Guido van Rossum | e32bf6e | 1998-02-11 05:53:02 +0000 | [diff] [blame] | 857 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 858 | /* Remember the pyc path name as the __cached__ attribute. */ |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 859 | if (cpathname != NULL) |
| 860 | v = cpathname; |
| 861 | else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 862 | v = Py_None; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 863 | if (PyDict_SetItemString(d, "__cached__", v) != 0) |
| 864 | PyErr_Clear(); /* Not important enough to report */ |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 865 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 866 | v = PyEval_EvalCode(co, d, d); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 867 | if (v == NULL) |
| 868 | goto error; |
| 869 | Py_DECREF(v); |
Guido van Rossum | b65e85c | 1997-07-10 18:00:45 +0000 | [diff] [blame] | 870 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 871 | if ((m = PyDict_GetItem(modules, name)) == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 872 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 873 | "Loaded module %R not found in sys.modules", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 874 | name); |
| 875 | return NULL; |
| 876 | } |
Guido van Rossum | b65e85c | 1997-07-10 18:00:45 +0000 | [diff] [blame] | 877 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 878 | Py_INCREF(m); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 879 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 880 | return m; |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 881 | |
| 882 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 883 | remove_module(name); |
| 884 | return NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 888 | /* Like strrchr(string, '/') but searches for the rightmost of either SEP |
| 889 | or ALTSEP, if the latter is defined. |
| 890 | */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 891 | static Py_UCS4* |
| 892 | rightmost_sep(Py_UCS4 *s) |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 893 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 894 | Py_UCS4 *found, c; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 895 | for (found = NULL; (c = *s); s++) { |
| 896 | if (c == SEP |
| 897 | #ifdef ALTSEP |
| 898 | || c == ALTSEP |
| 899 | #endif |
| 900 | ) |
| 901 | { |
| 902 | found = s; |
| 903 | } |
| 904 | } |
| 905 | return found; |
| 906 | } |
| 907 | |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 908 | /* Like rightmost_sep, but operate on unicode objects. */ |
| 909 | static Py_ssize_t |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 910 | rightmost_sep_obj(PyObject* o, Py_ssize_t start, Py_ssize_t end) |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 911 | { |
| 912 | Py_ssize_t found, i; |
| 913 | Py_UCS4 c; |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 914 | for (found = -1, i = start; i < end; i++) { |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 915 | c = PyUnicode_READ_CHAR(o, i); |
| 916 | if (c == SEP |
| 917 | #ifdef ALTSEP |
| 918 | || c == ALTSEP |
| 919 | #endif |
| 920 | ) |
| 921 | { |
| 922 | found = i; |
| 923 | } |
| 924 | } |
| 925 | return found; |
| 926 | } |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 927 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 928 | /* Given a pathname for a Python source file, fill a buffer with the |
| 929 | pathname for the corresponding compiled file. Return the pathname |
| 930 | for the compiled file, or NULL if there's no space in the buffer. |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 931 | Doesn't set an exception. |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 932 | |
Martin v. Löwis | 30260a7 | 2011-10-23 17:35:46 +0200 | [diff] [blame] | 933 | foo.py -> __pycache__/foo.<tag>.pyc |
| 934 | |
| 935 | pathstr is assumed to be "ready". |
| 936 | */ |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 937 | |
| 938 | static PyObject* |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 939 | make_compiled_pathname(PyObject *pathstr, int debug) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 940 | { |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 941 | PyObject *result; |
| 942 | Py_ssize_t fname, ext, len, i, pos, taglen; |
Martin v. Löwis | fadcd31 | 2011-10-23 18:08:20 +0200 | [diff] [blame] | 943 | Py_ssize_t pycache_len = sizeof(CACHEDIR) - 1; |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 944 | int kind; |
| 945 | void *data; |
Antoine Pitrou | b528fcf | 2011-10-25 00:21:02 +0200 | [diff] [blame] | 946 | Py_UCS4 lastsep; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 947 | |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 948 | /* Compute the output string size. */ |
| 949 | len = PyUnicode_GET_LENGTH(pathstr); |
| 950 | /* If there is no separator, this returns -1, so |
Antoine Pitrou | b528fcf | 2011-10-25 00:21:02 +0200 | [diff] [blame] | 951 | fname will be 0. */ |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 952 | fname = rightmost_sep_obj(pathstr, 0, len) + 1; |
Antoine Pitrou | b528fcf | 2011-10-25 00:21:02 +0200 | [diff] [blame] | 953 | /* Windows: re-use the last separator character (/ or \\) when |
| 954 | appending the __pycache__ path. */ |
| 955 | if (fname > 0) |
| 956 | lastsep = PyUnicode_READ_CHAR(pathstr, fname -1); |
| 957 | else |
| 958 | lastsep = SEP; |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 959 | ext = fname - 1; |
| 960 | for(i = fname; i < len; i++) |
| 961 | if (PyUnicode_READ_CHAR(pathstr, i) == '.') |
| 962 | ext = i + 1; |
| 963 | if (ext < fname) |
| 964 | /* No dot in filename; use entire filename */ |
| 965 | ext = len; |
| 966 | |
| 967 | /* result = pathstr[:fname] + "__pycache__" + SEP + |
| 968 | pathstr[fname:ext] + tag + ".py[co]" */ |
| 969 | taglen = strlen(pyc_tag); |
Martin v. Löwis | 2cc0cc5 | 2011-10-23 18:41:56 +0200 | [diff] [blame] | 970 | result = PyUnicode_New(ext + pycache_len + 1 + taglen + 4, |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 971 | PyUnicode_MAX_CHAR_VALUE(pathstr)); |
| 972 | if (!result) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 973 | return NULL; |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 974 | kind = PyUnicode_KIND(result); |
| 975 | data = PyUnicode_DATA(result); |
| 976 | PyUnicode_CopyCharacters(result, 0, pathstr, 0, fname); |
| 977 | pos = fname; |
Martin v. Löwis | 2cc0cc5 | 2011-10-23 18:41:56 +0200 | [diff] [blame] | 978 | for (i = 0; i < pycache_len; i++) |
Martin v. Löwis | fadcd31 | 2011-10-23 18:08:20 +0200 | [diff] [blame] | 979 | PyUnicode_WRITE(kind, data, pos++, CACHEDIR[i]); |
Antoine Pitrou | b528fcf | 2011-10-25 00:21:02 +0200 | [diff] [blame] | 980 | PyUnicode_WRITE(kind, data, pos++, lastsep); |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 981 | PyUnicode_CopyCharacters(result, pos, pathstr, |
| 982 | fname, ext - fname); |
| 983 | pos += ext - fname; |
| 984 | for (i = 0; pyc_tag[i]; i++) |
| 985 | PyUnicode_WRITE(kind, data, pos++, pyc_tag[i]); |
| 986 | PyUnicode_WRITE(kind, data, pos++, '.'); |
| 987 | PyUnicode_WRITE(kind, data, pos++, 'p'); |
| 988 | PyUnicode_WRITE(kind, data, pos++, 'y'); |
| 989 | PyUnicode_WRITE(kind, data, pos++, debug ? 'c' : 'o'); |
| 990 | return result; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 991 | } |
| 992 | |
| 993 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 994 | /* Given a pathname to a Python byte compiled file, return the path to the |
| 995 | source file, if the path matches the PEP 3147 format. This does not check |
| 996 | for any file existence, however, if the pyc file name does not match PEP |
| 997 | 3147 style, NULL is returned. buf must be at least as big as pathname; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 998 | the resulting path will always be shorter. |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 999 | |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1000 | (...)/__pycache__/foo.<tag>.pyc -> (...)/foo.py */ |
| 1001 | |
| 1002 | static PyObject* |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 1003 | make_source_pathname(PyObject *path) |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1004 | { |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 1005 | Py_ssize_t left, right, dot0, dot1, len; |
| 1006 | Py_ssize_t i, j; |
| 1007 | PyObject *result; |
| 1008 | int kind; |
| 1009 | void *data; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1010 | |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 1011 | len = PyUnicode_GET_LENGTH(path); |
| 1012 | if (len > MAXPATHLEN) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1013 | return NULL; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1014 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1015 | /* Look back two slashes from the end. In between these two slashes |
| 1016 | must be the string __pycache__ or this is not a PEP 3147 style |
| 1017 | path. It's possible for there to be only one slash. |
| 1018 | */ |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 1019 | right = rightmost_sep_obj(path, 0, len); |
| 1020 | if (right == -1) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1021 | return NULL; |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 1022 | left = rightmost_sep_obj(path, 0, right); |
| 1023 | if (left == -1) |
| 1024 | left = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1025 | else |
| 1026 | left++; |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 1027 | if (right-left != sizeof(CACHEDIR)-1) |
| 1028 | return NULL; |
| 1029 | for (i = 0; i < sizeof(CACHEDIR)-1; i++) |
| 1030 | if (PyUnicode_READ_CHAR(path, left+i) != CACHEDIR[i]) |
| 1031 | return NULL; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1032 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1033 | /* Now verify that the path component to the right of the last slash |
| 1034 | has two dots in it. |
| 1035 | */ |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 1036 | dot0 = PyUnicode_FindChar(path, '.', right+1, len, 1); |
| 1037 | if (dot0 < 0) |
| 1038 | return NULL; |
| 1039 | dot1 = PyUnicode_FindChar(path, '.', dot0+1, len, 1); |
| 1040 | if (dot1 < 0) |
| 1041 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1042 | /* Too many dots? */ |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 1043 | if (PyUnicode_FindChar(path, '.', dot1+1, len, 1) != -1) |
| 1044 | return NULL; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1045 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1046 | /* This is a PEP 3147 path. Start by copying everything from the |
| 1047 | start of pathname up to and including the leftmost slash. Then |
| 1048 | copy the file's basename, removing the magic tag and adding a .py |
| 1049 | suffix. |
| 1050 | */ |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 1051 | result = PyUnicode_New(left + (dot0-right) + 2, |
| 1052 | PyUnicode_MAX_CHAR_VALUE(path)); |
| 1053 | if (!result) |
| 1054 | return NULL; |
| 1055 | kind = PyUnicode_KIND(result); |
| 1056 | data = PyUnicode_DATA(result); |
| 1057 | PyUnicode_CopyCharacters(result, 0, path, 0, (i = left)); |
| 1058 | PyUnicode_CopyCharacters(result, left, path, right+1, |
| 1059 | (j = dot0-right)); |
| 1060 | PyUnicode_WRITE(kind, data, i+j, 'p'); |
| 1061 | PyUnicode_WRITE(kind, data, i+j+1, 'y'); |
| 1062 | return result; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1063 | } |
| 1064 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1065 | /* Given a pathname for a Python source file, its time of last |
| 1066 | modification, and a pathname for a compiled file, check whether the |
| 1067 | compiled file represents the same version of the source. If so, |
| 1068 | return a FILE pointer for the compiled file, positioned just after |
| 1069 | the header; if not, return NULL. |
| 1070 | Doesn't set an exception. */ |
| 1071 | |
| 1072 | static FILE * |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1073 | check_compiled_module(PyObject *pathname, time_t mtime, PyObject *cpathname) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1074 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1075 | FILE *fp; |
| 1076 | long magic; |
| 1077 | long pyc_mtime; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1078 | |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1079 | fp = _Py_fopen(cpathname, "rb"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1080 | if (fp == NULL) |
| 1081 | return NULL; |
| 1082 | magic = PyMarshal_ReadLongFromFile(fp); |
| 1083 | if (magic != pyc_magic) { |
| 1084 | if (Py_VerboseFlag) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1085 | PySys_FormatStderr("# %R has bad magic\n", cpathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1086 | fclose(fp); |
| 1087 | return NULL; |
| 1088 | } |
| 1089 | pyc_mtime = PyMarshal_ReadLongFromFile(fp); |
| 1090 | if (pyc_mtime != mtime) { |
| 1091 | if (Py_VerboseFlag) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1092 | PySys_FormatStderr("# %R has bad mtime\n", cpathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1093 | fclose(fp); |
| 1094 | return NULL; |
| 1095 | } |
| 1096 | if (Py_VerboseFlag) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1097 | PySys_FormatStderr("# %R matches %R\n", cpathname, pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1098 | return fp; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1099 | } |
| 1100 | |
| 1101 | |
| 1102 | /* Read a code object from a file and check it for validity */ |
| 1103 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1104 | static PyCodeObject * |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1105 | read_compiled_module(PyObject *cpathname, FILE *fp) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1106 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1107 | PyObject *co; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1108 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1109 | co = PyMarshal_ReadLastObjectFromFile(fp); |
| 1110 | if (co == NULL) |
| 1111 | return NULL; |
| 1112 | if (!PyCode_Check(co)) { |
| 1113 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1114 | "Non-code object in %R", cpathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1115 | Py_DECREF(co); |
| 1116 | return NULL; |
| 1117 | } |
| 1118 | return (PyCodeObject *)co; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1119 | } |
| 1120 | |
| 1121 | |
| 1122 | /* 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] | 1123 | module object WITH INCREMENTED REFERENCE COUNT */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1124 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1125 | static PyObject * |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1126 | load_compiled_module(PyObject *name, PyObject *cpathname, FILE *fp) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1127 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1128 | long magic; |
| 1129 | PyCodeObject *co; |
| 1130 | PyObject *m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1131 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1132 | magic = PyMarshal_ReadLongFromFile(fp); |
| 1133 | if (magic != pyc_magic) { |
| 1134 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1135 | "Bad magic number in %R", cpathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1136 | return NULL; |
| 1137 | } |
| 1138 | (void) PyMarshal_ReadLongFromFile(fp); |
| 1139 | co = read_compiled_module(cpathname, fp); |
| 1140 | if (co == NULL) |
| 1141 | return NULL; |
| 1142 | if (Py_VerboseFlag) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1143 | PySys_FormatStderr("import %U # precompiled from %R\n", |
| 1144 | name, cpathname); |
| 1145 | m = PyImport_ExecCodeModuleObject(name, (PyObject *)co, |
| 1146 | cpathname, cpathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1147 | Py_DECREF(co); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1148 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1149 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1152 | /* Parse a source file and return the corresponding code object */ |
| 1153 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1154 | static PyCodeObject * |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1155 | parse_source_module(PyObject *pathname, FILE *fp) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1156 | { |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1157 | PyCodeObject *co; |
| 1158 | PyObject *pathbytes; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1159 | mod_ty mod; |
| 1160 | PyCompilerFlags flags; |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1161 | PyArena *arena; |
| 1162 | |
| 1163 | pathbytes = PyUnicode_EncodeFSDefault(pathname); |
| 1164 | if (pathbytes == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1165 | return NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1166 | |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1167 | arena = PyArena_New(); |
| 1168 | if (arena == NULL) { |
| 1169 | Py_DECREF(pathbytes); |
| 1170 | return NULL; |
| 1171 | } |
| 1172 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1173 | flags.cf_flags = 0; |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1174 | mod = PyParser_ASTFromFile(fp, PyBytes_AS_STRING(pathbytes), NULL, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1175 | Py_file_input, 0, 0, &flags, |
| 1176 | NULL, arena); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1177 | if (mod != NULL) |
| 1178 | co = PyAST_Compile(mod, PyBytes_AS_STRING(pathbytes), NULL, arena); |
| 1179 | else |
| 1180 | co = NULL; |
| 1181 | Py_DECREF(pathbytes); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1182 | PyArena_Free(arena); |
| 1183 | return co; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1184 | } |
| 1185 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1186 | /* Write a compiled module to a file, placing the time of last |
| 1187 | modification of its source into the header. |
| 1188 | Errors are ignored, if a write error occurs an attempt is made to |
| 1189 | remove the file. */ |
| 1190 | |
| 1191 | static void |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1192 | write_compiled_module(PyCodeObject *co, PyObject *cpathname, |
| 1193 | struct stat *srcstat) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1194 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1195 | Py_UCS4 *cpathname_ucs4; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1196 | FILE *fp; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1197 | time_t mtime = srcstat->st_mtime; |
Antoine Pitrou | 8ad982c | 2011-11-15 22:27:32 +0100 | [diff] [blame] | 1198 | PyObject *cpathname_tmp; |
Alexandre Vassalotti | 9d58e3e | 2009-07-17 10:55:50 +0000 | [diff] [blame] | 1199 | #ifdef MS_WINDOWS /* since Windows uses different permissions */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1200 | mode_t mode = srcstat->st_mode & ~S_IEXEC; |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 1201 | wchar_t *wdirname, *wpathname, *wpathname_tmp; |
Alexandre Vassalotti | 9d58e3e | 2009-07-17 10:55:50 +0000 | [diff] [blame] | 1202 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1203 | mode_t dirmode = (srcstat->st_mode | |
| 1204 | S_IXUSR | S_IXGRP | S_IXOTH | |
| 1205 | S_IWUSR | S_IWGRP | S_IWOTH); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1206 | PyObject *dirbytes; |
Antoine Pitrou | 707033a | 2011-10-17 19:28:44 +0200 | [diff] [blame] | 1207 | PyObject *cpathbytes, *cpathbytes_tmp; |
Victor Stinner | 783c82c | 2011-04-20 03:27:51 +0200 | [diff] [blame] | 1208 | #endif |
Charles-François Natali | 0c929d9 | 2011-11-10 19:12:29 +0100 | [diff] [blame] | 1209 | int fd; |
Victor Stinner | 783c82c | 2011-04-20 03:27:51 +0200 | [diff] [blame] | 1210 | PyObject *dirname; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1211 | Py_UCS4 *dirsep; |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1212 | int res, ok; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1213 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1214 | /* Ensure that the __pycache__ directory exists. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1215 | cpathname_ucs4 = PyUnicode_AsUCS4Copy(cpathname); |
| 1216 | if (!cpathname_ucs4) |
| 1217 | return; |
| 1218 | dirsep = rightmost_sep(cpathname_ucs4); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1219 | if (dirsep == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1220 | if (Py_VerboseFlag) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1221 | PySys_FormatStderr("# no %s path found %R\n", CACHEDIR, cpathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1222 | return; |
| 1223 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1224 | dirname = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, |
| 1225 | cpathname_ucs4, |
| 1226 | dirsep - cpathname_ucs4); |
| 1227 | PyMem_Free(cpathname_ucs4); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1228 | if (dirname == NULL) { |
| 1229 | PyErr_Clear(); |
| 1230 | return; |
| 1231 | } |
Daniel Stutzbach | c793779 | 2010-09-09 21:18:04 +0000 | [diff] [blame] | 1232 | |
| 1233 | #ifdef MS_WINDOWS |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 1234 | wdirname = PyUnicode_AsUnicode(dirname); |
| 1235 | if (wdirname == NULL) { |
| 1236 | PyErr_Clear(); |
| 1237 | return; |
| 1238 | } |
| 1239 | res = CreateDirectoryW(wdirname, NULL); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1240 | ok = (res != 0); |
| 1241 | if (!ok && GetLastError() == ERROR_ALREADY_EXISTS) |
| 1242 | ok = 1; |
Daniel Stutzbach | c793779 | 2010-09-09 21:18:04 +0000 | [diff] [blame] | 1243 | #else |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1244 | dirbytes = PyUnicode_EncodeFSDefault(dirname); |
| 1245 | if (dirbytes == NULL) { |
| 1246 | PyErr_Clear(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1247 | return; |
| 1248 | } |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1249 | res = mkdir(PyBytes_AS_STRING(dirbytes), dirmode); |
| 1250 | Py_DECREF(dirbytes); |
| 1251 | if (0 <= res) |
| 1252 | ok = 1; |
| 1253 | else |
| 1254 | ok = (errno == EEXIST); |
| 1255 | #endif |
| 1256 | if (!ok) { |
| 1257 | if (Py_VerboseFlag) |
| 1258 | PySys_FormatStderr("# cannot create cache dir %R\n", dirname); |
| 1259 | Py_DECREF(dirname); |
| 1260 | return; |
| 1261 | } |
| 1262 | Py_DECREF(dirname); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1263 | |
Antoine Pitrou | 28e401e | 2011-11-15 19:15:19 +0100 | [diff] [blame] | 1264 | /* We first write to a tmp file and then take advantage |
Antoine Pitrou | 8ad982c | 2011-11-15 22:27:32 +0100 | [diff] [blame] | 1265 | of atomic renaming (which *should* be true even under Windows). |
| 1266 | As in importlib, we use id(something) to generate a pseudo-random |
| 1267 | filename. mkstemp() can't be used since it doesn't allow specifying |
| 1268 | the file access permissions. |
| 1269 | */ |
| 1270 | cpathname_tmp = PyUnicode_FromFormat("%U.%zd", |
| 1271 | cpathname, (Py_ssize_t) co); |
Antoine Pitrou | 28e401e | 2011-11-15 19:15:19 +0100 | [diff] [blame] | 1272 | if (cpathname_tmp == NULL) { |
| 1273 | PyErr_Clear(); |
| 1274 | return; |
| 1275 | } |
Antoine Pitrou | 8ad982c | 2011-11-15 22:27:32 +0100 | [diff] [blame] | 1276 | #ifdef MS_WINDOWS |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 1277 | wpathname = PyUnicode_AsUnicode(cpathname); |
| 1278 | if (wpathname == NULL) { |
| 1279 | PyErr_Clear(); |
| 1280 | return; |
| 1281 | } |
| 1282 | wpathname_tmp = PyUnicode_AsUnicode(cpathname_tmp); |
| 1283 | if (wpathname_tmp == NULL) { |
| 1284 | PyErr_Clear(); |
| 1285 | return; |
| 1286 | } |
| 1287 | |
| 1288 | (void)DeleteFileW(wpathname_tmp); |
| 1289 | fd = _wopen(wpathname_tmp, |
Antoine Pitrou | 28e401e | 2011-11-15 19:15:19 +0100 | [diff] [blame] | 1290 | O_EXCL | O_CREAT | O_WRONLY | O_BINARY, |
| 1291 | mode); |
Victor Stinner | 783c82c | 2011-04-20 03:27:51 +0200 | [diff] [blame] | 1292 | if (0 <= fd) |
| 1293 | fp = fdopen(fd, "wb"); |
| 1294 | else |
| 1295 | fp = NULL; |
| 1296 | #else |
Antoine Pitrou | 8ad982c | 2011-11-15 22:27:32 +0100 | [diff] [blame] | 1297 | cpathbytes_tmp = PyUnicode_EncodeFSDefault(cpathname_tmp); |
| 1298 | Py_DECREF(cpathname_tmp); |
| 1299 | if (cpathbytes_tmp == NULL) { |
| 1300 | PyErr_Clear(); |
| 1301 | return; |
| 1302 | } |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1303 | cpathbytes = PyUnicode_EncodeFSDefault(cpathname); |
| 1304 | if (cpathbytes == NULL) { |
| 1305 | PyErr_Clear(); |
| 1306 | return; |
| 1307 | } |
Charles-François Natali | 0c929d9 | 2011-11-10 19:12:29 +0100 | [diff] [blame] | 1308 | fd = open(PyBytes_AS_STRING(cpathbytes_tmp), |
| 1309 | O_CREAT | O_EXCL | O_WRONLY, 0666); |
Charles-François Natali | e695eec | 2011-10-31 20:47:31 +0100 | [diff] [blame] | 1310 | if (0 <= fd) |
| 1311 | fp = fdopen(fd, "wb"); |
| 1312 | else |
| 1313 | fp = NULL; |
Victor Stinner | 783c82c | 2011-04-20 03:27:51 +0200 | [diff] [blame] | 1314 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1315 | if (fp == NULL) { |
| 1316 | if (Py_VerboseFlag) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1317 | PySys_FormatStderr( |
| 1318 | "# can't create %R\n", cpathname); |
Antoine Pitrou | 28e401e | 2011-11-15 19:15:19 +0100 | [diff] [blame] | 1319 | #ifdef MS_WINDOWS |
| 1320 | Py_DECREF(cpathname_tmp); |
| 1321 | #else |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1322 | Py_DECREF(cpathbytes); |
Antoine Pitrou | 707033a | 2011-10-17 19:28:44 +0200 | [diff] [blame] | 1323 | Py_DECREF(cpathbytes_tmp); |
Victor Stinner | 783c82c | 2011-04-20 03:27:51 +0200 | [diff] [blame] | 1324 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1325 | return; |
| 1326 | } |
| 1327 | PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION); |
| 1328 | /* First write a 0 for mtime */ |
| 1329 | PyMarshal_WriteLongToFile(0L, fp, Py_MARSHAL_VERSION); |
| 1330 | PyMarshal_WriteObjectToFile((PyObject *)co, fp, Py_MARSHAL_VERSION); |
Antoine Pitrou | 707033a | 2011-10-17 19:28:44 +0200 | [diff] [blame] | 1331 | fflush(fp); |
| 1332 | /* Now write the true mtime */ |
| 1333 | fseek(fp, 4L, 0); |
| 1334 | assert(mtime < LONG_MAX); |
| 1335 | PyMarshal_WriteLongToFile((long)mtime, fp, Py_MARSHAL_VERSION); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1336 | if (fflush(fp) != 0 || ferror(fp)) { |
| 1337 | if (Py_VerboseFlag) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1338 | PySys_FormatStderr("# can't write %R\n", cpathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1339 | /* Don't keep partial file */ |
| 1340 | fclose(fp); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1341 | #ifdef MS_WINDOWS |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 1342 | (void)DeleteFileW(wpathname_tmp); |
Antoine Pitrou | 28e401e | 2011-11-15 19:15:19 +0100 | [diff] [blame] | 1343 | Py_DECREF(cpathname_tmp); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1344 | #else |
Antoine Pitrou | 707033a | 2011-10-17 19:28:44 +0200 | [diff] [blame] | 1345 | (void) unlink(PyBytes_AS_STRING(cpathbytes_tmp)); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1346 | Py_DECREF(cpathbytes); |
Antoine Pitrou | 707033a | 2011-10-17 19:28:44 +0200 | [diff] [blame] | 1347 | Py_DECREF(cpathbytes_tmp); |
Victor Stinner | 783c82c | 2011-04-20 03:27:51 +0200 | [diff] [blame] | 1348 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1349 | return; |
| 1350 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1351 | fclose(fp); |
Antoine Pitrou | 28e401e | 2011-11-15 19:15:19 +0100 | [diff] [blame] | 1352 | /* Do a (hopefully) atomic rename */ |
| 1353 | #ifdef MS_WINDOWS |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 1354 | if (!MoveFileExW(wpathname_tmp, wpathname, MOVEFILE_REPLACE_EXISTING)) { |
Antoine Pitrou | 28e401e | 2011-11-15 19:15:19 +0100 | [diff] [blame] | 1355 | if (Py_VerboseFlag) |
| 1356 | PySys_FormatStderr("# can't write %R\n", cpathname); |
| 1357 | /* Don't keep tmp file */ |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 1358 | (void) DeleteFileW(wpathname_tmp); |
Antoine Pitrou | 28e401e | 2011-11-15 19:15:19 +0100 | [diff] [blame] | 1359 | Py_DECREF(cpathname_tmp); |
| 1360 | return; |
| 1361 | } |
| 1362 | Py_DECREF(cpathname_tmp); |
| 1363 | #else |
Antoine Pitrou | 707033a | 2011-10-17 19:28:44 +0200 | [diff] [blame] | 1364 | if (rename(PyBytes_AS_STRING(cpathbytes_tmp), |
| 1365 | PyBytes_AS_STRING(cpathbytes))) { |
| 1366 | if (Py_VerboseFlag) |
| 1367 | PySys_FormatStderr("# can't write %R\n", cpathname); |
| 1368 | /* Don't keep tmp file */ |
| 1369 | unlink(PyBytes_AS_STRING(cpathbytes_tmp)); |
| 1370 | Py_DECREF(cpathbytes); |
| 1371 | Py_DECREF(cpathbytes_tmp); |
| 1372 | return; |
| 1373 | } |
| 1374 | Py_DECREF(cpathbytes); |
| 1375 | Py_DECREF(cpathbytes_tmp); |
| 1376 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1377 | if (Py_VerboseFlag) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1378 | PySys_FormatStderr("# wrote %R\n", cpathname); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1379 | } |
| 1380 | |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 1381 | static void |
| 1382 | update_code_filenames(PyCodeObject *co, PyObject *oldname, PyObject *newname) |
| 1383 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1384 | PyObject *constants, *tmp; |
| 1385 | Py_ssize_t i, n; |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 1386 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1387 | if (PyUnicode_Compare(co->co_filename, oldname)) |
| 1388 | return; |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 1389 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1390 | tmp = co->co_filename; |
| 1391 | co->co_filename = newname; |
| 1392 | Py_INCREF(co->co_filename); |
| 1393 | Py_DECREF(tmp); |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 1394 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1395 | constants = co->co_consts; |
| 1396 | n = PyTuple_GET_SIZE(constants); |
| 1397 | for (i = 0; i < n; i++) { |
| 1398 | tmp = PyTuple_GET_ITEM(constants, i); |
| 1399 | if (PyCode_Check(tmp)) |
| 1400 | update_code_filenames((PyCodeObject *)tmp, |
| 1401 | oldname, newname); |
| 1402 | } |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 1403 | } |
| 1404 | |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1405 | static void |
| 1406 | update_compiled_module(PyCodeObject *co, PyObject *newname) |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 1407 | { |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1408 | PyObject *oldname; |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 1409 | |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1410 | if (PyUnicode_Compare(co->co_filename, newname) == 0) |
| 1411 | return; |
Hirokazu Yamamoto | 4f447fb | 2009-03-04 01:52:10 +0000 | [diff] [blame] | 1412 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1413 | oldname = co->co_filename; |
| 1414 | Py_INCREF(oldname); |
| 1415 | update_code_filenames(co, oldname, newname); |
| 1416 | Py_DECREF(oldname); |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 1417 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1418 | |
Brett Cannon | 442c9b9 | 2011-03-23 16:14:42 -0700 | [diff] [blame] | 1419 | static PyObject * |
| 1420 | imp_fix_co_filename(PyObject *self, PyObject *args) |
| 1421 | { |
| 1422 | PyObject *co; |
| 1423 | PyObject *file_path; |
| 1424 | |
| 1425 | if (!PyArg_ParseTuple(args, "OO:_fix_co_filename", &co, &file_path)) |
| 1426 | return NULL; |
| 1427 | |
| 1428 | if (!PyCode_Check(co)) { |
| 1429 | PyErr_SetString(PyExc_TypeError, |
| 1430 | "first argument must be a code object"); |
| 1431 | return NULL; |
| 1432 | } |
| 1433 | |
| 1434 | if (!PyUnicode_Check(file_path)) { |
| 1435 | PyErr_SetString(PyExc_TypeError, |
| 1436 | "second argument must be a string"); |
| 1437 | return NULL; |
| 1438 | } |
| 1439 | |
| 1440 | update_compiled_module((PyCodeObject*)co, file_path); |
| 1441 | |
| 1442 | Py_RETURN_NONE; |
| 1443 | } |
| 1444 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1445 | /* 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] | 1446 | object WITH INCREMENTED REFERENCE COUNT. If there's a matching |
| 1447 | byte-compiled file, use that instead. */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1448 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1449 | static PyObject * |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1450 | load_source_module(PyObject *name, PyObject *pathname, FILE *fp) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1451 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1452 | struct stat st; |
| 1453 | FILE *fpc; |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1454 | PyObject *cpathname = NULL, *cpathbytes = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1455 | PyCodeObject *co; |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1456 | PyObject *m = NULL; |
Brett Cannon | 9a5b25a | 2010-03-01 02:09:17 +0000 | [diff] [blame] | 1457 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1458 | if (fstat(fileno(fp), &st) != 0) { |
| 1459 | PyErr_Format(PyExc_RuntimeError, |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1460 | "unable to get file status from %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1461 | pathname); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1462 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1463 | } |
Fred Drake | 4c82b23 | 2000-06-30 16:18:57 +0000 | [diff] [blame] | 1464 | #if SIZEOF_TIME_T > 4 |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1465 | /* Python's .pyc timestamp handling presumes that the timestamp fits |
| 1466 | in 4 bytes. This will be fine until sometime in the year 2038, |
| 1467 | when a 4-byte signed time_t will overflow. |
| 1468 | */ |
| 1469 | if (st.st_mtime >> 32) { |
| 1470 | PyErr_SetString(PyExc_OverflowError, |
| 1471 | "modification time overflows a 4 byte field"); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1472 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1473 | } |
Fred Drake | 4c82b23 | 2000-06-30 16:18:57 +0000 | [diff] [blame] | 1474 | #endif |
Martin v. Löwis | 30260a7 | 2011-10-23 17:35:46 +0200 | [diff] [blame] | 1475 | if (PyUnicode_READY(pathname) < 0) |
| 1476 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1477 | cpathname = make_compiled_pathname(pathname, !Py_OptimizeFlag); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1478 | |
| 1479 | if (cpathname != NULL) |
| 1480 | fpc = check_compiled_module(pathname, st.st_mtime, cpathname); |
| 1481 | else |
| 1482 | fpc = NULL; |
| 1483 | |
| 1484 | if (fpc) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1485 | co = read_compiled_module(cpathname, fpc); |
| 1486 | fclose(fpc); |
| 1487 | if (co == NULL) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1488 | goto error; |
| 1489 | update_compiled_module(co, pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1490 | if (Py_VerboseFlag) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1491 | PySys_FormatStderr("import %U # precompiled from %R\n", |
| 1492 | name, cpathname); |
| 1493 | m = PyImport_ExecCodeModuleObject(name, (PyObject *)co, |
| 1494 | cpathname, cpathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1495 | } |
| 1496 | else { |
| 1497 | co = parse_source_module(pathname, fp); |
| 1498 | if (co == NULL) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1499 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1500 | if (Py_VerboseFlag) |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1501 | PySys_FormatStderr("import %U # from %R\n", |
Victor Stinner | 98dbba5 | 2011-03-14 15:15:47 -0400 | [diff] [blame] | 1502 | name, pathname); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1503 | if (cpathname != NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1504 | PyObject *ro = PySys_GetObject("dont_write_bytecode"); |
| 1505 | if (ro == NULL || !PyObject_IsTrue(ro)) |
| 1506 | write_compiled_module(co, cpathname, &st); |
| 1507 | } |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1508 | m = PyImport_ExecCodeModuleObject(name, (PyObject *)co, |
| 1509 | pathname, cpathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1510 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1511 | Py_DECREF(co); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1512 | |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 1513 | error: |
| 1514 | Py_XDECREF(cpathbytes); |
| 1515 | Py_XDECREF(cpathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1516 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1517 | } |
| 1518 | |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1519 | /* Get source file -> unicode or None |
| 1520 | * Returns the path to the py file if available, else the given path |
| 1521 | */ |
| 1522 | static PyObject * |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1523 | get_sourcefile(PyObject *filename) |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1524 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1525 | Py_ssize_t len; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1526 | Py_UCS4 *fileuni; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1527 | PyObject *py; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1528 | struct stat statbuf; |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1529 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1530 | len = PyUnicode_GET_LENGTH(filename); |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1531 | if (len == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1532 | Py_RETURN_NONE; |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1533 | |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1534 | /* don't match *.pyc or *.pyo? */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1535 | fileuni = PyUnicode_AsUCS4Copy(filename); |
| 1536 | if (!fileuni) |
| 1537 | return NULL; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1538 | if (len < 5 |
| 1539 | || fileuni[len-4] != '.' |
| 1540 | || (fileuni[len-3] != 'p' && fileuni[len-3] != 'P') |
| 1541 | || (fileuni[len-2] != 'y' && fileuni[len-2] != 'Y')) |
| 1542 | goto unchanged; |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1543 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1544 | /* Start by trying to turn PEP 3147 path into source path. If that |
| 1545 | * fails, just chop off the trailing character, i.e. legacy pyc path |
| 1546 | * to py. |
| 1547 | */ |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1548 | py = make_source_pathname(filename); |
| 1549 | if (py == NULL) { |
| 1550 | PyErr_Clear(); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1551 | py = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, fileuni, len - 1); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1552 | } |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1553 | if (py == NULL) |
| 1554 | goto error; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1555 | |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 1556 | if (_Py_stat(py, &statbuf) == 0 && S_ISREG(statbuf.st_mode)) { |
| 1557 | PyMem_Free(fileuni); |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1558 | return py; |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 1559 | } |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1560 | Py_DECREF(py); |
| 1561 | goto unchanged; |
| 1562 | |
| 1563 | error: |
| 1564 | PyErr_Clear(); |
| 1565 | unchanged: |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1566 | PyMem_Free(fileuni); |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1567 | Py_INCREF(filename); |
| 1568 | return filename; |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1569 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1570 | |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1571 | /* Forward */ |
Victor Stinner | 41c5fec | 2011-03-13 21:46:30 -0400 | [diff] [blame] | 1572 | static PyObject *load_module(PyObject *, FILE *, PyObject *, int, PyObject *); |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 1573 | static struct filedescr *find_module(PyObject *, PyObject *, PyObject *, |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1574 | PyObject **, FILE **, PyObject **); |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1575 | static struct _frozen * find_frozen(PyObject *); |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1576 | |
| 1577 | /* Load a package and return its module object WITH INCREMENTED |
| 1578 | REFERENCE COUNT */ |
| 1579 | |
| 1580 | static PyObject * |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1581 | load_package(PyObject *name, PyObject *pathname) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1582 | { |
Victor Stinner | 41c5fec | 2011-03-13 21:46:30 -0400 | [diff] [blame] | 1583 | PyObject *m, *d, *bufobj; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1584 | PyObject *file = NULL, *path_list = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1585 | int err; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1586 | FILE *fp = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1587 | struct filedescr *fdp; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1588 | |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1589 | m = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1590 | if (m == NULL) |
| 1591 | return NULL; |
| 1592 | if (Py_VerboseFlag) |
Victor Stinner | 98dbba5 | 2011-03-14 15:15:47 -0400 | [diff] [blame] | 1593 | PySys_FormatStderr("import %U # directory %R\n", |
| 1594 | name, pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1595 | file = get_sourcefile(pathname); |
| 1596 | if (file == NULL) |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1597 | return NULL; |
| 1598 | path_list = Py_BuildValue("[O]", file); |
| 1599 | if (path_list == NULL) { |
| 1600 | Py_DECREF(file); |
| 1601 | return NULL; |
| 1602 | } |
| 1603 | d = PyModule_GetDict(m); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1604 | err = PyDict_SetItemString(d, "__file__", file); |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1605 | Py_DECREF(file); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1606 | if (err == 0) |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1607 | err = PyDict_SetItemString(d, "__path__", path_list); |
| 1608 | if (err != 0) { |
| 1609 | Py_DECREF(path_list); |
| 1610 | return NULL; |
| 1611 | } |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 1612 | fdp = find_module(name, initstr, path_list, |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1613 | &bufobj, &fp, NULL); |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1614 | Py_DECREF(path_list); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1615 | if (fdp == NULL) { |
| 1616 | if (PyErr_ExceptionMatches(PyExc_ImportError)) { |
| 1617 | PyErr_Clear(); |
| 1618 | Py_INCREF(m); |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1619 | return m; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1620 | } |
| 1621 | else |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1622 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1623 | } |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1624 | m = load_module(name, fp, bufobj, fdp->type, NULL); |
| 1625 | Py_XDECREF(bufobj); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1626 | if (fp != NULL) |
| 1627 | fclose(fp); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1628 | return m; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1629 | } |
| 1630 | |
| 1631 | |
| 1632 | /* Helper to test for built-in module */ |
| 1633 | |
| 1634 | static int |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1635 | is_builtin(PyObject *name) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1636 | { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1637 | int i, cmp; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1638 | for (i = 0; PyImport_Inittab[i].name != NULL; i++) { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1639 | cmp = PyUnicode_CompareWithASCIIString(name, PyImport_Inittab[i].name); |
| 1640 | if (cmp == 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1641 | if (PyImport_Inittab[i].initfunc == NULL) |
| 1642 | return -1; |
| 1643 | else |
| 1644 | return 1; |
| 1645 | } |
| 1646 | } |
| 1647 | return 0; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1648 | } |
| 1649 | |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1650 | |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1651 | /* Return an importer object for a sys.path/pkg.__path__ item 'p', |
| 1652 | possibly by fetching it from the path_importer_cache dict. If it |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1653 | 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] | 1654 | that can handle the path item. Return None if no hook could; |
| 1655 | this tells our caller it should fall back to the builtin |
| 1656 | import mechanism. Cache the result in path_importer_cache. |
| 1657 | Returns a borrowed reference. */ |
| 1658 | |
| 1659 | static PyObject * |
| 1660 | get_path_importer(PyObject *path_importer_cache, PyObject *path_hooks, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1661 | PyObject *p) |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1662 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1663 | PyObject *importer; |
| 1664 | Py_ssize_t j, nhooks; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1665 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1666 | /* These conditions are the caller's responsibility: */ |
| 1667 | assert(PyList_Check(path_hooks)); |
| 1668 | assert(PyDict_Check(path_importer_cache)); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1669 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1670 | nhooks = PyList_Size(path_hooks); |
| 1671 | if (nhooks < 0) |
| 1672 | return NULL; /* Shouldn't happen */ |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1673 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1674 | importer = PyDict_GetItem(path_importer_cache, p); |
| 1675 | if (importer != NULL) |
| 1676 | return importer; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1677 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1678 | /* set path_importer_cache[p] to None to avoid recursion */ |
| 1679 | if (PyDict_SetItem(path_importer_cache, p, Py_None) != 0) |
| 1680 | return NULL; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1681 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1682 | for (j = 0; j < nhooks; j++) { |
| 1683 | PyObject *hook = PyList_GetItem(path_hooks, j); |
| 1684 | if (hook == NULL) |
| 1685 | return NULL; |
| 1686 | importer = PyObject_CallFunctionObjArgs(hook, p, NULL); |
| 1687 | if (importer != NULL) |
| 1688 | break; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1689 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1690 | if (!PyErr_ExceptionMatches(PyExc_ImportError)) { |
| 1691 | return NULL; |
| 1692 | } |
| 1693 | PyErr_Clear(); |
| 1694 | } |
| 1695 | if (importer == NULL) { |
| 1696 | importer = PyObject_CallFunctionObjArgs( |
| 1697 | (PyObject *)&PyNullImporter_Type, p, NULL |
| 1698 | ); |
| 1699 | if (importer == NULL) { |
| 1700 | if (PyErr_ExceptionMatches(PyExc_ImportError)) { |
| 1701 | PyErr_Clear(); |
| 1702 | return Py_None; |
| 1703 | } |
| 1704 | } |
| 1705 | } |
| 1706 | if (importer != NULL) { |
| 1707 | int err = PyDict_SetItem(path_importer_cache, p, importer); |
| 1708 | Py_DECREF(importer); |
| 1709 | if (err != 0) |
| 1710 | return NULL; |
| 1711 | } |
| 1712 | return importer; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1713 | } |
| 1714 | |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 1715 | PyAPI_FUNC(PyObject *) |
| 1716 | PyImport_GetImporter(PyObject *path) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1717 | PyObject *importer=NULL, *path_importer_cache=NULL, *path_hooks=NULL; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 1718 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1719 | if ((path_importer_cache = PySys_GetObject("path_importer_cache"))) { |
| 1720 | if ((path_hooks = PySys_GetObject("path_hooks"))) { |
| 1721 | importer = get_path_importer(path_importer_cache, |
| 1722 | path_hooks, path); |
| 1723 | } |
| 1724 | } |
| 1725 | Py_XINCREF(importer); /* get_path_importer returns a borrowed reference */ |
| 1726 | return importer; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 1727 | } |
| 1728 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1729 | /* Search the path (default sys.path) for a module. Return the |
| 1730 | corresponding filedescr struct, and (via return arguments) the |
| 1731 | pathname and an open file. Return NULL if the module is not found. */ |
| 1732 | |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1733 | #ifdef MS_COREDLL |
Victor Stinner | 4d6c1c4 | 2011-03-08 23:49:04 +0100 | [diff] [blame] | 1734 | extern FILE *_PyWin_FindRegisteredModule(PyObject *, struct filedescr **, |
| 1735 | PyObject **p_path); |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1736 | #endif |
| 1737 | |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 1738 | /* Forward */ |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1739 | static int case_ok(PyObject *, Py_ssize_t, PyObject *); |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 1740 | static int find_init_module(PyObject *); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1741 | static struct filedescr importhookdescr = {"", "", IMP_HOOK}; |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 1742 | |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1743 | /* Get the path of a module: get its importer and call importer.find_module() |
| 1744 | hook, or check if the module if a package (if path/__init__.py exists). |
| 1745 | |
| 1746 | -1: error: a Python error occurred |
| 1747 | 0: ignore: an error occurred because of invalid data, but the error is not |
| 1748 | important enough to be reported. |
| 1749 | 1: get path: module not found, but *buf contains its path |
| 1750 | 2: found: *p_fd is the file descriptor (IMP_HOOK or PKG_DIRECTORY) |
| 1751 | and *buf is the path */ |
| 1752 | |
| 1753 | static int |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 1754 | find_module_path(PyObject *fullname, PyObject *name, PyObject *path, |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1755 | PyObject *path_hooks, PyObject *path_importer_cache, |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1756 | PyObject **p_path, PyObject **p_loader, struct filedescr **p_fd) |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1757 | { |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1758 | PyObject *path_unicode, *filename = NULL; |
| 1759 | Py_ssize_t len, pos; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1760 | struct stat statbuf; |
| 1761 | static struct filedescr fd_package = {"", "", PKG_DIRECTORY}; |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1762 | int result, addsep; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1763 | |
| 1764 | if (PyUnicode_Check(path)) { |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1765 | Py_INCREF(path); |
| 1766 | path_unicode = path; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1767 | } |
| 1768 | else if (PyBytes_Check(path)) { |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1769 | path_unicode = PyUnicode_DecodeFSDefaultAndSize( |
| 1770 | PyBytes_AS_STRING(path), PyBytes_GET_SIZE(path)); |
| 1771 | if (path_unicode == NULL) |
| 1772 | return -1; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1773 | } |
| 1774 | else |
| 1775 | return 0; |
| 1776 | |
Victor Stinner | 46084ba | 2011-10-06 02:39:42 +0200 | [diff] [blame] | 1777 | if (PyUnicode_READY(path_unicode)) |
| 1778 | return -1; |
| 1779 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1780 | len = PyUnicode_GET_LENGTH(path_unicode); |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1781 | if (PyUnicode_FindChar(path_unicode, 0, 0, len, 1) != -1) { |
| 1782 | result = 0; |
| 1783 | goto out; /* path contains '\0' */ |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1784 | } |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1785 | |
| 1786 | /* sys.path_hooks import hook */ |
| 1787 | if (p_loader != NULL) { |
Martin v. Löwis | bd928fe | 2011-10-14 10:20:37 +0200 | [diff] [blame] | 1788 | _Py_IDENTIFIER(find_module); |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1789 | PyObject *importer; |
| 1790 | |
| 1791 | importer = get_path_importer(path_importer_cache, |
| 1792 | path_hooks, path); |
| 1793 | if (importer == NULL) { |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1794 | result = -1; |
| 1795 | goto out; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1796 | } |
| 1797 | /* Note: importer is a borrowed reference */ |
| 1798 | if (importer != Py_None) { |
| 1799 | PyObject *loader; |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 1800 | loader = _PyObject_CallMethodId(importer, |
| 1801 | &PyId_find_module, "O", fullname); |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1802 | if (loader == NULL) { |
| 1803 | result = -1; /* error */ |
| 1804 | goto out; |
| 1805 | } |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1806 | if (loader != Py_None) { |
| 1807 | /* a loader was found */ |
| 1808 | *p_loader = loader; |
| 1809 | *p_fd = &importhookdescr; |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1810 | result = 2; |
| 1811 | goto out; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1812 | } |
| 1813 | Py_DECREF(loader); |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1814 | result = 0; |
| 1815 | goto out; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1816 | } |
| 1817 | } |
| 1818 | /* no hook was found, use builtin import */ |
| 1819 | |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1820 | addsep = 0; |
| 1821 | if (len > 0 && PyUnicode_READ_CHAR(path_unicode, len-1) != SEP |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1822 | #ifdef ALTSEP |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1823 | && PyUnicode_READ_CHAR(path_unicode, len-1) != ALTSEP |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1824 | #endif |
| 1825 | ) |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1826 | addsep = 1; |
| 1827 | filename = PyUnicode_New(len + PyUnicode_GET_LENGTH(name) + addsep, |
| 1828 | Py_MAX(PyUnicode_MAX_CHAR_VALUE(path_unicode), |
| 1829 | PyUnicode_MAX_CHAR_VALUE(name))); |
| 1830 | if (filename == NULL) { |
| 1831 | result = -1; |
| 1832 | goto out; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1833 | } |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1834 | PyUnicode_CopyCharacters(filename, 0, path_unicode, 0, len); |
| 1835 | pos = len; |
| 1836 | if (addsep) |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 1837 | PyUnicode_WRITE(PyUnicode_KIND(filename), |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1838 | PyUnicode_DATA(filename), |
| 1839 | pos++, SEP); |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 1840 | PyUnicode_CopyCharacters(filename, pos, name, 0, |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1841 | PyUnicode_GET_LENGTH(name)); |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1842 | |
| 1843 | /* Check for package import (buf holds a directory name, |
| 1844 | and there's an __init__ module in that directory */ |
| 1845 | #ifdef HAVE_STAT |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1846 | if (_Py_stat(filename, &statbuf) == 0 && /* it exists */ |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 1847 | S_ISDIR(statbuf.st_mode)) /* it's a directory */ |
| 1848 | { |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1849 | int match; |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1850 | |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1851 | match = case_ok(filename, 0, name); |
| 1852 | if (match < 0) { |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1853 | result = -1; |
| 1854 | goto out; |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1855 | } |
| 1856 | if (match) { /* case matches */ |
| 1857 | if (find_init_module(filename)) { /* and has __init__.py */ |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1858 | *p_path = filename; |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1859 | filename = NULL; |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 1860 | *p_fd = &fd_package; |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1861 | result = 2; |
| 1862 | goto out; |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 1863 | } |
| 1864 | else { |
| 1865 | int err; |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 1866 | err = PyErr_WarnFormat(PyExc_ImportWarning, 1, |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 1867 | "Not importing directory %R: missing __init__.py", |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1868 | filename); |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 1869 | if (err) { |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1870 | result = -1; |
| 1871 | goto out; |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 1872 | } |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 1873 | } |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1874 | } |
| 1875 | } |
| 1876 | #endif |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1877 | *p_path = filename; |
Martin v. Löwis | 9af29d3 | 2011-10-23 18:45:16 +0200 | [diff] [blame] | 1878 | filename = NULL; |
| 1879 | result = 1; |
| 1880 | out: |
| 1881 | Py_DECREF(path_unicode); |
| 1882 | Py_XDECREF(filename); |
| 1883 | return result; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1884 | } |
| 1885 | |
| 1886 | /* Find a module in search_path_list. For each path, try |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 1887 | find_module_path() or try each _PyImport_Filetab suffix. |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1888 | |
| 1889 | If the module is found, return a file descriptor, write the path in |
| 1890 | *p_filename, write the pointer to the file object into *p_fp, and (if |
| 1891 | p_loader is not NULL) the loader into *p_loader. |
| 1892 | |
| 1893 | Otherwise, raise an exception and return NULL. */ |
| 1894 | |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 1895 | static struct filedescr* |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 1896 | find_module_path_list(PyObject *fullname, PyObject *name, |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 1897 | PyObject *search_path_list, PyObject *path_hooks, |
| 1898 | PyObject *path_importer_cache, |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1899 | PyObject **p_path, FILE **p_fp, PyObject **p_loader) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1900 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1901 | Py_ssize_t i, npath; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1902 | struct filedescr *fdp = NULL; |
| 1903 | char *filemode; |
| 1904 | FILE *fp = NULL; |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1905 | PyObject *prefix, *filename; |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1906 | int match; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1907 | |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 1908 | npath = PyList_Size(search_path_list); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1909 | for (i = 0; i < npath; i++) { |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1910 | PyObject *path; |
| 1911 | int ok; |
| 1912 | |
| 1913 | path = PyList_GetItem(search_path_list, i); |
| 1914 | if (path == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1915 | return NULL; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1916 | |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1917 | prefix = NULL; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1918 | ok = find_module_path(fullname, name, path, |
| 1919 | path_hooks, path_importer_cache, |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1920 | &prefix, p_loader, &fdp); |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1921 | if (ok < 0) |
| 1922 | return NULL; |
| 1923 | if (ok == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1924 | continue; |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1925 | if (ok == 2) { |
| 1926 | *p_path = prefix; |
Victor Stinner | d68c2cf | 2011-03-12 16:02:28 -0500 | [diff] [blame] | 1927 | return fdp; |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1928 | } |
Amaury Forgeot d'Arc | f1ca0b1 | 2008-06-11 17:40:47 +0000 | [diff] [blame] | 1929 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1930 | for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { |
Victor Stinner | a1fe1f8 | 2011-09-23 18:59:08 +0200 | [diff] [blame] | 1931 | struct stat statbuf; |
| 1932 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1933 | filemode = fdp->mode; |
| 1934 | if (filemode[0] == 'U') |
| 1935 | filemode = "r" PY_STDIOTEXTMODE; |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 1936 | |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1937 | filename = PyUnicode_FromFormat("%U%s", prefix, fdp->suffix); |
| 1938 | if (filename == NULL) { |
| 1939 | Py_DECREF(prefix); |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1940 | return NULL; |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1941 | } |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1942 | |
| 1943 | if (Py_VerboseFlag > 1) |
| 1944 | PySys_FormatStderr("# trying %R\n", filename); |
| 1945 | |
Victor Stinner | a1fe1f8 | 2011-09-23 18:59:08 +0200 | [diff] [blame] | 1946 | if (_Py_stat(filename, &statbuf) == 0 && /* it exists */ |
| 1947 | S_ISDIR(statbuf.st_mode)) /* it's a directory */ |
| 1948 | { |
| 1949 | Py_DECREF(filename); |
| 1950 | continue; |
| 1951 | } |
| 1952 | |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1953 | fp = _Py_fopen(filename, filemode); |
| 1954 | if (fp == NULL) { |
| 1955 | Py_DECREF(filename); |
Victor Stinner | 925ef39 | 2011-06-20 15:01:10 +0200 | [diff] [blame] | 1956 | if (PyErr_Occurred()) { |
| 1957 | Py_DECREF(prefix); |
| 1958 | return NULL; |
| 1959 | } |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1960 | continue; |
| 1961 | } |
| 1962 | match = case_ok(filename, -(Py_ssize_t)strlen(fdp->suffix), name); |
| 1963 | if (match < 0) { |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1964 | Py_DECREF(prefix); |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1965 | Py_DECREF(filename); |
| 1966 | return NULL; |
| 1967 | } |
| 1968 | if (match) { |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1969 | Py_DECREF(prefix); |
| 1970 | *p_path = filename; |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 1971 | *p_fp = fp; |
| 1972 | return fdp; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1973 | } |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 1974 | Py_DECREF(filename); |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 1975 | |
| 1976 | fclose(fp); |
| 1977 | fp = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1978 | } |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1979 | Py_DECREF(prefix); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1980 | } |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 1981 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 98dbba5 | 2011-03-14 15:15:47 -0400 | [diff] [blame] | 1982 | "No module named %R", name); |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 1983 | return NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1984 | } |
| 1985 | |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 1986 | /* Find a module: |
| 1987 | |
| 1988 | - try find_module() of each sys.meta_path hook |
| 1989 | - try find_frozen() |
| 1990 | - try is_builtin() |
| 1991 | - try _PyWin_FindRegisteredModule() (Windows only) |
| 1992 | - otherwise, call find_module_path_list() with search_path_list (if not |
| 1993 | NULL) or sys.path |
| 1994 | |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 1995 | fullname can be NULL, but only if p_loader is NULL. |
| 1996 | |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 1997 | Return: |
| 1998 | |
| 1999 | - &fd_builtin (C_BUILTIN) if it is a builtin |
| 2000 | - &fd_frozen (PY_FROZEN) if it is frozen |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 2001 | - &fd_package (PKG_DIRECTORY) and write the filename into *p_path |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2002 | if it is a package |
| 2003 | - &importhookdescr (IMP_HOOK) and write the loader into *p_loader if a |
| 2004 | importer loader was found |
| 2005 | - a file descriptor (PY_SOURCE, PY_COMPILED, C_EXTENSION, PY_RESOURCE or |
| 2006 | PY_CODERESOURCE: see _PyImport_Filetab), write the filename into |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 2007 | *p_path and the pointer to the open file into *p_fp |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2008 | - NULL on error |
| 2009 | |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 2010 | By default, *p_path, *p_fp and *p_loader (if set) are set to NULL. |
| 2011 | Eg. *p_path is set to NULL for a builtin package. |
| 2012 | */ |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2013 | |
| 2014 | static struct filedescr * |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 2015 | find_module(PyObject *fullname, PyObject *name, PyObject *search_path_list, |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 2016 | PyObject **p_path, FILE **p_fp, PyObject **p_loader) |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2017 | { |
| 2018 | Py_ssize_t i, npath; |
| 2019 | static struct filedescr fd_frozen = {"", "", PY_FROZEN}; |
| 2020 | static struct filedescr fd_builtin = {"", "", C_BUILTIN}; |
| 2021 | PyObject *path_hooks, *path_importer_cache; |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2022 | |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 2023 | *p_path = NULL; |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2024 | *p_fp = NULL; |
| 2025 | if (p_loader != NULL) |
| 2026 | *p_loader = NULL; |
| 2027 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2028 | if (PyUnicode_GET_LENGTH(name) > MAXPATHLEN) { |
| 2029 | PyErr_SetString(PyExc_OverflowError, |
| 2030 | "module name is too long"); |
| 2031 | return NULL; |
| 2032 | } |
| 2033 | |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2034 | /* sys.meta_path import hook */ |
| 2035 | if (p_loader != NULL) { |
Martin v. Löwis | bd928fe | 2011-10-14 10:20:37 +0200 | [diff] [blame] | 2036 | _Py_IDENTIFIER(find_module); |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2037 | PyObject *meta_path; |
| 2038 | |
| 2039 | meta_path = PySys_GetObject("meta_path"); |
| 2040 | if (meta_path == NULL || !PyList_Check(meta_path)) { |
Victor Stinner | 1619132 | 2011-09-15 19:28:05 +0200 | [diff] [blame] | 2041 | PyErr_SetString(PyExc_RuntimeError, |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2042 | "sys.meta_path must be a list of " |
| 2043 | "import hooks"); |
| 2044 | return NULL; |
| 2045 | } |
| 2046 | Py_INCREF(meta_path); /* zap guard */ |
| 2047 | npath = PyList_Size(meta_path); |
| 2048 | for (i = 0; i < npath; i++) { |
| 2049 | PyObject *loader; |
| 2050 | PyObject *hook = PyList_GetItem(meta_path, i); |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 2051 | loader = _PyObject_CallMethodId(hook, &PyId_find_module, |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 2052 | "OO", fullname, |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2053 | search_path_list != NULL ? |
| 2054 | search_path_list : Py_None); |
| 2055 | if (loader == NULL) { |
| 2056 | Py_DECREF(meta_path); |
| 2057 | return NULL; /* true error */ |
| 2058 | } |
| 2059 | if (loader != Py_None) { |
| 2060 | /* a loader was found */ |
| 2061 | *p_loader = loader; |
| 2062 | Py_DECREF(meta_path); |
| 2063 | return &importhookdescr; |
| 2064 | } |
| 2065 | Py_DECREF(loader); |
| 2066 | } |
| 2067 | Py_DECREF(meta_path); |
| 2068 | } |
| 2069 | |
Victor Stinner | df75a02 | 2011-03-14 13:40:04 -0400 | [diff] [blame] | 2070 | if (find_frozen(fullname) != NULL) |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 2071 | return &fd_frozen; |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2072 | |
| 2073 | if (search_path_list == NULL) { |
| 2074 | #ifdef MS_COREDLL |
| 2075 | FILE *fp; |
| 2076 | struct filedescr *fdp; |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2077 | #endif |
Victor Stinner | df75a02 | 2011-03-14 13:40:04 -0400 | [diff] [blame] | 2078 | if (is_builtin(name)) |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2079 | return &fd_builtin; |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2080 | #ifdef MS_COREDLL |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 2081 | fp = _PyWin_FindRegisteredModule(name, &fdp, p_path); |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2082 | if (fp != NULL) { |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2083 | *p_fp = fp; |
| 2084 | return fdp; |
| 2085 | } |
| 2086 | else if (PyErr_Occurred()) |
| 2087 | return NULL; |
| 2088 | #endif |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2089 | search_path_list = PySys_GetObject("path"); |
| 2090 | } |
| 2091 | |
| 2092 | if (search_path_list == NULL || !PyList_Check(search_path_list)) { |
Victor Stinner | 1619132 | 2011-09-15 19:28:05 +0200 | [diff] [blame] | 2093 | PyErr_SetString(PyExc_RuntimeError, |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2094 | "sys.path must be a list of directory names"); |
| 2095 | return NULL; |
| 2096 | } |
| 2097 | |
| 2098 | path_hooks = PySys_GetObject("path_hooks"); |
| 2099 | if (path_hooks == NULL || !PyList_Check(path_hooks)) { |
Victor Stinner | 1619132 | 2011-09-15 19:28:05 +0200 | [diff] [blame] | 2100 | PyErr_SetString(PyExc_RuntimeError, |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2101 | "sys.path_hooks must be a list of " |
| 2102 | "import hooks"); |
| 2103 | return NULL; |
| 2104 | } |
| 2105 | path_importer_cache = PySys_GetObject("path_importer_cache"); |
| 2106 | if (path_importer_cache == NULL || |
| 2107 | !PyDict_Check(path_importer_cache)) { |
Victor Stinner | 1619132 | 2011-09-15 19:28:05 +0200 | [diff] [blame] | 2108 | PyErr_SetString(PyExc_RuntimeError, |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2109 | "sys.path_importer_cache must be a dict"); |
| 2110 | return NULL; |
| 2111 | } |
| 2112 | |
| 2113 | return find_module_path_list(fullname, name, |
| 2114 | search_path_list, path_hooks, |
| 2115 | path_importer_cache, |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 2116 | p_path, p_fp, p_loader); |
Victor Stinner | 3758028 | 2011-03-20 01:34:43 +0100 | [diff] [blame] | 2117 | } |
| 2118 | |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2119 | /* case_bytes(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name) |
Tim Peters | d1e87a8 | 2001-03-01 18:12:00 +0000 | [diff] [blame] | 2120 | * The arguments here are tricky, best shown by example: |
| 2121 | * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0 |
| 2122 | * ^ ^ ^ ^ |
| 2123 | * |--------------------- buf ---------------------| |
| 2124 | * |------------------- len ------------------| |
| 2125 | * |------ name -------| |
| 2126 | * |----- namelen -----| |
| 2127 | * buf is the full path, but len only counts up to (& exclusive of) the |
| 2128 | * extension. name is the module name, also exclusive of extension. |
| 2129 | * |
| 2130 | * We've already done a successful stat() or fopen() on buf, so know that |
| 2131 | * there's some match, possibly case-insensitive. |
| 2132 | * |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2133 | * case_bytes() is to return 1 if there's a case-sensitive match for |
| 2134 | * name, else 0. case_bytes() is also to return 1 if envar PYTHONCASEOK |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2135 | * exists. |
Tim Peters | d1e87a8 | 2001-03-01 18:12:00 +0000 | [diff] [blame] | 2136 | * |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2137 | * case_bytes() is used to implement case-sensitive import semantics even |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2138 | * on platforms with case-insensitive filesystems. It's trivial to implement |
| 2139 | * for case-sensitive filesystems. It's pretty much a cross-platform |
| 2140 | * nightmare for systems with case-insensitive filesystems. |
| 2141 | */ |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 2142 | |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2143 | /* First we may need a pile of platform-specific header files; the sequence |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2144 | * of #if's here should match the sequence in the body of case_bytes(). |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2145 | */ |
Jason Tishler | 7961aa6 | 2005-05-20 00:56:54 +0000 | [diff] [blame] | 2146 | #if defined(MS_WINDOWS) |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 2147 | #include <windows.h> |
Guido van Rossum | 4c3f57c | 2001-01-10 20:40:46 +0000 | [diff] [blame] | 2148 | |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2149 | #elif defined(DJGPP) |
| 2150 | #include <dir.h> |
| 2151 | |
Jason Tishler | 7961aa6 | 2005-05-20 00:56:54 +0000 | [diff] [blame] | 2152 | #elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H) |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 2153 | #include <sys/types.h> |
| 2154 | #include <dirent.h> |
| 2155 | |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 2156 | #elif defined(PYOS_OS2) |
| 2157 | #define INCL_DOS |
| 2158 | #define INCL_DOSERRORS |
| 2159 | #define INCL_NOPMAPI |
| 2160 | #include <os2.h> |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2161 | #endif |
| 2162 | |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2163 | #if defined(DJGPP) \ |
| 2164 | || ((defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) \ |
| 2165 | && defined(HAVE_DIRENT_H)) \ |
| 2166 | || defined(PYOS_OS2) |
| 2167 | # define USE_CASE_OK_BYTES |
| 2168 | #endif |
| 2169 | |
| 2170 | |
| 2171 | #ifdef USE_CASE_OK_BYTES |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 2172 | static int |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2173 | case_bytes(char *buf, Py_ssize_t len, Py_ssize_t namelen, const char *name) |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 2174 | { |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2175 | /* Pick a platform-specific implementation; the sequence of #if's here should |
| 2176 | * match the sequence just above. |
| 2177 | */ |
| 2178 | |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2179 | /* DJGPP */ |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2180 | #if defined(DJGPP) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2181 | struct ffblk ffblk; |
| 2182 | int done; |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2183 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2184 | if (Py_GETENV("PYTHONCASEOK") != NULL) |
| 2185 | return 1; |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2186 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2187 | done = findfirst(buf, &ffblk, FA_ARCH|FA_RDONLY|FA_HIDDEN|FA_DIREC); |
| 2188 | if (done) { |
| 2189 | PyErr_Format(PyExc_NameError, |
| 2190 | "Can't find file for module %.100s\n(filename %.300s)", |
| 2191 | name, buf); |
Victor Stinner | 9c61e24 | 2011-03-22 01:22:27 +0100 | [diff] [blame] | 2192 | return -1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2193 | } |
| 2194 | return strncmp(ffblk.ff_name, name, namelen) == 0; |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 2195 | |
Jason Tishler | 7961aa6 | 2005-05-20 00:56:54 +0000 | [diff] [blame] | 2196 | /* new-fangled macintosh (macosx) or Cygwin */ |
| 2197 | #elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2198 | DIR *dirp; |
| 2199 | struct dirent *dp; |
| 2200 | char dirname[MAXPATHLEN + 1]; |
| 2201 | const int dirlen = len - namelen - 1; /* don't want trailing SEP */ |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 2202 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2203 | if (Py_GETENV("PYTHONCASEOK") != NULL) |
| 2204 | return 1; |
Tim Peters | dbe6ebb | 2001-03-01 08:47:29 +0000 | [diff] [blame] | 2205 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2206 | /* Copy the dir component into dirname; substitute "." if empty */ |
| 2207 | if (dirlen <= 0) { |
| 2208 | dirname[0] = '.'; |
| 2209 | dirname[1] = '\0'; |
| 2210 | } |
| 2211 | else { |
| 2212 | assert(dirlen <= MAXPATHLEN); |
| 2213 | memcpy(dirname, buf, dirlen); |
| 2214 | dirname[dirlen] = '\0'; |
| 2215 | } |
| 2216 | /* Open the directory and search the entries for an exact match. */ |
| 2217 | dirp = opendir(dirname); |
| 2218 | if (dirp) { |
| 2219 | char *nameWithExt = buf + len - namelen; |
| 2220 | while ((dp = readdir(dirp)) != NULL) { |
| 2221 | const int thislen = |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 2222 | #ifdef _DIRENT_HAVE_D_NAMELEN |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2223 | dp->d_namlen; |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 2224 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2225 | strlen(dp->d_name); |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 2226 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2227 | if (thislen >= namelen && |
| 2228 | strcmp(dp->d_name, nameWithExt) == 0) { |
| 2229 | (void)closedir(dirp); |
| 2230 | return 1; /* Found */ |
| 2231 | } |
| 2232 | } |
| 2233 | (void)closedir(dirp); |
| 2234 | } |
| 2235 | return 0 ; /* Not found */ |
Tim Peters | 430f5d4 | 2001-03-01 01:30:56 +0000 | [diff] [blame] | 2236 | |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 2237 | /* OS/2 */ |
| 2238 | #elif defined(PYOS_OS2) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2239 | HDIR hdir = 1; |
| 2240 | ULONG srchcnt = 1; |
| 2241 | FILEFINDBUF3 ffbuf; |
| 2242 | APIRET rc; |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 2243 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2244 | if (Py_GETENV("PYTHONCASEOK") != NULL) |
| 2245 | return 1; |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 2246 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2247 | rc = DosFindFirst(buf, |
| 2248 | &hdir, |
| 2249 | FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY, |
| 2250 | &ffbuf, sizeof(ffbuf), |
| 2251 | &srchcnt, |
| 2252 | FIL_STANDARD); |
| 2253 | if (rc != NO_ERROR) |
| 2254 | return 0; |
| 2255 | return strncmp(ffbuf.achName, name, namelen) == 0; |
Andrew MacIntyre | d940054 | 2002-02-26 11:41:34 +0000 | [diff] [blame] | 2256 | |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2257 | /* assuming it's a case-sensitive filesystem, so there's nothing to do! */ |
| 2258 | #else |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2259 | # error "USE_CASE_OK_BYTES is not correctly defined" |
| 2260 | #endif |
| 2261 | } |
| 2262 | #endif |
| 2263 | |
| 2264 | /* |
| 2265 | * Check if a filename case matchs the name case. We've already done a |
| 2266 | * successful stat() or fopen() on buf, so know that there's some match, |
| 2267 | * possibly case-insensitive. |
| 2268 | * |
| 2269 | * case_ok() is to return 1 if there's a case-sensitive match for name, 0 if it |
| 2270 | * the filename doesn't match, or -1 on error. case_ok() is also to return 1 |
| 2271 | * if envar PYTHONCASEOK exists. |
| 2272 | * |
| 2273 | * case_ok() is used to implement case-sensitive import semantics even |
| 2274 | * on platforms with case-insensitive filesystems. It's trivial to implement |
| 2275 | * for case-sensitive filesystems. It's pretty much a cross-platform |
| 2276 | * nightmare for systems with case-insensitive filesystems. |
| 2277 | */ |
| 2278 | |
| 2279 | static int |
| 2280 | case_ok(PyObject *filename, Py_ssize_t prefix_delta, PyObject *name) |
| 2281 | { |
| 2282 | #ifdef MS_WINDOWS |
| 2283 | WIN32_FIND_DATAW data; |
| 2284 | HANDLE h; |
| 2285 | int cmp; |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 2286 | wchar_t *wfilename, *wname; |
Victor Stinner | 8c98189 | 2011-10-11 22:27:13 +0200 | [diff] [blame] | 2287 | Py_ssize_t wname_len; |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2288 | |
| 2289 | if (Py_GETENV("PYTHONCASEOK") != NULL) |
| 2290 | return 1; |
| 2291 | |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 2292 | wfilename = PyUnicode_AsUnicode(filename); |
| 2293 | if (wfilename == NULL) |
| 2294 | return -1; |
| 2295 | |
| 2296 | h = FindFirstFileW(wfilename, &data); |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2297 | if (h == INVALID_HANDLE_VALUE) { |
| 2298 | PyErr_Format(PyExc_NameError, |
| 2299 | "Can't find file for module %R\n(filename %R)", |
| 2300 | name, filename); |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 2301 | return -1; |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2302 | } |
| 2303 | FindClose(h); |
Victor Stinner | beac78b | 2011-10-11 21:55:01 +0200 | [diff] [blame] | 2304 | |
| 2305 | wname = PyUnicode_AsUnicodeAndSize(name, &wname_len); |
| 2306 | if (wname == NULL) |
| 2307 | return -1; |
| 2308 | |
| 2309 | cmp = wcsncmp(data.cFileName, wname, wname_len); |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2310 | return cmp == 0; |
| 2311 | #elif defined(USE_CASE_OK_BYTES) |
| 2312 | int match; |
| 2313 | PyObject *filebytes, *namebytes; |
| 2314 | filebytes = PyUnicode_EncodeFSDefault(filename); |
| 2315 | if (filebytes == NULL) |
| 2316 | return -1; |
| 2317 | namebytes = PyUnicode_EncodeFSDefault(name); |
| 2318 | if (namebytes == NULL) { |
| 2319 | Py_DECREF(filebytes); |
| 2320 | return -1; |
| 2321 | } |
| 2322 | match = case_bytes( |
| 2323 | PyBytes_AS_STRING(filebytes), |
| 2324 | PyBytes_GET_SIZE(filebytes) + prefix_delta, |
Victor Stinner | 1304f2d | 2011-03-20 04:28:55 +0100 | [diff] [blame] | 2325 | PyBytes_GET_SIZE(namebytes), |
| 2326 | PyBytes_AS_STRING(namebytes)); |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2327 | Py_DECREF(filebytes); |
| 2328 | Py_DECREF(namebytes); |
| 2329 | return match; |
| 2330 | #else |
| 2331 | /* assuming it's a case-sensitive filesystem, so there's nothing to do! */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2332 | return 1; |
Guido van Rossum | 0980bd9 | 1998-02-13 17:18:36 +0000 | [diff] [blame] | 2333 | |
Guido van Rossum | 4d1b3b9 | 1998-02-13 23:27:59 +0000 | [diff] [blame] | 2334 | #endif |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 2335 | } |
Guido van Rossum | 4d1b3b9 | 1998-02-13 23:27:59 +0000 | [diff] [blame] | 2336 | |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 2337 | #ifdef HAVE_STAT |
Victor Stinner | 4f4402c | 2010-08-14 14:50:26 +0000 | [diff] [blame] | 2338 | |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 2339 | /* Helper to look for __init__.py or __init__.py[co] in potential package. |
| 2340 | Return 1 if __init__ was found, 0 if not, or -1 on error. */ |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 2341 | static int |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 2342 | find_init_module(PyObject *directory) |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 2343 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2344 | struct stat statbuf; |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 2345 | PyObject *filename; |
| 2346 | int match; |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 2347 | |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 2348 | filename = PyUnicode_FromFormat("%U%c__init__.py", directory, SEP); |
| 2349 | if (filename == NULL) |
| 2350 | return -1; |
| 2351 | if (_Py_stat(filename, &statbuf) == 0) { |
Victor Stinner | cc9564e | 2011-03-20 04:58:29 +0100 | [diff] [blame] | 2352 | /* 3=len(".py") */ |
| 2353 | match = case_ok(filename, -3, initstr); |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2354 | if (match < 0) { |
| 2355 | Py_DECREF(filename); |
| 2356 | return -1; |
| 2357 | } |
| 2358 | if (match) { |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 2359 | Py_DECREF(filename); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2360 | return 1; |
| 2361 | } |
| 2362 | } |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 2363 | Py_DECREF(filename); |
| 2364 | |
| 2365 | filename = PyUnicode_FromFormat("%U%c__init__.py%c", |
| 2366 | directory, SEP, Py_OptimizeFlag ? 'o' : 'c'); |
| 2367 | if (filename == NULL) |
| 2368 | return -1; |
| 2369 | if (_Py_stat(filename, &statbuf) == 0) { |
Victor Stinner | cc9564e | 2011-03-20 04:58:29 +0100 | [diff] [blame] | 2370 | /* 4=len(".pyc") */ |
| 2371 | match = case_ok(filename, -4, initstr); |
Victor Stinner | c9a271c | 2011-03-14 14:34:13 -0400 | [diff] [blame] | 2372 | if (match < 0) { |
| 2373 | Py_DECREF(filename); |
| 2374 | return -1; |
| 2375 | } |
| 2376 | if (match) { |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 2377 | Py_DECREF(filename); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2378 | return 1; |
| 2379 | } |
| 2380 | } |
Victor Stinner | 547a2a6 | 2011-03-20 03:07:28 +0100 | [diff] [blame] | 2381 | Py_DECREF(filename); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2382 | return 0; |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 2383 | } |
Guido van Rossum | 48a680c | 2001-03-02 06:34:14 +0000 | [diff] [blame] | 2384 | |
Guido van Rossum | 197346f | 1997-10-31 18:38:52 +0000 | [diff] [blame] | 2385 | #endif /* HAVE_STAT */ |
| 2386 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2387 | |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2388 | static int init_builtin(PyObject *); /* Forward */ |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2389 | |
Victor Stinner | 44c6c15 | 2010-08-09 00:59:10 +0000 | [diff] [blame] | 2390 | static PyObject* |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2391 | load_builtin(PyObject *name, int type) |
Victor Stinner | 44c6c15 | 2010-08-09 00:59:10 +0000 | [diff] [blame] | 2392 | { |
| 2393 | PyObject *m, *modules; |
| 2394 | int err; |
| 2395 | |
Victor Stinner | 44c6c15 | 2010-08-09 00:59:10 +0000 | [diff] [blame] | 2396 | if (type == C_BUILTIN) |
| 2397 | err = init_builtin(name); |
| 2398 | else |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2399 | err = PyImport_ImportFrozenModuleObject(name); |
Victor Stinner | 44c6c15 | 2010-08-09 00:59:10 +0000 | [diff] [blame] | 2400 | if (err < 0) |
| 2401 | return NULL; |
| 2402 | if (err == 0) { |
| 2403 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2404 | "Purported %s module %R not found", |
| 2405 | type == C_BUILTIN ? "builtin" : "frozen", |
Victor Stinner | 44c6c15 | 2010-08-09 00:59:10 +0000 | [diff] [blame] | 2406 | name); |
| 2407 | return NULL; |
| 2408 | } |
| 2409 | |
| 2410 | modules = PyImport_GetModuleDict(); |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2411 | m = PyDict_GetItem(modules, name); |
Victor Stinner | 44c6c15 | 2010-08-09 00:59:10 +0000 | [diff] [blame] | 2412 | if (m == NULL) { |
| 2413 | PyErr_Format( |
| 2414 | PyExc_ImportError, |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2415 | "%s module %R not properly initialized", |
| 2416 | type == C_BUILTIN ? "builtin" : "frozen", |
Victor Stinner | 44c6c15 | 2010-08-09 00:59:10 +0000 | [diff] [blame] | 2417 | name); |
| 2418 | return NULL; |
| 2419 | } |
| 2420 | Py_INCREF(m); |
| 2421 | return m; |
| 2422 | } |
| 2423 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2424 | /* Load an external module using the default search path and return |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 2425 | its module object WITH INCREMENTED REFERENCE COUNT */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2426 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2427 | static PyObject * |
Victor Stinner | 41c5fec | 2011-03-13 21:46:30 -0400 | [diff] [blame] | 2428 | load_module(PyObject *name, FILE *fp, PyObject *pathname, int type, PyObject *loader) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2429 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2430 | PyObject *m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2431 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2432 | /* First check that there's an open file (if we need one) */ |
| 2433 | switch (type) { |
| 2434 | case PY_SOURCE: |
| 2435 | case PY_COMPILED: |
| 2436 | if (fp == NULL) { |
| 2437 | PyErr_Format(PyExc_ValueError, |
Victor Stinner | 41c5fec | 2011-03-13 21:46:30 -0400 | [diff] [blame] | 2438 | "file object required for import (type code %d)", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2439 | type); |
| 2440 | return NULL; |
| 2441 | } |
| 2442 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2443 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2444 | switch (type) { |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2445 | |
Victor Stinner | 41c5fec | 2011-03-13 21:46:30 -0400 | [diff] [blame] | 2446 | case PY_SOURCE: |
| 2447 | m = load_source_module(name, pathname, fp); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2448 | break; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2449 | |
Victor Stinner | 41c5fec | 2011-03-13 21:46:30 -0400 | [diff] [blame] | 2450 | case PY_COMPILED: |
| 2451 | m = load_compiled_module(name, pathname, fp); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2452 | break; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2453 | |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 2454 | #ifdef HAVE_DYNAMIC_LOADING |
Victor Stinner | 41c5fec | 2011-03-13 21:46:30 -0400 | [diff] [blame] | 2455 | case C_EXTENSION: |
| 2456 | m = _PyImport_LoadDynamicModule(name, pathname, fp); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2457 | break; |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 2458 | #endif |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2459 | |
Victor Stinner | 41c5fec | 2011-03-13 21:46:30 -0400 | [diff] [blame] | 2460 | case PKG_DIRECTORY: |
| 2461 | m = load_package(name, pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2462 | break; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2463 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2464 | case C_BUILTIN: |
Victor Stinner | 41c5fec | 2011-03-13 21:46:30 -0400 | [diff] [blame] | 2465 | case PY_FROZEN: |
| 2466 | m = load_builtin(name, type); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2467 | break; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2468 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2469 | case IMP_HOOK: { |
Martin v. Löwis | bd928fe | 2011-10-14 10:20:37 +0200 | [diff] [blame] | 2470 | _Py_IDENTIFIER(load_module); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2471 | if (loader == NULL) { |
| 2472 | PyErr_SetString(PyExc_ImportError, |
| 2473 | "import hook without loader"); |
| 2474 | return NULL; |
| 2475 | } |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 2476 | m = _PyObject_CallMethodId(loader, &PyId_load_module, "O", name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2477 | break; |
| 2478 | } |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 2479 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2480 | default: |
| 2481 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 98dbba5 | 2011-03-14 15:15:47 -0400 | [diff] [blame] | 2482 | "Don't know how to import %R (type code %d)", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2483 | name, type); |
| 2484 | m = NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2485 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2486 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2487 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2488 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2489 | } |
| 2490 | |
| 2491 | |
| 2492 | /* Initialize a built-in module. |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 2493 | 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] | 2494 | an exception set if the initialization failed. */ |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 2495 | |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 2496 | static int |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2497 | init_builtin(PyObject *name) |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 2498 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2499 | struct _inittab *p; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 2500 | |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2501 | if (_PyImport_FindExtensionObject(name, name) != NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2502 | return 1; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 2503 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2504 | for (p = PyImport_Inittab; p->name != NULL; p++) { |
| 2505 | PyObject *mod; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2506 | if (PyUnicode_CompareWithASCIIString(name, p->name) == 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2507 | if (p->initfunc == NULL) { |
| 2508 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2509 | "Cannot re-init internal module %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2510 | name); |
| 2511 | return -1; |
| 2512 | } |
| 2513 | if (Py_VerboseFlag) |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2514 | PySys_FormatStderr("import %U # builtin\n", name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2515 | mod = (*p->initfunc)(); |
| 2516 | if (mod == 0) |
| 2517 | return -1; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 2518 | if (_PyImport_FixupExtensionObject(mod, name, name) < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2519 | return -1; |
| 2520 | /* FixupExtension has put the module into sys.modules, |
| 2521 | so we can release our own reference. */ |
| 2522 | Py_DECREF(mod); |
| 2523 | return 1; |
| 2524 | } |
| 2525 | } |
| 2526 | return 0; |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 2527 | } |
Guido van Rossum | f56e3db | 1993-04-01 20:59:32 +0000 | [diff] [blame] | 2528 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2529 | |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2530 | /* Frozen modules */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2531 | |
Guido van Rossum | cfd0a22 | 1996-06-17 17:06:34 +0000 | [diff] [blame] | 2532 | static struct _frozen * |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2533 | find_frozen(PyObject *name) |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2534 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2535 | struct _frozen *p; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2536 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2537 | if (name == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2538 | return NULL; |
Benjamin Peterson | d968e27 | 2008-11-05 22:48:33 +0000 | [diff] [blame] | 2539 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2540 | for (p = PyImport_FrozenModules; ; p++) { |
| 2541 | if (p->name == NULL) |
| 2542 | return NULL; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2543 | if (PyUnicode_CompareWithASCIIString(name, p->name) == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2544 | break; |
| 2545 | } |
| 2546 | return p; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2547 | } |
| 2548 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2549 | static PyObject * |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2550 | get_frozen_object(PyObject *name) |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2551 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2552 | struct _frozen *p = find_frozen(name); |
| 2553 | int size; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2554 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2555 | if (p == NULL) { |
| 2556 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2557 | "No such frozen object named %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2558 | name); |
| 2559 | return NULL; |
| 2560 | } |
| 2561 | if (p->code == NULL) { |
| 2562 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2563 | "Excluded frozen object named %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2564 | name); |
| 2565 | return NULL; |
| 2566 | } |
| 2567 | size = p->size; |
| 2568 | if (size < 0) |
| 2569 | size = -size; |
| 2570 | return PyMarshal_ReadObjectFromString((char *)p->code, size); |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2571 | } |
| 2572 | |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 2573 | static PyObject * |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2574 | is_frozen_package(PyObject *name) |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 2575 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2576 | struct _frozen *p = find_frozen(name); |
| 2577 | int size; |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 2578 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2579 | if (p == NULL) { |
| 2580 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2581 | "No such frozen object named %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2582 | name); |
| 2583 | return NULL; |
| 2584 | } |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 2585 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2586 | size = p->size; |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 2587 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2588 | if (size < 0) |
| 2589 | Py_RETURN_TRUE; |
| 2590 | else |
| 2591 | Py_RETURN_FALSE; |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 2592 | } |
| 2593 | |
| 2594 | |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2595 | /* Initialize a frozen module. |
Brett Cannon | 3c2ac44 | 2009-03-08 20:49:47 +0000 | [diff] [blame] | 2596 | Return 1 for success, 0 if the module is not found, and -1 with |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2597 | an exception set if the initialization failed. |
| 2598 | This function is also used from frozenmain.c */ |
Guido van Rossum | 0b34490 | 1995-02-07 15:35:27 +0000 | [diff] [blame] | 2599 | |
| 2600 | int |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2601 | PyImport_ImportFrozenModuleObject(PyObject *name) |
Guido van Rossum | f56e3db | 1993-04-01 20:59:32 +0000 | [diff] [blame] | 2602 | { |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2603 | struct _frozen *p; |
| 2604 | PyObject *co, *m, *path; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2605 | int ispackage; |
| 2606 | int size; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 2607 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2608 | p = find_frozen(name); |
| 2609 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2610 | if (p == NULL) |
| 2611 | return 0; |
| 2612 | if (p->code == NULL) { |
| 2613 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2614 | "Excluded frozen object named %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2615 | name); |
| 2616 | return -1; |
| 2617 | } |
| 2618 | size = p->size; |
| 2619 | ispackage = (size < 0); |
| 2620 | if (ispackage) |
| 2621 | size = -size; |
| 2622 | if (Py_VerboseFlag) |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2623 | PySys_FormatStderr("import %U # frozen%s\n", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2624 | name, ispackage ? " package" : ""); |
| 2625 | co = PyMarshal_ReadObjectFromString((char *)p->code, size); |
| 2626 | if (co == NULL) |
| 2627 | return -1; |
| 2628 | if (!PyCode_Check(co)) { |
| 2629 | PyErr_Format(PyExc_TypeError, |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2630 | "frozen object %R is not a code object", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2631 | name); |
| 2632 | goto err_return; |
| 2633 | } |
| 2634 | if (ispackage) { |
| 2635 | /* Set __path__ to the package name */ |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2636 | PyObject *d, *l; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2637 | int err; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2638 | m = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2639 | if (m == NULL) |
| 2640 | goto err_return; |
| 2641 | d = PyModule_GetDict(m); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2642 | l = PyList_New(1); |
| 2643 | if (l == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2644 | goto err_return; |
| 2645 | } |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2646 | Py_INCREF(name); |
| 2647 | PyList_SET_ITEM(l, 0, name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2648 | err = PyDict_SetItemString(d, "__path__", l); |
| 2649 | Py_DECREF(l); |
| 2650 | if (err != 0) |
| 2651 | goto err_return; |
| 2652 | } |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2653 | path = PyUnicode_FromString("<frozen>"); |
| 2654 | if (path == NULL) |
| 2655 | goto err_return; |
| 2656 | m = PyImport_ExecCodeModuleObject(name, co, path, NULL); |
| 2657 | Py_DECREF(path); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2658 | if (m == NULL) |
| 2659 | goto err_return; |
| 2660 | Py_DECREF(co); |
| 2661 | Py_DECREF(m); |
| 2662 | return 1; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2663 | err_return: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2664 | Py_DECREF(co); |
| 2665 | return -1; |
Guido van Rossum | f56e3db | 1993-04-01 20:59:32 +0000 | [diff] [blame] | 2666 | } |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 2667 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 2668 | int |
| 2669 | PyImport_ImportFrozenModule(char *name) |
| 2670 | { |
| 2671 | PyObject *nameobj; |
| 2672 | int ret; |
| 2673 | nameobj = PyUnicode_InternFromString(name); |
| 2674 | if (nameobj == NULL) |
| 2675 | return -1; |
| 2676 | ret = PyImport_ImportFrozenModuleObject(nameobj); |
| 2677 | Py_DECREF(nameobj); |
| 2678 | return ret; |
| 2679 | } |
| 2680 | |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 2681 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2682 | /* Import a module, either built-in, frozen, or external, and return |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 2683 | its module object WITH INCREMENTED REFERENCE COUNT */ |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 2684 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2685 | PyObject * |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 2686 | PyImport_ImportModule(const char *name) |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 2687 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2688 | PyObject *pname; |
| 2689 | PyObject *result; |
Marc-André Lemburg | 3c61c35 | 2001-02-09 19:40:15 +0000 | [diff] [blame] | 2690 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2691 | pname = PyUnicode_FromString(name); |
| 2692 | if (pname == NULL) |
| 2693 | return NULL; |
| 2694 | result = PyImport_Import(pname); |
| 2695 | Py_DECREF(pname); |
| 2696 | return result; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2697 | } |
| 2698 | |
Christian Heimes | 072c0f1 | 2008-01-03 23:01:04 +0000 | [diff] [blame] | 2699 | /* Import a module without blocking |
| 2700 | * |
| 2701 | * At first it tries to fetch the module from sys.modules. If the module was |
| 2702 | * never loaded before it loads it with PyImport_ImportModule() unless another |
| 2703 | * thread holds the import lock. In the latter case the function raises an |
| 2704 | * ImportError instead of blocking. |
| 2705 | * |
| 2706 | * Returns the module object with incremented ref count. |
| 2707 | */ |
| 2708 | PyObject * |
| 2709 | PyImport_ImportModuleNoBlock(const char *name) |
| 2710 | { |
Victor Stinner | 2e5f11a | 2011-03-13 21:57:27 -0400 | [diff] [blame] | 2711 | PyObject *nameobj, *modules, *result; |
Victor Stinner | 0af0306 | 2011-09-02 00:11:43 +0200 | [diff] [blame] | 2712 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2713 | long me; |
Victor Stinner | 0af0306 | 2011-09-02 00:11:43 +0200 | [diff] [blame] | 2714 | #endif |
Christian Heimes | 072c0f1 | 2008-01-03 23:01:04 +0000 | [diff] [blame] | 2715 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2716 | /* Try to get the module from sys.modules[name] */ |
| 2717 | modules = PyImport_GetModuleDict(); |
| 2718 | if (modules == NULL) |
| 2719 | return NULL; |
Christian Heimes | 072c0f1 | 2008-01-03 23:01:04 +0000 | [diff] [blame] | 2720 | |
Victor Stinner | 2e5f11a | 2011-03-13 21:57:27 -0400 | [diff] [blame] | 2721 | nameobj = PyUnicode_FromString(name); |
| 2722 | if (nameobj == NULL) |
| 2723 | return NULL; |
| 2724 | result = PyDict_GetItem(modules, nameobj); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2725 | if (result != NULL) { |
Victor Stinner | 2e5f11a | 2011-03-13 21:57:27 -0400 | [diff] [blame] | 2726 | Py_DECREF(nameobj); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2727 | Py_INCREF(result); |
| 2728 | return result; |
| 2729 | } |
Victor Stinner | 2e5f11a | 2011-03-13 21:57:27 -0400 | [diff] [blame] | 2730 | PyErr_Clear(); |
Benjamin Peterson | 3e4f055 | 2008-09-02 00:31:15 +0000 | [diff] [blame] | 2731 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2732 | /* check the import lock |
| 2733 | * me might be -1 but I ignore the error here, the lock function |
| 2734 | * takes care of the problem */ |
| 2735 | me = PyThread_get_thread_ident(); |
| 2736 | if (import_lock_thread == -1 || import_lock_thread == me) { |
| 2737 | /* no thread or me is holding the lock */ |
Victor Stinner | 2e5f11a | 2011-03-13 21:57:27 -0400 | [diff] [blame] | 2738 | result = PyImport_Import(nameobj); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2739 | } |
| 2740 | else { |
| 2741 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | c24c810 | 2011-03-13 22:38:06 -0400 | [diff] [blame] | 2742 | "Failed to import %R because the import lock" |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2743 | "is held by another thread.", |
Victor Stinner | 2e5f11a | 2011-03-13 21:57:27 -0400 | [diff] [blame] | 2744 | nameobj); |
| 2745 | result = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2746 | } |
Benjamin Peterson | 3e4f055 | 2008-09-02 00:31:15 +0000 | [diff] [blame] | 2747 | #else |
Victor Stinner | 2e5f11a | 2011-03-13 21:57:27 -0400 | [diff] [blame] | 2748 | result = PyImport_Import(nameobj); |
Benjamin Peterson | 3e4f055 | 2008-09-02 00:31:15 +0000 | [diff] [blame] | 2749 | #endif |
Victor Stinner | 2e5f11a | 2011-03-13 21:57:27 -0400 | [diff] [blame] | 2750 | Py_DECREF(nameobj); |
| 2751 | return result; |
Christian Heimes | 072c0f1 | 2008-01-03 23:01:04 +0000 | [diff] [blame] | 2752 | } |
| 2753 | |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2754 | /* Forward declarations for helper routines */ |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2755 | static PyObject *get_parent(PyObject *globals, |
| 2756 | PyObject **p_name, |
| 2757 | int level); |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 2758 | static PyObject *load_next(PyObject *mod, PyObject *altmod, |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2759 | PyObject *inputname, PyObject **p_outputname, |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2760 | PyObject **p_prefix); |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2761 | static int mark_miss(PyObject *name); |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 2762 | static int ensure_fromlist(PyObject *mod, PyObject *fromlist, |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2763 | PyObject *buf, int recursive); |
| 2764 | static PyObject * import_submodule(PyObject *mod, PyObject *name, |
| 2765 | PyObject *fullname); |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2766 | |
| 2767 | /* The Magnum Opus of dotted-name import :-) */ |
| 2768 | |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 2769 | static PyObject * |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2770 | import_module_level(PyObject *name, PyObject *globals, PyObject *locals, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2771 | PyObject *fromlist, int level) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2772 | { |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2773 | PyObject *parent, *next, *inputname, *outputname; |
| 2774 | PyObject *head = NULL; |
| 2775 | PyObject *tail = NULL; |
| 2776 | PyObject *prefix = NULL; |
| 2777 | PyObject *result = NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2778 | Py_ssize_t sep, altsep; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2779 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2780 | if (PyUnicode_READY(name)) |
| 2781 | return NULL; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2782 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2783 | sep = PyUnicode_FindChar(name, SEP, 0, PyUnicode_GET_LENGTH(name), 1); |
| 2784 | if (sep == -2) |
| 2785 | return NULL; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2786 | #ifdef ALTSEP |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2787 | altsep = PyUnicode_FindChar(name, ALTSEP, 0, PyUnicode_GET_LENGTH(name), 1); |
| 2788 | if (altsep == -2) |
| 2789 | return NULL; |
| 2790 | #else |
| 2791 | altsep = -1; |
Christian Heimes | 454f37b | 2008-01-10 00:10:02 +0000 | [diff] [blame] | 2792 | #endif |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2793 | if (sep != -1 || altsep != -1) |
| 2794 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2795 | PyErr_SetString(PyExc_ImportError, |
| 2796 | "Import by filename is not supported."); |
| 2797 | return NULL; |
| 2798 | } |
Christian Heimes | 454f37b | 2008-01-10 00:10:02 +0000 | [diff] [blame] | 2799 | |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2800 | parent = get_parent(globals, &prefix, level); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2801 | if (parent == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2802 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2803 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2804 | |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2805 | if (PyUnicode_READY(prefix)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2806 | return NULL; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2807 | |
| 2808 | head = load_next(parent, level < 0 ? Py_None : parent, name, &outputname, |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2809 | &prefix); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2810 | if (head == NULL) |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2811 | goto out; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2812 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2813 | tail = head; |
| 2814 | Py_INCREF(tail); |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2815 | |
| 2816 | if (outputname != NULL) { |
| 2817 | while (1) { |
| 2818 | inputname = outputname; |
| 2819 | next = load_next(tail, tail, inputname, &outputname, |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2820 | &prefix); |
| 2821 | Py_CLEAR(tail); |
| 2822 | Py_CLEAR(inputname); |
| 2823 | if (next == NULL) |
| 2824 | goto out; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2825 | tail = next; |
| 2826 | |
| 2827 | if (outputname == NULL) { |
| 2828 | break; |
| 2829 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2830 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2831 | } |
| 2832 | if (tail == Py_None) { |
| 2833 | /* If tail is Py_None, both get_parent and load_next found |
| 2834 | an empty module name: someone called __import__("") or |
| 2835 | doctored faulty bytecode */ |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2836 | PyErr_SetString(PyExc_ValueError, "Empty module name"); |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2837 | goto out; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2838 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2839 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2840 | if (fromlist != NULL) { |
| 2841 | if (fromlist == Py_None || !PyObject_IsTrue(fromlist)) |
| 2842 | fromlist = NULL; |
| 2843 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2844 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2845 | if (fromlist == NULL) { |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2846 | result = head; |
| 2847 | Py_INCREF(result); |
| 2848 | goto out; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2849 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2850 | |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2851 | if (!ensure_fromlist(tail, fromlist, prefix, 0)) |
| 2852 | goto out; |
Victor Stinner | 1f79517 | 2011-11-17 00:45:54 +0100 | [diff] [blame] | 2853 | |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 2854 | result = tail; |
| 2855 | Py_INCREF(result); |
| 2856 | out: |
| 2857 | Py_XDECREF(head); |
| 2858 | Py_XDECREF(tail); |
| 2859 | Py_XDECREF(prefix); |
| 2860 | return result; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2861 | } |
| 2862 | |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2863 | PyObject * |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 2864 | PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals, |
| 2865 | PyObject *locals, PyObject *fromlist, |
| 2866 | int level) |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2867 | { |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 2868 | PyObject *mod; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2869 | _PyImport_AcquireLock(); |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 2870 | mod = import_module_level(name, globals, locals, fromlist, level); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2871 | if (_PyImport_ReleaseLock() < 0) { |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 2872 | Py_XDECREF(mod); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2873 | PyErr_SetString(PyExc_RuntimeError, |
| 2874 | "not holding the import lock"); |
| 2875 | return NULL; |
| 2876 | } |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 2877 | return mod; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 2878 | } |
| 2879 | |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 2880 | PyObject * |
Benjamin Peterson | 04778a8 | 2011-05-25 09:29:00 -0500 | [diff] [blame] | 2881 | PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject *locals, |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 2882 | PyObject *fromlist, int level) |
| 2883 | { |
| 2884 | PyObject *nameobj, *mod; |
| 2885 | nameobj = PyUnicode_FromString(name); |
| 2886 | if (nameobj == NULL) |
| 2887 | return NULL; |
| 2888 | mod = PyImport_ImportModuleLevelObject(nameobj, globals, locals, |
| 2889 | fromlist, level); |
| 2890 | Py_DECREF(nameobj); |
| 2891 | return mod; |
| 2892 | } |
| 2893 | |
| 2894 | |
Fred Drake | 8759090 | 2004-05-28 20:21:36 +0000 | [diff] [blame] | 2895 | /* Return the package that an import is being performed in. If globals comes |
| 2896 | from the module foo.bar.bat (not itself a package), this returns the |
| 2897 | sys.modules entry for foo.bar. If globals is from a package's __init__.py, |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 2898 | 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] | 2899 | |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2900 | The name of the returned package is returned in *p_name. |
Fred Drake | 8759090 | 2004-05-28 20:21:36 +0000 | [diff] [blame] | 2901 | |
| 2902 | If globals doesn't come from a package or a module in a package, or a |
| 2903 | corresponding entry is not found in sys.modules, Py_None is returned. |
| 2904 | */ |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2905 | static PyObject * |
Victor Stinner | 9599de5 | 2011-03-13 22:38:38 -0400 | [diff] [blame] | 2906 | get_parent(PyObject *globals, PyObject **p_name, int level) |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2907 | { |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2908 | PyObject *nameobj; |
| 2909 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2910 | static PyObject *namestr = NULL; |
| 2911 | static PyObject *pathstr = NULL; |
| 2912 | static PyObject *pkgstr = NULL; |
| 2913 | PyObject *pkgname, *modname, *modpath, *modules, *parent; |
| 2914 | int orig_level = level; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2915 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2916 | if (globals == NULL || !PyDict_Check(globals) || !level) |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2917 | goto return_none; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2918 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2919 | if (namestr == NULL) { |
| 2920 | namestr = PyUnicode_InternFromString("__name__"); |
| 2921 | if (namestr == NULL) |
| 2922 | return NULL; |
| 2923 | } |
| 2924 | if (pathstr == NULL) { |
| 2925 | pathstr = PyUnicode_InternFromString("__path__"); |
| 2926 | if (pathstr == NULL) |
| 2927 | return NULL; |
| 2928 | } |
| 2929 | if (pkgstr == NULL) { |
| 2930 | pkgstr = PyUnicode_InternFromString("__package__"); |
| 2931 | if (pkgstr == NULL) |
| 2932 | return NULL; |
| 2933 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2934 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2935 | pkgname = PyDict_GetItem(globals, pkgstr); |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 2936 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2937 | if ((pkgname != NULL) && (pkgname != Py_None)) { |
| 2938 | /* __package__ is set, so use it */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2939 | if (!PyUnicode_Check(pkgname)) { |
| 2940 | PyErr_SetString(PyExc_ValueError, |
| 2941 | "__package__ set to non-string"); |
| 2942 | return NULL; |
| 2943 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2944 | if (PyUnicode_GET_LENGTH(pkgname) == 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2945 | if (level > 0) { |
| 2946 | PyErr_SetString(PyExc_ValueError, |
| 2947 | "Attempted relative import in non-package"); |
| 2948 | return NULL; |
| 2949 | } |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2950 | goto return_none; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2951 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2952 | Py_INCREF(pkgname); |
| 2953 | nameobj = pkgname; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2954 | } else { |
| 2955 | /* __package__ not set, so figure it out and set it */ |
| 2956 | modname = PyDict_GetItem(globals, namestr); |
| 2957 | if (modname == NULL || !PyUnicode_Check(modname)) |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2958 | goto return_none; |
Brett Cannon | 9a5b25a | 2010-03-01 02:09:17 +0000 | [diff] [blame] | 2959 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2960 | modpath = PyDict_GetItem(globals, pathstr); |
| 2961 | if (modpath != NULL) { |
| 2962 | /* __path__ is set, so modname is already the package name */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2963 | int error; |
Alexandre Vassalotti | a85998a | 2008-05-03 18:24:43 +0000 | [diff] [blame] | 2964 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2965 | error = PyDict_SetItem(globals, pkgstr, modname); |
| 2966 | if (error) { |
| 2967 | PyErr_SetString(PyExc_ValueError, |
| 2968 | "Could not set __package__"); |
| 2969 | return NULL; |
| 2970 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2971 | Py_INCREF(modname); |
| 2972 | nameobj = modname; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2973 | } else { |
| 2974 | /* Normal module, so work out the package name if any */ |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2975 | Py_ssize_t len; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2976 | len = PyUnicode_FindChar(modname, '.', |
| 2977 | 0, PyUnicode_GET_LENGTH(modname), -1); |
| 2978 | if (len == -2) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2979 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2980 | if (len < 0) { |
| 2981 | if (level > 0) { |
| 2982 | PyErr_SetString(PyExc_ValueError, |
| 2983 | "Attempted relative import in non-package"); |
| 2984 | return NULL; |
| 2985 | } |
| 2986 | if (PyDict_SetItem(globals, pkgstr, Py_None)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2987 | PyErr_SetString(PyExc_ValueError, |
| 2988 | "Could not set __package__"); |
| 2989 | return NULL; |
| 2990 | } |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 2991 | goto return_none; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2992 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2993 | pkgname = PyUnicode_Substring(modname, 0, len); |
| 2994 | if (pkgname == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2995 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2996 | if (PyDict_SetItem(globals, pkgstr, pkgname)) { |
| 2997 | Py_DECREF(pkgname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2998 | PyErr_SetString(PyExc_ValueError, |
| 2999 | "Could not set __package__"); |
| 3000 | return NULL; |
| 3001 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3002 | nameobj = pkgname; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3003 | } |
| 3004 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3005 | if (level > 1) { |
| 3006 | Py_ssize_t dot, end = PyUnicode_GET_LENGTH(nameobj); |
| 3007 | PyObject *newname; |
| 3008 | while (--level > 0) { |
| 3009 | dot = PyUnicode_FindChar(nameobj, '.', 0, end, -1); |
| 3010 | if (dot == -2) { |
| 3011 | Py_DECREF(nameobj); |
| 3012 | return NULL; |
| 3013 | } |
| 3014 | if (dot < 0) { |
| 3015 | Py_DECREF(nameobj); |
| 3016 | PyErr_SetString(PyExc_ValueError, |
| 3017 | "Attempted relative import beyond " |
| 3018 | "toplevel package"); |
| 3019 | return NULL; |
| 3020 | } |
| 3021 | end = dot; |
| 3022 | } |
| 3023 | newname = PyUnicode_Substring(nameobj, 0, end); |
| 3024 | Py_DECREF(nameobj); |
| 3025 | if (newname == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3026 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3027 | nameobj = newname; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3028 | } |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3029 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3030 | modules = PyImport_GetModuleDict(); |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3031 | parent = PyDict_GetItem(modules, nameobj); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3032 | if (parent == NULL) { |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3033 | int err; |
| 3034 | |
| 3035 | if (orig_level >= 1) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3036 | PyErr_Format(PyExc_SystemError, |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3037 | "Parent module %R not loaded, " |
| 3038 | "cannot perform relative import", nameobj); |
| 3039 | Py_DECREF(nameobj); |
| 3040 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3041 | } |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3042 | |
| 3043 | err = PyErr_WarnFormat( |
| 3044 | PyExc_RuntimeWarning, 1, |
| 3045 | "Parent module %R not found while handling absolute import", |
| 3046 | nameobj); |
| 3047 | Py_DECREF(nameobj); |
| 3048 | if (err) |
| 3049 | return NULL; |
| 3050 | |
| 3051 | goto return_none; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3052 | } |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3053 | *p_name = nameobj; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3054 | return parent; |
| 3055 | /* We expect, but can't guarantee, if parent != None, that: |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3056 | - parent.__name__ == name |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3057 | - parent.__dict__ is globals |
| 3058 | If this is violated... Who cares? */ |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3059 | |
| 3060 | return_none: |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3061 | nameobj = PyUnicode_New(0, 0); |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3062 | if (nameobj == NULL) |
| 3063 | return NULL; |
| 3064 | *p_name = nameobj; |
| 3065 | return Py_None; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3066 | } |
| 3067 | |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3068 | /* altmod is either None or same as mod */ |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3069 | static PyObject * |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3070 | load_next(PyObject *mod, PyObject *altmod, |
| 3071 | PyObject *inputname, PyObject **p_outputname, |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3072 | PyObject **p_prefix) |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3073 | { |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3074 | Py_ssize_t dot; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3075 | Py_ssize_t len; |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3076 | PyObject *fullname, *name = NULL, *result; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3077 | |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3078 | *p_outputname = NULL; |
| 3079 | |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3080 | len = PyUnicode_GET_LENGTH(inputname); |
| 3081 | if (len == 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3082 | /* completely empty module name should only happen in |
| 3083 | 'from . import' (or '__import__("")')*/ |
| 3084 | Py_INCREF(mod); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3085 | return mod; |
| 3086 | } |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 3087 | |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3088 | |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3089 | dot = PyUnicode_FindChar(inputname, '.', 0, len, 1); |
| 3090 | if (dot >= 0) { |
| 3091 | len = dot; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3092 | if (len == 0) { |
| 3093 | PyErr_SetString(PyExc_ValueError, |
| 3094 | "Empty module name"); |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 3095 | goto error; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3096 | } |
| 3097 | } |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3098 | |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3099 | /* name = inputname[:len] */ |
| 3100 | name = PyUnicode_Substring(inputname, 0, len); |
| 3101 | if (name == NULL) |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 3102 | goto error; |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3103 | |
| 3104 | if (PyUnicode_GET_LENGTH(*p_prefix)) { |
| 3105 | /* fullname = prefix + "." + name */ |
| 3106 | fullname = PyUnicode_FromFormat("%U.%U", *p_prefix, name); |
| 3107 | if (fullname == NULL) |
| 3108 | goto error; |
| 3109 | } |
| 3110 | else { |
| 3111 | fullname = name; |
| 3112 | Py_INCREF(fullname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3113 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3114 | |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3115 | result = import_submodule(mod, name, fullname); |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3116 | Py_DECREF(*p_prefix); |
| 3117 | /* Transfer reference. */ |
| 3118 | *p_prefix = fullname; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3119 | if (result == Py_None && altmod != mod) { |
| 3120 | Py_DECREF(result); |
| 3121 | /* Here, altmod must be None and mod must not be None */ |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3122 | result = import_submodule(altmod, name, name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3123 | if (result != NULL && result != Py_None) { |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3124 | if (mark_miss(*p_prefix) != 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3125 | Py_DECREF(result); |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 3126 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3127 | } |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3128 | Py_DECREF(*p_prefix); |
| 3129 | *p_prefix = name; |
| 3130 | Py_INCREF(*p_prefix); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3131 | } |
| 3132 | } |
| 3133 | if (result == NULL) |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 3134 | goto error; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3135 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3136 | if (result == Py_None) { |
| 3137 | Py_DECREF(result); |
| 3138 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3139 | "No module named %R", inputname); |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 3140 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3141 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3142 | |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3143 | if (dot >= 0) { |
| 3144 | *p_outputname = PyUnicode_Substring(inputname, dot+1, |
| 3145 | PyUnicode_GET_LENGTH(inputname)); |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3146 | if (*p_outputname == NULL) { |
| 3147 | Py_DECREF(result); |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 3148 | goto error; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3149 | } |
| 3150 | } |
| 3151 | |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3152 | Py_DECREF(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3153 | return result; |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 3154 | |
| 3155 | error: |
Martin v. Löwis | f45dee9 | 2011-10-30 23:50:02 +0100 | [diff] [blame] | 3156 | Py_XDECREF(name); |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 3157 | return NULL; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3158 | } |
| 3159 | |
| 3160 | static int |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3161 | mark_miss(PyObject *name) |
Guido van Rossum | f5f5fdb | 1997-09-06 20:29:52 +0000 | [diff] [blame] | 3162 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3163 | PyObject *modules = PyImport_GetModuleDict(); |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3164 | return PyDict_SetItem(modules, name, Py_None); |
Guido van Rossum | f5f5fdb | 1997-09-06 20:29:52 +0000 | [diff] [blame] | 3165 | } |
| 3166 | |
| 3167 | static int |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3168 | ensure_fromlist(PyObject *mod, PyObject *fromlist, PyObject *name, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3169 | int recursive) |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3170 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3171 | int i; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3172 | PyObject *fullname; |
| 3173 | Py_ssize_t fromlist_len; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3174 | |
Martin v. Löwis | 1ee1b6f | 2011-10-10 18:11:30 +0200 | [diff] [blame] | 3175 | if (!_PyObject_HasAttrId(mod, &PyId___path__)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3176 | return 1; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3177 | |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3178 | fromlist_len = PySequence_Size(fromlist); |
| 3179 | |
| 3180 | for (i = 0; i < fromlist_len; i++) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3181 | PyObject *item = PySequence_GetItem(fromlist, i); |
| 3182 | int hasit; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3183 | if (item == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3184 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3185 | if (!PyUnicode_Check(item)) { |
| 3186 | PyErr_SetString(PyExc_TypeError, |
| 3187 | "Item in ``from list'' not a string"); |
| 3188 | Py_DECREF(item); |
| 3189 | return 0; |
| 3190 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3191 | if (PyUnicode_READ_CHAR(item, 0) == '*') { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3192 | PyObject *all; |
Martin v. Löwis | bd928fe | 2011-10-14 10:20:37 +0200 | [diff] [blame] | 3193 | _Py_IDENTIFIER(__all__); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3194 | Py_DECREF(item); |
| 3195 | /* See if the package defines __all__ */ |
| 3196 | if (recursive) |
| 3197 | continue; /* Avoid endless recursion */ |
Martin v. Löwis | 1ee1b6f | 2011-10-10 18:11:30 +0200 | [diff] [blame] | 3198 | all = _PyObject_GetAttrId(mod, &PyId___all__); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3199 | if (all == NULL) |
| 3200 | PyErr_Clear(); |
| 3201 | else { |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3202 | int ret = ensure_fromlist(mod, all, name, 1); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3203 | Py_DECREF(all); |
| 3204 | if (!ret) |
| 3205 | return 0; |
| 3206 | } |
| 3207 | continue; |
| 3208 | } |
| 3209 | hasit = PyObject_HasAttr(mod, item); |
| 3210 | if (!hasit) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3211 | PyObject *submod; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3212 | fullname = PyUnicode_FromFormat("%U.%U", name, item); |
| 3213 | if (fullname != NULL) { |
| 3214 | submod = import_submodule(mod, item, fullname); |
| 3215 | Py_DECREF(fullname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3216 | } |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3217 | else |
| 3218 | submod = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3219 | Py_XDECREF(submod); |
| 3220 | if (submod == NULL) { |
| 3221 | Py_DECREF(item); |
| 3222 | return 0; |
| 3223 | } |
| 3224 | } |
| 3225 | Py_DECREF(item); |
| 3226 | } |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3227 | |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3228 | return 1; |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3229 | } |
| 3230 | |
Neil Schemenauer | 00b0966 | 2003-06-16 21:03:07 +0000 | [diff] [blame] | 3231 | static int |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3232 | add_submodule(PyObject *mod, PyObject *submod, PyObject *fullname, |
| 3233 | PyObject *subname, PyObject *modules) |
Neil Schemenauer | 00b0966 | 2003-06-16 21:03:07 +0000 | [diff] [blame] | 3234 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3235 | if (mod == Py_None) |
| 3236 | return 1; |
| 3237 | /* Irrespective of the success of this load, make a |
| 3238 | reference to it in the parent package module. A copy gets |
| 3239 | saved in the modules dictionary under the full name, so get a |
| 3240 | reference from there, if need be. (The exception is when the |
| 3241 | load failed with a SyntaxError -- then there's no trace in |
| 3242 | sys.modules. In that case, of course, do nothing extra.) */ |
| 3243 | if (submod == NULL) { |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3244 | submod = PyDict_GetItem(modules, fullname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3245 | if (submod == NULL) |
| 3246 | return 1; |
| 3247 | } |
| 3248 | if (PyModule_Check(mod)) { |
| 3249 | /* We can't use setattr here since it can give a |
| 3250 | * spurious warning if the submodule name shadows a |
| 3251 | * builtin name */ |
| 3252 | PyObject *dict = PyModule_GetDict(mod); |
| 3253 | if (!dict) |
| 3254 | return 0; |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3255 | if (PyDict_SetItem(dict, subname, submod) < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3256 | return 0; |
| 3257 | } |
| 3258 | else { |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3259 | if (PyObject_SetAttr(mod, subname, submod) < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3260 | return 0; |
| 3261 | } |
| 3262 | return 1; |
Neil Schemenauer | 00b0966 | 2003-06-16 21:03:07 +0000 | [diff] [blame] | 3263 | } |
| 3264 | |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3265 | static PyObject * |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3266 | import_submodule(PyObject *mod, PyObject *subname, PyObject *fullname) |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3267 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3268 | PyObject *modules = PyImport_GetModuleDict(); |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 3269 | PyObject *m = NULL, *bufobj, *path_list, *loader; |
Victor Stinner | 9599de5 | 2011-03-13 22:38:38 -0400 | [diff] [blame] | 3270 | struct filedescr *fdp; |
| 3271 | FILE *fp; |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 3272 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3273 | /* Require: |
| 3274 | if mod == None: subname == fullname |
| 3275 | else: mod.__name__ + "." + subname == fullname |
| 3276 | */ |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 3277 | |
Victor Stinner | 974389d | 2011-03-15 09:33:57 +0100 | [diff] [blame] | 3278 | if ((m = PyDict_GetItem(modules, fullname)) != NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3279 | Py_INCREF(m); |
Victor Stinner | 9599de5 | 2011-03-13 22:38:38 -0400 | [diff] [blame] | 3280 | return m; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3281 | } |
Victor Stinner | 9599de5 | 2011-03-13 22:38:38 -0400 | [diff] [blame] | 3282 | |
| 3283 | if (mod == Py_None) |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 3284 | path_list = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3285 | else { |
Martin v. Löwis | 1ee1b6f | 2011-10-10 18:11:30 +0200 | [diff] [blame] | 3286 | path_list = _PyObject_GetAttrId(mod, &PyId___path__); |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 3287 | if (path_list == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3288 | PyErr_Clear(); |
| 3289 | Py_INCREF(Py_None); |
| 3290 | return Py_None; |
| 3291 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3292 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3293 | |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 3294 | fdp = find_module(fullname, subname, path_list, |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 3295 | &bufobj, &fp, &loader); |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 3296 | Py_XDECREF(path_list); |
Victor Stinner | 9599de5 | 2011-03-13 22:38:38 -0400 | [diff] [blame] | 3297 | if (fdp == NULL) { |
| 3298 | if (!PyErr_ExceptionMatches(PyExc_ImportError)) |
| 3299 | return NULL; |
| 3300 | PyErr_Clear(); |
| 3301 | Py_INCREF(Py_None); |
| 3302 | return Py_None; |
| 3303 | } |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 3304 | m = load_module(fullname, fp, bufobj, fdp->type, loader); |
| 3305 | Py_XDECREF(bufobj); |
Victor Stinner | 9599de5 | 2011-03-13 22:38:38 -0400 | [diff] [blame] | 3306 | Py_XDECREF(loader); |
| 3307 | if (fp) |
| 3308 | fclose(fp); |
| 3309 | if (m == NULL) |
| 3310 | return NULL; |
| 3311 | if (!add_submodule(mod, m, fullname, subname, modules)) { |
| 3312 | Py_XDECREF(m); |
| 3313 | return NULL; |
| 3314 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3315 | return m; |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 3316 | } |
| 3317 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3318 | |
| 3319 | /* Re-import a module of any kind and return its module object, WITH |
| 3320 | INCREMENTED REFERENCE COUNT */ |
| 3321 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3322 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3323 | PyImport_ReloadModule(PyObject *m) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3324 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3325 | PyInterpreterState *interp = PyThreadState_Get()->interp; |
| 3326 | PyObject *modules_reloading = interp->modules_reloading; |
| 3327 | PyObject *modules = PyImport_GetModuleDict(); |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 3328 | PyObject *path_list = NULL, *loader = NULL, *existing_m = NULL; |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3329 | PyObject *name, *bufobj, *subname; |
| 3330 | Py_ssize_t subname_start; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3331 | struct filedescr *fdp; |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3332 | FILE *fp = NULL; |
| 3333 | PyObject *newm = NULL; |
Brett Cannon | 9a5b25a | 2010-03-01 02:09:17 +0000 | [diff] [blame] | 3334 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3335 | if (modules_reloading == NULL) { |
| 3336 | Py_FatalError("PyImport_ReloadModule: " |
| 3337 | "no modules_reloading dictionary!"); |
| 3338 | return NULL; |
| 3339 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3340 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3341 | if (m == NULL || !PyModule_Check(m)) { |
| 3342 | PyErr_SetString(PyExc_TypeError, |
| 3343 | "reload() argument must be module"); |
| 3344 | return NULL; |
| 3345 | } |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3346 | name = PyModule_GetNameObject(m); |
| 3347 | if (name == NULL || PyUnicode_READY(name) == -1) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3348 | return NULL; |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3349 | if (m != PyDict_GetItem(modules, name)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3350 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 98dbba5 | 2011-03-14 15:15:47 -0400 | [diff] [blame] | 3351 | "reload(): module %R not in sys.modules", |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3352 | name); |
| 3353 | Py_DECREF(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3354 | return NULL; |
| 3355 | } |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3356 | existing_m = PyDict_GetItem(modules_reloading, name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3357 | if (existing_m != NULL) { |
| 3358 | /* Due to a recursive reload, this module is already |
| 3359 | being reloaded. */ |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3360 | Py_DECREF(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3361 | Py_INCREF(existing_m); |
| 3362 | return existing_m; |
| 3363 | } |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3364 | if (PyDict_SetItem(modules_reloading, name, m) < 0) { |
| 3365 | Py_DECREF(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3366 | return NULL; |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3367 | } |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 3368 | |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3369 | subname_start = PyUnicode_FindChar(name, '.', 0, |
| 3370 | PyUnicode_GET_LENGTH(name), -1); |
| 3371 | if (subname_start == -1) { |
| 3372 | Py_INCREF(name); |
| 3373 | subname = name; |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3374 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3375 | else { |
| 3376 | PyObject *parentname, *parent; |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3377 | Py_ssize_t len; |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3378 | parentname = PyUnicode_Substring(name, 0, subname_start); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3379 | if (parentname == NULL) { |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3380 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3381 | } |
| 3382 | parent = PyDict_GetItem(modules, parentname); |
| 3383 | if (parent == NULL) { |
| 3384 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 98dbba5 | 2011-03-14 15:15:47 -0400 | [diff] [blame] | 3385 | "reload(): parent %R not in sys.modules", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3386 | parentname); |
| 3387 | Py_DECREF(parentname); |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3388 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3389 | } |
| 3390 | Py_DECREF(parentname); |
Martin v. Löwis | 1ee1b6f | 2011-10-10 18:11:30 +0200 | [diff] [blame] | 3391 | path_list = _PyObject_GetAttrId(parent, &PyId___path__); |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 3392 | if (path_list == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3393 | PyErr_Clear(); |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3394 | subname_start++; |
| 3395 | len = PyUnicode_GET_LENGTH(name) - (subname_start + 1); |
| 3396 | subname = PyUnicode_Substring(name, subname_start, len); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3397 | } |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3398 | if (subname == NULL) |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3399 | goto error; |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3400 | fdp = find_module(name, subname, path_list, |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 3401 | &bufobj, &fp, &loader); |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3402 | Py_DECREF(subname); |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 3403 | Py_XDECREF(path_list); |
Phillip J. Eby | 7ec642a | 2004-09-23 04:37:36 +0000 | [diff] [blame] | 3404 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3405 | if (fdp == NULL) { |
| 3406 | Py_XDECREF(loader); |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3407 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3408 | } |
Phillip J. Eby | 7ec642a | 2004-09-23 04:37:36 +0000 | [diff] [blame] | 3409 | |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3410 | newm = load_module(name, fp, bufobj, fdp->type, loader); |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 3411 | Py_XDECREF(bufobj); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3412 | Py_XDECREF(loader); |
Phillip J. Eby | 7ec642a | 2004-09-23 04:37:36 +0000 | [diff] [blame] | 3413 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3414 | if (fp) |
| 3415 | fclose(fp); |
| 3416 | if (newm == NULL) { |
| 3417 | /* load_module probably removed name from modules because of |
| 3418 | * the error. Put back the original module object. We're |
| 3419 | * going to return NULL in this case regardless of whether |
| 3420 | * replacing name succeeds, so the return value is ignored. |
| 3421 | */ |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3422 | PyDict_SetItem(modules, name, m); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3423 | } |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3424 | |
| 3425 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3426 | imp_modules_reloading_clear(); |
Martin v. Löwis | 796ea53 | 2011-10-30 09:07:07 +0100 | [diff] [blame] | 3427 | Py_DECREF(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3428 | return newm; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3429 | } |
| 3430 | |
| 3431 | |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 3432 | /* Higher-level import emulator which emulates the "import" statement |
| 3433 | more accurately -- it invokes the __import__() function from the |
| 3434 | builtins of the current globals. This means that the import is |
| 3435 | done using whatever import hooks are installed in the current |
Brett Cannon | bc2eff3 | 2010-09-19 21:39:02 +0000 | [diff] [blame] | 3436 | environment. |
Guido van Rossum | 6058eb4 | 1998-12-21 19:51:00 +0000 | [diff] [blame] | 3437 | A dummy list ["__doc__"] is passed as the 4th argument so that |
Neal Norwitz | 80e7f27 | 2007-08-26 06:45:23 +0000 | [diff] [blame] | 3438 | e.g. PyImport_Import(PyUnicode_FromString("win32com.client.gencache")) |
Guido van Rossum | 6058eb4 | 1998-12-21 19:51:00 +0000 | [diff] [blame] | 3439 | will return <module "gencache"> instead of <module "win32com">. */ |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 3440 | |
| 3441 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3442 | PyImport_Import(PyObject *module_name) |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 3443 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3444 | static PyObject *silly_list = NULL; |
| 3445 | static PyObject *builtins_str = NULL; |
| 3446 | static PyObject *import_str = NULL; |
| 3447 | PyObject *globals = NULL; |
| 3448 | PyObject *import = NULL; |
| 3449 | PyObject *builtins = NULL; |
Brett Cannon | bc2eff3 | 2010-09-19 21:39:02 +0000 | [diff] [blame] | 3450 | PyObject *modules = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3451 | PyObject *r = NULL; |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 3452 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3453 | /* Initialize constant string objects */ |
| 3454 | if (silly_list == NULL) { |
| 3455 | import_str = PyUnicode_InternFromString("__import__"); |
| 3456 | if (import_str == NULL) |
| 3457 | return NULL; |
| 3458 | builtins_str = PyUnicode_InternFromString("__builtins__"); |
| 3459 | if (builtins_str == NULL) |
| 3460 | return NULL; |
Brett Cannon | bc2eff3 | 2010-09-19 21:39:02 +0000 | [diff] [blame] | 3461 | silly_list = PyList_New(0); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3462 | if (silly_list == NULL) |
| 3463 | return NULL; |
| 3464 | } |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 3465 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3466 | /* Get the builtins from current globals */ |
| 3467 | globals = PyEval_GetGlobals(); |
| 3468 | if (globals != NULL) { |
| 3469 | Py_INCREF(globals); |
| 3470 | builtins = PyObject_GetItem(globals, builtins_str); |
| 3471 | if (builtins == NULL) |
| 3472 | goto err; |
| 3473 | } |
| 3474 | else { |
| 3475 | /* No globals -- use standard builtins, and fake globals */ |
| 3476 | builtins = PyImport_ImportModuleLevel("builtins", |
| 3477 | NULL, NULL, NULL, 0); |
| 3478 | if (builtins == NULL) |
| 3479 | return NULL; |
| 3480 | globals = Py_BuildValue("{OO}", builtins_str, builtins); |
| 3481 | if (globals == NULL) |
| 3482 | goto err; |
| 3483 | } |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 3484 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3485 | /* Get the __import__ function from the builtins */ |
| 3486 | if (PyDict_Check(builtins)) { |
| 3487 | import = PyObject_GetItem(builtins, import_str); |
| 3488 | if (import == NULL) |
| 3489 | PyErr_SetObject(PyExc_KeyError, import_str); |
| 3490 | } |
| 3491 | else |
| 3492 | import = PyObject_GetAttr(builtins, import_str); |
| 3493 | if (import == NULL) |
| 3494 | goto err; |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 3495 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3496 | /* Call the __import__ function with the proper argument list |
Brett Cannon | bc2eff3 | 2010-09-19 21:39:02 +0000 | [diff] [blame] | 3497 | Always use absolute import here. |
| 3498 | Calling for side-effect of import. */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3499 | r = PyObject_CallFunction(import, "OOOOi", module_name, globals, |
| 3500 | globals, silly_list, 0, NULL); |
Brett Cannon | bc2eff3 | 2010-09-19 21:39:02 +0000 | [diff] [blame] | 3501 | if (r == NULL) |
| 3502 | goto err; |
| 3503 | Py_DECREF(r); |
| 3504 | |
| 3505 | modules = PyImport_GetModuleDict(); |
| 3506 | r = PyDict_GetItem(modules, module_name); |
| 3507 | if (r != NULL) |
| 3508 | Py_INCREF(r); |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 3509 | |
| 3510 | err: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3511 | Py_XDECREF(globals); |
| 3512 | Py_XDECREF(builtins); |
| 3513 | Py_XDECREF(import); |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 3514 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3515 | return r; |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 3516 | } |
| 3517 | |
| 3518 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3519 | /* Module 'imp' provides Python access to the primitives used for |
| 3520 | importing modules. |
| 3521 | */ |
| 3522 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3523 | static PyObject * |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3524 | imp_make_magic(long magic) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3525 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3526 | char buf[4]; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3527 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3528 | buf[0] = (char) ((magic >> 0) & 0xff); |
| 3529 | buf[1] = (char) ((magic >> 8) & 0xff); |
| 3530 | buf[2] = (char) ((magic >> 16) & 0xff); |
| 3531 | buf[3] = (char) ((magic >> 24) & 0xff); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3532 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3533 | return PyBytes_FromStringAndSize(buf, 4); |
Victor Stinner | 3e2b717 | 2010-11-09 09:32:19 +0000 | [diff] [blame] | 3534 | } |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3535 | |
| 3536 | static PyObject * |
| 3537 | imp_get_magic(PyObject *self, PyObject *noargs) |
| 3538 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3539 | return imp_make_magic(pyc_magic); |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3540 | } |
| 3541 | |
| 3542 | static PyObject * |
| 3543 | imp_get_tag(PyObject *self, PyObject *noargs) |
| 3544 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3545 | return PyUnicode_FromString(pyc_tag); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3546 | } |
| 3547 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3548 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 3549 | imp_get_suffixes(PyObject *self, PyObject *noargs) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3550 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3551 | PyObject *list; |
| 3552 | struct filedescr *fdp; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3553 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3554 | list = PyList_New(0); |
| 3555 | if (list == NULL) |
| 3556 | return NULL; |
| 3557 | for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { |
| 3558 | PyObject *item = Py_BuildValue("ssi", |
| 3559 | fdp->suffix, fdp->mode, fdp->type); |
| 3560 | if (item == NULL) { |
| 3561 | Py_DECREF(list); |
| 3562 | return NULL; |
| 3563 | } |
| 3564 | if (PyList_Append(list, item) < 0) { |
| 3565 | Py_DECREF(list); |
| 3566 | Py_DECREF(item); |
| 3567 | return NULL; |
| 3568 | } |
| 3569 | Py_DECREF(item); |
| 3570 | } |
| 3571 | return list; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3572 | } |
| 3573 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3574 | static PyObject * |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 3575 | call_find_module(PyObject *name, PyObject *path_list) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3576 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3577 | extern int fclose(FILE *); |
| 3578 | PyObject *fob, *ret; |
| 3579 | PyObject *pathobj; |
| 3580 | struct filedescr *fdp; |
Victor Stinner | 7d8b77c | 2011-03-12 08:45:02 -0500 | [diff] [blame] | 3581 | FILE *fp; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3582 | int fd = -1; |
| 3583 | char *found_encoding = NULL; |
| 3584 | char *encoding = NULL; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3585 | |
Victor Stinner | 533d783 | 2011-03-14 13:22:54 -0400 | [diff] [blame] | 3586 | if (path_list == Py_None) |
| 3587 | path_list = NULL; |
| 3588 | fdp = find_module(NULL, name, path_list, |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 3589 | &pathobj, &fp, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3590 | if (fdp == NULL) |
| 3591 | return NULL; |
| 3592 | if (fp != NULL) { |
| 3593 | fd = fileno(fp); |
| 3594 | if (fd != -1) |
| 3595 | fd = dup(fd); |
| 3596 | fclose(fp); |
Victor Stinner | d417d01 | 2011-06-20 15:16:55 +0200 | [diff] [blame] | 3597 | if (fd == -1) { |
| 3598 | PyErr_SetFromErrno(PyExc_OSError); |
| 3599 | return NULL; |
| 3600 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3601 | fp = NULL; |
| 3602 | } |
| 3603 | if (fd != -1) { |
| 3604 | if (strchr(fdp->mode, 'b') == NULL) { |
Victor Stinner | fe7c5b5 | 2011-04-05 01:48:03 +0200 | [diff] [blame] | 3605 | /* PyTokenizer_FindEncodingFilename() returns PyMem_MALLOC'ed |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3606 | memory. */ |
Victor Stinner | fe7c5b5 | 2011-04-05 01:48:03 +0200 | [diff] [blame] | 3607 | found_encoding = PyTokenizer_FindEncodingFilename(fd, pathobj); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3608 | lseek(fd, 0, 0); /* Reset position */ |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 3609 | if (found_encoding == NULL && PyErr_Occurred()) { |
| 3610 | Py_XDECREF(pathobj); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3611 | return NULL; |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 3612 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3613 | encoding = (found_encoding != NULL) ? found_encoding : |
| 3614 | (char*)PyUnicode_GetDefaultEncoding(); |
| 3615 | } |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 3616 | fob = PyFile_FromFd(fd, NULL, fdp->mode, -1, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3617 | (char*)encoding, NULL, NULL, 1); |
| 3618 | if (fob == NULL) { |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 3619 | Py_XDECREF(pathobj); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3620 | close(fd); |
| 3621 | PyMem_FREE(found_encoding); |
| 3622 | return NULL; |
| 3623 | } |
| 3624 | } |
| 3625 | else { |
| 3626 | fob = Py_None; |
| 3627 | Py_INCREF(fob); |
| 3628 | } |
Victor Stinner | 2fd76e4 | 2011-03-14 15:19:39 -0400 | [diff] [blame] | 3629 | if (pathobj == NULL) { |
| 3630 | Py_INCREF(Py_None); |
| 3631 | pathobj = Py_None; |
| 3632 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3633 | ret = Py_BuildValue("NN(ssi)", |
| 3634 | fob, pathobj, fdp->suffix, fdp->mode, fdp->type); |
| 3635 | PyMem_FREE(found_encoding); |
Brett Cannon | 3bb42d9 | 2007-10-20 03:43:15 +0000 | [diff] [blame] | 3636 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3637 | return ret; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3638 | } |
| 3639 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3640 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3641 | imp_find_module(PyObject *self, PyObject *args) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3642 | { |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3643 | PyObject *name, *path_list = NULL; |
| 3644 | if (!PyArg_ParseTuple(args, "U|O:find_module", |
| 3645 | &name, &path_list)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3646 | return NULL; |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 3647 | return call_find_module(name, path_list); |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3648 | } |
| 3649 | |
| 3650 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3651 | imp_init_builtin(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3652 | { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 3653 | PyObject *name; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3654 | int ret; |
| 3655 | PyObject *m; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 3656 | if (!PyArg_ParseTuple(args, "U:init_builtin", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3657 | return NULL; |
| 3658 | ret = init_builtin(name); |
| 3659 | if (ret < 0) |
| 3660 | return NULL; |
| 3661 | if (ret == 0) { |
| 3662 | Py_INCREF(Py_None); |
| 3663 | return Py_None; |
| 3664 | } |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 3665 | m = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3666 | Py_XINCREF(m); |
| 3667 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3668 | } |
| 3669 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3670 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3671 | imp_init_frozen(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3672 | { |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 3673 | PyObject *name; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3674 | int ret; |
| 3675 | PyObject *m; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 3676 | if (!PyArg_ParseTuple(args, "U:init_frozen", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3677 | return NULL; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 3678 | ret = PyImport_ImportFrozenModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3679 | if (ret < 0) |
| 3680 | return NULL; |
| 3681 | if (ret == 0) { |
| 3682 | Py_INCREF(Py_None); |
| 3683 | return Py_None; |
| 3684 | } |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 3685 | m = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3686 | Py_XINCREF(m); |
| 3687 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3688 | } |
| 3689 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3690 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3691 | imp_get_frozen_object(PyObject *self, PyObject *args) |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 3692 | { |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 3693 | PyObject *name; |
Jack Jansen | 95ffa23 | 1995-10-03 14:38:41 +0000 | [diff] [blame] | 3694 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 3695 | if (!PyArg_ParseTuple(args, "U:get_frozen_object", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3696 | return NULL; |
| 3697 | return get_frozen_object(name); |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 3698 | } |
| 3699 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3700 | static PyObject * |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 3701 | imp_is_frozen_package(PyObject *self, PyObject *args) |
| 3702 | { |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 3703 | PyObject *name; |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 3704 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 3705 | if (!PyArg_ParseTuple(args, "U:is_frozen_package", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3706 | return NULL; |
| 3707 | return is_frozen_package(name); |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 3708 | } |
| 3709 | |
| 3710 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3711 | imp_is_builtin(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3712 | { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 3713 | PyObject *name; |
| 3714 | if (!PyArg_ParseTuple(args, "U:is_builtin", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3715 | return NULL; |
| 3716 | return PyLong_FromLong(is_builtin(name)); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3717 | } |
| 3718 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3719 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3720 | imp_is_frozen(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3721 | { |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 3722 | PyObject *name; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3723 | struct _frozen *p; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 3724 | if (!PyArg_ParseTuple(args, "U:is_frozen", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3725 | return NULL; |
| 3726 | p = find_frozen(name); |
| 3727 | return PyBool_FromLong((long) (p == NULL ? 0 : p->size)); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3728 | } |
| 3729 | |
| 3730 | static FILE * |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3731 | get_file(PyObject *pathname, PyObject *fob, char *mode) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3732 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3733 | FILE *fp; |
| 3734 | if (mode[0] == 'U') |
| 3735 | mode = "r" PY_STDIOTEXTMODE; |
| 3736 | if (fob == NULL) { |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3737 | fp = _Py_fopen(pathname, mode); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3738 | } |
| 3739 | else { |
| 3740 | int fd = PyObject_AsFileDescriptor(fob); |
| 3741 | if (fd == -1) |
| 3742 | return NULL; |
| 3743 | if (!_PyVerify_fd(fd)) |
| 3744 | goto error; |
| 3745 | /* the FILE struct gets a new fd, so that it can be closed |
| 3746 | * independently of the file descriptor given |
| 3747 | */ |
| 3748 | fd = dup(fd); |
| 3749 | if (fd == -1) |
| 3750 | goto error; |
| 3751 | fp = fdopen(fd, mode); |
| 3752 | } |
| 3753 | if (fp) |
| 3754 | return fp; |
Kristján Valur Jónsson | e1b0445 | 2009-03-31 17:43:39 +0000 | [diff] [blame] | 3755 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3756 | PyErr_SetFromErrno(PyExc_IOError); |
| 3757 | return NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3758 | } |
| 3759 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3760 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3761 | imp_load_compiled(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3762 | { |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3763 | PyObject *name, *pathname; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3764 | PyObject *fob = NULL; |
| 3765 | PyObject *m; |
| 3766 | FILE *fp; |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3767 | if (!PyArg_ParseTuple(args, "UO&|O:load_compiled", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3768 | &name, |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3769 | PyUnicode_FSDecoder, &pathname, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3770 | &fob)) |
| 3771 | return NULL; |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3772 | fp = get_file(pathname, fob, "rb"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3773 | if (fp == NULL) { |
Victor Stinner | ebc0052 | 2010-12-03 17:06:43 +0000 | [diff] [blame] | 3774 | Py_DECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3775 | return NULL; |
| 3776 | } |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3777 | m = load_compiled_module(name, pathname, fp); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3778 | fclose(fp); |
Victor Stinner | ebc0052 | 2010-12-03 17:06:43 +0000 | [diff] [blame] | 3779 | Py_DECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3780 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3781 | } |
| 3782 | |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 3783 | #ifdef HAVE_DYNAMIC_LOADING |
| 3784 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3785 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3786 | imp_load_dynamic(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3787 | { |
Victor Stinner | fefd70c | 2011-03-14 15:54:07 -0400 | [diff] [blame] | 3788 | PyObject *name, *pathname, *fob = NULL, *mod; |
| 3789 | FILE *fp; |
| 3790 | |
| 3791 | if (!PyArg_ParseTuple(args, "UO&|O:load_dynamic", |
| 3792 | &name, PyUnicode_FSDecoder, &pathname, &fob)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3793 | return NULL; |
Victor Stinner | fefd70c | 2011-03-14 15:54:07 -0400 | [diff] [blame] | 3794 | if (fob != NULL) { |
| 3795 | fp = get_file(NULL, fob, "r"); |
Victor Stinner | e9ddbf6 | 2011-03-22 10:46:35 +0100 | [diff] [blame] | 3796 | if (fp == NULL) { |
| 3797 | Py_DECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3798 | return NULL; |
Victor Stinner | e9ddbf6 | 2011-03-22 10:46:35 +0100 | [diff] [blame] | 3799 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3800 | } |
Victor Stinner | fefd70c | 2011-03-14 15:54:07 -0400 | [diff] [blame] | 3801 | else |
| 3802 | fp = NULL; |
| 3803 | mod = _PyImport_LoadDynamicModule(name, pathname, fp); |
Victor Stinner | e9ddbf6 | 2011-03-22 10:46:35 +0100 | [diff] [blame] | 3804 | Py_DECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3805 | if (fp) |
| 3806 | fclose(fp); |
Victor Stinner | fefd70c | 2011-03-14 15:54:07 -0400 | [diff] [blame] | 3807 | return mod; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3808 | } |
| 3809 | |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 3810 | #endif /* HAVE_DYNAMIC_LOADING */ |
| 3811 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3812 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3813 | imp_load_source(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3814 | { |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3815 | PyObject *name, *pathname; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3816 | PyObject *fob = NULL; |
| 3817 | PyObject *m; |
| 3818 | FILE *fp; |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3819 | if (!PyArg_ParseTuple(args, "UO&|O:load_source", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3820 | &name, |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3821 | PyUnicode_FSDecoder, &pathname, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3822 | &fob)) |
| 3823 | return NULL; |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3824 | fp = get_file(pathname, fob, "r"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3825 | if (fp == NULL) { |
Victor Stinner | ebc0052 | 2010-12-03 17:06:43 +0000 | [diff] [blame] | 3826 | Py_DECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3827 | return NULL; |
| 3828 | } |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3829 | m = load_source_module(name, pathname, fp); |
Victor Stinner | ebc0052 | 2010-12-03 17:06:43 +0000 | [diff] [blame] | 3830 | Py_DECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3831 | fclose(fp); |
| 3832 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3833 | } |
| 3834 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 3835 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3836 | imp_load_module(PyObject *self, PyObject *args) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3837 | { |
Victor Stinner | 6ae1e7f | 2011-03-20 22:37:17 +0100 | [diff] [blame] | 3838 | PyObject *name, *fob, *pathname, *pathname_obj, *ret; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3839 | char *suffix; /* Unused */ |
| 3840 | char *mode; |
| 3841 | int type; |
| 3842 | FILE *fp; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3843 | |
Victor Stinner | 6ae1e7f | 2011-03-20 22:37:17 +0100 | [diff] [blame] | 3844 | if (!PyArg_ParseTuple(args, "UOO(ssi):load_module", |
| 3845 | &name, &fob, &pathname_obj, &suffix, &mode, &type)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3846 | return NULL; |
Victor Stinner | 6ae1e7f | 2011-03-20 22:37:17 +0100 | [diff] [blame] | 3847 | if (pathname_obj != Py_None) { |
| 3848 | if (!PyUnicode_FSDecoder(pathname_obj, &pathname)) |
| 3849 | return NULL; |
| 3850 | } |
| 3851 | else |
| 3852 | pathname = NULL; |
| 3853 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3854 | if (*mode) { |
| 3855 | /* Mode must start with 'r' or 'U' and must not contain '+'. |
| 3856 | Implicit in this test is the assumption that the mode |
| 3857 | may contain other modifiers like 'b' or 't'. */ |
Guido van Rossum | 5e2c5fa | 2002-05-30 17:33:07 +0000 | [diff] [blame] | 3858 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3859 | if (!(*mode == 'r' || *mode == 'U') || strchr(mode, '+')) { |
| 3860 | PyErr_Format(PyExc_ValueError, |
| 3861 | "invalid file open mode %.200s", mode); |
Victor Stinner | 6ae1e7f | 2011-03-20 22:37:17 +0100 | [diff] [blame] | 3862 | Py_XDECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3863 | return NULL; |
| 3864 | } |
| 3865 | } |
| 3866 | if (fob == Py_None) |
| 3867 | fp = NULL; |
| 3868 | else { |
| 3869 | fp = get_file(NULL, fob, mode); |
| 3870 | if (fp == NULL) { |
Victor Stinner | 6ae1e7f | 2011-03-20 22:37:17 +0100 | [diff] [blame] | 3871 | Py_XDECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3872 | return NULL; |
| 3873 | } |
| 3874 | } |
Victor Stinner | 41c5fec | 2011-03-13 21:46:30 -0400 | [diff] [blame] | 3875 | ret = load_module(name, fp, pathname, type, NULL); |
Victor Stinner | 6ae1e7f | 2011-03-20 22:37:17 +0100 | [diff] [blame] | 3876 | Py_XDECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3877 | if (fp) |
| 3878 | fclose(fp); |
| 3879 | return ret; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3880 | } |
| 3881 | |
| 3882 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3883 | imp_load_package(PyObject *self, PyObject *args) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3884 | { |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 3885 | PyObject *name, *pathname; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3886 | PyObject * ret; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 3887 | if (!PyArg_ParseTuple(args, "UO&:load_package", |
| 3888 | &name, PyUnicode_FSDecoder, &pathname)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3889 | return NULL; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 3890 | ret = load_package(name, pathname); |
Victor Stinner | ebc0052 | 2010-12-03 17:06:43 +0000 | [diff] [blame] | 3891 | Py_DECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3892 | return ret; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 3893 | } |
| 3894 | |
| 3895 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 3896 | imp_new_module(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3897 | { |
Victor Stinner | fe19d21 | 2011-03-14 14:53:28 -0400 | [diff] [blame] | 3898 | PyObject *name; |
| 3899 | if (!PyArg_ParseTuple(args, "U:new_module", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3900 | return NULL; |
Victor Stinner | fe19d21 | 2011-03-14 14:53:28 -0400 | [diff] [blame] | 3901 | return PyModule_NewObject(name); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 3902 | } |
| 3903 | |
Christian Heimes | 13a7a21 | 2008-01-07 17:13:09 +0000 | [diff] [blame] | 3904 | static PyObject * |
| 3905 | imp_reload(PyObject *self, PyObject *v) |
| 3906 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3907 | return PyImport_ReloadModule(v); |
Christian Heimes | 13a7a21 | 2008-01-07 17:13:09 +0000 | [diff] [blame] | 3908 | } |
| 3909 | |
| 3910 | PyDoc_STRVAR(doc_reload, |
| 3911 | "reload(module) -> module\n\ |
| 3912 | \n\ |
| 3913 | Reload the module. The module must have been successfully imported before."); |
| 3914 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3915 | static PyObject * |
| 3916 | imp_cache_from_source(PyObject *self, PyObject *args, PyObject *kws) |
| 3917 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3918 | static char *kwlist[] = {"path", "debug_override", NULL}; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3919 | |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3920 | PyObject *pathname, *cpathname; |
Benjamin Peterson | 294a9fc | 2010-10-16 03:12:39 +0000 | [diff] [blame] | 3921 | PyObject *debug_override = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3922 | int debug = !Py_OptimizeFlag; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3923 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3924 | if (!PyArg_ParseTupleAndKeywords( |
Victor Stinner | 3ea23dd | 2010-10-15 20:34:32 +0000 | [diff] [blame] | 3925 | args, kws, "O&|O", kwlist, |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3926 | PyUnicode_FSDecoder, &pathname, &debug_override)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3927 | return NULL; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3928 | |
Benjamin Peterson | 294a9fc | 2010-10-16 03:12:39 +0000 | [diff] [blame] | 3929 | if (debug_override != NULL && |
| 3930 | (debug = PyObject_IsTrue(debug_override)) < 0) { |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3931 | Py_DECREF(pathname); |
Benjamin Peterson | 294a9fc | 2010-10-16 03:12:39 +0000 | [diff] [blame] | 3932 | return NULL; |
| 3933 | } |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3934 | |
Martin v. Löwis | 30260a7 | 2011-10-23 17:35:46 +0200 | [diff] [blame] | 3935 | if (PyUnicode_READY(pathname) < 0) |
| 3936 | return NULL; |
| 3937 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3938 | cpathname = make_compiled_pathname(pathname, debug); |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3939 | Py_DECREF(pathname); |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3940 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3941 | if (cpathname == NULL) { |
| 3942 | PyErr_Format(PyExc_SystemError, "path buffer too short"); |
| 3943 | return NULL; |
| 3944 | } |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 3945 | return cpathname; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3946 | } |
| 3947 | |
| 3948 | PyDoc_STRVAR(doc_cache_from_source, |
Éric Araujo | 5df1108 | 2011-11-03 03:38:44 +0100 | [diff] [blame] | 3949 | "cache_from_source(path, [debug_override]) -> path\n\ |
| 3950 | Given the path to a .py file, return the path to its .pyc/.pyo file.\n\ |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3951 | \n\ |
| 3952 | The .py file does not need to exist; this simply returns the path to the\n\ |
| 3953 | .pyc/.pyo file calculated as if the .py file were imported. The extension\n\ |
| 3954 | will be .pyc unless __debug__ is not defined, then it will be .pyo.\n\ |
| 3955 | \n\ |
| 3956 | If debug_override is not None, then it must be a boolean and is taken as\n\ |
| 3957 | the value of __debug__ instead."); |
| 3958 | |
| 3959 | static PyObject * |
| 3960 | imp_source_from_cache(PyObject *self, PyObject *args, PyObject *kws) |
| 3961 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3962 | static char *kwlist[] = {"path", NULL}; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 3963 | PyObject *pathname, *source; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3964 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3965 | if (!PyArg_ParseTupleAndKeywords( |
Victor Stinner | ebc0052 | 2010-12-03 17:06:43 +0000 | [diff] [blame] | 3966 | args, kws, "O&", kwlist, |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 3967 | PyUnicode_FSDecoder, &pathname)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3968 | return NULL; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3969 | |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 3970 | source = make_source_pathname(pathname); |
| 3971 | if (source == NULL) { |
| 3972 | PyErr_Format(PyExc_ValueError, "Not a PEP 3147 pyc path: %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3973 | pathname); |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 3974 | Py_DECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3975 | return NULL; |
| 3976 | } |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 3977 | Py_DECREF(pathname); |
| 3978 | return source; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3979 | } |
| 3980 | |
| 3981 | PyDoc_STRVAR(doc_source_from_cache, |
Éric Araujo | 5df1108 | 2011-11-03 03:38:44 +0100 | [diff] [blame] | 3982 | "source_from_cache(path) -> path\n\ |
| 3983 | Given the path to a .pyc./.pyo file, return the path to its .py file.\n\ |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 3984 | \n\ |
| 3985 | The .pyc/.pyo file does not need to exist; this simply returns the path to\n\ |
| 3986 | the .py file calculated to correspond to the .pyc/.pyo file. If path\n\ |
| 3987 | does not conform to PEP 3147 format, ValueError will be raised."); |
| 3988 | |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3989 | /* Doc strings */ |
| 3990 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3991 | PyDoc_STRVAR(doc_imp, |
| 3992 | "This module provides the components needed to build your own\n\ |
| 3993 | __import__ function. Undocumented functions are obsolete."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3994 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3995 | PyDoc_STRVAR(doc_find_module, |
| 3996 | "find_module(name, [path]) -> (file, filename, (suffix, mode, type))\n\ |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 3997 | Search for a module. If path is omitted or None, search for a\n\ |
| 3998 | built-in, frozen or special module and continue search in sys.path.\n\ |
| 3999 | 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] | 4000 | package, pass the submodule name and the package's __path__."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 4001 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4002 | PyDoc_STRVAR(doc_load_module, |
| 4003 | "load_module(name, file, filename, (suffix, mode, type)) -> module\n\ |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 4004 | Load a module, given information returned by find_module().\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4005 | The module name must include the full package name, if any."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 4006 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4007 | PyDoc_STRVAR(doc_get_magic, |
| 4008 | "get_magic() -> string\n\ |
| 4009 | Return the magic number for .pyc or .pyo files."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 4010 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 4011 | PyDoc_STRVAR(doc_get_tag, |
| 4012 | "get_tag() -> string\n\ |
| 4013 | Return the magic tag for .pyc or .pyo files."); |
| 4014 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4015 | PyDoc_STRVAR(doc_get_suffixes, |
| 4016 | "get_suffixes() -> [(suffix, mode, type), ...]\n\ |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 4017 | 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] | 4018 | that find_module() looks for."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 4019 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4020 | PyDoc_STRVAR(doc_new_module, |
| 4021 | "new_module(name) -> module\n\ |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 4022 | 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] | 4023 | The module name must include the full package name, if any."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 4024 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4025 | PyDoc_STRVAR(doc_lock_held, |
Tim Peters | a7c6509 | 2004-08-01 23:26:05 +0000 | [diff] [blame] | 4026 | "lock_held() -> boolean\n\ |
| 4027 | Return True if the import lock is currently held, else False.\n\ |
| 4028 | On platforms without threads, return False."); |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 4029 | |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 4030 | PyDoc_STRVAR(doc_acquire_lock, |
| 4031 | "acquire_lock() -> None\n\ |
Neal Norwitz | 2294c0d | 2003-02-12 23:02:21 +0000 | [diff] [blame] | 4032 | Acquires the interpreter's import lock for the current thread.\n\ |
| 4033 | This lock should be used by import hooks to ensure thread-safety\n\ |
| 4034 | when importing modules.\n\ |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 4035 | On platforms without threads, this function does nothing."); |
| 4036 | |
| 4037 | PyDoc_STRVAR(doc_release_lock, |
| 4038 | "release_lock() -> None\n\ |
| 4039 | Release the interpreter's import lock.\n\ |
| 4040 | On platforms without threads, this function does nothing."); |
| 4041 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 4042 | static PyMethodDef imp_methods[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4043 | {"find_module", imp_find_module, METH_VARARGS, doc_find_module}, |
| 4044 | {"get_magic", imp_get_magic, METH_NOARGS, doc_get_magic}, |
| 4045 | {"get_tag", imp_get_tag, METH_NOARGS, doc_get_tag}, |
| 4046 | {"get_suffixes", imp_get_suffixes, METH_NOARGS, doc_get_suffixes}, |
| 4047 | {"load_module", imp_load_module, METH_VARARGS, doc_load_module}, |
| 4048 | {"new_module", imp_new_module, METH_VARARGS, doc_new_module}, |
| 4049 | {"lock_held", imp_lock_held, METH_NOARGS, doc_lock_held}, |
| 4050 | {"acquire_lock", imp_acquire_lock, METH_NOARGS, doc_acquire_lock}, |
| 4051 | {"release_lock", imp_release_lock, METH_NOARGS, doc_release_lock}, |
| 4052 | {"reload", imp_reload, METH_O, doc_reload}, |
| 4053 | {"cache_from_source", (PyCFunction)imp_cache_from_source, |
| 4054 | METH_VARARGS | METH_KEYWORDS, doc_cache_from_source}, |
| 4055 | {"source_from_cache", (PyCFunction)imp_source_from_cache, |
| 4056 | METH_VARARGS | METH_KEYWORDS, doc_source_from_cache}, |
| 4057 | /* The rest are obsolete */ |
| 4058 | {"get_frozen_object", imp_get_frozen_object, METH_VARARGS}, |
| 4059 | {"is_frozen_package", imp_is_frozen_package, METH_VARARGS}, |
| 4060 | {"init_builtin", imp_init_builtin, METH_VARARGS}, |
| 4061 | {"init_frozen", imp_init_frozen, METH_VARARGS}, |
| 4062 | {"is_builtin", imp_is_builtin, METH_VARARGS}, |
| 4063 | {"is_frozen", imp_is_frozen, METH_VARARGS}, |
| 4064 | {"load_compiled", imp_load_compiled, METH_VARARGS}, |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 4065 | #ifdef HAVE_DYNAMIC_LOADING |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4066 | {"load_dynamic", imp_load_dynamic, METH_VARARGS}, |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 4067 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4068 | {"load_package", imp_load_package, METH_VARARGS}, |
| 4069 | {"load_source", imp_load_source, METH_VARARGS}, |
Brett Cannon | 442c9b9 | 2011-03-23 16:14:42 -0700 | [diff] [blame] | 4070 | {"_fix_co_filename", imp_fix_co_filename, METH_VARARGS}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4071 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 4072 | }; |
| 4073 | |
Guido van Rossum | 1a8791e | 1998-08-04 22:46:29 +0000 | [diff] [blame] | 4074 | static int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 4075 | setint(PyObject *d, char *name, int value) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 4076 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4077 | PyObject *v; |
| 4078 | int err; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 4079 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4080 | v = PyLong_FromLong((long)value); |
| 4081 | err = PyDict_SetItemString(d, name, v); |
| 4082 | Py_XDECREF(v); |
| 4083 | return err; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 4084 | } |
| 4085 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 4086 | typedef struct { |
| 4087 | PyObject_HEAD |
| 4088 | } NullImporter; |
| 4089 | |
| 4090 | static int |
| 4091 | NullImporter_init(NullImporter *self, PyObject *args, PyObject *kwds) |
| 4092 | { |
Victor Stinner | 1a4d12d | 2010-08-13 13:07:29 +0000 | [diff] [blame] | 4093 | #ifndef MS_WINDOWS |
| 4094 | PyObject *path; |
| 4095 | struct stat statbuf; |
| 4096 | int rv; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 4097 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4098 | if (!_PyArg_NoKeywords("NullImporter()", kwds)) |
| 4099 | return -1; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 4100 | |
Victor Stinner | 1a4d12d | 2010-08-13 13:07:29 +0000 | [diff] [blame] | 4101 | if (!PyArg_ParseTuple(args, "O&:NullImporter", |
| 4102 | PyUnicode_FSConverter, &path)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4103 | return -1; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 4104 | |
Victor Stinner | 1a4d12d | 2010-08-13 13:07:29 +0000 | [diff] [blame] | 4105 | if (PyBytes_GET_SIZE(path) == 0) { |
| 4106 | Py_DECREF(path); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4107 | PyErr_SetString(PyExc_ImportError, "empty pathname"); |
| 4108 | return -1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4109 | } |
Victor Stinner | 1a4d12d | 2010-08-13 13:07:29 +0000 | [diff] [blame] | 4110 | |
| 4111 | rv = stat(PyBytes_AS_STRING(path), &statbuf); |
| 4112 | Py_DECREF(path); |
| 4113 | if (rv == 0) { |
| 4114 | /* it exists */ |
| 4115 | if (S_ISDIR(statbuf.st_mode)) { |
| 4116 | /* it's a directory */ |
| 4117 | PyErr_SetString(PyExc_ImportError, "existing directory"); |
| 4118 | return -1; |
| 4119 | } |
| 4120 | } |
| 4121 | #else /* MS_WINDOWS */ |
| 4122 | PyObject *pathobj; |
| 4123 | DWORD rv; |
Victor Stinner | 255dfdb | 2010-09-29 10:28:51 +0000 | [diff] [blame] | 4124 | wchar_t *path; |
Victor Stinner | 1a4d12d | 2010-08-13 13:07:29 +0000 | [diff] [blame] | 4125 | |
| 4126 | if (!_PyArg_NoKeywords("NullImporter()", kwds)) |
| 4127 | return -1; |
| 4128 | |
| 4129 | if (!PyArg_ParseTuple(args, "U:NullImporter", |
| 4130 | &pathobj)) |
| 4131 | return -1; |
| 4132 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4133 | if (PyUnicode_GET_LENGTH(pathobj) == 0) { |
Victor Stinner | 1a4d12d | 2010-08-13 13:07:29 +0000 | [diff] [blame] | 4134 | PyErr_SetString(PyExc_ImportError, "empty pathname"); |
| 4135 | return -1; |
| 4136 | } |
| 4137 | |
Victor Stinner | beb4135b | 2010-10-07 01:02:42 +0000 | [diff] [blame] | 4138 | path = PyUnicode_AsWideCharString(pathobj, NULL); |
Victor Stinner | 255dfdb | 2010-09-29 10:28:51 +0000 | [diff] [blame] | 4139 | if (path == NULL) |
Victor Stinner | 1a4d12d | 2010-08-13 13:07:29 +0000 | [diff] [blame] | 4140 | return -1; |
| 4141 | /* see issue1293 and issue3677: |
| 4142 | * stat() on Windows doesn't recognise paths like |
| 4143 | * "e:\\shared\\" and "\\\\whiterab-c2znlh\\shared" as dirs. |
| 4144 | */ |
| 4145 | rv = GetFileAttributesW(path); |
Victor Stinner | 255dfdb | 2010-09-29 10:28:51 +0000 | [diff] [blame] | 4146 | PyMem_Free(path); |
Victor Stinner | 1a4d12d | 2010-08-13 13:07:29 +0000 | [diff] [blame] | 4147 | if (rv != INVALID_FILE_ATTRIBUTES) { |
| 4148 | /* it exists */ |
| 4149 | if (rv & FILE_ATTRIBUTE_DIRECTORY) { |
| 4150 | /* it's a directory */ |
| 4151 | PyErr_SetString(PyExc_ImportError, "existing directory"); |
| 4152 | return -1; |
| 4153 | } |
| 4154 | } |
| 4155 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4156 | return 0; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 4157 | } |
| 4158 | |
| 4159 | static PyObject * |
| 4160 | NullImporter_find_module(NullImporter *self, PyObject *args) |
| 4161 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4162 | Py_RETURN_NONE; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 4163 | } |
| 4164 | |
| 4165 | static PyMethodDef NullImporter_methods[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4166 | {"find_module", (PyCFunction)NullImporter_find_module, METH_VARARGS, |
| 4167 | "Always return None" |
| 4168 | }, |
| 4169 | {NULL} /* Sentinel */ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 4170 | }; |
| 4171 | |
| 4172 | |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 4173 | PyTypeObject PyNullImporter_Type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4174 | PyVarObject_HEAD_INIT(NULL, 0) |
| 4175 | "imp.NullImporter", /*tp_name*/ |
| 4176 | sizeof(NullImporter), /*tp_basicsize*/ |
| 4177 | 0, /*tp_itemsize*/ |
| 4178 | 0, /*tp_dealloc*/ |
| 4179 | 0, /*tp_print*/ |
| 4180 | 0, /*tp_getattr*/ |
| 4181 | 0, /*tp_setattr*/ |
| 4182 | 0, /*tp_reserved*/ |
| 4183 | 0, /*tp_repr*/ |
| 4184 | 0, /*tp_as_number*/ |
| 4185 | 0, /*tp_as_sequence*/ |
| 4186 | 0, /*tp_as_mapping*/ |
| 4187 | 0, /*tp_hash */ |
| 4188 | 0, /*tp_call*/ |
| 4189 | 0, /*tp_str*/ |
| 4190 | 0, /*tp_getattro*/ |
| 4191 | 0, /*tp_setattro*/ |
| 4192 | 0, /*tp_as_buffer*/ |
| 4193 | Py_TPFLAGS_DEFAULT, /*tp_flags*/ |
| 4194 | "Null importer object", /* tp_doc */ |
| 4195 | 0, /* tp_traverse */ |
| 4196 | 0, /* tp_clear */ |
| 4197 | 0, /* tp_richcompare */ |
| 4198 | 0, /* tp_weaklistoffset */ |
| 4199 | 0, /* tp_iter */ |
| 4200 | 0, /* tp_iternext */ |
| 4201 | NullImporter_methods, /* tp_methods */ |
| 4202 | 0, /* tp_members */ |
| 4203 | 0, /* tp_getset */ |
| 4204 | 0, /* tp_base */ |
| 4205 | 0, /* tp_dict */ |
| 4206 | 0, /* tp_descr_get */ |
| 4207 | 0, /* tp_descr_set */ |
| 4208 | 0, /* tp_dictoffset */ |
| 4209 | (initproc)NullImporter_init, /* tp_init */ |
| 4210 | 0, /* tp_alloc */ |
| 4211 | PyType_GenericNew /* tp_new */ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 4212 | }; |
| 4213 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 4214 | static struct PyModuleDef impmodule = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4215 | PyModuleDef_HEAD_INIT, |
| 4216 | "imp", |
| 4217 | doc_imp, |
| 4218 | 0, |
| 4219 | imp_methods, |
| 4220 | NULL, |
| 4221 | NULL, |
| 4222 | NULL, |
| 4223 | NULL |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 4224 | }; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 4225 | |
Jason Tishler | 6bc06ec | 2003-09-04 11:59:50 +0000 | [diff] [blame] | 4226 | PyMODINIT_FUNC |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 4227 | PyInit_imp(void) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 4228 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4229 | PyObject *m, *d; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 4230 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4231 | if (PyType_Ready(&PyNullImporter_Type) < 0) |
| 4232 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 4233 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4234 | m = PyModule_Create(&impmodule); |
| 4235 | if (m == NULL) |
| 4236 | goto failure; |
| 4237 | d = PyModule_GetDict(m); |
| 4238 | if (d == NULL) |
| 4239 | goto failure; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 4240 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4241 | if (setint(d, "SEARCH_ERROR", SEARCH_ERROR) < 0) goto failure; |
| 4242 | if (setint(d, "PY_SOURCE", PY_SOURCE) < 0) goto failure; |
| 4243 | if (setint(d, "PY_COMPILED", PY_COMPILED) < 0) goto failure; |
| 4244 | if (setint(d, "C_EXTENSION", C_EXTENSION) < 0) goto failure; |
| 4245 | if (setint(d, "PY_RESOURCE", PY_RESOURCE) < 0) goto failure; |
| 4246 | if (setint(d, "PKG_DIRECTORY", PKG_DIRECTORY) < 0) goto failure; |
| 4247 | if (setint(d, "C_BUILTIN", C_BUILTIN) < 0) goto failure; |
| 4248 | if (setint(d, "PY_FROZEN", PY_FROZEN) < 0) goto failure; |
| 4249 | if (setint(d, "PY_CODERESOURCE", PY_CODERESOURCE) < 0) goto failure; |
| 4250 | if (setint(d, "IMP_HOOK", IMP_HOOK) < 0) goto failure; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 4251 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4252 | Py_INCREF(&PyNullImporter_Type); |
| 4253 | PyModule_AddObject(m, "NullImporter", (PyObject *)&PyNullImporter_Type); |
| 4254 | return m; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 4255 | failure: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4256 | Py_XDECREF(m); |
| 4257 | return NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 4258 | } |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4259 | |
| 4260 | |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 4261 | /* API for embedding applications that want to add their own entries |
| 4262 | to the table of built-in modules. This should normally be called |
| 4263 | *before* Py_Initialize(). When the table resize fails, -1 is |
| 4264 | returned and the existing table is unchanged. |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4265 | |
| 4266 | After a similar function by Just van Rossum. */ |
| 4267 | |
| 4268 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 4269 | PyImport_ExtendInittab(struct _inittab *newtab) |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4270 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4271 | static struct _inittab *our_copy = NULL; |
| 4272 | struct _inittab *p; |
| 4273 | int i, n; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4274 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4275 | /* Count the number of entries in both tables */ |
| 4276 | for (n = 0; newtab[n].name != NULL; n++) |
| 4277 | ; |
| 4278 | if (n == 0) |
| 4279 | return 0; /* Nothing to do */ |
| 4280 | for (i = 0; PyImport_Inittab[i].name != NULL; i++) |
| 4281 | ; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4282 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4283 | /* Allocate new memory for the combined table */ |
| 4284 | p = our_copy; |
| 4285 | PyMem_RESIZE(p, struct _inittab, i+n+1); |
| 4286 | if (p == NULL) |
| 4287 | return -1; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4288 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4289 | /* Copy the tables into the new memory */ |
| 4290 | if (our_copy != PyImport_Inittab) |
| 4291 | memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct _inittab)); |
| 4292 | PyImport_Inittab = our_copy = p; |
| 4293 | memcpy(p+i, newtab, (n+1) * sizeof(struct _inittab)); |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4294 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4295 | return 0; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4296 | } |
| 4297 | |
| 4298 | /* Shorthand to add a single entry given a name and a function */ |
| 4299 | |
| 4300 | int |
Brett Cannon | a826f32 | 2009-04-02 03:41:46 +0000 | [diff] [blame] | 4301 | PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void)) |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4302 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4303 | struct _inittab newtab[2]; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4304 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4305 | memset(newtab, '\0', sizeof newtab); |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4306 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4307 | newtab[0].name = (char *)name; |
| 4308 | newtab[0].initfunc = initfunc; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4309 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4310 | return PyImport_ExtendInittab(newtab); |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 4311 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 4312 | |
| 4313 | #ifdef __cplusplus |
| 4314 | } |
| 4315 | #endif |