sqlmap/lib/utils/timeout.py

27 lines
661 B
Python
Raw Normal View History

2010-04-06 18:33:57 +04:00
#!/usr/bin/env python
import threading
2010-04-06 19:24:56 +04:00
from lib.core.data import logger
2010-04-06 18:59:31 +04:00
def timeout(func, args=(), kwargs={}, duration=1, default=None):
2010-04-06 18:33:57 +04:00
class InterruptableThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.result = None
def run(self):
try:
self.result = func(*args, **kwargs)
2010-04-06 19:24:56 +04:00
except Exception, msg:
logger.log(8, msg)
2010-04-06 18:33:57 +04:00
self.result = default
thread = InterruptableThread()
thread.start()
2010-04-06 18:59:31 +04:00
thread.join(duration)
2010-04-06 19:28:34 +04:00
if thread.isAlive():
2010-04-06 18:33:57 +04:00
return default
else:
return thread.result