我在使用已使用 gzip 压缩的 zlib 对简单的 HTML 文件进行膨胀时遇到了一些麻烦。
该文件以及我打开它所采取的步骤以及我尝试使用的充气功能如下所示。当我运行该函数时,我得到 zlib 的错误代码 Z_DATA_ERROR。据我所知,我一直忠实于 zlib 的使用示例(在此处找到),但仍然遇到了一些麻烦。
直到 inflate() 方法被调用并且函数在 switch 语句中返回之后,膨胀例程才会出现错误,但我无法找到问题所在。
在这里的任何帮助将不胜感激。
压缩文件:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>TEST</title>
</head>
<body>
<ul>
<li>hello</li>
<li>I</li>
<li>am</li>
<li>a</li>
<li>test</li>
<li>web</li>
<li>page</li>
</ul>
</body>
</html>
注意:这些是 gzip 压缩前的文件内容。
文件打开:这里的sourcefile然后传入inf()。
FILE *sourcefile;
sourcefile = fopen("/Users/me/pathtofile/test.html.gz", "r");
充气程序:
inf(FILE *source, FILE *dest){
int chunk = 16384;
//setup zlib variables
int return_val;
unsigned have;
z_stream z_strm;
unsigned char in[chunk];
unsigned char out[chunk];
//allocate inflate state
z_strm.zalloc = Z_NULL;
z_strm.zfree = Z_NULL;
z_strm.opaque = Z_NULL;
z_strm.avail_in = 0;
z_strm.next_in = Z_NULL;
return_val = inflateInit(&z_strm);
if(return_val != Z_OK){
return return_val;
}
cout << "zlib setup complete" << endl;
//decompress
do{
z_strm.avail_in = fread(in, 1, chunk, source);
//check for error
if (ferror(source)){
(void)inflateEnd(&z_strm);
return Z_ERRNO;
}
if(z_strm.avail_in == 0){
break;
}
z_strm.next_in = in;
cout << "inflate loop") << endl;
//inflate the data
do{
z_strm.avail_out = chunk;
z_strm.next_out = out;
return_val = inflate(&z_strm, Z_NO_FLUSH);
assert(return_val != Z_STREAM_ERROR);
cout << "switch statement start" << endl;
switch(return_val){
case Z_NEED_DICT:
return_val = Z_DATA_ERROR;
cout << "case: Z_NEED_DICT" << endl;
case Z_DATA_ERROR:
cout<< "case: Z_DATA_ERROR" << endl;
case Z_MEM_ERROR:
cout << "case: Z_MEM_ERROR" << endl;
void(inflateEnd(&z_strm));
return return_val;
}
cout << "switch statement end" << endl;
have = chunk - z_strm.avail_out;
if(fwrite(out, 1, have, dest) != have || ferror(dest)){
(void)inflateEnd(&z_strm);
return Z_ERRNO;
}
}while(z_strm.avail_out == 0);
}while(return_val != Z_STREAM_END);
}