2048 を超えるサイズのデータを圧縮解除しようとすると、zlib uncompress 呼び出しが Z_OK を返します。したがって、サイズ 2980 のデータを解凍すると、最大 2048 (2 ループ) まで解凍され、Z_OK が返されることを明確にします。私は何が欠けていますか?
Bytes は vector< unsigned char > です。
Bytes uncompressIt( const Bytes& data )
{
size_t buffer_length = 1024;
Byte* buffer = nullptr;
int status = 0;
do
{
buffer = ( Byte* ) calloc( buffer_length + 1, sizeof( Byte ) );
int status = uncompress( buffer, &buffer_length, &data[ 0 ], data.size( ) );
if ( status == Z_OK )
{
break;
}
else if ( status == Z_MEM_ERROR )
{
throw runtime_error( "GZip decompress ran out of memory." );
}
else if ( status == Z_DATA_ERROR )
{
throw runtime_error( "GZip decompress input data was corrupted or incomplete." );
}
else //if ( status == Z_BUF_ERROR )
{
free( buffer );
buffer_length *= 2;
}
} while ( status == Z_BUF_ERROR ); //then the output buffer wasn't large enough
Bytes result;
for( size_t index = 0; index != buffer_length; index++ )
{
result.push_back( buffer[ index ] );
}
return result;
}
編集:
reallocをキャッチしてくれた@Michaelに感謝します。私は実装をいじっていて、それを見逃していました。それを投稿する前にまだ言い訳はありません。