本文整理汇总了C++中ProcessPtr::create方法的典型用法代码示例。如果您正苦于以下问题:C++ ProcessPtr::create方法的具体用法?C++ ProcessPtr::create怎么用?C++ ProcessPtr::create使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ProcessPtr
的用法示例。
在下文中一共展示了ProcessPtr::create方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: run
bool ExeExcuter::run(
const OJString & exeFile,
const OJString & inputFile,
const OJString & outputFile,
OJInt32_t limitTime,
OJInt32_t limitMemory
)
{
ProcessPtr wp = ProcessFactory::create(ProcessType::WithUser, inputFile, outputFile);
wp->create(exeFile, limitTime, limitMemory);
result_ = wp->getExitCodeEx();
runTime_ = wp->getRunTime();
runMemory_ = wp->getRunMemory();
return isAccept();
}
示例2: run
void JavaExcuter::run(
const OJString & exeFile,
const OJString & inputFile,
const OJString & outputFile,
OJInt32_t limitTime,
OJInt32_t limitMemory
)
{
OJString exePath = FileTool::GetFilePath(exeFile);
OJString exeFileName = FileTool::GetFileName(exeFile);//get only name
OJString cmdBuffer;
FormatString(cmdBuffer, OJStr("java -cp %s %s"), exePath.c_str(), exeFileName.c_str());
ProcessPtr wp = ProcessFactory::create(ProcessType::Excuter, inputFile, outputFile);
wp->create(cmdBuffer, limitTime*30, limitMemory*10);
result_ = wp->getResult();
runTime_ = wp->getRunTime();
runMemory_ = wp->getRunMemory();
}