vote up 1 vote down star

I'm looking for a wrapper that distills zlib to:

  1. OpenZipFile()
  2. GetItemInfo(n)
  3. UnzipItem(n) // Bonus points for unzipping recursively if item n is a directory.

I see a lot of wrappers around the zlib library on, say, codeproject.com but they are all platform-specific in order to provide the added platform-specific functionality of unzipping to file/memory buffer/pipe.

flag
So you have already found a project on codeproject that does what you want, the only thing left for you to do is: FILE *file = fopen(filename, "wb"); fwrite(buf, buf_len, 1, file); fclose(file); – Andreas Magnusson Nov 6 '08 at 11:52

6 Answers

vote up 2 vote down

In the zlib source archive, there is a contribution named "minizip".

"minizip" is a set of files you can use to play with .zip files. Basic services you need are already there :

  • unzOpen
  • unzLocateFile
  • unzOpenCurrentFile
  • unzGetCurrentFileInfo
  • unzCloseCurrentFile
  • unzClose

Of course, this is not object oriented (and I'm sure that was not the goal of the creator of minizip), but writing a simple object oriented wrapper should be easy.

link|flag
vote up 1 vote down

firstobject's easy zlib stays cross-platform; it has zlib in a single file easyzlib.c and exposes only ezcompress and ezuncompress functions with the added feature of determining the memory requirement before allocating the exact size.

link|flag
vote up 1 vote down

In boost::iostreams there is the possibility to use zlib, gzip and bzip2 formats.

You find it from http://www.boost.org/

link|flag
vote up 0 vote down

Write one yourself.
It should be only a couple of lines of code.
And then put it on sourceforge for the rest of the world to enjoy.

link|flag
vote up 0 vote down

You could try to grab the code from another FOSS project. ScummVM, for example, has a highly portable Zlib wrapper (implementation, header) with all the functions you need, plus an OO layer for interfacing generically with any other kind of archive.

Maybe that's a good starting point? The wrapper functions are totally standalone and portable (heck, they even work on a Nintendo DS), but the OO layer depends on many custom classes which may be hard to add to your own project.

link|flag
vote up 0 vote down

GZStream is worth a look. This is a nice cross-platform wrapper round ZLib which extend the STL iostream classes.

http://www.cs.unc.edu/Research/compgeom/gzstream/

What is good about this wrapper over some of the others is that if you're working with very large archives you don't need to load the whole dataset into memory.

link|flag

Your Answer

Get an OpenID
or

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