如何在 C++ 中通过 boost 套接字发送 ostream?
我在使用 protobuf 进行进程间通信时遇到一些问题。 Protobuf 允许一组序列化格式:
SerializeToArray(void * data, int size) : bool
SerializeToCodedStream(google::protobuf::io::CodeOutputStream * output) : bool
SerializeToFileDescriptor(int file_descriptor) : bool
SerializeToOstream(ostream * output)
我的问题是,我不知道如何将它与我正在使用的 boost asio 套接字一起使用,因为我实现了它们来发送字符串:
boost::asio::write(socket, boost::asio::buffer(message),
boost::asio::transfer_all(), ignored_error);
但我想发送 ostream。
I am facing some issues with my inter-process communication using protobuf. Protobuf allows a set of serialization formats:
SerializeToArray(void * data, int size) : bool
SerializeToCodedStream(google::protobuf::io::CodeOutputStream * output) : bool
SerializeToFileDescriptor(int file_descriptor) : bool
SerializeToOstream(ostream * output)
My problem is, I have no clue how to use it with the boost asio sockets I am using, as I implemented them to send strings:
boost::asio::write(socket, boost::asio::buffer(message),
boost::asio::transfer_all(), ignored_error);
But I would like to send the ostream.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Boost 的 asio 库在流缓冲区级别与 std iostream 集成
因此编写请求
读取响应:
复制流:
Boost's asio library integrates with std iostream on the level of streambuffers
So write a request
Read a response:
Copy a stream:
使用 ostringstream 怎么样?
What about using ostringstream?