我正在编写一个 c++ 程序,它执行和输出(实时)一个 shell 脚本、makefile 或只是另一个程序。但是,当有错误或没有错误时,我希望我的程序以不同的方式返回。
#include "execxi.h"
using namespace std;
int execXI::run(string command)
{
FILE *in;
char buff[512];
// is this the check for command execution exited with not 0?
if(!(in = popen(command.c_str(), "r"))){
// I want to return the exit code and error message too if any
return 1;
}
// this part echoes the output of the command that's executed
while(fgets(buff, sizeof(buff), in)!=NULL){
cout << buff;
}
pclose(in);
return 0;
}
是我到目前为止所拥有的。
假设这个脚本运行make
来构建一个程序,它给出了一个像这样的错误
on_target_webkit_version out/Release/obj/gen/webkit_version.h
Traceback (most recent call last):
File "../build/webkit_version.py", line 107, in <module>
sys.exit(main())
File "../build/webkit_version.py", line 103, in main
return EmitVersionHeader(*sys.argv[1:])
File "../build/webkit_version.py", line 86, in EmitVersionHeader
webkit_revision = GetWebKitRevision(webkit_dir, version_file)
File "../build/webkit_version.py", line 60, in GetWebKitRevision
version_info = lastchange.FetchVersionInfo(
AttributeError: 'module' object has no attribute 'FetchVersionInfo'
make: *** [out/Release/obj/gen/webkit_version.h] Error 1
我有可能知道这退出时出错了吗?
else than 0
因为它是一个错误,所以它会退出代码吗?最后一部分是输出的
stderr
吗?
考虑到make
exited with code not 0
,比方说1
,它输出stderr
是我最终无法捕获这些退出代码和错误消息吗?
如何捕获退出代码并stderr
在输出程序结果后,并在函数中返回exit code
/ stderr
?