可能重复:
bash:强制执行的进程具有无缓冲的标准输出
我需要读取二进制的(fceux,nes 模拟器)标准输出来获取一些信息,并在我收到我正在尝试的遗传算法的特殊输入时将其杀死。所以基本上,问题是程序没有刷新他的输出,所以我只在进程结束时收到输出,但它永远不会结束,因为我想杀死它。
那么有没有办法从未刷新的缓冲区子级读取?即使它不在 C++ 中,所以我可以添加一些刷新,然后最终在 C++ 中读取它(但这变得有点脏)。我也尝试过使用python,但也没有找到方法。
这是我的一段代码:
int fd[2];
pid_t pid;
pipe (fd);
if ((pid = fork ()) == 0)
{
close (fd[0]);
dup2 (fd[1], STDOUT_FILENO);
execl ("/usr/bin/fceux", "fceux", "Super Mario Bros.zip", NULL)
perror ("fork");
}
else
{
close (fd[1]);
char buf[1];
std::string res;
while (read (fd[0], buf, 1) > 0)
{
std::cout << "Read" << std::endl;
res += buf;
if (res.find ("score") != std::string::npos)
{
std::cout << "KILL" << std::endl;
kill (pid, SIGKILL);
}
}
close (fd[0]);
}
return 0;