How can Interceptor in python be applied

删除回忆录丶 提交于 2019-12-08 01:01:22

问题


I need to know when a function is called and do something after calling the function. It seems Interceptor can do it.

How can I use Interceptor in python ?


回答1:


This can be done using decorators:

from functools import wraps


def iterceptor(func):
    print('this is executed at function definition time (def my_func)')

    @wraps(func)
    def wrapper(*args, **kwargs):
        print('this is executed before function call')
        result = func(*args, **kwargs)
        print('this is executed after function call')
        return result

    return wrapper


@iterceptor
def my_func(n):
    print('this is my_func')
    print('n =', n)


my_func(4)

Output:

this is executed at function definition time (def my_func)
this is executed before function call
this is my_func
n = 4
this is executed after function call

@iterceptor replaces my_func with the result of execution of the iterceptor function, that is with wrapper function. wrapper wraps the given function in some code, usually preserving the arguments and execution result of wrappee, but adds some additional behavior.

@wraps(func) is there to copy the signature/docstring data of the function func onto the newly created wrapper function.

More info:

  • http://python-3-patterns-idioms-test.readthedocs.io/en/latest/PythonDecorators.html
  • https://www.python.org/dev/peps/pep-0318/


来源:https://stackoverflow.com/questions/50929918/how-can-interceptor-in-python-be-applied

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!