zlib的使用一般是以文件作为输入输出,而本类在zlib库基础上进行了一层封装,以便在内存中解压gzip数据,源码如下:
 1 #ifndef __CONTENT_DECODER_H__
 2 #define __CONTENT_DECODER_H__
 3 
 4 #include <string>
 5 
 6 class gzip_decoder
 7 {
 8 public:
 9     gzip_decoder(size_t uncompress_buff_len = 1024);
10 
11     ~gzip_decoder();
12 
13     bool ungzip(unsigned char* gzdata, size_t gzdata_len, std::string& out_data);
14 
15 protected:
16 private:
17     const size_t uncompress_buff_len_;
18     unsigned char* uncompress_buff_;
19 };
20 
21 #endif
22 
23 
24 

实现文件:
 1 #include "content_decoder.h"
 2 #include <stdlib.h>
 3 #include "zlib.h"
 4 
 5 
 6 gzip_decoder::gzip_decoder(size_t uncompress_buff_len)
 7 :uncompress_buff_len_(uncompress_buff_len),
 8 uncompress_buff_(NULL)
 9 {
10     uncompress_buff_ = (unsigned char*)malloc(uncompress_buff_len_);
11 }
12 
13 gzip_decoder::~gzip_decoder()
14 {
15     if (uncompress_buff_)
16     {
17         free(uncompress_buff_);
18     }
19 }
20 
21 bool gzip_decoder::ungzip(unsigned char* gzdata, size_t gzdata_len, std::string& out_data)
22 {
23     int err;
24     unsigned long out_count = 0;
25     z_stream d_stream = {0}; /* decompression stream */
26 
27     d_stream.zalloc = (alloc_func)0;
28     d_stream.zfree = (free_func)0;
29     d_stream.opaque = (voidpf)0;
30     d_stream.next_in = gzdata;
31     d_stream.avail_in = gzdata_len;
32     d_stream.avail_out = uncompress_buff_len_;
33     d_stream.next_out = uncompress_buff_;
34 
35     if(inflateInit2(&d_stream, 47!= Z_OK)
36         return false;
37 
38     out_data.clear();
39 
40     while (d_stream.total_in < gzdata_len)
41     {
42         if((err = inflate(&d_stream, Z_SYNC_FLUSH)) == Z_STREAM_END)
43         {
44             out_data.append((const char*)uncompress_buff_, d_stream.total_out - out_count);
45             err = inflateEnd(&d_stream);
46             break;
47         }
48 
49         if(err == Z_OK)
50         {
51             out_data.append((const char*)uncompress_buff_, d_stream.total_out - out_count);
52             out_count = d_stream.total_out;
53             d_stream.avail_out = uncompress_buff_len_;
54             d_stream.next_out = uncompress_buff_;
55         }
56         else
57         {
58             goto unzip_exit;
59         }
60     }
61 
62 unzip_exit:
63     return err == Z_OK;
64 }

代码下载:gzip_decoder.rar

Feedback

# re: 在内存中解压-实用gzip解压类封装  回复  更多评论   

2010-03-06 00:25 by evoup
是很实用,支持一下了

# re: 在内存中解压-实用gzip解压类封装  回复  更多评论   

2010-03-09 13:15 by 阿福
我也研究过一些deflate压缩和GZIP压缩的格式问题。
还没看你的代码,不知道你是不是用deflate压缩代替gzip压缩,然后再修改头部来实现的。

# re: 在内存中解压-实用gzip解压类封装  回复  更多评论   

2010-03-09 17:00 by David Fang
@阿福
压缩这方面我还没研究过,不过这段代码测试的对象是HTTP协议的返回内容。当HTTP响应头中的Content-Encoding值为gzip时,可以用这个类正确解压出html内容。

# re: 在内存中解压-实用gzip解压类封装[未登录]  回复  更多评论   

2011-11-10 13:08 by 123
楼主 貌似LIB 链接错误啊..

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理


posts - 9, comments - 13, trackbacks - 0, articles - 0

Copyright © David Fang