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