mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
uncompress stream by chunks
This commit is contained in:
parent
094d9193b9
commit
76b49f6985
2 changed files with 9 additions and 5 deletions
11
Base.cpp
11
Base.cpp
|
@ -329,10 +329,15 @@ namespace data
|
|||
return ret == Z_STREAM_END || ret < 0;
|
||||
}
|
||||
|
||||
void GzipInflator::Inflate (std::stringstream& in, std::ostream& out)
|
||||
void GzipInflator::Inflate (std::istream& in, std::ostream& out)
|
||||
{
|
||||
auto str = in.str ().substr (in.tellg ());
|
||||
Inflate ((const uint8_t *)str.c_str (), str.length (), out);
|
||||
uint8_t * buf = new uint8_t[GZIP_CHUNK_SIZE];
|
||||
while (!in.eof ())
|
||||
{
|
||||
in.read ((char *)buf, GZIP_CHUNK_SIZE);
|
||||
Inflate (buf, in.gcount (), out);
|
||||
}
|
||||
delete[] buf;
|
||||
}
|
||||
|
||||
GzipDeflator::GzipDeflator (): m_IsDirty (false)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue