Python Class Inheritance - Spooky Action
Solution 1:
The aedion.project
module does two things:
It adds methods from classes in the
aedion.agents
package to the class, in order for the documentation generator to include these when extracting docstrings and other information, using aProjectMeta
metaclass:class ProjectMeta(type): """ Project metaclass with delegated methods added. Public methods are added to the class dictionary during :meth:`__new__` in order to fool Sphinx (and perhaps other API documentation generators) into thinking that the resulting instantiated class actually contains those methods, which it does not since the methods are removed during :meth:`Project.__init__`. """
these methods, if used, would not be correctly bound however.
The
Project.__init__
method callsProject._init_delegations()
. This method deletes the delegated methods from the class:# Remove class-level function added by ProjectMeta. if hasattr(self.__class__, attr_name): delattr(self.__class__, attr_name)
Note the use of
self.__class__
here. This is needed because Python won't look for the delegated method via the__getattr__
hook if the method is found on the class instead.The delegated methods are bound to a dedicated agent instance, so are in fact delegating to that agent:
agent = getattr(aeidon.agents, agent_class_name)(self) # ... attr_value = getattr(agent, attr_name) # ... self._delegations[attr_name] = attr_value
When you create a wrapper around this class, the deletion step fails. self.__class__
is your wrapper, not the base Project
class. Thus the methods are bound incorrectly; the metaclass-provided methods are being bound, and the __getattr__
hook is never invoked to find the delegated methods instead:
>>> import aeidon
>>> class Wrapper(aeidon.Project): pass
...
>>> wrapper = Wrapper()
>>> wrapper.open_main
<bound method Wrapper.open_main of <__main__.Wrapper object at 0x1106313a8>>
>>> wrapper.open_main.__self__
<__main__.Wrapper object at 0x1106313a8>
>>> wrapper._delegations['open_main']
<bound method OpenAgent.open_main of <aeidon.agents.open.OpenAgent object at 0x11057e780>>
>>> wrapper._delegations['open_main'].__self__
<aeidon.agents.open.OpenAgent object at 0x11057e780>
because the open_main
method on Project
still exists:
>>> Project.open_main
<function OpenAgent.open_main at 0x110602bf8>
As soon as you create an instance of Project
those methods are deleted from the class:
>>> Project()
<aeidon.project.Project object at 0x1106317c8>
>>> Project.open_main
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: type object 'Project' has no attribute 'open_main'
and your wrapper would start to work as now the delegated open_main
is found:
>>> wrapper.open_main
<bound method OpenAgent.open_main of <aeidon.agents.open.OpenAgent object at 0x11057e780>>
>>> wrapper.open_main.__self__
<aeidon.agents.open.OpenAgent object at 0x11057e780>
Your wrapper will have to do the deletions itself:
class Wrapper(aeidon.Project):
def __init__(self):
super().__init__()
for name in self._delegations:
if hasattr(aeidon.Project, name):
delattr(aeidon.Project, name)
Note that if the aedion
maintainers replaced self.__class__
with just __class__
(no self
) their code would still work and your subclass approach would also work without having to manually do the class clean-up again. That's because in Python 3, the __class__
reference in methods is an automatic closure variable pointing to the class on which a method was defined. For Project._init_delegations()
that'd be Project
. Perhaps you could file a bug report to that effect.
Post a Comment for "Python Class Inheritance - Spooky Action"