我有一个继承QThread
的类,我重新实现了run()
方法。在这个run方法中,有QProcess
(在运行中声明)启动程序。
现在,如果我在该流程仍在运行时关闭我的应用程序,它实际上不会关闭,直到流程结束。
所以我的问题是如何停止这个过程?
从我在Qt文档中读到的内容来看,我不能在这里使用signal / slot,因为我的进程将与不是主线程的线程具有线程关联,因此连接排队等等。停止我的过程。
我使用的是Qt 5.8
提前致谢!
编辑:这是线程代码,如果您需要更多
,请告诉我void run()
{
QString cmd;
QProcess p;
connect(&p, SIGNAL(finished(int)), this, SLOT(quit()));
//connect(this, SIGNAL(signalTerminateProcess()), &p, SLOT(kill())); // queued connect that doesn't kill my process
p.start(cmd);
if(p.waitForFinished(-1))
{
qInfo("process done");
}
}
答案 0 :(得分:2)
首先,你可以使用信号和放大器跨越QThreads的插槽,您甚至可以使用Qt::BlockingQueuedConnection
等待插槽执行。请参阅Qt documentation。
但是,这需要目标QObject存在于具有运行事件循环的线程中。在您的情况下,由于您已经超载QThread::run()
,您将没有事件循环。
正如我所看到的,您可以通过两种方法修复代码,无论是进行小修改还是更改设计并使用事件循环。
void run()
{
QString cmd;
QProcess p;
connect(&p, SIGNAL(finished(int)), this, SLOT(quit()));
//connect(this, SIGNAL(signalTerminateProcess()), &p, SLOT(kill())); // queued connect that doesn't kill my process
p.start(cmd);
while(! p.waitForFinished(100)) //Wake up every 100ms and check if we must exit
{
if (QThread::currentThread()->isInterruptionRequested())
{
p.terminate();
if (! p.waitForFinished(1000))
p.kill()
break;
}
}
qInfo("process done");
}
int cleanUp()
{
thread->requestInterruption();
thread->wait();
}
或
QProcess *process = nullptr;
void run()
{
QString cmd;
QProcess p;
process = &p; //You shouldn't do that in real code
connect(&p, SIGNAL(finished(int)), this, SLOT(quit()));
//connect(this, SIGNAL(signalTerminateProcess()), &p, SLOT(kill())); // queued connect that doesn't kill my process
p.start(cmd);
while(! p.waitForFinished(100)) //Wake up every 100ms and check if we must exit
{
QCoreApplication::processEvents();
}
qInfo("process done");
process = nullptr;
}
int cleanUp()
{
QTimer::singleShot(0, process, &QProcess::terminate);
// Qt 5.10 -> QMetaObject::invokeMethod(process, &QProcess::terminate);
if (! thread->wait(1000))
{
QTimer::singleShot(0, process, &QProcess::kill);
thread->wait();
}
}
// Create thread
QThread thread;
thread.start();
// Create process and move it to the other thread
QProcess process;
process.moveToThread(&thread);
void startProcess()
{
p.start(cmd);
}
QMutex mutex;
void stopProcess()
{
p.terminate();
if (!p.waitForFinished(1000))
p.kill();
p.moveToThread(qApp->thread());
mutex.unlock();
}
// Call startProcess() in the other thread
QTimer::singleShot(0, &process, &startProcess);
// Call stopProcess() in the other thread
mutex.lock();
QTimer::singleShot(0, &process, &stopProcess);
mutex.lock();
thread.quit();
if (!thread.wait(100))
thread.terminate();
你可以:
Qt::BlockingQueuedConnection
连接的信号替换互斥锁。startProcess()
和stopProcess()
。QTimer::singleShot()
的来电替换为QMetaObject::invokeMethod()
或使用信号。 请注意,您可以将Qt::BlockingQueuedConnection
与QMetaObject::invokeMethod()