如何从 zlib 流读取任意字节?

发布于 2024-10-01 13:56:39 字数 124 浏览 6 评论 0原文

我想一次将 zlib 流的 inflate() 的输出读取到缓冲区中,以便我可以解析出单行。

有没有办法指定 inflate() 返回的字节数,以便我可以监视换行符?

I would like to read the output of a zlib stream's inflate() into a buffer one byte at a time, so that I can parse out single lines.

Is there a way to specify the number of bytes that inflate() returns, so that I can watch for newlines?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

小ぇ时光︴ 2024-10-08 13:56:39

这可能会带来糟糕的性能,因为 inflate() 函数可能会产生一些启动成本。

我建议使用合理的输出缓冲区大小,然后在每次调用 inflate() 后迭代缓冲区,收集找到的所有完整行。当然,很可能会有一条“尾巴”,即一条不完整的线,您需要在下一轮中跟踪它。

That would probably give horrible performance, since the inflate() function might have some start up costs.

I would suggest just going with a reasonable output buffer size, and then iterating through the buffer after each call to inflate(), collecting all complete lines found. Of course there will very likely be a "tail", i.e. an incomplete line, that you will need to keep track of for the next round.

筱果果 2024-10-08 13:56:39

当您调用 inflate() 时,您将传递一个指向 z_stream_s 结构的指针。该结构体的z_stream_s::avail_out成员变量正是用于指定输出缓冲区的大小。

When you call inflate() you pass a pointer to a z_stream_s structure. z_stream_s::avail_out member variable of that structure is exactly for specifying the size of the output buffer.

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