Я хочу запустить процесс, который может выдавать много выходных данных в течение тайм-аута, захватывая stdout
/ stderr
. Использование capture()
и PIPE
в качестве stdout
/ stderr
может привести к взаимоблокировке в соответствии с документацией для subprocess
.
Теперь я в любом случае использую poll()
- потому что я хочу иметь возможность убить процесс после истечения времени ожидания - но я все еще не знаю, как избежать тупика с помощью PIPE. Как мне это сделать?
В настоящее время я просто работаю над созданием временных файлов:
#because of the shitty api, this has to be a file, because std.PIPE is prone to deadlocking with a lot of output, and I can't figure out what to do about it
out, outfile = tempfile.mkstemp()
err, errfile = tempfile.mkstemp()
now = datetime.datetime.now().strftime('%H:%M, %Ss')
print "Running '" + exe + "' with a timeout of ", timeout , "s., starting at ", now
p = subprocess.Popen(args = exe,
stdout = out,
#for some reason, err isn't working if the process is killed by the kernel for, say, using too much memory.
stderr = err,
cwd = dir)
start = time.time()
# take care of infinite loops
sleepDuration = 0.25
time.sleep(0.1)
lastPrintedDuration = 0
duration = 0
while p.poll() is None:
duration = time.time() - start
if duration > lastPrintedDuration + 1:
lastPrintedDuration += 1
#print '.',
sys.stdout.flush()
if duration >= timeout:
p.kill()
raise Exception("Killed after " + str(duration) + "s.")
time.sleep(sleepDuration)
if p.returncode is not 0:
with open(errfile, 'r') as f:
e = f.read()
#fix empty error messages
if e == '':
e = 'Program crashed, or was killed by kernel.'
f.close()
os.close(out)
os.close(err)
os.unlink(outfile)
os.unlink(errfile)
print "Error after " + str(duration) + 's: ',
print "'" + e + "'"
raw_input('test')
raise Exception(e)
else:
print "completed in " + str(duration) + 's.'
os.close(out)
os.close(err)
os.unlink(outfile)
os.unlink(errfile)
Но даже это не может зафиксировать ошибки , если процесс завершается, скажем, ядром (не хватает памяти и т. Д.).
Каково идеальное решение этой проблемы?