4

我正在尝试在 C++ 中实现一个运行 shell 命令并返回退出代码的函数,stdoutstderr.正在使用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 循环之前从完成运行的进程中获取标准输出(和标准错误)?

4

1 回答 1

0

我相信等待电话是为了什么。在此之前,子进程实际上并没有在任何操作系统中消失(它只是在不处于运行状态后改变状态)。

于 2018-09-25T11:14:27.720 回答