2021-06-03 09:43:42 +00:00
|
|
|
#!/usr/bin/env python3
|
2016-02-10 13:01:31 +00:00
|
|
|
from __future__ import unicode_literals, print_function
|
|
|
|
|
|
|
|
from inspect import getsource
|
2017-02-23 19:09:13 +00:00
|
|
|
import io
|
2016-02-10 13:01:31 +00:00
|
|
|
import os
|
|
|
|
from os.path import dirname as dirn
|
|
|
|
import sys
|
|
|
|
|
|
|
|
print('WARNING: Lazy loading extractors is an experimental feature that may not always work', file=sys.stderr)
|
|
|
|
|
|
|
|
sys.path.insert(0, dirn(dirn((os.path.abspath(__file__)))))
|
|
|
|
|
|
|
|
lazy_extractors_filename = sys.argv[1]
|
|
|
|
if os.path.exists(lazy_extractors_filename):
|
|
|
|
os.remove(lazy_extractors_filename)
|
|
|
|
|
2021-04-22 11:02:06 +00:00
|
|
|
# Block plugins from loading
|
2021-08-13 15:24:17 +00:00
|
|
|
plugins_dirname = 'ytdlp_plugins'
|
|
|
|
plugins_blocked_dirname = 'ytdlp_plugins_blocked'
|
|
|
|
if os.path.exists(plugins_dirname):
|
|
|
|
os.rename(plugins_dirname, plugins_blocked_dirname)
|
2021-04-22 11:02:06 +00:00
|
|
|
|
2021-02-24 18:45:56 +00:00
|
|
|
from yt_dlp.extractor import _ALL_CLASSES
|
|
|
|
from yt_dlp.extractor.common import InfoExtractor, SearchInfoExtractor
|
2016-02-10 13:01:31 +00:00
|
|
|
|
2021-08-13 15:24:17 +00:00
|
|
|
if os.path.exists(plugins_blocked_dirname):
|
|
|
|
os.rename(plugins_blocked_dirname, plugins_dirname)
|
2021-04-22 11:02:06 +00:00
|
|
|
|
2016-02-10 13:01:31 +00:00
|
|
|
with open('devscripts/lazy_load_template.py', 'rt') as f:
|
|
|
|
module_template = f.read()
|
|
|
|
|
2021-08-22 23:15:30 +00:00
|
|
|
CLASS_PROPERTIES = ['ie_key', 'working', '_match_valid_url', 'suitable', '_match_id', 'get_temp_id']
|
2016-06-22 17:13:46 +00:00
|
|
|
module_contents = [
|
2021-08-19 01:41:24 +00:00
|
|
|
module_template,
|
2021-08-22 23:15:30 +00:00
|
|
|
*[getsource(getattr(InfoExtractor, k)) for k in CLASS_PROPERTIES],
|
2021-08-19 01:41:24 +00:00
|
|
|
'\nclass LazyLoadSearchExtractor(LazyLoadExtractor):\n pass\n']
|
2016-02-10 13:01:31 +00:00
|
|
|
|
|
|
|
ie_template = '''
|
2016-06-22 17:13:46 +00:00
|
|
|
class {name}({bases}):
|
2016-02-10 13:01:31 +00:00
|
|
|
_module = '{module}'
|
|
|
|
'''
|
|
|
|
|
|
|
|
make_valid_template = '''
|
|
|
|
@classmethod
|
|
|
|
def _make_valid_url(cls):
|
2016-02-21 10:53:48 +00:00
|
|
|
return {valid_url!r}
|
2016-02-10 13:01:31 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
|
2016-06-22 17:13:46 +00:00
|
|
|
def get_base_name(base):
|
|
|
|
if base is InfoExtractor:
|
|
|
|
return 'LazyLoadExtractor'
|
|
|
|
elif base is SearchInfoExtractor:
|
|
|
|
return 'LazyLoadSearchExtractor'
|
|
|
|
else:
|
|
|
|
return base.__name__
|
|
|
|
|
|
|
|
|
2016-02-10 13:01:31 +00:00
|
|
|
def build_lazy_ie(ie, name):
|
|
|
|
s = ie_template.format(
|
|
|
|
name=name,
|
2016-06-22 17:13:46 +00:00
|
|
|
bases=', '.join(map(get_base_name, ie.__bases__)),
|
2016-02-10 13:01:31 +00:00
|
|
|
module=ie.__module__)
|
2021-08-22 23:15:30 +00:00
|
|
|
valid_url = getattr(ie, '_VALID_URL', None)
|
|
|
|
if valid_url:
|
|
|
|
s += f' _VALID_URL = {valid_url!r}\n'
|
|
|
|
if not ie._WORKING:
|
2021-08-22 23:56:45 +00:00
|
|
|
s += ' _WORKING = False\n'
|
2016-02-10 13:01:31 +00:00
|
|
|
if ie.suitable.__func__ is not InfoExtractor.suitable.__func__:
|
2021-08-22 23:15:30 +00:00
|
|
|
s += f'\n{getsource(ie.suitable)}'
|
2016-02-10 13:01:31 +00:00
|
|
|
if hasattr(ie, '_make_valid_url'):
|
|
|
|
# search extractors
|
2016-02-21 10:53:48 +00:00
|
|
|
s += make_valid_template.format(valid_url=ie._make_valid_url())
|
2016-02-10 13:01:31 +00:00
|
|
|
return s
|
|
|
|
|
2016-11-17 11:42:56 +00:00
|
|
|
|
2020-11-19 19:22:59 +00:00
|
|
|
# find the correct sorting and add the required base classes so that subclasses
|
2016-06-22 17:13:46 +00:00
|
|
|
# can be correctly created
|
|
|
|
classes = _ALL_CLASSES[:-1]
|
|
|
|
ordered_cls = []
|
|
|
|
while classes:
|
|
|
|
for c in classes[:]:
|
|
|
|
bases = set(c.__bases__) - set((object, InfoExtractor, SearchInfoExtractor))
|
|
|
|
stop = False
|
|
|
|
for b in bases:
|
|
|
|
if b not in classes and b not in ordered_cls:
|
|
|
|
if b.__name__ == 'GenericIE':
|
|
|
|
exit()
|
|
|
|
classes.insert(0, b)
|
|
|
|
stop = True
|
|
|
|
if stop:
|
|
|
|
break
|
|
|
|
if all(b in ordered_cls for b in bases):
|
|
|
|
ordered_cls.append(c)
|
|
|
|
classes.remove(c)
|
|
|
|
break
|
|
|
|
ordered_cls.append(_ALL_CLASSES[-1])
|
|
|
|
|
2016-02-10 13:01:31 +00:00
|
|
|
names = []
|
2016-06-22 17:13:46 +00:00
|
|
|
for ie in ordered_cls:
|
|
|
|
name = ie.__name__
|
2016-02-10 13:01:31 +00:00
|
|
|
src = build_lazy_ie(ie, name)
|
|
|
|
module_contents.append(src)
|
2016-06-22 17:13:46 +00:00
|
|
|
if ie in _ALL_CLASSES:
|
|
|
|
names.append(name)
|
2016-02-10 13:01:31 +00:00
|
|
|
|
|
|
|
module_contents.append(
|
2021-08-22 19:19:23 +00:00
|
|
|
'\n_ALL_CLASSES = [{0}]'.format(', '.join(names)))
|
2016-02-10 13:01:31 +00:00
|
|
|
|
2016-02-21 11:22:12 +00:00
|
|
|
module_src = '\n'.join(module_contents) + '\n'
|
2016-02-10 13:01:31 +00:00
|
|
|
|
2017-02-23 19:09:13 +00:00
|
|
|
with io.open(lazy_extractors_filename, 'wt', encoding='utf-8') as f:
|
2016-02-10 13:01:31 +00:00
|
|
|
f.write(module_src)
|