sqlmap/lib/utils/timeout.py
Miroslav Stampar c24f1cc07c some update
2010-04-06 14:59:31 +00:00

28 lines
737 B
Python

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