如何解压缩http?

时间:2016-07-03 11:50:52

标签: c++ qt http zlib

我试图读取包含http压缩邮件的tcp数据包,但在zlib解压缩期间出现'异常失败:( - 3)错误的标题检查'。我的代码有什么问题,或者是否有一个库为我做这个?

std::string decompress_string(const std::string& str) {
    z_stream zs;                        // z_stream is zlib's control structure
    memset(&zs, 0, sizeof(zs));

    if (inflateInit(&zs) != Z_OK)
        throw(std::runtime_error("inflateInit failed while decompressing."));

    zs.next_in = (Bytef*)str.data();
    zs.avail_in = str.size();

    int ret;
    char outbuffer[32768];
    std::string outstring;

    // get the decompressed bytes blockwise using repeated calls to inflate
    do {
        zs.next_out = reinterpret_cast<Bytef*>(outbuffer);
        zs.avail_out = sizeof(outbuffer);

        ret = inflate(&zs, 0);

        if (outstring.size() < zs.total_out) {
            outstring.append(outbuffer,
                             zs.total_out - outstring.size());
        }

    } while (ret == Z_OK);

    inflateEnd(&zs);

    if (ret != Z_STREAM_END) {          // an error occurred that was not EOF
        qDebug()  << "Exception during zlib decompression: (" << ret << ") " << zs.msg;
        return "";
    }

    return outstring;
}

std::string parseHttp(std::string payload) {
    size_t index = payload.find("\r\n\r\n");
    if (index == std::string::npos) {
        qDebug() << "http body not found, dropped.";
        return "";
    }
    std::string body = payload.substr(index + 4);
    if (payload.find("Content-Encoding: gzip") == std::string::npos){
        return body;
    } else {
        return decompress_string(body);
    }
}

1 个答案:

答案 0 :(得分:2)

它可能是gzip格式。尝试使用设置为inflateInit2()的{​​{1}} wbits来解码gzip格式。 gzip数据以31开头。