generated from Yavook.de/vscode-python3
namespace-inject: cleanup + doc
This commit is contained in:
parent
3b1778314c
commit
36f86a745d
1 changed files with 61 additions and 29 deletions
|
@ -3,48 +3,64 @@ import inspect
|
||||||
from textwrap import dedent
|
from textwrap import dedent
|
||||||
from typing import Callable
|
from typing import Callable
|
||||||
|
|
||||||
#################
|
##################
|
||||||
# MAGIC SECTION #
|
# CURSED SECTION #
|
||||||
#################
|
##################
|
||||||
|
|
||||||
|
|
||||||
class Shoehorn:
|
class namespace_inject:
|
||||||
|
"""
|
||||||
|
This is a decorator that injects one or more functions into
|
||||||
|
the local namespace of the decorated function.
|
||||||
|
"""
|
||||||
|
|
||||||
|
# functions to be injected
|
||||||
local_fns: tuple[Callable, ...]
|
local_fns: tuple[Callable, ...]
|
||||||
|
|
||||||
def __init__(self, *local_fn: Callable) -> None:
|
def __init__(self, *local_fn: Callable) -> None:
|
||||||
self.local_fns = local_fn
|
self.local_fns = local_fn
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _get_func_def(object: Callable) -> tuple[ast.FunctionDef, ast.Module]:
|
def _get_func_def(object: Callable) -> tuple[ast.Module, ast.FunctionDef]:
|
||||||
|
"""
|
||||||
|
Get the AST representation and the contained ast.FunctionDef
|
||||||
|
of a function
|
||||||
|
"""
|
||||||
object_ast = ast.parse(dedent(inspect.getsource(object)))
|
object_ast = ast.parse(dedent(inspect.getsource(object)))
|
||||||
return next(
|
|
||||||
|
return object_ast, next(
|
||||||
x for x in ast.walk(object_ast)
|
x for x in ast.walk(object_ast)
|
||||||
if isinstance(x, ast.FunctionDef) and x.name == object.__name__
|
if isinstance(x, ast.FunctionDef) and x.name == object.__name__
|
||||||
), object_ast
|
)
|
||||||
|
|
||||||
def __call__(self, fn: Callable) -> Callable:
|
def __call__(self, fn: Callable) -> Callable:
|
||||||
fn_func_def, fn_ast = self._get_func_def(fn)
|
"""
|
||||||
|
The actual decorator function
|
||||||
|
"""
|
||||||
|
fn_ast, fn_func_def = self._get_func_def(fn)
|
||||||
|
|
||||||
|
# prepend the local functions to the decorated function's body
|
||||||
fn_func_def.body = [
|
fn_func_def.body = [
|
||||||
self._get_func_def(lfn)[0]
|
self._get_func_def(lfn)[1]
|
||||||
for lfn in self.local_fns
|
for lfn in self.local_fns
|
||||||
] + fn_func_def.body
|
] + fn_func_def.body
|
||||||
|
|
||||||
|
# remove the @namespace_inject decorator from the decorated function
|
||||||
fn_func_def.decorator_list = [
|
fn_func_def.decorator_list = [
|
||||||
decorator
|
decorator for decorator in fn_func_def.decorator_list
|
||||||
for decorator in fn_func_def.decorator_list
|
|
||||||
if not (
|
if not (
|
||||||
isinstance(decorator, ast.Call)
|
isinstance(decorator, ast.Call)
|
||||||
and isinstance(decorator.func, ast.Name)
|
and isinstance(decorator.func, ast.Name)
|
||||||
and decorator.func.id == Shoehorn.__name__
|
and decorator.func.id == namespace_inject.__name__
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# recompile and return the decorated function
|
||||||
if (fn_sourcefile := inspect.getsourcefile(fn)) is None:
|
if (fn_sourcefile := inspect.getsourcefile(fn)) is None:
|
||||||
fn_sourcefile = "<string>"
|
fn_sourcefile = "<string>"
|
||||||
|
|
||||||
exec(
|
exec(
|
||||||
compile(fn_ast, fn_sourcefile, "exec"),
|
compile(ast.fix_missing_locations(fn_ast), fn_sourcefile, "exec"),
|
||||||
fn_globals := {},
|
fn_globals := {},
|
||||||
)
|
)
|
||||||
return fn_globals[fn.__name__]
|
return fn_globals[fn.__name__]
|
||||||
|
@ -54,30 +70,46 @@ class Shoehorn:
|
||||||
##################
|
##################
|
||||||
|
|
||||||
|
|
||||||
def foo():
|
|
||||||
raise NotImplementedError()
|
|
||||||
|
|
||||||
|
|
||||||
def func1(pstr: str) -> None:
|
|
||||||
def foo() -> None:
|
def foo() -> None:
|
||||||
|
# foo, but in global namespace it uses an unbound variable
|
||||||
|
|
||||||
|
print(f"{pstr = }") # type:ignore # noqa: F821
|
||||||
|
|
||||||
|
|
||||||
|
def call_foo_global(pstr: str) -> None:
|
||||||
|
"""
|
||||||
|
Just call foo, so global foo is called.
|
||||||
|
This should fail: foo does not know about `pstr`.
|
||||||
|
"""
|
||||||
|
|
||||||
|
foo()
|
||||||
|
|
||||||
|
|
||||||
|
def call_foo_local(pstr: str) -> None:
|
||||||
|
"""
|
||||||
|
Redefine foo locally, then call - local foo is called.
|
||||||
|
In local namespace, `pstr` is defined.
|
||||||
|
"""
|
||||||
|
# call_local_foo got its own foo, so it calls locally
|
||||||
|
|
||||||
|
def foo() -> None:
|
||||||
|
# foo in local namespace is fine
|
||||||
|
|
||||||
print(f"{pstr = }")
|
print(f"{pstr = }")
|
||||||
|
|
||||||
foo()
|
foo()
|
||||||
|
|
||||||
|
|
||||||
def func2(pstr: str) -> None:
|
@namespace_inject(foo)
|
||||||
|
def call_foo_injected(pstr: str) -> None:
|
||||||
|
"""
|
||||||
|
Inject the global foo into the local namespace.
|
||||||
|
This behaves like `call_foo_local`.
|
||||||
|
"""
|
||||||
|
|
||||||
foo()
|
foo()
|
||||||
|
|
||||||
|
|
||||||
def foo_local() -> None:
|
|
||||||
print(f"{pstr = }") # type:ignore # noqa: F821
|
|
||||||
|
|
||||||
|
|
||||||
@Shoehorn(foo_local)
|
|
||||||
def func3(pstr: str) -> None:
|
|
||||||
foo_local()
|
|
||||||
|
|
||||||
|
|
||||||
def func_info(f: Callable) -> None:
|
def func_info(f: Callable) -> None:
|
||||||
try:
|
try:
|
||||||
print(f"{f.__name__} = {f}, {f.__code__.co_varnames = }")
|
print(f"{f.__name__} = {f}, {f.__code__.co_varnames = }")
|
||||||
|
@ -88,6 +120,6 @@ def func_info(f: Callable) -> None:
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
func_info(func1)
|
func_info(call_foo_global)
|
||||||
func_info(func2)
|
func_info(call_foo_local)
|
||||||
func_info(func3)
|
func_info(call_foo_injected)
|
||||||
|
|
Loading…
Reference in a new issue