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