其他
Python进阶——如何实现一个装饰器?
阅读本文大约需要 10 分钟。
一切皆对象
i = 10 # int对象
print id(i), type(i)
# 140703267064136, <type 'int'>
s = 'hello' # str对象
print id(s), type(s), s.index('o')
# 4308437920, <type 'str'>, 4
d = {'k': 10} # dict对象
print id(d), type(d), d.get('k')
# 4308446016, <type 'dict'>, 10
def hello(): # function对象
print 'Hello World'
print id(hello), type(hello), hello.func_name, hello()
# 4308430192, <type 'function'>, hello, Hello World
hello2 = hello # 传递对象
print id(hello2), type(hello2), hello2.func_name, hello2()
# 4308430192, <type 'function'>, hello, Hello World
# 构建一个类
class Person(object):
def __init__(self, name):
self.name = name
def say(self):
return 'I am %s' % self.name
print id(Person), type(Person), Person.say
# 140703269140528, <type 'type'>, <unbound method Person.say>
person = Person('tom') # 实例化一个对象
print id(person), type(person),
# 4389020560, <class '__main__.Person'>
print person.name, person.say, person.say()
# tom, <bound method Person.say of <__main__.Person object at 0x1059b2390>>, I am tom
int
、str
、dict
、function
,甚至 class
、instance
都可以调用 id
和 type
获得对象的唯一标识和类型。function
,类的类型是 type
,并且这些对象都是可传递的。闭包
import time
def hello():
start = time.time() # 开始时间
time.sleep(1) # 模拟执行耗时
print 'hello'
end = time.time() # 结束时间
print 'duration time: %ds' % int(end - start) # 计算耗时
hello()
# Output:
# hello
# duration time: 1s
import time
def timeit(func): # 计算方法耗时的通用方法
start = time.time()
func() # 执行方法
end = time.time()
print 'duration time: %ds' % int(end - start)
def hello():
time.sleep(1)
print 'hello'
timeit(hello) # 调用执行
timeit
方法,而参数传入一个方法对象,在执行完真正的方法逻辑后,计算其运行时间。timeit(func2) # 计算func2执行时间
hello
方法,现在执行都需要使用 timeit
然后传入 hello
才能达到要求,有没有一种方式,既可以给原来的方法加上计算时间的逻辑,还能像调用原方法一样使用呢?timeit
进行改造:import time
def timeit(func):
def inner():
start = time.time()
func()
end = time.time()
print 'duration time: %ds' % int(end - start)
return inner
def hello():
time.sleep(1)
print 'hello'
hello = timeit(hello) # 重新定义hello
hello() # 像调用原始方法一样使用
timeit
的变动,它在内部定义了一个 inner
方法,此方法内部的实现与之前类似,但是,timeit
最终返回的不是一个值,而是 inner
对象。hello = timeit(hello)
时,会得到一个方法对象,那么此时变量 hello
其实是 inner
,在执行 hello()
时,真正执行的是 inner
方法。hello
方法进行了重新定义,这么一来,hello
不仅保留了其原有的逻辑,而且还增加了计算方法执行耗时的新功能。timeit
这个方法是如何运行的?装饰器
@timeit # 相当于 hello = timeit(hello)
def hello():
time.sleep(1)
print 'hello'
hello() # 直接调用原方法即可
@timeit
其实就等价于 hello = timeit(hello)
。functools.wraps
@
来装饰方法,最后达到重新定义方法的作用。也就是说,最终我们执行的,其实是另外一个被添加新功能的方法。hello
,但是最终执行的却是 inner
,虽然功能和结果没有影响,但是执行的方法却被替换了,这会带来什么影响呢?@timeit
def hello():
time.sleep(1)
print 'hello'
print hello.__name__ # 输出 hello 方法的名字
# Output:
# inner
hello
,但是输出 hello
方法的名字却是 inner
。functools
模块中,提供了一个 wraps
方法,专门来解决这个问题。import time
from functools import wraps
def timeit(func):
@wraps(func) # 使用 wraps 装饰内部方法inner
def inner():
start = time.time()
func()
end = time.time()
print 'duration time: %ds' % int(end - start)
return inner
@timeit
def hello():
time.sleep(1)
print 'hello'
print hello.__name__ # 输出 hello 方法的名字
# Output:
# hello
functools
模块的 wraps
方法装饰内部方法 inner
后,我们再获取 hello
的属性,都能得到来自原方法的信息了。装饰带参数的方法
hello
是没有参数的,如果 hello
需要参数,此时装饰器如何实现?import time
from functools import wraps
def timeit(func):
@wraps(func)
def inner(name): # inner 也需加对应的参数
start = time.time()
func(name)
end = time.time()
print 'duration time: %ds' % int(end - start)
return inner
@timeit
def hello(name): # 加了一个参数
time.sleep(1)
print 'hello %s' % name
hello('张三')
inner
方法,被装饰的方法 hello
如果想加参数,那么对应的 inner
也添加相应的参数就可以了。timeit
是一个通用的装饰器,现在为了适应 hello
的参数,而在 inner
中加了一个参数,那如果要装饰的方法,有 2 个甚至更多参数,怎么办?难道要在 inner
中加继续加参数吗?import time
from functools import wraps
def timeit(func):
@wraps(func)
def inner(*args, **kwargs): # 使用 *args, **kwargs 适应所有参数
start = time.time()
func(*args, **kwargs) # 传递参数给真实调用的方法
end = time.time()
print 'duration time: %ds' % int(end - start)
return inner
@timeit
def hello(name):
time.sleep(1)
print 'hello %s' % name
@timeit
def say(name, age):
print 'hello %s %s' % (name, age)
@timeit
def say2(name, age=20):
print 'hello %s %s' % (name, age)
hello('张三')
say('李四', 25)
say2('王五')
inner
方法的参数改为了 *args, **kwargs
,然后调用真实方法时传入参数func(*args, **kwargs)
,这样一来,我们的装饰器就可以装饰有任意参数的方法了,这个装饰器就变得非常通用了。带参数的装饰器
*args, **kwargs
来适配。但我们平时也经常看到,有些装饰器也是可以传入参数的,这种如何实现呢?import time
from functools import wraps
def timeit(prefix): # 装饰器可传入参数
def decorator(func): # 多一层方法嵌套
@wraps(func)
def wrapper(*args, **kwargs):
start = time.time()
func(*args, **kwargs)
end = time.time()
print '%s: duration time: %ds' % (prefix, int(end - start))
return wrapper
return decorator
@timeit('prefix1')
def hello(name):
time.sleep(1)
print 'hello %s' % name
timeit
中定义了 2 个内部方法,然后让 timeit
可以接收参数,返回 decorator
对象,而在 decorator
方法中再返回 wrapper
对象。类实现装饰器
import time
from functools import wraps
class Timeit(object):
"""用类实现装饰器"""
def __init__(self, prefix):
self.prefix = prefix
def __call__(self, func):
@wraps(func)
def wrapper(*args, **kwargs):
start = time.time()
func(*args, **kwargs)
end = time.time()
print '%s: duration time: %ds' % (self.prefix, int(end - start))
return wrapper
@Timeit('prefix')
def hello():
time.sleep(1)
print 'hello'
hello() # 调用被装饰的方法
__init__
和 __call__
方法,其中 __init__
定义了装饰器的参数,__call__
会在调用 Timeit
对象的方法时触发。t = Timeit('prefix')
会调用 __init__
,而t(hello)
会调用 __call__(hello)
。装饰器使用场景
记录调用日志
from functools import wraps
def logging(func):
@wraps(func)
def wrapper(*args, **kwargs):
# 记录调用日志
logging.info('call method: %s %s %s', func.func_name, args, kwargs)
return func(*args, **kwargs)
return wrapper
记录方法执行耗时
def timeit(func):
@wraps(func)
def wrapper(*args, **kwargs):
start = time.time()
result = func(*args, **kwargs)
duration = int(time.time() - start) # 统计耗时
print 'method: %s, time: %s' % (func.func_name, duration)
return result
return wrapper
记录方法执行次数
def counter(func):
@wraps(func)
def wrapper(*args, **kwargs):
wrapper.count = wrapper.count + 1 # 累计执行次数
print 'method: %s, count: %s' % (func.func_name, wrapper.count)
return func(*args, **kwargs)
wrapper.count = 0
return wrapper
本地缓存
def localcache(func):
cached = {}
miss = object()
@wraps(func)
def wrapper(*args):
result = cached.get(args, miss)
if result is miss:
result = func(*args)
cached[args] = result
return result
return wrapper
路由映射
def __init__(self):
self.url_map = {}
def register(self, url):
def wrapper(func):
self.url_map[url] = func
return wrapper
def call(self, url):
func = self.url_map.get(url)
if not func:
raise ValueError('No url function: %s', url)
return func()
router = Router()
@router.register('/page1')
def page1():
return 'this is page1'
@router.register('/page2')
def page2():
return 'this is page2'
print router.call('/page1')
print router.call('/page2')