如何获取子进程默认/预设值/行为

时间:2018-03-02 09:35:39

标签: python stdin stderr dev-null

在这个post中,我已经解释了如何检查在Windows会话中打开了多少个QGIS项目。

这是缩短的代码:

import os
import subprocess
from os.path import basename
from PyQt4.QtGui import QMessageBox

def checkQgisProcesses(self):
    try:
        from subprocess import DEVNULL
    except ImportError:
        DEVNULL = os.open(os.devnull, os.O_RDWR)

    res = subprocess.check_output('C:\Windows\System32\cmd.exe /c tasklist /FI "IMAGENAME eq qgis-bin.exe" -v 2>NUL', stdin=DEVNULL, stderr=DEVNULL, startupinfo = info)
    ...

def someOtherFunc(self):
    self.checkQgisProcesses()
    ...

代码使用Windows中的tasklist获取有关所有打开窗口的信息并过滤QGIS窗口标题。

我在QGIS插件的函数中使用此代码。

插件中还有另一个函数,我再调用多个subprocess来与另一个程序(SAGA GIS)进行一些计算:

curv_PATH = plugin_pth + 'dem_curvature.bat'
subprocess.call(["C:\Windows\System32\cmd.exe", "/c", script_PATH], startupinfo = info)
subprocess.call(['gdalwarp', raster_dest_data + 'dem_gaussian.sdat', '-tr', cellsize, cellsize, '-r', 'bilinear', raster_dest_data + 'dem_res.tif' ], startupinfo = info)
subprocess.call(["C:\Windows\System32\cmd.exe", "/c", curv_PATH], startupinfo = info)

问题是这些subprocess调用不再有效。我在QGIS python控制台中没有遇到特定错误。

当我发表评论self.checkQgisProcesses()时,它再次发挥作用。

我认为问题在于DEVNULLstdinstderr参数。

如何将它们重新设置为默认值?

更新

我错误地认为问题可能是DEVNULL声明。显然问题是使用subprocess.STARTUPINFO()

这是一个可重复的例子:

import os
from os.path import basename
import subprocess

SW_HIDE = 0
info = subprocess.STARTUPINFO()
info.dwFlags = subprocess.STARTF_USESHOWWINDOW
info.wShowWindow = SW_HIDE

def checkFirefoxProcesses():
    try:
        from subprocess import DEVNULL
    except ImportError:
        DEVNULL = os.open(os.devnull, os.O_RDWR)
    res = subprocess.check_output('C:\Windows\System32\cmd.exe /c tasklist /FI "IMAGENAME eq firefox.exe" -v 2>NUL', stdin=DEVNULL, stderr=DEVNULL, startupinfo = info)
    print res

def helloWorldToText():
    subprocess.call(["C:\Windows\System32\cmd.exe", "/c", r"d:\\hello_world.bat"], startupinfo = info)

checkFirefoxProcesses()
helloWorldToText()

这是来自hello_world.bat的代码:

REM @ECHO OFF

ECHO Hello World! > d:\\hello_world.txt

PAUSE

函数checkFirefoxProcesses()查找开放的firefox进程。要运行该示例,您必须打开firefox会话。函数helloWorldToText()在BAT文件的帮助下从ECHO创建文本文件。

该示例不会使用startupinfo = info声明创建文本文件。当我运行subprocess函数helloWorldToText()而没有startupinfo = info时,它就可以运行。

案例:在没有checkFirefoxProcesses()的情况下运行startupinfo = info并在helloWorldToText()下运行startupinfo = info

0 个答案:

没有答案