- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要一个非阻塞 GUI 解决方案来运行未定义数量的系统命令(例如需要一些参数作为输入的 bash 脚本),监控 他们的地位。 (例如:正在运行/已完成)并终止(终止)进程。
一个例子可以是:
从列表中选择一个应用程序 (QComboBox)
设置参数(QLineEdit)
运行它(QProcess)
当它运行时,附加:
作为 QTableWidget 中的行
..我正在寻找一种解决方案来监视每个命令的状态。
应用程序可以是像这样的简单脚本:
class runcommands(QWidget):
def __init__(self, parent=None):
super(runcommands, self).__init__(parent)
layout = QFormLayout()
self.commandlist = QComboBox()
self.param = QLineEdit()
self.runit = QToolButton()
self.runit.setText('run')
self.runit.clicked.connect(self.runcommand)
self.commandlist.addItems(['simplerun.py', 'simplerun2.py'])
self.table = QTableWidget()
self.table.setColumnCount(5)
self.model = QStandardItemModel()
self.table.setHorizontalHeaderLabels(['Process', 'Parameter', 'STDOut', 'Status', 'Kill'])
self.rowcount = 0
layout.addRow(self.commandlist)
layout.addRow(self.param)
layout.addRow(self.runit)
layout.addRow(self.table)
self.setLayout(layout)
self.setWindowTitle("Run & Monitor")
self.commandrunning=0
self.mylistofprocesses=[]
def runcommand(self):
# add a record in the QTableWidget
# updating its row number at each run
self.rowcount = self.rowcount + 1
self.table.setRowCount(self.rowcount)
# add column 0: command string
self.c1 = QTableWidgetItem()
self.c1.setText("%s" % os.path.join(os.getcwd(), self.commandlist.currentText()))
self.table.setItem(self.rowcount - 1, 0, self.c1)
# add column 1: parameter string
self.c2 = QTableWidgetItem()
self.c2.setText("%s" % self.param.text())
self.table.setItem(self.rowcount - 1, 1, self.c2)
# add column 2 to store the Process StandardOutput
stdout_item = QTableWidgetItem()
self.table.setItem(self.rowcount - 1, 2, stdout_item)
# add column 3: index to store the process status (0: Not Running, 1: Starting, 2: Running)
status_item = QTableWidgetItem()
self.table.setItem(self.rowcount - 1, 3, status_item)
# add column 4: kill button to kill the relative process
killbtn = QPushButton(self.table)
killbtn.setText('Kill')
self.table.setCellWidget(self.rowcount - 1, 4, killbtn)
# Initiate a QProcess running a system command
process = QtCore.QProcess()
command = 'python3' + ' ' + os.getcwd() + '/' + self.commandlist.currentText() + ' ' + self.param.text()
process.setProcessChannelMode(QtCore.QProcess.MergedChannels)
# connect the stdout_item to the Process StandardOutput
# it gets constantly update as the process emit std output
process.readyReadStandardOutput.connect(lambda: stdout_item.setText(str(process.readAllStandardOutput().data().decode('utf-8'))))
# start the process
process.start(command)
# this was supposed to add the process status in the relative column ... BUT it DOESN'T do it
status_item.setText(str(process.ProcessState()))
# connect the kill button to the process.kill method, to stop the process
killbtn.clicked.connect(process.kill)
killbtn.clicked.connect(lambda: killbtn.setText('Killed'))
# this was supposed to 'UPDATE' the process status (from running to stoppted) in the relative column ... BUT it DOESN'T do it
killbtn.clicked.connect(lambda: status_item.setText(str(process.ProcessState())))
# append the process to a list so that it doesn't get destroyed at each run
self.mylistofprocesses.append(process)
def main():
app = QApplication(sys.argv)
ex = runcommands()
ex.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
感谢 IRC 上 Avaris 的帮助,我解决了将表中的每一行连接到单独进程的主要问题。
对原始问题进行一些编辑后,我清理了一些代码,并且能够添加按钮来停止/终止进程。
为了完成这个示例任务,我需要实现对所有事件进程的监控,并在第 4 列的表中“实时”更新它们的状态(除了打印 std-output第三栏)。
我尝试这样做:
status_item.setText(str(process.ProcessState())))
但我无法让它工作。
最佳答案
您必须使用stateChanged
信号:
[...]
self.mylistofprocesses.append(process)
status = {QProcess.NotRunning: "Not Running",
QProcess.Starting: "Starting",
QProcess.Running: "Running"}
process.stateChanged.connect(lambda state: status_item.setText(status[state]))
截图:
关于python - 使用 QProcess 通过 PyQt 运行和监控系统进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42328710/
第一次在stackoverflow上提问。而且我是一个中国女孩,如果我对这个问题的描述有太多的语法错误,以至于你不能轻易理解,我很抱歉。下面是我的问题:头文件: class AdbDriver : p
我正在使用 QProcess 来运行其他程序。但是当我在调用 QProcess.start() 后退出我的应用程序时,它在调试控制台中说: QProcess: Destroyed while proc
我想运行一个 qprocess(程序 adb),当该过程完成时将结果返回给调用函数。但是,adb 很有可能会发现自己陷入循环,将诸如“ADB 服务器未确认”之类的错误消息打印到标准输出,而永远不会完成
我有一个 PyQt5 GUI 应用程序,想要执行外部程序并在 QTextEdit 小部件上显示外部程序的 stdout、stderr 和 stdin。我已经设法对标准输出和标准错误执行此操作。我需要有
Qt 文档给出了这样的解释: QProcess::开始: Starts the given program in a new process, if none is already running,
我阅读了一些文档,但对我来说还不够清楚。我知道“结束”进程和 kill() 都是为了强制它结束,但是 terminate() 应该做什么呢? 最佳答案 不知道你有没有写清楚: void QProces
我正在尝试将序列化图像传递到我在 Qt 程序中启动的进程。但是,这样做时我收到此错误消息: QObject::connect: Cannot queue arguments of type 'QPro
平台:Windows10我使用 QProcess::start 执行 Python 文件(在同一个目录中),但是我 无法从 readAllStandardOutput 函数获取结果。 Python文件
我有以下代码: proc = new QProcess(); proc->startDetached("C:\\ffmpeg.exe", QStringList() <<"-i"<< "C:\\pic
平台:Qt 4.8.2,Win 7 请考虑以下逻辑流程: 1. App started 2. functionA() triggered 3. the app periodically capture
A 在尝试阻止我的 QProcess 时遇到问题在它的父析构函数中。这是我的代码: AbstractProcess::~AbstractProcess() { if((m_process->s
我有一个必须暂停和恢复的 QProcess。我用 kill(pid_t(process->pid()), SIGSTOP); 和 kill(pid_t(process->pid()), SIGCONT
我尝试实现 subprocess Popen blocking PyQt GUI 的建议但似乎 onFinished 函数永远不会被调用。 class MyApp(QtWidgets.QMainWin
我有以下使用 QProcess 运行可执行文件的代码。代码运行良好,新的可执行文件运行正常。 QString fileName = ui.textBrowser_csvFile->toPlainTex
我想创建一个 QProcess 并在后台运行它。我有一个调度程序,它维护要作为 QProcesses 启动的作业队列。这些 QProcess 具有在 lsf 机器中运行的命令。要求是,一旦 QProc
我只是想通过以下源代码用 QProcess 创建一个文件: void Processmethod() { QDialog *ProcessMessage = new QDialog;
我正尝试在 QProcess 下的 Raspberry Pi (Raspbian) 中启动 CEC 命令。 如果我在我的 shell 中执行这个: echo 'standby 0' | cec-cli
一段时间以来,我一直在努力解决这个基本问题。我正在尝试从一个线程启动一个 QProcess。启动进程工作正常并且进程运行正常,但我的问题是 finished() 信号永远不会发出。 这是我的例子: 我
在我的 Qt C++ 程序中,我创建了一个进程,如下所示: myProcess = new QProcess(); myProcess->start(programpath, arguments);
出于某种原因,我无法在 Ubuntu 上使用 QProcess 启动进程,我不明白为什么... int main(int argc, char *argv[]) { //Run the pro
我是一名优秀的程序员,十分优秀!