up vote 17 down vote favorite
11
share [g+] share [fb]

I'm calling a function in Python which I know may stall and force me to restart the script. How do I call the function or what do I wrap it in so that if it takes longer than 5 seconds the script cancels it and does something else.

Thanks

link|improve this question

Does "stall" mean "run indefinitely" or just "run a few seconds longer than I want to wait, but it will always terminate properly"? It makes a big difference on what the proper answer is for your question. – Brandon Jan 29 '09 at 20:11
Hang for at least 20 seconds though the time period should logically be variable to the situation being dealt with. – Teifion Jan 30 '09 at 12:02
I think you need to distinguish between 2 cases: (simple) - a timeout on pure python function-calls, and (annoying), implementing a timeout on external calls. I suspect that what might work best for one will not be best for the other. – Salim Fadhley Feb 2 '09 at 13:32
feedback

6 Answers

up vote 12 down vote accepted

I'm making some local xmlrpc calls with a timeout using the following code, borrowed from an ActiveState Cookbook recipe:

def timeout(func, args=(), kwargs={}, timeout_duration=10, default=None):
    """This function will spawn a thread and run the given function
    using the args, kwargs and return the given default value if the
    timeout_duration is exceeded.
    """ 
    import threading
    class InterruptableThread(threading.Thread):
        def __init__(self):
            threading.Thread.__init__(self)
            self.result = default
        def run(self):
            self.result = func(*args, **kwargs)
    it = InterruptableThread()
    it.start()
    it.join(timeout_duration)
    if it.isAlive():
        return it.result
    else:
        return it.result

Invoking it with a 5 second timeout:

result = timeout(remote_calculate, (myarg,), timeout_duration=5)
link|improve this answer
5  
Doesn't Thread.join() just block until the timeout? If the thread doesn't terminate normally, it will continue to run in the background consuming CPU, perhaps for the lifetime of the app? – Brandon Jan 29 '09 at 20:09
1  
is something wrong with last 4 lines? return result regardless of thread state? why check it then? should it be raise in the first branch? – Fluffy Oct 7 '09 at 11:58
Agree with Brandon Corfman here. – xitrium Aug 2 '10 at 8:35
I'd suggest that the if/else block should have "return default" in the then-branch. That argument is currently completely unused. Also beware that the class InterruptableThread contradicts its name: It does not implement interruption of the thread. Also I fail to see why an extra class is needed here (it is only used as result storage). Note also that exceptions will escape the new thread (as in: they will be passed to sys.excepthook and otherwise ignored). – Bluehorn Dec 19 '11 at 12:28
feedback

You may use the signal package

In [1]: import signal

# Register an handler for the timeout
In [2]: def handler(signum, frame):
   ...:     print "Forever is over!"
   ...:     raise Exception("end of time")
   ...: 

# This function *may* run for an indetermined time...
In [3]: def loop_forever():
   ...:     import time
   ...:     while 1:
   ...:         print "sec"
   ...:         time.sleep(1)
   ...:         
   ...:         

# Register the signal function handler
In [4]: signal.signal(signal.SIGALRM, handler)
Out[4]: 0

# Define a timeout for your function
In [5]: signal.alarm(10)
Out[5]: 0

In [6]: try:
   ...:     loop_forever()
   ...: except Exception, exc: 
   ...:     print exc
   ....: 
sec
sec
sec
sec
sec
sec
sec
sec
Forever is over!
end of time

# Cancel the timer if the function returned before timeout
# (ok, mine won't but yours maybe will :)
In [7]: signal.alarm(0)
Out[7]: 0

10 seconds after the call alarm.alarm(10), the handler is called. This raises an exception that you can intercept from the regular Python code.

This module doesn't play well with threads (but then, who does?)

link|improve this answer
1  
VHDL plays pretty well with the idea of threading because everything is concurrent ;) – Teifion Jan 30 '09 at 12:03
Great solution. The advantage of this approach is that it can interrupt almost anything. The disadvantage is it requires python 2.5 or newer... all you luddites better use an alternative method. – Salim Fadhley Feb 2 '09 at 13:26
You should probably also record and restore the old value of the signal handler, returned from the signal.signal call. Also this seems to work for 2.4 also (yay RHEL...). – xitrium Aug 2 '10 at 8:40
1  
I use Python 2.5.4. There is such an error: Traceback (most recent call last): File "aa.py", line 85, in func signal.signal(signal.SIGALRM, handler) AttributeError: 'module' object has no attribute 'SIGALRM' – flypen May 13 '11 at 1:59
1  
@flypen that's because signal.alarm and the related SIGALRM are not available on Windows platforms. – Double AA Aug 19 '11 at 16:20
show 2 more comments
feedback

If this is some kind of network or file operation, you might also consider using nonblocking IO. This can be a better option if you're doing a lot of these types of operations at once (otherwise, you can bog your system down fairly quickly with a lot of threads). Here's a socket howto that covers nonblocking IO (in the context of network operations).

The downside? Well, it can be a pain to program. Sometimes even moreso than just using a thread.

link|improve this answer
feedback

Maybe try to call it from other thread, which You could easily terminate.

link|improve this answer
There is no method in the thread API for terminating a thread. The function must terminate normally for the thread to end, unless you want to resort to platform-specific hacks. – Brandon Jan 29 '09 at 20:33
oops :) that's a pitty – Jacek Ławrynowicz Jan 30 '09 at 13:30
feedback

What yabcok said - start a new thread to call the function. In the original thread, sleep for 5 seconds, then terminate the function thread if it hasn't already ended.

Maybe there is a better approach to your problem? Why might the function take longer than 5 seconds?

link|improve this answer
feedback

I would use the time() method from time to compare the time while you're running your function, but clearly this only works if you'd be hitting an infinite loop, not a function hanging.

def meth():
    start_time = time()
    while(whatever):
        do_something
        if time() - smart_time > 5:
            return

But I'm just a small fry.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.