Files
neko-injector/neko_injector/modules/variants.py
2024-02-02 22:36:53 +02:00

38 lines
1.1 KiB
Python

from .applyer import apply_replace
from typing import Iterable, Type, TypeVar
from types import ModuleType
T = TypeVar('T')
def inject_object(*objects) -> None:
for obj in objects:
new = apply_replace(obj)
for attr, value in new.__dict__.items():
try:
setattr(obj, attr, getattr(new, attr))
except AttributeError:
continue
def get_injected_object(*objects: Type[T]) -> Iterable[T]:
return [apply_replace(obj) for obj in objects]
def inject_module(mod: ModuleType) -> None:
try:
inject_object(*getattr(mod, '__replacements__'))
except AttributeError:
raise ImportError(f'Module {mod.__name__} does not define a list of '
f'replacements, it cannot be patched')
except ModuleNotFoundError:
raise ImportError(f'The implementation presented in the config does not comply '
f'with the structure of the standard')
def inject_modules(modules: list[ModuleType]) -> None:
for module in modules:
inject_module(module)