如何在不使用 iostreams 的情况下构建 Google protobuf?
标题概括了这一点。我目前正在进行的项目不使用 iostreams。我们正在使用 STLport。我们想使用 google protobuf 库通过以太网进行消息序列化和反序列化。有人在不使用 iostreams 的情况下构建了 protobuf 吗?
The title sums it up. The project I am currently working on doesn't use iostreams. And we are using STLport. We would like to use the google protobuf library for message serialization and deserialization over ethernet. Has anyone built protobuf without using iostreams?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是在谈论不使用 iostream 与 protobuf 进行交互吗?实际上正在构建,但类型不可见。这是您可以在没有类型的情况下与它们进行交互的方法:
是的,在没有 IOStreams 的情况下使用 protobuf 是很有可能的。 等方法
,这些方法允许您使用自己的缓冲区实现所有内容。
要在没有类型的情况下进行构建,理论上您可以为其提供存根以满足要求并使其进行编译,因为如果使用上述接口,则不需要它们。
Are you talking about interacting with protobufs without using iostreams? Are actually building without the types visible. This is what you can do to interact with them without the types:
Yes using protobufs without IOStreams is very possible. All protocol buffers messages support methods such as
that allow you to implemented everything using your own buffers.
To build without the types you could in theory give it stubs to satisfy the requirements and get it to compile since you won't need them if you use the above interface.