我正在尝试在 C++ 中实现一个运行 shell 命令并返回退出代码的函数,stdout
我stderr.
正在使用Boost process library
std::vector<std::string> read_outline(std::string & file)
{
bp::ipstream is; //reading pipe-stream
bp::child c(bp::search_path("nm"), file, bp::std_out > is);
std::vector<std::string> data;
std::string line;
while (c.running() && std::getline(is, line) && !line.empty())
data.push_back(line);
c.wait();
return data;
}
在 boost 网站的上述示例中,在 while 循环中检查了条件 c.running()。如果进程在到达 while 循环之前完成执行怎么办?在那种情况下,我将无法将子进程的标准输出存储到数据中。Boost 的文档还提到了以下内容
[警告] 警告 如果在 nm 退出后尝试读取,管道将导致死锁
因此,似乎 c.running() 的检查应该在 while 循环中。
如何在程序到达 while 循环之前从完成运行的进程中获取标准输出(和标准错误)?