python subprocess阻塞

Posted 妞溜溜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python subprocess阻塞相关的知识,希望对你有一定的参考价值。

import select
import os
import subprocess
import time
import fcntl

args = [‘python‘,‘./fetch_file2.py‘,ip,path]
proc = subprocess.Popen(args, stdout=subprocess.PIPE,stderr=subprocess.PIPE,close_fds=True)

def non_block_read(output):  # 避免阻塞
    fd = output.fileno()
    fl = fcntl.fcntl(fd, fcntl.F_GETFL)
    fcntl.fcntl(fd, fcntl.F_SETFL, fl | os.O_NONBLOCK)
    try:
        return output.read()
    except:
        return ""

while proc.poll() is None: #fetch中rsync结束。但是fetch没有结束(怀疑输出过大)  导致这里一直是None
    pass

                                                
print proc.poll()  # 杀死fetch进程  返回-9
print proc.stderr.read() #阻塞
#方法1: #non_block_read(proc.stderr) #防止阻塞
#方法2: select_rfds = [ proc.stdout, proc.stderr] (rfds, wfds, efds) = select.select(select_rfds, [],[]) if proc.stderr in rfds: #不存在。若select_rfds=[stderr],则阻塞在select上 len = proc.stderr.read(10) if len == 0: print "empty" else: print "proc.stderr" if proc.stdout in rfds: print "proc.stdout"

  

以上是关于python subprocess阻塞的主要内容,如果未能解决你的问题,请参考以下文章

在 Python 中对 subprocess.PIPE 进行非阻塞读取

在 Python 中对 subprocess.PIPE 进行非阻塞读取

在 Python 中对 subprocess.PIPE 进行非阻塞读取

在 Python 中对 subprocess.PIPE 进行非阻塞读取

python 怎么启动一个外部命令程序,并且不阻塞当前进程

python3 linxu 运行shell命令 阻塞与非阻塞问题