我偶然发现了一个问题,并且找不到解决方案。
所以我想做的是解压缩qt中的数据,使用qUncompress(QByteArray),以gzip格式从www发送。我用wireshark确定这是有效的gzip流,也用zip/rar测试过,两者都可以解压缩。
到目前为止的代码是这样的:
static const char dat[40] = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xaa, 0x2e, 0x2e, 0x49, 0x2c, 0x29,
0x2d, 0xb6, 0x4a, 0x4b, 0xcc, 0x29, 0x4e, 0xad, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0x03, 0x00,
0x2a, 0x63, 0x18, 0xc5, 0x0e, 0x00, 0x00, 0x00
};
//this data contains string: {status:false}, in gzip format
QByteArray data;
data.append( dat, sizeof(dat) );
unsigned int size = 14; //expected uncompresed size, reconstruct it BigEndianes
//prepand expected uncompressed size, last 4 byte in dat 0x0e = 14
QByteArray dataPlusSize;
dataPlusSize.append( (unsigned int)((size >> 24) & 0xFF));
dataPlusSize.append( (unsigned int)((size >> 16) & 0xFF));
dataPlusSize.append( (unsigned int)((size >> 8) & 0xFF));
dataPlusSize.append( (unsigned int)((size >> 0) & 0xFF));
QByteArray uncomp = qUncompress( dataPlusSize );
qDebug() << uncomp;
并且解压缩失败并显示: qUncompress: Z_DATA_ERROR: 输入数据已损坏。
AFAIK gzip 由 10 字节头、DEFLATE peyload、12 字节尾(8 字节 CRC32 + 4 字节 ISIZE - 未压缩数据大小)组成。条带化标头和拖尾应该给我留下 DEFLATE 数据流,qUncompress 产生相同的错误。
我检查了用 PHP 压缩的数据字符串,如下所示:
$stringData = gzcompress( "{status:false}", 1);
和 qUncompress 解压缩该数据。(我没有看到和 gzip 标头虽然 ie ID1 = 0x1f, ID2 = 0x8b )我用调试检查了上面的代码,错误发生在:
if (
#endif
((BITS(8) << 8) + (hold >> 8)) % 31) { //here is error, WHY? long unsigned int hold = 35615
strm->msg = (char *)"incorrect header check";
state->mode = BAD;
break;
}
inflate.c 第 610 行。
我知道 qUncompress 只是 zlib 的一个包装器,所以我想它应该可以毫无问题地处理 gzip。任何评论都更受欢迎。
此致