5

我正在尝试重定向子进程的标准输入和标准输出。想用缓冲区中的二进制数据填充进程的标准输入并读取它,(但现在我只需要知道有多少写入标准输出)

namespace  bp = boost::process;
bp::opstream in;
bp::ipstream out;

bp::child c(Cmd.c_str(), bp::std_out > out, bp::std_in < in);

in.write((char*)buffer,bufferSize);
integer_type totalRead = 0;
char a[10240];
while (out.read(a,10240))  totalRead += out.gcount();
c.terminate();

写看起来是成功的,但程序卡在读循环中,进程(子进程和父进程)在此期间保持空闲

4

1 回答 1

5

工作代码,看起来我必须关闭内部管道才能设置孩子的标准输入 eof(孩子读取标准输入直到 eof(在我的情况下)):

namespace  bp = boost::process;
bp::opstream in;
bp::ipstream out;

bp::child c(Cmd.c_str(), bp::std_out > out, bp::std_in < in);    
in.write((char*)buffer,bufferSize);

in.pipe().close();

integer_type totalRead = 0;
char a[10240];
while (out.read(a,10240))  totalRead += out.gcount();
c.terminate();
于 2018-02-07T06:59:55.433 回答