2022-05-11 11:54:44 -04:00
|
|
|
import importlib
|
|
|
|
import random
|
2016-02-10 08:01:31 -05:00
|
|
|
import re
|
|
|
|
|
2022-05-16 10:06:36 -04:00
|
|
|
from ..utils import (
|
|
|
|
age_restricted,
|
|
|
|
bug_reports_message,
|
|
|
|
classproperty,
|
|
|
|
write_string,
|
|
|
|
)
|
2021-09-17 14:23:55 -04:00
|
|
|
|
2016-02-10 08:01:31 -05:00
|
|
|
|
2021-08-22 18:18:26 -04:00
|
|
|
class LazyLoadMetaClass(type):
|
|
|
|
def __getattr__(cls, name):
|
2022-05-16 10:06:36 -04:00
|
|
|
# "_TESTS" bloat the lazy_extractors
|
|
|
|
if '_real_class' not in cls.__dict__ and name != 'get_testcases':
|
2021-09-17 14:23:55 -04:00
|
|
|
write_string(
|
2022-04-28 21:48:36 -04:00
|
|
|
'WARNING: Falling back to normal extractor since lazy extractor '
|
2022-05-11 11:54:44 -04:00
|
|
|
f'{cls.__name__} does not have attribute {name}{bug_reports_message()}\n')
|
|
|
|
return getattr(cls.real_class, name)
|
2021-08-22 18:18:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
class LazyLoadExtractor(metaclass=LazyLoadMetaClass):
|
2022-05-11 11:54:44 -04:00
|
|
|
@classproperty
|
|
|
|
def real_class(cls):
|
2021-09-17 14:23:55 -04:00
|
|
|
if '_real_class' not in cls.__dict__:
|
2022-05-11 11:54:44 -04:00
|
|
|
cls._real_class = getattr(importlib.import_module(cls._module), cls.__name__)
|
2021-09-17 14:23:55 -04:00
|
|
|
return cls._real_class
|
2021-08-22 18:18:26 -04:00
|
|
|
|
2016-02-21 06:46:14 -05:00
|
|
|
def __new__(cls, *args, **kwargs):
|
2022-05-11 11:54:44 -04:00
|
|
|
instance = cls.real_class.__new__(cls.real_class)
|
2016-02-21 06:46:14 -05:00
|
|
|
instance.__init__(*args, **kwargs)
|
|
|
|
return instance
|