sqlmap/lib/utils/timeout.py
2010-04-06 14:33:57 +00:00

24 lines
593 B
Python

#!/usr/bin/env python
import threading
def timeout(func, args=(), kwargs={}, timeout_duration=1, default=None):
class InterruptableThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.result = None
def run(self):
try:
self.result = func(*args, **kwargs)
except:
self.result = default
thread = InterruptableThread()
thread.start()
thread.join(timeout_duration)
if thread.isAlive():
return default
else:
return thread.result