boost::filtering_streambuf 与 gzip_decompressor(),如何从文件中逐行访问

发布于 2024-10-26 19:11:02 字数 592 浏览 1 评论 0原文

我写了一个Logparser应用程序,现在我想实现.gz文件的解压缩。我尝试使用 boost::iostreams 和 zlib 似乎可以工作,但我不知道如何处理从压缩文件中获得的输入。

这就是我所做的:

input.open(p.source_at(i).c_str(), ios_base::in | ios_base::binary);
boost::iostreams::filtering_streambuf<boost::iostreams::input> in;
in.push(boost::iostreams::gzip_decompressor());
in.push(input);
boost::iostreams::copy(in, cout);

如果我的源文件以 .gz 结尾,则运行此代码。最后一行将解压后的文件流正确输出到cout。

但如何从解压后的文件中逐行获取呢?我的程序使用 getline(input, transfer) 从输入流中读取行(如果未压缩)。

现在我想以同样的方式从解压缩的文件中读取内容,但是如何从中获取新行?

提升衰减对我来说没有多大帮助。

提前致谢!

I wrote a Logparser Application and now I want to implement decompression of .gz files. I tried it with boost::iostreams and zlib which seems to work, but I don't know how to handle the input I get from compressed files.

Here's what I do:

input.open(p.source_at(i).c_str(), ios_base::in | ios_base::binary);
boost::iostreams::filtering_streambuf<boost::iostreams::input> in;
in.push(boost::iostreams::gzip_decompressor());
in.push(input);
boost::iostreams::copy(in, cout);

This code is run, if my sourcefile has the .gz ending. The last line outputs the decompressed filestream correctly to cout.

But how can i fetch line by line from the decompressed file? My Program uses getline(input, transfer) to read lines from the input stream, if it's not compressed.

Now I want to read from the decompressed file the same way, but how can I get a new line from in?

The boost decumentation didn't help me much with this.

Thanks in advance!

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

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

发布评论

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

评论(1

忱杏 2024-11-02 19:11:02

好吧,我发现了。我只需创建一个 std::istream 并传递对缓冲区的引用:

std::istream incoming(&in);
getline(incoming, transfer);

Ok I found it out. I just had to create an std::istream and pass a reference to the buffer:

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