我有以下代码,它是从我试图在连接到子进程的 async_pipe 上执行 async_read 的真实代码中简化而来的。在子进程中,我称之为“ls”。作为一个测试,我希望我的异步读取能够得到结果。它返回以下内容
$ ./a.out
system:0
0
为什么会发生这种情况我无法弄清楚?理想情况下,我想替换“ls”。有一个长时间运行的过程,我可以用 async_read 逐行读取。
#include <boost/asio.hpp>
#include <boost/bind.hpp>
#include <iostream>
#include <fstream>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include <boost/process.hpp>
namespace bp = boost::process;
class test {
private:
boost::asio::io_service ios;
boost::asio::io_service::work work;
bp::async_pipe ap;
std::vector<char> buf;
public:
test()
: ios(), work(ios), ap(ios) {
}
void read(
const boost::system::error_code& ec,
std::size_t size) {
std::cout << ec << std::endl;
std::cout << size << std::endl;
}
void run() {
bp::child c(bp::search_path("ls"), ".", bp::std_out > ap);
boost::asio::async_read(ap, boost::asio::buffer(buf),
boost::bind(&test::read,
this,
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred));
ios.run();
}
};
int main() {
test c;
c.run();
}