如何在不使用 iostreams 的情况下构建 Google protobuf?

发布于 2024-12-02 06:32:56 字数 132 浏览 0 评论 0原文

标题概括了这一点。我目前正在进行的项目不使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海螺姑娘 2024-12-09 06:32:56

您是在谈论不使用 iostream 与 protobuf 进行交互吗?实际上正在构建,但类型不可见。这是您可以在没有类型的情况下与它们进行交互的方法:

是的,在没有 IOStreams 的情况下使用 protobuf 是很有可能的。 等方法

  • 所有协议缓冲区消息都支持ParseFromArray、
  • ParasePartialFromArray、
  • ParseFromString
  • 、ParsePartialFromString

,这些方法允许您使用自己的缓冲区实现所有内容。

要在没有类型的情况下进行构建,理论上您可以为其提供存根以满足要求并使其进行编译,因为如果使用上述接口,则不需要它们。

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

  • ParseFromArray
  • ParasePartialFromArray
  • ParseFromString
  • ParsePartialFromString

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文