Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello is there any argument or options to setup kinda subprocess.Popen(['..'], ..., timeout=20)?

Sultan

share|improve this question

5 Answers

up vote 4 down vote accepted

I would advise taking a look at the Timer class in the threading module. I used it to implement a timeout for a Popen.

First, create a callback:

    def timeout( p ):
        if p.poll() == None:
            print 'Error: process taking too long to complete--terminating'
            p.kill()

Then open the process:

    proc = Popen( ... )

Then create a timer that will call the callback passing the process to it.

    t = threading.Timer( 10.0, timeout, [proc] )
    t.start()
    proc.join()

Somewhere later in the program, you may want to add the line:

    t.cancel()

Otherwise, the python program will keep running until the timer has finished running.

EDIT: I was advised that there is a race condition that the subprocess p may terminate between the p.poll() and p.kill() calls. I believe the following code can fix that:

    def timeout( p ):
        if p.poll() == None:
            try:
                p.kill()
                print 'Error: process taking too long to complete--terminating'
            except:
                pass

Though you may want to clean the exception handling to specifically handle just the particular exception that occurs when the subprocess has already terminated normally.

share|improve this answer
This code has a race condition. – Mike Graham Jan 18 at 16:40
Mike, could you elaborate or edit a fix above? I've used similar code several times, and if there is an issue, I would definitely like to fix it. – dvntehn00bz Jan 25 at 15:04
1  
print 'Error: process taking too long to complete--terminating' can run even if it's a lie and your process terminates without you killing it (because it does it in the moments between your poll and kill calls). – Mike Graham Jan 27 at 19:37
1  
More importantly, if the subprocess terminates between those calls, p.kill() will raise an exception. – dvntehn00bz Jan 29 at 18:50

You could do

from twisted.internet import reactor, protocol, error, defer

class DyingProcessProtocol(protocol.ProcessProtocol):
    def __init__(self, timeout):
        self.timeout = timeout

    def connectionMade(self):
        @defer.inlineCallbacks
        def killIfAlive():
            try:
                yield self.transport.signalProcess('KILL')
            except error.ProcessExitedAlready:
                pass

        d = reactor.callLater(self.timeout, killIfAlive)

reactor.spawnProcess(DyingProcessProtocol(20), ...)

using Twisted's asynchronous process API.

share|improve this answer
+1 for providing an alternative rather than "It can't be done". – Noufal Ibrahim Sep 17 '10 at 13:35

subprocess.Popen doesn't block so you can do something like this:

p = subprocess.Popen(['...'])
time.sleep(20)
if p.poll() is None:
  p.kill()
  print 'timed out'
else:
  print p.communicate()
share|improve this answer
2  
This would freeze this process for 20 seconds. Is that acceptable? – Noufal Ibrahim Sep 17 '10 at 7:20
1  
doesn't this kinda defeat the point of using a subprocess? – aaronasterling Sep 17 '10 at 7:20
seem it is! I think this is a little inconvenience of using subprocess. – sultan Sep 17 '10 at 8:16

Unfortunately, there isn't such a solution. I managed to do this using a threaded timer that would launch along with the process that would kill it after the timeout but I did run into some stale file descriptor issues because of zombie processes or some such.

share|improve this answer
+1 This would be my solution. – aaronasterling Sep 17 '10 at 7:21
1  
I experienced such a problem too with file descriptors on zombie processes. – sultan Sep 17 '10 at 7:44
Sultan. It should be possible to correct those. I did manage to finally polish my application into something workable but it was not generic enough to publish. – Noufal Ibrahim Sep 17 '10 at 8:36

No there is no time out. I guess, what you are looking for is to kill the sub process after some time. Since you are able to signal the subprocess, you should be able to kill it too.

generic approach to sending a signal to subprocess:

proc = subprocess.Popen([command])
time.sleep(1)
print 'signaling child'
sys.stdout.flush()
os.kill(proc.pid, signal.SIGUSR1)

You could use this mechanism to terminate after a time out period.

share|improve this answer
Is it universal sys.stdout.flush() for all apps using subprocess? – sultan Sep 17 '10 at 8:17
2  
This is pretty much like Abhishek's answer. He's using SIGKILL and you're using SIGUSR1. It has the same issues. – Noufal Ibrahim Sep 17 '10 at 8:35
Ok thanks guys! – sultan Sep 17 '10 at 8:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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