- 论坛徽章:
- 0
|
原帖由 chentao_612 于 2009-2-3 10:45 发表 ![]()
我查到gzip解压可以使用开业的gzip解压库,但是那个库,只能解压文件。 我的gzip压缩的数据,是从网络上获得的,放在内存中,如果把他存成文件,再解压,再读到内存中,也太浪费资源了,大家帮我想个能直接在内 ...
http://hispider.googlecode.com/s ... src/utils/zstream.c
- /* HTTP gzip decompress */
- int httpgzdecompress(Byte *zdata, uLong nzdata,
- Byte *data, uLong *ndata)
- {
- int err = 0;
- z_stream d_stream = {0}; /* decompression stream */
- static char dummy_head[2] =
- {
- 0x8 + 0x7 * 0x10,
- (((0x8 + 0x7 * 0x10) * 0x100 + 30) / 31 * 31) & 0xFF,
- };
- d_stream.zalloc = (alloc_func)0;
- d_stream.zfree = (free_func)0;
- d_stream.opaque = (voidpf)0;
- d_stream.next_in = zdata;
- d_stream.avail_in = 0;
- d_stream.next_out = data;
- if(inflateInit2(&d_stream, 47) != Z_OK) return -1;
- while (d_stream.total_out < *ndata && d_stream.total_in < nzdata) {
- d_stream.avail_in = d_stream.avail_out = 1; /* force small buffers */
- if((err = inflate(&d_stream, Z_NO_FLUSH)) == Z_STREAM_END) break;
- if(err != Z_OK )
- {
- if(err == Z_DATA_ERROR)
- {
- d_stream.next_in = (Bytef*) dummy_head;
- d_stream.avail_in = sizeof(dummy_head);
- if((err = inflate(&d_stream, Z_NO_FLUSH)) != Z_OK)
- {
- return -1;
- }
- }
- else return -1;
- }
- }
- if(inflateEnd(&d_stream) != Z_OK) return -1;
- *ndata = d_stream.total_out;
- return 0;
- }
复制代码 |
|