python descript_python descriptor 详解

1 #-*- coding: utf-8 -*-

2 classDes(object):3 def __init__(self, init_value):4 self.value =init_value5

6 def __get__(self, instance, typ):7 print('call __get__', instance, typ)8 returnself.value9

10 def __set__(self, instance, value):11 print ('call __set__', instance, value)12 self.value =value13

14 def __delete__(self, instance):15 print ('call __delete__', instance)16

17 classWidget(object):18 t = Des(1)19

20 defmain():21 w =Widget()22 printtype(w.t)23 w.t = 1

24 printw.t, Widget.t25 delw.t

26

27 if __name__=='__main__':28 main()

运行结果如下:

('call __get__', <__main__.widget object at>, )

('call __set__', <__main__.widget object at>, 1)

('call __get__', <__main__.widget object at>, )

1 ('call __get__', None, )

1

('call __delete__', <__main__.widget object at>)

从输出结果可以看到,对于这个三个特殊函数,形参instance是descriptor实例所在的类的实例(w), 而形参owner就是这个类(widget)

w.t 等价于 Pro.__get__(t, w, Widget).而Widget.t 等价于 Pro.__get__(t, None, Widget)

descriptor注意事项

需要注意的是, descriptor的实例一定是类的属性,因此使用的时候需要自行区分实例。比如下面这个例子,我们需要保证以下属性不超过一定的阈值。

1 classMaxValDes(object):2 def __init__(self, inti_val, max_val):3 self.value =inti_val4 self.max_val =max_val5

6 def __get__(self, instance, typ):7 returnself.value8

9 def __set__(self, instance, value):10 self.value=min(self.max_val, value)11

12 classWidget(object):13 a = MaxValDes(0, 10)14

15 if __name__ == '__main__':16 w0 =Widget()17 print 'inited w0', w0.a18 w0.a = 123

19 print 'after set w0',w0.a20 w1 =Widget()21 print 'inited w1', w1.a

代码很简单,我们通过MaxValDes这个descriptor来保证属性的值不超过一定的范围。运行结果如下:

inited w0 0

after set w0 10

inited w1 10

可以看到,对w0.a的赋值符合预期,但是w1.a的值却不是0,而是同w0.a一样。这就是因为,a是类Widget的类属性, Widget的实例并没有'a'这个属性,可以通过__dict__查看。

那么要怎么修改才符合预期呢,看下面的代码:

1 classMaxValDes(object):2 def __init__(self, attr, max_val):3 self.attr =attr4 self.max_val =max_val5

6 def __get__(self, instance, typ):7 return instance.__dict__[self.attr]8

9 def __set__(self, instance, value):10 instance.__dict__[self.attr] =min(self.max_val, value)11

12 classWidget(object):13 a = MaxValDes('a', 10)14 b = MaxValDes('b', 12)15 def __init__(self):16 self.a =017 self.b = 1

18

19 if __name__ == '__main__':20 w0 =Widget()21 print 'inited w0', w0.a, w0.b22 w0.a = 123

23 w0.b = 123

24 print 'after set w0',w0.a, w0.b25

26 w1 =Widget()27 print 'inited w1', w1.a, w1.b

运行结果如下:

inited w0 0 1

after set w0 10 12

inited w0 0 1

可以看到,运行结果比较符合预期,w0、w1两个实例互不干扰。上面的代码中有两点需要注意:

第一:第7、10行都是通过instance.__dict__来取值、赋值,而不是调用getattr、setattr,否则会递归调用,死循环。

第二:现在类和类的实例都拥有‘a’属性,不过w0.a调用的是类属性‘a',具体原因参见下一篇文章

descriptor应用场景

其实从上面的例子可以看出,descriptor主要用于控制属性的访问(读、写、删除)。python doc里面有写到,property()就是一个data descriptor实现(可参见这个文档)。 python2.2中,大量新式类的实现都基于descriptor

They are the mechanism behind properties, methods, static methods, class methods, and super(). They are used throughout Python itself to implement the new style classes introduced in version 2.2.

在实践中,我们有可能需要监控或者限制对属性的访问。比如,对象的一个属性被“莫名其妙”地修改了,但搜索所有文件有找不到可以的地方,那么我们可以通过__setattr__(self, k, v)方法,对于我们关心的 k 打印出调用栈。另外,也可以用property,示例代码如下:

1 classTestProperty(object):2 def __init__(self):3 self.__a = 1

4

5 @property6 defa(self):7 return self.__a

8

9 @a.setter10 defa(self, v):11 print('output call stack here')12 self.__a =v13

14 if __name__=='__main__':15 t =TestProperty()16 printt.a17 t.a = 2

18 print t.a

如果需要禁止对属性赋值,或者对新的值做检查,也很容易修改上面的代码实现

既然有了property,那什么时候还需要descriptor呢?property最大的问题在于不能重复使用,即对每个属性都需要property装饰,代码重复冗余。而使用descriptor,把相同的逻辑封装到一个单独的类,使用起来方便多了。详细的示例可以参见这篇文章。

笔者之前看bottle.py源码的时候,看到这么一个descriptor使用,部分源代码和测试代码如下:

1 importfunctools, time2 classcached_property(object):3 """A property that is only computed once per instance and then replaces4 itself with an ordinary attribute. Deleting the attribute resets the5 property."""

6

7 def __init__(self, func):8 functools.update_wrapper(self, func)9 self.func =func10

11 def __get__(self, obj, cls):12 if obj is None: returnself13 value = obj.__dict__[self.func.__name__] =self.func(obj)14 returnvalue15

16 classTestClz(object):17 @cached_property18 defcomplex_calc(self):19 print 'very complex_calc'

20 return sum(range(100))21

22 if __name__=='__main__':23 t =TestClz()24 print '>>> first call'

25 printt.complex_calc26 print '>>> second call'

27 print t.complex_calc

运行结果如下:

>>> first call

very complex_calc

4950

>>> second call

4950

注意两点:

第一,在访问complex_calc的时候并没有使用函数调用(没有括号);

第二,第一次调用的时候打印了“very complex_calc”,第二次没有。

笔者也是因为这段代码开始学习descriptor,但看懂这段代码还需要了解Python的属性查找顺序,下一篇文章会对此简单介绍。

references

(0)Implementing Descriptors, python2.7 doc

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值