-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #190 from scipp/fix-deadlock
Avoid deadlock caused by functools.cached_property
- Loading branch information
Showing
4 changed files
with
65 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# Copyright (c) 2024 Scipp contributors (https://github.com/scipp) | ||
""" | ||
We avoid functools.cached_property due to a per-instance lock which causes | ||
deadlocks in multi-threaded use of ScippNexus. This lock is removed in | ||
Python 3.12, so we can remove this file once we drop support for Python 3.11. | ||
This file contains a 1:1 backport of Python 3.12's cached_property. | ||
""" | ||
# flake8: noqa: E501 | ||
from types import GenericAlias | ||
|
||
_NOT_FOUND = object() | ||
|
||
|
||
class cached_property: | ||
def __init__(self, func): | ||
self.func = func | ||
self.attrname = None | ||
self.__doc__ = func.__doc__ | ||
|
||
def __set_name__(self, owner, name): | ||
if self.attrname is None: | ||
self.attrname = name | ||
elif name != self.attrname: | ||
raise TypeError( | ||
"Cannot assign the same cached_property to two different names " | ||
f"({self.attrname!r} and {name!r})." | ||
) | ||
|
||
def __get__(self, instance, owner=None): | ||
if instance is None: | ||
return self | ||
if self.attrname is None: | ||
raise TypeError( | ||
"Cannot use cached_property instance without calling __set_name__ on it." | ||
) | ||
try: | ||
cache = instance.__dict__ | ||
except ( | ||
AttributeError | ||
): # not all objects have __dict__ (e.g. class defines slots) | ||
msg = ( | ||
f"No '__dict__' attribute on {type(instance).__name__!r} " | ||
f"instance to cache {self.attrname!r} property." | ||
) | ||
raise TypeError(msg) from None | ||
val = cache.get(self.attrname, _NOT_FOUND) | ||
if val is _NOT_FOUND: | ||
val = self.func(instance) | ||
try: | ||
cache[self.attrname] = val | ||
except TypeError: | ||
msg = ( | ||
f"The '__dict__' attribute on {type(instance).__name__!r} instance " | ||
f"does not support item assignment for caching {self.attrname!r} property." | ||
) | ||
raise TypeError(msg) from None | ||
return val | ||
|
||
__class_getitem__ = classmethod(GenericAlias) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters