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.
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
#include "FITKOFBlockMeshDriver.h"
|
|
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAbstractProgramDriver.h"
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAbstractCommandRunner.h"
|
|
// QT
|
|
#include <qdebug.h>
|
|
|
|
namespace FoamDriver
|
|
{
|
|
int FITKOFBlockMeshDriver::getProgramType()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
QString FITKOFBlockMeshDriver::getProgramName()
|
|
{
|
|
return "blockMesh";
|
|
}
|
|
|
|
void FITKOFBlockMeshDriver::start()
|
|
{
|
|
//输入参数判空
|
|
if (!_inputInfo) return;
|
|
|
|
// 获取blockMesh启动参数
|
|
QStringList blockMeshArguments = _inputInfo->args();
|
|
qDebug() << "blockMeshArguments:" << blockMeshArguments;
|
|
|
|
// 获取监控的路径
|
|
QStringList monitorPaths = _inputInfo->getMonitorPath();
|
|
qDebug() << "monitorPaths:" << monitorPaths;
|
|
|
|
QString blockMeshCommond = "blockMesh " + blockMeshArguments.join(" ");
|
|
qDebug() << "blockMeshCommond:" << blockMeshCommond;
|
|
int indexError = -1;
|
|
// 判断监控路径是否存在
|
|
if (!_commandRunner->isExistDictionary(monitorPaths, indexError))
|
|
{
|
|
QString str;
|
|
if (indexError != -1)
|
|
{
|
|
str = QString("Not Exist Dictionary Path : %1").arg(monitorPaths[indexError]);
|
|
sendMessage(100101, str);
|
|
}
|
|
}
|
|
// 执行命令并捕获其输出
|
|
connect(_commandRunner, SIGNAL(taskFinishedSig(FITKThreadTask*)), this, SLOT(threadFinishedSlot()), Qt::UniqueConnection);
|
|
|
|
_commandRunner->setExecuteCommand(blockMeshCommond);
|
|
_commandRunner->push2ThreadPool();
|
|
}
|
|
|
|
void FITKOFBlockMeshDriver::stop()
|
|
{
|
|
_commandRunner->killProcess(_commandRunner->getID());
|
|
}
|
|
}
|
|
|
|
|