Created
July 28, 2022 12:43
-
-
Save IaroslavR/af51beb8a0a1552d173eab771cd3f279 to your computer and use it in GitHub Desktop.
Ultimate timeout wrapper
This file contains hidden or 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
from functools import wraps | |
import errno | |
import os | |
import signal | |
class TimeoutError(Exception): | |
pass | |
def timeout(seconds=30, error_message=os.strerror(errno.ETIMEDOUT)): | |
def decorator(func): | |
def _handle_timeout(signum, frame): | |
raise TimeoutError(error_message) | |
def wrapper(*args, **kwargs): | |
signal.signal(signal.SIGALRM, _handle_timeout) | |
signal.alarm(seconds) | |
try: | |
result = func(*args, **kwargs) | |
finally: | |
signal.alarm(0) | |
return result | |
return wraps(func)(wrapper) | |
return decorator |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment