Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently trying to use the zlib to inflate a source of gzipped data.

It seems that the inflate API in zlib cannot inflate a gzipped data ( The example http://www.zlib.net/zpipe.c fails to read a gzipped file: "zpipe: invalid or incomplete deflate data" ). I noticed that there is a gzopen function in this API, but , as far as I understand, it only works with a filename or a file descriptor.

Can I use this API if my source of gzipped data is stored in memory, in a sql blob, etc... ?

Many Thanks

Pierre

share|improve this question

3 Answers

The gzip format just adds a simple header (and trailer) to a zlib compressed stream. Skipping over the header isn't difficult; the format is documented in RFC 1952.

share|improve this answer

You can open memory locations as files using the fmemopen function and then pass that file descriptor to the gzopen function.

share|improve this answer
According to my man page (Ubuntu 12.10) for fmemopen, the returned FILE* won't have a file descriptor, so this solution may not be viable, and if it is on some systems, it clearly won't be portable. – Adam H. Peterson Jan 29 at 21:31

As another solution, there's gzdopen - which takes a file descriptor. You can obtain one to read memory with pipe(). You can then use some form of non-blocking file descriptors, or an auxiliary thread to read in data.

You may find this more trouble than it's worth: Matthew Slattery's solution may very well be more viable.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.