【转】python os.popen 超时问题


python 版本 2.5.4 (在高版本python中提倡使用 subprocess.Popen 取代 os.popen)

os.popen 会出现过长时间等待导致阻塞问题, 解决方法如下:

[python] view plain copy print?
def TIMEOUT_COMMAND(command, timeout):  
    """call shell-command and either return its output or kill it 
    if it doesn't normally exit within timeout seconds and return None"""  
    import subprocess, datetime, os, time, signal  
    cmd = command.split(" ")  
    start = datetime.datetime.now()  
    process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)  
    while process.poll() is None:  
        time.sleep(0.2)  
        now = datetime.datetime.now()  
        if (now - start).seconds> timeout:  
            os.kill(process.pid, signal.SIGKILL)  
            os.waitpid(-1, os.WNOHANG)  
            return None  
    return process.stdout.readlines()  

  

原文出自:http://blog.csdn.net/cenziboy/article/details/8298844


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM