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