blob: 1872b2953a9040c3b295a6362f6b12aa4dcd983e [file] [log] [blame]
Brett Cannon6f44d662012-04-15 16:08:47 -04001"""This module provides the components needed to build your own __import__
2function. Undocumented functions are obsolete.
3
4In most cases it is preferred you consider using the importlib module's
5functionality over this module.
6
7"""
8# (Probably) need to stay in _imp
Brett Cannon62228db2012-04-29 14:38:11 -04009from _imp import (lock_held, acquire_lock, release_lock,
Brett Cannon3e2fe052013-03-17 15:48:16 -070010 get_frozen_object, is_frozen_package,
Brett Cannon2fef4d22012-04-15 19:06:23 -040011 init_builtin, init_frozen, is_builtin, is_frozen,
Brett Cannonac9f2f32012-08-10 13:47:54 -040012 _fix_co_filename)
Brett Cannon3e2fe052013-03-17 15:48:16 -070013try:
14 from _imp import load_dynamic
Brett Cannon0a140662013-06-13 20:57:26 -040015except ModuleNotFoundError:
Brett Cannon3e2fe052013-03-17 15:48:16 -070016 # Platform doesn't support dynamic loading.
17 load_dynamic = None
Brett Cannon6f44d662012-04-15 16:08:47 -040018
Brett Cannona38e8142013-06-14 22:35:40 -040019from importlib._bootstrap import SourcelessFileLoader, _ERR_MSG
Brett Cannon01a76172012-04-15 20:25:23 -040020
Brett Cannoncb66eb02012-05-11 12:58:42 -040021from importlib import machinery
Brett Cannon05a647d2013-06-14 19:02:34 -040022from importlib import util
Brett Cannon3fe35e62013-06-14 15:04:26 -040023import importlib
Brett Cannon2ee61422012-04-15 22:28:28 -040024import os
Brett Cannone69f0df2012-04-21 21:09:46 -040025import sys
26import tokenize
Brett Cannona3c96152013-06-14 22:26:30 -040027import types
Brett Cannoncb66eb02012-05-11 12:58:42 -040028import warnings
Brett Cannone69f0df2012-04-21 21:09:46 -040029
30
Brett Cannonc0499522012-05-11 14:48:41 -040031# DEPRECATED
Brett Cannone69f0df2012-04-21 21:09:46 -040032SEARCH_ERROR = 0
33PY_SOURCE = 1
34PY_COMPILED = 2
35C_EXTENSION = 3
36PY_RESOURCE = 4
37PKG_DIRECTORY = 5
38C_BUILTIN = 6
39PY_FROZEN = 7
40PY_CODERESOURCE = 8
41IMP_HOOK = 9
Brett Cannon2ee61422012-04-15 22:28:28 -040042
43
Brett Cannona3c96152013-06-14 22:26:30 -040044def new_module(name):
45 """**DEPRECATED**
46
47 Create a new module.
48
49 The module is not entered into sys.modules.
50
51 """
52 return types.ModuleType(name)
53
54
Brett Cannon77b2abd2012-07-09 16:09:00 -040055def get_magic():
Brett Cannon05a647d2013-06-14 19:02:34 -040056 """**DEPRECATED**
57
58 Return the magic number for .pyc or .pyo files.
59 """
60 return util.MAGIC_NUMBER
Brett Cannon77b2abd2012-07-09 16:09:00 -040061
62
Brett Cannon98979b82012-07-02 15:13:11 -040063def get_tag():
64 """Return the magic tag for .pyc or .pyo files."""
65 return sys.implementation.cache_tag
66
67
Brett Cannona38e8142013-06-14 22:35:40 -040068def cache_from_source(path, debug_override=None):
69 """**DEPRECATED**
70
71 Given the path to a .py file, return the path to its .pyc/.pyo file.
72
73 The .py file does not need to exist; this simply returns the path to the
74 .pyc/.pyo file calculated as if the .py file were imported. The extension
75 will be .pyc unless sys.flags.optimize is non-zero, then it will be .pyo.
76
77 If debug_override is not None, then it must be a boolean and is used in
78 place of sys.flags.optimize.
79
80 If sys.implementation.cache_tag is None then NotImplementedError is raised.
81
82 """
83 return util.cache_from_source(path, debug_override)
84
85
86def source_from_cache(path):
87 """**DEPRECATED**
88
89 Given the path to a .pyc./.pyo file, return the path to its .py file.
90
91 The .pyc/.pyo file does not need to exist; this simply returns the path to
92 the .py file calculated to correspond to the .pyc/.pyo file. If path does
93 not conform to PEP 3147 format, ValueError will be raised. If
94 sys.implementation.cache_tag is None then NotImplementedError is raised.
95
96 """
97 return util.source_from_cache(path)
98
99
Brett Cannon2657df42012-05-04 15:20:40 -0400100def get_suffixes():
Brett Cannoncb66eb02012-05-11 12:58:42 -0400101 warnings.warn('imp.get_suffixes() is deprecated; use the constants '
102 'defined on importlib.machinery instead',
103 DeprecationWarning, 2)
Brett Cannonac9f2f32012-08-10 13:47:54 -0400104 extensions = [(s, 'rb', C_EXTENSION) for s in machinery.EXTENSION_SUFFIXES]
Brett Cannoncb66eb02012-05-11 12:58:42 -0400105 source = [(s, 'U', PY_SOURCE) for s in machinery.SOURCE_SUFFIXES]
106 bytecode = [(s, 'rb', PY_COMPILED) for s in machinery.BYTECODE_SUFFIXES]
Brett Cannon2657df42012-05-04 15:20:40 -0400107
108 return extensions + source + bytecode
109
110
Brett Cannonacf85cd2012-04-29 12:50:03 -0400111class NullImporter:
112
113 """Null import object."""
114
115 def __init__(self, path):
116 if path == '':
117 raise ImportError('empty pathname', path='')
118 elif os.path.isdir(path):
119 raise ImportError('existing directory', path=path)
120
121 def find_module(self, fullname):
122 """Always returns None."""
123 return None
124
125
Brett Cannon64befe92012-04-17 19:14:26 -0400126class _HackedGetData:
Brett Cannon16475ad2012-04-16 22:11:25 -0400127
Brett Cannon64befe92012-04-17 19:14:26 -0400128 """Compatibiilty support for 'file' arguments of various load_*()
129 functions."""
Brett Cannon16475ad2012-04-16 22:11:25 -0400130
131 def __init__(self, fullname, path, file=None):
132 super().__init__(fullname, path)
133 self.file = file
134
135 def get_data(self, path):
Brett Cannon64befe92012-04-17 19:14:26 -0400136 """Gross hack to contort loader to deal w/ load_*()'s bad API."""
Brett Cannon938d44d2012-04-22 19:58:33 -0400137 if self.file and path == self.path:
Brett Cannon16475ad2012-04-16 22:11:25 -0400138 with self.file:
139 # Technically should be returning bytes, but
140 # SourceLoader.get_code() just passed what is returned to
141 # compile() which can handle str. And converting to bytes would
142 # require figuring out the encoding to decode to and
143 # tokenize.detect_encoding() only accepts bytes.
144 return self.file.read()
145 else:
146 return super().get_data(path)
147
148
Brett Cannon589c4ff2013-06-14 22:29:58 -0400149class _LoadSourceCompatibility(_HackedGetData, machinery.SourceFileLoader):
Brett Cannon64befe92012-04-17 19:14:26 -0400150
151 """Compatibility support for implementing load_source()."""
152
153
Brett Cannon16475ad2012-04-16 22:11:25 -0400154def load_source(name, pathname, file=None):
Brett Cannonc0499522012-05-11 14:48:41 -0400155 msg = ('imp.load_source() is deprecated; use '
156 'importlib.machinery.SourceFileLoader(name, pathname).load_module()'
157 ' instead')
158 warnings.warn(msg, DeprecationWarning, 2)
Brett Cannon5a4c2332013-04-28 11:53:26 -0400159 _LoadSourceCompatibility(name, pathname, file).load_module(name)
160 module = sys.modules[name]
161 # To allow reloading to potentially work, use a non-hacked loader which
162 # won't rely on a now-closed file object.
Brett Cannon589c4ff2013-06-14 22:29:58 -0400163 module.__loader__ = machinery.SourceFileLoader(name, pathname)
Brett Cannon5a4c2332013-04-28 11:53:26 -0400164 return module
Brett Cannon16475ad2012-04-16 22:11:25 -0400165
166
Brett Cannon589c4ff2013-06-14 22:29:58 -0400167class _LoadCompiledCompatibility(_HackedGetData, SourcelessFileLoader):
Brett Cannon64befe92012-04-17 19:14:26 -0400168
169 """Compatibility support for implementing load_compiled()."""
170
171
172def load_compiled(name, pathname, file=None):
Brett Cannonc0499522012-05-11 14:48:41 -0400173 msg = ('imp.load_compiled() is deprecated; use '
174 'importlib.machinery.SourcelessFileLoader(name, pathname).'
175 'load_module() instead ')
176 warnings.warn(msg, DeprecationWarning, 2)
Brett Cannon5a4c2332013-04-28 11:53:26 -0400177 _LoadCompiledCompatibility(name, pathname, file).load_module(name)
178 module = sys.modules[name]
179 # To allow reloading to potentially work, use a non-hacked loader which
180 # won't rely on a now-closed file object.
Brett Cannon589c4ff2013-06-14 22:29:58 -0400181 module.__loader__ = SourcelessFileLoader(name, pathname)
Brett Cannon5a4c2332013-04-28 11:53:26 -0400182 return module
Brett Cannon64befe92012-04-17 19:14:26 -0400183
184
Brett Cannon2ee61422012-04-15 22:28:28 -0400185def load_package(name, path):
Brett Cannonc0499522012-05-11 14:48:41 -0400186 msg = ('imp.load_package() is deprecated; use either '
187 'importlib.machinery.SourceFileLoader() or '
188 'importlib.machinery.SourcelessFileLoader() instead')
189 warnings.warn(msg, DeprecationWarning, 2)
Brett Cannon2ee61422012-04-15 22:28:28 -0400190 if os.path.isdir(path):
Brett Cannonc0499522012-05-11 14:48:41 -0400191 extensions = (machinery.SOURCE_SUFFIXES[:] +
192 machinery.BYTECODE_SUFFIXES[:])
Brett Cannon2ee61422012-04-15 22:28:28 -0400193 for extension in extensions:
194 path = os.path.join(path, '__init__'+extension)
195 if os.path.exists(path):
196 break
197 else:
198 raise ValueError('{!r} is not a package'.format(path))
Brett Cannon589c4ff2013-06-14 22:29:58 -0400199 return machinery.SourceFileLoader(name, path).load_module(name)
Brett Cannon2ee61422012-04-15 22:28:28 -0400200
Brett Cannon01a76172012-04-15 20:25:23 -0400201
202def load_module(name, file, filename, details):
Brett Cannon0450c9e2012-06-15 19:39:06 -0400203 """**DEPRECATED**
204
205 Load a module, given information returned by find_module().
Brett Cannon01a76172012-04-15 20:25:23 -0400206
207 The module name must include the full package name, if any.
208
209 """
210 suffix, mode, type_ = details
Brett Cannonc0499522012-05-11 14:48:41 -0400211 with warnings.catch_warnings():
212 warnings.simplefilter('ignore')
213 if mode and (not mode.startswith(('r', 'U')) or '+' in mode):
214 raise ValueError('invalid file open mode {!r}'.format(mode))
Brett Cannon9d0f7722013-05-03 10:37:08 -0400215 elif file is None and type_ in {PY_SOURCE, PY_COMPILED}:
Brett Cannonc0499522012-05-11 14:48:41 -0400216 msg = 'file object required for import (type code {})'.format(type_)
217 raise ValueError(msg)
218 elif type_ == PY_SOURCE:
219 return load_source(name, filename, file)
220 elif type_ == PY_COMPILED:
221 return load_compiled(name, filename, file)
Brett Cannon3e2fe052013-03-17 15:48:16 -0700222 elif type_ == C_EXTENSION and load_dynamic is not None:
Brett Cannon9d0f7722013-05-03 10:37:08 -0400223 if file is None:
224 with open(filename, 'rb') as opened_file:
225 return load_dynamic(name, filename, opened_file)
226 else:
227 return load_dynamic(name, filename, file)
Brett Cannonc0499522012-05-11 14:48:41 -0400228 elif type_ == PKG_DIRECTORY:
229 return load_package(name, filename)
230 elif type_ == C_BUILTIN:
231 return init_builtin(name)
232 elif type_ == PY_FROZEN:
233 return init_frozen(name)
234 else:
Nick Coghlan91b9f132012-09-01 00:13:45 +1000235 msg = "Don't know how to import {} (type code {})".format(name, type_)
Brett Cannonc0499522012-05-11 14:48:41 -0400236 raise ImportError(msg, name=name)
Brett Cannone69f0df2012-04-21 21:09:46 -0400237
238
239def find_module(name, path=None):
Brett Cannon0450c9e2012-06-15 19:39:06 -0400240 """**DEPRECATED**
241
242 Search for a module.
Brett Cannone69f0df2012-04-21 21:09:46 -0400243
244 If path is omitted or None, search for a built-in, frozen or special
245 module and continue search in sys.path. The module name cannot
246 contain '.'; to search for a submodule of a package, pass the
247 submodule name and the package's __path__.
248
249 """
250 if not isinstance(name, str):
251 raise TypeError("'name' must be a str, not {}".format(type(name)))
252 elif not isinstance(path, (type(None), list)):
253 # Backwards-compatibility
254 raise RuntimeError("'list' must be None or a list, "
255 "not {}".format(type(name)))
256
257 if path is None:
258 if is_builtin(name):
259 return None, None, ('', '', C_BUILTIN)
260 elif is_frozen(name):
261 return None, None, ('', '', PY_FROZEN)
262 else:
263 path = sys.path
264
265 for entry in path:
266 package_directory = os.path.join(entry, name)
Brett Cannoncb66eb02012-05-11 12:58:42 -0400267 for suffix in ['.py', machinery.BYTECODE_SUFFIXES[0]]:
Brett Cannone69f0df2012-04-21 21:09:46 -0400268 package_file_name = '__init__' + suffix
269 file_path = os.path.join(package_directory, package_file_name)
270 if os.path.isfile(file_path):
271 return None, package_directory, ('', '', PKG_DIRECTORY)
Brett Cannoncb66eb02012-05-11 12:58:42 -0400272 with warnings.catch_warnings():
273 warnings.simplefilter('ignore')
274 for suffix, mode, type_ in get_suffixes():
275 file_name = name + suffix
276 file_path = os.path.join(entry, file_name)
277 if os.path.isfile(file_path):
278 break
279 else:
280 continue
281 break # Break out of outer loop when breaking out of inner loop.
Brett Cannone69f0df2012-04-21 21:09:46 -0400282 else:
Brett Cannon589c4ff2013-06-14 22:29:58 -0400283 raise ImportError(_ERR_MSG.format(name), name=name)
Brett Cannone69f0df2012-04-21 21:09:46 -0400284
285 encoding = None
286 if mode == 'U':
287 with open(file_path, 'rb') as file:
288 encoding = tokenize.detect_encoding(file.readline)[0]
289 file = open(file_path, mode, encoding=encoding)
290 return file, file_path, (suffix, mode, type_)
Brett Cannon62228db2012-04-29 14:38:11 -0400291
292
Brett Cannon62228db2012-04-29 14:38:11 -0400293def reload(module):
Brett Cannon3fe35e62013-06-14 15:04:26 -0400294 """**DEPRECATED**
295
296 Reload the module and return it.
Brett Cannon62228db2012-04-29 14:38:11 -0400297
298 The module must have been successfully imported before.
299
300 """
Brett Cannon3fe35e62013-06-14 15:04:26 -0400301 return importlib.reload(module)