You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
#include "FITKOFFoamToVTKDriver.h"
|
|
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAbstractProgramDriver.h"
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAbstractCommandRunner.h"
|
|
|
|
#include <QDebug>
|
|
namespace FoamDriver
|
|
{
|
|
int FITKOFFoamToVTKDriver::getProgramType()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
QString FITKOFFoamToVTKDriver::getProgramName()
|
|
{
|
|
return "foamRun";
|
|
}
|
|
|
|
void FITKOFFoamToVTKDriver::start()
|
|
{
|
|
//输入参数判空
|
|
if (!_inputInfo) return;
|
|
|
|
// 获取foamRun启动参数
|
|
QStringList foamRunArguments = _inputInfo->args();
|
|
|
|
qDebug() << "foamToVTKArguments:" << foamRunArguments;
|
|
|
|
// 获取监控的路径
|
|
QStringList monitorPaths = _inputInfo->getMonitorPath();
|
|
|
|
qDebug() << "monitorPaths:" << monitorPaths;
|
|
|
|
QString foamToVTKCommond = "foamToVTK " + foamRunArguments.join(" ");
|
|
|
|
qDebug() << "foamToVTKCommond:" << foamToVTKCommond;
|
|
|
|
// 判断监控路径是否存在
|
|
if (_commandRunner->isExistDictionary(monitorPaths))
|
|
{
|
|
// 执行命令
|
|
connect(_commandRunner, SIGNAL(taskFinishedSig(FITKThreadTask*)), this, SLOT(threadFinishedSlot()), Qt::UniqueConnection);
|
|
_commandRunner->setExecuteCommand(foamToVTKCommond);
|
|
_commandRunner->push2ThreadPool();
|
|
}
|
|
|
|
}
|
|
|
|
void FITKOFFoamToVTKDriver::stop()
|
|
{
|
|
_commandRunner->killProcess(_commandRunner->getID());
|
|
}
|
|
}
|