zlib膨胀数据错误

时间:2013-10-11 21:26:32

标签: html compression gzip zlib

使用zlib使用gzip压缩来填充简单的HTML文件时遇到了一些麻烦。

下面的文件以及我打开它的步骤以及我试图使用的充气功能。当我运行该函数时,我得到zlib的错误代码Z_DATA_ERROR。据我所知,我已经忠实地坚持了zlib的使用示例(找到了here)但是我遇到了一些麻烦。

在调用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);
}

2 个答案:

答案 0 :(得分:1)

您需要使用inflateInit2()代替inflateInit()来请求解码gzip格式。 zlib默认查找zlib格式。

答案 1 :(得分:0)

主要原因可能是您初始化错误 inflateInit2(&z_strm,15+32) 和膨胀 inflate(&z_strm, Z_SYNC_FLUSH ); 可以解决你的问题。