• 8.9 创建新的类或实例属性
    • 问题
    • 解决方案
    • 讨论

    8.9 创建新的类或实例属性

    问题

    你想创建一个新的拥有一些额外功能的实例属性类型,比如类型检查。

    解决方案

    如果你想创建一个全新的实例属性,可以通过一个描述器类的形式来定义它的功能。下面是一个例子:

    1. # Descriptor attribute for an integer type-checked attribute
    2. class Integer:
    3. def __init__(self, name):
    4. self.name = name
    5.  
    6. def __get__(self, instance, cls):
    7. if instance is None:
    8. return self
    9. else:
    10. return instance.__dict__[self.name]
    11.  
    12. def __set__(self, instance, value):
    13. if not isinstance(value, int):
    14. raise TypeError('Expected an int')
    15. instance.__dict__[self.name] = value
    16.  
    17. def __delete__(self, instance):
    18. del instance.__dict__[self.name]

    一个描述器就是一个实现了三个核心的属性访问操作(get, set, delete)的类,分别为 get()set()delete() 这三个特殊的方法。这些方法接受一个实例作为输入,之后相应的操作实例底层的字典。

    为了使用一个描述器,需将这个描述器的实例作为类属性放到一个类的定义中。例如:

    1. class Point:
    2. x = Integer('x')
    3. y = Integer('y')
    4.  
    5. def __init__(self, x, y):
    6. self.x = x
    7. self.y = y

    当你这样做后,所有对描述器属性(比如x或y)的访问会被get()set()delete() 方法捕获到。例如:

    1. >>> p = Point(2, 3)
    2. >>> p.x # Calls Point.x.__get__(p,Point)
    3. 2
    4. >>> p.y = 5 # Calls Point.y.__set__(p, 5)
    5. >>> p.x = 2.3 # Calls Point.x.__set__(p, 2.3)
    6. Traceback (most recent call last):
    7. File "<stdin>", line 1, in <module>
    8. File "descrip.py", line 12, in __set__
    9. raise TypeError('Expected an int')
    10. TypeError: Expected an int
    11. >>>

    作为输入,描述器的每一个方法会接受一个操作实例。为了实现请求操作,会相应的操作实例底层的字典(dict属性)。描述器的 self.name 属性存储了在实例字典中被实际使用到的key。

    讨论

    描述器可实现大部分Python类特性中的底层魔法,包括 @classmethod@staticmethod@property ,甚至是 slots 特性。

    通过定义一个描述器,你可以在底层捕获核心的实例操作(get, set, delete),并且可完全自定义它们的行为。这是一个强大的工具,有了它你可以实现很多高级功能,并且它也是很多高级库和框架中的重要工具之一。

    描述器的一个比较困惑的地方是它只能在类级别被定义,而不能为每个实例单独定义。因此,下面的代码是无法工作的:

    1. # Does NOT work
    2. class Point:
    3. def __init__(self, x, y):
    4. self.x = Integer('x') # No! Must be a class variable
    5. self.y = Integer('y')
    6. self.x = x
    7. self.y = y

    同时,get() 方法实现起来比看上去要复杂得多:

    1. # Descriptor attribute for an integer type-checked attribute
    2. class Integer:
    3.  
    4. def __get__(self, instance, cls):
    5. if instance is None:
    6. return self
    7. else:
    8. return instance.__dict__[self.name]

    get() 看上去有点复杂的原因归结于实例变量和类变量的不同。如果一个描述器被当做一个类变量来访问,那么 instance 参数被设置成 None 。这种情况下,标准做法就是简单的返回这个描述器本身即可(尽管你还可以添加其他的自定义操作)。例如:

    1. >>> p = Point(2,3)
    2. >>> p.x # Calls Point.x.__get__(p, Point)
    3. 2
    4. >>> Point.x # Calls Point.x.__get__(None, Point)
    5. <__main__.Integer object at 0x100671890>
    6. >>>

    描述器通常是那些使用到装饰器或元类的大型框架中的一个组件。同时它们的使用也被隐藏在后面。举个例子,下面是一些更高级的基于描述器的代码,并涉及到一个类装饰器:

    1. # Descriptor for a type-checked attribute
    2. class Typed:
    3. def __init__(self, name, expected_type):
    4. self.name = name
    5. self.expected_type = expected_type
    6. def __get__(self, instance, cls):
    7. if instance is None:
    8. return self
    9. else:
    10. return instance.__dict__[self.name]
    11.  
    12. def __set__(self, instance, value):
    13. if not isinstance(value, self.expected_type):
    14. raise TypeError('Expected ' + str(self.expected_type))
    15. instance.__dict__[self.name] = value
    16. def __delete__(self, instance):
    17. del instance.__dict__[self.name]
    18.  
    19. # Class decorator that applies it to selected attributes
    20. def typeassert(**kwargs):
    21. def decorate(cls):
    22. for name, expected_type in kwargs.items():
    23. # Attach a Typed descriptor to the class
    24. setattr(cls, name, Typed(name, expected_type))
    25. return cls
    26. return decorate
    27.  
    28. # Example use
    29. @typeassert(name=str, shares=int, price=float)
    30. class Stock:
    31. def __init__(self, name, shares, price):
    32. self.name = name
    33. self.shares = shares
    34. self.price = price

    最后要指出的一点是,如果你只是想简单的自定义某个类的单个属性访问的话就不用去写描述器了。这种情况下使用8.6小节介绍的property技术会更加容易。当程序中有很多重复代码的时候描述器就很有用了(比如你想在你代码的很多地方使用描述器提供的功能或者将它作为一个函数库特性)。

    原文:

    http://python3-cookbook.readthedocs.io/zh_CN/latest/c08/p09_create_new_kind_of_class_or_instance_attribute.html