Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | /* Module definition and import implementation */ |
| 3 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 4 | #include "Python.h" |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 5 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 6 | #include "Python-ast.h" |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 7 | #undef Yield /* undefine macro conflicting with winbase.h */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 8 | #include "errcode.h" |
Guido van Rossum | c405b7b | 1991-06-04 19:39:42 +0000 | [diff] [blame] | 9 | #include "marshal.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 10 | #include "code.h" |
Guido van Rossum | d8bac6d | 1992-02-26 15:19:13 +0000 | [diff] [blame] | 11 | #include "osdefs.h" |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 12 | #include "importdl.h" |
Guido van Rossum | c405b7b | 1991-06-04 19:39:42 +0000 | [diff] [blame] | 13 | |
Guido van Rossum | 55a8338 | 2000-09-20 20:31:38 +0000 | [diff] [blame] | 14 | #ifdef HAVE_FCNTL_H |
| 15 | #include <fcntl.h> |
| 16 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 17 | #ifdef __cplusplus |
Brett Cannon | 9a5b25a | 2010-03-01 02:09:17 +0000 | [diff] [blame] | 18 | extern "C" { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 19 | #endif |
Guido van Rossum | 55a8338 | 2000-09-20 20:31:38 +0000 | [diff] [blame] | 20 | |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 21 | #ifdef MS_WINDOWS |
| 22 | /* for stat.st_mode */ |
| 23 | typedef unsigned short mode_t; |
Daniel Stutzbach | c793779 | 2010-09-09 21:18:04 +0000 | [diff] [blame] | 24 | /* for _mkdir */ |
| 25 | #include <direct.h> |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 26 | #endif |
| 27 | |
Guido van Rossum | 21d335e | 1993-10-15 13:01:11 +0000 | [diff] [blame] | 28 | |
Jeremy Hylton | d4ceb31 | 2004-04-01 02:45:22 +0000 | [diff] [blame] | 29 | /* Magic word to reject .pyc files generated by other Python versions. |
| 30 | It should change for each incompatible change to the bytecode. |
| 31 | |
| 32 | The value of CR and LF is incorporated so if you ever read or write |
Guido van Rossum | 7faeab3 | 1995-07-07 22:50:36 +0000 | [diff] [blame] | 33 | a .pyc file in text mode the magic number will be wrong; also, the |
Tim Peters | 36515e2 | 2001-11-18 04:06:29 +0000 | [diff] [blame] | 34 | Apple MPW compiler swaps their values, botching string constants. |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 35 | |
Guido van Rossum | 45aecf4 | 2006-03-15 04:58:47 +0000 | [diff] [blame] | 36 | The magic numbers must be spaced apart at least 2 values, as the |
Martin v. Löwis | ef82d2f | 2004-06-27 16:51:46 +0000 | [diff] [blame] | 37 | -U interpeter flag will cause MAGIC+1 being used. They have been |
| 38 | odd numbers for some time now. |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 39 | |
Jeremy Hylton | d4ceb31 | 2004-04-01 02:45:22 +0000 | [diff] [blame] | 40 | There were a variety of old schemes for setting the magic number. |
| 41 | The current working scheme is to increment the previous value by |
| 42 | 10. |
Guido van Rossum | f689492 | 2002-08-31 15:16:14 +0000 | [diff] [blame] | 43 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 44 | Starting with the adoption of PEP 3147 in Python 3.2, every bump in magic |
| 45 | number also includes a new "magic tag", i.e. a human readable string used |
| 46 | to represent the magic number in __pycache__ directories. When you change |
| 47 | the magic number, you must also set a new unique magic tag. Generally this |
| 48 | can be named after the Python major version of the magic number bump, but |
| 49 | it can really be anything, as long as it's different than anything else |
| 50 | that's come before. The tags are included in the following table, starting |
| 51 | with Python 3.2a0. |
| 52 | |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 53 | Known values: |
| 54 | Python 1.5: 20121 |
| 55 | Python 1.5.1: 20121 |
| 56 | Python 1.5.2: 20121 |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 57 | Python 1.6: 50428 |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 58 | Python 2.0: 50823 |
| 59 | Python 2.0.1: 50823 |
| 60 | Python 2.1: 60202 |
| 61 | Python 2.1.1: 60202 |
| 62 | Python 2.1.2: 60202 |
| 63 | Python 2.2: 60717 |
Neal Norwitz | 7fdcb41 | 2002-06-14 01:07:39 +0000 | [diff] [blame] | 64 | Python 2.3a0: 62011 |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 65 | Python 2.3a0: 62021 |
Guido van Rossum | f689492 | 2002-08-31 15:16:14 +0000 | [diff] [blame] | 66 | Python 2.3a0: 62011 (!) |
Martin v. Löwis | ef82d2f | 2004-06-27 16:51:46 +0000 | [diff] [blame] | 67 | Python 2.4a0: 62041 |
Raymond Hettinger | fd2d1f7 | 2004-08-23 23:37:48 +0000 | [diff] [blame] | 68 | Python 2.4a3: 62051 |
Raymond Hettinger | 2c31a05 | 2004-09-22 18:44:21 +0000 | [diff] [blame] | 69 | Python 2.4b1: 62061 |
Michael W. Hudson | df88846 | 2005-06-03 14:41:55 +0000 | [diff] [blame] | 70 | Python 2.5a0: 62071 |
Michael W. Hudson | aee2e28 | 2005-10-21 11:32:20 +0000 | [diff] [blame] | 71 | Python 2.5a0: 62081 (ast-branch) |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 72 | Python 2.5a0: 62091 (with) |
Guido van Rossum | f669436 | 2006-03-10 02:28:35 +0000 | [diff] [blame] | 73 | Python 2.5a0: 62092 (changed WITH_CLEANUP opcode) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 74 | Python 2.5b3: 62101 (fix wrong code: for x, in ...) |
| 75 | Python 2.5b3: 62111 (fix wrong code: x += yield) |
| 76 | Python 2.5c1: 62121 (fix wrong lnotab with for loops and |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 77 | storing constants that should have been removed) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 78 | Python 2.5c2: 62131 (fix wrong code: for x, in ... in listcomp/genexp) |
Christian Heimes | 99170a5 | 2007-12-19 02:07:34 +0000 | [diff] [blame] | 79 | Python 2.6a0: 62151 (peephole optimizations and STORE_MAP opcode) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 80 | Python 2.6a1: 62161 (WITH_CLEANUP optimization) |
Guido van Rossum | 45aecf4 | 2006-03-15 04:58:47 +0000 | [diff] [blame] | 81 | Python 3000: 3000 |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 82 | 3010 (removed UNARY_CONVERT) |
| 83 | 3020 (added BUILD_SET) |
| 84 | 3030 (added keyword-only parameters) |
| 85 | 3040 (added signature annotations) |
| 86 | 3050 (print becomes a function) |
| 87 | 3060 (PEP 3115 metaclass syntax) |
| 88 | 3061 (string literals become unicode) |
| 89 | 3071 (PEP 3109 raise changes) |
| 90 | 3081 (PEP 3137 make __file__ and __name__ unicode) |
| 91 | 3091 (kill str8 interning) |
| 92 | 3101 (merge from 2.6a0, see 62151) |
| 93 | 3103 (__file__ points to source file) |
Benjamin Peterson | 0f6cae0 | 2009-12-10 02:09:08 +0000 | [diff] [blame] | 94 | Python 3.0a4: 3111 (WITH_CLEANUP optimization). |
| 95 | Python 3.0a5: 3131 (lexical exception stacking, including POP_EXCEPT) |
| 96 | Python 3.1a0: 3141 (optimize list, set and dict comprehensions: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 97 | change LIST_APPEND and SET_ADD, add MAP_ADD) |
Benjamin Peterson | 0f6cae0 | 2009-12-10 02:09:08 +0000 | [diff] [blame] | 98 | Python 3.1a0: 3151 (optimize conditional branches: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 99 | introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE) |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 100 | Python 3.2a0: 3160 (add SETUP_WITH) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 101 | tag: cpython-32 |
Antoine Pitrou | 74a69fa | 2010-09-04 18:43:52 +0000 | [diff] [blame] | 102 | Python 3.2a1: 3170 (add DUP_TOP_TWO, remove DUP_TOPX and ROT_FOUR) |
| 103 | tag: cpython-32 |
Benjamin Peterson | 6246d6d | 2010-09-10 21:51:44 +0000 | [diff] [blame] | 104 | Python 3.2a2 3180 (add DELETE_DEREF) |
Benjamin Peterson | e7c15fa | 2011-06-19 19:54:45 -0500 | [diff] [blame] | 105 | Python 3.3a0 3190 __class__ super closure changed |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 106 | Python 3.3a0 3200 (__qualname__ added) |
Benjamin Peterson | abdb552 | 2012-03-15 15:40:37 -0500 | [diff] [blame] | 107 | 3210 (added size modulo 2**32 to the pyc header) |
| 108 | Python 3.3a1 3220 (changed PEP 380 implementation) |
Nick Coghlan | 0b43bcf | 2012-05-27 18:17:07 +1000 | [diff] [blame] | 109 | Python 3.3a4 3230 (revert changes to implicit __class__ closure) |
Tim Peters | 36515e2 | 2001-11-18 04:06:29 +0000 | [diff] [blame] | 110 | */ |
Guido van Rossum | 3ddee71 | 1991-12-16 13:06:34 +0000 | [diff] [blame] | 111 | |
Nick Coghlan | cd419ab | 2010-09-11 00:39:25 +0000 | [diff] [blame] | 112 | /* MAGIC must change whenever the bytecode emitted by the compiler may no |
| 113 | longer be understood by older implementations of the eval loop (usually |
| 114 | due to the addition of new opcodes) |
Martin v. Löwis | fadcd31 | 2011-10-23 18:08:20 +0200 | [diff] [blame] | 115 | TAG must change for each major Python release. The magic number will take |
| 116 | care of any bytecode changes that occur during development. |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 117 | */ |
Benjamin Peterson | 48deae1 | 2011-06-03 17:50:16 -0500 | [diff] [blame] | 118 | #define QUOTE(arg) #arg |
| 119 | #define STRIFY(name) QUOTE(name) |
| 120 | #define MAJOR STRIFY(PY_MAJOR_VERSION) |
| 121 | #define MINOR STRIFY(PY_MINOR_VERSION) |
Nick Coghlan | 0b43bcf | 2012-05-27 18:17:07 +1000 | [diff] [blame] | 122 | #define MAGIC (3230 | ((long)'\r'<<16) | ((long)'\n'<<24)) |
Benjamin Peterson | 48deae1 | 2011-06-03 17:50:16 -0500 | [diff] [blame] | 123 | #define TAG "cpython-" MAJOR MINOR; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 124 | #define CACHEDIR "__pycache__" |
| 125 | /* Current magic word and string tag as globals. */ |
Guido van Rossum | 96774c1 | 2000-05-01 20:19:08 +0000 | [diff] [blame] | 126 | static long pyc_magic = MAGIC; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 127 | static const char *pyc_tag = TAG; |
Benjamin Peterson | 48deae1 | 2011-06-03 17:50:16 -0500 | [diff] [blame] | 128 | #undef QUOTE |
| 129 | #undef STRIFY |
| 130 | #undef MAJOR |
| 131 | #undef MINOR |
Guido van Rossum | 96774c1 | 2000-05-01 20:19:08 +0000 | [diff] [blame] | 132 | |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 133 | /* See _PyImport_FixupExtensionObject() below */ |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 134 | static PyObject *extensions = NULL; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 135 | |
Victor Stinner | fe7c5b5 | 2011-04-05 01:48:03 +0200 | [diff] [blame] | 136 | /* Function from Parser/tokenizer.c */ |
| 137 | extern char * PyTokenizer_FindEncodingFilename(int, PyObject *); |
| 138 | |
Guido van Rossum | 771c6c8 | 1997-10-31 18:37:24 +0000 | [diff] [blame] | 139 | /* This table is defined in config.c: */ |
| 140 | extern struct _inittab _PyImport_Inittab[]; |
| 141 | |
| 142 | struct _inittab *PyImport_Inittab = _PyImport_Inittab; |
Guido van Rossum | 66f1fa8 | 1991-04-03 19:03:52 +0000 | [diff] [blame] | 143 | |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 144 | static PyObject *initstr = NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 145 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 146 | /* Initialize things */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 147 | |
| 148 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 149 | _PyImport_Init(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 150 | { |
Victor Stinner | d029621 | 2011-03-14 14:04:10 -0400 | [diff] [blame] | 151 | initstr = PyUnicode_InternFromString("__init__"); |
| 152 | if (initstr == NULL) |
| 153 | Py_FatalError("Can't initialize import variables"); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 154 | } |
| 155 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 156 | void |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 157 | _PyImportHooks_Init(void) |
| 158 | { |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 159 | PyObject *v, *path_hooks = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 160 | int err = 0; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 161 | |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 162 | /* adding sys.path_hooks and sys.path_importer_cache */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 163 | v = PyList_New(0); |
| 164 | if (v == NULL) |
| 165 | goto error; |
| 166 | err = PySys_SetObject("meta_path", v); |
| 167 | Py_DECREF(v); |
| 168 | if (err) |
| 169 | goto error; |
| 170 | v = PyDict_New(); |
| 171 | if (v == NULL) |
| 172 | goto error; |
| 173 | err = PySys_SetObject("path_importer_cache", v); |
| 174 | Py_DECREF(v); |
| 175 | if (err) |
| 176 | goto error; |
| 177 | path_hooks = PyList_New(0); |
| 178 | if (path_hooks == NULL) |
| 179 | goto error; |
| 180 | err = PySys_SetObject("path_hooks", path_hooks); |
| 181 | if (err) { |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 182 | error: |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 183 | PyErr_Print(); |
| 184 | Py_FatalError("initializing sys.meta_path, sys.path_hooks, " |
Nadeem Vawda | 8f46d65 | 2012-05-05 12:27:30 +0200 | [diff] [blame] | 185 | "or path_importer_cache failed"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 186 | } |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 187 | Py_DECREF(path_hooks); |
| 188 | } |
| 189 | |
| 190 | void |
| 191 | _PyImportZip_Init(void) |
| 192 | { |
| 193 | PyObject *path_hooks, *zimpimport; |
| 194 | int err = 0; |
| 195 | |
| 196 | path_hooks = PySys_GetObject("path_hooks"); |
| 197 | if (path_hooks == NULL) |
| 198 | goto error; |
| 199 | |
| 200 | if (Py_VerboseFlag) |
| 201 | PySys_WriteStderr("# installing zipimport hook\n"); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 202 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 203 | zimpimport = PyImport_ImportModule("zipimport"); |
| 204 | if (zimpimport == NULL) { |
| 205 | PyErr_Clear(); /* No zip import module -- okay */ |
| 206 | if (Py_VerboseFlag) |
| 207 | PySys_WriteStderr("# can't import zipimport\n"); |
| 208 | } |
| 209 | else { |
Martin v. Löwis | bd928fe | 2011-10-14 10:20:37 +0200 | [diff] [blame] | 210 | _Py_IDENTIFIER(zipimporter); |
Martin v. Löwis | 1ee1b6f | 2011-10-10 18:11:30 +0200 | [diff] [blame] | 211 | PyObject *zipimporter = _PyObject_GetAttrId(zimpimport, |
| 212 | &PyId_zipimporter); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 213 | Py_DECREF(zimpimport); |
| 214 | if (zipimporter == NULL) { |
| 215 | PyErr_Clear(); /* No zipimporter object -- okay */ |
| 216 | if (Py_VerboseFlag) |
| 217 | PySys_WriteStderr( |
| 218 | "# can't import zipimport.zipimporter\n"); |
| 219 | } |
| 220 | else { |
Brett Cannon | 8923a4d | 2012-04-24 22:03:46 -0400 | [diff] [blame] | 221 | /* sys.path_hooks.insert(0, zipimporter) */ |
| 222 | err = PyList_Insert(path_hooks, 0, zipimporter); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 223 | Py_DECREF(zipimporter); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 224 | if (err < 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 225 | goto error; |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 226 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 227 | if (Py_VerboseFlag) |
| 228 | PySys_WriteStderr( |
| 229 | "# installed zipimport hook\n"); |
| 230 | } |
| 231 | } |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 232 | |
| 233 | return; |
| 234 | |
| 235 | error: |
| 236 | PyErr_Print(); |
Brett Cannon | acf85cd | 2012-04-29 12:50:03 -0400 | [diff] [blame] | 237 | Py_FatalError("initializing zipimport failed"); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 238 | } |
| 239 | |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 240 | /* Locking primitives to prevent parallel imports of the same module |
| 241 | in different threads to return with a partially loaded module. |
| 242 | These calls are serialized by the global interpreter lock. */ |
| 243 | |
| 244 | #ifdef WITH_THREAD |
| 245 | |
Guido van Rossum | 49b5606 | 1998-10-01 20:42:43 +0000 | [diff] [blame] | 246 | #include "pythread.h" |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 247 | |
Guido van Rossum | 65d5b57 | 1998-12-21 19:32:43 +0000 | [diff] [blame] | 248 | static PyThread_type_lock import_lock = 0; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 249 | static long import_lock_thread = -1; |
| 250 | static int import_lock_level = 0; |
| 251 | |
Benjamin Peterson | 0df35a9 | 2009-10-04 20:32:25 +0000 | [diff] [blame] | 252 | void |
| 253 | _PyImport_AcquireLock(void) |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 254 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 255 | long me = PyThread_get_thread_ident(); |
| 256 | if (me == -1) |
| 257 | return; /* Too bad */ |
| 258 | if (import_lock == NULL) { |
| 259 | import_lock = PyThread_allocate_lock(); |
| 260 | if (import_lock == NULL) |
| 261 | return; /* Nothing much we can do. */ |
| 262 | } |
| 263 | if (import_lock_thread == me) { |
| 264 | import_lock_level++; |
| 265 | return; |
| 266 | } |
| 267 | if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0)) |
| 268 | { |
| 269 | PyThreadState *tstate = PyEval_SaveThread(); |
| 270 | PyThread_acquire_lock(import_lock, 1); |
| 271 | PyEval_RestoreThread(tstate); |
| 272 | } |
| 273 | import_lock_thread = me; |
| 274 | import_lock_level = 1; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 275 | } |
| 276 | |
Benjamin Peterson | 0df35a9 | 2009-10-04 20:32:25 +0000 | [diff] [blame] | 277 | int |
| 278 | _PyImport_ReleaseLock(void) |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 279 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 280 | long me = PyThread_get_thread_ident(); |
| 281 | if (me == -1 || import_lock == NULL) |
| 282 | return 0; /* Too bad */ |
| 283 | if (import_lock_thread != me) |
| 284 | return -1; |
| 285 | import_lock_level--; |
| 286 | if (import_lock_level == 0) { |
| 287 | import_lock_thread = -1; |
| 288 | PyThread_release_lock(import_lock); |
| 289 | } |
| 290 | return 1; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 291 | } |
| 292 | |
Gregory P. Smith | 24cec9f | 2010-03-01 06:18:41 +0000 | [diff] [blame] | 293 | /* This function is called from PyOS_AfterFork to ensure that newly |
| 294 | created child processes do not share locks with the parent. |
| 295 | We now acquire the import lock around fork() calls but on some platforms |
| 296 | (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] | 297 | |
| 298 | void |
| 299 | _PyImport_ReInitLock(void) |
| 300 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 301 | if (import_lock != NULL) |
| 302 | import_lock = PyThread_allocate_lock(); |
Nick Coghlan | b2ddf79 | 2010-12-02 04:11:46 +0000 | [diff] [blame] | 303 | if (import_lock_level > 1) { |
| 304 | /* Forked as a side effect of import */ |
| 305 | long me = PyThread_get_thread_ident(); |
| 306 | PyThread_acquire_lock(import_lock, 0); |
Victor Stinner | 942003c | 2011-03-07 16:57:48 +0100 | [diff] [blame] | 307 | /* XXX: can the previous line fail? */ |
Nick Coghlan | b2ddf79 | 2010-12-02 04:11:46 +0000 | [diff] [blame] | 308 | import_lock_thread = me; |
| 309 | import_lock_level--; |
| 310 | } else { |
| 311 | import_lock_thread = -1; |
| 312 | import_lock_level = 0; |
| 313 | } |
Guido van Rossum | 8ee3e5a | 2005-09-14 18:09:42 +0000 | [diff] [blame] | 314 | } |
| 315 | |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 316 | #endif |
| 317 | |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 318 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 319 | imp_lock_held(PyObject *self, PyObject *noargs) |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 320 | { |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 321 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 322 | return PyBool_FromLong(import_lock_thread != -1); |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 323 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 324 | return PyBool_FromLong(0); |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 325 | #endif |
| 326 | } |
| 327 | |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 328 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 329 | imp_acquire_lock(PyObject *self, PyObject *noargs) |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 330 | { |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 331 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 332 | _PyImport_AcquireLock(); |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 333 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 334 | Py_INCREF(Py_None); |
| 335 | return Py_None; |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | static PyObject * |
Neal Norwitz | 08ea61a | 2003-02-17 18:18:00 +0000 | [diff] [blame] | 339 | imp_release_lock(PyObject *self, PyObject *noargs) |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 340 | { |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 341 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 342 | if (_PyImport_ReleaseLock() < 0) { |
| 343 | PyErr_SetString(PyExc_RuntimeError, |
| 344 | "not holding the import lock"); |
| 345 | return NULL; |
| 346 | } |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 347 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 348 | Py_INCREF(Py_None); |
| 349 | return Py_None; |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 350 | } |
| 351 | |
Antoine Pitrou | 8db076c | 2011-10-30 19:13:55 +0100 | [diff] [blame] | 352 | void |
| 353 | _PyImport_Fini(void) |
| 354 | { |
| 355 | Py_XDECREF(extensions); |
| 356 | extensions = NULL; |
Antoine Pitrou | 8db076c | 2011-10-30 19:13:55 +0100 | [diff] [blame] | 357 | #ifdef WITH_THREAD |
| 358 | if (import_lock != NULL) { |
| 359 | PyThread_free_lock(import_lock); |
| 360 | import_lock = NULL; |
| 361 | } |
| 362 | #endif |
| 363 | } |
| 364 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 365 | /* Helper for sys */ |
| 366 | |
| 367 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 368 | PyImport_GetModuleDict(void) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 369 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 370 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 371 | if (interp->modules == NULL) |
| 372 | Py_FatalError("PyImport_GetModuleDict: no module dictionary!"); |
| 373 | return interp->modules; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 374 | } |
| 375 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 376 | |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 377 | /* List of names to clear in sys */ |
| 378 | static char* sys_deletes[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 379 | "path", "argv", "ps1", "ps2", |
| 380 | "last_type", "last_value", "last_traceback", |
| 381 | "path_hooks", "path_importer_cache", "meta_path", |
| 382 | /* misc stuff */ |
| 383 | "flags", "float_info", |
| 384 | NULL |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 385 | }; |
| 386 | |
Guido van Rossum | 05f9dce | 1998-02-19 20:58:44 +0000 | [diff] [blame] | 387 | static char* sys_files[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 388 | "stdin", "__stdin__", |
| 389 | "stdout", "__stdout__", |
| 390 | "stderr", "__stderr__", |
| 391 | NULL |
Guido van Rossum | 05f9dce | 1998-02-19 20:58:44 +0000 | [diff] [blame] | 392 | }; |
| 393 | |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 394 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 395 | /* Un-initialize things, as good as we can */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 396 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 397 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 398 | PyImport_Cleanup(void) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 399 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 400 | Py_ssize_t pos, ndone; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 401 | PyObject *key, *value, *dict; |
| 402 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 403 | PyObject *modules = interp->modules; |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 404 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 405 | if (modules == NULL) |
| 406 | return; /* Already done */ |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 407 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 408 | /* Delete some special variables first. These are common |
| 409 | places where user values hide and people complain when their |
| 410 | destructors fail. Since the modules containing them are |
| 411 | deleted *last* of all, they would come too late in the normal |
| 412 | destruction order. Sigh. */ |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 413 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 414 | value = PyDict_GetItemString(modules, "builtins"); |
| 415 | if (value != NULL && PyModule_Check(value)) { |
| 416 | dict = PyModule_GetDict(value); |
| 417 | if (Py_VerboseFlag) |
| 418 | PySys_WriteStderr("# clear builtins._\n"); |
| 419 | PyDict_SetItemString(dict, "_", Py_None); |
| 420 | } |
| 421 | value = PyDict_GetItemString(modules, "sys"); |
| 422 | if (value != NULL && PyModule_Check(value)) { |
| 423 | char **p; |
| 424 | PyObject *v; |
| 425 | dict = PyModule_GetDict(value); |
| 426 | for (p = sys_deletes; *p != NULL; p++) { |
| 427 | if (Py_VerboseFlag) |
| 428 | PySys_WriteStderr("# clear sys.%s\n", *p); |
| 429 | PyDict_SetItemString(dict, *p, Py_None); |
| 430 | } |
| 431 | for (p = sys_files; *p != NULL; p+=2) { |
| 432 | if (Py_VerboseFlag) |
| 433 | PySys_WriteStderr("# restore sys.%s\n", *p); |
| 434 | v = PyDict_GetItemString(dict, *(p+1)); |
| 435 | if (v == NULL) |
| 436 | v = Py_None; |
| 437 | PyDict_SetItemString(dict, *p, v); |
| 438 | } |
| 439 | } |
Guido van Rossum | 05f9dce | 1998-02-19 20:58:44 +0000 | [diff] [blame] | 440 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 441 | /* First, delete __main__ */ |
| 442 | value = PyDict_GetItemString(modules, "__main__"); |
| 443 | if (value != NULL && PyModule_Check(value)) { |
| 444 | if (Py_VerboseFlag) |
| 445 | PySys_WriteStderr("# cleanup __main__\n"); |
| 446 | _PyModule_Clear(value); |
| 447 | PyDict_SetItemString(modules, "__main__", Py_None); |
| 448 | } |
Guido van Rossum | a0fec2b | 1998-02-06 17:16:02 +0000 | [diff] [blame] | 449 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 450 | /* The special treatment of "builtins" here is because even |
| 451 | when it's not referenced as a module, its dictionary is |
| 452 | referenced by almost every module's __builtins__. Since |
| 453 | deleting a module clears its dictionary (even if there are |
| 454 | references left to it), we need to delete the "builtins" |
| 455 | module last. Likewise, we don't delete sys until the very |
| 456 | end because it is implicitly referenced (e.g. by print). |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 457 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 458 | Also note that we 'delete' modules by replacing their entry |
| 459 | in the modules dict with None, rather than really deleting |
| 460 | them; this avoids a rehash of the modules dictionary and |
| 461 | also marks them as "non existent" so they won't be |
| 462 | re-imported. */ |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 463 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 464 | /* Next, repeatedly delete modules with a reference count of |
| 465 | one (skipping builtins and sys) and delete them */ |
| 466 | do { |
| 467 | ndone = 0; |
| 468 | pos = 0; |
| 469 | while (PyDict_Next(modules, &pos, &key, &value)) { |
| 470 | if (value->ob_refcnt != 1) |
| 471 | continue; |
| 472 | if (PyUnicode_Check(key) && PyModule_Check(value)) { |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 473 | if (PyUnicode_CompareWithASCIIString(key, "builtins") == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 474 | continue; |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 475 | if (PyUnicode_CompareWithASCIIString(key, "sys") == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 476 | continue; |
| 477 | if (Py_VerboseFlag) |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 478 | PySys_FormatStderr( |
| 479 | "# cleanup[1] %U\n", key); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 480 | _PyModule_Clear(value); |
| 481 | PyDict_SetItem(modules, key, Py_None); |
| 482 | ndone++; |
| 483 | } |
| 484 | } |
| 485 | } while (ndone > 0); |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 486 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 487 | /* Next, delete all modules (still skipping builtins and sys) */ |
| 488 | pos = 0; |
| 489 | while (PyDict_Next(modules, &pos, &key, &value)) { |
| 490 | if (PyUnicode_Check(key) && PyModule_Check(value)) { |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 491 | if (PyUnicode_CompareWithASCIIString(key, "builtins") == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 492 | continue; |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 493 | if (PyUnicode_CompareWithASCIIString(key, "sys") == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 494 | continue; |
| 495 | if (Py_VerboseFlag) |
Victor Stinner | 9464d61 | 2011-03-07 17:08:21 +0100 | [diff] [blame] | 496 | PySys_FormatStderr("# cleanup[2] %U\n", key); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 497 | _PyModule_Clear(value); |
| 498 | PyDict_SetItem(modules, key, Py_None); |
| 499 | } |
| 500 | } |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 501 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 502 | /* Next, delete sys and builtins (in that order) */ |
| 503 | value = PyDict_GetItemString(modules, "sys"); |
| 504 | if (value != NULL && PyModule_Check(value)) { |
| 505 | if (Py_VerboseFlag) |
| 506 | PySys_WriteStderr("# cleanup sys\n"); |
| 507 | _PyModule_Clear(value); |
| 508 | PyDict_SetItemString(modules, "sys", Py_None); |
| 509 | } |
| 510 | value = PyDict_GetItemString(modules, "builtins"); |
| 511 | if (value != NULL && PyModule_Check(value)) { |
| 512 | if (Py_VerboseFlag) |
| 513 | PySys_WriteStderr("# cleanup builtins\n"); |
| 514 | _PyModule_Clear(value); |
| 515 | PyDict_SetItemString(modules, "builtins", Py_None); |
| 516 | } |
Guido van Rossum | 758eec0 | 1998-01-19 21:58:26 +0000 | [diff] [blame] | 517 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 518 | /* Finally, clear and delete the modules directory */ |
| 519 | PyDict_Clear(modules); |
| 520 | interp->modules = NULL; |
| 521 | Py_DECREF(modules); |
Guido van Rossum | 8d15b5d | 1990-10-26 14:58:58 +0000 | [diff] [blame] | 522 | } |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 523 | |
| 524 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 525 | /* Helper for pythonrun.c -- return magic number and tag. */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 526 | |
| 527 | long |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 528 | PyImport_GetMagicNumber(void) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 529 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 530 | return pyc_magic; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 534 | const char * |
| 535 | PyImport_GetMagicTag(void) |
| 536 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 537 | return pyc_tag; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 538 | } |
| 539 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 540 | /* Magic for extension modules (built-in as well as dynamically |
| 541 | loaded). To prevent initializing an extension module more than |
| 542 | once, we keep a static dictionary 'extensions' keyed by module name |
| 543 | (for built-in modules) or by filename (for dynamically loaded |
Barry Warsaw | 9288338 | 2001-08-13 23:05:44 +0000 | [diff] [blame] | 544 | modules), containing these modules. A copy of the module's |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 545 | dictionary is stored by calling _PyImport_FixupExtensionObject() |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 546 | immediately after the module initialization function succeeds. A |
| 547 | copy can be retrieved from there by calling |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 548 | _PyImport_FindExtensionObject(). |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 549 | |
Barry Warsaw | 7c9627b | 2010-06-17 18:38:20 +0000 | [diff] [blame] | 550 | Modules which do support multiple initialization set their m_size |
| 551 | field to a non-negative number (indicating the size of the |
| 552 | module-specific state). They are still recorded in the extensions |
| 553 | dictionary, to avoid loading shared libraries twice. |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 554 | */ |
| 555 | |
| 556 | int |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 557 | _PyImport_FixupExtensionObject(PyObject *mod, PyObject *name, |
| 558 | PyObject *filename) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 559 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 560 | PyObject *modules, *dict; |
| 561 | struct PyModuleDef *def; |
| 562 | if (extensions == NULL) { |
| 563 | extensions = PyDict_New(); |
| 564 | if (extensions == NULL) |
| 565 | return -1; |
| 566 | } |
| 567 | if (mod == NULL || !PyModule_Check(mod)) { |
| 568 | PyErr_BadInternalCall(); |
| 569 | return -1; |
| 570 | } |
| 571 | def = PyModule_GetDef(mod); |
| 572 | if (!def) { |
| 573 | PyErr_BadInternalCall(); |
| 574 | return -1; |
| 575 | } |
| 576 | modules = PyImport_GetModuleDict(); |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 577 | if (PyDict_SetItem(modules, name, mod) < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 578 | return -1; |
| 579 | if (_PyState_AddModule(mod, def) < 0) { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 580 | PyDict_DelItem(modules, name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 581 | return -1; |
| 582 | } |
| 583 | if (def->m_size == -1) { |
| 584 | if (def->m_base.m_copy) { |
| 585 | /* Somebody already imported the module, |
| 586 | likely under a different name. |
| 587 | XXX this should really not happen. */ |
| 588 | Py_DECREF(def->m_base.m_copy); |
| 589 | def->m_base.m_copy = NULL; |
| 590 | } |
| 591 | dict = PyModule_GetDict(mod); |
| 592 | if (dict == NULL) |
| 593 | return -1; |
| 594 | def->m_base.m_copy = PyDict_Copy(dict); |
| 595 | if (def->m_base.m_copy == NULL) |
| 596 | return -1; |
| 597 | } |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 598 | PyDict_SetItem(extensions, filename, (PyObject*)def); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 599 | return 0; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 600 | } |
| 601 | |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 602 | int |
| 603 | _PyImport_FixupBuiltin(PyObject *mod, char *name) |
| 604 | { |
| 605 | int res; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 606 | PyObject *nameobj; |
Victor Stinner | 21fcd0c | 2011-03-07 18:28:15 +0100 | [diff] [blame] | 607 | nameobj = PyUnicode_InternFromString(name); |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 608 | if (nameobj == NULL) |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 609 | return -1; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 610 | res = _PyImport_FixupExtensionObject(mod, nameobj, nameobj); |
| 611 | Py_DECREF(nameobj); |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 612 | return res; |
| 613 | } |
| 614 | |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 615 | PyObject * |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 616 | _PyImport_FindExtensionObject(PyObject *name, PyObject *filename) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 617 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 618 | PyObject *mod, *mdict; |
| 619 | PyModuleDef* def; |
| 620 | if (extensions == NULL) |
| 621 | return NULL; |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 622 | def = (PyModuleDef*)PyDict_GetItem(extensions, filename); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 623 | if (def == NULL) |
| 624 | return NULL; |
| 625 | if (def->m_size == -1) { |
| 626 | /* Module does not support repeated initialization */ |
| 627 | if (def->m_base.m_copy == NULL) |
| 628 | return NULL; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 629 | mod = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 630 | if (mod == NULL) |
| 631 | return NULL; |
| 632 | mdict = PyModule_GetDict(mod); |
| 633 | if (mdict == NULL) |
| 634 | return NULL; |
| 635 | if (PyDict_Update(mdict, def->m_base.m_copy)) |
| 636 | return NULL; |
| 637 | } |
| 638 | else { |
| 639 | if (def->m_base.m_init == NULL) |
| 640 | return NULL; |
| 641 | mod = def->m_base.m_init(); |
| 642 | if (mod == NULL) |
| 643 | return NULL; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 644 | PyDict_SetItem(PyImport_GetModuleDict(), name, mod); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 645 | Py_DECREF(mod); |
| 646 | } |
| 647 | if (_PyState_AddModule(mod, def) < 0) { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 648 | PyDict_DelItem(PyImport_GetModuleDict(), name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 649 | Py_DECREF(mod); |
| 650 | return NULL; |
| 651 | } |
| 652 | if (Py_VerboseFlag) |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 653 | PySys_FormatStderr("import %U # previously loaded (%R)\n", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 654 | name, filename); |
| 655 | return mod; |
Brett Cannon | 9a5b25a | 2010-03-01 02:09:17 +0000 | [diff] [blame] | 656 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 657 | } |
| 658 | |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 659 | PyObject * |
Victor Stinner | 501c09a | 2011-02-23 00:02:00 +0000 | [diff] [blame] | 660 | _PyImport_FindBuiltin(const char *name) |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 661 | { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 662 | PyObject *res, *nameobj; |
Victor Stinner | 21fcd0c | 2011-03-07 18:28:15 +0100 | [diff] [blame] | 663 | nameobj = PyUnicode_InternFromString(name); |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 664 | if (nameobj == NULL) |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 665 | return NULL; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 666 | res = _PyImport_FindExtensionObject(nameobj, nameobj); |
| 667 | Py_DECREF(nameobj); |
Victor Stinner | 49d3f25 | 2010-10-17 01:24:53 +0000 | [diff] [blame] | 668 | return res; |
| 669 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 670 | |
| 671 | /* Get the module object corresponding to a module name. |
| 672 | First check the modules dictionary if there's one there, |
Walter Dörwald | f0dfc7a | 2003-10-20 14:01:56 +0000 | [diff] [blame] | 673 | 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] | 674 | Because the former action is most common, THIS DOES NOT RETURN A |
| 675 | 'NEW' REFERENCE! */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 676 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 677 | PyObject * |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 678 | PyImport_AddModuleObject(PyObject *name) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 679 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 680 | PyObject *modules = PyImport_GetModuleDict(); |
| 681 | PyObject *m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 682 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 683 | if ((m = PyDict_GetItem(modules, name)) != NULL && |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 684 | PyModule_Check(m)) |
| 685 | return m; |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 686 | m = PyModule_NewObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 687 | if (m == NULL) |
| 688 | return NULL; |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 689 | if (PyDict_SetItem(modules, name, m) != 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 690 | Py_DECREF(m); |
| 691 | return NULL; |
| 692 | } |
| 693 | Py_DECREF(m); /* Yes, it still exists, in modules! */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 694 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 695 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 696 | } |
| 697 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 698 | PyObject * |
| 699 | PyImport_AddModule(const char *name) |
| 700 | { |
| 701 | PyObject *nameobj, *module; |
| 702 | nameobj = PyUnicode_FromString(name); |
| 703 | if (nameobj == NULL) |
| 704 | return NULL; |
| 705 | module = PyImport_AddModuleObject(nameobj); |
| 706 | Py_DECREF(nameobj); |
| 707 | return module; |
| 708 | } |
| 709 | |
| 710 | |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 711 | /* Remove name from sys.modules, if it's there. */ |
| 712 | static void |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 713 | remove_module(PyObject *name) |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 714 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 715 | PyObject *modules = PyImport_GetModuleDict(); |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 716 | if (PyDict_GetItem(modules, name) == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 717 | return; |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 718 | if (PyDict_DelItem(modules, name) < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 719 | Py_FatalError("import: deleting existing key in" |
| 720 | "sys.modules failed"); |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 721 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 722 | |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 723 | static PyObject * get_sourcefile(PyObject *filename); |
| 724 | static PyObject *make_source_pathname(PyObject *pathname); |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 725 | |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 726 | /* Execute a code object in a module and return the module object |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 727 | * WITH INCREMENTED REFERENCE COUNT. If an error occurs, name is |
| 728 | * removed from sys.modules, to avoid leaving damaged module objects |
| 729 | * in sys.modules. The caller may wish to restore the original |
| 730 | * module object (if any) in this case; PyImport_ReloadModule is an |
| 731 | * example. |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 732 | * |
| 733 | * Note that PyImport_ExecCodeModuleWithPathnames() is the preferred, richer |
| 734 | * interface. The other two exist primarily for backward compatibility. |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 735 | */ |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 736 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 737 | PyImport_ExecCodeModule(char *name, PyObject *co) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 738 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 739 | return PyImport_ExecCodeModuleWithPathnames( |
| 740 | name, co, (char *)NULL, (char *)NULL); |
Guido van Rossum | e32bf6e | 1998-02-11 05:53:02 +0000 | [diff] [blame] | 741 | } |
| 742 | |
| 743 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 744 | PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname) |
Guido van Rossum | e32bf6e | 1998-02-11 05:53:02 +0000 | [diff] [blame] | 745 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 746 | return PyImport_ExecCodeModuleWithPathnames( |
| 747 | name, co, pathname, (char *)NULL); |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | PyObject * |
| 751 | PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 752 | char *cpathname) |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 753 | { |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 754 | PyObject *m = NULL; |
| 755 | PyObject *nameobj, *pathobj = NULL, *cpathobj = NULL; |
| 756 | |
| 757 | nameobj = PyUnicode_FromString(name); |
| 758 | if (nameobj == NULL) |
| 759 | return NULL; |
| 760 | |
| 761 | if (pathname != NULL) { |
| 762 | pathobj = PyUnicode_DecodeFSDefault(pathname); |
| 763 | if (pathobj == NULL) |
| 764 | goto error; |
| 765 | } else |
| 766 | pathobj = NULL; |
| 767 | if (cpathname != NULL) { |
| 768 | cpathobj = PyUnicode_DecodeFSDefault(cpathname); |
| 769 | if (cpathobj == NULL) |
| 770 | goto error; |
| 771 | } else |
| 772 | cpathobj = NULL; |
| 773 | m = PyImport_ExecCodeModuleObject(nameobj, co, pathobj, cpathobj); |
| 774 | error: |
| 775 | Py_DECREF(nameobj); |
| 776 | Py_XDECREF(pathobj); |
| 777 | Py_XDECREF(cpathobj); |
| 778 | return m; |
| 779 | } |
| 780 | |
| 781 | PyObject* |
| 782 | PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname, |
| 783 | PyObject *cpathname) |
| 784 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 785 | PyObject *modules = PyImport_GetModuleDict(); |
| 786 | PyObject *m, *d, *v; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 787 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 788 | m = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 789 | if (m == NULL) |
| 790 | return NULL; |
| 791 | /* If the module is being reloaded, we get the old module back |
| 792 | and re-use its dict to exec the new code. */ |
| 793 | d = PyModule_GetDict(m); |
| 794 | if (PyDict_GetItemString(d, "__builtins__") == NULL) { |
| 795 | if (PyDict_SetItemString(d, "__builtins__", |
| 796 | PyEval_GetBuiltins()) != 0) |
| 797 | goto error; |
| 798 | } |
| 799 | /* Remember the filename as the __file__ attribute */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 800 | if (pathname != NULL) { |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 801 | v = get_sourcefile(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 802 | if (v == NULL) |
| 803 | PyErr_Clear(); |
| 804 | } |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 805 | else |
| 806 | v = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 807 | if (v == NULL) { |
| 808 | v = ((PyCodeObject *)co)->co_filename; |
| 809 | Py_INCREF(v); |
| 810 | } |
| 811 | if (PyDict_SetItemString(d, "__file__", v) != 0) |
| 812 | PyErr_Clear(); /* Not important enough to report */ |
| 813 | Py_DECREF(v); |
Guido van Rossum | e32bf6e | 1998-02-11 05:53:02 +0000 | [diff] [blame] | 814 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 815 | /* Remember the pyc path name as the __cached__ attribute. */ |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 816 | if (cpathname != NULL) |
| 817 | v = cpathname; |
| 818 | else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 819 | v = Py_None; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 820 | if (PyDict_SetItemString(d, "__cached__", v) != 0) |
| 821 | PyErr_Clear(); /* Not important enough to report */ |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 822 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 823 | v = PyEval_EvalCode(co, d, d); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 824 | if (v == NULL) |
| 825 | goto error; |
| 826 | Py_DECREF(v); |
Guido van Rossum | b65e85c | 1997-07-10 18:00:45 +0000 | [diff] [blame] | 827 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 828 | if ((m = PyDict_GetItem(modules, name)) == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 829 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 830 | "Loaded module %R not found in sys.modules", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 831 | name); |
| 832 | return NULL; |
| 833 | } |
Guido van Rossum | b65e85c | 1997-07-10 18:00:45 +0000 | [diff] [blame] | 834 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 835 | Py_INCREF(m); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 836 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 837 | return m; |
Tim Peters | 1cd7017 | 2004-08-02 03:52:12 +0000 | [diff] [blame] | 838 | |
| 839 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 840 | remove_module(name); |
| 841 | return NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 842 | } |
| 843 | |
| 844 | |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 845 | /* Like rightmost_sep, but operate on unicode objects. */ |
| 846 | static Py_ssize_t |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 847 | rightmost_sep_obj(PyObject* o, Py_ssize_t start, Py_ssize_t end) |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 848 | { |
| 849 | Py_ssize_t found, i; |
| 850 | Py_UCS4 c; |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 851 | for (found = -1, i = start; i < end; i++) { |
Martin v. Löwis | 2db7286 | 2011-10-23 17:29:08 +0200 | [diff] [blame] | 852 | c = PyUnicode_READ_CHAR(o, i); |
| 853 | if (c == SEP |
| 854 | #ifdef ALTSEP |
| 855 | || c == ALTSEP |
| 856 | #endif |
| 857 | ) |
| 858 | { |
| 859 | found = i; |
| 860 | } |
| 861 | } |
| 862 | return found; |
| 863 | } |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 864 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 865 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 866 | /* Given a pathname to a Python byte compiled file, return the path to the |
| 867 | source file, if the path matches the PEP 3147 format. This does not check |
| 868 | for any file existence, however, if the pyc file name does not match PEP |
| 869 | 3147 style, NULL is returned. buf must be at least as big as pathname; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 870 | the resulting path will always be shorter. |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 871 | |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 872 | (...)/__pycache__/foo.<tag>.pyc -> (...)/foo.py */ |
| 873 | |
| 874 | static PyObject* |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 875 | make_source_pathname(PyObject *path) |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 876 | { |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 877 | Py_ssize_t left, right, dot0, dot1, len; |
| 878 | Py_ssize_t i, j; |
| 879 | PyObject *result; |
| 880 | int kind; |
| 881 | void *data; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 882 | |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 883 | len = PyUnicode_GET_LENGTH(path); |
| 884 | if (len > MAXPATHLEN) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 885 | return NULL; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 886 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 887 | /* Look back two slashes from the end. In between these two slashes |
| 888 | must be the string __pycache__ or this is not a PEP 3147 style |
| 889 | path. It's possible for there to be only one slash. |
| 890 | */ |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 891 | right = rightmost_sep_obj(path, 0, len); |
| 892 | if (right == -1) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 893 | return NULL; |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 894 | left = rightmost_sep_obj(path, 0, right); |
| 895 | if (left == -1) |
| 896 | left = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 897 | else |
| 898 | left++; |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 899 | if (right-left != sizeof(CACHEDIR)-1) |
| 900 | return NULL; |
| 901 | for (i = 0; i < sizeof(CACHEDIR)-1; i++) |
| 902 | if (PyUnicode_READ_CHAR(path, left+i) != CACHEDIR[i]) |
| 903 | return NULL; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 904 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 905 | /* Now verify that the path component to the right of the last slash |
| 906 | has two dots in it. |
| 907 | */ |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 908 | dot0 = PyUnicode_FindChar(path, '.', right+1, len, 1); |
| 909 | if (dot0 < 0) |
| 910 | return NULL; |
| 911 | dot1 = PyUnicode_FindChar(path, '.', dot0+1, len, 1); |
| 912 | if (dot1 < 0) |
| 913 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 914 | /* Too many dots? */ |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 915 | if (PyUnicode_FindChar(path, '.', dot1+1, len, 1) != -1) |
| 916 | return NULL; |
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 | /* This is a PEP 3147 path. Start by copying everything from the |
| 919 | start of pathname up to and including the leftmost slash. Then |
| 920 | copy the file's basename, removing the magic tag and adding a .py |
| 921 | suffix. |
| 922 | */ |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 923 | result = PyUnicode_New(left + (dot0-right) + 2, |
| 924 | PyUnicode_MAX_CHAR_VALUE(path)); |
| 925 | if (!result) |
| 926 | return NULL; |
| 927 | kind = PyUnicode_KIND(result); |
| 928 | data = PyUnicode_DATA(result); |
| 929 | PyUnicode_CopyCharacters(result, 0, path, 0, (i = left)); |
| 930 | PyUnicode_CopyCharacters(result, left, path, right+1, |
| 931 | (j = dot0-right)); |
| 932 | PyUnicode_WRITE(kind, data, i+j, 'p'); |
| 933 | PyUnicode_WRITE(kind, data, i+j+1, 'y'); |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 934 | assert(_PyUnicode_CheckConsistency(result, 1)); |
Martin v. Löwis | 8a0ef78 | 2011-10-23 18:05:06 +0200 | [diff] [blame] | 935 | return result; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 936 | } |
| 937 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 938 | |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 939 | static void |
| 940 | update_code_filenames(PyCodeObject *co, PyObject *oldname, PyObject *newname) |
| 941 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 942 | PyObject *constants, *tmp; |
| 943 | Py_ssize_t i, n; |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 944 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 945 | if (PyUnicode_Compare(co->co_filename, oldname)) |
| 946 | return; |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 947 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 948 | tmp = co->co_filename; |
| 949 | co->co_filename = newname; |
| 950 | Py_INCREF(co->co_filename); |
| 951 | Py_DECREF(tmp); |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 952 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 953 | constants = co->co_consts; |
| 954 | n = PyTuple_GET_SIZE(constants); |
| 955 | for (i = 0; i < n; i++) { |
| 956 | tmp = PyTuple_GET_ITEM(constants, i); |
| 957 | if (PyCode_Check(tmp)) |
| 958 | update_code_filenames((PyCodeObject *)tmp, |
| 959 | oldname, newname); |
| 960 | } |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 961 | } |
| 962 | |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 963 | static void |
| 964 | update_compiled_module(PyCodeObject *co, PyObject *newname) |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 965 | { |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 966 | PyObject *oldname; |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 967 | |
Victor Stinner | 2f42ae5 | 2011-03-20 00:41:24 +0100 | [diff] [blame] | 968 | if (PyUnicode_Compare(co->co_filename, newname) == 0) |
| 969 | return; |
Hirokazu Yamamoto | 4f447fb | 2009-03-04 01:52:10 +0000 | [diff] [blame] | 970 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 971 | oldname = co->co_filename; |
| 972 | Py_INCREF(oldname); |
| 973 | update_code_filenames(co, oldname, newname); |
| 974 | Py_DECREF(oldname); |
Antoine Pitrou | d35cbf6 | 2009-01-06 19:02:24 +0000 | [diff] [blame] | 975 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 976 | |
Brett Cannon | 442c9b9 | 2011-03-23 16:14:42 -0700 | [diff] [blame] | 977 | static PyObject * |
| 978 | imp_fix_co_filename(PyObject *self, PyObject *args) |
| 979 | { |
| 980 | PyObject *co; |
| 981 | PyObject *file_path; |
| 982 | |
| 983 | if (!PyArg_ParseTuple(args, "OO:_fix_co_filename", &co, &file_path)) |
| 984 | return NULL; |
| 985 | |
| 986 | if (!PyCode_Check(co)) { |
| 987 | PyErr_SetString(PyExc_TypeError, |
| 988 | "first argument must be a code object"); |
| 989 | return NULL; |
| 990 | } |
| 991 | |
| 992 | if (!PyUnicode_Check(file_path)) { |
| 993 | PyErr_SetString(PyExc_TypeError, |
| 994 | "second argument must be a string"); |
| 995 | return NULL; |
| 996 | } |
| 997 | |
| 998 | update_compiled_module((PyCodeObject*)co, file_path); |
| 999 | |
| 1000 | Py_RETURN_NONE; |
| 1001 | } |
| 1002 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1003 | |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1004 | /* Get source file -> unicode or None |
| 1005 | * Returns the path to the py file if available, else the given path |
| 1006 | */ |
| 1007 | static PyObject * |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1008 | get_sourcefile(PyObject *filename) |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1009 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1010 | Py_ssize_t len; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1011 | Py_UCS4 *fileuni; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1012 | PyObject *py; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1013 | struct stat statbuf; |
Victor Stinner | bd0850b | 2011-12-18 20:47:30 +0100 | [diff] [blame] | 1014 | int err; |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1015 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1016 | len = PyUnicode_GET_LENGTH(filename); |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1017 | if (len == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1018 | Py_RETURN_NONE; |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1019 | |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1020 | /* don't match *.pyc or *.pyo? */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1021 | fileuni = PyUnicode_AsUCS4Copy(filename); |
| 1022 | if (!fileuni) |
| 1023 | return NULL; |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1024 | if (len < 5 |
| 1025 | || fileuni[len-4] != '.' |
| 1026 | || (fileuni[len-3] != 'p' && fileuni[len-3] != 'P') |
| 1027 | || (fileuni[len-2] != 'y' && fileuni[len-2] != 'Y')) |
| 1028 | goto unchanged; |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1029 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1030 | /* Start by trying to turn PEP 3147 path into source path. If that |
| 1031 | * fails, just chop off the trailing character, i.e. legacy pyc path |
| 1032 | * to py. |
| 1033 | */ |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1034 | py = make_source_pathname(filename); |
| 1035 | if (py == NULL) { |
| 1036 | PyErr_Clear(); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1037 | py = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, fileuni, len - 1); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1038 | } |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1039 | if (py == NULL) |
| 1040 | goto error; |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1041 | |
Victor Stinner | bd0850b | 2011-12-18 20:47:30 +0100 | [diff] [blame] | 1042 | err = _Py_stat(py, &statbuf); |
| 1043 | if (err == -2) |
| 1044 | goto error; |
| 1045 | if (err == 0 && S_ISREG(statbuf.st_mode)) { |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 1046 | PyMem_Free(fileuni); |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1047 | return py; |
Martin v. Löwis | 0b1d348 | 2011-10-01 16:35:40 +0200 | [diff] [blame] | 1048 | } |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1049 | Py_DECREF(py); |
| 1050 | goto unchanged; |
| 1051 | |
| 1052 | error: |
| 1053 | PyErr_Clear(); |
| 1054 | unchanged: |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1055 | PyMem_Free(fileuni); |
Victor Stinner | c9abda0 | 2011-03-14 13:33:46 -0400 | [diff] [blame] | 1056 | Py_INCREF(filename); |
| 1057 | return filename; |
Christian Heimes | 3b06e53 | 2008-01-07 20:12:44 +0000 | [diff] [blame] | 1058 | } |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1059 | |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1060 | /* Forward */ |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1061 | static struct _frozen * find_frozen(PyObject *); |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1062 | |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1063 | |
| 1064 | /* Helper to test for built-in module */ |
| 1065 | |
| 1066 | static int |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1067 | is_builtin(PyObject *name) |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1068 | { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1069 | int i, cmp; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1070 | for (i = 0; PyImport_Inittab[i].name != NULL; i++) { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1071 | cmp = PyUnicode_CompareWithASCIIString(name, PyImport_Inittab[i].name); |
| 1072 | if (cmp == 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1073 | if (PyImport_Inittab[i].initfunc == NULL) |
| 1074 | return -1; |
| 1075 | else |
| 1076 | return 1; |
| 1077 | } |
| 1078 | } |
| 1079 | return 0; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1080 | } |
| 1081 | |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1082 | |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1083 | /* Return an importer object for a sys.path/pkg.__path__ item 'p', |
| 1084 | possibly by fetching it from the path_importer_cache dict. If it |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1085 | 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] | 1086 | that can handle the path item. Return None if no hook could; |
| 1087 | this tells our caller it should fall back to the builtin |
| 1088 | import mechanism. Cache the result in path_importer_cache. |
| 1089 | Returns a borrowed reference. */ |
| 1090 | |
| 1091 | static PyObject * |
| 1092 | get_path_importer(PyObject *path_importer_cache, PyObject *path_hooks, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1093 | PyObject *p) |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1094 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1095 | PyObject *importer; |
| 1096 | Py_ssize_t j, nhooks; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1097 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1098 | /* These conditions are the caller's responsibility: */ |
| 1099 | assert(PyList_Check(path_hooks)); |
| 1100 | assert(PyDict_Check(path_importer_cache)); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1101 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1102 | nhooks = PyList_Size(path_hooks); |
| 1103 | if (nhooks < 0) |
| 1104 | return NULL; /* Shouldn't happen */ |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1105 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1106 | importer = PyDict_GetItem(path_importer_cache, p); |
| 1107 | if (importer != NULL) |
| 1108 | return importer; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1109 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1110 | /* set path_importer_cache[p] to None to avoid recursion */ |
| 1111 | if (PyDict_SetItem(path_importer_cache, p, Py_None) != 0) |
| 1112 | return NULL; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1113 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1114 | for (j = 0; j < nhooks; j++) { |
| 1115 | PyObject *hook = PyList_GetItem(path_hooks, j); |
| 1116 | if (hook == NULL) |
| 1117 | return NULL; |
| 1118 | importer = PyObject_CallFunctionObjArgs(hook, p, NULL); |
| 1119 | if (importer != NULL) |
| 1120 | break; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1121 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1122 | if (!PyErr_ExceptionMatches(PyExc_ImportError)) { |
| 1123 | return NULL; |
| 1124 | } |
| 1125 | PyErr_Clear(); |
| 1126 | } |
| 1127 | if (importer == NULL) { |
Brett Cannon | aa93642 | 2012-04-27 15:30:58 -0400 | [diff] [blame] | 1128 | return Py_None; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1129 | } |
| 1130 | if (importer != NULL) { |
| 1131 | int err = PyDict_SetItem(path_importer_cache, p, importer); |
| 1132 | Py_DECREF(importer); |
| 1133 | if (err != 0) |
| 1134 | return NULL; |
| 1135 | } |
| 1136 | return importer; |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 1137 | } |
| 1138 | |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 1139 | PyAPI_FUNC(PyObject *) |
| 1140 | PyImport_GetImporter(PyObject *path) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1141 | PyObject *importer=NULL, *path_importer_cache=NULL, *path_hooks=NULL; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 1142 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1143 | if ((path_importer_cache = PySys_GetObject("path_importer_cache"))) { |
| 1144 | if ((path_hooks = PySys_GetObject("path_hooks"))) { |
| 1145 | importer = get_path_importer(path_importer_cache, |
| 1146 | path_hooks, path); |
| 1147 | } |
| 1148 | } |
| 1149 | Py_XINCREF(importer); /* get_path_importer returns a borrowed reference */ |
| 1150 | return importer; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 1151 | } |
| 1152 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1153 | |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1154 | static int init_builtin(PyObject *); /* Forward */ |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1155 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1156 | /* Initialize a built-in module. |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1157 | 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] | 1158 | an exception set if the initialization failed. */ |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 1159 | |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 1160 | static int |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1161 | init_builtin(PyObject *name) |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 1162 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1163 | struct _inittab *p; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 1164 | |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1165 | if (_PyImport_FindExtensionObject(name, name) != NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1166 | return 1; |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 1167 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1168 | for (p = PyImport_Inittab; p->name != NULL; p++) { |
| 1169 | PyObject *mod; |
Antoine Pitrou | 6c40eb7 | 2012-01-18 20:16:09 +0100 | [diff] [blame] | 1170 | PyModuleDef *def; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1171 | if (PyUnicode_CompareWithASCIIString(name, p->name) == 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1172 | if (p->initfunc == NULL) { |
| 1173 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1174 | "Cannot re-init internal module %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1175 | name); |
| 1176 | return -1; |
| 1177 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1178 | mod = (*p->initfunc)(); |
| 1179 | if (mod == 0) |
| 1180 | return -1; |
Antoine Pitrou | 6c40eb7 | 2012-01-18 20:16:09 +0100 | [diff] [blame] | 1181 | /* Remember pointer to module init function. */ |
| 1182 | def = PyModule_GetDef(mod); |
| 1183 | def->m_base.m_init = p->initfunc; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1184 | if (_PyImport_FixupExtensionObject(mod, name, name) < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1185 | return -1; |
| 1186 | /* FixupExtension has put the module into sys.modules, |
| 1187 | so we can release our own reference. */ |
| 1188 | Py_DECREF(mod); |
| 1189 | return 1; |
| 1190 | } |
| 1191 | } |
| 1192 | return 0; |
Guido van Rossum | 7f133ed | 1991-02-19 12:23:57 +0000 | [diff] [blame] | 1193 | } |
Guido van Rossum | f56e3db | 1993-04-01 20:59:32 +0000 | [diff] [blame] | 1194 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1195 | |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1196 | /* Frozen modules */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1197 | |
Guido van Rossum | cfd0a22 | 1996-06-17 17:06:34 +0000 | [diff] [blame] | 1198 | static struct _frozen * |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1199 | find_frozen(PyObject *name) |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1200 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1201 | struct _frozen *p; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1202 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1203 | if (name == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1204 | return NULL; |
Benjamin Peterson | d968e27 | 2008-11-05 22:48:33 +0000 | [diff] [blame] | 1205 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1206 | for (p = PyImport_FrozenModules; ; p++) { |
| 1207 | if (p->name == NULL) |
| 1208 | return NULL; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1209 | if (PyUnicode_CompareWithASCIIString(name, p->name) == 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1210 | break; |
| 1211 | } |
| 1212 | return p; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1213 | } |
| 1214 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1215 | static PyObject * |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1216 | get_frozen_object(PyObject *name) |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1217 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1218 | struct _frozen *p = find_frozen(name); |
| 1219 | int size; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1220 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1221 | if (p == NULL) { |
| 1222 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1223 | "No such frozen object named %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1224 | name); |
| 1225 | return NULL; |
| 1226 | } |
| 1227 | if (p->code == NULL) { |
| 1228 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1229 | "Excluded frozen object named %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1230 | name); |
| 1231 | return NULL; |
| 1232 | } |
| 1233 | size = p->size; |
| 1234 | if (size < 0) |
| 1235 | size = -size; |
| 1236 | return PyMarshal_ReadObjectFromString((char *)p->code, size); |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1237 | } |
| 1238 | |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 1239 | static PyObject * |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1240 | is_frozen_package(PyObject *name) |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 1241 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1242 | struct _frozen *p = find_frozen(name); |
| 1243 | int size; |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 1244 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1245 | if (p == NULL) { |
| 1246 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1247 | "No such frozen object named %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1248 | name); |
| 1249 | return NULL; |
| 1250 | } |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 1251 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1252 | size = p->size; |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 1253 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1254 | if (size < 0) |
| 1255 | Py_RETURN_TRUE; |
| 1256 | else |
| 1257 | Py_RETURN_FALSE; |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 1258 | } |
| 1259 | |
| 1260 | |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1261 | /* Initialize a frozen module. |
Brett Cannon | 3c2ac44 | 2009-03-08 20:49:47 +0000 | [diff] [blame] | 1262 | 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] | 1263 | an exception set if the initialization failed. |
| 1264 | This function is also used from frozenmain.c */ |
Guido van Rossum | 0b34490 | 1995-02-07 15:35:27 +0000 | [diff] [blame] | 1265 | |
| 1266 | int |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1267 | PyImport_ImportFrozenModuleObject(PyObject *name) |
Guido van Rossum | f56e3db | 1993-04-01 20:59:32 +0000 | [diff] [blame] | 1268 | { |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1269 | struct _frozen *p; |
| 1270 | PyObject *co, *m, *path; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1271 | int ispackage; |
| 1272 | int size; |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1273 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1274 | p = find_frozen(name); |
| 1275 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1276 | if (p == NULL) |
| 1277 | return 0; |
| 1278 | if (p->code == NULL) { |
| 1279 | PyErr_Format(PyExc_ImportError, |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1280 | "Excluded frozen object named %R", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1281 | name); |
| 1282 | return -1; |
| 1283 | } |
| 1284 | size = p->size; |
| 1285 | ispackage = (size < 0); |
| 1286 | if (ispackage) |
| 1287 | size = -size; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1288 | co = PyMarshal_ReadObjectFromString((char *)p->code, size); |
| 1289 | if (co == NULL) |
| 1290 | return -1; |
| 1291 | if (!PyCode_Check(co)) { |
| 1292 | PyErr_Format(PyExc_TypeError, |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1293 | "frozen object %R is not a code object", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1294 | name); |
| 1295 | goto err_return; |
| 1296 | } |
| 1297 | if (ispackage) { |
| 1298 | /* Set __path__ to the package name */ |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1299 | PyObject *d, *l; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1300 | int err; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1301 | m = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1302 | if (m == NULL) |
| 1303 | goto err_return; |
| 1304 | d = PyModule_GetDict(m); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1305 | l = PyList_New(1); |
| 1306 | if (l == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1307 | goto err_return; |
| 1308 | } |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1309 | Py_INCREF(name); |
| 1310 | PyList_SET_ITEM(l, 0, name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1311 | err = PyDict_SetItemString(d, "__path__", l); |
| 1312 | Py_DECREF(l); |
| 1313 | if (err != 0) |
| 1314 | goto err_return; |
| 1315 | } |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1316 | path = PyUnicode_FromString("<frozen>"); |
| 1317 | if (path == NULL) |
| 1318 | goto err_return; |
| 1319 | m = PyImport_ExecCodeModuleObject(name, co, path, NULL); |
| 1320 | Py_DECREF(path); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1321 | if (m == NULL) |
| 1322 | goto err_return; |
| 1323 | Py_DECREF(co); |
| 1324 | Py_DECREF(m); |
| 1325 | return 1; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1326 | err_return: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1327 | Py_DECREF(co); |
| 1328 | return -1; |
Guido van Rossum | f56e3db | 1993-04-01 20:59:32 +0000 | [diff] [blame] | 1329 | } |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 1330 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1331 | int |
| 1332 | PyImport_ImportFrozenModule(char *name) |
| 1333 | { |
| 1334 | PyObject *nameobj; |
| 1335 | int ret; |
| 1336 | nameobj = PyUnicode_InternFromString(name); |
| 1337 | if (nameobj == NULL) |
| 1338 | return -1; |
| 1339 | ret = PyImport_ImportFrozenModuleObject(nameobj); |
| 1340 | Py_DECREF(nameobj); |
| 1341 | return ret; |
| 1342 | } |
| 1343 | |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 1344 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1345 | /* Import a module, either built-in, frozen, or external, and return |
Guido van Rossum | 7f9fa97 | 1995-01-20 16:53:12 +0000 | [diff] [blame] | 1346 | its module object WITH INCREMENTED REFERENCE COUNT */ |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 1347 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1348 | PyObject * |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1349 | PyImport_ImportModule(const char *name) |
Guido van Rossum | 74e6a11 | 1994-08-29 12:54:38 +0000 | [diff] [blame] | 1350 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1351 | PyObject *pname; |
| 1352 | PyObject *result; |
Marc-André Lemburg | 3c61c35 | 2001-02-09 19:40:15 +0000 | [diff] [blame] | 1353 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1354 | pname = PyUnicode_FromString(name); |
| 1355 | if (pname == NULL) |
| 1356 | return NULL; |
| 1357 | result = PyImport_Import(pname); |
| 1358 | Py_DECREF(pname); |
| 1359 | return result; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
Christian Heimes | 072c0f1 | 2008-01-03 23:01:04 +0000 | [diff] [blame] | 1362 | /* Import a module without blocking |
| 1363 | * |
| 1364 | * At first it tries to fetch the module from sys.modules. If the module was |
| 1365 | * never loaded before it loads it with PyImport_ImportModule() unless another |
| 1366 | * thread holds the import lock. In the latter case the function raises an |
| 1367 | * ImportError instead of blocking. |
| 1368 | * |
| 1369 | * Returns the module object with incremented ref count. |
| 1370 | */ |
| 1371 | PyObject * |
| 1372 | PyImport_ImportModuleNoBlock(const char *name) |
| 1373 | { |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1374 | return PyImport_ImportModule(name); |
Christian Heimes | 072c0f1 | 2008-01-03 23:01:04 +0000 | [diff] [blame] | 1375 | } |
| 1376 | |
Guido van Rossum | 17fc85f | 1997-09-06 18:52:03 +0000 | [diff] [blame] | 1377 | |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 1378 | PyObject * |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1379 | PyImport_ImportModuleLevelObject(PyObject *name, PyObject *given_globals, |
| 1380 | PyObject *locals, PyObject *given_fromlist, |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 1381 | int level) |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 1382 | { |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1383 | _Py_IDENTIFIER(__import__); |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1384 | _Py_IDENTIFIER(__initializing__); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1385 | _Py_IDENTIFIER(__package__); |
| 1386 | _Py_IDENTIFIER(__path__); |
| 1387 | _Py_IDENTIFIER(__name__); |
| 1388 | _Py_IDENTIFIER(_find_and_load); |
| 1389 | _Py_IDENTIFIER(_handle_fromlist); |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1390 | _Py_IDENTIFIER(_lock_unlock_module); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1391 | _Py_static_string(single_dot, "."); |
| 1392 | PyObject *abs_name = NULL; |
| 1393 | PyObject *builtins_import = NULL; |
| 1394 | PyObject *final_mod = NULL; |
| 1395 | PyObject *mod = NULL; |
| 1396 | PyObject *package = NULL; |
| 1397 | PyObject *globals = NULL; |
| 1398 | PyObject *fromlist = NULL; |
| 1399 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 1400 | |
| 1401 | /* Make sure to use default values so as to not have |
| 1402 | PyObject_CallMethodObjArgs() truncate the parameter list because of a |
| 1403 | NULL argument. */ |
| 1404 | if (given_globals == NULL) { |
| 1405 | globals = PyDict_New(); |
| 1406 | if (globals == NULL) { |
| 1407 | goto error; |
| 1408 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1409 | } |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1410 | else { |
| 1411 | /* Only have to care what given_globals is if it will be used |
| 1412 | fortsomething. */ |
| 1413 | if (level > 0 && !PyDict_Check(given_globals)) { |
| 1414 | PyErr_SetString(PyExc_TypeError, "globals must be a dict"); |
| 1415 | goto error; |
| 1416 | } |
| 1417 | globals = given_globals; |
| 1418 | Py_INCREF(globals); |
| 1419 | } |
| 1420 | |
| 1421 | if (given_fromlist == NULL) { |
| 1422 | fromlist = PyList_New(0); |
| 1423 | if (fromlist == NULL) { |
| 1424 | goto error; |
| 1425 | } |
| 1426 | } |
| 1427 | else { |
| 1428 | fromlist = given_fromlist; |
| 1429 | Py_INCREF(fromlist); |
| 1430 | } |
| 1431 | if (name == NULL) { |
| 1432 | PyErr_SetString(PyExc_ValueError, "Empty module name"); |
| 1433 | goto error; |
| 1434 | } |
| 1435 | |
| 1436 | /* The below code is importlib.__import__() & _gcd_import(), ported to C |
| 1437 | for added performance. */ |
| 1438 | |
| 1439 | if (!PyUnicode_Check(name)) { |
| 1440 | PyErr_SetString(PyExc_TypeError, "module name must be a string"); |
| 1441 | goto error; |
| 1442 | } |
| 1443 | else if (PyUnicode_READY(name) < 0) { |
| 1444 | goto error; |
| 1445 | } |
| 1446 | if (level < 0) { |
| 1447 | PyErr_SetString(PyExc_ValueError, "level must be >= 0"); |
| 1448 | goto error; |
| 1449 | } |
| 1450 | else if (level > 0) { |
| 1451 | package = _PyDict_GetItemId(globals, &PyId___package__); |
| 1452 | if (package != NULL && package != Py_None) { |
| 1453 | Py_INCREF(package); |
| 1454 | if (!PyUnicode_Check(package)) { |
| 1455 | PyErr_SetString(PyExc_TypeError, "package must be a string"); |
| 1456 | goto error; |
| 1457 | } |
| 1458 | } |
| 1459 | else { |
Brett Cannon | 273323c | 2012-04-17 19:05:11 -0400 | [diff] [blame] | 1460 | package = _PyDict_GetItemId(globals, &PyId___name__); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1461 | if (package == NULL) { |
Brett Cannon | 273323c | 2012-04-17 19:05:11 -0400 | [diff] [blame] | 1462 | PyErr_SetString(PyExc_KeyError, "'__name__' not in globals"); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1463 | goto error; |
| 1464 | } |
| 1465 | else if (!PyUnicode_Check(package)) { |
| 1466 | PyErr_SetString(PyExc_TypeError, "__name__ must be a string"); |
| 1467 | } |
| 1468 | Py_INCREF(package); |
| 1469 | |
| 1470 | if (_PyDict_GetItemId(globals, &PyId___path__) == NULL) { |
Brett Cannon | 740fce0 | 2012-04-14 14:23:49 -0400 | [diff] [blame] | 1471 | PyObject *partition = NULL; |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1472 | PyObject *borrowed_dot = _PyUnicode_FromId(&single_dot); |
| 1473 | if (borrowed_dot == NULL) { |
| 1474 | goto error; |
| 1475 | } |
Brett Cannon | 740fce0 | 2012-04-14 14:23:49 -0400 | [diff] [blame] | 1476 | partition = PyUnicode_RPartition(package, borrowed_dot); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1477 | Py_DECREF(package); |
| 1478 | if (partition == NULL) { |
| 1479 | goto error; |
| 1480 | } |
| 1481 | package = PyTuple_GET_ITEM(partition, 0); |
| 1482 | Py_INCREF(package); |
| 1483 | Py_DECREF(partition); |
| 1484 | } |
| 1485 | } |
| 1486 | |
| 1487 | if (PyDict_GetItem(interp->modules, package) == NULL) { |
| 1488 | PyErr_Format(PyExc_SystemError, |
| 1489 | "Parent module %R not loaded, cannot perform relative " |
| 1490 | "import", package); |
| 1491 | goto error; |
| 1492 | } |
| 1493 | } |
| 1494 | else { /* level == 0 */ |
| 1495 | if (PyUnicode_GET_LENGTH(name) == 0) { |
| 1496 | PyErr_SetString(PyExc_ValueError, "Empty module name"); |
| 1497 | goto error; |
| 1498 | } |
| 1499 | package = Py_None; |
| 1500 | Py_INCREF(package); |
| 1501 | } |
| 1502 | |
| 1503 | if (level > 0) { |
| 1504 | Py_ssize_t last_dot = PyUnicode_GET_LENGTH(package); |
| 1505 | PyObject *base = NULL; |
| 1506 | int level_up = 1; |
| 1507 | |
| 1508 | for (level_up = 1; level_up < level; level_up += 1) { |
| 1509 | last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1); |
| 1510 | if (last_dot == -2) { |
| 1511 | goto error; |
| 1512 | } |
| 1513 | else if (last_dot == -1) { |
| 1514 | PyErr_SetString(PyExc_ValueError, |
| 1515 | "attempted relative import beyond top-level " |
| 1516 | "package"); |
| 1517 | goto error; |
| 1518 | } |
| 1519 | } |
| 1520 | base = PyUnicode_Substring(package, 0, last_dot); |
| 1521 | if (PyUnicode_GET_LENGTH(name) > 0) { |
Antoine Pitrou | 538ba2a | 2012-04-16 21:52:45 +0200 | [diff] [blame] | 1522 | PyObject *borrowed_dot, *seq = NULL; |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1523 | |
| 1524 | borrowed_dot = _PyUnicode_FromId(&single_dot); |
Antoine Pitrou | 538ba2a | 2012-04-16 21:52:45 +0200 | [diff] [blame] | 1525 | seq = PyTuple_Pack(2, base, name); |
| 1526 | Py_DECREF(base); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1527 | if (borrowed_dot == NULL || seq == NULL) { |
| 1528 | goto error; |
| 1529 | } |
| 1530 | |
| 1531 | abs_name = PyUnicode_Join(borrowed_dot, seq); |
| 1532 | Py_DECREF(seq); |
| 1533 | if (abs_name == NULL) { |
| 1534 | goto error; |
| 1535 | } |
| 1536 | } |
| 1537 | else { |
| 1538 | abs_name = base; |
| 1539 | } |
| 1540 | } |
| 1541 | else { |
| 1542 | abs_name = name; |
| 1543 | Py_INCREF(abs_name); |
| 1544 | } |
| 1545 | |
Brian Curtin | e6b299f | 2012-04-14 14:19:33 -0500 | [diff] [blame] | 1546 | #ifdef WITH_THREAD |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1547 | _PyImport_AcquireLock(); |
| 1548 | #endif |
| 1549 | /* From this point forward, goto error_with_unlock! */ |
| 1550 | if (PyDict_Check(globals)) { |
| 1551 | builtins_import = _PyDict_GetItemId(globals, &PyId___import__); |
| 1552 | } |
| 1553 | if (builtins_import == NULL) { |
| 1554 | builtins_import = _PyDict_GetItemId(interp->builtins, &PyId___import__); |
| 1555 | if (builtins_import == NULL) { |
| 1556 | Py_FatalError("__import__ missing"); |
| 1557 | } |
| 1558 | } |
| 1559 | Py_INCREF(builtins_import); |
| 1560 | |
| 1561 | mod = PyDict_GetItem(interp->modules, abs_name); |
| 1562 | if (mod == Py_None) { |
Brett Cannon | 27fc528 | 2012-04-15 14:15:31 -0400 | [diff] [blame] | 1563 | PyObject *msg = PyUnicode_FromFormat("import of %R halted; " |
| 1564 | "None in sys.modules", abs_name); |
| 1565 | if (msg != NULL) { |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 1566 | PyErr_SetImportError(msg, abs_name, NULL); |
| 1567 | Py_DECREF(msg); |
Brett Cannon | 27fc528 | 2012-04-15 14:15:31 -0400 | [diff] [blame] | 1568 | } |
Antoine Pitrou | 71382cb | 2012-04-16 18:48:49 +0200 | [diff] [blame] | 1569 | mod = NULL; |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1570 | goto error_with_unlock; |
| 1571 | } |
| 1572 | else if (mod != NULL) { |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1573 | PyObject *value; |
| 1574 | int initializing = 0; |
| 1575 | |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1576 | Py_INCREF(mod); |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1577 | /* Only call _bootstrap._lock_unlock_module() if __initializing__ is true. */ |
| 1578 | value = _PyObject_GetAttrId(mod, &PyId___initializing__); |
| 1579 | if (value == NULL) |
| 1580 | PyErr_Clear(); |
| 1581 | else { |
| 1582 | initializing = PyObject_IsTrue(value); |
| 1583 | Py_DECREF(value); |
| 1584 | if (initializing == -1) |
| 1585 | PyErr_Clear(); |
| 1586 | } |
| 1587 | if (initializing > 0) { |
| 1588 | /* _bootstrap._lock_unlock_module() releases the import lock */ |
| 1589 | value = _PyObject_CallMethodObjIdArgs(interp->importlib, |
| 1590 | &PyId__lock_unlock_module, abs_name, |
| 1591 | NULL); |
| 1592 | if (value == NULL) |
| 1593 | goto error; |
| 1594 | Py_DECREF(value); |
| 1595 | } |
| 1596 | else { |
| 1597 | #ifdef WITH_THREAD |
| 1598 | if (_PyImport_ReleaseLock() < 0) { |
| 1599 | PyErr_SetString(PyExc_RuntimeError, "not holding the import lock"); |
| 1600 | goto error; |
| 1601 | } |
| 1602 | #endif |
| 1603 | } |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1604 | } |
| 1605 | else { |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1606 | /* _bootstrap._find_and_load() releases the import lock */ |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1607 | mod = _PyObject_CallMethodObjIdArgs(interp->importlib, |
| 1608 | &PyId__find_and_load, abs_name, |
| 1609 | builtins_import, NULL); |
| 1610 | if (mod == NULL) { |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1611 | goto error; |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1612 | } |
| 1613 | } |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1614 | /* From now on we don't hold the import lock anymore. */ |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1615 | |
| 1616 | if (PyObject_Not(fromlist)) { |
| 1617 | if (level == 0 || PyUnicode_GET_LENGTH(name) > 0) { |
| 1618 | PyObject *front = NULL; |
Brian Curtin | e6b299f | 2012-04-14 14:19:33 -0500 | [diff] [blame] | 1619 | PyObject *partition = NULL; |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1620 | PyObject *borrowed_dot = _PyUnicode_FromId(&single_dot); |
| 1621 | |
| 1622 | if (borrowed_dot == NULL) { |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1623 | goto error; |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1624 | } |
| 1625 | |
Brian Curtin | e6b299f | 2012-04-14 14:19:33 -0500 | [diff] [blame] | 1626 | partition = PyUnicode_Partition(name, borrowed_dot); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1627 | if (partition == NULL) { |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1628 | goto error; |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1629 | } |
| 1630 | |
Antoine Pitrou | 6efa50a | 2012-05-07 21:41:59 +0200 | [diff] [blame] | 1631 | if (PyUnicode_GET_LENGTH(PyTuple_GET_ITEM(partition, 1)) == 0) { |
| 1632 | /* No dot in module name, simple exit */ |
| 1633 | Py_DECREF(partition); |
| 1634 | final_mod = mod; |
| 1635 | Py_INCREF(mod); |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1636 | goto error; |
Antoine Pitrou | 6efa50a | 2012-05-07 21:41:59 +0200 | [diff] [blame] | 1637 | } |
| 1638 | |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1639 | front = PyTuple_GET_ITEM(partition, 0); |
| 1640 | Py_INCREF(front); |
| 1641 | Py_DECREF(partition); |
| 1642 | |
| 1643 | if (level == 0) { |
Antoine Pitrou | 6efa50a | 2012-05-07 21:41:59 +0200 | [diff] [blame] | 1644 | final_mod = PyObject_CallFunctionObjArgs(builtins_import, front, NULL); |
Antoine Pitrou | b78174c | 2012-05-06 17:15:23 +0200 | [diff] [blame] | 1645 | Py_DECREF(front); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1646 | } |
| 1647 | else { |
Antoine Pitrou | 22a1d17 | 2012-04-16 22:06:21 +0200 | [diff] [blame] | 1648 | Py_ssize_t cut_off = PyUnicode_GET_LENGTH(name) - |
| 1649 | PyUnicode_GET_LENGTH(front); |
| 1650 | Py_ssize_t abs_name_len = PyUnicode_GET_LENGTH(abs_name); |
Brett Cannon | 49f8d8b | 2012-04-14 21:50:00 -0400 | [diff] [blame] | 1651 | PyObject *to_return = PyUnicode_Substring(abs_name, 0, |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1652 | abs_name_len - cut_off); |
Antoine Pitrou | 22a1d17 | 2012-04-16 22:06:21 +0200 | [diff] [blame] | 1653 | Py_DECREF(front); |
| 1654 | if (to_return == NULL) { |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1655 | goto error; |
Antoine Pitrou | 22a1d17 | 2012-04-16 22:06:21 +0200 | [diff] [blame] | 1656 | } |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1657 | |
| 1658 | final_mod = PyDict_GetItem(interp->modules, to_return); |
Brett Cannon | 49f8d8b | 2012-04-14 21:50:00 -0400 | [diff] [blame] | 1659 | if (final_mod == NULL) { |
| 1660 | PyErr_Format(PyExc_KeyError, |
| 1661 | "%R not in sys.modules as expected", |
| 1662 | to_return); |
| 1663 | } |
| 1664 | else { |
| 1665 | Py_INCREF(final_mod); |
| 1666 | } |
Antoine Pitrou | b78174c | 2012-05-06 17:15:23 +0200 | [diff] [blame] | 1667 | Py_DECREF(to_return); |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1668 | } |
| 1669 | } |
| 1670 | else { |
| 1671 | final_mod = mod; |
| 1672 | Py_INCREF(mod); |
| 1673 | } |
| 1674 | } |
| 1675 | else { |
| 1676 | final_mod = _PyObject_CallMethodObjIdArgs(interp->importlib, |
| 1677 | &PyId__handle_fromlist, mod, |
| 1678 | fromlist, builtins_import, |
| 1679 | NULL); |
| 1680 | } |
Antoine Pitrou | ea3eb88 | 2012-05-17 18:55:59 +0200 | [diff] [blame] | 1681 | goto error; |
Antoine Pitrou | 6efa50a | 2012-05-07 21:41:59 +0200 | [diff] [blame] | 1682 | |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1683 | error_with_unlock: |
Brian Curtin | e6b299f | 2012-04-14 14:19:33 -0500 | [diff] [blame] | 1684 | #ifdef WITH_THREAD |
Brett Cannon | fd07415 | 2012-04-14 14:10:13 -0400 | [diff] [blame] | 1685 | if (_PyImport_ReleaseLock() < 0) { |
| 1686 | PyErr_SetString(PyExc_RuntimeError, "not holding the import lock"); |
| 1687 | } |
| 1688 | #endif |
| 1689 | error: |
| 1690 | Py_XDECREF(abs_name); |
| 1691 | Py_XDECREF(builtins_import); |
| 1692 | Py_XDECREF(mod); |
| 1693 | Py_XDECREF(package); |
| 1694 | Py_XDECREF(globals); |
| 1695 | Py_XDECREF(fromlist); |
| 1696 | return final_mod; |
Guido van Rossum | 75acc9c | 1998-03-03 22:26:50 +0000 | [diff] [blame] | 1697 | } |
| 1698 | |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 1699 | PyObject * |
Benjamin Peterson | 04778a8 | 2011-05-25 09:29:00 -0500 | [diff] [blame] | 1700 | PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject *locals, |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 1701 | PyObject *fromlist, int level) |
| 1702 | { |
| 1703 | PyObject *nameobj, *mod; |
| 1704 | nameobj = PyUnicode_FromString(name); |
| 1705 | if (nameobj == NULL) |
| 1706 | return NULL; |
| 1707 | mod = PyImport_ImportModuleLevelObject(nameobj, globals, locals, |
| 1708 | fromlist, level); |
| 1709 | Py_DECREF(nameobj); |
| 1710 | return mod; |
| 1711 | } |
| 1712 | |
| 1713 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1714 | /* Re-import a module of any kind and return its module object, WITH |
| 1715 | INCREMENTED REFERENCE COUNT */ |
| 1716 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1717 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1718 | PyImport_ReloadModule(PyObject *m) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1719 | { |
Brett Cannon | 62228db | 2012-04-29 14:38:11 -0400 | [diff] [blame] | 1720 | _Py_IDENTIFIER(reload); |
| 1721 | PyObject *reloaded_module = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1722 | PyObject *modules = PyImport_GetModuleDict(); |
Brett Cannon | 62228db | 2012-04-29 14:38:11 -0400 | [diff] [blame] | 1723 | PyObject *imp = PyDict_GetItemString(modules, "imp"); |
| 1724 | if (imp == NULL) { |
| 1725 | imp = PyImport_ImportModule("imp"); |
| 1726 | if (imp == NULL) { |
| 1727 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1728 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1729 | } |
Brett Cannon | 62228db | 2012-04-29 14:38:11 -0400 | [diff] [blame] | 1730 | else { |
| 1731 | Py_INCREF(imp); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1732 | } |
Victor Stinner | ad3c03b | 2011-03-14 09:21:33 -0400 | [diff] [blame] | 1733 | |
Brett Cannon | 62228db | 2012-04-29 14:38:11 -0400 | [diff] [blame] | 1734 | reloaded_module = _PyObject_CallMethodId(imp, &PyId_reload, "O", m); |
| 1735 | Py_DECREF(imp); |
| 1736 | return reloaded_module; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1737 | } |
| 1738 | |
| 1739 | |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 1740 | /* Higher-level import emulator which emulates the "import" statement |
| 1741 | more accurately -- it invokes the __import__() function from the |
| 1742 | builtins of the current globals. This means that the import is |
| 1743 | done using whatever import hooks are installed in the current |
Brett Cannon | bc2eff3 | 2010-09-19 21:39:02 +0000 | [diff] [blame] | 1744 | environment. |
Guido van Rossum | 6058eb4 | 1998-12-21 19:51:00 +0000 | [diff] [blame] | 1745 | A dummy list ["__doc__"] is passed as the 4th argument so that |
Neal Norwitz | 80e7f27 | 2007-08-26 06:45:23 +0000 | [diff] [blame] | 1746 | e.g. PyImport_Import(PyUnicode_FromString("win32com.client.gencache")) |
Guido van Rossum | 6058eb4 | 1998-12-21 19:51:00 +0000 | [diff] [blame] | 1747 | will return <module "gencache"> instead of <module "win32com">. */ |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 1748 | |
| 1749 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1750 | PyImport_Import(PyObject *module_name) |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 1751 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1752 | static PyObject *silly_list = NULL; |
| 1753 | static PyObject *builtins_str = NULL; |
| 1754 | static PyObject *import_str = NULL; |
| 1755 | PyObject *globals = NULL; |
| 1756 | PyObject *import = NULL; |
| 1757 | PyObject *builtins = NULL; |
Brett Cannon | bc2eff3 | 2010-09-19 21:39:02 +0000 | [diff] [blame] | 1758 | PyObject *modules = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1759 | PyObject *r = NULL; |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 1760 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1761 | /* Initialize constant string objects */ |
| 1762 | if (silly_list == NULL) { |
| 1763 | import_str = PyUnicode_InternFromString("__import__"); |
| 1764 | if (import_str == NULL) |
| 1765 | return NULL; |
| 1766 | builtins_str = PyUnicode_InternFromString("__builtins__"); |
| 1767 | if (builtins_str == NULL) |
| 1768 | return NULL; |
Brett Cannon | bc2eff3 | 2010-09-19 21:39:02 +0000 | [diff] [blame] | 1769 | silly_list = PyList_New(0); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1770 | if (silly_list == NULL) |
| 1771 | return NULL; |
| 1772 | } |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 1773 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1774 | /* Get the builtins from current globals */ |
| 1775 | globals = PyEval_GetGlobals(); |
| 1776 | if (globals != NULL) { |
| 1777 | Py_INCREF(globals); |
| 1778 | builtins = PyObject_GetItem(globals, builtins_str); |
| 1779 | if (builtins == NULL) |
| 1780 | goto err; |
| 1781 | } |
| 1782 | else { |
| 1783 | /* No globals -- use standard builtins, and fake globals */ |
| 1784 | builtins = PyImport_ImportModuleLevel("builtins", |
| 1785 | NULL, NULL, NULL, 0); |
| 1786 | if (builtins == NULL) |
| 1787 | return NULL; |
| 1788 | globals = Py_BuildValue("{OO}", builtins_str, builtins); |
| 1789 | if (globals == NULL) |
| 1790 | goto err; |
| 1791 | } |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 1792 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1793 | /* Get the __import__ function from the builtins */ |
| 1794 | if (PyDict_Check(builtins)) { |
| 1795 | import = PyObject_GetItem(builtins, import_str); |
| 1796 | if (import == NULL) |
| 1797 | PyErr_SetObject(PyExc_KeyError, import_str); |
| 1798 | } |
| 1799 | else |
| 1800 | import = PyObject_GetAttr(builtins, import_str); |
| 1801 | if (import == NULL) |
| 1802 | goto err; |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 1803 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1804 | /* Call the __import__ function with the proper argument list |
Brett Cannon | bc2eff3 | 2010-09-19 21:39:02 +0000 | [diff] [blame] | 1805 | Always use absolute import here. |
| 1806 | Calling for side-effect of import. */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1807 | r = PyObject_CallFunction(import, "OOOOi", module_name, globals, |
| 1808 | globals, silly_list, 0, NULL); |
Brett Cannon | bc2eff3 | 2010-09-19 21:39:02 +0000 | [diff] [blame] | 1809 | if (r == NULL) |
| 1810 | goto err; |
| 1811 | Py_DECREF(r); |
| 1812 | |
| 1813 | modules = PyImport_GetModuleDict(); |
| 1814 | r = PyDict_GetItem(modules, module_name); |
| 1815 | if (r != NULL) |
| 1816 | Py_INCREF(r); |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 1817 | |
| 1818 | err: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1819 | Py_XDECREF(globals); |
| 1820 | Py_XDECREF(builtins); |
| 1821 | Py_XDECREF(import); |
Tim Peters | 50d8d37 | 2001-02-28 05:34:27 +0000 | [diff] [blame] | 1822 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1823 | return r; |
Guido van Rossum | d47a0a8 | 1997-08-14 20:11:26 +0000 | [diff] [blame] | 1824 | } |
| 1825 | |
| 1826 | |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1827 | /* Module 'imp' provides Python access to the primitives used for |
| 1828 | importing modules. |
| 1829 | */ |
| 1830 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1831 | static PyObject * |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1832 | imp_make_magic(long magic) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1833 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1834 | char buf[4]; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1835 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1836 | buf[0] = (char) ((magic >> 0) & 0xff); |
| 1837 | buf[1] = (char) ((magic >> 8) & 0xff); |
| 1838 | buf[2] = (char) ((magic >> 16) & 0xff); |
| 1839 | buf[3] = (char) ((magic >> 24) & 0xff); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1840 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1841 | return PyBytes_FromStringAndSize(buf, 4); |
Victor Stinner | 3e2b717 | 2010-11-09 09:32:19 +0000 | [diff] [blame] | 1842 | } |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1843 | |
| 1844 | static PyObject * |
| 1845 | imp_get_magic(PyObject *self, PyObject *noargs) |
| 1846 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1847 | return imp_make_magic(pyc_magic); |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1848 | } |
| 1849 | |
| 1850 | static PyObject * |
| 1851 | imp_get_tag(PyObject *self, PyObject *noargs) |
| 1852 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1853 | return PyUnicode_FromString(pyc_tag); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1854 | } |
| 1855 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1856 | static PyObject * |
Brett Cannon | 2657df4 | 2012-05-04 15:20:40 -0400 | [diff] [blame] | 1857 | imp_extension_suffixes(PyObject *self, PyObject *noargs) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1858 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1859 | PyObject *list; |
Brett Cannon | 2657df4 | 2012-05-04 15:20:40 -0400 | [diff] [blame] | 1860 | const char *suffix; |
| 1861 | unsigned int index = 0; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1862 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1863 | list = PyList_New(0); |
| 1864 | if (list == NULL) |
| 1865 | return NULL; |
Brett Cannon | 2657df4 | 2012-05-04 15:20:40 -0400 | [diff] [blame] | 1866 | #ifdef HAVE_DYNAMIC_LOADING |
| 1867 | while ((suffix = _PyImport_DynLoadFiletab[index])) { |
| 1868 | PyObject *item = PyUnicode_FromString(suffix); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1869 | if (item == NULL) { |
| 1870 | Py_DECREF(list); |
| 1871 | return NULL; |
| 1872 | } |
| 1873 | if (PyList_Append(list, item) < 0) { |
| 1874 | Py_DECREF(list); |
| 1875 | Py_DECREF(item); |
| 1876 | return NULL; |
| 1877 | } |
| 1878 | Py_DECREF(item); |
Brett Cannon | 2657df4 | 2012-05-04 15:20:40 -0400 | [diff] [blame] | 1879 | index += 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1880 | } |
Brett Cannon | 2657df4 | 2012-05-04 15:20:40 -0400 | [diff] [blame] | 1881 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1882 | return list; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1883 | } |
| 1884 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1885 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1886 | imp_init_builtin(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1887 | { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1888 | PyObject *name; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1889 | int ret; |
| 1890 | PyObject *m; |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1891 | if (!PyArg_ParseTuple(args, "U:init_builtin", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1892 | return NULL; |
| 1893 | ret = init_builtin(name); |
| 1894 | if (ret < 0) |
| 1895 | return NULL; |
| 1896 | if (ret == 0) { |
| 1897 | Py_INCREF(Py_None); |
| 1898 | return Py_None; |
| 1899 | } |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1900 | m = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1901 | Py_XINCREF(m); |
| 1902 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1903 | } |
| 1904 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1905 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1906 | imp_init_frozen(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1907 | { |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1908 | PyObject *name; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1909 | int ret; |
| 1910 | PyObject *m; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1911 | if (!PyArg_ParseTuple(args, "U:init_frozen", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1912 | return NULL; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1913 | ret = PyImport_ImportFrozenModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1914 | if (ret < 0) |
| 1915 | return NULL; |
| 1916 | if (ret == 0) { |
| 1917 | Py_INCREF(Py_None); |
| 1918 | return Py_None; |
| 1919 | } |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1920 | m = PyImport_AddModuleObject(name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1921 | Py_XINCREF(m); |
| 1922 | return m; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1923 | } |
| 1924 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1925 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1926 | imp_get_frozen_object(PyObject *self, PyObject *args) |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1927 | { |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1928 | PyObject *name; |
Jack Jansen | 95ffa23 | 1995-10-03 14:38:41 +0000 | [diff] [blame] | 1929 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1930 | if (!PyArg_ParseTuple(args, "U:get_frozen_object", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1931 | return NULL; |
| 1932 | return get_frozen_object(name); |
Guido van Rossum | 6ec1efb | 1995-08-04 04:08:57 +0000 | [diff] [blame] | 1933 | } |
| 1934 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1935 | static PyObject * |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 1936 | imp_is_frozen_package(PyObject *self, PyObject *args) |
| 1937 | { |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1938 | PyObject *name; |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 1939 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1940 | if (!PyArg_ParseTuple(args, "U:is_frozen_package", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1941 | return NULL; |
| 1942 | return is_frozen_package(name); |
Brett Cannon | 8d11013 | 2009-03-15 02:20:16 +0000 | [diff] [blame] | 1943 | } |
| 1944 | |
| 1945 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1946 | imp_is_builtin(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1947 | { |
Victor Stinner | 9587286 | 2011-03-07 18:20:56 +0100 | [diff] [blame] | 1948 | PyObject *name; |
| 1949 | if (!PyArg_ParseTuple(args, "U:is_builtin", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1950 | return NULL; |
| 1951 | return PyLong_FromLong(is_builtin(name)); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1952 | } |
| 1953 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1954 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1955 | imp_is_frozen(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1956 | { |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1957 | PyObject *name; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1958 | struct _frozen *p; |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 1959 | if (!PyArg_ParseTuple(args, "U:is_frozen", &name)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1960 | return NULL; |
| 1961 | p = find_frozen(name); |
| 1962 | return PyBool_FromLong((long) (p == NULL ? 0 : p->size)); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1963 | } |
| 1964 | |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 1965 | #ifdef HAVE_DYNAMIC_LOADING |
| 1966 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 1967 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1968 | imp_load_dynamic(PyObject *self, PyObject *args) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1969 | { |
Victor Stinner | fefd70c | 2011-03-14 15:54:07 -0400 | [diff] [blame] | 1970 | PyObject *name, *pathname, *fob = NULL, *mod; |
| 1971 | FILE *fp; |
| 1972 | |
| 1973 | if (!PyArg_ParseTuple(args, "UO&|O:load_dynamic", |
| 1974 | &name, PyUnicode_FSDecoder, &pathname, &fob)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1975 | return NULL; |
Victor Stinner | fefd70c | 2011-03-14 15:54:07 -0400 | [diff] [blame] | 1976 | if (fob != NULL) { |
Antoine Pitrou | f3a42de | 2012-05-04 22:40:25 +0200 | [diff] [blame] | 1977 | fp = _Py_fopen(pathname, "r"); |
Victor Stinner | e9ddbf6 | 2011-03-22 10:46:35 +0100 | [diff] [blame] | 1978 | if (fp == NULL) { |
| 1979 | Py_DECREF(pathname); |
Antoine Pitrou | f3a42de | 2012-05-04 22:40:25 +0200 | [diff] [blame] | 1980 | if (!PyErr_Occurred()) |
| 1981 | PyErr_SetFromErrno(PyExc_IOError); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1982 | return NULL; |
Victor Stinner | e9ddbf6 | 2011-03-22 10:46:35 +0100 | [diff] [blame] | 1983 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1984 | } |
Victor Stinner | fefd70c | 2011-03-14 15:54:07 -0400 | [diff] [blame] | 1985 | else |
| 1986 | fp = NULL; |
| 1987 | mod = _PyImport_LoadDynamicModule(name, pathname, fp); |
Victor Stinner | e9ddbf6 | 2011-03-22 10:46:35 +0100 | [diff] [blame] | 1988 | Py_DECREF(pathname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1989 | if (fp) |
| 1990 | fclose(fp); |
Victor Stinner | fefd70c | 2011-03-14 15:54:07 -0400 | [diff] [blame] | 1991 | return mod; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 1992 | } |
| 1993 | |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 1994 | #endif /* HAVE_DYNAMIC_LOADING */ |
| 1995 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 1996 | |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 1997 | /* Doc strings */ |
| 1998 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1999 | PyDoc_STRVAR(doc_imp, |
Brett Cannon | 6f44d66 | 2012-04-15 16:08:47 -0400 | [diff] [blame] | 2000 | "(Extremely) low-level import machinery bits as used by importlib and imp."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 2001 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2002 | PyDoc_STRVAR(doc_get_magic, |
| 2003 | "get_magic() -> string\n\ |
| 2004 | Return the magic number for .pyc or .pyo files."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 2005 | |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 2006 | PyDoc_STRVAR(doc_get_tag, |
| 2007 | "get_tag() -> string\n\ |
| 2008 | Return the magic tag for .pyc or .pyo files."); |
| 2009 | |
Brett Cannon | 2657df4 | 2012-05-04 15:20:40 -0400 | [diff] [blame] | 2010 | PyDoc_STRVAR(doc_extension_suffixes, |
| 2011 | "extension_suffixes() -> list of strings\n\ |
| 2012 | Returns the list of file suffixes used to identify extension modules."); |
Guido van Rossum | 0207e6d | 1997-09-09 22:04:42 +0000 | [diff] [blame] | 2013 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2014 | PyDoc_STRVAR(doc_lock_held, |
Tim Peters | a7c6509 | 2004-08-01 23:26:05 +0000 | [diff] [blame] | 2015 | "lock_held() -> boolean\n\ |
| 2016 | Return True if the import lock is currently held, else False.\n\ |
| 2017 | On platforms without threads, return False."); |
Tim Peters | 6923234 | 2001-08-30 05:16:13 +0000 | [diff] [blame] | 2018 | |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 2019 | PyDoc_STRVAR(doc_acquire_lock, |
| 2020 | "acquire_lock() -> None\n\ |
Neal Norwitz | 2294c0d | 2003-02-12 23:02:21 +0000 | [diff] [blame] | 2021 | Acquires the interpreter's import lock for the current thread.\n\ |
| 2022 | This lock should be used by import hooks to ensure thread-safety\n\ |
| 2023 | when importing modules.\n\ |
Guido van Rossum | c4f4ca9 | 2003-02-12 21:46:11 +0000 | [diff] [blame] | 2024 | On platforms without threads, this function does nothing."); |
| 2025 | |
| 2026 | PyDoc_STRVAR(doc_release_lock, |
| 2027 | "release_lock() -> None\n\ |
| 2028 | Release the interpreter's import lock.\n\ |
| 2029 | On platforms without threads, this function does nothing."); |
| 2030 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 2031 | static PyMethodDef imp_methods[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2032 | {"get_magic", imp_get_magic, METH_NOARGS, doc_get_magic}, |
| 2033 | {"get_tag", imp_get_tag, METH_NOARGS, doc_get_tag}, |
Brett Cannon | 2657df4 | 2012-05-04 15:20:40 -0400 | [diff] [blame] | 2034 | {"extension_suffixes", imp_extension_suffixes, METH_NOARGS, |
| 2035 | doc_extension_suffixes}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2036 | {"lock_held", imp_lock_held, METH_NOARGS, doc_lock_held}, |
| 2037 | {"acquire_lock", imp_acquire_lock, METH_NOARGS, doc_acquire_lock}, |
| 2038 | {"release_lock", imp_release_lock, METH_NOARGS, doc_release_lock}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2039 | {"get_frozen_object", imp_get_frozen_object, METH_VARARGS}, |
| 2040 | {"is_frozen_package", imp_is_frozen_package, METH_VARARGS}, |
| 2041 | {"init_builtin", imp_init_builtin, METH_VARARGS}, |
| 2042 | {"init_frozen", imp_init_frozen, METH_VARARGS}, |
| 2043 | {"is_builtin", imp_is_builtin, METH_VARARGS}, |
| 2044 | {"is_frozen", imp_is_frozen, METH_VARARGS}, |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 2045 | #ifdef HAVE_DYNAMIC_LOADING |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2046 | {"load_dynamic", imp_load_dynamic, METH_VARARGS}, |
Guido van Rossum | 96a8fb7 | 1999-12-22 14:09:35 +0000 | [diff] [blame] | 2047 | #endif |
Brett Cannon | 442c9b9 | 2011-03-23 16:14:42 -0700 | [diff] [blame] | 2048 | {"_fix_co_filename", imp_fix_co_filename, METH_VARARGS}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2049 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2050 | }; |
| 2051 | |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2052 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 2053 | static struct PyModuleDef impmodule = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2054 | PyModuleDef_HEAD_INIT, |
Brett Cannon | 6f44d66 | 2012-04-15 16:08:47 -0400 | [diff] [blame] | 2055 | "_imp", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2056 | doc_imp, |
| 2057 | 0, |
| 2058 | imp_methods, |
| 2059 | NULL, |
| 2060 | NULL, |
| 2061 | NULL, |
| 2062 | NULL |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 2063 | }; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2064 | |
Jason Tishler | 6bc06ec | 2003-09-04 11:59:50 +0000 | [diff] [blame] | 2065 | PyMODINIT_FUNC |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 2066 | PyInit_imp(void) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2067 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2068 | PyObject *m, *d; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2069 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2070 | m = PyModule_Create(&impmodule); |
| 2071 | if (m == NULL) |
| 2072 | goto failure; |
| 2073 | d = PyModule_GetDict(m); |
| 2074 | if (d == NULL) |
| 2075 | goto failure; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2076 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2077 | return m; |
Guido van Rossum | aee0bad | 1997-09-05 07:33:22 +0000 | [diff] [blame] | 2078 | failure: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2079 | Py_XDECREF(m); |
| 2080 | return NULL; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 2081 | } |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2082 | |
| 2083 | |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 2084 | /* API for embedding applications that want to add their own entries |
| 2085 | to the table of built-in modules. This should normally be called |
| 2086 | *before* Py_Initialize(). When the table resize fails, -1 is |
| 2087 | returned and the existing table is unchanged. |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2088 | |
| 2089 | After a similar function by Just van Rossum. */ |
| 2090 | |
| 2091 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 2092 | PyImport_ExtendInittab(struct _inittab *newtab) |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2093 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2094 | static struct _inittab *our_copy = NULL; |
| 2095 | struct _inittab *p; |
| 2096 | int i, n; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2097 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2098 | /* Count the number of entries in both tables */ |
| 2099 | for (n = 0; newtab[n].name != NULL; n++) |
| 2100 | ; |
| 2101 | if (n == 0) |
| 2102 | return 0; /* Nothing to do */ |
| 2103 | for (i = 0; PyImport_Inittab[i].name != NULL; i++) |
| 2104 | ; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2105 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2106 | /* Allocate new memory for the combined table */ |
| 2107 | p = our_copy; |
| 2108 | PyMem_RESIZE(p, struct _inittab, i+n+1); |
| 2109 | if (p == NULL) |
| 2110 | return -1; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2111 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2112 | /* Copy the tables into the new memory */ |
| 2113 | if (our_copy != PyImport_Inittab) |
| 2114 | memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct _inittab)); |
| 2115 | PyImport_Inittab = our_copy = p; |
| 2116 | memcpy(p+i, newtab, (n+1) * sizeof(struct _inittab)); |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2117 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2118 | return 0; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2119 | } |
| 2120 | |
| 2121 | /* Shorthand to add a single entry given a name and a function */ |
| 2122 | |
| 2123 | int |
Brett Cannon | a826f32 | 2009-04-02 03:41:46 +0000 | [diff] [blame] | 2124 | PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void)) |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2125 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2126 | struct _inittab newtab[2]; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2127 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2128 | memset(newtab, '\0', sizeof newtab); |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2129 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2130 | newtab[0].name = (char *)name; |
| 2131 | newtab[0].initfunc = initfunc; |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2132 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2133 | return PyImport_ExtendInittab(newtab); |
Guido van Rossum | 09cae1f | 1998-05-14 02:32:54 +0000 | [diff] [blame] | 2134 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2135 | |
| 2136 | #ifdef __cplusplus |
| 2137 | } |
| 2138 | #endif |