Hello is there any argument or options to setup kinda subprocess.Popen(['..'], ..., timeout=20)?
Sultan
|
Hello is there any argument or options to setup kinda Sultan |
|||
|
|
|
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:
Then open the process:
Then create a timer that will call the callback passing the process to it.
Somewhere later in the program, you may want to add the line:
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:
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. |
|||||||||||||
|
|
You could do
using Twisted's asynchronous process API. |
||||
|
|
subprocess.Popen doesn't block so you can do something like this:
|
|||||||||||
|
|
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. |
|||||||||
|
|
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:
You could use this mechanism to terminate after a time out period. |
|||||||||
|