forked from catboost/catboost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimporter.pxi
366 lines (289 loc) · 11.2 KB
/
importer.pxi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
import marshal
import sys
from _codecs import utf_8_decode, utf_8_encode
from _frozen_importlib import _call_with_frames_removed, spec_from_loader, BuiltinImporter
from _frozen_importlib_external import _os, _path_isfile, path_sep
from _io import FileIO
import __res as __resource
_b = lambda x: x if isinstance(x, bytes) else utf_8_encode(x)[0]
_s = lambda x: x if isinstance(x, str) else utf_8_decode(x)[0]
env_entry_point = b'Y_PYTHON_ENTRY_POINT'
env_source_root = b'Y_PYTHON_SOURCE_ROOT'
executable = sys.executable or 'Y_PYTHON'
sys.modules['run_import_hook'] = __resource
# This is the prefix in contrib/tools/python3/src/Lib/ya.make.
py_prefix = b'py/'
py_prefix_len = len(py_prefix)
Y_PYTHON_SOURCE_ROOT = _os.environ.get(env_source_root)
def _print(*xs):
"""
This is helpful for debugging, since automatic bytes to str conversion is
not available yet. It is also possible to debug with GDB by breaking on
__Pyx_AddTraceback (with Python GDB pretty printers enabled).
"""
parts = []
for s in xs:
if not isinstance(s, (bytes, str)):
s = str(s)
parts.append(_s(s))
sys.stderr.write(' '.join(parts) + '\n')
def file_bytes(path):
# 'open' is not avaiable yet.
with FileIO(path, 'r') as f:
return f.read()
def iter_keys(prefix):
l = len(prefix)
for idx in range(__resource.count()):
key = __resource.key_by_index(idx)
if key.startswith(prefix):
yield key, key[l:]
def iter_py_modules(with_keys=False):
for key, path in iter_keys(b'resfs/file/' + py_prefix):
if path.endswith(b'.py'): # It may also end with '.pyc'.
mod = _s(path[:-3].replace(b'/', b'.'))
if with_keys:
yield key, mod
else:
yield mod
def iter_prefixes(s):
i = s.find('.')
while i >= 0:
yield s[:i]
i = s.find('.', i + 1)
def resfs_resolve(path):
"""
Return the absolute path of a root-relative path if it exists.
"""
path = _b(path)
if Y_PYTHON_SOURCE_ROOT:
if not path.startswith(Y_PYTHON_SOURCE_ROOT):
path = _b(path_sep).join((Y_PYTHON_SOURCE_ROOT, path))
if _path_isfile(path):
return path
def resfs_src(key, resfs_file=False):
"""
Return the root-relative file path of a resource key.
"""
if resfs_file:
key = b'resfs/file/' + _b(key)
return __resource.find(b'resfs/src/' + _b(key))
def resfs_read(path, builtin=None):
"""
Return the bytes of the resource file at path, or None.
If builtin is True, do not look for it on the filesystem.
If builtin is False, do not look in the builtin resources.
"""
if builtin is not True:
arcpath = resfs_src(path, resfs_file=True)
if arcpath:
fspath = resfs_resolve(arcpath)
if fspath:
return file_bytes(fspath)
if builtin is not False:
return __resource.find(b'resfs/file/' + _b(path))
def resfs_files(prefix=b''):
"""
List builtin resource file paths.
"""
return [key[11:] for key, _ in iter_keys(b'resfs/file/' + _b(prefix))]
def mod_path(mod):
"""
Return the resfs path to the source code of the module with the given name.
"""
return py_prefix + _b(mod).replace(b'.', b'/') + b'.py'
class ResourceImporter(object):
""" A meta_path importer that loads code from built-in resources.
"""
def __init__(self):
self.memory = set(iter_py_modules()) # Set of importable module names.
self.source_map = {} # Map from file names to module names.
self._source_name = {} # Map from original to altered module names.
self._package_prefix = ''
for p in list(self.memory) + list(sys.builtin_module_names):
for pp in iter_prefixes(p):
k = pp + '.__init__'
if k not in self.memory:
self.memory.add(k)
def for_package(self, name):
import copy
importer = copy.copy(self)
importer._package_prefix = name + '.'
return importer
def find_spec(self, fullname, path=None, target=None):
try:
is_package = self.is_package(fullname)
except ImportError:
return None
return spec_from_loader(fullname, self, is_package=is_package)
def find_module(self, fullname, path=None):
"""For backward compatibility."""
spec = self.find_spec(fullname, path)
return spec.loader if spec is not None else None
def create_module(self, spec):
"""Use default semantics for module creation."""
def exec_module(self, module):
code = self.get_code(module.__name__)
module.__file__ = code.co_filename
if self.is_package(module.__name__):
module.__path__= [executable + path_sep + module.__name__.replace('.', path_sep)]
# exec(code, module.__dict__)
_call_with_frames_removed(exec, code, module.__dict__)
# PEP-302 extension 1 of 3: data loader.
def get_data(self, path):
path = _b(path)
abspath = resfs_resolve(path)
if abspath:
return file_bytes(abspath)
path = path.replace(_b('\\'), _b('/'))
data = resfs_read(path, builtin=True)
if data is None:
raise IOError(path) # Y_PYTHON_ENTRY_POINT=:resource_files
return data
# PEP-302 extension 2 of 3: get __file__ without importing.
def get_filename(self, fullname):
modname = fullname
if self.is_package(fullname):
fullname += '.__init__'
relpath = resfs_src(mod_path(fullname), resfs_file=True)
if isinstance(relpath, bytes):
relpath = _s(relpath)
return relpath or modname
# PEP-302 extension 3 of 3: packaging introspection.
# Used by `linecache` (while printing tracebacks) unless module filename
# exists on the filesystem.
def get_source(self, fullname):
fullname = self._source_name.get(fullname) or fullname
if self.is_package(fullname):
fullname += '.__init__'
relpath = self.get_filename(fullname)
if relpath:
abspath = resfs_resolve(relpath)
if abspath:
return _s(file_bytes(abspath))
data = resfs_read(mod_path(fullname))
return _s(data) if data else ''
def get_code(self, fullname):
modname = fullname
if self.is_package(fullname):
fullname += '.__init__'
path = mod_path(fullname)
relpath = resfs_src(path, resfs_file=True)
if relpath:
abspath = resfs_resolve(relpath)
if abspath:
data = file_bytes(abspath)
return compile(data, _s(abspath), 'exec', dont_inherit=True)
yapyc_path = path + b'.yapyc3'
yapyc_data = resfs_read(yapyc_path, builtin=True)
if yapyc_data:
return marshal.loads(yapyc_data)
else:
py_data = resfs_read(path, builtin=True)
if py_data:
return compile(py_data, _s(relpath), 'exec', dont_inherit=True)
else:
# This covers packages with no __init__.py in resources.
return compile('', modname, 'exec', dont_inherit=True)
def is_package(self, fullname):
if fullname in self.memory:
return False
if fullname + '.__init__' in self.memory:
return True
raise ImportError(fullname)
# Extension for contrib/python/coverage.
def file_source(self, filename):
"""
Return the key of the module source by its resource path.
"""
if not self.source_map:
for key, mod in iter_py_modules(with_keys=True):
path = self.get_filename(mod)
self.source_map[path] = key
if filename in self.source_map:
return self.source_map[filename]
if resfs_read(filename, builtin=True) is not None:
return b'resfs/file/' + _b(filename)
return b''
# Extension for pkgutil.iter_modules.
def iter_modules(self, prefix=''):
import re
rx = re.compile(re.escape(self._package_prefix) + r'([^.]+)(\.__init__)?$')
for p in self.memory:
m = rx.match(p)
if m:
yield prefix + m.group(1), m.group(2) is not None
def get_resource_reader(self, fullname):
try:
if not self.is_package(fullname):
return None
except ImportError:
return None
return _ResfsResourceReader(self, fullname)
class _ResfsResourceReader:
def __init__(self, importer, fullname):
self.importer = importer
self.fullname = fullname
import os
self.prefix = "{}/".format(os.path.dirname(self.importer.get_filename(self.fullname)))
def open_resource(self, resource):
path = f'{self.prefix}{resource}'
from io import BytesIO
try:
return BytesIO(self.importer.get_data(path))
except OSError:
raise FileNotFoundError(path)
def resource_path(self, resource):
# All resources are in the binary file, so there is no path to the file.
# Raising FileNotFoundError tells the higher level API to extract the
# binary data and create a temporary file.
raise FileNotFoundError
def is_resource(self, name):
path = f'{self.prefix}{name}'
try:
self.importer.get_data(path)
except OSError:
return False
return True
def contents(self):
subdirs_seen = set()
for key in resfs_files(self.prefix):
relative = key[len(self.prefix):]
res_or_subdir, *other = relative.split(b'/')
if not other:
yield _s(res_or_subdir)
elif res_or_subdir not in subdirs_seen:
subdirs_seen.add(res_or_subdir)
yield _s(res_or_subdir)
class BuiltinSubmoduleImporter(BuiltinImporter):
@classmethod
def find_spec(cls, fullname, path=None, target=None):
if path is not None:
return super().find_spec(fullname, None, target)
else:
return None
def excepthook(*args, **kws):
# traceback module cannot be imported at module level, because interpreter
# is not fully initialized yet
import traceback
return traceback.print_exception(*args, **kws)
sys.meta_path.insert(0, BuiltinSubmoduleImporter)
importer = ResourceImporter()
sys.meta_path.insert(0, importer)
def executable_path_hook(path):
if path == executable:
return importer
if path.startswith(executable + path_sep):
return importer.for_package(path[len(executable + path_sep):].replace(path_sep, '.'))
raise ImportError(path)
if executable not in sys.path:
sys.path.insert(0, executable)
sys.path_hooks.insert(0, executable_path_hook)
sys.path_importer_cache[executable] = importer
# Indicator that modules and resources are built-in rather than on the file system.
sys.is_standalone_binary = True
sys.frozen = True
# Set of names of importable modules.
sys.extra_modules = importer.memory
# Use custom implementation of traceback printer.
# Built-in printer (PyTraceBack_Print) does not support custom module loaders
sys.excepthook = excepthook