【问题标题】:How to access instance dictionary after overriding __dict__ attribute on its class?覆盖其类的 __dict__ 属性后如何访问实例字典?
【发布时间】:2018-01-01 02:45:02
【问题描述】:

考虑这个示例,其中类A 的所有实例的__dict__ 将指向全局字典shared

shared = {'a': 1, 'b': 2}

class A(object):
    def __init__(self):
        self.__dict__ = shared

现在让我们测试一些东西:

>>> a = A()
>>> b = A()
>>> a.a, a.b, b.a, b.b
(1, 2, 1, 2)
>>> b.x = 100
>>> shared
{'a': 1, 'x': 100, 'b': 2}
>>> a.x
100
>>> c = A()
>>> c.a, c.b, c.x
(1, 2, 100)
>>> shared['foo'] = 'bar'
>>> a.foo, b.foo, c.foo
('bar', 'bar', 'bar')
>>> a.__dict__, b.__dict__, c.__dict__
({'a': 1, 'x': 100, 'b': 2, 'foo': 'bar'},
 {'a': 1, 'x': 100, 'b': 2, 'foo': 'bar'},
 {'a': 1, 'x': 100, 'b': 2, 'foo': 'bar'}
)

一切正常。


现在让我们通过添加一个名为 __dict__ 的属性来稍微调整类 A

shared = {'a': 1, 'b': 2}

class A(object):
    __dict__ = None
    def __init__(self):
        self.__dict__ = shared

让我们再次运行同一组步骤:

>>> a = A()
>>> b = A()
>>> a.a, a.b, b.a, b.b
AttributeError: 'A' object has no attribute 'a'
>>> b.x = 100
>>> shared
{'a': 1, 'b': 2}
>>> b.__dict__  # What happened to x?
{'a': 1, 'b': 2}
>>> a.x
AttributeError: 'A' object has no attribute 'x'
>>> c = A()
>>> c.a, c.b, c.x
AttributeError: 'A' object has no attribute 'a'
>>> shared['foo'] = 'bar'
>>> a.foo, b.foo, c.foo
AttributeError: 'A' object has no attribute 'foo'
>>> a.__dict__, b.__dict__, c.__dict__
({'a': 1, 'b': 2, 'foo': 'bar'},
 {'a': 1, 'b': 2, 'foo': 'bar'},
 {'a': 1, 'b': 2, 'foo': 'bar'}
)
>>> b.x  # Where did this come from?
100

根据上述信息,第一种情况按预期工作,但第二种情况没有,因此我想知道添加类级别 __dict__ 属性后发生了什么变化。我们能以任何方式访问现在正在使用的实例字典吗?

【问题讨论】:

  • 您不应该添加带有前导和尾随双下划线字符的属性,这是为系统定义的名称保留的。见Reserved classes of identifiers
  • @martineau 我知道这一点。但这不是这个问题的重点。
  • 因此,您想知道解决方法来解决由于您没有遵循指南(其存在是有原因的)而损坏的东西。
  • @martineau 是的。但仅用于学习目的。我不会在实际代码中做类似的事情。
  • 您不能直接通过a.__dict__['foo'] 之类的方式访问实例的字典吗?

标签: python class python-internals


【解决方案1】:

在第一种情况下,self.__dict__ 可以访问其类型提供的__dict__ 描述符。该描述符允许它获取底层实例字典,并分别使用PyObject_GenericGetDictPyObject_GenericSetDict 将其设置为新字典。

>>> A.__dict__
mappingproxy(
{'__module__': '__main__',
 '__init__': <function A.__init__ at 0x1041fb598>,
 '__dict__': <attribute '__dict__' of 'A' objects>,
 '__weakref__': <attribute '__weakref__' of 'A' objects>, '__doc__': None
})
>>> A.__dict__['__dict__'].__get__(a)
{'a': 1, 'b': 2}

当然,我们也可以从这里设置一个新字典:

>>> new_dict = {}
>>> A.__dict__['__dict__'].__set__(a, new_dict)  # a.__dict__ = new_dict
>>> a.spam = 'eggs'
>>> a.__dict__
{'spam': 'eggs'}
>>> new_dict
{'spam': 'eggs'}
>>> b = A()  # Points to `shared`
>>> b.__dict__
{'a': 1, 'b': 2}

在第二种情况下,我们的类本身包含一个名为__dict__ 的属性,但__dict__ 属性仍然指向mappingproxy

>>> A.__dict__
mappingproxy(
{'__module__': '__main__',
 '__dict__': None,
 '__init__': <function A.__init__ at 0x1041cfae8>,
 '__weakref__': <attribute '__weakref__' of 'A' objects>,
 '__doc__': None}
)

__dict__ 这样的类的属性是special attribute

>>> A.__weakref__ is A.__dict__['__weakref__']
True    
>>> A.__weakref__ = 1    
>>> A.__weakref__, A.__dict__['__weakref__']
(1, 1)

>>> A.__dict__ = {}    
AttributeError: attribute '__dict__' of 'type' objects is not writable

我们设置的属性可以这样访问:

>>> repr(A.__dict__['__dict__'])
'None'

我们现在无法访问 Python 级别的实例字典,但在内部,一个类可以使用 tp_dictoffset 找到它。正如在_PyObject_GetDictPtr 中所做的那样。

__getattribute____setattr__ 也都使用_PyObject_GetDictPtr 访问底层实例字典。

要访问正在使用的实例字典,我们实际上可以使用 ctypes 在 Python 中实现 _PyObject_GetDictPtr。 @user4815162342 here 非常雄辩地完成了这项工作。

import ctypes

def magic_get_dict(o):
    # find address of dict whose offset is stored in the type
    dict_addr = id(o) + type(o).__dictoffset__

    # retrieve the dict object itself
    dict_ptr = ctypes.cast(dict_addr, ctypes.POINTER(ctypes.py_object))
    return dict_ptr.contents.value

继续第二种情况:

>>> magic_get_dict(a)
{'__dict__': {'a': 1, 'b': 2, 'foo': 'bar'}}  # `a` has only one attribute i.e. __dict__
>>> magic_get_dict(b)
{'__dict__': {'a': 1, 'b': 2, 'foo': 'bar'}, 'x': 100}  # `x` found
>>> magic_get_dict(b).update(shared)
>>> b.a, b.b, b.foo, b.x
(1, 2, 'bar', 100)

【讨论】:

  • 或者,您可以直接通过ctypes.pythonapi._PyObject_GetDictPtr 访问_PyObject_GetDictPtr。不过,您需要手动设置 argtypes 和 restype。
猜你喜欢
  • 2020-04-18
  • 2012-03-11
  • 2014-09-19
  • 1970-01-01
  • 2019-10-13
  • 1970-01-01
  • 2021-11-07
  • 2020-01-25
相关资源
最近更新 更多