mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			132 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals, print_function
 | |
| 
 | |
| from inspect import getsource
 | |
| import os
 | |
| from os.path import dirname as dirn
 | |
| import re
 | |
| 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)
 | |
| # Py2: may be confused by leftover lazy_extractors.pyc
 | |
| if sys.version_info[0] < 3:
 | |
|     for c in ('c', 'o'):
 | |
|         try:
 | |
|             os.remove(lazy_extractors_filename + 'c')
 | |
|         except OSError:
 | |
|             pass
 | |
| 
 | |
| from devscripts.utils import read_file, write_file
 | |
| from youtube_dl.compat import compat_register_utf8
 | |
| 
 | |
| compat_register_utf8()
 | |
| 
 | |
| from youtube_dl.extractor import _ALL_CLASSES
 | |
| from youtube_dl.extractor.common import InfoExtractor, SearchInfoExtractor
 | |
| 
 | |
| module_template = read_file('devscripts/lazy_load_template.py')
 | |
| 
 | |
| 
 | |
| def get_source(m):
 | |
|     return re.sub(r'(?m)^\s*#.*\n', '', getsource(m))
 | |
| 
 | |
| 
 | |
| module_contents = [
 | |
|     module_template,
 | |
|     get_source(InfoExtractor.suitable),
 | |
|     get_source(InfoExtractor._match_valid_url) + '\n',
 | |
|     'class LazyLoadSearchExtractor(LazyLoadExtractor):\n    pass\n',
 | |
|     # needed for suitable() methods of Youtube extractor (see #28780)
 | |
|     'from youtube_dl.utils import parse_qs, variadic\n',
 | |
| ]
 | |
| 
 | |
| ie_template = '''
 | |
| class {name}({bases}):
 | |
|     _VALID_URL = {valid_url!r}
 | |
|     _module = '{module}'
 | |
| '''
 | |
| 
 | |
| make_valid_template = '''
 | |
|     @classmethod
 | |
|     def _make_valid_url(cls):
 | |
|         return {valid_url!r}
 | |
| '''
 | |
| 
 | |
| 
 | |
| def get_base_name(base):
 | |
|     if base is InfoExtractor:
 | |
|         return 'LazyLoadExtractor'
 | |
|     elif base is SearchInfoExtractor:
 | |
|         return 'LazyLoadSearchExtractor'
 | |
|     else:
 | |
|         return base.__name__
 | |
| 
 | |
| 
 | |
| def build_lazy_ie(ie, name):
 | |
|     valid_url = getattr(ie, '_VALID_URL', None)
 | |
|     s = ie_template.format(
 | |
|         name=name,
 | |
|         bases=', '.join(map(get_base_name, ie.__bases__)),
 | |
|         valid_url=valid_url,
 | |
|         module=ie.__module__)
 | |
|     if ie.suitable.__func__ is not InfoExtractor.suitable.__func__:
 | |
|         s += '\n' + get_source(ie.suitable)
 | |
|     if hasattr(ie, '_make_valid_url'):
 | |
|         # search extractors
 | |
|         s += make_valid_template.format(valid_url=ie._make_valid_url())
 | |
|     return s
 | |
| 
 | |
| 
 | |
| # find the correct sorting and add the required base classes so that subclasses
 | |
| # 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])
 | |
| 
 | |
| names = []
 | |
| for ie in ordered_cls:
 | |
|     name = ie.__name__
 | |
|     src = build_lazy_ie(ie, name)
 | |
|     module_contents.append(src)
 | |
|     if ie in _ALL_CLASSES:
 | |
|         names.append(name)
 | |
| 
 | |
| module_contents.append(
 | |
|     '_ALL_CLASSES = [{0}]'.format(', '.join(names)))
 | |
| 
 | |
| module_src = '\n'.join(module_contents)
 | |
| 
 | |
| write_file(lazy_extractors_filename, module_src + '\n')
 | |
| 
 | |
| # work around JVM byte code module limit in Jython
 | |
| if sys.platform.startswith('java') and sys.version_info[:2] == (2, 7):
 | |
|     import subprocess
 | |
|     from youtube_dl.compat import compat_subprocess_get_DEVNULL
 | |
|     # if Python 2.7 is available, use it to compile the module for Jython
 | |
|     try:
 | |
|         # if Python 2.7 is available, use it to compile the module for Jython
 | |
|         subprocess.check_call(['python2.7', '-m', 'py_compile', lazy_extractors_filename], stdout=compat_subprocess_get_DEVNULL())
 | |
|     except Exception:
 | |
|         pass
 |