加载中...

8.15 属性的代理访问


问题

你想将某个实例的属性访问代理到内部另一个实例中去,目的可能是作为继承的一个替代方法或者实现代理模式。

解决方案

简单来说,代理是一种编程模式,它将某个操作转移给另外一个对象来实现。最简单的形式可能是像下面这样:

  1. class A:
  2. def spam(self, x):
  3. pass
  4. def foo(self):
  5. pass
  6. class B1:
  7. """简单的代理"""
  8. def __init__(self):
  9. self._a = A()
  10. def spam(self, x):
  11. # Delegate to the internal self._a instance
  12. return self._a.spam(x)
  13. def foo(self):
  14. # Delegate to the internal self._a instance
  15. return self._a.foo()
  16. def bar(self):
  17. pass

如果仅仅就两个方法需要代理,那么像这样写就足够了。但是,如果有大量的方法需要代理,那么使用 __getattr__() 方法或许或更好些:

  1. class B2:
  2. """使用__getattr__的代理,代理方法比较多时候"""
  3. def __init__(self):
  4. self._a = A()
  5. def bar(self):
  6. pass
  7. # Expose all of the methods defined on class A
  8. def __getattr__(self, name):
  9. """这个方法在访问的attribute不存在的时候被调用
  10. the __getattr__() method is actually a fallback method
  11. that only gets called when an attribute is not found"""
  12. return getattr(self._a, name)

__getattr__ 方法是在访问attribute不存在的时候被调用,使用演示:

  1. b = B()
  2. b.bar() # Calls B.bar() (exists on B)
  3. b.spam(42) # Calls B.__getattr__('spam') and delegates to A.spam

另外一个代理例子是实现代理模式,例如:

  1. # A proxy class that wraps around another object, but
  2. # exposes its public attributes
  3. class Proxy:
  4. def __init__(self, obj):
  5. self._obj = obj
  6. # Delegate attribute lookup to internal obj
  7. def __getattr__(self, name):
  8. print('getattr:', name)
  9. return getattr(self._obj, name)
  10. # Delegate attribute assignment
  11. def __setattr__(self, name, value):
  12. if name.startswith('_'):
  13. super().__setattr__(name, value)
  14. else:
  15. print('setattr:', name, value)
  16. setattr(self._obj, name, value)
  17. # Delegate attribute deletion
  18. def __delattr__(self, name):
  19. if name.startswith('_'):
  20. super().__delattr__(name)
  21. else:
  22. print('delattr:', name)
  23. delattr(self._obj, name)

使用这个代理类时,你只需要用它来包装下其他类即可:

  1. class Spam:
  2. def __init__(self, x):
  3. self.x = x
  4. def bar(self, y):
  5. print('Spam.bar:', self.x, y)
  6. # Create an instance
  7. s = Spam(2)
  8. # Create a proxy around it
  9. p = Proxy(s)
  10. # Access the proxy
  11. print(p.x) # Outputs 2
  12. p.bar(3) # Outputs "Spam.bar: 2 3"
  13. p.x = 37 # Changes s.x to 37

通过自定义属性访问方法,你可以用不同方式自定义代理类行为(比如加入日志功能、只读访问等)。

讨论

代理类有时候可以作为继承的替代方案。例如,一个简单的继承如下:

  1. class A:
  2. def spam(self, x):
  3. print('A.spam', x)
  4. def foo(self):
  5. print('A.foo')
  6. class B(A):
  7. def spam(self, x):
  8. print('B.spam')
  9. super().spam(x)
  10. def bar(self):
  11. print('B.bar')

使用代理的话,就是下面这样:

  1. class A:
  2. def spam(self, x):
  3. print('A.spam', x)
  4. def foo(self):
  5. print('A.foo')
  6. class B:
  7. def __init__(self):
  8. self._a = A()
  9. def spam(self, x):
  10. print('B.spam', x)
  11. self._a.spam(x)
  12. def bar(self):
  13. print('B.bar')
  14. def __getattr__(self, name):
  15. return getattr(self._a, name)

当实现代理模式时,还有些细节需要注意。首先,__getattr__() 实际是一个后备方法,只有在属性不存在时才会调用。因此,如果代理类实例本身有这个属性的话,那么不会触发这个方法的。另外,__setattr__()__delattr__() 需要额外的魔法来区分代理实例和被代理实例 _obj 的属性。一个通常的约定是只代理那些不以下划线 _ 开头的属性(代理类只暴露被代理类的公共属性)。

还有一点需要注意的是,__getattr__() 对于大部分以双下划线(__)开始和结尾的属性并不适用。比如,考虑如下的类:

  1. class ListLike:
  2. """__getattr__对于双下划线开始和结尾的方法是不能用的,需要一个个去重定义"""
  3. def __init__(self):
  4. self._items = []
  5. def __getattr__(self, name):
  6. return getattr(self._items, name)

如果是创建一个ListLike对象,会发现它支持普通的列表方法,如append()和insert(),但是却不支持len()、元素查找等。例如:

  1. >>> a = ListLike()
  2. >>> a.append(2)
  3. >>> a.insert(0, 1)
  4. >>> a.sort()
  5. >>> len(a)
  6. Traceback (most recent call last):
  7. File "<stdin>", line 1, in <module>
  8. TypeError: object of type 'ListLike' has no len()
  9. >>> a[0]
  10. Traceback (most recent call last):
  11. File "<stdin>", line 1, in <module>
  12. TypeError: 'ListLike' object does not support indexing
  13. >>>

为了让它支持这些方法,你必须手动的实现这些方法代理:

  1. class ListLike:
  2. """__getattr__对于双下划线开始和结尾的方法是不能用的,需要一个个去重定义"""
  3. def __init__(self):
  4. self._items = []
  5. def __getattr__(self, name):
  6. return getattr(self._items, name)
  7. # Added special methods to support certain list operations
  8. def __len__(self):
  9. return len(self._items)
  10. def __getitem__(self, index):
  11. return self._items[index]
  12. def __setitem__(self, index, value):
  13. self._items[index] = value
  14. def __delitem__(self, index):
  15. del self._items[index]

11.8小节还有一个在远程方法调用环境中使用代理的例子。


还没有评论.