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