我有以下代码,这些代码从我尝试在连接到子进程的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();
}
最佳答案
您读入一个大小为0的 vector 。
您读取了0个字节。那就是你要的。
我建议使用streambuf并阅读直到EOF。另外,删除work
,除非您确实确实希望run()
从不返回:
Live On Coliru
#include <boost/asio.hpp>
#include <boost/bind.hpp>
#include <boost/process.hpp>
#include <iostream>
namespace bp = boost::process;
class test {
private:
boost::asio::io_service ios;
bp::async_pipe ap;
boost::asio::streambuf buf;
public:
test() : ios(), ap(ios) {}
void read(const boost::system::error_code &ec, std::size_t size) {
std::cout << ec.message() << "\n";
std::cout << size << "\n";
std::cout << &buf << std::flush;
}
void run() {
bp::child c(bp::search_path("ls"), ".", bp::std_out > ap, ios);
async_read(ap, buf, boost::bind(&test::read, this, _1, _2));
ios.run();
}
};
int main() {
test c;
c.run();
}
打印品,例如
End of file
15
a.out
main.cpp
关于c++ - async_pipe子进程上的async_read不提供数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47614793/