Compare commits
	
		
			5 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 13a294f044 | ||
|   | 7c2a874e50 | ||
|   | a383133c4e | ||
|   | 14763ac7c6 | ||
|   | c34c1fcbb1 | 
							
								
								
									
										163
									
								
								ChangeLog
									
									
									
									
									
								
							
							
						
						
									
										163
									
								
								ChangeLog
									
									
									
									
									
								
							| @@ -1,5 +1,158 @@ | |||||||
|  |  | ||||||
| 		ChangeLog file for zlib |                 ChangeLog file for zlib | ||||||
|  | Changes in 1.2.0.1 (17 March 2003) | ||||||
|  | - Add Z_RLE strategy for run-length encoding [Truta] | ||||||
|  |     - When Z_RLE requested, restrict matches to distance one | ||||||
|  |     - Update zlib.h, minigzip.c, gzopen(), gzdopen() for Z_RLE | ||||||
|  | - Correct FASTEST compilation to allow level == 0 | ||||||
|  | - Clean up what gets compiled for FASTEST | ||||||
|  | - Incorporate changes to zconf.in.h [Vollant] | ||||||
|  |     - Refine detection of Turbo C need for dummy returns | ||||||
|  |     - Refine ZLIB_DLL compilation | ||||||
|  |     - Include additional header file on VMS for off_t typedef | ||||||
|  | - Try to use _vsnprintf where it supplants vsprintf [Vollant] | ||||||
|  | - Add some casts in inffast.c | ||||||
|  | - Enchance comments in zlib.h on what happens if the gzprintf() tries to | ||||||
|  |   write more than 4095 bytes before compression | ||||||
|  | - Remove unused state from inflateBackEnd() | ||||||
|  | - Remove exit(0) from minigzip.c, example.c | ||||||
|  | - Get rid of all those darn tabs | ||||||
|  | - Add "check" target to Makefile.in that does the same thing as "test" | ||||||
|  | - Add "mostlyclean" and "maintainer-clean" targets to Makefile.in | ||||||
|  | - Update contrib/inflate86 [Anderson] | ||||||
|  | - Update contrib/testzlib, contrib/vstudio, contrib/minizip [Vollant] | ||||||
|  | - Add msdos and win32 directories with makefiles [Truta] | ||||||
|  | - More additions and improvements to the FAQ | ||||||
|  |  | ||||||
|  | Changes in 1.2.0 (9 March 2003) | ||||||
|  | - New and improved inflate code | ||||||
|  |     - About 20% faster | ||||||
|  |     - Does not allocate 32K window unless and until needed | ||||||
|  |     - Automatically detects and decompresses gzip streams | ||||||
|  |     - Raw inflate no longer needs an extra dummy byte at end | ||||||
|  |     - Added inflateBack functions using a callback interface--even faster | ||||||
|  |       than inflate, useful for file utilities (gzip, zip) | ||||||
|  |     - Added inflateCopy() function to record state for random access on | ||||||
|  |       externally generated deflate streams (e.g. in gzip files) | ||||||
|  |     - More readable code (I hope) | ||||||
|  | - New and improved crc32() | ||||||
|  |     - About 50% faster, thanks to suggestions from Rodney Brown | ||||||
|  | - Add deflateBound() and compressBound() functions | ||||||
|  | - Fix memory leak in deflateInit2() | ||||||
|  | - Permit setting dictionary for raw deflate (for parallel deflate) | ||||||
|  | - Fix const declaration for gzwrite() | ||||||
|  | - Check for some malloc() failures in gzio.c | ||||||
|  | - Fix bug in gzopen() on single-byte file 0x1f | ||||||
|  | - Fix bug in gzread() on concatenated file with 0x1f at end of buffer | ||||||
|  |   and next buffer doesn't start with 0x8b | ||||||
|  | - Fix uncompress() to return Z_DATA_ERROR on truncated input | ||||||
|  | - Free memory at end of example.c | ||||||
|  | - Remove MAX #define in trees.c (conflicted with some libraries) | ||||||
|  | - Fix static const's in deflate.c, gzio.c, and zutil.[ch] | ||||||
|  | - Declare malloc() and free() in gzio.c if STDC not defined | ||||||
|  | - Use malloc() instead of calloc() in zutil.c if int big enough | ||||||
|  | - Define STDC for AIX | ||||||
|  | - Add aix/ with approach for compiling shared library on AIX | ||||||
|  | - Add HP-UX support for shared libraries in configure | ||||||
|  | - Add OpenUNIX support for shared libraries in configure | ||||||
|  | - Use $cc instead of gcc to build shared library | ||||||
|  | - Make prefix directory if needed when installing | ||||||
|  | - Correct Macintosh avoidance of typedef Byte in zconf.h | ||||||
|  | - Correct Turbo C memory allocation when under Linux | ||||||
|  | - Use libz.a instead of -lz in Makefile (assure use of compiled library) | ||||||
|  | - Update configure to check for snprintf or vsnprintf functions and their | ||||||
|  |   return value, warn during make if using an insecure function | ||||||
|  | - Fix configure problem with compile-time knowledge of HAVE_UNISTD_H that | ||||||
|  |   is lost when library is used--resolution is to build new zconf.h | ||||||
|  | - Documentation improvements (in zlib.h): | ||||||
|  |     - Document raw deflate and inflate | ||||||
|  |     - Update RFCs URL | ||||||
|  |     - Point out that zlib and gzip formats are different | ||||||
|  |     - Note that Z_BUF_ERROR is not fatal | ||||||
|  |     - Document string limit for gzprintf() and possible buffer overflow | ||||||
|  |     - Note requirement on avail_out when flushing | ||||||
|  |     - Note permitted values of flush parameter of inflate() | ||||||
|  | - Add some FAQs (and even answers) to the FAQ | ||||||
|  | - Add contrib/inflate86/ for x86 faster inflate | ||||||
|  | - Add contrib/blast/ for PKWare Data Compression Library decompression | ||||||
|  | - Add contrib/puff/ simple inflate for deflate format description | ||||||
|  |  | ||||||
|  | Changes in 1.1.4 (11 March 2002) | ||||||
|  | - ZFREE was repeated on same allocation on some error conditions. | ||||||
|  |   This creates a security problem described in | ||||||
|  |   http://www.zlib.org/advisory-2002-03-11.txt | ||||||
|  | - Returned incorrect error (Z_MEM_ERROR) on some invalid data | ||||||
|  | - Avoid accesses before window for invalid distances with inflate window | ||||||
|  |   less than 32K. | ||||||
|  | - force windowBits > 8 to avoid a bug in the encoder for a window size | ||||||
|  |   of 256 bytes. (A complete fix will be available in 1.1.5). | ||||||
|  |  | ||||||
|  | Changes in 1.1.3 (9 July 1998) | ||||||
|  | - fix "an inflate input buffer bug that shows up on rare but persistent | ||||||
|  |   occasions" (Mark) | ||||||
|  | - fix gzread and gztell for concatenated .gz files (Didier Le Botlan) | ||||||
|  | - fix gzseek(..., SEEK_SET) in write mode | ||||||
|  | - fix crc check after a gzeek (Frank Faubert) | ||||||
|  | - fix miniunzip when the last entry in a zip file is itself a zip file | ||||||
|  |   (J Lillge) | ||||||
|  | - add contrib/asm586 and contrib/asm686 (Brian Raiter) | ||||||
|  |   See http://www.muppetlabs.com/~breadbox/software/assembly.html | ||||||
|  | - add support for Delphi 3 in contrib/delphi (Bob Dellaca) | ||||||
|  | - add support for C++Builder 3 and Delphi 3 in contrib/delphi2 (Davide Moretti) | ||||||
|  | - do not exit prematurely in untgz if 0 at start of block (Magnus Holmgren) | ||||||
|  | - use macro EXTERN instead of extern to support DLL for BeOS (Sander Stoks) | ||||||
|  | - added a FAQ file | ||||||
|  |  | ||||||
|  | - Support gzdopen on Mac with Metrowerks (Jason Linhart) | ||||||
|  | - Do not redefine Byte on Mac (Brad Pettit & Jason Linhart) | ||||||
|  | - define SEEK_END too if SEEK_SET is not defined (Albert Chin-A-Young) | ||||||
|  | - avoid some warnings with Borland C (Tom Tanner) | ||||||
|  | - fix a problem in contrib/minizip/zip.c for 16-bit MSDOS (Gilles Vollant) | ||||||
|  | - emulate utime() for WIN32 in contrib/untgz  (Gilles Vollant) | ||||||
|  | - allow several arguments to configure (Tim Mooney, Frodo Looijaard) | ||||||
|  | - use libdir and includedir in Makefile.in (Tim Mooney) | ||||||
|  | - support shared libraries on OSF1 V4 (Tim Mooney) | ||||||
|  | - remove so_locations in "make clean"  (Tim Mooney) | ||||||
|  | - fix maketree.c compilation error (Glenn, Mark) | ||||||
|  | - Python interface to zlib now in Python 1.5 (Jeremy Hylton) | ||||||
|  | - new Makefile.riscos (Rich Walker) | ||||||
|  | - initialize static descriptors in trees.c for embedded targets (Nick Smith) | ||||||
|  | - use "foo-gz" in example.c for RISCOS and VMS (Nick Smith) | ||||||
|  | - add the OS/2 files in Makefile.in too (Andrew Zabolotny) | ||||||
|  | - fix fdopen and halloc macros for Microsoft C 6.0 (Tom Lane) | ||||||
|  | - fix maketree.c to allow clean compilation of inffixed.h (Mark) | ||||||
|  | - fix parameter check in deflateCopy (Gunther Nikl) | ||||||
|  | - cleanup trees.c, use compressed_len only in debug mode (Christian Spieler) | ||||||
|  | - Many portability patches by Christian Spieler: | ||||||
|  |   . zutil.c, zutil.h: added "const" for zmem* | ||||||
|  |   . Make_vms.com: fixed some typos | ||||||
|  |   . Make_vms.com: msdos/Makefile.*: removed zutil.h from some dependency lists | ||||||
|  |   . msdos/Makefile.msc: remove "default rtl link library" info from obj files | ||||||
|  |   . msdos/Makefile.*: use model-dependent name for the built zlib library | ||||||
|  |   . msdos/Makefile.emx, nt/Makefile.emx, nt/Makefile.gcc: | ||||||
|  |      new makefiles, for emx (DOS/OS2), emx&rsxnt and mingw32 (Windows 9x / NT) | ||||||
|  | - use define instead of typedef for Bytef also for MSC small/medium (Tom Lane) | ||||||
|  | - replace __far with _far for better portability (Christian Spieler, Tom Lane) | ||||||
|  | - fix test for errno.h in configure (Tim Newsham) | ||||||
|  |  | ||||||
|  | Changes in 1.1.2 (19 March 98) | ||||||
|  | - added contrib/minzip, mini zip and unzip based on zlib (Gilles Vollant) | ||||||
|  |   See http://www.winimage.com/zLibDll/unzip.html | ||||||
|  | - preinitialize the inflate tables for fixed codes, to make the code | ||||||
|  |   completely thread safe (Mark) | ||||||
|  | - some simplifications and slight speed-up to the inflate code (Mark) | ||||||
|  | - fix gzeof on non-compressed files (Allan Schrum) | ||||||
|  | - add -std1 option in configure for OSF1 to fix gzprintf (Martin Mokrejs) | ||||||
|  | - use default value of 4K for Z_BUFSIZE for 16-bit MSDOS (Tim Wegner + Glenn) | ||||||
|  | - added os2/Makefile.def and os2/zlib.def (Andrew Zabolotny) | ||||||
|  | - add shared lib support for UNIX_SV4.2MP (MATSUURA Takanori) | ||||||
|  | - do not wrap extern "C" around system includes (Tom Lane) | ||||||
|  | - mention zlib binding for TCL in README (Andreas Kupries) | ||||||
|  | - added amiga/Makefile.pup for Amiga powerUP SAS/C PPC (Andreas Kleinert) | ||||||
|  | - allow "make install prefix=..." even after configure (Glenn Randers-Pehrson) | ||||||
|  | - allow "configure --prefix $HOME" (Tim Mooney) | ||||||
|  | - remove warnings in example.c and gzio.c (Glenn Randers-Pehrson) | ||||||
|  | - move Makefile.sas to amiga/Makefile.sas | ||||||
|  |  | ||||||
| Changes in 1.1.1 (27 Feb 98) | Changes in 1.1.1 (27 Feb 98) | ||||||
| - fix macros _tr_tally_* in deflate.h for debug mode  (Glenn Randers-Pehrson) | - fix macros _tr_tally_* in deflate.h for debug mode  (Glenn Randers-Pehrson) | ||||||
| @@ -107,13 +260,13 @@ Changes in 1.0.6 (19 Jan 1998) | |||||||
| - added Makefile.nt (thanks to Stephen Williams) | - added Makefile.nt (thanks to Stephen Williams) | ||||||
| - added the unsupported "contrib" directory: | - added the unsupported "contrib" directory: | ||||||
|    contrib/asm386/ by Gilles Vollant <info@winimage.com> |    contrib/asm386/ by Gilles Vollant <info@winimage.com> | ||||||
| 	386 asm code replacing longest_match(). |         386 asm code replacing longest_match(). | ||||||
|    contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu> |    contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu> | ||||||
|         A C++ I/O streams interface to the zlib gz* functions |         A C++ I/O streams interface to the zlib gz* functions | ||||||
|    contrib/iostream2/  by Tyge L<>vset <Tyge.Lovset@cmr.no> |    contrib/iostream2/  by Tyge L<>vset <Tyge.Lovset@cmr.no> | ||||||
| 	Another C++ I/O streams interface |         Another C++ I/O streams interface | ||||||
|    contrib/untgz/  by "Pedro A. Aranda Guti\irrez" <paag@tid.es> |    contrib/untgz/  by "Pedro A. Aranda Guti\irrez" <paag@tid.es> | ||||||
| 	A very simple tar.gz file extractor using zlib |         A very simple tar.gz file extractor using zlib | ||||||
|    contrib/visual-basic.txt by Carlos Rios <c_rios@sonda.cl> |    contrib/visual-basic.txt by Carlos Rios <c_rios@sonda.cl> | ||||||
|         How to use compress(), uncompress() and the gz* functions from VB. |         How to use compress(), uncompress() and the gz* functions from VB. | ||||||
| - pass params -f (filtered data), -h (huffman only), -1 to -9 (compression | - pass params -f (filtered data), -h (huffman only), -1 to -9 (compression | ||||||
| @@ -138,7 +291,7 @@ Changes in 1.0.6 (19 Jan 1998) | |||||||
| - allow compilation with ANSI keywords only enabled for TurboC in large model | - allow compilation with ANSI keywords only enabled for TurboC in large model | ||||||
| - avoid "versionString"[0] (Borland bug) | - avoid "versionString"[0] (Borland bug) | ||||||
| - add NEED_DUMMY_RETURN for Borland | - add NEED_DUMMY_RETURN for Borland | ||||||
| - use variable z_verbose for tracing in debug mode (Peter Deutsch). | - use variable z_verbose for tracing in debug mode (L. Peter Deutsch). | ||||||
| - allow compilation with CC | - allow compilation with CC | ||||||
| - defined STDC for OS/2 (David Charlap) | - defined STDC for OS/2 (David Charlap) | ||||||
| - limit external names to 8 chars for MVS (Thomas Lund) | - limit external names to 8 chars for MVS (Thomas Lund) | ||||||
|   | |||||||
							
								
								
									
										292
									
								
								FAQ
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										292
									
								
								FAQ
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,292 @@ | |||||||
|  |  | ||||||
|  |                 Frequently Asked Questions about zlib | ||||||
|  |  | ||||||
|  |  | ||||||
|  | If your question is not there, please check the zlib home page  | ||||||
|  | http://www.zlib.org which may have more recent information. | ||||||
|  | The lastest zlib FAQ is at http://www.gzip.org/zlib/zlib_faq.html | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  1. Is zlib Y2K-compliant? | ||||||
|  |  | ||||||
|  |     Yes. zlib doesn't handle dates. | ||||||
|  |  | ||||||
|  |  2. Where can I get a Windows DLL version? | ||||||
|  |  | ||||||
|  |     The zlib sources can be compiled without change to produce a DLL. If you | ||||||
|  |     want a precompiled DLL, see http://www.winimage.com/zLibDll/ . Questions | ||||||
|  |     about the zlib DLL should be sent to Gilles Vollant (info@winimage.com). | ||||||
|  |  | ||||||
|  |  3. Where can I get a Visual Basic interface to zlib? | ||||||
|  |  | ||||||
|  |     See | ||||||
|  |         * http://www.winimage.com/zLibDll/cmp-z-it.zip | ||||||
|  |         * http://www.dogma.net/markn/articles/zlibtool/zlibtool.htm | ||||||
|  |         * contrib/visual-basic.txt in the zlib distribution | ||||||
|  |  | ||||||
|  |  4. compress() returns Z_BUF_ERROR | ||||||
|  |  | ||||||
|  |     Make sure that before the call of compress, the length of the compressed | ||||||
|  |     buffer is equal to the total size of the compressed buffer and not | ||||||
|  |     zero. For Visual Basic, check that this parameter is passed by reference | ||||||
|  |     ("as any"), not by value ("as long"). | ||||||
|  |  | ||||||
|  |  5. deflate() or inflate() returns Z_BUF_ERROR | ||||||
|  |  | ||||||
|  |     Before making the call, make sure that avail_in and avail_out are not | ||||||
|  |     zero. When setting the parameter flush equal to Z_FINISH, also make sure | ||||||
|  |     that avail_out is big enough to allow processing all pending input. | ||||||
|  |     Note that a Z_BUF_ERROR is not fatal--another call to deflate() or | ||||||
|  |     inflate() can be made with more input or output space. A Z_BUF_ERROR | ||||||
|  |     may in fact be unavoidable depending on how the functions are used, since | ||||||
|  |     it is not possible to tell whether or not there is more output pending | ||||||
|  |     when strm.avail_out returns with zero. | ||||||
|  |  | ||||||
|  |  6. Where's the zlib documentation (man pages, etc.)? | ||||||
|  |  | ||||||
|  |     It's in zlib.h for the moment, and Francis S. Lin has converted it to a | ||||||
|  |     web page zlib.html. Volunteers to transform this to Unix-style man pages, | ||||||
|  |     please contact Jean-loup Gailly (jloup@gzip.org). Examples of zlib usage | ||||||
|  |     are in the files example.c and minigzip.c. | ||||||
|  |  | ||||||
|  |  7. Why don't you use GNU autoconf or libtool or ...? | ||||||
|  |  | ||||||
|  |     Because we would like to keep zlib as a very small and simple | ||||||
|  |     package. zlib is rather portable and doesn't need much configuration. | ||||||
|  |  | ||||||
|  |  8. I found a bug in zlib. | ||||||
|  |  | ||||||
|  |     Most of the time, such problems are due to an incorrect usage of | ||||||
|  |     zlib. Please try to reproduce the problem with a small program and send | ||||||
|  |     the corresponding source to us at zlib@gzip.org . Do not send | ||||||
|  |     multi-megabyte data files without prior agreement. | ||||||
|  |  | ||||||
|  |  9. Why do I get "undefined reference to gzputc"? | ||||||
|  |  | ||||||
|  |     If "make test" produces something like | ||||||
|  |  | ||||||
|  |        example.o(.text+0x154): undefined reference to `gzputc' | ||||||
|  |        | ||||||
|  |     check that you don't have old files libz.* in /usr/lib, /usr/local/lib or | ||||||
|  |     /usr/X11R6/lib. Remove any old versions, then do "make install". | ||||||
|  |  | ||||||
|  | 10. I need a Delphi interface to zlib. | ||||||
|  |  | ||||||
|  |     See the directories contrib/delphi and contrib/delphi2 in the zlib | ||||||
|  |     distribution. | ||||||
|  |  | ||||||
|  | 11. Can zlib handle .zip archives? | ||||||
|  |  | ||||||
|  |     See the directory contrib/minizip in the zlib distribution. | ||||||
|  |  | ||||||
|  | 12. Can zlib handle .Z files? | ||||||
|  |  | ||||||
|  |     No, sorry. You have to spawn an uncompress or gunzip subprocess, or adapt | ||||||
|  |     the code of uncompress on your own. | ||||||
|  |  | ||||||
|  | 13. How can I make a Unix shared library? | ||||||
|  |  | ||||||
|  |     make clean | ||||||
|  |     ./configure -s | ||||||
|  |     make | ||||||
|  |  | ||||||
|  | 14. How do I install a shared zlib library on Unix? | ||||||
|  |  | ||||||
|  |     make install | ||||||
|  |  | ||||||
|  |     However, many flavors of Unix come with a shared zlib already installed. | ||||||
|  |     Before going to the trouble of compiling a shared version of zlib and | ||||||
|  |     trying to install it, you may want to check if it's already there! If you | ||||||
|  |     can #include <zlib.h>, it's there. The -lz option will probably link to it. | ||||||
|  |  | ||||||
|  | 15. I have a question about OttoPDF | ||||||
|  |  | ||||||
|  |     We are not the authors of OttoPDF. The real author is on the OttoPDF web | ||||||
|  |     site Joel Hainley jhainley@myndkryme.com. | ||||||
|  |  | ||||||
|  | 16. Why does gzip give an error on a file I make with compress/deflate? | ||||||
|  |  | ||||||
|  |     The compress and deflate functions produce data in the zlib format, which | ||||||
|  |     is different and incompatible with the gzip format. The gz* functions in | ||||||
|  |     zlib on the other hand use the gzip format. Both the zlib and gzip | ||||||
|  |     formats use the same compressed data format internally, but have different | ||||||
|  |     headers and trailers around the compressed data. | ||||||
|  |  | ||||||
|  | 17. Ok, so why are there two different formats? | ||||||
|  |  | ||||||
|  |     The gzip format was designed to retain the directory information about | ||||||
|  |     a single file, such as the name and last modification date. The zlib | ||||||
|  |     format on the other hand was designed for in-memory and communication | ||||||
|  |     channel applications, and has a much more compact header and trailer and | ||||||
|  |     uses a faster integrity check than gzip. | ||||||
|  |  | ||||||
|  | 18. Well that's nice, but how do I make a gzip file in memory? | ||||||
|  |  | ||||||
|  |     Read RFC 1952 for the gzip header and trailer format, and roll your own | ||||||
|  |     gzip formatted data using raw deflate and crc32(). | ||||||
|  |  | ||||||
|  | 19. Is zlib thread-safe? | ||||||
|  |  | ||||||
|  |     Yes. However any library routines that zlib uses and any application- | ||||||
|  |     provided memory allocation routines must also be thread-safe. zlib's gz* | ||||||
|  |     functions use stdio library routines, and most of zlib's functions use the | ||||||
|  |     library memory allocation routines by default. zlib's Init functions allow | ||||||
|  |     for the application to provide custom memory allocation routines. | ||||||
|  |  | ||||||
|  |     Of course, you should only operate on any given zlib or gzip stream from a | ||||||
|  |     single thread at a time. | ||||||
|  |  | ||||||
|  | 20. Can I use zlib in my commercial application? | ||||||
|  |  | ||||||
|  |     Yes. Please read the license in zlib.h. | ||||||
|  |  | ||||||
|  | 21. Is zlib under the GNU license? | ||||||
|  |  | ||||||
|  |     No. Please read the license in zlib.h. | ||||||
|  |  | ||||||
|  | 22. The license says that altered source versions must be "plainly marked". So | ||||||
|  |     what exactly do I need to do to meet that requirement? | ||||||
|  |  | ||||||
|  |     You need to append something the ZLIB_VERSION string in zlib.h. For | ||||||
|  |     example, if the version of the base zlib you are altering is "1.2.3", then | ||||||
|  |     you could change the string to "1.2.3-fred-mods-v3". You should not change | ||||||
|  |     it to "1.2.4" or "1.2.3.1" since the zlib authors would like to reserve | ||||||
|  |     those forms of the version for their own use. | ||||||
|  |  | ||||||
|  |     For altered source distributions, you should also note the origin and | ||||||
|  |     nature of the changes in zlib.h, as well as in ChangeLog and README, along | ||||||
|  |     with the dates of the alterations. The origin should include at least your | ||||||
|  |     name (or your company's name), and an email address to contact for help or | ||||||
|  |     issues with the library. | ||||||
|  |  | ||||||
|  |     Note that distributing a compiled zlib library along with zlib.h and | ||||||
|  |     zconf.h is also a source distribution, and so you should change | ||||||
|  |     ZLIB_VERSION and note the origin and nature of the changes in zlib.h as you | ||||||
|  |     would for a full source distribution. | ||||||
|  |  | ||||||
|  | 23. Will zlib work on a big-endian or little-endian architecture, and can I | ||||||
|  |     exchange compressed data between them? | ||||||
|  |  | ||||||
|  |     Yes and yes. | ||||||
|  |  | ||||||
|  | 24. Will zlib work on a 64-bit machine? | ||||||
|  |  | ||||||
|  |     It should. It has been tested on 64-bit machines, and has no dependence | ||||||
|  |     on any data types being limited to 32-bits in length. If you have any | ||||||
|  |     difficulties, please provide a complete problem report to zlib@gzip.org | ||||||
|  |  | ||||||
|  | 25. Will zlib decompress data from the PKWare Data Compression Library? | ||||||
|  |  | ||||||
|  |     No. The PKWare DCL uses a completely different compressed data format | ||||||
|  |     than does PKZIP and zlib. However, you can look in zlib's contrib/blast | ||||||
|  |     directory for a possible solution to your problem. | ||||||
|  |  | ||||||
|  | 26. Can I access data randomly in a compressed stream? | ||||||
|  |  | ||||||
|  |     No, not without some preparation. If when compressing you periodically | ||||||
|  |     use Z_FULL_FLUSH, carefully write all the pending data at those points, | ||||||
|  |     and keep an index of those locations, then you can start decompression | ||||||
|  |     at those points. You have to be careful to not use Z_FULL_FLUSH too | ||||||
|  |     often, since it can significantly degrade compression. | ||||||
|  |  | ||||||
|  | 27. Does zlib work on MVS, OS/390, CICS, etc.? | ||||||
|  |  | ||||||
|  |     We don't know for sure. We have heard occasional reports of success on | ||||||
|  |     these systems. If you do use it on one of these, please provide us with | ||||||
|  |     a report, instructions, and patches that we can reference when we get | ||||||
|  |     these questions. Thanks. | ||||||
|  |  | ||||||
|  | 28. Is there some simpler, easier to read version of inflate I can look at | ||||||
|  |     to understand the deflate format? | ||||||
|  |  | ||||||
|  |     First off, you should read RFC 1951. Second, yes. Look in zlib's | ||||||
|  |     contrib/puff directory. | ||||||
|  |  | ||||||
|  | 29. Does zlib infringe on any patents? | ||||||
|  |  | ||||||
|  |     As far as we know, no. In fact, that was originally the whole point behind | ||||||
|  |     zlib. Look here for some more information: | ||||||
|  |  | ||||||
|  |     http://www.gzip.org/#faq11 | ||||||
|  |  | ||||||
|  | 30. Can zlib work with greater than 4 GB of data? | ||||||
|  |  | ||||||
|  |     Yes. inflate() and deflate() will process any amount of data correctly. | ||||||
|  |     However the strm.total_in and strm_total_out counters may be limited to | ||||||
|  |     4 GB. The application can easily set up its own counters updated after each | ||||||
|  |     call of inflate() or deflate() to count beyond 4 GB. compress() and | ||||||
|  |     uncompress() may be limited to 4 GB, since they operate in a single call | ||||||
|  |     using unsigned long lengths. gzseek() and gztell() may be limited to 4 GB | ||||||
|  |     depending on how zlib is compiled. | ||||||
|  |  | ||||||
|  | 31. Does zlib have any security vulnerabilities? | ||||||
|  |  | ||||||
|  |     The only one that we are aware of is potentially in gzprintf(). If zlib | ||||||
|  |     is compiled to use sprintf() or vsprintf(), then there is no protection | ||||||
|  |     against a buffer overflow of a 4K string space, other than the caller of | ||||||
|  |     gzprintf() assuring that the output will not exceed 4K. On the other | ||||||
|  |     hand, if zlib is compiled to use snprintf() or vsnprintf(), which should | ||||||
|  |     normally be the case, then there is no vulnerability. The ./configure | ||||||
|  |     script will display warnings if an insecure variation of sprintf() will | ||||||
|  |     be used by gzprintf(). | ||||||
|  |  | ||||||
|  |     If you don't have snprintf() or vsnprintf() and would like one, you can | ||||||
|  |     find a portable implementation here: | ||||||
|  |  | ||||||
|  |         http://www.ijs.si/software/snprintf/ | ||||||
|  |  | ||||||
|  |     Note that you should be using the most recent version of zlib. Versions | ||||||
|  |     1.1.3 and before were subject to a double-free vulnerability. | ||||||
|  |  | ||||||
|  | 32. Is there a Java version of zlib? | ||||||
|  |  | ||||||
|  |     Probably what you want is to use zlib in Java. zlib is already included | ||||||
|  |     as part of the Java SDK in the java.util.zip class. If you really want | ||||||
|  |     a version of zlib written in the Java language, look on the zlib home | ||||||
|  |     page for links: http://www.zlib.org/ | ||||||
|  |  | ||||||
|  | 33. I get this or that compiler or source-code scanner warning when I crank it | ||||||
|  |     up to maximally-pendantic. Can't you guys write proper code? | ||||||
|  |  | ||||||
|  |     Many years ago, we gave up attempting to avoid warnings on every compiler | ||||||
|  |     in the universe. It just got to be a waste of time, and some compilers | ||||||
|  |     were downright silly. So now, we simply make sure that the code always | ||||||
|  |     works. | ||||||
|  |  | ||||||
|  | 34. Will zlib read the (insert any ancient or arcane format here) compressed | ||||||
|  |     data format? | ||||||
|  |  | ||||||
|  |     Probably not. Look in the comp.compression FAQ for pointers to various | ||||||
|  |     formats and associated software. | ||||||
|  |  | ||||||
|  | 35. How can I encrypt/decrypt zip files with zlib? | ||||||
|  |  | ||||||
|  |     zlib doesn't support encryption. PKZIP encryption is very weak and can be | ||||||
|  |     broken with freely available programs. To get strong encryption, use gpg | ||||||
|  |     which already includes zlib compression. | ||||||
|  |  | ||||||
|  | 36. What's the difference between the "gzip" and "deflate" HTTP 1.1 encodings? | ||||||
|  |  | ||||||
|  |     "gzip" is the gzip format, and "deflate" is the zlib format. They should | ||||||
|  |     probably have called the second one "zlib" instead to avoid confusion | ||||||
|  |     with the raw deflate compressed data format. While the HTTP 1.1 RFC 2616 | ||||||
|  |     correctly points to the zlib specification in RFC 1950 for the "deflate" | ||||||
|  |     transfer encoding, there have been reports of servers and browsers that | ||||||
|  |     incorrectly produce or expect raw deflate data per the deflate | ||||||
|  |     specficiation in RFC 1951, most notably Microsoft. So even though the | ||||||
|  |     "deflate" transfer encoding using the zlib format would be the more | ||||||
|  |     efficient approach (and in fact exactly what the zlib format was designed | ||||||
|  |     for), using the "gzip" transfer encoding is probably more reliable due to | ||||||
|  |     an unfortunate choice of name on the part of the HTTP 1.1 authors. | ||||||
|  |  | ||||||
|  | 37. Does zlib support the new "Deflate64" format introduced by PKWare? | ||||||
|  |  | ||||||
|  |     No. PKWare has apparently decided to keep that format proprietary, since | ||||||
|  |     they have not documented it as they have previous compression formats. | ||||||
|  |     In any case, the compression improvements are so modest compared to other | ||||||
|  |     more modern approaches, that it's not worth the effort to implement. | ||||||
|  |  | ||||||
|  | 38. Can you please sign these lengthy legal documents and fax them back to us | ||||||
|  |     so that we can use your software in our product? | ||||||
|  |  | ||||||
|  |     No. Go away. | ||||||
							
								
								
									
										75
									
								
								INDEX
									
									
									
									
									
								
							
							
						
						
									
										75
									
								
								INDEX
									
									
									
									
									
								
							| @@ -1,75 +1,48 @@ | |||||||
| ChangeLog		history of changes | ChangeLog       history of changes | ||||||
| INDEX			this file | FAQ             Frequently Asked Questions about zlib | ||||||
| Make_vms.com		script for Vax/VMS | INDEX           this file | ||||||
| Makefile		makefile for Unix (generated by configure) | Makefile        makefile for Unix (generated by configure) | ||||||
| Makefile.in		makefile for Unix (template for configure) | Makefile.in     makefile for Unix (template for configure) | ||||||
| Makefile.msc		makefile for Microsoft C 16-bit | README          guess what | ||||||
| Makefile.riscos 	makefile for RISCOS | algorithm.txt   description of the (de)compression algorithm | ||||||
| Makefile.sas		makefile for Amiga SAS/C | configure       configure script for Unix | ||||||
| README			guess what | zconf.in.h      template for zconf.h (used by configure) | ||||||
| algorithm.txt		description of the (de)compression algorithm |  | ||||||
| configure		configure script for Unix |  | ||||||
| descrip.mms		makefile for Vax/VMS |  | ||||||
| zlib.3			mini man page for zlib (volunteers to write full |  | ||||||
| 			man pages from zlib.h welcome. write to jloup@gzip.org) |  | ||||||
|  |  | ||||||
| msdos/Makefile.w32      makefile for Microsoft Visual C++ 32-bit | aix/            instructions for building an AIX shared library | ||||||
| msdos/Makefile.b32	makefile for Borland C++   32-bit | msdos/		makefiles for MSDOS | ||||||
| msdos/Makefile.bor	makefile for Borland C/C++ 16-bit | old/            makefiles for various architectures and zlib documentation | ||||||
| msdos/Makefile.dj2	makefile for DJGPP 2.x |                 files that have not yet been updated for zlib 1.2.x | ||||||
| msdos/Makefile.tc	makefile for Turbo C | win32/		makefiles for Windows | ||||||
| msdos/Makefile.wat	makefile for Watcom C |  | ||||||
| msdos/zlib.def        	definition file for Windows DLL |  | ||||||
| msdos/zlib.rc         	definition file for Windows DLL |  | ||||||
|  |  | ||||||
| nt/Makefile.nt		makefile for Windows NT |                 zlib public header files (must be kept): | ||||||
| nt/zlib.dnt		definition file for Windows NT DLL |  | ||||||
|  |  | ||||||
|  |  | ||||||
| 		zlib public header files (must be kept): |  | ||||||
| zconf.h | zconf.h | ||||||
| zlib.h | zlib.h | ||||||
|  |  | ||||||
| 		private source files used to build the zlib library: |                 private source files used to build the zlib library: | ||||||
| adler32.c | adler32.c | ||||||
| compress.c | compress.c | ||||||
| crc32.c | crc32.c | ||||||
|  | crc32.h | ||||||
| deflate.c | deflate.c | ||||||
| deflate.h | deflate.h | ||||||
| gzio.c | gzio.c | ||||||
| infblock.c | infback.c | ||||||
| infblock.h |  | ||||||
| infcodes.c |  | ||||||
| infcodes.h |  | ||||||
| inffast.c | inffast.c | ||||||
| inffast.h | inffast.h | ||||||
|  | inffixed.h | ||||||
| inflate.c | inflate.c | ||||||
|  | inflate.h | ||||||
| inftrees.c | inftrees.c | ||||||
| inftrees.h | inftrees.h | ||||||
| infutil.c |  | ||||||
| infutil.h |  | ||||||
| trees.c | trees.c | ||||||
|  | trees.h | ||||||
| uncompr.c | uncompr.c | ||||||
| zutil.c | zutil.c | ||||||
| zutil.h | zutil.h | ||||||
|  |  | ||||||
| 		source files for sample programs: |                 source files for sample programs: | ||||||
| example.c | example.c | ||||||
| minigzip.c | minigzip.c | ||||||
|  |  | ||||||
| 		unsupported contribution by third parties |                 unsupported contribution by third parties | ||||||
|  | See contrib/README.contrib | ||||||
| contrib/asm386/ by Gilles Vollant <info@winimage.com> |  | ||||||
| 	386 asm code replacing longest_match(). |  | ||||||
|  |  | ||||||
| contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu> |  | ||||||
|         A C++ I/O streams interface to the zlib gz* functions |  | ||||||
|  |  | ||||||
| contrib/iostream2/  by Tyge L<>vset <Tyge.Lovset@cmr.no> |  | ||||||
| 	Another C++ I/O streams interface |  | ||||||
|  |  | ||||||
| contrib/untgz/  by "Pedro A. Aranda Guti\irrez" <paag@tid.es> |  | ||||||
| 	A very simple tar.gz extractor using zlib |  | ||||||
|  |  | ||||||
| contrib/visual-basic.txt by Carlos Rios <c_rios@sonda.cl> |  | ||||||
|         How to use compress(), uncompress() and the gz* functions from VB. |  | ||||||
|   | |||||||
							
								
								
									
										91
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										91
									
								
								Makefile
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| # Makefile for zlib | # Makefile for zlib | ||||||
| # Copyright (C) 1995-1998 Jean-loup Gailly. | # Copyright (C) 1995-2003 Jean-loup Gailly. | ||||||
| # For conditions of distribution and use, see copyright notice in zlib.h  | # For conditions of distribution and use, see copyright notice in zlib.h  | ||||||
|  |  | ||||||
| # To compile and test, type: | # To compile and test, type: | ||||||
| @@ -20,10 +20,11 @@ CFLAGS=-O | |||||||
| #CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \ | #CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \ | ||||||
| #           -Wstrict-prototypes -Wmissing-prototypes | #           -Wstrict-prototypes -Wmissing-prototypes | ||||||
|  |  | ||||||
| LDFLAGS=-L. -lz | LDFLAGS=libz.a | ||||||
| LDSHARED=$(CC) | LDSHARED=$(CC) | ||||||
|  | CPP=$(CC) -E | ||||||
|  |  | ||||||
| VER=1.1.1 | VER=1.2.0.1 | ||||||
| LIBS=libz.a | LIBS=libz.a | ||||||
| SHAREDLIB=libz.so | SHAREDLIB=libz.so | ||||||
|  |  | ||||||
| @@ -32,24 +33,35 @@ RANLIB=ranlib | |||||||
| TAR=tar | TAR=tar | ||||||
| SHELL=/bin/sh | SHELL=/bin/sh | ||||||
|  |  | ||||||
| prefix=/usr/local | prefix = /usr/local | ||||||
| exec_prefix = $(prefix) | exec_prefix = ${prefix} | ||||||
|  | libdir = ${exec_prefix}/lib | ||||||
|  | includedir = ${prefix}/include | ||||||
|  |  | ||||||
| OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \ | OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \ | ||||||
|        zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o |        zutil.o inflate.o infback.o inftrees.o inffast.o | ||||||
|  |  | ||||||
|  | OBJA = | ||||||
|  | # to use the asm code: make OBJA=match.o | ||||||
|  |  | ||||||
| TEST_OBJS = example.o minigzip.o | TEST_OBJS = example.o minigzip.o | ||||||
|  |  | ||||||
| DISTFILES = README INDEX ChangeLog configure Make*[a-z0-9] *.[ch] descrip.mms \ | # Note: this hasn't been updated for zlib 1.2.0 | ||||||
|   algorithm.txt zlib.3 msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc \ | DISTFILES = README FAQ INDEX ChangeLog configure Make*[a-z0-9] *.[ch] *.mms \ | ||||||
|   nt/Makefile.nt nt/zlib.dnt  contrib/README.contrib contrib/*.txt \ |   algorithm.txt zlib.3 zlib.html \ | ||||||
|   contrib/asm386/*.asm contrib/asm386/*.c \ |   msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc \ | ||||||
|   contrib/asm386/*.bat contrib/asm386/zlibvc.d?? contrib/iostream/*.cpp \ |   nt/Make*[a-z0-9] nt/zlib.dnt amiga/Make*.??? os2/M*.os2 os2/zlib.def \ | ||||||
|  |   contrib/RE*.contrib contrib/*.txt contrib/asm386/*.asm contrib/asm386/*.c \ | ||||||
|  |   contrib/asm386/*.bat contrib/asm386/zlibvc.d?? contrib/asm[56]86/*.?86 \ | ||||||
|  |   contrib/asm[56]86/*.S contrib/iostream/*.cpp \ | ||||||
|   contrib/iostream/*.h  contrib/iostream2/*.h contrib/iostream2/*.cpp \ |   contrib/iostream/*.h  contrib/iostream2/*.h contrib/iostream2/*.cpp \ | ||||||
|   contrib/untgz/Makefile contrib/untgz/*.c contrib/untgz/*.w32 |   contrib/untgz/Makefile contrib/untgz/*.c contrib/untgz/*.w32 \ | ||||||
|  |   contrib/minizip/[CM]*[pe] contrib/minizip/*.[ch] contrib/minizip/*.[td]?? \ | ||||||
|  |   contrib/delphi*/*.??? | ||||||
|  |  | ||||||
| all: example minigzip | all: example minigzip | ||||||
|  |  | ||||||
|  | check: test | ||||||
| test: all | test: all | ||||||
| 	@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \ | 	@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \ | ||||||
| 	echo hello world | ./minigzip | ./minigzip -d || \ | 	echo hello world | ./minigzip | ./minigzip -d || \ | ||||||
| @@ -60,10 +72,16 @@ test: all | |||||||
| 	  echo '		*** zlib test FAILED ***'; \ | 	  echo '		*** zlib test FAILED ***'; \ | ||||||
| 	fi | 	fi | ||||||
|  |  | ||||||
| libz.a: $(OBJS) | libz.a: $(OBJS) $(OBJA) | ||||||
| 	$(AR) $@ $(OBJS) | 	$(AR) $@ $(OBJS) $(OBJA) | ||||||
| 	-@ ($(RANLIB) $@ || true) >/dev/null 2>&1 | 	-@ ($(RANLIB) $@ || true) >/dev/null 2>&1 | ||||||
|  |  | ||||||
|  | match.o: match.S | ||||||
|  | 	$(CPP) match.S > _match.s | ||||||
|  | 	$(CC) -c _match.s | ||||||
|  | 	mv _match.o match.o | ||||||
|  | 	rm -f _match.s | ||||||
|  |  | ||||||
| $(SHAREDLIB).$(VER): $(OBJS) | $(SHAREDLIB).$(VER): $(OBJS) | ||||||
| 	$(LDSHARED) -o $@ $(OBJS) | 	$(LDSHARED) -o $@ $(OBJS) | ||||||
| 	rm -f $(SHAREDLIB) $(SHAREDLIB).1 | 	rm -f $(SHAREDLIB) $(SHAREDLIB).1 | ||||||
| @@ -77,14 +95,15 @@ minigzip: minigzip.o $(LIBS) | |||||||
| 	$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS) | 	$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS) | ||||||
|  |  | ||||||
| install: $(LIBS) | install: $(LIBS) | ||||||
| 	-@if [ ! -d $(prefix)/include  ]; then mkdir $(prefix)/include; fi | 	-@if [ ! -d $(exec_prefix) ]; then mkdir $(exec_prefix); fi | ||||||
| 	-@if [ ! -d $(exec_prefix)/lib ]; then mkdir $(exec_prefix)/lib; fi | 	-@if [ ! -d $(includedir)  ]; then mkdir $(includedir); fi | ||||||
| 	cp zlib.h zconf.h $(prefix)/include | 	-@if [ ! -d $(libdir) ]; then mkdir $(libdir); fi | ||||||
| 	chmod 644 $(prefix)/include/zlib.h $(prefix)/include/zconf.h | 	cp zlib.h zconf.h $(includedir) | ||||||
| 	cp $(LIBS) $(exec_prefix)/lib | 	chmod 644 $(includedir)/zlib.h $(includedir)/zconf.h | ||||||
| 	cd $(exec_prefix)/lib; chmod 755 $(LIBS) | 	cp $(LIBS) $(libdir) | ||||||
| 	-@(cd $(exec_prefix)/lib; $(RANLIB) libz.a || true) >/dev/null 2>&1 | 	cd $(libdir); chmod 755 $(LIBS) | ||||||
| 	cd $(exec_prefix)/lib; if test -f $(SHAREDLIB).$(VER); then \ | 	-@(cd $(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1 | ||||||
|  | 	cd $(libdir); if test -f $(SHAREDLIB).$(VER); then \ | ||||||
| 	  rm -f $(SHAREDLIB) $(SHAREDLIB).1; \ | 	  rm -f $(SHAREDLIB) $(SHAREDLIB).1; \ | ||||||
| 	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB); \ | 	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB); \ | ||||||
| 	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB).1; \ | 	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB).1; \ | ||||||
| @@ -94,32 +113,38 @@ install: $(LIBS) | |||||||
| # ldconfig is for Linux | # ldconfig is for Linux | ||||||
|  |  | ||||||
| uninstall: | uninstall: | ||||||
| 	cd $(prefix)/include; \ | 	cd $(includedir); \ | ||||||
| 	v=$(VER); \ | 	v=$(VER); \ | ||||||
| 	if test -f zlib.h; then \ | 	if test -f zlib.h; then \ | ||||||
| 	  v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`; \ | 	  v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`; \ | ||||||
|           rm -f zlib.h zconf.h; \ |           rm -f zlib.h zconf.h; \ | ||||||
| 	fi; \ | 	fi; \ | ||||||
| 	cd $(exec_prefix)/lib; rm -f libz.a; \ | 	cd $(libdir); rm -f libz.a; \ | ||||||
| 	if test -f $(SHAREDLIB).$$v; then \ | 	if test -f $(SHAREDLIB).$$v; then \ | ||||||
| 	  rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; \ | 	  rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; \ | ||||||
| 	fi | 	fi | ||||||
|  |  | ||||||
|  | mostlyclean: clean | ||||||
| clean: | clean: | ||||||
| 	rm -f *.o *~ example minigzip libz.a libz.so* foo.gz | 	rm -f *.o *~ example minigzip libz.a libz.so* foo.gz so_locations \ | ||||||
|  | 	   _match.s maketree | ||||||
|  |  | ||||||
|  | maintainer-clean: distclean | ||||||
| distclean:	clean | distclean:	clean | ||||||
|  | 	cp -p Makefile.in Makefile | ||||||
|  | 	cp -p zconf.in.h zconf.h | ||||||
|  |  | ||||||
| zip: | zip: | ||||||
| 	mv Makefile Makefile~; cp -p Makefile.in Makefile | 	mv Makefile Makefile~; cp -p Makefile.in Makefile | ||||||
| 	rm -f test.c ztest*.c | 	rm -f test.c ztest*.c contrib/minizip/test.zip | ||||||
| 	v=`sed -n -e 's/\.//g' -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ | 	v=`sed -n -e 's/\.//g' -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ | ||||||
| 	zip -ul9 zlib$$v $(DISTFILES) | 	zip -ul9 zlib$$v $(DISTFILES) | ||||||
| 	mv Makefile~ Makefile | 	mv Makefile~ Makefile | ||||||
|  |  | ||||||
| dist: | dist: | ||||||
|  | 	echo Warning: this hasn't been updated for zlib 1.2.0 -- don't use | ||||||
| 	mv Makefile Makefile~; cp -p Makefile.in Makefile | 	mv Makefile Makefile~; cp -p Makefile.in Makefile | ||||||
| 	rm -f test.c ztest*.c | 	rm -f test.c ztest*.c contrib/minizip/test.zip | ||||||
| 	d=zlib-`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ | 	d=zlib-`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ | ||||||
| 	rm -f $$d.tar.gz; \ | 	rm -f $$d.tar.gz; \ | ||||||
| 	if test ! -d ../$$d; then rm -f ../$$d; ln -s `pwd` ../$$d; fi; \ | 	if test ! -d ../$$d; then rm -f ../$$d; ln -s `pwd` ../$$d; fi; \ | ||||||
| @@ -140,18 +165,14 @@ depend: | |||||||
|  |  | ||||||
| adler32.o: zlib.h zconf.h | adler32.o: zlib.h zconf.h | ||||||
| compress.o: zlib.h zconf.h | compress.o: zlib.h zconf.h | ||||||
| crc32.o: zlib.h zconf.h | crc32.o: crc32.h zlib.h zconf.h | ||||||
| deflate.o: deflate.h zutil.h zlib.h zconf.h | deflate.o: deflate.h zutil.h zlib.h zconf.h | ||||||
| example.o: zlib.h zconf.h | example.o: zlib.h zconf.h | ||||||
| gzio.o: zutil.h zlib.h zconf.h | gzio.o: zutil.h zlib.h zconf.h | ||||||
| infblock.o: infblock.h inftrees.h infcodes.h infutil.h zutil.h zlib.h zconf.h | inffast.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h | ||||||
| infcodes.o: zutil.h zlib.h zconf.h | inflate.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h | ||||||
| infcodes.o: inftrees.h infblock.h infcodes.h infutil.h inffast.h | infback.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h | ||||||
| inffast.o: zutil.h zlib.h zconf.h inftrees.h |  | ||||||
| inffast.o: infblock.h infcodes.h infutil.h inffast.h |  | ||||||
| inflate.o: zutil.h zlib.h zconf.h infblock.h |  | ||||||
| inftrees.o: zutil.h zlib.h zconf.h inftrees.h | inftrees.o: zutil.h zlib.h zconf.h inftrees.h | ||||||
| infutil.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h |  | ||||||
| minigzip.o:  zlib.h zconf.h  | minigzip.o:  zlib.h zconf.h  | ||||||
| trees.o: deflate.h zutil.h zlib.h zconf.h trees.h | trees.o: deflate.h zutil.h zlib.h zconf.h trees.h | ||||||
| uncompr.o: zlib.h zconf.h | uncompr.o: zlib.h zconf.h | ||||||
|   | |||||||
							
								
								
									
										91
									
								
								Makefile.in
									
									
									
									
									
								
							
							
						
						
									
										91
									
								
								Makefile.in
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| # Makefile for zlib | # Makefile for zlib | ||||||
| # Copyright (C) 1995-1998 Jean-loup Gailly. | # Copyright (C) 1995-2003 Jean-loup Gailly. | ||||||
| # For conditions of distribution and use, see copyright notice in zlib.h  | # For conditions of distribution and use, see copyright notice in zlib.h  | ||||||
|  |  | ||||||
| # To compile and test, type: | # To compile and test, type: | ||||||
| @@ -20,10 +20,11 @@ CFLAGS=-O | |||||||
| #CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \ | #CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \ | ||||||
| #           -Wstrict-prototypes -Wmissing-prototypes | #           -Wstrict-prototypes -Wmissing-prototypes | ||||||
|  |  | ||||||
| LDFLAGS=-L. -lz | LDFLAGS=libz.a | ||||||
| LDSHARED=$(CC) | LDSHARED=$(CC) | ||||||
|  | CPP=$(CC) -E | ||||||
|  |  | ||||||
| VER=1.1.1 | VER=1.2.0.1 | ||||||
| LIBS=libz.a | LIBS=libz.a | ||||||
| SHAREDLIB=libz.so | SHAREDLIB=libz.so | ||||||
|  |  | ||||||
| @@ -32,24 +33,35 @@ RANLIB=ranlib | |||||||
| TAR=tar | TAR=tar | ||||||
| SHELL=/bin/sh | SHELL=/bin/sh | ||||||
|  |  | ||||||
| prefix=/usr/local | prefix = /usr/local | ||||||
| exec_prefix = $(prefix) | exec_prefix = ${prefix} | ||||||
|  | libdir = ${exec_prefix}/lib | ||||||
|  | includedir = ${prefix}/include | ||||||
|  |  | ||||||
| OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \ | OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \ | ||||||
|        zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o |        zutil.o inflate.o infback.o inftrees.o inffast.o | ||||||
|  |  | ||||||
|  | OBJA = | ||||||
|  | # to use the asm code: make OBJA=match.o | ||||||
|  |  | ||||||
| TEST_OBJS = example.o minigzip.o | TEST_OBJS = example.o minigzip.o | ||||||
|  |  | ||||||
| DISTFILES = README INDEX ChangeLog configure Make*[a-z0-9] *.[ch] descrip.mms \ | # Note: this hasn't been updated for zlib 1.2.0 | ||||||
|   algorithm.txt zlib.3 msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc \ | DISTFILES = README FAQ INDEX ChangeLog configure Make*[a-z0-9] *.[ch] *.mms \ | ||||||
|   nt/Makefile.nt nt/zlib.dnt  contrib/README.contrib contrib/*.txt \ |   algorithm.txt zlib.3 zlib.html \ | ||||||
|   contrib/asm386/*.asm contrib/asm386/*.c \ |   msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc \ | ||||||
|   contrib/asm386/*.bat contrib/asm386/zlibvc.d?? contrib/iostream/*.cpp \ |   nt/Make*[a-z0-9] nt/zlib.dnt amiga/Make*.??? os2/M*.os2 os2/zlib.def \ | ||||||
|  |   contrib/RE*.contrib contrib/*.txt contrib/asm386/*.asm contrib/asm386/*.c \ | ||||||
|  |   contrib/asm386/*.bat contrib/asm386/zlibvc.d?? contrib/asm[56]86/*.?86 \ | ||||||
|  |   contrib/asm[56]86/*.S contrib/iostream/*.cpp \ | ||||||
|   contrib/iostream/*.h  contrib/iostream2/*.h contrib/iostream2/*.cpp \ |   contrib/iostream/*.h  contrib/iostream2/*.h contrib/iostream2/*.cpp \ | ||||||
|   contrib/untgz/Makefile contrib/untgz/*.c contrib/untgz/*.w32 |   contrib/untgz/Makefile contrib/untgz/*.c contrib/untgz/*.w32 \ | ||||||
|  |   contrib/minizip/[CM]*[pe] contrib/minizip/*.[ch] contrib/minizip/*.[td]?? \ | ||||||
|  |   contrib/delphi*/*.??? | ||||||
|  |  | ||||||
| all: example minigzip | all: example minigzip | ||||||
|  |  | ||||||
|  | check: test | ||||||
| test: all | test: all | ||||||
| 	@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \ | 	@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \ | ||||||
| 	echo hello world | ./minigzip | ./minigzip -d || \ | 	echo hello world | ./minigzip | ./minigzip -d || \ | ||||||
| @@ -60,10 +72,16 @@ test: all | |||||||
| 	  echo '		*** zlib test FAILED ***'; \ | 	  echo '		*** zlib test FAILED ***'; \ | ||||||
| 	fi | 	fi | ||||||
|  |  | ||||||
| libz.a: $(OBJS) | libz.a: $(OBJS) $(OBJA) | ||||||
| 	$(AR) $@ $(OBJS) | 	$(AR) $@ $(OBJS) $(OBJA) | ||||||
| 	-@ ($(RANLIB) $@ || true) >/dev/null 2>&1 | 	-@ ($(RANLIB) $@ || true) >/dev/null 2>&1 | ||||||
|  |  | ||||||
|  | match.o: match.S | ||||||
|  | 	$(CPP) match.S > _match.s | ||||||
|  | 	$(CC) -c _match.s | ||||||
|  | 	mv _match.o match.o | ||||||
|  | 	rm -f _match.s | ||||||
|  |  | ||||||
| $(SHAREDLIB).$(VER): $(OBJS) | $(SHAREDLIB).$(VER): $(OBJS) | ||||||
| 	$(LDSHARED) -o $@ $(OBJS) | 	$(LDSHARED) -o $@ $(OBJS) | ||||||
| 	rm -f $(SHAREDLIB) $(SHAREDLIB).1 | 	rm -f $(SHAREDLIB) $(SHAREDLIB).1 | ||||||
| @@ -77,14 +95,15 @@ minigzip: minigzip.o $(LIBS) | |||||||
| 	$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS) | 	$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS) | ||||||
|  |  | ||||||
| install: $(LIBS) | install: $(LIBS) | ||||||
| 	-@if [ ! -d $(prefix)/include  ]; then mkdir $(prefix)/include; fi | 	-@if [ ! -d $(exec_prefix) ]; then mkdir $(exec_prefix); fi | ||||||
| 	-@if [ ! -d $(exec_prefix)/lib ]; then mkdir $(exec_prefix)/lib; fi | 	-@if [ ! -d $(includedir)  ]; then mkdir $(includedir); fi | ||||||
| 	cp zlib.h zconf.h $(prefix)/include | 	-@if [ ! -d $(libdir) ]; then mkdir $(libdir); fi | ||||||
| 	chmod 644 $(prefix)/include/zlib.h $(prefix)/include/zconf.h | 	cp zlib.h zconf.h $(includedir) | ||||||
| 	cp $(LIBS) $(exec_prefix)/lib | 	chmod 644 $(includedir)/zlib.h $(includedir)/zconf.h | ||||||
| 	cd $(exec_prefix)/lib; chmod 755 $(LIBS) | 	cp $(LIBS) $(libdir) | ||||||
| 	-@(cd $(exec_prefix)/lib; $(RANLIB) libz.a || true) >/dev/null 2>&1 | 	cd $(libdir); chmod 755 $(LIBS) | ||||||
| 	cd $(exec_prefix)/lib; if test -f $(SHAREDLIB).$(VER); then \ | 	-@(cd $(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1 | ||||||
|  | 	cd $(libdir); if test -f $(SHAREDLIB).$(VER); then \ | ||||||
| 	  rm -f $(SHAREDLIB) $(SHAREDLIB).1; \ | 	  rm -f $(SHAREDLIB) $(SHAREDLIB).1; \ | ||||||
| 	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB); \ | 	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB); \ | ||||||
| 	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB).1; \ | 	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB).1; \ | ||||||
| @@ -94,32 +113,38 @@ install: $(LIBS) | |||||||
| # ldconfig is for Linux | # ldconfig is for Linux | ||||||
|  |  | ||||||
| uninstall: | uninstall: | ||||||
| 	cd $(prefix)/include; \ | 	cd $(includedir); \ | ||||||
| 	v=$(VER); \ | 	v=$(VER); \ | ||||||
| 	if test -f zlib.h; then \ | 	if test -f zlib.h; then \ | ||||||
| 	  v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`; \ | 	  v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`; \ | ||||||
|           rm -f zlib.h zconf.h; \ |           rm -f zlib.h zconf.h; \ | ||||||
| 	fi; \ | 	fi; \ | ||||||
| 	cd $(exec_prefix)/lib; rm -f libz.a; \ | 	cd $(libdir); rm -f libz.a; \ | ||||||
| 	if test -f $(SHAREDLIB).$$v; then \ | 	if test -f $(SHAREDLIB).$$v; then \ | ||||||
| 	  rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; \ | 	  rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; \ | ||||||
| 	fi | 	fi | ||||||
|  |  | ||||||
|  | mostlyclean: clean | ||||||
| clean: | clean: | ||||||
| 	rm -f *.o *~ example minigzip libz.a libz.so* foo.gz | 	rm -f *.o *~ example minigzip libz.a libz.so* foo.gz so_locations \ | ||||||
|  | 	   _match.s maketree | ||||||
|  |  | ||||||
|  | maintainer-clean: distclean | ||||||
| distclean:	clean | distclean:	clean | ||||||
|  | 	cp -p Makefile.in Makefile | ||||||
|  | 	cp -p zconf.in.h zconf.h | ||||||
|  |  | ||||||
| zip: | zip: | ||||||
| 	mv Makefile Makefile~; cp -p Makefile.in Makefile | 	mv Makefile Makefile~; cp -p Makefile.in Makefile | ||||||
| 	rm -f test.c ztest*.c | 	rm -f test.c ztest*.c contrib/minizip/test.zip | ||||||
| 	v=`sed -n -e 's/\.//g' -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ | 	v=`sed -n -e 's/\.//g' -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ | ||||||
| 	zip -ul9 zlib$$v $(DISTFILES) | 	zip -ul9 zlib$$v $(DISTFILES) | ||||||
| 	mv Makefile~ Makefile | 	mv Makefile~ Makefile | ||||||
|  |  | ||||||
| dist: | dist: | ||||||
|  | 	echo Warning: this hasn't been updated for zlib 1.2.0 -- don't use | ||||||
| 	mv Makefile Makefile~; cp -p Makefile.in Makefile | 	mv Makefile Makefile~; cp -p Makefile.in Makefile | ||||||
| 	rm -f test.c ztest*.c | 	rm -f test.c ztest*.c contrib/minizip/test.zip | ||||||
| 	d=zlib-`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ | 	d=zlib-`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ | ||||||
| 	rm -f $$d.tar.gz; \ | 	rm -f $$d.tar.gz; \ | ||||||
| 	if test ! -d ../$$d; then rm -f ../$$d; ln -s `pwd` ../$$d; fi; \ | 	if test ! -d ../$$d; then rm -f ../$$d; ln -s `pwd` ../$$d; fi; \ | ||||||
| @@ -140,18 +165,14 @@ depend: | |||||||
|  |  | ||||||
| adler32.o: zlib.h zconf.h | adler32.o: zlib.h zconf.h | ||||||
| compress.o: zlib.h zconf.h | compress.o: zlib.h zconf.h | ||||||
| crc32.o: zlib.h zconf.h | crc32.o: crc32.h zlib.h zconf.h | ||||||
| deflate.o: deflate.h zutil.h zlib.h zconf.h | deflate.o: deflate.h zutil.h zlib.h zconf.h | ||||||
| example.o: zlib.h zconf.h | example.o: zlib.h zconf.h | ||||||
| gzio.o: zutil.h zlib.h zconf.h | gzio.o: zutil.h zlib.h zconf.h | ||||||
| infblock.o: infblock.h inftrees.h infcodes.h infutil.h zutil.h zlib.h zconf.h | inffast.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h | ||||||
| infcodes.o: zutil.h zlib.h zconf.h | inflate.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h | ||||||
| infcodes.o: inftrees.h infblock.h infcodes.h infutil.h inffast.h | infback.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h | ||||||
| inffast.o: zutil.h zlib.h zconf.h inftrees.h |  | ||||||
| inffast.o: infblock.h infcodes.h infutil.h inffast.h |  | ||||||
| inflate.o: zutil.h zlib.h zconf.h infblock.h |  | ||||||
| inftrees.o: zutil.h zlib.h zconf.h inftrees.h | inftrees.o: zutil.h zlib.h zconf.h inftrees.h | ||||||
| infutil.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h |  | ||||||
| minigzip.o:  zlib.h zconf.h  | minigzip.o:  zlib.h zconf.h  | ||||||
| trees.o: deflate.h zutil.h zlib.h zconf.h trees.h | trees.o: deflate.h zutil.h zlib.h zconf.h trees.h | ||||||
| uncompr.o: zlib.h zconf.h | uncompr.o: zlib.h zconf.h | ||||||
|   | |||||||
| @@ -1,46 +0,0 @@ | |||||||
| # Project:   zlib_1_03 |  | ||||||
|  |  | ||||||
|  |  | ||||||
| # Toolflags: |  | ||||||
| CCflags = -c -depend !Depend -IC: -g -throwback  -DRISCOS  -fnah  |  | ||||||
| C++flags = -c -depend !Depend -IC: -throwback |  | ||||||
| Linkflags = -aif -c++ -o $@  |  | ||||||
| ObjAsmflags = -throwback -NoCache -depend !Depend |  | ||||||
| CMHGflags =  |  | ||||||
| LibFileflags = -c -l -o $@  |  | ||||||
| Squeezeflags = -o $@ |  | ||||||
|  |  | ||||||
|  |  | ||||||
| # Final targets: |  | ||||||
| @.zlib_lib:   @.o.adler32 @.o.compress @.o.crc32 @.o.deflate @.o.gzio \ |  | ||||||
|         @.o.infblock @.o.infcodes @.o.inffast @.o.inflate @.o.inftrees @.o.infutil @.o.trees \ |  | ||||||
|         @.o.uncompress @.o.zutil  |  | ||||||
|         LibFile $(LibFileflags) @.o.adler32 @.o.compress @.o.crc32 @.o.deflate \ |  | ||||||
|         @.o.gzio @.o.infblock @.o.infcodes @.o.inffast @.o.inflate @.o.inftrees @.o.infutil \ |  | ||||||
|         @.o.trees @.o.uncompress @.o.zutil  |  | ||||||
| @.test:   @.tests.minigzip @.tests.example  |  | ||||||
|         echo Please run "Test" in directory tests  |  | ||||||
| @.tests.minigzip:   @.o.minigzip @.zlib_lib C:o.Stubs  |  | ||||||
|         Link $(Linkflags) @.o.minigzip @.zlib_lib C:o.Stubs  |  | ||||||
| @.tests.example:   @.o.example @.zlib_lib C:o.Stubs  |  | ||||||
|         Link $(Linkflags) @.o.example @.zlib_lib C:o.Stubs  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| # User-editable dependencies: |  | ||||||
| .c.o: |  | ||||||
|         cc $(ccflags) -o $@ $< |  | ||||||
|  |  | ||||||
| # Static dependencies: |  | ||||||
| @.o.example:   @.tests.c.example |  | ||||||
|         cc $(ccflags) -o @.o.example @.tests.c.example  |  | ||||||
| @.o.minigzip:   @.tests.c.minigzip |  | ||||||
|         cc $(ccflags) -o @.o.minigzip @.tests.c.minigzip  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| # Dynamic dependencies: |  | ||||||
| o.minigzip:	tests.c.minigzip |  | ||||||
| o.minigzip:	h.zlib |  | ||||||
| o.minigzip:	h.zconf |  | ||||||
| o.example:	tests.c.example |  | ||||||
| o.example:	h.zlib |  | ||||||
| o.example:	h.zconf |  | ||||||
							
								
								
									
										131
									
								
								README
									
									
									
									
									
								
							
							
						
						
									
										131
									
								
								README
									
									
									
									
									
								
							| @@ -1,102 +1,109 @@ | |||||||
| zlib 1.1.1 is a general purpose data compression library.  All the code | ZLIB DATA COMPRESSION LIBRARY | ||||||
| is thread safe.  The data format used by the zlib library |  | ||||||
| is described by RFCs (Request for Comments) 1950 to 1952 in the files  | zlib 1.2.0.1 is a general purpose data compression library.  All the code is | ||||||
| ftp://ds.internic.net/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate | thread safe.  The data format used by the zlib library is described by RFCs | ||||||
| format) and rfc1952.txt (gzip format). These documents are also available in | (Request for Comments) 1950 to 1952 in the files | ||||||
| other formats from ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html | http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format) | ||||||
|  | and rfc1952.txt (gzip format). These documents are also available in other | ||||||
|  | formats from ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html | ||||||
|  |  | ||||||
| All functions of the compression library are documented in the file zlib.h | All functions of the compression library are documented in the file zlib.h | ||||||
| (volunteer to write man pages welcome, contact jloup@gzip.org). A usage | (volunteer to write man pages welcome, contact jloup@gzip.org). A usage example | ||||||
| example of the library is given in the file example.c which also tests that | of the library is given in the file example.c which also tests that the library | ||||||
| the library is working correctly. Another example is given in the file | is working correctly. Another example is given in the file minigzip.c. The | ||||||
| minigzip.c. The compression library itself is composed of all source files | compression library itself is composed of all source files except example.c and | ||||||
| except example.c and minigzip.c. | minigzip.c. | ||||||
|  |  | ||||||
| To compile all files and run the test program, follow the instructions | To compile all files and run the test program, follow the instructions given at | ||||||
| given at the top of Makefile. In short "make test; make install" | the top of Makefile. In short "make test; make install" should work for most | ||||||
| should work for most machines.  For MSDOS, use one of the special | machines. For Unix: "./configure; make test; make install" For MSDOS, use one | ||||||
| makefiles such as Makefile.msc; for VMS, use Make_vms.com or descrip.mms. | of the special makefiles such as Makefile.msc. For VMS, use Make_vms.com or | ||||||
|  | descrip.mms. | ||||||
|  |  | ||||||
| Questions about zlib should be sent to <zlib@quest.jpl.nasa.gov> or, | Questions about zlib should be sent to <zlib@gzip.org>, or to Gilles Vollant | ||||||
| if this fails, to the addresses given below in the Copyright section. | <info@winimage.com> for the Windows DLL version. The zlib home page is | ||||||
| The zlib home page is http://www.cdrom.com/pub/infozip/zlib/ | http://www.zlib.org or http://www.gzip.org/zlib/ Before reporting a problem, | ||||||
| The official zlib ftp site is ftp://ftp.cdrom.com/pub/infozip/zlib/ | please check this site to verify that you have the latest version of zlib; | ||||||
| Mark Nelson wrote an article about zlib for the Jan. 1997 issue of  | otherwise get the latest version and check whether the problem still exists or | ||||||
| Dr. Dobb's Journal; a copy of the article is available in | not. | ||||||
| http://web2.airmail.net/markn/articles/zlibtool/zlibtool.htm |  | ||||||
|  |  | ||||||
| The changes made in version 1.1.1 are documented in the file ChangeLog. | PLEASE read the zlib FAQ http://www.gzip.org/zlib/zlib_faq.html before asking | ||||||
| The main changes since 1.1.0 are: | for help. | ||||||
|  |  | ||||||
| - fix macros _tr_tally_* in deflate.h for debug mode  (Glenn Randers-Pehrson) | Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997 | ||||||
| - remove block truncation heuristic which had very marginal effect for zlib | issue of  Dr. Dobb's Journal; a copy of the article is available in | ||||||
|   (smaller lit_bufsize than in gzip 1.2.4) and degraded a little the | http://dogma.net/markn/articles/zlibtool/zlibtool.htm | ||||||
|   compression ratio on some files. This also allows inlining _tr_tally for |  | ||||||
|   matches in deflate_slow. |  | ||||||
|  |  | ||||||
|  | The changes made in version 1.2.0.1 are documented in the file ChangeLog. | ||||||
|  |  | ||||||
| Unsupported third party contributions are provided in directory "contrib". | Unsupported third party contributions are provided in directory "contrib". | ||||||
|  |  | ||||||
| A Java implementation of zlib is available in the Java Development Kit 1.1 | A Java implementation of zlib is available in the Java Development Kit | ||||||
| http://www.javasoft.com/products/JDK/1.1/docs/api/Package-java.util.zip.html | http://www.javasoft.com/products/JDK/1.1/docs/api/Package-java.util.zip.html | ||||||
| See the zlib home page http://www.cdrom.com/pub/infozip/zlib/ for details. | See the zlib home page http://www.zlib.org for details. | ||||||
|  |  | ||||||
| A Perl interface to zlib written by Paul Marquess <pmarquess@bfsec.bt.co.uk> | A Perl interface to zlib written by Paul Marquess <pmqs@cpan.org> is in the | ||||||
| is in the CPAN (Comprehensive Perl Archive Network) sites, such as: | CPAN (Comprehensive Perl Archive Network) sites | ||||||
| ftp://ftp.cis.ufl.edu/pub/perl/CPAN/modules/by-module/Compress/Compress-Zlib* | http://www.cpan.org/modules/by-module/Compress/ | ||||||
|  |  | ||||||
| A Python interface to zlib written by A.M. Kuchling <amk@magnet.com> | A Python interface to zlib written by A.M. Kuchling <amk@magnet.com> is | ||||||
| is available from the Python Software Association sites, such as: | available in Python 1.5 and later versions, see | ||||||
| ftp://ftp.python.org/pub/python/contrib/Encoding/zlib*.tar.gz | http://www.python.org/doc/lib/module-zlib.html | ||||||
|  |  | ||||||
| An experimental package to read files in .zip format, written on top of | A zlib binding for TCL written by Andreas Kupries <a.kupries@westend.com> is | ||||||
| zlib by Gilles Vollant <info@winimage.com>, is available at | availlable at http://www.westend.com/~kupries/doc/trf/man/man.html | ||||||
| http://www.winimage.com/zLibDll/unzip.html |  | ||||||
|  | An experimental package to read and write files in .zip format, written on top | ||||||
|  | of zlib by Gilles Vollant <info@winimage.com>, is available at | ||||||
|  | http://www.winimage.com/zLibDll/unzip.html and also in the contrib/minizip | ||||||
|  | directory of zlib. | ||||||
|  |  | ||||||
|  |  | ||||||
| Notes for some targets: | Notes for some targets: | ||||||
|  |  | ||||||
| - To build a Windows DLL version, include in a DLL project zlib.def, zlib.rc | - To build a Windows DLL version, include in a DLL project zlib.def, zlib.rc | ||||||
|   and all .c files except example.c and minigzip.c; compile with -DZLIB_DLL |   and all .c files except example.c and minigzip.c; compile with -DZLIB_DLL The | ||||||
|   The zlib DLL support was initially done by Alessandro Iacopetti and is |   zlib DLL support was initially done by Alessandro Iacopetti and is now | ||||||
|   now maintained by Gilles Vollant <info@winimage.com>. Check the zlib DLL |   maintained by Gilles Vollant <info@winimage.com>. Check the zlib DLL home | ||||||
|   home page at http://www.winimage.com/zLibDll |   page at http://www.winimage.com/zLibDll | ||||||
|  |  | ||||||
|   From Visual Basic, you can call the DLL functions which do not take |   From Visual Basic, you can call the DLL functions which do not take a | ||||||
|   a structure as argument: compress, uncompress and all gz* functions. |   structure as argument: compress, uncompress and all gz* functions. See | ||||||
|   See contrib/visual-basic.txt for more information. |   contrib/visual-basic.txt for more information, or get | ||||||
|   I don't know how to handle structures in Visual Basic, sorry. |   http://www.tcfb.com/dowseware/cmp-z-it.zip | ||||||
|  |  | ||||||
| - For 64-bit Irix, deflate.c must be compiled without any optimization. | - For 64-bit Irix, deflate.c must be compiled without any optimization. With | ||||||
|   With -O, one libpng test fails. The test works in 32 bit mode (with |   -O, one libpng test fails. The test works in 32 bit mode (with the -n32 | ||||||
|   the -n32 compiler flag). The compiler bug has been reported to SGI. |   compiler flag). The compiler bug has been reported to SGI. | ||||||
|  |  | ||||||
| - zlib doesn't work with gcc 2.6.3 on a DEC 3000/300LX under OSF/1 2.1    | - zlib doesn't work with gcc 2.6.3 on a DEC 3000/300LX under OSF/1 2.1 it works | ||||||
|   it works when compiled with cc. |   when compiled with cc. | ||||||
|  |  | ||||||
| - zlib doesn't work on HP-UX 9.05 with some versions of /bin/cc. It works | - On Digital Unix 4.0D (formely OSF/1) on AlphaServer, the cc option -std1 is | ||||||
|   with other compilers. Use "make test" to check your compiler. |   necessary to get gzprintf working correctly. This is done by configure. | ||||||
|  |  | ||||||
| - For shared memory multiprocessors, the decompression code assumes that | - zlib doesn't work on HP-UX 9.05 with some versions of /bin/cc. It works with | ||||||
|   writes to pointers are atomic. Also the functions zalloc and zfree passed |   other compilers. Use "make test" to check your compiler. | ||||||
|   to deflateInit must be multi-threaded in this case. |  | ||||||
|  |  | ||||||
| - gzdopen is not supported on RISCOS, BEOS and by some Mac compilers. | - gzdopen is not supported on RISCOS, BEOS and by some Mac compilers. | ||||||
|  |  | ||||||
| - For Turbo C the small model is supported only with reduced performance to | - For Turbo C the small model is supported only with reduced performance to | ||||||
|   avoid any far allocation; it was tested with -DMAX_WBITS=11 -DMAX_MEM_LEVEL=3 |   avoid any far allocation; it was tested with -DMAX_WBITS=11 -DMAX_MEM_LEVEL=3 | ||||||
|  |  | ||||||
|  | - For PalmOs, see http://www.cs.uit.no/~perm/PASTA/pilot/software.html Per | ||||||
|  |   Harald Myrvang <perm@stud.cs.uit.no> | ||||||
|  |  | ||||||
|  |  | ||||||
| Acknowledgments: | Acknowledgments: | ||||||
|  |  | ||||||
|   The deflate format used by zlib was defined by Phil Katz. The deflate |   The deflate format used by zlib was defined by Phil Katz. The deflate | ||||||
|   and zlib specifications were written by Peter Deutsch. Thanks to all the |   and zlib specifications were written by L. Peter Deutsch. Thanks to all the | ||||||
|   people who reported problems and suggested various improvements in zlib; |   people who reported problems and suggested various improvements in zlib; | ||||||
|   they are too numerous to cite here. |   they are too numerous to cite here. | ||||||
|  |  | ||||||
| Copyright notice: | Copyright notice: | ||||||
|  |  | ||||||
|  (C) 1995-1998 Jean-loup Gailly and Mark Adler |  (C) 1995-2003 Jean-loup Gailly and Mark Adler | ||||||
|  |  | ||||||
|   This software is provided 'as-is', without any express or implied |   This software is provided 'as-is', without any express or implied | ||||||
|   warranty.  In no event will the authors be held liable for any damages |   warranty.  In no event will the authors be held liable for any damages | ||||||
| @@ -124,4 +131,6 @@ entirely written by Jean-loup Gailly and Mark Adler; it does not | |||||||
| include third-party code. | include third-party code. | ||||||
|  |  | ||||||
| If you redistribute modified sources, we would appreciate that you include | If you redistribute modified sources, we would appreciate that you include | ||||||
| in the file ChangeLog history information documenting your changes. | in the file ChangeLog history information documenting your changes. Please | ||||||
|  | read the FAQ for more information on the distribution of modified source | ||||||
|  | versions. | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| /* adler32.c -- compute the Adler-32 checksum of a data stream | /* adler32.c -- compute the Adler-32 checksum of a data stream | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  * Copyright (C) 1995-2003 Mark Adler | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h  |  * For conditions of distribution and use, see copyright notice in zlib.h  | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| @@ -30,16 +30,16 @@ uLong ZEXPORT adler32(adler, buf, len) | |||||||
|     if (buf == Z_NULL) return 1L; |     if (buf == Z_NULL) return 1L; | ||||||
|  |  | ||||||
|     while (len > 0) { |     while (len > 0) { | ||||||
|         k = len < NMAX ? len : NMAX; |         k = len < NMAX ? (int)len : NMAX; | ||||||
|         len -= k; |         len -= k; | ||||||
|         while (k >= 16) { |         while (k >= 16) { | ||||||
|             DO16(buf); |             DO16(buf); | ||||||
| 	    buf += 16; |             buf += 16; | ||||||
|             k -= 16; |             k -= 16; | ||||||
|         } |         } | ||||||
|         if (k != 0) do { |         if (k != 0) do { | ||||||
|             s1 += *buf++; |             s1 += *buf++; | ||||||
| 	    s2 += s1; |             s2 += s1; | ||||||
|         } while (--k); |         } while (--k); | ||||||
|         s1 %= BASE; |         s1 %= BASE; | ||||||
|         s2 %= BASE; |         s2 %= BASE; | ||||||
|   | |||||||
							
								
								
									
										9
									
								
								aix/README
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								aix/README
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,9 @@ | |||||||
|  | To make a shared library: | ||||||
|  |  | ||||||
|  | 1. Compile a static library | ||||||
|  | 2. Use mkexps on that to create libz.exp | ||||||
|  | 3. Apply the configure.diff patch to configure | ||||||
|  | 4. Run the new configure to make a new Makefile | ||||||
|  | 5. Use the new Makefile to make the shared library | ||||||
|  |  | ||||||
|  | Courtesy of dbakker@arrayasolutions.com | ||||||
							
								
								
									
										57
									
								
								aix/configure.diff
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										57
									
								
								aix/configure.diff
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,57 @@ | |||||||
|  | *** ../orig/zlib-1.1.4/configure	Wed Jul  8 14:19:35 1998 | ||||||
|  | --- configure	Sun Feb  9 11:11:19 2003 | ||||||
|  | *************** | ||||||
|  | *** 18,23 **** | ||||||
|  | --- 18,24 ---- | ||||||
|  |   # If you have problems, try without defining CC and CFLAGS before reporting | ||||||
|  |   # an error. | ||||||
|  |    | ||||||
|  | + LDFLAGS="-L. -lz" | ||||||
|  |   LIBS=libz.a | ||||||
|  |   SHAREDLIB=libz.so | ||||||
|  |   VER=`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h` | ||||||
|  | *************** | ||||||
|  | *** 116,121 **** | ||||||
|  | --- 117,128 ---- | ||||||
|  |   	     SFLAGS=${CFLAGS-"-Kconform_pic -O"} | ||||||
|  |   	     CFLAGS=${CFLAGS-"-O"} | ||||||
|  |   	     LDSHARED=${LDSHARED-"cc -G"};; | ||||||
|  | +   AIX*)      | ||||||
|  | + 	     SFLAGS=${CFLAGS-"-O -qmaxmem=8192"} | ||||||
|  | + 	     CFLAGS=${CFLAGS-"-O -qmaxmem=8192"} | ||||||
|  | + 	     LDTESTSHARED=${LDSHARED-"cc -G"} | ||||||
|  | + 	     LDSHAREDFLAGS="-L. libz.so" | ||||||
|  | + 	     LDSHARED=${LDSHARED-"cc -G"};; | ||||||
|  |     # send working options for other systems to support@gzip.org | ||||||
|  |     *)         SFLAGS=${CFLAGS-"-O"} | ||||||
|  |   	     CFLAGS=${CFLAGS-"-O"} | ||||||
|  | *************** | ||||||
|  | *** 127,135 **** | ||||||
|  |     echo Checking for shared library support... | ||||||
|  |     # we must test in two steps (cc then ld), required at least on SunOS 4.x | ||||||
|  |     if test "`($CC -c $SFLAGS $test.c) 2>&1`" = "" && | ||||||
|  | !      test "`($LDSHARED -o $test$shared_ext $test.o) 2>&1`" = ""; then | ||||||
|  |       CFLAGS="$SFLAGS" | ||||||
|  |       LIBS="$SHAREDLIB.$VER" | ||||||
|  |       echo Building shared library $SHAREDLIB.$VER with $CC. | ||||||
|  |     elif test -z "$old_cc" -a -z "$old_cflags"; then | ||||||
|  |       echo No shared library suppport. | ||||||
|  | --- 134,143 ---- | ||||||
|  |     echo Checking for shared library support... | ||||||
|  |     # we must test in two steps (cc then ld), required at least on SunOS 4.x | ||||||
|  |     if test "`($CC -c $SFLAGS $test.c) 2>&1`" = "" && | ||||||
|  | !      test "`($LDTESTSHARED -o $test$shared_ext $test.o) 2>&1`" = ""; then | ||||||
|  |       CFLAGS="$SFLAGS" | ||||||
|  |       LIBS="$SHAREDLIB.$VER" | ||||||
|  | + 	LDFLAGS="$LDSHAREDFLAGS" | ||||||
|  |       echo Building shared library $SHAREDLIB.$VER with $CC. | ||||||
|  |     elif test -z "$old_cc" -a -z "$old_cflags"; then | ||||||
|  |       echo No shared library suppport. | ||||||
|  | *************** | ||||||
|  | *** 209,212 **** | ||||||
|  | --- 217,221 ---- | ||||||
|  |   /^exec_prefix *=/s%=.*%=$exec_prefix% | ||||||
|  |   /^libdir *=/s%=.*%=$libdir% | ||||||
|  |   /^includedir *=/s%=.*%=$includedir% | ||||||
|  | + /^LDFLAGS *=/s%=.*%=$LDFLAGS% | ||||||
|  |   " > Makefile | ||||||
							
								
								
									
										37
									
								
								aix/mkexps
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								aix/mkexps
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,37 @@ | |||||||
|  | #!/bin/ksh | ||||||
|  | # | ||||||
|  | # mkexps - make export list | ||||||
|  | # This program creates an export list by combining all the "." and normal names | ||||||
|  | # into one list. | ||||||
|  | # | ||||||
|  | if [[ "$#" -ne 1 ]] | ||||||
|  | then | ||||||
|  |     print "Usage: mkexps ArchiveFile" | ||||||
|  |     exit -2 | ||||||
|  | fi | ||||||
|  | if [[ ! -f $1 ]] | ||||||
|  | then | ||||||
|  |     print "mkexps: Cannot open file \"$1\"" | ||||||
|  |     exit -1 | ||||||
|  | fi | ||||||
|  |  | ||||||
|  | dump -g $1 | awk ' | ||||||
|  | BEGIN { | ||||||
|  |         top = 1 | ||||||
|  | } | ||||||
|  | /^[ ]*[0-9][0-9]*/ { | ||||||
|  |     if ( (n = index( $2, "." )) > 0 ) { | ||||||
|  |         export_array[ top++ ] = substr( $2, n+1, length( $2 )) | ||||||
|  |     } | ||||||
|  |     else { | ||||||
|  | 	export_array[ top++ ] = $2 | ||||||
|  |     } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | END { | ||||||
|  |     for ( i = 1; i < top; i++ ) | ||||||
|  |     { | ||||||
|  | 	print export_array[ i ] | ||||||
|  |     } | ||||||
|  |  | ||||||
|  | }' | sort | uniq | ||||||
| @@ -59,10 +59,10 @@ but saves time since there are both fewer insertions and fewer searches. | |||||||
|  |  | ||||||
| 2.1 Introduction | 2.1 Introduction | ||||||
|  |  | ||||||
| The real question is, given a Huffman tree, how to decode fast.  The most | The key question is how to represent a Huffman code (or any prefix code) so | ||||||
| important realization is that shorter codes are much more common than | that you can decode fast.  The most important characteristic is that shorter | ||||||
| longer codes, so pay attention to decoding the short codes fast, and let | codes are much more common than longer codes, so pay attention to decoding the | ||||||
| the long codes take longer to decode. | short codes fast, and let the long codes take longer to decode. | ||||||
|  |  | ||||||
| inflate() sets up a first level table that covers some number of bits of | inflate() sets up a first level table that covers some number of bits of | ||||||
| input less than the length of longest code.  It gets that many bits from the | input less than the length of longest code.  It gets that many bits from the | ||||||
| @@ -77,20 +77,16 @@ table took no time (and if you had infinite memory), then there would only | |||||||
| be a first level table to cover all the way to the longest code.  However, | be a first level table to cover all the way to the longest code.  However, | ||||||
| building the table ends up taking a lot longer for more bits since short | building the table ends up taking a lot longer for more bits since short | ||||||
| codes are replicated many times in such a table.  What inflate() does is | codes are replicated many times in such a table.  What inflate() does is | ||||||
| simply to make the number of bits in the first table a variable, and set it | simply to make the number of bits in the first table a variable, and  then | ||||||
| for the maximum speed. | to set that variable for the maximum speed. | ||||||
|  |  | ||||||
| inflate() sends new trees relatively often, so it is possibly set for a | For inflate, which has 286 possible codes for the literal/length tree, the size | ||||||
| smaller first level table than an application that has only one tree for | of the first table is nine bits.  Also the distance trees have 30 possible | ||||||
| all the data.  For inflate, which has 286 possible codes for the | values, and the size of the first table is six bits.  Note that for each of | ||||||
| literal/length tree, the size of the first table is nine bits.  Also the | those cases, the table ended up one bit longer than the ``average'' code | ||||||
| distance trees have 30 possible values, and the size of the first table is | length, i.e. the code length of an approximately flat code which would be a | ||||||
| six bits.  Note that for each of those cases, the table ended up one bit | little more than eight bits for 286 symbols and a little less than five bits | ||||||
| longer than the ``average'' code length, i.e. the code length of an | for 30 symbols. | ||||||
| approximately flat code which would be a little more than eight bits for |  | ||||||
| 286 symbols and a little less than five bits for 30 symbols.  It would be |  | ||||||
| interesting to see if optimizing the first level table for other |  | ||||||
| applications gave values within a bit or two of the flat code size. |  | ||||||
|  |  | ||||||
|  |  | ||||||
| 2.2 More details on the inflate table lookup | 2.2 More details on the inflate table lookup | ||||||
| @@ -158,7 +154,7 @@ Let's make the first table three bits long (eight entries): | |||||||
| 110: -> table X (gobble 3 bits) | 110: -> table X (gobble 3 bits) | ||||||
| 111: -> table Y (gobble 3 bits) | 111: -> table Y (gobble 3 bits) | ||||||
|  |  | ||||||
| Each entry is what the bits decode to and how many bits that is, i.e. how   | Each entry is what the bits decode as and how many bits that is, i.e. how   | ||||||
| many bits to gobble.  Or the entry points to another table, with the number of | many bits to gobble.  Or the entry points to another table, with the number of | ||||||
| bits to gobble implicit in the size of the table. | bits to gobble implicit in the size of the table. | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										12
									
								
								compress.c
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								compress.c
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| /* compress.c -- compress a memory buffer | /* compress.c -- compress a memory buffer | ||||||
|  * Copyright (C) 1995-1998 Jean-loup Gailly. |  * Copyright (C) 1995-2002 Jean-loup Gailly. | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h  |  * For conditions of distribution and use, see copyright notice in zlib.h  | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| @@ -66,3 +66,13 @@ int ZEXPORT compress (dest, destLen, source, sourceLen) | |||||||
| { | { | ||||||
|     return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); |     return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); | ||||||
| } | } | ||||||
|  |  | ||||||
|  | /* =========================================================================== | ||||||
|  |      If the default memLevel or windowBits for deflateInit() is changed, then | ||||||
|  |    this function needs to be updated. | ||||||
|  |  */ | ||||||
|  | uLong ZEXPORT compressBound (sourceLen) | ||||||
|  |     uLong sourceLen; | ||||||
|  | { | ||||||
|  |     return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + 11; | ||||||
|  | } | ||||||
|   | |||||||
							
								
								
									
										311
									
								
								configure
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										311
									
								
								configure
									
									
									
									
										vendored
									
									
								
							| @@ -24,17 +24,34 @@ VER=`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h` | |||||||
| AR=${AR-"ar rc"} | AR=${AR-"ar rc"} | ||||||
| RANLIB=${RANLIB-"ranlib"} | RANLIB=${RANLIB-"ranlib"} | ||||||
| prefix=${prefix-/usr/local} | prefix=${prefix-/usr/local} | ||||||
| exec_prefix=${exec_prefix-$prefix} | exec_prefix=${exec_prefix-'${prefix}'} | ||||||
|  | libdir=${libdir-'${exec_prefix}/lib'} | ||||||
|  | includedir=${includedir-'${prefix}/include'} | ||||||
| shared_ext='.so' | shared_ext='.so' | ||||||
| shared=0 | shared=0 | ||||||
| gcc=0 | gcc=0 | ||||||
| old_cc="$CC" | old_cc="$CC" | ||||||
| old_cflags="$CFLAGS" | old_cflags="$CFLAGS" | ||||||
|  |  | ||||||
|  | while test $# -ge 1 | ||||||
|  | do | ||||||
| case "$1" in | case "$1" in | ||||||
|   -s* | --s*) shared=1; shift;; |     -h* | --h*) | ||||||
|   -h* | --h*) echo 'syntax: configure [ --shared ]'; exit 0;; |       echo 'usage:' | ||||||
| esac |       echo '  configure [--shared] [--prefix=PREFIX]  [--exec_prefix=EXPREFIX]' | ||||||
|  |       echo '     [--libdir=LIBDIR] [--includedir=INCLUDEDIR]' | ||||||
|  |         exit 0;; | ||||||
|  |     -p*=* | --p*=*) prefix=`echo $1 | sed 's/[-a-z_]*=//'`; shift;; | ||||||
|  |     -e*=* | --e*=*) exec_prefix=`echo $1 | sed 's/[-a-z_]*=//'`; shift;; | ||||||
|  |     -l*=* | --libdir=*) libdir=`echo $1 | sed 's/[-a-z_]*=//'`; shift;; | ||||||
|  |     -i*=* | --includedir=*) includedir=`echo $1 | sed 's/[-a-z_]*=//'`;shift;; | ||||||
|  |     -p* | --p*) prefix="$2"; shift; shift;; | ||||||
|  |     -e* | --e*) exec_prefix="$2"; shift; shift;; | ||||||
|  |     -l* | --l*) libdir="$2"; shift; shift;; | ||||||
|  |     -i* | --i*) includedir="$2"; shift; shift;; | ||||||
|  |     -s* | --s*) shared=1; shift;; | ||||||
|  |     esac | ||||||
|  | done | ||||||
|  |  | ||||||
| test=ztest$$ | test=ztest$$ | ||||||
| cat > $test.c <<EOF | cat > $test.c <<EOF | ||||||
| @@ -45,6 +62,7 @@ EOF | |||||||
| test -z "$CC" && echo Checking for gcc... | test -z "$CC" && echo Checking for gcc... | ||||||
| cc=${CC-gcc} | cc=${CC-gcc} | ||||||
| cflags=${CFLAGS-"-O3"} | cflags=${CFLAGS-"-O3"} | ||||||
|  | # to force the asm version use: CFLAGS="-O3 -DASMV" ./configure | ||||||
| case "$cc" in | case "$cc" in | ||||||
|   *gcc*) gcc=1;; |   *gcc*) gcc=1;; | ||||||
| esac | esac | ||||||
| @@ -54,22 +72,31 @@ if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) 2>/dev/null; then | |||||||
|   SFLAGS=${CFLAGS-"-fPIC -O3"} |   SFLAGS=${CFLAGS-"-fPIC -O3"} | ||||||
|   CFLAGS="$cflags" |   CFLAGS="$cflags" | ||||||
|   case `(uname -s || echo unknown) 2>/dev/null` in |   case `(uname -s || echo unknown) 2>/dev/null` in | ||||||
|   Linux | linux) LDSHARED=${LDSHARED-"gcc -shared -Wl,-soname,libz.so.1"};; |   Linux | linux) LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1"};; | ||||||
|   *)             LDSHARED=${LDSHARED-"gcc -shared"};; |   HP-UX*)        LDSHARED=${LDSHARED-"$cc -shared $SFLAGS"} | ||||||
|  |                  shared_ext='.sl' | ||||||
|  |                  SHAREDLIB='libz.sl';; | ||||||
|  |   *)             LDSHARED=${LDSHARED-"$cc -shared"};; | ||||||
|   esac |   esac | ||||||
| else | else | ||||||
|   # find system name and corresponding cc options |   # find system name and corresponding cc options | ||||||
|   CC=${CC-cc} |   CC=${CC-cc} | ||||||
|   case `(uname -sr || echo unknown) 2>/dev/null` in |   case `(uname -sr || echo unknown) 2>/dev/null` in | ||||||
|   SunOS\ 5*) SFLAGS=${CFLAGS-"-fast -xcg89 -KPIC -R."} |   HP-UX*)    SFLAGS=${CFLAGS-"-O +z"} | ||||||
|              CFLAGS=${CFLAGS-"-fast -xcg89"} | 	     CFLAGS=${CFLAGS-"-O"} | ||||||
| 	     LDSHARED=${LDSHARED-"cc -G"};; | #	     LDSHARED=${LDSHARED-"ld -b +vnocompatwarnings"} | ||||||
|   SunOS\ 4*) SFLAGS=${CFLAGS-"-O2 -PIC"} | 	     LDSHARED=${LDSHARED-"ld -b"} | ||||||
| 	     CFLAGS=${CFLAGS-"-O2"} | 	     shared_ext='.sl' | ||||||
| 	     LDSHARED=${LDSHARED-"ld"};; | 	     SHAREDLIB='libz.sl';; | ||||||
|   IRIX*)     SFLAGS=${CFLAGS-"-ansi -O2 -rpath ."} |   IRIX*)     SFLAGS=${CFLAGS-"-ansi -O2 -rpath ."} | ||||||
| 	     CFLAGS=${CFLAGS-"-ansi -O2"} | 	     CFLAGS=${CFLAGS-"-ansi -O2"} | ||||||
| 	     LDSHARED=${LDSHARED-"cc -shared"};; | 	     LDSHARED=${LDSHARED-"cc -shared"};; | ||||||
|  |   OSF1\ V4*) SFLAGS=${CFLAGS-"-O -std1"} | ||||||
|  | 	     CFLAGS=${CFLAGS-"-O -std1"} | ||||||
|  | 	     LDSHARED=${LDSHARED-"cc -shared  -Wl,-soname,$SHAREDLIB -Wl,-msym -Wl,-rpath,$(libdir) -Wl,-set_version,${VER}:1.0"};; | ||||||
|  |   OSF1*)     SFLAGS=${CFLAGS-"-O -std1"} | ||||||
|  | 	     CFLAGS=${CFLAGS-"-O -std1"} | ||||||
|  | 	     LDSHARED=${LDSHARED-"cc -shared"};; | ||||||
|   QNX*)      SFLAGS=${CFLAGS-"-4 -O"} |   QNX*)      SFLAGS=${CFLAGS-"-4 -O"} | ||||||
|              CFLAGS=${CFLAGS-"-4 -O"} |              CFLAGS=${CFLAGS-"-4 -O"} | ||||||
| 	     LDSHARED=${LDSHARED-"cc"} | 	     LDSHARED=${LDSHARED-"cc"} | ||||||
| @@ -78,16 +105,24 @@ else | |||||||
|   SCO_SV\ 3.2*) SFLAGS=${CFLAGS-"-O3 -dy -KPIC "} |   SCO_SV\ 3.2*) SFLAGS=${CFLAGS-"-O3 -dy -KPIC "} | ||||||
| 	     CFLAGS=${CFLAGS-"-O3"} | 	     CFLAGS=${CFLAGS-"-O3"} | ||||||
| 	     LDSHARED=${LDSHARED-"cc -dy -KPIC -G"};; | 	     LDSHARED=${LDSHARED-"cc -dy -KPIC -G"};; | ||||||
|   HP-UX*)    SFLAGS=${CFLAGS-"-O +z"} |   SunOS\ 5*) SFLAGS=${CFLAGS-"-fast -xcg89 -KPIC -R."} | ||||||
| 	     CFLAGS=${CFLAGS-"-O"} |              CFLAGS=${CFLAGS-"-fast -xcg89"} | ||||||
| #	     LDSHARED=${LDSHARED-"ld -b +vnocompatwarnings"} | 	     LDSHARED=${LDSHARED-"cc -G"};; | ||||||
| 	     LDSHARED=${LDSHARED-"ld -b"} |   SunOS\ 4*) SFLAGS=${CFLAGS-"-O2 -PIC"} | ||||||
| 	     shared_ext='.sl' | 	     CFLAGS=${CFLAGS-"-O2"} | ||||||
| 	     SHAREDLIB='libz.sl';; | 	     LDSHARED=${LDSHARED-"ld"};; | ||||||
|   UNIX_System_V\ 4.2.0)  |   UNIX_System_V\ 4.2.0)  | ||||||
| 	     SFLAGS=${CFLAGS-"-KPIC -O"} | 	     SFLAGS=${CFLAGS-"-KPIC -O"} | ||||||
| 	     CFLAGS=${CFLAGS-"-O"} | 	     CFLAGS=${CFLAGS-"-O"} | ||||||
| 	     LDSHARED=${LDSHARED-"cc -G"};; | 	     LDSHARED=${LDSHARED-"cc -G"};; | ||||||
|  |   UNIX_SV\ 4.2MP) | ||||||
|  | 	     SFLAGS=${CFLAGS-"-Kconform_pic -O"} | ||||||
|  | 	     CFLAGS=${CFLAGS-"-O"} | ||||||
|  | 	     LDSHARED=${LDSHARED-"cc -G"};; | ||||||
|  |   OpenUNIX\ 5)  | ||||||
|  | 	     SFLAGS=${CFLAGS-"-KPIC -O"} | ||||||
|  | 	     CFLAGS=${CFLAGS-"-O"} | ||||||
|  | 	     LDSHARED=${LDSHARED-"cc -G"};; | ||||||
|   # send working options for other systems to support@gzip.org |   # send working options for other systems to support@gzip.org | ||||||
|   *)         SFLAGS=${CFLAGS-"-O"} |   *)         SFLAGS=${CFLAGS-"-O"} | ||||||
| 	     CFLAGS=${CFLAGS-"-O"} | 	     CFLAGS=${CFLAGS-"-O"} | ||||||
| @@ -116,11 +151,231 @@ if test $shared -eq 0; then | |||||||
|   echo Building static library $LIBS version $VER with $CC. |   echo Building static library $LIBS version $VER with $CC. | ||||||
| fi | fi | ||||||
|  |  | ||||||
| if test -f /usr/include/unistd.h; then | cat > $test.c <<EOF | ||||||
|   CFLAGS="$CFLAGS -DHAVE_UNISTD_H" | #include <unistd.h> | ||||||
|  | int main() { return 0; } | ||||||
|  | EOF | ||||||
|  | if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||||
|  |   sed < zconf.in.h "/HAVE_UNISTD_H/s%0%1%" > zconf.h | ||||||
|  |   echo "Checking for unistd.h... Yes." | ||||||
|  | else | ||||||
|  |   cp -p zconf.in.h zconf.h | ||||||
|  |   echo "Checking for unistd.h... No." | ||||||
| fi | fi | ||||||
|  |  | ||||||
| if test ! -f /usr/include/errno.h; then | cat > $test.c <<EOF | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdlib.h> | ||||||
|  |  | ||||||
|  | #if (defined(__MSDOS__) || defined(_WINDOWS) || defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(__STDC__) || defined(__cplusplus) || defined(__OS2__)) && !defined(STDC) | ||||||
|  | #  define STDC | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | int main()  | ||||||
|  | { | ||||||
|  | #ifndef STDC | ||||||
|  |   choke me | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |   return 0; | ||||||
|  | } | ||||||
|  | EOF | ||||||
|  |  | ||||||
|  | if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||||
|  |   echo "Checking whether to use vsnprintf() or snprintf()... using vsnprintf()" | ||||||
|  |  | ||||||
|  |   cat > $test.c <<EOF | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdarg.h> | ||||||
|  |  | ||||||
|  | int mytest(char *fmt, ...) | ||||||
|  | { | ||||||
|  |   char buf[20]; | ||||||
|  |   va_list ap; | ||||||
|  |  | ||||||
|  |   va_start(ap, fmt); | ||||||
|  |   vsnprintf(buf, sizeof(buf), fmt, ap); | ||||||
|  |   va_end(ap); | ||||||
|  |   return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int main() | ||||||
|  | { | ||||||
|  |   return (mytest("Hello%d\n", 1)); | ||||||
|  | } | ||||||
|  | EOF | ||||||
|  |    | ||||||
|  |   if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||||
|  |     echo "Checking for vsnprintf() in stdio.h... Yes." | ||||||
|  |  | ||||||
|  |     cat >$test.c <<EOF | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdarg.h> | ||||||
|  |  | ||||||
|  | int mytest(char *fmt, ...) | ||||||
|  | { | ||||||
|  |   int i; | ||||||
|  |   char buf[20]; | ||||||
|  |   va_list ap; | ||||||
|  |  | ||||||
|  |   va_start(ap, fmt); | ||||||
|  |   i = vsnprintf(buf, sizeof(buf), fmt, ap); | ||||||
|  |   va_end(ap); | ||||||
|  |   return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int main() | ||||||
|  | { | ||||||
|  |   return (mytest("Hello%d\n", 1)); | ||||||
|  | } | ||||||
|  | EOF | ||||||
|  |  | ||||||
|  |     if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||||
|  |       echo "Checking for return value of vsnprintf()... Yes." | ||||||
|  |     else | ||||||
|  |       CFLAGS="$CFLAGS -DHAS_vsnprintf_void" | ||||||
|  |       echo "Checking for return value of vsnprintf()... No." | ||||||
|  |       echo "  WARNING: apparently vsnprintf() does not return a value. zlib" | ||||||
|  |       echo "  can build but will be open to possible string-format security" | ||||||
|  |       echo "  vulnerabilities." | ||||||
|  |     fi | ||||||
|  |   else | ||||||
|  |     CFLAGS="$CFLAGS -DNO_vsnprintf" | ||||||
|  |     echo "Checking for vsnprintf() in stdio.h... No." | ||||||
|  |     echo "  WARNING: vsnprintf() not found, falling back to vsprintf(). zlib" | ||||||
|  |     echo "  can build but will be open to possible buffer-overflow security" | ||||||
|  |     echo "  vulnerabilities." | ||||||
|  |  | ||||||
|  |     cat >$test.c <<EOF | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdarg.h> | ||||||
|  |  | ||||||
|  | int mytest(char *fmt, ...) | ||||||
|  | { | ||||||
|  |   int i; | ||||||
|  |   char buf[20]; | ||||||
|  |   va_list ap; | ||||||
|  |  | ||||||
|  |   va_start(ap, fmt); | ||||||
|  |   i = vsprintf(buf, fmt, ap); | ||||||
|  |   va_end(ap); | ||||||
|  |   return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int main()  | ||||||
|  | { | ||||||
|  |   return (mytest("Hello%d\n", 1)); | ||||||
|  | } | ||||||
|  | EOF | ||||||
|  |  | ||||||
|  |     if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||||
|  |       echo "Checking for return value of vsprintf()... Yes." | ||||||
|  |     else | ||||||
|  |       CFLAGS="$CFLAGS -DHAS_vsprintf_void" | ||||||
|  |       echo "Checking for return value of vsprintf()... No." | ||||||
|  |       echo "  WARNING: apparently vsprintf() does not return a value. zlib" | ||||||
|  |       echo "  can build but will be open to possible string-format security" | ||||||
|  |       echo "  vulnerabilities." | ||||||
|  |     fi | ||||||
|  |   fi | ||||||
|  | else | ||||||
|  |   echo "Checking whether to use vsnprintf() or snprintf()... using snprintf()" | ||||||
|  |  | ||||||
|  |   cat >$test.c <<EOF | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdarg.h> | ||||||
|  |  | ||||||
|  | int mytest()  | ||||||
|  | { | ||||||
|  |   char buf[20]; | ||||||
|  |  | ||||||
|  |   snprintf(buf, sizeof(buf), "%s", "foo"); | ||||||
|  |   return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int main()  | ||||||
|  | { | ||||||
|  |   return (mytest()); | ||||||
|  | } | ||||||
|  | EOF | ||||||
|  |  | ||||||
|  |   if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||||
|  |     echo "Checking for snprintf() in stdio.h... Yes." | ||||||
|  |  | ||||||
|  |     cat >$test.c <<EOF | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdarg.h> | ||||||
|  |  | ||||||
|  | int mytest(char *fmt, ...) | ||||||
|  | { | ||||||
|  |   int i; | ||||||
|  |   char buf[20]; | ||||||
|  |  | ||||||
|  |   i = snprintf(buf, sizeof(buf), "%s", "foo"); | ||||||
|  |   return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int main()  | ||||||
|  | { | ||||||
|  |   return (mytest()); | ||||||
|  | } | ||||||
|  | EOF | ||||||
|  |  | ||||||
|  |     if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||||
|  |       echo "Checking for return value of snprintf()... Yes." | ||||||
|  |     else | ||||||
|  |       CFLAGS="$CFLAGS -DHAS_snprintf_void" | ||||||
|  |       echo "Checking for return value of snprintf()... No." | ||||||
|  |       echo "  WARNING: apparently snprintf() does not return a value. zlib" | ||||||
|  |       echo "  can build but will be open to possible string-format security" | ||||||
|  |       echo "  vulnerabilities." | ||||||
|  |     fi | ||||||
|  |   else | ||||||
|  |     CFLAGS="$CFLAGS -DNO_snprintf" | ||||||
|  |     echo "Checking for snprintf() in stdio.h... No." | ||||||
|  |     echo "  WARNING: snprintf() not found, falling back to sprintf(). zlib" | ||||||
|  |     echo "  can build but will be open to possible buffer-overflow security" | ||||||
|  |     echo "  vulnerabilities." | ||||||
|  |  | ||||||
|  |     cat >$test.c <<EOF | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdarg.h> | ||||||
|  |  | ||||||
|  | int mytest(char *fmt, ...)  | ||||||
|  | { | ||||||
|  |   int i; | ||||||
|  |   char buf[20]; | ||||||
|  |  | ||||||
|  |   i = sprintf(buf, "%s", "foo"); | ||||||
|  |   return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int main()  | ||||||
|  | { | ||||||
|  |   return (mytest()); | ||||||
|  | } | ||||||
|  | EOF | ||||||
|  |  | ||||||
|  |     if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||||
|  |       echo "Checking for return value of sprintf()... Yes." | ||||||
|  |     else | ||||||
|  |       CFLAGS="$CFLAGS -DHAS_sprintf_void" | ||||||
|  |       echo "Checking for return value of sprintf()... No." | ||||||
|  |       echo "  WARNING: apparently sprintf() does not return a value. zlib" | ||||||
|  |       echo "  can build but will be open to possible string-format security" | ||||||
|  |       echo "  vulnerabilities." | ||||||
|  |     fi | ||||||
|  |   fi | ||||||
|  | fi | ||||||
|  |  | ||||||
|  | cat >$test.c <<EOF | ||||||
|  | #include <errno.h> | ||||||
|  | int main() { return 0; } | ||||||
|  | EOF | ||||||
|  | if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||||
|  |   echo "Checking for errno.h...	 Yes." | ||||||
|  | else | ||||||
|  |   echo "Checking for errno.h...	 No." | ||||||
|   CFLAGS="$CFLAGS -DNO_ERRNO_H" |   CFLAGS="$CFLAGS -DNO_ERRNO_H" | ||||||
| fi | fi | ||||||
|  |  | ||||||
| @@ -139,12 +394,24 @@ else | |||||||
|   echo Checking for mmap support... No. |   echo Checking for mmap support... No. | ||||||
| fi | fi | ||||||
|  |  | ||||||
|  | CPP=${CPP-"$CC -E"} | ||||||
|  | case $CFLAGS in | ||||||
|  |   *ASMV*) | ||||||
|  |     if test "`nm $test.o | grep _hello`" = ""; then | ||||||
|  |       CPP="$CPP -DNO_UNDERLINE" | ||||||
|  |       echo Checking for underline in external names... No. | ||||||
|  |     else | ||||||
|  |       echo Checking for underline in external names... Yes. | ||||||
|  |     fi;; | ||||||
|  | esac | ||||||
|  |  | ||||||
| rm -f $test.[co] $test$shared_ext | rm -f $test.[co] $test$shared_ext | ||||||
|  |  | ||||||
| # udpate Makefile | # udpate Makefile | ||||||
| sed < Makefile.in " | sed < Makefile.in " | ||||||
| /^CC *=/s%=.*%=$CC% | /^CC *=/s%=.*%=$CC% | ||||||
| /^CFLAGS *=/s%=.*%=$CFLAGS% | /^CFLAGS *=/s%=.*%=$CFLAGS% | ||||||
|  | /^CPP *=/s%=.*%=$CPP% | ||||||
| /^LDSHARED *=/s%=.*%=$LDSHARED% | /^LDSHARED *=/s%=.*%=$LDSHARED% | ||||||
| /^LIBS *=/s%=.*%=$LIBS% | /^LIBS *=/s%=.*%=$LIBS% | ||||||
| /^SHAREDLIB *=/s%=.*%=$SHAREDLIB% | /^SHAREDLIB *=/s%=.*%=$SHAREDLIB% | ||||||
| @@ -153,4 +420,6 @@ sed < Makefile.in " | |||||||
| /^VER *=/s%=.*%=$VER% | /^VER *=/s%=.*%=$VER% | ||||||
| /^prefix *=/s%=.*%=$prefix% | /^prefix *=/s%=.*%=$prefix% | ||||||
| /^exec_prefix *=/s%=.*%=$exec_prefix% | /^exec_prefix *=/s%=.*%=$exec_prefix% | ||||||
|  | /^libdir *=/s%=.*%=$libdir% | ||||||
|  | /^includedir *=/s%=.*%=$includedir% | ||||||
| " > Makefile | " > Makefile | ||||||
|   | |||||||
| @@ -7,14 +7,41 @@ for help about these, not the zlib authors. Thanks. | |||||||
| asm386/     by Gilles Vollant <info@winimage.com> | asm386/     by Gilles Vollant <info@winimage.com> | ||||||
| 	386 asm code replacing longest_match(), for Visual C++ 4.2 and ML 6.11c | 	386 asm code replacing longest_match(), for Visual C++ 4.2 and ML 6.11c | ||||||
|  |  | ||||||
|  | asm586/ and asm686/    by Brian Raiter <breadbox@muppetlabs.com>  | ||||||
|  |         asm code for Pentium and Pentium Pro | ||||||
|  |         See http://www.muppetlabs.com/~breadbox/software/assembly.html | ||||||
|  |  | ||||||
|  | blast/      by Mark Adler <madler@alumni.caltech.edu> | ||||||
|  | 	Decompressor for output of PKWare Data Compression Library (DCL) | ||||||
|  |  | ||||||
|  | delphi/     by Bob Dellaca <bobdl@xtra.co.nz> | ||||||
|  | 	Support for Delphi | ||||||
|  |  | ||||||
|  | delphi2/    by Davide Moretti <dave@rimini.com> | ||||||
|  |         Another support for C++Builder and Delphi | ||||||
|  |  | ||||||
|  | inflate86/  by Chris Anderson <christop@charm.net> | ||||||
|  | 	Tuned x86 gcc asm code to replace inflate_fast() | ||||||
|  |  | ||||||
|  | minizip/    by Gilles Vollant <info@winimage.com> | ||||||
|  | 	Mini zip and unzip based on zlib | ||||||
|  |         See http://www.winimage.com/zLibDll/unzip.html | ||||||
|  |  | ||||||
| iostream/   by Kevin Ruland <kevin@rodin.wustl.edu> | iostream/   by Kevin Ruland <kevin@rodin.wustl.edu> | ||||||
|         A C++ I/O streams interface to the zlib gz* functions |         A C++ I/O streams interface to the zlib gz* functions | ||||||
|  |  | ||||||
| iostream2/  by Tyge L<>vset <Tyge.Lovset@cmr.no> | iostream2/  by Tyge L<>vset <Tyge.Lovset@cmr.no> | ||||||
| 	Another C++ I/O streams interface | 	Another C++ I/O streams interface | ||||||
|  |  | ||||||
|  | testzlib/    by Gilles Vollant <info@winimage.com> | ||||||
|  | 	Example of the use of zlib | ||||||
|  |  | ||||||
| untgz/      by "Pedro A. Aranda Guti\irrez" <paag@tid.es> | untgz/      by "Pedro A. Aranda Guti\irrez" <paag@tid.es> | ||||||
| 	A very simple tar.gz file extractor using zlib | 	A very simple tar.gz file extractor using zlib | ||||||
|  |  | ||||||
| visual-basic.txt by Carlos Rios <c_rios@sonda.cl> | visual-basic.txt by Carlos Rios <c_rios@sonda.cl> | ||||||
|         How to use compress(), uncompress() and the gz* functions from VB. |         How to use compress(), uncompress() and the gz* functions from VB. | ||||||
|  |  | ||||||
|  | vstudio/    by Gilles Vollant <info@winimage.com> | ||||||
|  | 	Building zlib DLL with Visual Studio .NET | ||||||
|  | 	Includes x86 inffast.asm for MASM | ||||||
|   | |||||||
							
								
								
									
										74
									
								
								contrib/asm386/zlibvc.def
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										74
									
								
								contrib/asm386/zlibvc.def
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,74 @@ | |||||||
|  | LIBRARY		"zlib" | ||||||
|  |  | ||||||
|  | DESCRIPTION	'"""zlib data compression library"""' | ||||||
|  |  | ||||||
|  |  | ||||||
|  | VERSION		1.11 | ||||||
|  |  | ||||||
|  |  | ||||||
|  | HEAPSIZE	1048576,8192 | ||||||
|  |  | ||||||
|  | EXPORTS | ||||||
|  |     adler32                        @1 | ||||||
|  |     compress                       @2 | ||||||
|  |     crc32                          @3 | ||||||
|  |     deflate                        @4 | ||||||
|  |     deflateCopy                    @5 | ||||||
|  |     deflateEnd                     @6 | ||||||
|  |     deflateInit2_                  @7 | ||||||
|  |     deflateInit_                   @8 | ||||||
|  |     deflateParams                  @9 | ||||||
|  |     deflateReset                   @10 | ||||||
|  |     deflateSetDictionary           @11 | ||||||
|  |     gzclose                        @12 | ||||||
|  |     gzdopen                        @13 | ||||||
|  |     gzerror                        @14 | ||||||
|  |     gzflush                        @15 | ||||||
|  |     gzopen                         @16 | ||||||
|  |     gzread                         @17 | ||||||
|  |     gzwrite                        @18 | ||||||
|  |     inflate                        @19 | ||||||
|  |     inflateEnd                     @20 | ||||||
|  |     inflateInit2_                  @21 | ||||||
|  |     inflateInit_                   @22 | ||||||
|  |     inflateReset                   @23 | ||||||
|  |     inflateSetDictionary           @24 | ||||||
|  |     inflateSync                    @25 | ||||||
|  |     uncompress                     @26 | ||||||
|  |     zlibVersion                    @27 | ||||||
|  |     gzprintf                       @28 | ||||||
|  |     gzputc                         @29 | ||||||
|  |     gzgetc                         @30 | ||||||
|  |     gzseek                         @31 | ||||||
|  |     gzrewind                       @32 | ||||||
|  |     gztell                         @33 | ||||||
|  |     gzeof                          @34 | ||||||
|  |     gzsetparams                    @35 | ||||||
|  |     zError                         @36 | ||||||
|  |     inflateSyncPoint               @37 | ||||||
|  |     get_crc_table                  @38 | ||||||
|  |     compress2                      @39 | ||||||
|  |     gzputs                         @40 | ||||||
|  |     gzgets                         @41 | ||||||
|  |  | ||||||
|  | 	unzOpen                       @61 | ||||||
|  | 	unzClose                      @62 | ||||||
|  | 	unzGetGlobalInfo              @63 | ||||||
|  | 	unzGetCurrentFileInfo         @64 | ||||||
|  | 	unzGoToFirstFile              @65 | ||||||
|  | 	unzGoToNextFile               @66 | ||||||
|  | 	unzOpenCurrentFile            @67 | ||||||
|  | 	unzReadCurrentFile            @68 | ||||||
|  | 	unztell                       @70 | ||||||
|  | 	unzeof                        @71 | ||||||
|  | 	unzCloseCurrentFile           @72 | ||||||
|  | 	unzGetGlobalComment           @73 | ||||||
|  | 	unzStringFileNameCompare      @74 | ||||||
|  | 	unzLocateFile                 @75 | ||||||
|  | 	unzGetLocalExtrafield         @76 | ||||||
|  |  | ||||||
|  | 	zipOpen                       @80 | ||||||
|  | 	zipOpenNewFileInZip           @81 | ||||||
|  | 	zipWriteInFileInZip           @82 | ||||||
|  | 	zipCloseFileInZip             @83 | ||||||
|  | 	zipClose                      @84 | ||||||
| @@ -47,7 +47,8 @@ CFG=zlibvc - Win32 Release | |||||||
| # PROP Target_Dir "" | # PROP Target_Dir "" | ||||||
| CPP=cl.exe | CPP=cl.exe | ||||||
| # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c | # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c | ||||||
| # ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /D "ASMV" /FAcs /FR /YX /FD /c | # ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /D "ASMV" /FAcs /FR /FD /c | ||||||
|  | # SUBTRACT CPP /YX | ||||||
| MTL=midl.exe | MTL=midl.exe | ||||||
| # ADD BASE MTL /nologo /D "NDEBUG" /win32 | # ADD BASE MTL /nologo /D "NDEBUG" /win32 | ||||||
| # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | ||||||
| @@ -76,7 +77,8 @@ LINK32=link.exe | |||||||
| # PROP Target_Dir "" | # PROP Target_Dir "" | ||||||
| CPP=cl.exe | CPP=cl.exe | ||||||
| # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c | # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c | ||||||
| # ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /YX /FD /c | # ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /FD /c | ||||||
|  | # SUBTRACT CPP /YX | ||||||
| MTL=midl.exe | MTL=midl.exe | ||||||
| # ADD BASE MTL /nologo /D "_DEBUG" /win32 | # ADD BASE MTL /nologo /D "_DEBUG" /win32 | ||||||
| # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 | # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 | ||||||
| @@ -109,7 +111,8 @@ MTL=midl.exe | |||||||
| # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | ||||||
| CPP=cl.exe | CPP=cl.exe | ||||||
| # ADD BASE CPP /nologo /MT /Gt0 /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /FAcs /FR /YX /FD /c | # ADD BASE CPP /nologo /MT /Gt0 /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /FAcs /FR /YX /FD /c | ||||||
| # ADD CPP /nologo /MT /Gt0 /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /FAcs /FR /YX /FD /c | # ADD CPP /nologo /MT /Gt0 /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /FAcs /FR /FD /c | ||||||
|  | # SUBTRACT CPP /YX | ||||||
| RSC=rc.exe | RSC=rc.exe | ||||||
| # ADD BASE RSC /l 0x40c /d "NDEBUG" | # ADD BASE RSC /l 0x40c /d "NDEBUG" | ||||||
| # ADD RSC /l 0x40c /d "NDEBUG" | # ADD RSC /l 0x40c /d "NDEBUG" | ||||||
| @@ -138,7 +141,8 @@ LINK32=link.exe | |||||||
| # PROP Target_Dir "" | # PROP Target_Dir "" | ||||||
| CPP=cl.exe | CPP=cl.exe | ||||||
| # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /FAcs /FR /YX /FD /c | # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /FAcs /FR /YX /FD /c | ||||||
| # ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /FAcs /FR /YX /FD /c | # ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /FAcs /FR /FD /c | ||||||
|  | # SUBTRACT CPP /YX | ||||||
| MTL=midl.exe | MTL=midl.exe | ||||||
| # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | ||||||
| # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | ||||||
| @@ -170,7 +174,8 @@ LINK32=link.exe | |||||||
| # PROP Target_Dir "" | # PROP Target_Dir "" | ||||||
| CPP=cl.exe | CPP=cl.exe | ||||||
| # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /D "ASMV" /FAcs /FR /YX /FD /c | # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /D "ASMV" /FAcs /FR /YX /FD /c | ||||||
| # ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /D "ASMV" /FAcs /FR /YX /FD /c | # ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "DYNAMIC_CRC_TABLE" /D "ASMV" /FAcs /FR /FD /c | ||||||
|  | # SUBTRACT CPP /YX | ||||||
| MTL=midl.exe | MTL=midl.exe | ||||||
| # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | ||||||
| # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | ||||||
| @@ -525,6 +530,40 @@ DEP_CPP_UNCOM=\ | |||||||
| 	".\zlib.h"\ | 	".\zlib.h"\ | ||||||
| 	 | 	 | ||||||
|  |  | ||||||
|  | !ELSEIF  "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm" | ||||||
|  |  | ||||||
|  | !ELSEIF  "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll" | ||||||
|  |  | ||||||
|  | !ENDIF  | ||||||
|  |  | ||||||
|  | # End Source File | ||||||
|  | # Begin Source File | ||||||
|  |  | ||||||
|  | SOURCE=.\unzip.c | ||||||
|  |  | ||||||
|  | !IF  "$(CFG)" == "zlibvc - Win32 Release" | ||||||
|  |  | ||||||
|  | !ELSEIF  "$(CFG)" == "zlibvc - Win32 Debug" | ||||||
|  |  | ||||||
|  | !ELSEIF  "$(CFG)" == "zlibvc - Win32 ReleaseAxp" | ||||||
|  |  | ||||||
|  | !ELSEIF  "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm" | ||||||
|  |  | ||||||
|  | !ELSEIF  "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll" | ||||||
|  |  | ||||||
|  | !ENDIF  | ||||||
|  |  | ||||||
|  | # End Source File | ||||||
|  | # Begin Source File | ||||||
|  |  | ||||||
|  | SOURCE=.\zip.c | ||||||
|  |  | ||||||
|  | !IF  "$(CFG)" == "zlibvc - Win32 Release" | ||||||
|  |  | ||||||
|  | !ELSEIF  "$(CFG)" == "zlibvc - Win32 Debug" | ||||||
|  |  | ||||||
|  | !ELSEIF  "$(CFG)" == "zlibvc - Win32 ReleaseAxp" | ||||||
|  |  | ||||||
| !ELSEIF  "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm" | !ELSEIF  "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm" | ||||||
|  |  | ||||||
| !ELSEIF  "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll" | !ELSEIF  "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll" | ||||||
|   | |||||||
| @@ -3,7 +3,19 @@ Microsoft Developer Studio Workspace File, Format Version 5.00 | |||||||
|  |  | ||||||
| ############################################################################### | ############################################################################### | ||||||
|  |  | ||||||
| Project: "zlibvc"=".\zlibvc.dsp" - Package Owner=<4> | Project: "zlibstat"=.\zlibstat.dsp - Package Owner=<4> | ||||||
|  |  | ||||||
|  | Package=<5> | ||||||
|  | {{{ | ||||||
|  | }}} | ||||||
|  |  | ||||||
|  | Package=<4> | ||||||
|  | {{{ | ||||||
|  | }}} | ||||||
|  |  | ||||||
|  | ############################################################################### | ||||||
|  |  | ||||||
|  | Project: "zlibvc"=.\zlibvc.dsp - Package Owner=<4> | ||||||
|  |  | ||||||
| Package=<5> | Package=<5> | ||||||
| {{{ | {{{ | ||||||
|   | |||||||
							
								
								
									
										43
									
								
								contrib/asm586/README.586
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								contrib/asm586/README.586
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,43 @@ | |||||||
|  | This is a patched version of zlib modified to use | ||||||
|  | Pentium-optimized assembly code in the deflation algorithm. The files | ||||||
|  | changed/added by this patch are: | ||||||
|  |  | ||||||
|  | README.586 | ||||||
|  | match.S | ||||||
|  |  | ||||||
|  | The effectiveness of these modifications is a bit marginal, as the the | ||||||
|  | program's bottleneck seems to be mostly L1-cache contention, for which | ||||||
|  | there is no real way to work around without rewriting the basic | ||||||
|  | algorithm. The speedup on average is around 5-10% (which is generally | ||||||
|  | less than the amount of variance between subsequent executions). | ||||||
|  | However, when used at level 9 compression, the cache contention can | ||||||
|  | drop enough for the assembly version to achieve 10-20% speedup (and | ||||||
|  | sometimes more, depending on the amount of overall redundancy in the | ||||||
|  | files). Even here, though, cache contention can still be the limiting | ||||||
|  | factor, depending on the nature of the program using the zlib library. | ||||||
|  | This may also mean that better improvements will be seen on a Pentium | ||||||
|  | with MMX, which suffers much less from L1-cache contention, but I have | ||||||
|  | not yet verified this. | ||||||
|  |  | ||||||
|  | Note that this code has been tailored for the Pentium in particular, | ||||||
|  | and will not perform well on the Pentium Pro (due to the use of a | ||||||
|  | partial register in the inner loop). | ||||||
|  |  | ||||||
|  | If you are using an assembler other than GNU as, you will have to | ||||||
|  | translate match.S to use your assembler's syntax. (Have fun.) | ||||||
|  |  | ||||||
|  | Brian Raiter | ||||||
|  | breadbox@muppetlabs.com | ||||||
|  | April, 1998 | ||||||
|  |  | ||||||
|  |  | ||||||
|  | Added for zlib 1.1.3: | ||||||
|  |  | ||||||
|  | The patches come from | ||||||
|  | http://www.muppetlabs.com/~breadbox/software/assembly.html | ||||||
|  |  | ||||||
|  | To compile zlib with this asm file, copy match.S to the zlib directory | ||||||
|  | then do: | ||||||
|  |  | ||||||
|  | CFLAGS="-O3 -DASMV" ./configure | ||||||
|  | make OBJA=match.o | ||||||
							
								
								
									
										354
									
								
								contrib/asm586/match.S
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										354
									
								
								contrib/asm586/match.S
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,354 @@ | |||||||
|  | /* match.s -- Pentium-optimized version of longest_match() | ||||||
|  |  * Written for zlib 1.1.2 | ||||||
|  |  * Copyright (C) 1998 Brian Raiter <breadbox@muppetlabs.com> | ||||||
|  |  * | ||||||
|  |  * This is free software; you can redistribute it and/or modify it | ||||||
|  |  * under the terms of the GNU General Public License. | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | #ifndef NO_UNDERLINE | ||||||
|  | #define	match_init	_match_init | ||||||
|  | #define	longest_match	_longest_match | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #define	MAX_MATCH	(258) | ||||||
|  | #define	MIN_MATCH	(3) | ||||||
|  | #define	MIN_LOOKAHEAD	(MAX_MATCH + MIN_MATCH + 1) | ||||||
|  | #define	MAX_MATCH_8	((MAX_MATCH + 7) & ~7) | ||||||
|  |  | ||||||
|  | /* stack frame offsets */ | ||||||
|  |  | ||||||
|  | #define	wmask			0	/* local copy of s->wmask	*/ | ||||||
|  | #define	window			4	/* local copy of s->window	*/ | ||||||
|  | #define	windowbestlen		8	/* s->window + bestlen		*/ | ||||||
|  | #define	chainlenscanend		12	/* high word: current chain len	*/ | ||||||
|  | 					/* low word: last bytes sought	*/ | ||||||
|  | #define	scanstart		16	/* first two bytes of string	*/ | ||||||
|  | #define	scanalign		20	/* dword-misalignment of string	*/ | ||||||
|  | #define	nicematch		24	/* a good enough match size	*/ | ||||||
|  | #define	bestlen			28	/* size of best match so far	*/ | ||||||
|  | #define	scan			32	/* ptr to string wanting match	*/ | ||||||
|  |  | ||||||
|  | #define	LocalVarsSize		(36) | ||||||
|  | /*	saved ebx		36 */ | ||||||
|  | /*	saved edi		40 */ | ||||||
|  | /*	saved esi		44 */ | ||||||
|  | /*	saved ebp		48 */ | ||||||
|  | /*	return address		52 */ | ||||||
|  | #define	deflatestate		56	/* the function arguments	*/ | ||||||
|  | #define	curmatch		60 | ||||||
|  |  | ||||||
|  | /* Offsets for fields in the deflate_state structure. These numbers | ||||||
|  |  * are calculated from the definition of deflate_state, with the | ||||||
|  |  * assumption that the compiler will dword-align the fields. (Thus, | ||||||
|  |  * changing the definition of deflate_state could easily cause this | ||||||
|  |  * program to crash horribly, without so much as a warning at | ||||||
|  |  * compile time. Sigh.) | ||||||
|  |  */ | ||||||
|  | #define	dsWSize			36 | ||||||
|  | #define	dsWMask			44 | ||||||
|  | #define	dsWindow		48 | ||||||
|  | #define	dsPrev			56 | ||||||
|  | #define	dsMatchLen		88 | ||||||
|  | #define	dsPrevMatch		92 | ||||||
|  | #define	dsStrStart		100 | ||||||
|  | #define	dsMatchStart		104 | ||||||
|  | #define	dsLookahead		108 | ||||||
|  | #define	dsPrevLen		112 | ||||||
|  | #define	dsMaxChainLen		116 | ||||||
|  | #define	dsGoodMatch		132 | ||||||
|  | #define	dsNiceMatch		136 | ||||||
|  |  | ||||||
|  |  | ||||||
|  | .file "match.S" | ||||||
|  |  | ||||||
|  | .globl	match_init, longest_match | ||||||
|  |  | ||||||
|  | .text | ||||||
|  |  | ||||||
|  | /* uInt longest_match(deflate_state *deflatestate, IPos curmatch) */ | ||||||
|  |  | ||||||
|  | longest_match: | ||||||
|  |  | ||||||
|  | /* Save registers that the compiler may be using, and adjust %esp to	*/ | ||||||
|  | /* make room for our stack frame.					*/ | ||||||
|  |  | ||||||
|  | 		pushl	%ebp | ||||||
|  | 		pushl	%edi | ||||||
|  | 		pushl	%esi | ||||||
|  | 		pushl	%ebx | ||||||
|  | 		subl	$LocalVarsSize, %esp | ||||||
|  |  | ||||||
|  | /* Retrieve the function arguments. %ecx will hold cur_match		*/ | ||||||
|  | /* throughout the entire function. %edx will hold the pointer to the	*/ | ||||||
|  | /* deflate_state structure during the function's setup (before		*/ | ||||||
|  | /* entering the main loop).						*/ | ||||||
|  |  | ||||||
|  | 		movl	deflatestate(%esp), %edx | ||||||
|  | 		movl	curmatch(%esp), %ecx | ||||||
|  |  | ||||||
|  | /* if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;	*/ | ||||||
|  |  | ||||||
|  | 		movl	dsNiceMatch(%edx), %eax | ||||||
|  | 		movl	dsLookahead(%edx), %ebx | ||||||
|  | 		cmpl	%eax, %ebx | ||||||
|  | 		jl	LookaheadLess | ||||||
|  | 		movl	%eax, %ebx | ||||||
|  | LookaheadLess:	movl	%ebx, nicematch(%esp) | ||||||
|  |  | ||||||
|  | /* register Bytef *scan = s->window + s->strstart;			*/ | ||||||
|  |  | ||||||
|  | 		movl	dsWindow(%edx), %esi | ||||||
|  | 		movl	%esi, window(%esp) | ||||||
|  | 		movl	dsStrStart(%edx), %ebp | ||||||
|  | 		lea	(%esi,%ebp), %edi | ||||||
|  | 		movl	%edi, scan(%esp) | ||||||
|  |  | ||||||
|  | /* Determine how many bytes the scan ptr is off from being		*/ | ||||||
|  | /* dword-aligned.							*/ | ||||||
|  |  | ||||||
|  | 		movl	%edi, %eax | ||||||
|  | 		negl	%eax | ||||||
|  | 		andl	$3, %eax | ||||||
|  | 		movl	%eax, scanalign(%esp) | ||||||
|  |  | ||||||
|  | /* IPos limit = s->strstart > (IPos)MAX_DIST(s) ?			*/ | ||||||
|  | /*     s->strstart - (IPos)MAX_DIST(s) : NIL;				*/ | ||||||
|  |  | ||||||
|  | 		movl	dsWSize(%edx), %eax | ||||||
|  | 		subl	$MIN_LOOKAHEAD, %eax | ||||||
|  | 		subl	%eax, %ebp | ||||||
|  | 		jg	LimitPositive | ||||||
|  | 		xorl	%ebp, %ebp | ||||||
|  | LimitPositive: | ||||||
|  |  | ||||||
|  | /* unsigned chain_length = s->max_chain_length;				*/ | ||||||
|  | /* if (s->prev_length >= s->good_match) {				*/ | ||||||
|  | /*     chain_length >>= 2;						*/ | ||||||
|  | /* }									*/ | ||||||
|  |  | ||||||
|  | 		movl	dsPrevLen(%edx), %eax | ||||||
|  | 		movl	dsGoodMatch(%edx), %ebx | ||||||
|  | 		cmpl	%ebx, %eax | ||||||
|  | 		movl	dsMaxChainLen(%edx), %ebx | ||||||
|  | 		jl	LastMatchGood | ||||||
|  | 		shrl	$2, %ebx | ||||||
|  | LastMatchGood: | ||||||
|  |  | ||||||
|  | /* chainlen is decremented once beforehand so that the function can	*/ | ||||||
|  | /* use the sign flag instead of the zero flag for the exit test.	*/ | ||||||
|  | /* It is then shifted into the high word, to make room for the scanend	*/ | ||||||
|  | /* scanend value, which it will always accompany.			*/ | ||||||
|  |  | ||||||
|  | 		decl	%ebx | ||||||
|  | 		shll	$16, %ebx | ||||||
|  |  | ||||||
|  | /* int best_len = s->prev_length;					*/ | ||||||
|  |  | ||||||
|  | 		movl	dsPrevLen(%edx), %eax | ||||||
|  | 		movl	%eax, bestlen(%esp) | ||||||
|  |  | ||||||
|  | /* Store the sum of s->window + best_len in %esi locally, and in %esi.	*/ | ||||||
|  |  | ||||||
|  | 		addl	%eax, %esi | ||||||
|  | 		movl	%esi, windowbestlen(%esp) | ||||||
|  |  | ||||||
|  | /* register ush scan_start = *(ushf*)scan;				*/ | ||||||
|  | /* register ush scan_end   = *(ushf*)(scan+best_len-1);			*/ | ||||||
|  |  | ||||||
|  | 		movw	(%edi), %bx | ||||||
|  | 		movw	%bx, scanstart(%esp) | ||||||
|  | 		movw	-1(%edi,%eax), %bx | ||||||
|  | 		movl	%ebx, chainlenscanend(%esp) | ||||||
|  |  | ||||||
|  | /* Posf *prev = s->prev;						*/ | ||||||
|  | /* uInt wmask = s->w_mask;						*/ | ||||||
|  |  | ||||||
|  | 		movl	dsPrev(%edx), %edi | ||||||
|  | 		movl	dsWMask(%edx), %edx | ||||||
|  | 		mov	%edx, wmask(%esp) | ||||||
|  |  | ||||||
|  | /* Jump into the main loop.						*/ | ||||||
|  |  | ||||||
|  | 		jmp	LoopEntry | ||||||
|  |  | ||||||
|  | .balign 16 | ||||||
|  |  | ||||||
|  | /* do { | ||||||
|  |  *     match = s->window + cur_match; | ||||||
|  |  *     if (*(ushf*)(match+best_len-1) != scan_end || | ||||||
|  |  *         *(ushf*)match != scan_start) continue; | ||||||
|  |  *     [...] | ||||||
|  |  * } while ((cur_match = prev[cur_match & wmask]) > limit | ||||||
|  |  *          && --chain_length != 0); | ||||||
|  |  * | ||||||
|  |  * Here is the inner loop of the function. The function will spend the | ||||||
|  |  * majority of its time in this loop, and majority of that time will | ||||||
|  |  * be spent in the first ten instructions. | ||||||
|  |  * | ||||||
|  |  * Within this loop: | ||||||
|  |  * %ebx = chainlenscanend - i.e., ((chainlen << 16) | scanend) | ||||||
|  |  * %ecx = curmatch | ||||||
|  |  * %edx = curmatch & wmask | ||||||
|  |  * %esi = windowbestlen - i.e., (window + bestlen) | ||||||
|  |  * %edi = prev | ||||||
|  |  * %ebp = limit | ||||||
|  |  * | ||||||
|  |  * Two optimization notes on the choice of instructions: | ||||||
|  |  * | ||||||
|  |  * The first instruction uses a 16-bit address, which costs an extra, | ||||||
|  |  * unpairable cycle. This is cheaper than doing a 32-bit access and | ||||||
|  |  * zeroing the high word, due to the 3-cycle misalignment penalty which | ||||||
|  |  * would occur half the time. This also turns out to be cheaper than | ||||||
|  |  * doing two separate 8-bit accesses, as the memory is so rarely in the | ||||||
|  |  * L1 cache. | ||||||
|  |  * | ||||||
|  |  * The window buffer, however, apparently spends a lot of time in the | ||||||
|  |  * cache, and so it is faster to retrieve the word at the end of the | ||||||
|  |  * match string with two 8-bit loads. The instructions that test the | ||||||
|  |  * word at the beginning of the match string, however, are executed | ||||||
|  |  * much less frequently, and there it was cheaper to use 16-bit | ||||||
|  |  * instructions, which avoided the necessity of saving off and | ||||||
|  |  * subsequently reloading one of the other registers. | ||||||
|  |  */ | ||||||
|  | LookupLoop: | ||||||
|  | 							/* 1 U & V  */ | ||||||
|  | 		movw	(%edi,%edx,2), %cx		/* 2 U pipe */ | ||||||
|  | 		movl	wmask(%esp), %edx		/* 2 V pipe */ | ||||||
|  | 		cmpl	%ebp, %ecx			/* 3 U pipe */ | ||||||
|  | 		jbe	LeaveNow			/* 3 V pipe */ | ||||||
|  | 		subl	$0x00010000, %ebx		/* 4 U pipe */ | ||||||
|  | 		js	LeaveNow			/* 4 V pipe */ | ||||||
|  | LoopEntry:	movb	-1(%esi,%ecx), %al		/* 5 U pipe */ | ||||||
|  | 		andl	%ecx, %edx			/* 5 V pipe */ | ||||||
|  | 		cmpb	%bl, %al			/* 6 U pipe */ | ||||||
|  | 		jnz	LookupLoop			/* 6 V pipe */ | ||||||
|  | 		movb	(%esi,%ecx), %ah | ||||||
|  | 		cmpb	%bh, %ah | ||||||
|  | 		jnz	LookupLoop | ||||||
|  | 		movl	window(%esp), %eax | ||||||
|  | 		movw	(%eax,%ecx), %ax | ||||||
|  | 		cmpw	scanstart(%esp), %ax | ||||||
|  | 		jnz	LookupLoop | ||||||
|  |  | ||||||
|  | /* Store the current value of chainlen.					*/ | ||||||
|  |  | ||||||
|  | 		movl	%ebx, chainlenscanend(%esp) | ||||||
|  |  | ||||||
|  | /* Point %edi to the string under scrutiny, and %esi to the string we	*/ | ||||||
|  | /* are hoping to match it up with. In actuality, %esi and %edi are	*/ | ||||||
|  | /* both pointed (MAX_MATCH_8 - scanalign) bytes ahead, and %edx is	*/ | ||||||
|  | /* initialized to -(MAX_MATCH_8 - scanalign).				*/ | ||||||
|  |  | ||||||
|  | 		movl	window(%esp), %esi | ||||||
|  | 		movl	scan(%esp), %edi | ||||||
|  | 		addl	%ecx, %esi | ||||||
|  | 		movl	scanalign(%esp), %eax | ||||||
|  | 		movl	$(-MAX_MATCH_8), %edx | ||||||
|  | 		lea	MAX_MATCH_8(%edi,%eax), %edi | ||||||
|  | 		lea	MAX_MATCH_8(%esi,%eax), %esi | ||||||
|  |  | ||||||
|  | /* Test the strings for equality, 8 bytes at a time. At the end, | ||||||
|  |  * adjust %edx so that it is offset to the exact byte that mismatched. | ||||||
|  |  * | ||||||
|  |  * We already know at this point that the first three bytes of the | ||||||
|  |  * strings match each other, and they can be safely passed over before | ||||||
|  |  * starting the compare loop. So what this code does is skip over 0-3 | ||||||
|  |  * bytes, as much as necessary in order to dword-align the %edi | ||||||
|  |  * pointer. (%esi will still be misaligned three times out of four.) | ||||||
|  |  * | ||||||
|  |  * It should be confessed that this loop usually does not represent | ||||||
|  |  * much of the total running time. Replacing it with a more | ||||||
|  |  * straightforward "rep cmpsb" would not drastically degrade | ||||||
|  |  * performance. | ||||||
|  |  */ | ||||||
|  | LoopCmps: | ||||||
|  | 		movl	(%esi,%edx), %eax | ||||||
|  | 		movl	(%edi,%edx), %ebx | ||||||
|  | 		xorl	%ebx, %eax | ||||||
|  | 		jnz	LeaveLoopCmps | ||||||
|  | 		movl	4(%esi,%edx), %eax | ||||||
|  | 		movl	4(%edi,%edx), %ebx | ||||||
|  | 		xorl	%ebx, %eax | ||||||
|  | 		jnz	LeaveLoopCmps4 | ||||||
|  | 		addl	$8, %edx | ||||||
|  | 		jnz	LoopCmps | ||||||
|  | 		jmp	LenMaximum | ||||||
|  | LeaveLoopCmps4:	addl	$4, %edx | ||||||
|  | LeaveLoopCmps:	testl	$0x0000FFFF, %eax | ||||||
|  | 		jnz	LenLower | ||||||
|  | 		addl	$2, %edx | ||||||
|  | 		shrl	$16, %eax | ||||||
|  | LenLower:	subb	$1, %al | ||||||
|  | 		adcl	$0, %edx | ||||||
|  |  | ||||||
|  | /* Calculate the length of the match. If it is longer than MAX_MATCH,	*/ | ||||||
|  | /* then automatically accept it as the best possible match and leave.	*/ | ||||||
|  |  | ||||||
|  | 		lea	(%edi,%edx), %eax | ||||||
|  | 		movl	scan(%esp), %edi | ||||||
|  | 		subl	%edi, %eax | ||||||
|  | 		cmpl	$MAX_MATCH, %eax | ||||||
|  | 		jge	LenMaximum | ||||||
|  |  | ||||||
|  | /* If the length of the match is not longer than the best match we	*/ | ||||||
|  | /* have so far, then forget it and return to the lookup loop.		*/ | ||||||
|  |  | ||||||
|  | 		movl	deflatestate(%esp), %edx | ||||||
|  | 		movl	bestlen(%esp), %ebx | ||||||
|  | 		cmpl	%ebx, %eax | ||||||
|  | 		jg	LongerMatch | ||||||
|  | 		movl	chainlenscanend(%esp), %ebx | ||||||
|  | 		movl	windowbestlen(%esp), %esi | ||||||
|  | 		movl	dsPrev(%edx), %edi | ||||||
|  | 		movl	wmask(%esp), %edx | ||||||
|  | 		andl	%ecx, %edx | ||||||
|  | 		jmp	LookupLoop | ||||||
|  |  | ||||||
|  | /*         s->match_start = cur_match;					*/ | ||||||
|  | /*         best_len = len;						*/ | ||||||
|  | /*         if (len >= nice_match) break;				*/ | ||||||
|  | /*         scan_end = *(ushf*)(scan+best_len-1);			*/ | ||||||
|  |  | ||||||
|  | LongerMatch:	movl	nicematch(%esp), %ebx | ||||||
|  | 		movl	%eax, bestlen(%esp) | ||||||
|  | 		movl	%ecx, dsMatchStart(%edx) | ||||||
|  | 		cmpl	%ebx, %eax | ||||||
|  | 		jge	LeaveNow | ||||||
|  | 		movl	window(%esp), %esi | ||||||
|  | 		addl	%eax, %esi | ||||||
|  | 		movl	%esi, windowbestlen(%esp) | ||||||
|  | 		movl	chainlenscanend(%esp), %ebx | ||||||
|  | 		movw	-1(%edi,%eax), %bx | ||||||
|  | 		movl	dsPrev(%edx), %edi | ||||||
|  | 		movl	%ebx, chainlenscanend(%esp) | ||||||
|  | 		movl	wmask(%esp), %edx | ||||||
|  | 		andl	%ecx, %edx | ||||||
|  | 		jmp	LookupLoop | ||||||
|  |  | ||||||
|  | /* Accept the current string, with the maximum possible length.		*/ | ||||||
|  |  | ||||||
|  | LenMaximum:	movl	deflatestate(%esp), %edx | ||||||
|  | 		movl	$MAX_MATCH, bestlen(%esp) | ||||||
|  | 		movl	%ecx, dsMatchStart(%edx) | ||||||
|  |  | ||||||
|  | /* if ((uInt)best_len <= s->lookahead) return (uInt)best_len;		*/ | ||||||
|  | /* return s->lookahead;							*/ | ||||||
|  |  | ||||||
|  | LeaveNow: | ||||||
|  | 		movl	deflatestate(%esp), %edx | ||||||
|  | 		movl	bestlen(%esp), %ebx | ||||||
|  | 		movl	dsLookahead(%edx), %eax | ||||||
|  | 		cmpl	%eax, %ebx | ||||||
|  | 		jg	LookaheadRet | ||||||
|  | 		movl	%ebx, %eax | ||||||
|  | LookaheadRet: | ||||||
|  |  | ||||||
|  | /* Restore the stack and return from whence we came.			*/ | ||||||
|  |  | ||||||
|  | 		addl	$LocalVarsSize, %esp | ||||||
|  | 		popl	%ebx | ||||||
|  | 		popl	%esi | ||||||
|  | 		popl	%edi | ||||||
|  | 		popl	%ebp | ||||||
|  | match_init:	ret | ||||||
							
								
								
									
										34
									
								
								contrib/asm686/README.686
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								contrib/asm686/README.686
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,34 @@ | |||||||
|  | This is a patched version of zlib, modified to use | ||||||
|  | Pentium-Pro-optimized assembly code in the deflation algorithm. The | ||||||
|  | files changed/added by this patch are: | ||||||
|  |  | ||||||
|  | README.686 | ||||||
|  | match.S | ||||||
|  |  | ||||||
|  | The speedup that this patch provides varies, depending on whether the | ||||||
|  | compiler used to build the original version of zlib falls afoul of the | ||||||
|  | PPro's speed traps. My own tests show a speedup of around 10-20% at | ||||||
|  | the default compression level, and 20-30% using -9, against a version | ||||||
|  | compiled using gcc 2.7.2.3. Your mileage may vary. | ||||||
|  |  | ||||||
|  | Note that this code has been tailored for the PPro/PII in particular, | ||||||
|  | and will not perform particuarly well on a Pentium. | ||||||
|  |  | ||||||
|  | If you are using an assembler other than GNU as, you will have to | ||||||
|  | translate match.S to use your assembler's syntax. (Have fun.) | ||||||
|  |  | ||||||
|  | Brian Raiter | ||||||
|  | breadbox@muppetlabs.com | ||||||
|  | April, 1998 | ||||||
|  |  | ||||||
|  |  | ||||||
|  | Added for zlib 1.1.3: | ||||||
|  |  | ||||||
|  | The patches come from | ||||||
|  | http://www.muppetlabs.com/~breadbox/software/assembly.html | ||||||
|  |  | ||||||
|  | To compile zlib with this asm file, copy match.S to the zlib directory | ||||||
|  | then do: | ||||||
|  |  | ||||||
|  | CFLAGS="-O3 -DASMV" ./configure | ||||||
|  | make OBJA=match.o | ||||||
							
								
								
									
										327
									
								
								contrib/asm686/match.S
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										327
									
								
								contrib/asm686/match.S
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,327 @@ | |||||||
|  | /* match.s -- Pentium-Pro-optimized version of longest_match() | ||||||
|  |  * Written for zlib 1.1.2 | ||||||
|  |  * Copyright (C) 1998 Brian Raiter <breadbox@muppetlabs.com> | ||||||
|  |  * | ||||||
|  |  * This is free software; you can redistribute it and/or modify it | ||||||
|  |  * under the terms of the GNU General Public License. | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | #ifndef NO_UNDERLINE | ||||||
|  | #define	match_init	_match_init | ||||||
|  | #define	longest_match	_longest_match | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #define	MAX_MATCH	(258) | ||||||
|  | #define	MIN_MATCH	(3) | ||||||
|  | #define	MIN_LOOKAHEAD	(MAX_MATCH + MIN_MATCH + 1) | ||||||
|  | #define	MAX_MATCH_8	((MAX_MATCH + 7) & ~7) | ||||||
|  |  | ||||||
|  | /* stack frame offsets */ | ||||||
|  |  | ||||||
|  | #define	chainlenwmask		0	/* high word: current chain len	*/ | ||||||
|  | 					/* low word: s->wmask		*/ | ||||||
|  | #define	window			4	/* local copy of s->window	*/ | ||||||
|  | #define	windowbestlen		8	/* s->window + bestlen		*/ | ||||||
|  | #define	scanstart		16	/* first two bytes of string	*/ | ||||||
|  | #define	scanend			12	/* last two bytes of string	*/ | ||||||
|  | #define	scanalign		20	/* dword-misalignment of string	*/ | ||||||
|  | #define	nicematch		24	/* a good enough match size	*/ | ||||||
|  | #define	bestlen			28	/* size of best match so far	*/ | ||||||
|  | #define	scan			32	/* ptr to string wanting match	*/ | ||||||
|  |  | ||||||
|  | #define	LocalVarsSize		(36) | ||||||
|  | /*	saved ebx		36 */ | ||||||
|  | /*	saved edi		40 */ | ||||||
|  | /*	saved esi		44 */ | ||||||
|  | /*	saved ebp		48 */ | ||||||
|  | /*	return address		52 */ | ||||||
|  | #define	deflatestate		56	/* the function arguments	*/ | ||||||
|  | #define	curmatch		60 | ||||||
|  |  | ||||||
|  | /* Offsets for fields in the deflate_state structure. These numbers | ||||||
|  |  * are calculated from the definition of deflate_state, with the | ||||||
|  |  * assumption that the compiler will dword-align the fields. (Thus, | ||||||
|  |  * changing the definition of deflate_state could easily cause this | ||||||
|  |  * program to crash horribly, without so much as a warning at | ||||||
|  |  * compile time. Sigh.) | ||||||
|  |  */ | ||||||
|  | #define	dsWSize			36 | ||||||
|  | #define	dsWMask			44 | ||||||
|  | #define	dsWindow		48 | ||||||
|  | #define	dsPrev			56 | ||||||
|  | #define	dsMatchLen		88 | ||||||
|  | #define	dsPrevMatch		92 | ||||||
|  | #define	dsStrStart		100 | ||||||
|  | #define	dsMatchStart		104 | ||||||
|  | #define	dsLookahead		108 | ||||||
|  | #define	dsPrevLen		112 | ||||||
|  | #define	dsMaxChainLen		116 | ||||||
|  | #define	dsGoodMatch		132 | ||||||
|  | #define	dsNiceMatch		136 | ||||||
|  |  | ||||||
|  |  | ||||||
|  | .file "match.S" | ||||||
|  |  | ||||||
|  | .globl	match_init, longest_match | ||||||
|  |  | ||||||
|  | .text | ||||||
|  |  | ||||||
|  | /* uInt longest_match(deflate_state *deflatestate, IPos curmatch) */ | ||||||
|  |  | ||||||
|  | longest_match: | ||||||
|  |  | ||||||
|  | /* Save registers that the compiler may be using, and adjust %esp to	*/ | ||||||
|  | /* make room for our stack frame.					*/ | ||||||
|  |  | ||||||
|  | 		pushl	%ebp | ||||||
|  | 		pushl	%edi | ||||||
|  | 		pushl	%esi | ||||||
|  | 		pushl	%ebx | ||||||
|  | 		subl	$LocalVarsSize, %esp | ||||||
|  |  | ||||||
|  | /* Retrieve the function arguments. %ecx will hold cur_match		*/ | ||||||
|  | /* throughout the entire function. %edx will hold the pointer to the	*/ | ||||||
|  | /* deflate_state structure during the function's setup (before		*/ | ||||||
|  | /* entering the main loop).						*/ | ||||||
|  |  | ||||||
|  | 		movl	deflatestate(%esp), %edx | ||||||
|  | 		movl	curmatch(%esp), %ecx | ||||||
|  |  | ||||||
|  | /* uInt wmask = s->w_mask;						*/ | ||||||
|  | /* unsigned chain_length = s->max_chain_length;				*/ | ||||||
|  | /* if (s->prev_length >= s->good_match) {				*/ | ||||||
|  | /*     chain_length >>= 2;						*/ | ||||||
|  | /* }									*/ | ||||||
|  |  | ||||||
|  | 		movl	dsPrevLen(%edx), %eax | ||||||
|  | 		movl	dsGoodMatch(%edx), %ebx | ||||||
|  | 		cmpl	%ebx, %eax | ||||||
|  | 		movl	dsWMask(%edx), %eax | ||||||
|  | 		movl	dsMaxChainLen(%edx), %ebx | ||||||
|  | 		jl	LastMatchGood | ||||||
|  | 		shrl	$2, %ebx | ||||||
|  | LastMatchGood: | ||||||
|  |  | ||||||
|  | /* chainlen is decremented once beforehand so that the function can	*/ | ||||||
|  | /* use the sign flag instead of the zero flag for the exit test.	*/ | ||||||
|  | /* It is then shifted into the high word, to make room for the wmask	*/ | ||||||
|  | /* value, which it will always accompany.				*/ | ||||||
|  |  | ||||||
|  | 		decl	%ebx | ||||||
|  | 		shll	$16, %ebx | ||||||
|  | 		orl	%eax, %ebx | ||||||
|  | 		movl	%ebx, chainlenwmask(%esp) | ||||||
|  |  | ||||||
|  | /* if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;	*/ | ||||||
|  |  | ||||||
|  | 		movl	dsNiceMatch(%edx), %eax | ||||||
|  | 		movl	dsLookahead(%edx), %ebx | ||||||
|  | 		cmpl	%eax, %ebx | ||||||
|  | 		jl	LookaheadLess | ||||||
|  | 		movl	%eax, %ebx | ||||||
|  | LookaheadLess:	movl	%ebx, nicematch(%esp) | ||||||
|  |  | ||||||
|  | /* register Bytef *scan = s->window + s->strstart;			*/ | ||||||
|  |  | ||||||
|  | 		movl	dsWindow(%edx), %esi | ||||||
|  | 		movl	%esi, window(%esp) | ||||||
|  | 		movl	dsStrStart(%edx), %ebp | ||||||
|  | 		lea	(%esi,%ebp), %edi | ||||||
|  | 		movl	%edi, scan(%esp) | ||||||
|  |  | ||||||
|  | /* Determine how many bytes the scan ptr is off from being		*/ | ||||||
|  | /* dword-aligned.							*/ | ||||||
|  |  | ||||||
|  | 		movl	%edi, %eax | ||||||
|  | 		negl	%eax | ||||||
|  | 		andl	$3, %eax | ||||||
|  | 		movl	%eax, scanalign(%esp) | ||||||
|  |  | ||||||
|  | /* IPos limit = s->strstart > (IPos)MAX_DIST(s) ?			*/ | ||||||
|  | /*     s->strstart - (IPos)MAX_DIST(s) : NIL;				*/ | ||||||
|  |  | ||||||
|  | 		movl	dsWSize(%edx), %eax | ||||||
|  | 		subl	$MIN_LOOKAHEAD, %eax | ||||||
|  | 		subl	%eax, %ebp | ||||||
|  | 		jg	LimitPositive | ||||||
|  | 		xorl	%ebp, %ebp | ||||||
|  | LimitPositive: | ||||||
|  |  | ||||||
|  | /* int best_len = s->prev_length;					*/ | ||||||
|  |  | ||||||
|  | 		movl	dsPrevLen(%edx), %eax | ||||||
|  | 		movl	%eax, bestlen(%esp) | ||||||
|  |  | ||||||
|  | /* Store the sum of s->window + best_len in %esi locally, and in %esi.	*/ | ||||||
|  |  | ||||||
|  | 		addl	%eax, %esi | ||||||
|  | 		movl	%esi, windowbestlen(%esp) | ||||||
|  |  | ||||||
|  | /* register ush scan_start = *(ushf*)scan;				*/ | ||||||
|  | /* register ush scan_end   = *(ushf*)(scan+best_len-1);			*/ | ||||||
|  | /* Posf *prev = s->prev;						*/ | ||||||
|  |  | ||||||
|  | 		movzwl	(%edi), %ebx | ||||||
|  | 		movl	%ebx, scanstart(%esp) | ||||||
|  | 		movzwl	-1(%edi,%eax), %ebx | ||||||
|  | 		movl	%ebx, scanend(%esp) | ||||||
|  | 		movl	dsPrev(%edx), %edi | ||||||
|  |  | ||||||
|  | /* Jump into the main loop.						*/ | ||||||
|  |  | ||||||
|  | 		movl	chainlenwmask(%esp), %edx | ||||||
|  | 		jmp	LoopEntry | ||||||
|  |  | ||||||
|  | .balign 16 | ||||||
|  |  | ||||||
|  | /* do { | ||||||
|  |  *     match = s->window + cur_match; | ||||||
|  |  *     if (*(ushf*)(match+best_len-1) != scan_end || | ||||||
|  |  *         *(ushf*)match != scan_start) continue; | ||||||
|  |  *     [...] | ||||||
|  |  * } while ((cur_match = prev[cur_match & wmask]) > limit | ||||||
|  |  *          && --chain_length != 0); | ||||||
|  |  * | ||||||
|  |  * Here is the inner loop of the function. The function will spend the | ||||||
|  |  * majority of its time in this loop, and majority of that time will | ||||||
|  |  * be spent in the first ten instructions. | ||||||
|  |  * | ||||||
|  |  * Within this loop: | ||||||
|  |  * %ebx = scanend | ||||||
|  |  * %ecx = curmatch | ||||||
|  |  * %edx = chainlenwmask - i.e., ((chainlen << 16) | wmask) | ||||||
|  |  * %esi = windowbestlen - i.e., (window + bestlen) | ||||||
|  |  * %edi = prev | ||||||
|  |  * %ebp = limit | ||||||
|  |  */ | ||||||
|  | LookupLoop: | ||||||
|  | 		andl	%edx, %ecx | ||||||
|  | 		movzwl	(%edi,%ecx,2), %ecx | ||||||
|  | 		cmpl	%ebp, %ecx | ||||||
|  | 		jbe	LeaveNow | ||||||
|  | 		subl	$0x00010000, %edx | ||||||
|  | 		js	LeaveNow | ||||||
|  | LoopEntry:	movzwl	-1(%esi,%ecx), %eax | ||||||
|  | 		cmpl	%ebx, %eax | ||||||
|  | 		jnz	LookupLoop | ||||||
|  | 		movl	window(%esp), %eax | ||||||
|  | 		movzwl	(%eax,%ecx), %eax | ||||||
|  | 		cmpl	scanstart(%esp), %eax | ||||||
|  | 		jnz	LookupLoop | ||||||
|  |  | ||||||
|  | /* Store the current value of chainlen.					*/ | ||||||
|  |  | ||||||
|  | 		movl	%edx, chainlenwmask(%esp) | ||||||
|  |  | ||||||
|  | /* Point %edi to the string under scrutiny, and %esi to the string we	*/ | ||||||
|  | /* are hoping to match it up with. In actuality, %esi and %edi are	*/ | ||||||
|  | /* both pointed (MAX_MATCH_8 - scanalign) bytes ahead, and %edx is	*/ | ||||||
|  | /* initialized to -(MAX_MATCH_8 - scanalign).				*/ | ||||||
|  |  | ||||||
|  | 		movl	window(%esp), %esi | ||||||
|  | 		movl	scan(%esp), %edi | ||||||
|  | 		addl	%ecx, %esi | ||||||
|  | 		movl	scanalign(%esp), %eax | ||||||
|  | 		movl	$(-MAX_MATCH_8), %edx | ||||||
|  | 		lea	MAX_MATCH_8(%edi,%eax), %edi | ||||||
|  | 		lea	MAX_MATCH_8(%esi,%eax), %esi | ||||||
|  |  | ||||||
|  | /* Test the strings for equality, 8 bytes at a time. At the end, | ||||||
|  |  * adjust %edx so that it is offset to the exact byte that mismatched. | ||||||
|  |  * | ||||||
|  |  * We already know at this point that the first three bytes of the | ||||||
|  |  * strings match each other, and they can be safely passed over before | ||||||
|  |  * starting the compare loop. So what this code does is skip over 0-3 | ||||||
|  |  * bytes, as much as necessary in order to dword-align the %edi | ||||||
|  |  * pointer. (%esi will still be misaligned three times out of four.) | ||||||
|  |  * | ||||||
|  |  * It should be confessed that this loop usually does not represent | ||||||
|  |  * much of the total running time. Replacing it with a more | ||||||
|  |  * straightforward "rep cmpsb" would not drastically degrade | ||||||
|  |  * performance. | ||||||
|  |  */ | ||||||
|  | LoopCmps: | ||||||
|  | 		movl	(%esi,%edx), %eax | ||||||
|  | 		xorl	(%edi,%edx), %eax | ||||||
|  | 		jnz	LeaveLoopCmps | ||||||
|  | 		movl	4(%esi,%edx), %eax | ||||||
|  | 		xorl	4(%edi,%edx), %eax | ||||||
|  | 		jnz	LeaveLoopCmps4 | ||||||
|  | 		addl	$8, %edx | ||||||
|  | 		jnz	LoopCmps | ||||||
|  | 		jmp	LenMaximum | ||||||
|  | LeaveLoopCmps4:	addl	$4, %edx | ||||||
|  | LeaveLoopCmps:	testl	$0x0000FFFF, %eax | ||||||
|  | 		jnz	LenLower | ||||||
|  | 		addl	$2, %edx | ||||||
|  | 		shrl	$16, %eax | ||||||
|  | LenLower:	subb	$1, %al | ||||||
|  | 		adcl	$0, %edx | ||||||
|  |  | ||||||
|  | /* Calculate the length of the match. If it is longer than MAX_MATCH,	*/ | ||||||
|  | /* then automatically accept it as the best possible match and leave.	*/ | ||||||
|  |  | ||||||
|  | 		lea	(%edi,%edx), %eax | ||||||
|  | 		movl	scan(%esp), %edi | ||||||
|  | 		subl	%edi, %eax | ||||||
|  | 		cmpl	$MAX_MATCH, %eax | ||||||
|  | 		jge	LenMaximum | ||||||
|  |  | ||||||
|  | /* If the length of the match is not longer than the best match we	*/ | ||||||
|  | /* have so far, then forget it and return to the lookup loop.		*/ | ||||||
|  |  | ||||||
|  | 		movl	deflatestate(%esp), %edx | ||||||
|  | 		movl	bestlen(%esp), %ebx | ||||||
|  | 		cmpl	%ebx, %eax | ||||||
|  | 		jg	LongerMatch | ||||||
|  | 		movl	windowbestlen(%esp), %esi | ||||||
|  | 		movl	dsPrev(%edx), %edi | ||||||
|  | 		movl	scanend(%esp), %ebx | ||||||
|  | 		movl	chainlenwmask(%esp), %edx | ||||||
|  | 		jmp	LookupLoop | ||||||
|  |  | ||||||
|  | /*         s->match_start = cur_match;					*/ | ||||||
|  | /*         best_len = len;						*/ | ||||||
|  | /*         if (len >= nice_match) break;				*/ | ||||||
|  | /*         scan_end = *(ushf*)(scan+best_len-1);			*/ | ||||||
|  |  | ||||||
|  | LongerMatch:	movl	nicematch(%esp), %ebx | ||||||
|  | 		movl	%eax, bestlen(%esp) | ||||||
|  | 		movl	%ecx, dsMatchStart(%edx) | ||||||
|  | 		cmpl	%ebx, %eax | ||||||
|  | 		jge	LeaveNow | ||||||
|  | 		movl	window(%esp), %esi | ||||||
|  | 		addl	%eax, %esi | ||||||
|  | 		movl	%esi, windowbestlen(%esp) | ||||||
|  | 		movzwl	-1(%edi,%eax), %ebx | ||||||
|  | 		movl	dsPrev(%edx), %edi | ||||||
|  | 		movl	%ebx, scanend(%esp) | ||||||
|  | 		movl	chainlenwmask(%esp), %edx | ||||||
|  | 		jmp	LookupLoop | ||||||
|  |  | ||||||
|  | /* Accept the current string, with the maximum possible length.		*/ | ||||||
|  |  | ||||||
|  | LenMaximum:	movl	deflatestate(%esp), %edx | ||||||
|  | 		movl	$MAX_MATCH, bestlen(%esp) | ||||||
|  | 		movl	%ecx, dsMatchStart(%edx) | ||||||
|  |  | ||||||
|  | /* if ((uInt)best_len <= s->lookahead) return (uInt)best_len;		*/ | ||||||
|  | /* return s->lookahead;							*/ | ||||||
|  |  | ||||||
|  | LeaveNow: | ||||||
|  | 		movl	deflatestate(%esp), %edx | ||||||
|  | 		movl	bestlen(%esp), %ebx | ||||||
|  | 		movl	dsLookahead(%edx), %eax | ||||||
|  | 		cmpl	%eax, %ebx | ||||||
|  | 		jg	LookaheadRet | ||||||
|  | 		movl	%ebx, %eax | ||||||
|  | LookaheadRet: | ||||||
|  |  | ||||||
|  | /* Restore the stack and return from whence we came.			*/ | ||||||
|  |  | ||||||
|  | 		addl	$LocalVarsSize, %esp | ||||||
|  | 		popl	%ebx | ||||||
|  | 		popl	%esi | ||||||
|  | 		popl	%edi | ||||||
|  | 		popl	%ebp | ||||||
|  | match_init:	ret | ||||||
							
								
								
									
										8
									
								
								contrib/blast/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								contrib/blast/Makefile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | |||||||
|  | blast: blast.c blast.h | ||||||
|  | 	cc -DTEST -o blast blast.c | ||||||
|  |  | ||||||
|  | test: blast | ||||||
|  | 	blast < test.pk | cmp - test.txt | ||||||
|  |  | ||||||
|  | clean: | ||||||
|  | 	rm -f blast blast.o | ||||||
							
								
								
									
										4
									
								
								contrib/blast/README
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								contrib/blast/README
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | |||||||
|  | Read blast.h for purpose and usage. | ||||||
|  |  | ||||||
|  | Mark Adler | ||||||
|  | madler@alumni.caltech.edu | ||||||
							
								
								
									
										444
									
								
								contrib/blast/blast.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										444
									
								
								contrib/blast/blast.c
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,444 @@ | |||||||
|  | /* blast.c | ||||||
|  |  * Copyright (C) 2003 Mark Adler | ||||||
|  |  * For conditions of distribution and use, see copyright notice in blast.h | ||||||
|  |  * version 1.1, 16 Feb 2003 | ||||||
|  |  * | ||||||
|  |  * blast.c decompresses data compressed by the PKWare Compression Library. | ||||||
|  |  * This function provides functionality similar to the explode() function of | ||||||
|  |  * the PKWare library, hence the name "blast". | ||||||
|  |  * | ||||||
|  |  * This decompressor is based on the excellent format description provided by | ||||||
|  |  * Ben Rudiak-Gould in comp.compression on August 13, 2001.  Interestingly, the | ||||||
|  |  * example Ben provided in the post is incorrect.  The distance 110001 should | ||||||
|  |  * instead be 111000.  When corrected, the example byte stream becomes: | ||||||
|  |  * | ||||||
|  |  *    00 04 82 24 25 8f 80 7f | ||||||
|  |  * | ||||||
|  |  * which decompresses to "AIAIAIAIAIAIA" (without the quotes). | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Change history: | ||||||
|  |  * | ||||||
|  |  * 1.0	12 Feb 2003	- First version | ||||||
|  |  * 1.1	16 Feb 2003	- Fixed distance check for > 4 GB uncompressed data | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | #include <setjmp.h>		/* for setjmp(), longjmp(), and jmp_buf */ | ||||||
|  | #include "blast.h"		/* prototype for blast() */ | ||||||
|  |  | ||||||
|  | #define local static		/* for local function definitions */ | ||||||
|  | #define MAXBITS 13		/* maximum code length */ | ||||||
|  | #define MAXWIN 4096		/* maximum window size */ | ||||||
|  |  | ||||||
|  | /* input and output state */ | ||||||
|  | struct state { | ||||||
|  |     /* input state */ | ||||||
|  |     blast_in infun;		/* input function provided by user */ | ||||||
|  |     void *inhow;		/* opaque information passed to infun() */ | ||||||
|  |     unsigned char *in;		/* next input location */ | ||||||
|  |     unsigned left;		/* available input at in */ | ||||||
|  |     int bitbuf;			/* bit buffer */ | ||||||
|  |     int bitcnt;			/* number of bits in bit buffer */ | ||||||
|  |  | ||||||
|  |     /* input limit error return state for bits() and decode() */ | ||||||
|  |     jmp_buf env; | ||||||
|  |  | ||||||
|  |     /* output state */ | ||||||
|  |     blast_out outfun;		/* output function provided by user */ | ||||||
|  |     void *outhow;		/* opaque information passed to outfun() */ | ||||||
|  |     unsigned next;		/* index of next write location in out[] */ | ||||||
|  |     int first;			/* true to check distances (for first 4K) */ | ||||||
|  |     unsigned char out[MAXWIN];	/* output buffer and sliding window */ | ||||||
|  | }; | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Return need bits from the input stream.  This always leaves less than | ||||||
|  |  * eight bits in the buffer.  bits() works properly for need == 0. | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - Bits are stored in bytes from the least significant bit to the most | ||||||
|  |  *   significant bit.  Therefore bits are dropped from the bottom of the bit | ||||||
|  |  *   buffer, using shift right, and new bytes are appended to the top of the | ||||||
|  |  *   bit buffer, using shift left. | ||||||
|  |  */ | ||||||
|  | local int bits(struct state *s, int need) | ||||||
|  | { | ||||||
|  |     int val;		/* bit accumulator */ | ||||||
|  |  | ||||||
|  |     /* load at least need bits into val */ | ||||||
|  |     val = s->bitbuf; | ||||||
|  |     while (s->bitcnt < need) { | ||||||
|  |         if (s->left == 0) { | ||||||
|  |             s->left = s->infun(s->inhow, &(s->in)); | ||||||
|  |             if (s->left == 0) longjmp(s->env, 1);	/* out of input */ | ||||||
|  |         } | ||||||
|  |         val |= (int)(*(s->in)++) << s->bitcnt;		/* load eight bits */ | ||||||
|  |         s->left--; | ||||||
|  |         s->bitcnt += 8; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /* drop need bits and update buffer, always zero to seven bits left */ | ||||||
|  |     s->bitbuf = val >> need; | ||||||
|  |     s->bitcnt -= need; | ||||||
|  |  | ||||||
|  |     /* return need bits, zeroing the bits above that */ | ||||||
|  |     return val & ((1 << need) - 1); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Huffman code decoding tables.  count[1..MAXBITS] is the number of symbols of | ||||||
|  |  * each length, which for a canonical code are stepped through in order. | ||||||
|  |  * symbol[] are the symbol values in canonical order, where the number of | ||||||
|  |  * entries is the sum of the counts in count[].  The decoding process can be | ||||||
|  |  * seen in the function decode() below. | ||||||
|  |  */ | ||||||
|  | struct huffman { | ||||||
|  |     short *count;	/* number of symbols of each length */ | ||||||
|  |     short *symbol;	/* canonically ordered symbols */ | ||||||
|  | }; | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Decode a code from the stream s using huffman table h.  Return the symbol or | ||||||
|  |  * a negative value if there is an error.  If all of the lengths are zero, i.e. | ||||||
|  |  * an empty code, or if the code is incomplete and an invalid code is received, | ||||||
|  |  * then -9 is returned after reading MAXBITS bits. | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - The codes as stored in the compressed data are bit-reversed relative to | ||||||
|  |  *   a simple integer ordering of codes of the same lengths.  Hence below the | ||||||
|  |  *   bits are pulled from the compressed data one at a time and used to | ||||||
|  |  *   build the code value reversed from what is in the stream in order to | ||||||
|  |  *   permit simple integer comparisons for decoding. | ||||||
|  |  * | ||||||
|  |  * - The first code for the shortest length is all ones.  Subsequent codes of | ||||||
|  |  *   the same length are simply integer decrements of the previous code.  When | ||||||
|  |  *   moving up a length, a one bit is appended to the code.  For a complete | ||||||
|  |  *   code, the last code of the longest length will be all zeros.  To support | ||||||
|  |  *   this ordering, the bits pulled during decoding are inverted to apply the | ||||||
|  |  *   more "natural" ordering starting with all zeros and incrementing. | ||||||
|  |  */ | ||||||
|  | local int decode(struct state *s, struct huffman *h) | ||||||
|  | { | ||||||
|  |     int len;		/* current number of bits in code */ | ||||||
|  |     int code;		/* len bits being decoded */ | ||||||
|  |     int first;		/* first code of length len */ | ||||||
|  |     int count;		/* number of codes of length len */ | ||||||
|  |     int index;		/* index of first code of length len in symbol table */ | ||||||
|  |     int bitbuf;		/* bits from stream */ | ||||||
|  |     int left;		/* bits left in next or left to process */ | ||||||
|  |     short *next;	/* next number of codes */ | ||||||
|  |  | ||||||
|  |     bitbuf = s->bitbuf; | ||||||
|  |     left = s->bitcnt; | ||||||
|  |     code = first = index = 0; | ||||||
|  |     len = 1; | ||||||
|  |     next = h->count + 1; | ||||||
|  |     while (1) { | ||||||
|  |         while (left--) { | ||||||
|  |             code |= (bitbuf & 1) ^ 1;	/* invert code */ | ||||||
|  |             bitbuf >>= 1; | ||||||
|  |             count = *next++; | ||||||
|  |             if (code < first + count) {	/* if length len, return symbol */ | ||||||
|  |                 s->bitbuf = bitbuf; | ||||||
|  |                 s->bitcnt = (s->bitcnt - len) & 7; | ||||||
|  |                 return h->symbol[index + (code - first)]; | ||||||
|  |             } | ||||||
|  |             index += count;		/* else update for next length */ | ||||||
|  |             first += count; | ||||||
|  |             first <<= 1; | ||||||
|  |             code <<= 1; | ||||||
|  |             len++; | ||||||
|  |         } | ||||||
|  |         left = (MAXBITS+1) - len; | ||||||
|  |         if (left == 0) break; | ||||||
|  |         if (s->left == 0) { | ||||||
|  |             s->left = s->infun(s->inhow, &(s->in)); | ||||||
|  |             if (s->left == 0) longjmp(s->env, 1);	/* out of input */ | ||||||
|  |         } | ||||||
|  |         bitbuf = *(s->in)++; | ||||||
|  |         s->left--; | ||||||
|  |         if (left > 8) left = 8; | ||||||
|  |     } | ||||||
|  |     return -9;				/* ran out of codes */ | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Given a list of repeated code lengths rep[0..n-1], where each byte is a | ||||||
|  |  * count (high four bits + 1) and a code length (low four bits), generate the | ||||||
|  |  * list of code lengths.  This compaction reduces the size of the object code. | ||||||
|  |  * Then given the list of code lengths length[0..n-1] representing a canonical | ||||||
|  |  * Huffman code for n symbols, construct the tables required to decode those | ||||||
|  |  * codes.  Those tables are the number of codes of each length, and the symbols | ||||||
|  |  * sorted by length, retaining their original order within each length.  The | ||||||
|  |  * return value is zero for a complete code set, negative for an over- | ||||||
|  |  * subscribed code set, and positive for an incomplete code set.  The tables | ||||||
|  |  * can be used if the return value is zero or positive, but they cannot be used | ||||||
|  |  * if the return value is negative.  If the return value is zero, it is not | ||||||
|  |  * possible for decode() using that table to return an error--any stream of | ||||||
|  |  * enough bits will resolve to a symbol.  If the return value is positive, then | ||||||
|  |  * it is possible for decode() using that table to return an error for received | ||||||
|  |  * codes past the end of the incomplete lengths. | ||||||
|  |  */ | ||||||
|  | local int construct(struct huffman *h, const unsigned char *rep, int n) | ||||||
|  | { | ||||||
|  |     int symbol;		/* current symbol when stepping through length[] */ | ||||||
|  |     int len;		/* current length when stepping through h->count[] */ | ||||||
|  |     int left;		/* number of possible codes left of current length */ | ||||||
|  |     short offs[MAXBITS+1];	/* offsets in symbol table for each length */ | ||||||
|  |     short length[256];	/* code lengths */ | ||||||
|  |  | ||||||
|  |     /* convert compact repeat counts into symbol bit length list */ | ||||||
|  |     symbol = 0; | ||||||
|  |     do { | ||||||
|  |         len = *rep++; | ||||||
|  |         left = (len >> 4) + 1; | ||||||
|  |         len &= 15; | ||||||
|  |         do { | ||||||
|  |             length[symbol++] = len; | ||||||
|  |         } while (--left); | ||||||
|  |     } while (--n); | ||||||
|  |     n = symbol; | ||||||
|  |  | ||||||
|  |     /* count number of codes of each length */ | ||||||
|  |     for (len = 0; len <= MAXBITS; len++) | ||||||
|  |         h->count[len] = 0; | ||||||
|  |     for (symbol = 0; symbol < n; symbol++) | ||||||
|  |         (h->count[length[symbol]])++;	/* assumes lengths are within bounds */ | ||||||
|  |     if (h->count[0] == n)		/* no codes! */ | ||||||
|  |         return 0;			/* complete, but decode() will fail */ | ||||||
|  |  | ||||||
|  |     /* check for an over-subscribed or incomplete set of lengths */ | ||||||
|  |     left = 1;				/* one possible code of zero length */ | ||||||
|  |     for (len = 1; len <= MAXBITS; len++) { | ||||||
|  |         left <<= 1;			/* one more bit, double codes left */ | ||||||
|  |         left -= h->count[len];		/* deduct count from possible codes */ | ||||||
|  |         if (left < 0) return left;	/* over-subscribed--return negative */ | ||||||
|  |     }					/* left > 0 means incomplete */ | ||||||
|  |  | ||||||
|  |     /* generate offsets into symbol table for each length for sorting */ | ||||||
|  |     offs[1] = 0; | ||||||
|  |     for (len = 1; len < MAXBITS; len++) | ||||||
|  |         offs[len + 1] = offs[len] + h->count[len]; | ||||||
|  |  | ||||||
|  |     /* | ||||||
|  |      * put symbols in table sorted by length, by symbol order within each | ||||||
|  |      * length | ||||||
|  |      */ | ||||||
|  |     for (symbol = 0; symbol < n; symbol++) | ||||||
|  |         if (length[symbol] != 0) | ||||||
|  |             h->symbol[offs[length[symbol]]++] = symbol; | ||||||
|  |  | ||||||
|  |     /* return zero for complete set, positive for incomplete set */ | ||||||
|  |     return left; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Decode PKWare Compression Library stream. | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - First byte is 0 if literals are uncoded or 1 if they are coded.  Second | ||||||
|  |  *   byte is 4, 5, or 6 for the number of extra bits in the distance code. | ||||||
|  |  *   This is the base-2 logarithm of the dictionary size minus six. | ||||||
|  |  * | ||||||
|  |  * - Compressed data is a combination of literals and length/distance pairs | ||||||
|  |  *   terminated by an end code.  Literals are either Huffman coded or | ||||||
|  |  *   uncoded bytes.  A length/distance pair is a coded length followed by a | ||||||
|  |  *   coded distance to represent a string that occurs earlier in the | ||||||
|  |  *   uncompressed data that occurs again at the current location. | ||||||
|  |  * | ||||||
|  |  * - A bit preceding a literal or length/distance pair indicates which comes | ||||||
|  |  *   next, 0 for literals, 1 for length/distance. | ||||||
|  |  * | ||||||
|  |  * - If literals are uncoded, then the next eight bits are the literal, in the | ||||||
|  |  *   normal bit order in th stream, i.e. no bit-reversal is needed. Similarly, | ||||||
|  |  *   no bit reversal is needed for either the length extra bits or the distance | ||||||
|  |  *   extra bits. | ||||||
|  |  * | ||||||
|  |  * - Literal bytes are simply written to the output.  A length/distance pair is | ||||||
|  |  *   an instruction to copy previously uncompressed bytes to the output.  The | ||||||
|  |  *   copy is from distance bytes back in the output stream, copying for length | ||||||
|  |  *   bytes. | ||||||
|  |  * | ||||||
|  |  * - Distances pointing before the beginning of the output data are not | ||||||
|  |  *   permitted. | ||||||
|  |  * | ||||||
|  |  * - Overlapped copies, where the length is greater than the distance, are | ||||||
|  |  *   allowed and common.  For example, a distance of one and a length of 518 | ||||||
|  |  *   simply copies the last byte 518 times.  A distance of four and a length of | ||||||
|  |  *   twelve copies the last four bytes three times.  A simple forward copy | ||||||
|  |  *   ignoring whether the length is greater than the distance or not implements | ||||||
|  |  *   this correctly. | ||||||
|  |  */ | ||||||
|  | local int decomp(struct state *s) | ||||||
|  | { | ||||||
|  |     int lit;		/* true if literals are coded */ | ||||||
|  |     int dict;		/* log2(dictionary size) - 6 */ | ||||||
|  |     int symbol;		/* decoded symbol, extra bits for distance */ | ||||||
|  |     int len;		/* length for copy */ | ||||||
|  |     int dist;		/* distance for copy */ | ||||||
|  |     int copy;		/* copy counter */ | ||||||
|  |     unsigned char *from, *to;	/* copy pointers */ | ||||||
|  |     static int virgin = 1;				/* build tables once */ | ||||||
|  |     static short litcnt[MAXBITS+1], litsym[256];	/* litcode memory */ | ||||||
|  |     static short lencnt[MAXBITS+1], lensym[16];		/* lencode memory */ | ||||||
|  |     static short distcnt[MAXBITS+1], distsym[64];	/* distcode memory */ | ||||||
|  |     static struct huffman litcode = {litcnt, litsym};	/* length code */ | ||||||
|  |     static struct huffman lencode = {lencnt, lensym};	/* length code */ | ||||||
|  |     static struct huffman distcode = {distcnt, distsym};/* distance code */ | ||||||
|  |         /* bit lengths of literal codes */ | ||||||
|  |     static const unsigned char litlen[] = { | ||||||
|  | 	11, 124, 8, 7, 28, 7, 188, 13, 76, 4, 10, 8, 12, 10, 12, 10, 8, 23, 8, | ||||||
|  | 	9, 7, 6, 7, 8, 7, 6, 55, 8, 23, 24, 12, 11, 7, 9, 11, 12, 6, 7, 22, 5, | ||||||
|  | 	7, 24, 6, 11, 9, 6, 7, 22, 7, 11, 38, 7, 9, 8, 25, 11, 8, 11, 9, 12, | ||||||
|  | 	8, 12, 5, 38, 5, 38, 5, 11, 7, 5, 6, 21, 6, 10, 53, 8, 7, 24, 10, 27, | ||||||
|  | 	44, 253, 253, 253, 252, 252, 252, 13, 12, 45, 12, 45, 12, 61, 12, 45, | ||||||
|  | 	44, 173}; | ||||||
|  |         /* bit lengths of length codes 0..15 */ | ||||||
|  |     static const unsigned char lenlen[] = {2, 35, 36, 53, 38, 23}; | ||||||
|  |         /* bit lengths of distance codes 0..63 */ | ||||||
|  |     static const unsigned char distlen[] = {2, 20, 53, 230, 247, 151, 248}; | ||||||
|  |     static const short base[16] = {	/* base for length codes */ | ||||||
|  |         3, 2, 4, 5, 6, 7, 8, 9, 10, 12, 16, 24, 40, 72, 136, 264}; | ||||||
|  |     static const char extra[16] = {	/* extra bits for length codes */ | ||||||
|  |         0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8}; | ||||||
|  |  | ||||||
|  |     /* set up decoding tables (once--might not be thread-safe) */ | ||||||
|  |     if (virgin) { | ||||||
|  |         construct(&litcode, litlen, sizeof(litlen)); | ||||||
|  |         construct(&lencode, lenlen, sizeof(lenlen)); | ||||||
|  |         construct(&distcode, distlen, sizeof(distlen)); | ||||||
|  |         virgin = 0; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /* read header */ | ||||||
|  |     lit = bits(s, 8); | ||||||
|  |     if (lit > 1) return -1; | ||||||
|  |     dict = bits(s, 8); | ||||||
|  |     if (dict < 4 || dict > 6) return -2; | ||||||
|  |  | ||||||
|  |     /* decode literals and length/distance pairs */ | ||||||
|  |     do { | ||||||
|  |         if (bits(s, 1)) { | ||||||
|  |             /* get length */ | ||||||
|  |             symbol = decode(s, &lencode); | ||||||
|  |             len = base[symbol] + bits(s, extra[symbol]); | ||||||
|  |             if (len == 519) break;		/* end code */ | ||||||
|  |  | ||||||
|  |             /* get distance */ | ||||||
|  |             symbol = len == 2 ? 2 : dict; | ||||||
|  |             dist = decode(s, &distcode) << symbol; | ||||||
|  |             dist += bits(s, symbol); | ||||||
|  |             dist++; | ||||||
|  |             if (s->first && dist > s->next) | ||||||
|  |                 return -3;		/* distance too far back */ | ||||||
|  |  | ||||||
|  |             /* copy length bytes from distance bytes back */ | ||||||
|  |             do { | ||||||
|  |                 to = s->out + s->next; | ||||||
|  |                 from = to - dist; | ||||||
|  |                 copy = MAXWIN; | ||||||
|  |                 if (s->next < dist) { | ||||||
|  |                     from += copy; | ||||||
|  |                     copy = dist; | ||||||
|  |                 } | ||||||
|  |                 copy -= s->next; | ||||||
|  |                 if (copy > len) copy = len; | ||||||
|  |                 len -= copy; | ||||||
|  |                 s->next += copy; | ||||||
|  |                 do { | ||||||
|  |                     *to++ = *from++; | ||||||
|  |                 } while (--copy); | ||||||
|  |                 if (s->next == MAXWIN) { | ||||||
|  |                     if (s->outfun(s->outhow, s->out, s->next)) return 1; | ||||||
|  |                     s->next = 0; | ||||||
|  |                     s->first = 0; | ||||||
|  |                 } | ||||||
|  |             } while (len != 0); | ||||||
|  |         } | ||||||
|  |         else { | ||||||
|  |             /* get literal and write it */ | ||||||
|  |             symbol = lit ? decode(s, &litcode) : bits(s, 8); | ||||||
|  |             s->out[s->next++] = symbol; | ||||||
|  |             if (s->next == MAXWIN) { | ||||||
|  |                 if (s->outfun(s->outhow, s->out, s->next)) return 1; | ||||||
|  |                 s->next = 0; | ||||||
|  |                 s->first = 0; | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |     } while (1); | ||||||
|  |     return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* See comments in blast.h */ | ||||||
|  | int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow) | ||||||
|  | { | ||||||
|  |     struct state s;		/* input/output state */ | ||||||
|  |     int err;			/* return value */ | ||||||
|  |  | ||||||
|  |     /* initialize input state */ | ||||||
|  |     s.infun = infun; | ||||||
|  |     s.inhow = inhow; | ||||||
|  |     s.left = 0; | ||||||
|  |     s.bitbuf = 0; | ||||||
|  |     s.bitcnt = 0; | ||||||
|  |  | ||||||
|  |     /* initialize output state */ | ||||||
|  |     s.outfun = outfun; | ||||||
|  |     s.outhow = outhow; | ||||||
|  |     s.next = 0; | ||||||
|  |     s.first = 1; | ||||||
|  |  | ||||||
|  |     /* return if bits() or decode() tries to read past available input */ | ||||||
|  |     if (setjmp(s.env) != 0)		/* if came back here via longjmp(), */ | ||||||
|  |         err = 2;			/*  then skip decomp(), return error */ | ||||||
|  |     else | ||||||
|  |         err = decomp(&s);		/* decompress */ | ||||||
|  |  | ||||||
|  |     /* write any leftover output and update the error code if needed */ | ||||||
|  |     if (err != 1 && s.next && s.outfun(s.outhow, s.out, s.next) && err == 0) | ||||||
|  |         err = 1; | ||||||
|  |     return err; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | #ifdef TEST | ||||||
|  | /* Example of how to use blast() */ | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdlib.h> | ||||||
|  |  | ||||||
|  | #define CHUNK 16384 | ||||||
|  |  | ||||||
|  | local unsigned inf(void *how, unsigned char **buf) | ||||||
|  | { | ||||||
|  |     static unsigned char hold[CHUNK]; | ||||||
|  |  | ||||||
|  |     *buf = hold; | ||||||
|  |     return fread(hold, 1, CHUNK, (FILE *)how); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | local int outf(void *how, unsigned char *buf, unsigned len) | ||||||
|  | { | ||||||
|  |     return fwrite(buf, 1, len, (FILE *)how) != len; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* Decompress a PKWare Compression Library stream from stdin to stdout */ | ||||||
|  | int main(void) | ||||||
|  | { | ||||||
|  |     int ret, n; | ||||||
|  |  | ||||||
|  |     /* decompress to stdout */ | ||||||
|  |     ret = blast(inf, stdin, outf, stdout); | ||||||
|  |     if (ret != 0) fprintf(stderr, "blast error: %d\n", ret); | ||||||
|  |  | ||||||
|  |     /* see if there are any leftover bytes */ | ||||||
|  |     n = 0; | ||||||
|  |     while (getchar() != EOF) n++; | ||||||
|  |     if (n) fprintf(stderr, "blast warning: %d unused bytes of input\n", n); | ||||||
|  |  | ||||||
|  |     /* return blast() error code */ | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  | #endif | ||||||
							
								
								
									
										71
									
								
								contrib/blast/blast.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										71
									
								
								contrib/blast/blast.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,71 @@ | |||||||
|  | /* blast.h -- interface for blast.c | ||||||
|  |   Copyright (C) 2003 Mark Adler | ||||||
|  |   version 1.1, 16 Feb 2003 | ||||||
|  |  | ||||||
|  |   This software is provided 'as-is', without any express or implied | ||||||
|  |   warranty.  In no event will the author be held liable for any damages | ||||||
|  |   arising from the use of this software. | ||||||
|  |  | ||||||
|  |   Permission is granted to anyone to use this software for any purpose, | ||||||
|  |   including commercial applications, and to alter it and redistribute it | ||||||
|  |   freely, subject to the following restrictions: | ||||||
|  |  | ||||||
|  |   1. The origin of this software must not be misrepresented; you must not | ||||||
|  |      claim that you wrote the original software. If you use this software | ||||||
|  |      in a product, an acknowledgment in the product documentation would be | ||||||
|  |      appreciated but is not required. | ||||||
|  |   2. Altered source versions must be plainly marked as such, and must not be | ||||||
|  |      misrepresented as being the original software. | ||||||
|  |   3. This notice may not be removed or altered from any source distribution. | ||||||
|  |  | ||||||
|  |   Mark Adler	madler@alumni.caltech.edu | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * blast() decompresses the PKWare Data Compression Library (DCL) compressed | ||||||
|  |  * format.  It provides the same functionality as the explode() function in | ||||||
|  |  * that library.  (Note: PKWare overused the "implode" verb, and the format | ||||||
|  |  * used by their library implode() function is completely different and | ||||||
|  |  * incompatible with the implode compression method supported by PKZIP.) | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | typedef unsigned (*blast_in)(void *how, unsigned char **buf); | ||||||
|  | typedef int (*blast_out)(void *how, unsigned char *buf, unsigned len); | ||||||
|  | /* Definitions for input/output functions passed to blast().  See below for | ||||||
|  |  * what the provided functions need to do. | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow); | ||||||
|  | /* Decompress input to output using the provided infun() and outfun() calls. | ||||||
|  |  * On success, the return value of blast() is zero.  If there is an error in | ||||||
|  |  * the source data, i.e. it is not in the proper format, then a negative value | ||||||
|  |  * is returned.  If there is not enough input available or there is not enough | ||||||
|  |  * output space, then a positive error is returned. | ||||||
|  |  * | ||||||
|  |  * The input function is invoked: len = infun(how, &buf), where buf is set by | ||||||
|  |  * infun() to point to the input buffer, and infun() returns the number of | ||||||
|  |  * available bytes there.  If infun() returns zero, then blast() returns with | ||||||
|  |  * an input error.  (blast() only asks for input if it needs it.)  inhow is for | ||||||
|  |  * use by the application to pass an input descriptor to infun(), if desired. | ||||||
|  |  * | ||||||
|  |  * The output function is invoked: err = outfun(how, buf, len), where the bytes | ||||||
|  |  * to be written are buf[0..len-1].  If err is not zero, then blast() returns | ||||||
|  |  * with an output error.  outfun() is always called with len <= 4096.  outhow | ||||||
|  |  * is for use by the application to pass an output descriptor to outfun(), if | ||||||
|  |  * desired. | ||||||
|  |  * | ||||||
|  |  * The return codes are: | ||||||
|  |  * | ||||||
|  |  *   2:  ran out of input before completing decompression | ||||||
|  |  *   1:  output error before completing decompression | ||||||
|  |  *   0:  successful decompression | ||||||
|  |  *  -1:  literal flag not zero or one | ||||||
|  |  *  -2:  dictionary size not in 4..6 | ||||||
|  |  *  -3:  distance is too far back | ||||||
|  |  * | ||||||
|  |  * At the bottom of blast.c is an example program that uses blast() that can be | ||||||
|  |  * compiled to produce a command-line decompression filter by defining TEST. | ||||||
|  |  */ | ||||||
							
								
								
									
										
											BIN
										
									
								
								contrib/blast/test.pk
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								contrib/blast/test.pk
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								contrib/blast/test.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								contrib/blast/test.txt
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | |||||||
|  | AIAIAIAIAIAIA | ||||||
							
								
								
									
										36
									
								
								contrib/delphi/zlib.mak
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								contrib/delphi/zlib.mak
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,36 @@ | |||||||
|  | # Makefile for zlib32bd.lib | ||||||
|  | # ------------- Borland C++ 4.5 ------------- | ||||||
|  |  | ||||||
|  | # The (32-bit) zlib32bd.lib made with this makefile is intended for use  | ||||||
|  | # in making the (32-bit) DLL, png32bd.dll. It uses the "stdcall" calling  | ||||||
|  | # convention. | ||||||
|  |  | ||||||
|  | CFLAGS= -ps -O2 -C -K -N- -k- -d -3 -r- -w-par -w-aus -WDE | ||||||
|  | CC=f:\bc45\bin\bcc32 | ||||||
|  | LIBFLAGS= /C | ||||||
|  | LIB=f:\bc45\bin\tlib | ||||||
|  | ZLIB=zlib32bd.lib | ||||||
|  |  | ||||||
|  | .autodepend | ||||||
|  | .c.obj: | ||||||
|  |         $(CC) -c $(CFLAGS) $< | ||||||
|  |  | ||||||
|  | OBJ1=adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infblock.obj  | ||||||
|  | OBJ2=infcodes.obj inflate.obj inftrees.obj infutil.obj inffast.obj  | ||||||
|  | OBJ3=trees.obj uncompr.obj zutil.obj | ||||||
|  | pOBJ1=+adler32.obj+compress.obj+crc32.obj+deflate.obj+gzio.obj+infblock.obj  | ||||||
|  | pOBJ2=+infcodes.obj+inflate.obj+inftrees.obj+infutil.obj+inffast.obj  | ||||||
|  | pOBJ3=+trees.obj+uncompr.obj+zutil.obj | ||||||
|  |  | ||||||
|  | all: $(ZLIB) | ||||||
|  |  | ||||||
|  | $(ZLIB): $(OBJ1) $(OBJ2) $(OBJ3) | ||||||
|  |         @if exist $@ del $@ | ||||||
|  |         $(LIB) @&&| | ||||||
|  | $@ $(LIBFLAGS) & | ||||||
|  | $(pOBJ1) & | ||||||
|  | $(pOBJ2) & | ||||||
|  | $(pOBJ3) | ||||||
|  | | | ||||||
|  |  | ||||||
|  | # End of makefile for zlib32bd.lib | ||||||
							
								
								
									
										169
									
								
								contrib/delphi/zlibdef.pas
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										169
									
								
								contrib/delphi/zlibdef.pas
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,169 @@ | |||||||
|  | unit zlibdef; | ||||||
|  |  | ||||||
|  | interface | ||||||
|  |  | ||||||
|  | uses | ||||||
|  |   Windows; | ||||||
|  |  | ||||||
|  | const | ||||||
|  |   ZLIB_VERSION = '1.1.3'; | ||||||
|  |  | ||||||
|  | type | ||||||
|  |   voidpf = Pointer; | ||||||
|  |   int    = Integer; | ||||||
|  |   uInt   = Cardinal; | ||||||
|  |   pBytef = PChar; | ||||||
|  |   uLong  = Cardinal; | ||||||
|  |  | ||||||
|  |   alloc_func = function(opaque: voidpf; items, size: uInt): voidpf; | ||||||
|  |                     stdcall; | ||||||
|  |   free_func  = procedure(opaque, address: voidpf); | ||||||
|  |                     stdcall; | ||||||
|  |  | ||||||
|  |   internal_state = Pointer; | ||||||
|  |  | ||||||
|  |   z_streamp = ^z_stream; | ||||||
|  |   z_stream = packed record | ||||||
|  |     next_in: pBytef;          // next input byte | ||||||
|  |     avail_in: uInt;           // number of bytes available at next_in | ||||||
|  |     total_in: uLong;          // total nb of input bytes read so far | ||||||
|  |  | ||||||
|  |     next_out: pBytef;         // next output byte should be put there | ||||||
|  |     avail_out: uInt;          // remaining free space at next_out | ||||||
|  |     total_out: uLong;         // total nb of bytes output so far | ||||||
|  |  | ||||||
|  |     msg: PChar;               // last error message, NULL if no error | ||||||
|  |     state: internal_state;    // not visible by applications | ||||||
|  |  | ||||||
|  |     zalloc: alloc_func;       // used to allocate the internal state | ||||||
|  |     zfree: free_func;         // used to free the internal state | ||||||
|  |     opaque: voidpf;           // private data object passed to zalloc and zfree | ||||||
|  |  | ||||||
|  |     data_type: int;           // best guess about the data type: ascii or binary | ||||||
|  |     adler: uLong;             // adler32 value of the uncompressed data | ||||||
|  |     reserved: uLong;          // reserved for future use | ||||||
|  |     end; | ||||||
|  |  | ||||||
|  | const | ||||||
|  |   Z_NO_FLUSH      = 0; | ||||||
|  |   Z_SYNC_FLUSH    = 2; | ||||||
|  |   Z_FULL_FLUSH    = 3; | ||||||
|  |   Z_FINISH        = 4; | ||||||
|  |  | ||||||
|  |   Z_OK            = 0; | ||||||
|  |   Z_STREAM_END    = 1; | ||||||
|  |  | ||||||
|  |   Z_NO_COMPRESSION         =  0; | ||||||
|  |   Z_BEST_SPEED             =  1; | ||||||
|  |   Z_BEST_COMPRESSION       =  9; | ||||||
|  |   Z_DEFAULT_COMPRESSION    = -1; | ||||||
|  |  | ||||||
|  |   Z_FILTERED            = 1; | ||||||
|  |   Z_HUFFMAN_ONLY        = 2; | ||||||
|  |   Z_DEFAULT_STRATEGY    = 0; | ||||||
|  |  | ||||||
|  |   Z_BINARY   = 0; | ||||||
|  |   Z_ASCII    = 1; | ||||||
|  |   Z_UNKNOWN  = 2; | ||||||
|  |  | ||||||
|  |   Z_DEFLATED    = 8; | ||||||
|  |  | ||||||
|  |   MAX_MEM_LEVEL = 9; | ||||||
|  |  | ||||||
|  | function adler32(adler: uLong; const buf: pBytef; len: uInt): uLong; | ||||||
|  |              stdcall; | ||||||
|  | function crc32(crc: uLong; const buf: pBytef; len: uInt): uLong; | ||||||
|  |              stdcall; | ||||||
|  | function deflate(strm: z_streamp; flush: int): int; | ||||||
|  |              stdcall; | ||||||
|  | function deflateCopy(dest, source: z_streamp): int; | ||||||
|  |              stdcall; | ||||||
|  | function deflateEnd(strm: z_streamp): int; | ||||||
|  |              stdcall; | ||||||
|  | function deflateInit2_(strm: z_streamp; level, method, | ||||||
|  |                        windowBits, memLevel, strategy: int; | ||||||
|  |                        const version: PChar; stream_size: int): int; | ||||||
|  |              stdcall; | ||||||
|  | function deflateInit_(strm: z_streamp; level: int; | ||||||
|  |                       const version: PChar; stream_size: int): int; | ||||||
|  |              stdcall; | ||||||
|  | function deflateParams(strm: z_streamp; level, strategy: int): int; | ||||||
|  |              stdcall; | ||||||
|  | function deflateReset(strm: z_streamp): int; | ||||||
|  |              stdcall; | ||||||
|  | function deflateSetDictionary(strm: z_streamp; | ||||||
|  |                               const dictionary: pBytef; | ||||||
|  |                               dictLength: uInt): int; | ||||||
|  |              stdcall; | ||||||
|  | function inflate(strm: z_streamp; flush: int): int; | ||||||
|  |              stdcall; | ||||||
|  | function inflateEnd(strm: z_streamp): int; | ||||||
|  |              stdcall; | ||||||
|  | function inflateInit2_(strm: z_streamp; windowBits: int; | ||||||
|  |                        const version: PChar; stream_size: int): int; | ||||||
|  |              stdcall; | ||||||
|  | function inflateInit_(strm: z_streamp; const version: PChar; | ||||||
|  |                       stream_size: int): int; | ||||||
|  |              stdcall; | ||||||
|  | function inflateReset(strm: z_streamp): int; | ||||||
|  |              stdcall; | ||||||
|  | function inflateSetDictionary(strm: z_streamp; | ||||||
|  |                               const dictionary: pBytef; | ||||||
|  |                               dictLength: uInt): int; | ||||||
|  |              stdcall; | ||||||
|  | function inflateSync(strm: z_streamp): int; | ||||||
|  |              stdcall; | ||||||
|  |  | ||||||
|  | function deflateInit(strm: z_streamp; level: int): int; | ||||||
|  | function deflateInit2(strm: z_streamp; level, method, windowBits, | ||||||
|  |                       memLevel, strategy: int): int; | ||||||
|  | function inflateInit(strm: z_streamp): int; | ||||||
|  | function inflateInit2(strm: z_streamp; windowBits: int): int; | ||||||
|  |  | ||||||
|  | implementation | ||||||
|  |  | ||||||
|  | function deflateInit(strm: z_streamp; level: int): int; | ||||||
|  | begin | ||||||
|  |   Result := deflateInit_(strm, level, ZLIB_VERSION, sizeof(z_stream)); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function deflateInit2(strm: z_streamp; level, method, windowBits, | ||||||
|  |                       memLevel, strategy: int): int; | ||||||
|  | begin | ||||||
|  |   Result := deflateInit2_(strm, level, method, windowBits, memLevel, | ||||||
|  |                           strategy, ZLIB_VERSION, sizeof(z_stream)); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function inflateInit(strm: z_streamp): int; | ||||||
|  | begin | ||||||
|  |   Result := inflateInit_(strm, ZLIB_VERSION, sizeof(z_stream)); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function inflateInit2(strm: z_streamp; windowBits: int): int; | ||||||
|  | begin | ||||||
|  |   Result := inflateInit2_(strm, windowBits, ZLIB_VERSION, | ||||||
|  |                           sizeof(z_stream)); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | const | ||||||
|  |   zlibDLL = 'png32bd.dll'; | ||||||
|  |  | ||||||
|  | function adler32; external zlibDLL; | ||||||
|  | function crc32; external zlibDLL; | ||||||
|  | function deflate; external zlibDLL; | ||||||
|  | function deflateCopy; external zlibDLL; | ||||||
|  | function deflateEnd; external zlibDLL; | ||||||
|  | function deflateInit2_; external zlibDLL; | ||||||
|  | function deflateInit_; external zlibDLL; | ||||||
|  | function deflateParams; external zlibDLL; | ||||||
|  | function deflateReset; external zlibDLL; | ||||||
|  | function deflateSetDictionary; external zlibDLL; | ||||||
|  | function inflate; external zlibDLL; | ||||||
|  | function inflateEnd; external zlibDLL; | ||||||
|  | function inflateInit2_; external zlibDLL; | ||||||
|  | function inflateInit_; external zlibDLL; | ||||||
|  | function inflateReset; external zlibDLL; | ||||||
|  | function inflateSetDictionary; external zlibDLL; | ||||||
|  | function inflateSync; external zlibDLL; | ||||||
|  |  | ||||||
|  | end. | ||||||
							
								
								
									
										224
									
								
								contrib/delphi2/d_zlib.bpr
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										224
									
								
								contrib/delphi2/d_zlib.bpr
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,224 @@ | |||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !if !$d(BCB) | ||||||
|  | BCB = $(MAKEDIR)\.. | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | # IDE SECTION | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | # The following section of the project makefile is managed by the BCB IDE. | ||||||
|  | # It is recommended to use the IDE to change any of the values in this | ||||||
|  | # section. | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  |  | ||||||
|  | VERSION = BCB.03 | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | PROJECT = d_zlib.lib | ||||||
|  | OBJFILES = d_zlib.obj adler32.obj deflate.obj infblock.obj infcodes.obj inffast.obj \ | ||||||
|  |   inflate.obj inftrees.obj infutil.obj trees.obj | ||||||
|  | RESFILES = | ||||||
|  | RESDEPEN = $(RESFILES) | ||||||
|  | LIBFILES = | ||||||
|  | LIBRARIES = VCL35.lib | ||||||
|  | SPARELIBS = VCL35.lib | ||||||
|  | DEFFILE = | ||||||
|  | PACKAGES = VCLX35.bpi VCL35.bpi VCLDB35.bpi VCLDBX35.bpi ibsmp35.bpi bcbsmp35.bpi \ | ||||||
|  |   dclocx35.bpi QRPT35.bpi TEEUI35.bpi TEEDB35.bpi TEE35.bpi DSS35.bpi \ | ||||||
|  |   NMFAST35.bpi INETDB35.bpi INET35.bpi VCLMID35.bpi | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | PATHCPP = .; | ||||||
|  | PATHASM = .; | ||||||
|  | PATHPAS = .; | ||||||
|  | PATHRC = .; | ||||||
|  | DEBUGLIBPATH = $(BCB)\lib\debug | ||||||
|  | RELEASELIBPATH = $(BCB)\lib\release | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | CFLAG1 = -O2 -Ve -d -k- -vi | ||||||
|  | CFLAG2 = -I$(BCB)\include;$(BCB)\include\vcl -H=$(BCB)\lib\vcl35.csm | ||||||
|  | CFLAG3 = -ff -pr -5 | ||||||
|  | PFLAGS = -U;$(DEBUGLIBPATH) -I$(BCB)\include;$(BCB)\include\vcl -H -W -$I- -v -JPHN -M | ||||||
|  | RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl  | ||||||
|  | AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zn | ||||||
|  | LFLAGS = | ||||||
|  | IFLAGS = -g -Gn | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | ALLOBJ = c0w32.obj $(OBJFILES) | ||||||
|  | ALLRES = $(RESFILES) | ||||||
|  | ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mt.lib | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !!ifdef IDEOPTIONS | ||||||
|  |  | ||||||
|  | [Version Info] | ||||||
|  | IncludeVerInfo=0 | ||||||
|  | AutoIncBuild=0 | ||||||
|  | MajorVer=1 | ||||||
|  | MinorVer=0 | ||||||
|  | Release=0 | ||||||
|  | Build=0 | ||||||
|  | Debug=0 | ||||||
|  | PreRelease=0 | ||||||
|  | Special=0 | ||||||
|  | Private=0 | ||||||
|  | DLL=0 | ||||||
|  | Locale=1040 | ||||||
|  | CodePage=1252 | ||||||
|  |  | ||||||
|  | [Version Info Keys] | ||||||
|  | CompanyName= | ||||||
|  | FileDescription= | ||||||
|  | FileVersion=1.0.0.0 | ||||||
|  | InternalName= | ||||||
|  | LegalCopyright= | ||||||
|  | LegalTrademarks= | ||||||
|  | OriginalFilename= | ||||||
|  | ProductName= | ||||||
|  | ProductVersion=1.0.0.0 | ||||||
|  | Comments= | ||||||
|  |  | ||||||
|  | [HistoryLists\hlIncludePath] | ||||||
|  | Count=2 | ||||||
|  | Item0=$(BCB)\include | ||||||
|  | Item1=$(BCB)\include;$(BCB)\include\vcl | ||||||
|  |  | ||||||
|  | [HistoryLists\hlLibraryPath] | ||||||
|  | Count=1 | ||||||
|  | Item0=$(BCB)\lib\obj;$(BCB)\lib | ||||||
|  |  | ||||||
|  | [HistoryLists\hlDebugSourcePath] | ||||||
|  | Count=1 | ||||||
|  | Item0=$(BCB)\source\vcl | ||||||
|  |  | ||||||
|  | [Debugging] | ||||||
|  | DebugSourceDirs= | ||||||
|  |  | ||||||
|  | [Parameters] | ||||||
|  | RunParams= | ||||||
|  | HostApplication= | ||||||
|  |  | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  |  --------------------------------------------------------------------------- | ||||||
|  | # MAKE SECTION | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | # This section of the project file is not used by the BCB IDE.  It is for | ||||||
|  | # the benefit of building from the command-line using the MAKE utility. | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  |  | ||||||
|  | .autodepend | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !if !$d(BCC32) | ||||||
|  | BCC32 = bcc32 | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(DCC32) | ||||||
|  | DCC32 = dcc32 | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(TASM32) | ||||||
|  | TASM32 = tasm32 | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(LINKER) | ||||||
|  | LINKER = TLib | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(BRCC32) | ||||||
|  | BRCC32 = brcc32 | ||||||
|  | !endif | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !if $d(PATHCPP) | ||||||
|  | .PATH.CPP = $(PATHCPP) | ||||||
|  | .PATH.C   = $(PATHCPP) | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if $d(PATHPAS) | ||||||
|  | .PATH.PAS = $(PATHPAS) | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if $d(PATHASM) | ||||||
|  | .PATH.ASM = $(PATHASM) | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if $d(PATHRC) | ||||||
|  | .PATH.RC  = $(PATHRC) | ||||||
|  | !endif | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !ifdef IDEOPTIONS | ||||||
|  |  | ||||||
|  | [Version Info] | ||||||
|  | IncludeVerInfo=0 | ||||||
|  | AutoIncBuild=0 | ||||||
|  | MajorVer=1 | ||||||
|  | MinorVer=0 | ||||||
|  | Release=0 | ||||||
|  | Build=0 | ||||||
|  | Debug=0 | ||||||
|  | PreRelease=0 | ||||||
|  | Special=0 | ||||||
|  | Private=0 | ||||||
|  | DLL=0 | ||||||
|  | Locale=1040 | ||||||
|  | CodePage=1252 | ||||||
|  |  | ||||||
|  | [Version Info Keys] | ||||||
|  | CompanyName= | ||||||
|  | FileDescription= | ||||||
|  | FileVersion=1.0.0.0 | ||||||
|  | InternalName= | ||||||
|  | LegalCopyright= | ||||||
|  | LegalTrademarks= | ||||||
|  | OriginalFilename= | ||||||
|  | ProductName= | ||||||
|  | ProductVersion=1.0.0.0 | ||||||
|  | Comments= | ||||||
|  |  | ||||||
|  | [HistoryLists\hlIncludePath] | ||||||
|  | Count=2 | ||||||
|  | Item0=$(BCB)\include;$(BCB)\include\vcl | ||||||
|  | Item1=$(BCB)\include | ||||||
|  |  | ||||||
|  | [HistoryLists\hlLibraryPath] | ||||||
|  | Count=1 | ||||||
|  | Item0=$(BCB)\lib\obj;$(BCB)\lib | ||||||
|  |  | ||||||
|  | [HistoryLists\hlDebugSourcePath] | ||||||
|  | Count=1 | ||||||
|  | Item0=$(BCB)\source\vcl | ||||||
|  |  | ||||||
|  | [Debugging] | ||||||
|  | DebugSourceDirs= | ||||||
|  |  | ||||||
|  | [Parameters] | ||||||
|  | RunParams= | ||||||
|  | HostApplication= | ||||||
|  |  | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE) | ||||||
|  |     $(BCB)\BIN\$(LINKER) @&&! | ||||||
|  |     $(LFLAGS) $(IFLAGS) + | ||||||
|  |     $(ALLOBJ), + | ||||||
|  |     $(PROJECT),, + | ||||||
|  |     $(ALLLIB), + | ||||||
|  |     $(DEFFILE), + | ||||||
|  |     $(ALLRES) | ||||||
|  | ! | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | .pas.hpp: | ||||||
|  |     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< } | ||||||
|  |  | ||||||
|  | .pas.obj: | ||||||
|  |     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< } | ||||||
|  |  | ||||||
|  | .cpp.obj: | ||||||
|  |     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< } | ||||||
|  |  | ||||||
|  | .c.obj: | ||||||
|  |     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< } | ||||||
|  |  | ||||||
|  | .asm.obj: | ||||||
|  |     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@ | ||||||
|  |  | ||||||
|  | .rc.res: | ||||||
|  |     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $< | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
							
								
								
									
										17
									
								
								contrib/delphi2/d_zlib.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								contrib/delphi2/d_zlib.cpp
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | |||||||
|  | #include <condefs.h> | ||||||
|  | #pragma hdrstop | ||||||
|  | //--------------------------------------------------------------------------- | ||||||
|  | USEUNIT("adler32.c"); | ||||||
|  | USEUNIT("deflate.c"); | ||||||
|  | USEUNIT("infblock.c"); | ||||||
|  | USEUNIT("infcodes.c"); | ||||||
|  | USEUNIT("inffast.c"); | ||||||
|  | USEUNIT("inflate.c"); | ||||||
|  | USEUNIT("inftrees.c"); | ||||||
|  | USEUNIT("infutil.c"); | ||||||
|  | USEUNIT("trees.c"); | ||||||
|  | //--------------------------------------------------------------------------- | ||||||
|  | #define Library | ||||||
|  |  | ||||||
|  | // To add a file to the library use the Project menu 'Add to Project'. | ||||||
|  |  | ||||||
							
								
								
									
										17
									
								
								contrib/delphi2/readme.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								contrib/delphi2/readme.txt
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | |||||||
|  | These are files used to compile zlib under Borland C++ Builder 3. | ||||||
|  |  | ||||||
|  | zlib.bpg is the main project group that can be loaded in the BCB IDE and | ||||||
|  | loads all other *.bpr projects | ||||||
|  |  | ||||||
|  | zlib.bpr is a project used to create a static zlib.lib library with C calling | ||||||
|  | convention for functions. | ||||||
|  |  | ||||||
|  | zlib32.bpr creates a zlib32.dll dynamic link library with Windows standard | ||||||
|  | calling convention. | ||||||
|  |  | ||||||
|  | d_zlib.bpr creates a set of .obj files with register calling convention. | ||||||
|  | These files are used by zlib.pas to create a Delphi unit containing zlib. | ||||||
|  | The d_zlib.lib file generated isn't useful and can be deleted. | ||||||
|  |  | ||||||
|  | zlib.cpp, zlib32.cpp and d_zlib.cpp are used by the above projects. | ||||||
|  |  | ||||||
							
								
								
									
										26
									
								
								contrib/delphi2/zlib.bpg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								contrib/delphi2/zlib.bpg
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | |||||||
|  | #------------------------------------------------------------------------------ | ||||||
|  | VERSION = BWS.01 | ||||||
|  | #------------------------------------------------------------------------------ | ||||||
|  | !ifndef ROOT | ||||||
|  | ROOT = $(MAKEDIR)\.. | ||||||
|  | !endif | ||||||
|  | #------------------------------------------------------------------------------ | ||||||
|  | MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$** | ||||||
|  | DCC = $(ROOT)\bin\dcc32.exe $** | ||||||
|  | BRCC = $(ROOT)\bin\brcc32.exe $** | ||||||
|  | #------------------------------------------------------------------------------ | ||||||
|  | PROJECTS = zlib zlib32 d_zlib | ||||||
|  | #------------------------------------------------------------------------------ | ||||||
|  | default: $(PROJECTS) | ||||||
|  | #------------------------------------------------------------------------------ | ||||||
|  |  | ||||||
|  | zlib: zlib.bpr | ||||||
|  |   $(MAKE) | ||||||
|  |  | ||||||
|  | zlib32: zlib32.bpr | ||||||
|  |   $(MAKE) | ||||||
|  |  | ||||||
|  | d_zlib: d_zlib.bpr | ||||||
|  |   $(MAKE) | ||||||
|  |  | ||||||
|  |  | ||||||
							
								
								
									
										225
									
								
								contrib/delphi2/zlib.bpr
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										225
									
								
								contrib/delphi2/zlib.bpr
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,225 @@ | |||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !if !$d(BCB) | ||||||
|  | BCB = $(MAKEDIR)\.. | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | # IDE SECTION | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | # The following section of the project makefile is managed by the BCB IDE. | ||||||
|  | # It is recommended to use the IDE to change any of the values in this | ||||||
|  | # section. | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  |  | ||||||
|  | VERSION = BCB.03 | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | PROJECT = zlib.lib | ||||||
|  | OBJFILES = zlib.obj adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infblock.obj \ | ||||||
|  |   infcodes.obj inffast.obj inflate.obj inftrees.obj infutil.obj trees.obj \ | ||||||
|  |   uncompr.obj zutil.obj | ||||||
|  | RESFILES = | ||||||
|  | RESDEPEN = $(RESFILES) | ||||||
|  | LIBFILES = | ||||||
|  | LIBRARIES = VCL35.lib | ||||||
|  | SPARELIBS = VCL35.lib | ||||||
|  | DEFFILE = | ||||||
|  | PACKAGES = VCLX35.bpi VCL35.bpi VCLDB35.bpi VCLDBX35.bpi ibsmp35.bpi bcbsmp35.bpi \ | ||||||
|  |   dclocx35.bpi QRPT35.bpi TEEUI35.bpi TEEDB35.bpi TEE35.bpi DSS35.bpi \ | ||||||
|  |   NMFAST35.bpi INETDB35.bpi INET35.bpi VCLMID35.bpi | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | PATHCPP = .; | ||||||
|  | PATHASM = .; | ||||||
|  | PATHPAS = .; | ||||||
|  | PATHRC = .; | ||||||
|  | DEBUGLIBPATH = $(BCB)\lib\debug | ||||||
|  | RELEASELIBPATH = $(BCB)\lib\release | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | CFLAG1 = -O2 -Ve -d -k- -vi | ||||||
|  | CFLAG2 = -I$(BCB)\include;$(BCB)\include\vcl -H=$(BCB)\lib\vcl35.csm | ||||||
|  | CFLAG3 = -ff -5 | ||||||
|  | PFLAGS = -U;$(DEBUGLIBPATH) -I$(BCB)\include;$(BCB)\include\vcl -H -W -$I- -v -JPHN -M | ||||||
|  | RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl  | ||||||
|  | AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zn | ||||||
|  | LFLAGS = | ||||||
|  | IFLAGS = -g -Gn | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | ALLOBJ = c0w32.obj $(OBJFILES) | ||||||
|  | ALLRES = $(RESFILES) | ||||||
|  | ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mt.lib | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !!ifdef IDEOPTIONS | ||||||
|  |  | ||||||
|  | [Version Info] | ||||||
|  | IncludeVerInfo=0 | ||||||
|  | AutoIncBuild=0 | ||||||
|  | MajorVer=1 | ||||||
|  | MinorVer=0 | ||||||
|  | Release=0 | ||||||
|  | Build=0 | ||||||
|  | Debug=0 | ||||||
|  | PreRelease=0 | ||||||
|  | Special=0 | ||||||
|  | Private=0 | ||||||
|  | DLL=0 | ||||||
|  | Locale=1040 | ||||||
|  | CodePage=1252 | ||||||
|  |  | ||||||
|  | [Version Info Keys] | ||||||
|  | CompanyName= | ||||||
|  | FileDescription= | ||||||
|  | FileVersion=1.0.0.0 | ||||||
|  | InternalName= | ||||||
|  | LegalCopyright= | ||||||
|  | LegalTrademarks= | ||||||
|  | OriginalFilename= | ||||||
|  | ProductName= | ||||||
|  | ProductVersion=1.0.0.0 | ||||||
|  | Comments= | ||||||
|  |  | ||||||
|  | [HistoryLists\hlIncludePath] | ||||||
|  | Count=2 | ||||||
|  | Item0=$(BCB)\include | ||||||
|  | Item1=$(BCB)\include;$(BCB)\include\vcl | ||||||
|  |  | ||||||
|  | [HistoryLists\hlLibraryPath] | ||||||
|  | Count=1 | ||||||
|  | Item0=$(BCB)\lib\obj;$(BCB)\lib | ||||||
|  |  | ||||||
|  | [HistoryLists\hlDebugSourcePath] | ||||||
|  | Count=1 | ||||||
|  | Item0=$(BCB)\source\vcl | ||||||
|  |  | ||||||
|  | [Debugging] | ||||||
|  | DebugSourceDirs= | ||||||
|  |  | ||||||
|  | [Parameters] | ||||||
|  | RunParams= | ||||||
|  | HostApplication= | ||||||
|  |  | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  |  --------------------------------------------------------------------------- | ||||||
|  | # MAKE SECTION | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | # This section of the project file is not used by the BCB IDE.  It is for | ||||||
|  | # the benefit of building from the command-line using the MAKE utility. | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  |  | ||||||
|  | .autodepend | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !if !$d(BCC32) | ||||||
|  | BCC32 = bcc32 | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(DCC32) | ||||||
|  | DCC32 = dcc32 | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(TASM32) | ||||||
|  | TASM32 = tasm32 | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(LINKER) | ||||||
|  | LINKER = TLib | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(BRCC32) | ||||||
|  | BRCC32 = brcc32 | ||||||
|  | !endif | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !if $d(PATHCPP) | ||||||
|  | .PATH.CPP = $(PATHCPP) | ||||||
|  | .PATH.C   = $(PATHCPP) | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if $d(PATHPAS) | ||||||
|  | .PATH.PAS = $(PATHPAS) | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if $d(PATHASM) | ||||||
|  | .PATH.ASM = $(PATHASM) | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if $d(PATHRC) | ||||||
|  | .PATH.RC  = $(PATHRC) | ||||||
|  | !endif | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !ifdef IDEOPTIONS | ||||||
|  |  | ||||||
|  | [Version Info] | ||||||
|  | IncludeVerInfo=0 | ||||||
|  | AutoIncBuild=0 | ||||||
|  | MajorVer=1 | ||||||
|  | MinorVer=0 | ||||||
|  | Release=0 | ||||||
|  | Build=0 | ||||||
|  | Debug=0 | ||||||
|  | PreRelease=0 | ||||||
|  | Special=0 | ||||||
|  | Private=0 | ||||||
|  | DLL=0 | ||||||
|  | Locale=1040 | ||||||
|  | CodePage=1252 | ||||||
|  |  | ||||||
|  | [Version Info Keys] | ||||||
|  | CompanyName= | ||||||
|  | FileDescription= | ||||||
|  | FileVersion=1.0.0.0 | ||||||
|  | InternalName= | ||||||
|  | LegalCopyright= | ||||||
|  | LegalTrademarks= | ||||||
|  | OriginalFilename= | ||||||
|  | ProductName= | ||||||
|  | ProductVersion=1.0.0.0 | ||||||
|  | Comments= | ||||||
|  |  | ||||||
|  | [HistoryLists\hlIncludePath] | ||||||
|  | Count=2 | ||||||
|  | Item0=$(BCB)\include;$(BCB)\include\vcl | ||||||
|  | Item1=$(BCB)\include | ||||||
|  |  | ||||||
|  | [HistoryLists\hlLibraryPath] | ||||||
|  | Count=1 | ||||||
|  | Item0=$(BCB)\lib\obj;$(BCB)\lib | ||||||
|  |  | ||||||
|  | [HistoryLists\hlDebugSourcePath] | ||||||
|  | Count=1 | ||||||
|  | Item0=$(BCB)\source\vcl | ||||||
|  |  | ||||||
|  | [Debugging] | ||||||
|  | DebugSourceDirs= | ||||||
|  |  | ||||||
|  | [Parameters] | ||||||
|  | RunParams= | ||||||
|  | HostApplication= | ||||||
|  |  | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE) | ||||||
|  |     $(BCB)\BIN\$(LINKER) @&&! | ||||||
|  |     $(LFLAGS) $(IFLAGS) + | ||||||
|  |     $(ALLOBJ), + | ||||||
|  |     $(PROJECT),, + | ||||||
|  |     $(ALLLIB), + | ||||||
|  |     $(DEFFILE), + | ||||||
|  |     $(ALLRES) | ||||||
|  | ! | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | .pas.hpp: | ||||||
|  |     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< } | ||||||
|  |  | ||||||
|  | .pas.obj: | ||||||
|  |     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< } | ||||||
|  |  | ||||||
|  | .cpp.obj: | ||||||
|  |     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< } | ||||||
|  |  | ||||||
|  | .c.obj: | ||||||
|  |     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< } | ||||||
|  |  | ||||||
|  | .asm.obj: | ||||||
|  |     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@ | ||||||
|  |  | ||||||
|  | .rc.res: | ||||||
|  |     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $< | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
							
								
								
									
										22
									
								
								contrib/delphi2/zlib.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								contrib/delphi2/zlib.cpp
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,22 @@ | |||||||
|  | #include <condefs.h> | ||||||
|  | #pragma hdrstop | ||||||
|  | //--------------------------------------------------------------------------- | ||||||
|  | USEUNIT("adler32.c"); | ||||||
|  | USEUNIT("compress.c"); | ||||||
|  | USEUNIT("crc32.c"); | ||||||
|  | USEUNIT("deflate.c"); | ||||||
|  | USEUNIT("gzio.c"); | ||||||
|  | USEUNIT("infblock.c"); | ||||||
|  | USEUNIT("infcodes.c"); | ||||||
|  | USEUNIT("inffast.c"); | ||||||
|  | USEUNIT("inflate.c"); | ||||||
|  | USEUNIT("inftrees.c"); | ||||||
|  | USEUNIT("infutil.c"); | ||||||
|  | USEUNIT("trees.c"); | ||||||
|  | USEUNIT("uncompr.c"); | ||||||
|  | USEUNIT("zutil.c"); | ||||||
|  | //--------------------------------------------------------------------------- | ||||||
|  | #define Library | ||||||
|  |  | ||||||
|  | // To add a file to the library use the Project menu 'Add to Project'. | ||||||
|  |  | ||||||
							
								
								
									
										534
									
								
								contrib/delphi2/zlib.pas
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										534
									
								
								contrib/delphi2/zlib.pas
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,534 @@ | |||||||
|  | {*******************************************************} | ||||||
|  | {                                                       } | ||||||
|  | {       Delphi Supplemental Components                  } | ||||||
|  | {       ZLIB Data Compression Interface Unit            } | ||||||
|  | {                                                       } | ||||||
|  | {       Copyright (c) 1997 Borland International        } | ||||||
|  | {                                                       } | ||||||
|  | {*******************************************************} | ||||||
|  |  | ||||||
|  | { Modified for zlib 1.1.3 by Davide Moretti <dave@rimini.com } | ||||||
|  |  | ||||||
|  | unit zlib; | ||||||
|  |  | ||||||
|  | interface | ||||||
|  |  | ||||||
|  | uses Sysutils, Classes; | ||||||
|  |  | ||||||
|  | type | ||||||
|  |   TAlloc = function (AppData: Pointer; Items, Size: Integer): Pointer; | ||||||
|  |   TFree = procedure (AppData, Block: Pointer); | ||||||
|  |  | ||||||
|  |   // Internal structure.  Ignore. | ||||||
|  |   TZStreamRec = packed record | ||||||
|  |     next_in: PChar;       // next input byte | ||||||
|  |     avail_in: Integer;    // number of bytes available at next_in | ||||||
|  |     total_in: Integer;    // total nb of input bytes read so far | ||||||
|  |  | ||||||
|  |     next_out: PChar;      // next output byte should be put here | ||||||
|  |     avail_out: Integer;   // remaining free space at next_out | ||||||
|  |     total_out: Integer;   // total nb of bytes output so far | ||||||
|  |  | ||||||
|  |     msg: PChar;           // last error message, NULL if no error | ||||||
|  |     internal: Pointer;    // not visible by applications | ||||||
|  |  | ||||||
|  |     zalloc: TAlloc;       // used to allocate the internal state | ||||||
|  |     zfree: TFree;         // used to free the internal state | ||||||
|  |     AppData: Pointer;     // private data object passed to zalloc and zfree | ||||||
|  |  | ||||||
|  |     data_type: Integer;   //  best guess about the data type: ascii or binary | ||||||
|  |     adler: Integer;       // adler32 value of the uncompressed data | ||||||
|  |     reserved: Integer;    // reserved for future use | ||||||
|  |   end; | ||||||
|  |  | ||||||
|  |   // Abstract ancestor class | ||||||
|  |   TCustomZlibStream = class(TStream) | ||||||
|  |   private | ||||||
|  |     FStrm: TStream; | ||||||
|  |     FStrmPos: Integer; | ||||||
|  |     FOnProgress: TNotifyEvent; | ||||||
|  |     FZRec: TZStreamRec; | ||||||
|  |     FBuffer: array [Word] of Char; | ||||||
|  |   protected | ||||||
|  |     procedure Progress(Sender: TObject); dynamic; | ||||||
|  |     property OnProgress: TNotifyEvent read FOnProgress write FOnProgress; | ||||||
|  |     constructor Create(Strm: TStream); | ||||||
|  |   end; | ||||||
|  |  | ||||||
|  | { TCompressionStream compresses data on the fly as data is written to it, and | ||||||
|  |   stores the compressed data to another stream. | ||||||
|  |  | ||||||
|  |   TCompressionStream is write-only and strictly sequential. Reading from the | ||||||
|  |   stream will raise an exception. Using Seek to move the stream pointer | ||||||
|  |   will raise an exception. | ||||||
|  |  | ||||||
|  |   Output data is cached internally, written to the output stream only when | ||||||
|  |   the internal output buffer is full.  All pending output data is flushed | ||||||
|  |   when the stream is destroyed. | ||||||
|  |  | ||||||
|  |   The Position property returns the number of uncompressed bytes of | ||||||
|  |   data that have been written to the stream so far. | ||||||
|  |  | ||||||
|  |   CompressionRate returns the on-the-fly percentage by which the original | ||||||
|  |   data has been compressed:  (1 - (CompressedBytes / UncompressedBytes)) * 100 | ||||||
|  |   If raw data size = 100 and compressed data size = 25, the CompressionRate | ||||||
|  |   is 75% | ||||||
|  |  | ||||||
|  |   The OnProgress event is called each time the output buffer is filled and | ||||||
|  |   written to the output stream.  This is useful for updating a progress | ||||||
|  |   indicator when you are writing a large chunk of data to the compression | ||||||
|  |   stream in a single call.} | ||||||
|  |  | ||||||
|  |  | ||||||
|  |   TCompressionLevel = (clNone, clFastest, clDefault, clMax); | ||||||
|  |  | ||||||
|  |   TCompressionStream = class(TCustomZlibStream) | ||||||
|  |   private | ||||||
|  |     function GetCompressionRate: Single; | ||||||
|  |   public | ||||||
|  |     constructor Create(CompressionLevel: TCompressionLevel; Dest: TStream); | ||||||
|  |     destructor Destroy; override; | ||||||
|  |     function Read(var Buffer; Count: Longint): Longint; override; | ||||||
|  |     function Write(const Buffer; Count: Longint): Longint; override; | ||||||
|  |     function Seek(Offset: Longint; Origin: Word): Longint; override; | ||||||
|  |     property CompressionRate: Single read GetCompressionRate; | ||||||
|  |     property OnProgress; | ||||||
|  |   end; | ||||||
|  |  | ||||||
|  | { TDecompressionStream decompresses data on the fly as data is read from it. | ||||||
|  |  | ||||||
|  |   Compressed data comes from a separate source stream.  TDecompressionStream | ||||||
|  |   is read-only and unidirectional; you can seek forward in the stream, but not | ||||||
|  |   backwards.  The special case of setting the stream position to zero is | ||||||
|  |   allowed.  Seeking forward decompresses data until the requested position in | ||||||
|  |   the uncompressed data has been reached.  Seeking backwards, seeking relative | ||||||
|  |   to the end of the stream, requesting the size of the stream, and writing to | ||||||
|  |   the stream will raise an exception. | ||||||
|  |  | ||||||
|  |   The Position property returns the number of bytes of uncompressed data that | ||||||
|  |   have been read from the stream so far. | ||||||
|  |  | ||||||
|  |   The OnProgress event is called each time the internal input buffer of | ||||||
|  |   compressed data is exhausted and the next block is read from the input stream. | ||||||
|  |   This is useful for updating a progress indicator when you are reading a | ||||||
|  |   large chunk of data from the decompression stream in a single call.} | ||||||
|  |  | ||||||
|  |   TDecompressionStream = class(TCustomZlibStream) | ||||||
|  |   public | ||||||
|  |     constructor Create(Source: TStream); | ||||||
|  |     destructor Destroy; override; | ||||||
|  |     function Read(var Buffer; Count: Longint): Longint; override; | ||||||
|  |     function Write(const Buffer; Count: Longint): Longint; override; | ||||||
|  |     function Seek(Offset: Longint; Origin: Word): Longint; override; | ||||||
|  |     property OnProgress; | ||||||
|  |   end; | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | { CompressBuf compresses data, buffer to buffer, in one call. | ||||||
|  |    In: InBuf = ptr to compressed data | ||||||
|  |        InBytes = number of bytes in InBuf | ||||||
|  |   Out: OutBuf = ptr to newly allocated buffer containing decompressed data | ||||||
|  |        OutBytes = number of bytes in OutBuf   } | ||||||
|  | procedure CompressBuf(const InBuf: Pointer; InBytes: Integer; | ||||||
|  |                       out OutBuf: Pointer; out OutBytes: Integer); | ||||||
|  |  | ||||||
|  |  | ||||||
|  | { DecompressBuf decompresses data, buffer to buffer, in one call. | ||||||
|  |    In: InBuf = ptr to compressed data | ||||||
|  |        InBytes = number of bytes in InBuf | ||||||
|  |        OutEstimate = zero, or est. size of the decompressed data | ||||||
|  |   Out: OutBuf = ptr to newly allocated buffer containing decompressed data | ||||||
|  |        OutBytes = number of bytes in OutBuf   } | ||||||
|  | procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer; | ||||||
|  |  OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer); | ||||||
|  |  | ||||||
|  | const | ||||||
|  |   zlib_version = '1.1.3'; | ||||||
|  |  | ||||||
|  | type | ||||||
|  |   EZlibError = class(Exception); | ||||||
|  |   ECompressionError = class(EZlibError); | ||||||
|  |   EDecompressionError = class(EZlibError); | ||||||
|  |  | ||||||
|  | function adler32(adler: Integer; buf: PChar; len: Integer): Integer; | ||||||
|  |  | ||||||
|  | implementation | ||||||
|  |  | ||||||
|  | const | ||||||
|  |   Z_NO_FLUSH      = 0; | ||||||
|  |   Z_PARTIAL_FLUSH = 1; | ||||||
|  |   Z_SYNC_FLUSH    = 2; | ||||||
|  |   Z_FULL_FLUSH    = 3; | ||||||
|  |   Z_FINISH        = 4; | ||||||
|  |  | ||||||
|  |   Z_OK            = 0; | ||||||
|  |   Z_STREAM_END    = 1; | ||||||
|  |   Z_NEED_DICT     = 2; | ||||||
|  |   Z_ERRNO         = (-1); | ||||||
|  |   Z_STREAM_ERROR  = (-2); | ||||||
|  |   Z_DATA_ERROR    = (-3); | ||||||
|  |   Z_MEM_ERROR     = (-4); | ||||||
|  |   Z_BUF_ERROR     = (-5); | ||||||
|  |   Z_VERSION_ERROR = (-6); | ||||||
|  |  | ||||||
|  |   Z_NO_COMPRESSION       =   0; | ||||||
|  |   Z_BEST_SPEED           =   1; | ||||||
|  |   Z_BEST_COMPRESSION     =   9; | ||||||
|  |   Z_DEFAULT_COMPRESSION  = (-1); | ||||||
|  |  | ||||||
|  |   Z_FILTERED            = 1; | ||||||
|  |   Z_HUFFMAN_ONLY        = 2; | ||||||
|  |   Z_DEFAULT_STRATEGY    = 0; | ||||||
|  |  | ||||||
|  |   Z_BINARY   = 0; | ||||||
|  |   Z_ASCII    = 1; | ||||||
|  |   Z_UNKNOWN  = 2; | ||||||
|  |  | ||||||
|  |   Z_DEFLATED = 8; | ||||||
|  |  | ||||||
|  |   _z_errmsg: array[0..9] of PChar = ( | ||||||
|  |     'need dictionary',      // Z_NEED_DICT      (2) | ||||||
|  |     'stream end',           // Z_STREAM_END     (1) | ||||||
|  |     '',                     // Z_OK             (0) | ||||||
|  |     'file error',           // Z_ERRNO          (-1) | ||||||
|  |     'stream error',         // Z_STREAM_ERROR   (-2) | ||||||
|  |     'data error',           // Z_DATA_ERROR     (-3) | ||||||
|  |     'insufficient memory',  // Z_MEM_ERROR      (-4) | ||||||
|  |     'buffer error',         // Z_BUF_ERROR      (-5) | ||||||
|  |     'incompatible version', // Z_VERSION_ERROR  (-6) | ||||||
|  |     '' | ||||||
|  |   ); | ||||||
|  |  | ||||||
|  | {$L deflate.obj} | ||||||
|  | {$L inflate.obj} | ||||||
|  | {$L inftrees.obj} | ||||||
|  | {$L trees.obj} | ||||||
|  | {$L adler32.obj} | ||||||
|  | {$L infblock.obj} | ||||||
|  | {$L infcodes.obj} | ||||||
|  | {$L infutil.obj} | ||||||
|  | {$L inffast.obj} | ||||||
|  |  | ||||||
|  | procedure _tr_init; external; | ||||||
|  | procedure _tr_tally; external; | ||||||
|  | procedure _tr_flush_block; external; | ||||||
|  | procedure _tr_align; external; | ||||||
|  | procedure _tr_stored_block; external; | ||||||
|  | function adler32; external; | ||||||
|  | procedure inflate_blocks_new; external; | ||||||
|  | procedure inflate_blocks; external; | ||||||
|  | procedure inflate_blocks_reset; external; | ||||||
|  | procedure inflate_blocks_free; external; | ||||||
|  | procedure inflate_set_dictionary; external; | ||||||
|  | procedure inflate_trees_bits; external; | ||||||
|  | procedure inflate_trees_dynamic; external; | ||||||
|  | procedure inflate_trees_fixed; external; | ||||||
|  | procedure inflate_codes_new; external; | ||||||
|  | procedure inflate_codes; external; | ||||||
|  | procedure inflate_codes_free; external; | ||||||
|  | procedure _inflate_mask; external; | ||||||
|  | procedure inflate_flush; external; | ||||||
|  | procedure inflate_fast; external; | ||||||
|  |  | ||||||
|  | procedure _memset(P: Pointer; B: Byte; count: Integer);cdecl; | ||||||
|  | begin | ||||||
|  |   FillChar(P^, count, B); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | procedure _memcpy(dest, source: Pointer; count: Integer);cdecl; | ||||||
|  | begin | ||||||
|  |   Move(source^, dest^, count); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | // deflate compresses data | ||||||
|  | function deflateInit_(var strm: TZStreamRec; level: Integer; version: PChar; | ||||||
|  |   recsize: Integer): Integer; external; | ||||||
|  | function deflate(var strm: TZStreamRec; flush: Integer): Integer; external; | ||||||
|  | function deflateEnd(var strm: TZStreamRec): Integer; external; | ||||||
|  |  | ||||||
|  | // inflate decompresses data | ||||||
|  | function inflateInit_(var strm: TZStreamRec; version: PChar; | ||||||
|  |   recsize: Integer): Integer; external; | ||||||
|  | function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; | ||||||
|  | function inflateEnd(var strm: TZStreamRec): Integer; external; | ||||||
|  | function inflateReset(var strm: TZStreamRec): Integer; external; | ||||||
|  |  | ||||||
|  |  | ||||||
|  | function zcalloc(AppData: Pointer; Items, Size: Integer): Pointer; | ||||||
|  | begin | ||||||
|  |   GetMem(Result, Items*Size); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | procedure zcfree(AppData, Block: Pointer); | ||||||
|  | begin | ||||||
|  |   FreeMem(Block); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function zlibCheck(code: Integer): Integer; | ||||||
|  | begin | ||||||
|  |   Result := code; | ||||||
|  |   if code < 0 then | ||||||
|  |     raise EZlibError.Create('error');    //!! | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function CCheck(code: Integer): Integer; | ||||||
|  | begin | ||||||
|  |   Result := code; | ||||||
|  |   if code < 0 then | ||||||
|  |     raise ECompressionError.Create('error'); //!! | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function DCheck(code: Integer): Integer; | ||||||
|  | begin | ||||||
|  |   Result := code; | ||||||
|  |   if code < 0 then | ||||||
|  |     raise EDecompressionError.Create('error');  //!! | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | procedure CompressBuf(const InBuf: Pointer; InBytes: Integer; | ||||||
|  |                       out OutBuf: Pointer; out OutBytes: Integer); | ||||||
|  | var | ||||||
|  |   strm: TZStreamRec; | ||||||
|  |   P: Pointer; | ||||||
|  | begin | ||||||
|  |   FillChar(strm, sizeof(strm), 0); | ||||||
|  |   OutBytes := ((InBytes + (InBytes div 10) + 12) + 255) and not 255; | ||||||
|  |   GetMem(OutBuf, OutBytes); | ||||||
|  |   try | ||||||
|  |     strm.next_in := InBuf; | ||||||
|  |     strm.avail_in := InBytes; | ||||||
|  |     strm.next_out := OutBuf; | ||||||
|  |     strm.avail_out := OutBytes; | ||||||
|  |     CCheck(deflateInit_(strm, Z_BEST_COMPRESSION, zlib_version, sizeof(strm))); | ||||||
|  |     try | ||||||
|  |       while CCheck(deflate(strm, Z_FINISH)) <> Z_STREAM_END do | ||||||
|  |       begin | ||||||
|  |         P := OutBuf; | ||||||
|  |         Inc(OutBytes, 256); | ||||||
|  |         ReallocMem(OutBuf, OutBytes); | ||||||
|  |         strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P))); | ||||||
|  |         strm.avail_out := 256; | ||||||
|  |       end; | ||||||
|  |     finally | ||||||
|  |       CCheck(deflateEnd(strm)); | ||||||
|  |     end; | ||||||
|  |     ReallocMem(OutBuf, strm.total_out); | ||||||
|  |     OutBytes := strm.total_out; | ||||||
|  |   except | ||||||
|  |     FreeMem(OutBuf); | ||||||
|  |     raise | ||||||
|  |   end; | ||||||
|  | end; | ||||||
|  |  | ||||||
|  |  | ||||||
|  | procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer; | ||||||
|  |   OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer); | ||||||
|  | var | ||||||
|  |   strm: TZStreamRec; | ||||||
|  |   P: Pointer; | ||||||
|  |   BufInc: Integer; | ||||||
|  | begin | ||||||
|  |   FillChar(strm, sizeof(strm), 0); | ||||||
|  |   BufInc := (InBytes + 255) and not 255; | ||||||
|  |   if OutEstimate = 0 then | ||||||
|  |     OutBytes := BufInc | ||||||
|  |   else | ||||||
|  |     OutBytes := OutEstimate; | ||||||
|  |   GetMem(OutBuf, OutBytes); | ||||||
|  |   try | ||||||
|  |     strm.next_in := InBuf; | ||||||
|  |     strm.avail_in := InBytes; | ||||||
|  |     strm.next_out := OutBuf; | ||||||
|  |     strm.avail_out := OutBytes; | ||||||
|  |     DCheck(inflateInit_(strm, zlib_version, sizeof(strm))); | ||||||
|  |     try | ||||||
|  |       while DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END do | ||||||
|  |       begin | ||||||
|  |         P := OutBuf; | ||||||
|  |         Inc(OutBytes, BufInc); | ||||||
|  |         ReallocMem(OutBuf, OutBytes); | ||||||
|  |         strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P))); | ||||||
|  |         strm.avail_out := BufInc; | ||||||
|  |       end; | ||||||
|  |     finally | ||||||
|  |       DCheck(inflateEnd(strm)); | ||||||
|  |     end; | ||||||
|  |     ReallocMem(OutBuf, strm.total_out); | ||||||
|  |     OutBytes := strm.total_out; | ||||||
|  |   except | ||||||
|  |     FreeMem(OutBuf); | ||||||
|  |     raise | ||||||
|  |   end; | ||||||
|  | end; | ||||||
|  |  | ||||||
|  |  | ||||||
|  | // TCustomZlibStream | ||||||
|  |  | ||||||
|  | constructor TCustomZLibStream.Create(Strm: TStream); | ||||||
|  | begin | ||||||
|  |   inherited Create; | ||||||
|  |   FStrm := Strm; | ||||||
|  |   FStrmPos := Strm.Position; | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | procedure TCustomZLibStream.Progress(Sender: TObject); | ||||||
|  | begin | ||||||
|  |   if Assigned(FOnProgress) then FOnProgress(Sender); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  |  | ||||||
|  | // TCompressionStream | ||||||
|  |  | ||||||
|  | constructor TCompressionStream.Create(CompressionLevel: TCompressionLevel; | ||||||
|  |   Dest: TStream); | ||||||
|  | const | ||||||
|  |   Levels: array [TCompressionLevel] of ShortInt = | ||||||
|  |     (Z_NO_COMPRESSION, Z_BEST_SPEED, Z_DEFAULT_COMPRESSION, Z_BEST_COMPRESSION); | ||||||
|  | begin | ||||||
|  |   inherited Create(Dest); | ||||||
|  |   FZRec.next_out := FBuffer; | ||||||
|  |   FZRec.avail_out := sizeof(FBuffer); | ||||||
|  |   CCheck(deflateInit_(FZRec, Levels[CompressionLevel], zlib_version, sizeof(FZRec))); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | destructor TCompressionStream.Destroy; | ||||||
|  | begin | ||||||
|  |   FZRec.next_in := nil; | ||||||
|  |   FZRec.avail_in := 0; | ||||||
|  |   try | ||||||
|  |     if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos; | ||||||
|  |     while (CCheck(deflate(FZRec, Z_FINISH)) <> Z_STREAM_END) | ||||||
|  |       and (FZRec.avail_out = 0) do | ||||||
|  |     begin | ||||||
|  |       FStrm.WriteBuffer(FBuffer, sizeof(FBuffer)); | ||||||
|  |       FZRec.next_out := FBuffer; | ||||||
|  |       FZRec.avail_out := sizeof(FBuffer); | ||||||
|  |     end; | ||||||
|  |     if FZRec.avail_out < sizeof(FBuffer) then | ||||||
|  |       FStrm.WriteBuffer(FBuffer, sizeof(FBuffer) - FZRec.avail_out); | ||||||
|  |   finally | ||||||
|  |     deflateEnd(FZRec); | ||||||
|  |   end; | ||||||
|  |   inherited Destroy; | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function TCompressionStream.Read(var Buffer; Count: Longint): Longint; | ||||||
|  | begin | ||||||
|  |   raise ECompressionError.Create('Invalid stream operation'); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function TCompressionStream.Write(const Buffer; Count: Longint): Longint; | ||||||
|  | begin | ||||||
|  |   FZRec.next_in := @Buffer; | ||||||
|  |   FZRec.avail_in := Count; | ||||||
|  |   if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos; | ||||||
|  |   while (FZRec.avail_in > 0) do | ||||||
|  |   begin | ||||||
|  |     CCheck(deflate(FZRec, 0)); | ||||||
|  |     if FZRec.avail_out = 0 then | ||||||
|  |     begin | ||||||
|  |       FStrm.WriteBuffer(FBuffer, sizeof(FBuffer)); | ||||||
|  |       FZRec.next_out := FBuffer; | ||||||
|  |       FZRec.avail_out := sizeof(FBuffer); | ||||||
|  |       FStrmPos := FStrm.Position; | ||||||
|  |       Progress(Self); | ||||||
|  |     end; | ||||||
|  |   end; | ||||||
|  |   Result := Count; | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function TCompressionStream.Seek(Offset: Longint; Origin: Word): Longint; | ||||||
|  | begin | ||||||
|  |   if (Offset = 0) and (Origin = soFromCurrent) then | ||||||
|  |     Result := FZRec.total_in | ||||||
|  |   else | ||||||
|  |     raise ECompressionError.Create('Invalid stream operation'); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function TCompressionStream.GetCompressionRate: Single; | ||||||
|  | begin | ||||||
|  |   if FZRec.total_in = 0 then | ||||||
|  |     Result := 0 | ||||||
|  |   else | ||||||
|  |     Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0; | ||||||
|  | end; | ||||||
|  |  | ||||||
|  |  | ||||||
|  | // TDecompressionStream | ||||||
|  |  | ||||||
|  | constructor TDecompressionStream.Create(Source: TStream); | ||||||
|  | begin | ||||||
|  |   inherited Create(Source); | ||||||
|  |   FZRec.next_in := FBuffer; | ||||||
|  |   FZRec.avail_in := 0; | ||||||
|  |   DCheck(inflateInit_(FZRec, zlib_version, sizeof(FZRec))); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | destructor TDecompressionStream.Destroy; | ||||||
|  | begin | ||||||
|  |   inflateEnd(FZRec); | ||||||
|  |   inherited Destroy; | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function TDecompressionStream.Read(var Buffer; Count: Longint): Longint; | ||||||
|  | begin | ||||||
|  |   FZRec.next_out := @Buffer; | ||||||
|  |   FZRec.avail_out := Count; | ||||||
|  |   if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos; | ||||||
|  |   while (FZRec.avail_out > 0) do | ||||||
|  |   begin | ||||||
|  |     if FZRec.avail_in = 0 then | ||||||
|  |     begin | ||||||
|  |       FZRec.avail_in := FStrm.Read(FBuffer, sizeof(FBuffer)); | ||||||
|  |       if FZRec.avail_in = 0 then | ||||||
|  |         begin | ||||||
|  |           Result := Count - FZRec.avail_out; | ||||||
|  |           Exit; | ||||||
|  |         end; | ||||||
|  |       FZRec.next_in := FBuffer; | ||||||
|  |       FStrmPos := FStrm.Position; | ||||||
|  |       Progress(Self); | ||||||
|  |     end; | ||||||
|  |     DCheck(inflate(FZRec, 0)); | ||||||
|  |   end; | ||||||
|  |   Result := Count; | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function TDecompressionStream.Write(const Buffer; Count: Longint): Longint; | ||||||
|  | begin | ||||||
|  |   raise EDecompressionError.Create('Invalid stream operation'); | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | function TDecompressionStream.Seek(Offset: Longint; Origin: Word): Longint; | ||||||
|  | var | ||||||
|  |   I: Integer; | ||||||
|  |   Buf: array [0..4095] of Char; | ||||||
|  | begin | ||||||
|  |   if (Offset = 0) and (Origin = soFromBeginning) then | ||||||
|  |   begin | ||||||
|  |     DCheck(inflateReset(FZRec)); | ||||||
|  |     FZRec.next_in := FBuffer; | ||||||
|  |     FZRec.avail_in := 0; | ||||||
|  |     FStrm.Position := 0; | ||||||
|  |     FStrmPos := 0; | ||||||
|  |   end | ||||||
|  |   else if ( (Offset >= 0) and (Origin = soFromCurrent)) or | ||||||
|  |           ( ((Offset - FZRec.total_out) > 0) and (Origin = soFromBeginning)) then | ||||||
|  |   begin | ||||||
|  |     if Origin = soFromBeginning then Dec(Offset, FZRec.total_out); | ||||||
|  |     if Offset > 0 then | ||||||
|  |     begin | ||||||
|  |       for I := 1 to Offset div sizeof(Buf) do | ||||||
|  |         ReadBuffer(Buf, sizeof(Buf)); | ||||||
|  |       ReadBuffer(Buf, Offset mod sizeof(Buf)); | ||||||
|  |     end; | ||||||
|  |   end | ||||||
|  |   else | ||||||
|  |     raise EDecompressionError.Create('Invalid stream operation'); | ||||||
|  |   Result := FZRec.total_out; | ||||||
|  | end; | ||||||
|  |  | ||||||
|  | end. | ||||||
							
								
								
									
										174
									
								
								contrib/delphi2/zlib32.bpr
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										174
									
								
								contrib/delphi2/zlib32.bpr
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,174 @@ | |||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !if !$d(BCB) | ||||||
|  | BCB = $(MAKEDIR)\.. | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | # IDE SECTION | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | # The following section of the project makefile is managed by the BCB IDE. | ||||||
|  | # It is recommended to use the IDE to change any of the values in this | ||||||
|  | # section. | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  |  | ||||||
|  | VERSION = BCB.03 | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | PROJECT = zlib32.dll | ||||||
|  | OBJFILES = zlib32.obj adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infblock.obj \ | ||||||
|  |   infcodes.obj inffast.obj inflate.obj inftrees.obj infutil.obj trees.obj \ | ||||||
|  |   uncompr.obj zutil.obj | ||||||
|  | RESFILES = | ||||||
|  | RESDEPEN = $(RESFILES) | ||||||
|  | LIBFILES = | ||||||
|  | LIBRARIES =  | ||||||
|  | SPARELIBS =  | ||||||
|  | DEFFILE = | ||||||
|  | PACKAGES = VCLX35.bpi VCL35.bpi VCLDB35.bpi VCLDBX35.bpi ibsmp35.bpi bcbsmp35.bpi \ | ||||||
|  |   dclocx35.bpi QRPT35.bpi TEEUI35.bpi TEEDB35.bpi TEE35.bpi DSS35.bpi \ | ||||||
|  |   NMFAST35.bpi INETDB35.bpi INET35.bpi VCLMID35.bpi | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | PATHCPP = .; | ||||||
|  | PATHASM = .; | ||||||
|  | PATHPAS = .; | ||||||
|  | PATHRC = .; | ||||||
|  | DEBUGLIBPATH = $(BCB)\lib\debug | ||||||
|  | RELEASELIBPATH = $(BCB)\lib\release | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | CFLAG1 = -WD -O2 -Ve -d -k- -vi -c -tWD | ||||||
|  | CFLAG2 = -D_NO_VCL;ZLIB_DLL -I$(BCB)\include | ||||||
|  | CFLAG3 = -ff -5 | ||||||
|  | PFLAGS = -D_NO_VCL;ZLIB_DLL -U$(BCB)\lib;$(RELEASELIBPATH) -I$(BCB)\include -$I- -v \ | ||||||
|  |   -JPHN -M | ||||||
|  | RFLAGS = -D_NO_VCL;ZLIB_DLL -i$(BCB)\include | ||||||
|  | AFLAGS = /i$(BCB)\include /d_NO_VCL /dZLIB_DLL /mx /w2 /zn | ||||||
|  | LFLAGS = -L$(BCB)\lib;$(RELEASELIBPATH) -aa -Tpd -x -Gi | ||||||
|  | IFLAGS = -Gn -g | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | ALLOBJ = c0d32.obj $(OBJFILES) | ||||||
|  | ALLRES = $(RESFILES) | ||||||
|  | ALLLIB = $(LIBFILES)  import32.lib cw32mt.lib | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !ifdef IDEOPTIONS | ||||||
|  |  | ||||||
|  | [Version Info] | ||||||
|  | IncludeVerInfo=0 | ||||||
|  | AutoIncBuild=0 | ||||||
|  | MajorVer=1 | ||||||
|  | MinorVer=0 | ||||||
|  | Release=0 | ||||||
|  | Build=0 | ||||||
|  | Debug=0 | ||||||
|  | PreRelease=0 | ||||||
|  | Special=0 | ||||||
|  | Private=0 | ||||||
|  | DLL=1 | ||||||
|  | Locale=1040 | ||||||
|  | CodePage=1252 | ||||||
|  |  | ||||||
|  | [Version Info Keys] | ||||||
|  | CompanyName= | ||||||
|  | FileDescription=DLL (GUI) | ||||||
|  | FileVersion=1.0.0.0 | ||||||
|  | InternalName= | ||||||
|  | LegalCopyright= | ||||||
|  | LegalTrademarks= | ||||||
|  | OriginalFilename= | ||||||
|  | ProductName= | ||||||
|  | ProductVersion=1.0.0.0 | ||||||
|  | Comments= | ||||||
|  |  | ||||||
|  | [HistoryLists\hlIncludePath] | ||||||
|  | Count=1 | ||||||
|  | Item0=$(BCB)\include | ||||||
|  |  | ||||||
|  | [HistoryLists\hlLibraryPath] | ||||||
|  | Count=1 | ||||||
|  | Item0=$(BCB)\lib | ||||||
|  |  | ||||||
|  | [HistoryLists\hlConditionals] | ||||||
|  | Count=1 | ||||||
|  | Item0=_NO_VCL;ZLIB_DLL | ||||||
|  |  | ||||||
|  | [Debugging] | ||||||
|  | DebugSourceDirs= | ||||||
|  |  | ||||||
|  | [Parameters] | ||||||
|  | RunParams= | ||||||
|  | HostApplication= | ||||||
|  |  | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | # MAKE SECTION | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | # This section of the project file is not used by the BCB IDE.  It is for | ||||||
|  | # the benefit of building from the command-line using the MAKE utility. | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  |  | ||||||
|  | .autodepend | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !if !$d(BCC32) | ||||||
|  | BCC32 = bcc32 | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(DCC32) | ||||||
|  | DCC32 = dcc32 | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(TASM32) | ||||||
|  | TASM32 = tasm32 | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(LINKER) | ||||||
|  | LINKER = ilink32 | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if !$d(BRCC32) | ||||||
|  | BRCC32 = brcc32 | ||||||
|  | !endif | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | !if $d(PATHCPP) | ||||||
|  | .PATH.CPP = $(PATHCPP) | ||||||
|  | .PATH.C   = $(PATHCPP) | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if $d(PATHPAS) | ||||||
|  | .PATH.PAS = $(PATHPAS) | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if $d(PATHASM) | ||||||
|  | .PATH.ASM = $(PATHASM) | ||||||
|  | !endif | ||||||
|  |  | ||||||
|  | !if $d(PATHRC) | ||||||
|  | .PATH.RC  = $(PATHRC) | ||||||
|  | !endif | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE) | ||||||
|  |     $(BCB)\BIN\$(LINKER) @&&! | ||||||
|  |     $(LFLAGS) $(IFLAGS) + | ||||||
|  |     $(ALLOBJ), + | ||||||
|  |     $(PROJECT),, + | ||||||
|  |     $(ALLLIB), + | ||||||
|  |     $(DEFFILE), + | ||||||
|  |     $(ALLRES) | ||||||
|  | ! | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
|  | .pas.hpp: | ||||||
|  |     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< } | ||||||
|  |  | ||||||
|  | .pas.obj: | ||||||
|  |     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< } | ||||||
|  |  | ||||||
|  | .cpp.obj: | ||||||
|  |     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< } | ||||||
|  |  | ||||||
|  | .c.obj: | ||||||
|  |     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< } | ||||||
|  |  | ||||||
|  | .asm.obj: | ||||||
|  |     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@ | ||||||
|  |  | ||||||
|  | .rc.res: | ||||||
|  |     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $< | ||||||
|  | # --------------------------------------------------------------------------- | ||||||
							
								
								
									
										42
									
								
								contrib/delphi2/zlib32.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										42
									
								
								contrib/delphi2/zlib32.cpp
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,42 @@ | |||||||
|  |  | ||||||
|  | #include <windows.h> | ||||||
|  | #pragma hdrstop | ||||||
|  | #include <condefs.h> | ||||||
|  |  | ||||||
|  |  | ||||||
|  | //--------------------------------------------------------------------------- | ||||||
|  | //   Important note about DLL memory management in a VCL DLL: | ||||||
|  | // | ||||||
|  | // | ||||||
|  | // | ||||||
|  | // If your DLL uses VCL and exports any functions that pass VCL String objects | ||||||
|  | // (or structs/classes containing nested Strings) as parameter or function | ||||||
|  | // results, you will need to build both your DLL project and any EXE projects | ||||||
|  | // that use your DLL with the dynamic RTL (the RTL DLL).  This will change your | ||||||
|  | // DLL and its calling EXE's to use BORLNDMM.DLL as their memory manager. In | ||||||
|  | // these cases, the file BORLNDMM.DLL should be deployed along with your DLL | ||||||
|  | // and the RTL DLL (CP3240MT.DLL). To avoid the requiring BORLNDMM.DLL in | ||||||
|  | // these situations, pass string information using "char *" or ShortString | ||||||
|  | // parameters and then link with the static RTL. | ||||||
|  | // | ||||||
|  | //--------------------------------------------------------------------------- | ||||||
|  | USEUNIT("adler32.c"); | ||||||
|  | USEUNIT("compress.c"); | ||||||
|  | USEUNIT("crc32.c"); | ||||||
|  | USEUNIT("deflate.c"); | ||||||
|  | USEUNIT("gzio.c"); | ||||||
|  | USEUNIT("infblock.c"); | ||||||
|  | USEUNIT("infcodes.c"); | ||||||
|  | USEUNIT("inffast.c"); | ||||||
|  | USEUNIT("inflate.c"); | ||||||
|  | USEUNIT("inftrees.c"); | ||||||
|  | USEUNIT("infutil.c"); | ||||||
|  | USEUNIT("trees.c"); | ||||||
|  | USEUNIT("uncompr.c"); | ||||||
|  | USEUNIT("zutil.c"); | ||||||
|  | //--------------------------------------------------------------------------- | ||||||
|  | #pragma argsused | ||||||
|  | int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*) | ||||||
|  | { | ||||||
|  |         return 1; | ||||||
|  | } | ||||||
							
								
								
									
										783
									
								
								contrib/inflate86/inffas86.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										783
									
								
								contrib/inflate86/inffas86.c
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,783 @@ | |||||||
|  | /* inffas86.c is a hand tuned assembler version of | ||||||
|  |  * | ||||||
|  |  * inffast.c -- fast decoding | ||||||
|  |  * Copyright (C) 1995-2003 Mark Adler | ||||||
|  |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  |  * | ||||||
|  |  * Copyright (C) 2003 Chris Anderson <christop@charm.net> | ||||||
|  |  * Please use the copyright conditions above. | ||||||
|  |  * | ||||||
|  |  * Mar-13-2003 -- Most of this is derived from inffast.S which is derived from | ||||||
|  |  * the gcc -S output of zlib-1.2.0/inffast.c.  Zlib-1.2.0 is in beta release at | ||||||
|  |  * the moment.  I have successfully compiled and tested this code with gcc2.96, | ||||||
|  |  * gcc3.2, icc5.0, msvc6.0.  It is very close to the speed of inffast.S | ||||||
|  |  * compiled with gcc -DNO_MMX, but inffast.S is still faster on the P3 with MMX | ||||||
|  |  * enabled.  I will attempt to merge the MMX code into this version.  Newer | ||||||
|  |  * versions of this and inffast.S can be found at | ||||||
|  |  * http://www.eetbeetee.com/zlib/ and http://www.charm.net/~christop/zlib/ | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | #include "zutil.h" | ||||||
|  | #include "inftrees.h" | ||||||
|  | #include "inflate.h" | ||||||
|  | #include "inffast.h" | ||||||
|  |  | ||||||
|  | /* Mark Adler's comments from inffast.c: */ | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |    Decode literal, length, and distance codes and write out the resulting | ||||||
|  |    literal and match bytes until either not enough input or output is | ||||||
|  |    available, an end-of-block is encountered, or a data error is encountered. | ||||||
|  |    When large enough input and output buffers are supplied to inflate(), for | ||||||
|  |    example, a 16K input buffer and a 64K output buffer, more than 95% of the | ||||||
|  |    inflate execution time is spent in this routine. | ||||||
|  |  | ||||||
|  |    Entry assumptions: | ||||||
|  |  | ||||||
|  |         state->mode == LEN | ||||||
|  |         strm->avail_in >= 6 | ||||||
|  |         strm->avail_out >= 258 | ||||||
|  |         start >= strm->avail_out | ||||||
|  |         state->bits < 8 | ||||||
|  |  | ||||||
|  |    On return, state->mode is one of: | ||||||
|  |  | ||||||
|  |         LEN -- ran out of enough output space or enough available input | ||||||
|  |         TYPE -- reached end of block code, inflate() to interpret next block | ||||||
|  |         BAD -- error in block data | ||||||
|  |  | ||||||
|  |    Notes: | ||||||
|  |  | ||||||
|  |     - The maximum input bits used by a length/distance pair is 15 bits for the | ||||||
|  |       length code, 5 bits for the length extra, 15 bits for the distance code, | ||||||
|  |       and 13 bits for the distance extra.  This totals 48 bits, or six bytes. | ||||||
|  |       Therefore if strm->avail_in >= 6, then there is enough input to avoid | ||||||
|  |       checking for available input while decoding. | ||||||
|  |  | ||||||
|  |     - The maximum bytes that a single length/distance pair can output is 258 | ||||||
|  |       bytes, which is the maximum length that can be coded.  inflate_fast() | ||||||
|  |       requires strm->avail_out >= 258 for each loop to avoid checking for | ||||||
|  |       output space. | ||||||
|  |  */ | ||||||
|  | void inflate_fast(strm, start) | ||||||
|  | z_streamp strm; | ||||||
|  | unsigned start;         /* inflate()'s starting value for strm->avail_out */ | ||||||
|  | { | ||||||
|  |     struct inflate_state FAR *state; | ||||||
|  |     struct inffast_ar { | ||||||
|  |       void *esp;                  /* esp save */ | ||||||
|  |       unsigned char FAR *in;      /* local strm->next_in */ | ||||||
|  |       unsigned char FAR *last;    /* while in < last, enough input available */ | ||||||
|  |       unsigned char FAR *out;     /* local strm->next_out */ | ||||||
|  |       unsigned char FAR *beg;     /* inflate()'s initial strm->next_out */ | ||||||
|  |       unsigned char FAR *end;     /* while out < end, enough space available */ | ||||||
|  |       unsigned wsize;             /* window size or zero if not using window */ | ||||||
|  |       unsigned write;             /* window write index */ | ||||||
|  |       unsigned char FAR *window;  /* allocated sliding window, if wsize != 0 */ | ||||||
|  |       unsigned long hold;         /* local strm->hold */ | ||||||
|  |       unsigned bits;              /* local strm->bits */ | ||||||
|  |       code const FAR *lcode;      /* local strm->lencode */ | ||||||
|  |       code const FAR *dcode;      /* local strm->distcode */ | ||||||
|  |       unsigned lmask;             /* mask for first level of length codes */ | ||||||
|  |       unsigned dmask;             /* mask for first level of distance codes */ | ||||||
|  |       unsigned len;               /* match length, unused bytes */ | ||||||
|  |       unsigned dist;              /* match distance */ | ||||||
|  |       unsigned status;            /* this is set when state changes */ | ||||||
|  |     } ar; | ||||||
|  |  | ||||||
|  |     /* copy state to local variables */ | ||||||
|  |     state = (struct inflate_state FAR *)strm->state; | ||||||
|  |     ar.in = strm->next_in; | ||||||
|  |     ar.last = ar.in + (strm->avail_in - 5); | ||||||
|  |     ar.out = strm->next_out; | ||||||
|  |     ar.beg = ar.out - (start - strm->avail_out); | ||||||
|  |     ar.end = ar.out + (strm->avail_out - 257); | ||||||
|  |     ar.wsize = state->wsize; | ||||||
|  |     ar.write = state->write; | ||||||
|  |     ar.window = state->window; | ||||||
|  |     ar.hold = state->hold; | ||||||
|  |     ar.bits = state->bits; | ||||||
|  |     ar.lcode = state->lencode; | ||||||
|  |     ar.dcode = state->distcode; | ||||||
|  |     ar.lmask = (1U << state->lenbits) - 1; | ||||||
|  |     ar.dmask = (1U << state->distbits) - 1; | ||||||
|  |  | ||||||
|  |     /* decode literals and length/distances until end-of-block or not enough | ||||||
|  |        input data or output space */ | ||||||
|  |  | ||||||
|  |     /* align in on 2 byte boundary */ | ||||||
|  |     if (((unsigned long)(void *)ar.in & 0x1) != 0) { | ||||||
|  |         ar.hold += (unsigned long)*ar.in++ << ar.bits; | ||||||
|  |         ar.bits += 8; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  | #if defined( __GNUC__ ) || defined( __ICC ) | ||||||
|  |     __asm__ __volatile__ ( | ||||||
|  | "        leal    %0, %%eax\n" | ||||||
|  | "        pushf\n" | ||||||
|  | "        pushl   %%ebp\n" | ||||||
|  | "        movl    %%esp, (%%eax)\n" | ||||||
|  | "        movl    %%eax, %%esp\n" | ||||||
|  | "        movl    4(%%esp), %%esi\n"       /* esi = in */ | ||||||
|  | "        movl    12(%%esp), %%edi\n"      /* edi = out */ | ||||||
|  | "        movl    36(%%esp), %%edx\n"      /* edx = hold */ | ||||||
|  | "        movl    40(%%esp), %%ebx\n"      /* ebx = bits */ | ||||||
|  | "        movl    44(%%esp), %%ebp\n"      /* ebp = lcode */ | ||||||
|  |  | ||||||
|  | "        cld\n" | ||||||
|  | "        jmp     .L_do_loop\n" | ||||||
|  |  | ||||||
|  | ".L_while_test:\n" | ||||||
|  | "        cmpl    %%edi, 20(%%esp)\n" | ||||||
|  | "        jbe     .L_break_loop\n" | ||||||
|  | "        cmpl    %%esi, 8(%%esp)\n" | ||||||
|  | "        jbe     .L_break_loop\n" | ||||||
|  |  | ||||||
|  | ".L_do_loop:\n" | ||||||
|  | "        cmpb    $15, %%bl\n" | ||||||
|  | "        ja      .L_get_length_code\n"    /* if (15 < bits) */ | ||||||
|  |  | ||||||
|  | "        xorl    %%eax, %%eax\n" | ||||||
|  | "        lodsw\n"                         /* al = *(ushort *)in++ */ | ||||||
|  | "        movb    %%bl, %%cl\n"            /* cl = bits, needs it for shifting */ | ||||||
|  | "        addb    $16, %%bl\n"             /* bits += 16 */ | ||||||
|  | "        shll    %%cl, %%eax\n" | ||||||
|  | "        orl     %%eax, %%edx\n"        /* hold |= *((ushort *)in)++ << bits */ | ||||||
|  |  | ||||||
|  | ".L_get_length_code:\n" | ||||||
|  | "        movl    52(%%esp), %%eax\n"      /* eax = lmask */ | ||||||
|  | "        andl    %%edx, %%eax\n"          /* eax &= hold */ | ||||||
|  | "        movl    (%%ebp,%%eax,4), %%eax\n" /* eax = lcode[hold & lmask] */ | ||||||
|  |  | ||||||
|  | ".L_dolen:\n" | ||||||
|  | "        movb    %%ah, %%cl\n"            /* cl = this.bits */ | ||||||
|  | "        subb    %%ah, %%bl\n"            /* bits -= this.bits */ | ||||||
|  | "        shrl    %%cl, %%edx\n"           /* hold >>= this.bits */ | ||||||
|  |  | ||||||
|  | "        testb   %%al, %%al\n" | ||||||
|  | "        jnz     .L_test_for_length_base\n" /* if (op != 0) 45.7% */ | ||||||
|  |  | ||||||
|  | "        shrl    $16, %%eax\n"            /* output this.val char */ | ||||||
|  | "        stosb\n" | ||||||
|  | "        jmp     .L_while_test\n" | ||||||
|  |  | ||||||
|  | ".L_test_for_length_base:\n" | ||||||
|  | "        movl    %%eax, %%ecx\n"          /* len = this */ | ||||||
|  | "        shrl    $16, %%ecx\n"            /* len = this.val */ | ||||||
|  | "        movl    %%ecx, 60(%%esp)\n"      /* len = this */ | ||||||
|  | "        movb    %%al, %%cl\n" | ||||||
|  |  | ||||||
|  | "        testb   $16, %%al\n" | ||||||
|  | "        jz      .L_test_for_second_level_length\n" /* if ((op & 16) == 0) 8% */ | ||||||
|  | "        andb    $15, %%cl\n"             /* op &= 15 */ | ||||||
|  | "        jz      .L_decode_distance\n"    /* if (!op) */ | ||||||
|  | "        cmpb    %%cl, %%bl\n" | ||||||
|  | "        jae     .L_add_bits_to_len\n"    /* if (op <= bits) */ | ||||||
|  |  | ||||||
|  | "        movb    %%cl, %%ch\n"            /* stash op in ch, freeing cl */ | ||||||
|  | "        xorl    %%eax, %%eax\n" | ||||||
|  | "        lodsw\n"                         /* al = *(ushort *)in++ */ | ||||||
|  | "        movb    %%bl, %%cl\n"            /* cl = bits, needs it for shifting */ | ||||||
|  | "        addb    $16, %%bl\n"             /* bits += 16 */ | ||||||
|  | "        shll    %%cl, %%eax\n" | ||||||
|  | "        orl     %%eax, %%edx\n"         /* hold |= *((ushort *)in)++ << bits */ | ||||||
|  | "        movb    %%ch, %%cl\n"            /* move op back to ecx */ | ||||||
|  |  | ||||||
|  | ".L_add_bits_to_len:\n" | ||||||
|  | "        movl    $1, %%eax\n" | ||||||
|  | "        shll    %%cl, %%eax\n" | ||||||
|  | "        decl    %%eax\n" | ||||||
|  | "        subb    %%cl, %%bl\n" | ||||||
|  | "        andl    %%edx, %%eax\n"          /* eax &= hold */ | ||||||
|  | "        shrl    %%cl, %%edx\n" | ||||||
|  | "        addl    %%eax, 60(%%esp)\n"      /* len += hold & mask[op] */ | ||||||
|  |  | ||||||
|  | ".L_decode_distance:\n" | ||||||
|  | "        cmpb    $15, %%bl\n" | ||||||
|  | "        ja      .L_get_distance_code\n"  /* if (15 < bits) */ | ||||||
|  |  | ||||||
|  | "        xorl    %%eax, %%eax\n" | ||||||
|  | "        lodsw\n"                         /* al = *(ushort *)in++ */ | ||||||
|  | "        movb    %%bl, %%cl\n"            /* cl = bits, needs it for shifting */ | ||||||
|  | "        addb    $16, %%bl\n"             /* bits += 16 */ | ||||||
|  | "        shll    %%cl, %%eax\n" | ||||||
|  | "        orl     %%eax, %%edx\n"         /* hold |= *((ushort *)in)++ << bits */ | ||||||
|  |  | ||||||
|  | ".L_get_distance_code:\n" | ||||||
|  | "        movl    56(%%esp), %%eax\n"      /* eax = dmask */ | ||||||
|  | "        movl    48(%%esp), %%ecx\n"      /* ecx = dcode */ | ||||||
|  | "        andl    %%edx, %%eax\n"          /* eax &= hold */ | ||||||
|  | "        movl    (%%ecx,%%eax,4), %%eax\n"/* eax = dcode[hold & dmask] */ | ||||||
|  |  | ||||||
|  | ".L_dodist:\n" | ||||||
|  | "        movl    %%eax, %%ebp\n"          /* dist = this */ | ||||||
|  | "        shrl    $16, %%ebp\n"            /* dist = this.val */ | ||||||
|  | "        movb    %%ah, %%cl\n" | ||||||
|  | "        subb    %%ah, %%bl\n"            /* bits -= this.bits */ | ||||||
|  | "        shrl    %%cl, %%edx\n"           /* hold >>= this.bits */ | ||||||
|  | "        movb    %%al, %%cl\n"            /* cl = this.op */ | ||||||
|  |  | ||||||
|  | "        testb   $16, %%al\n"             /* if ((op & 16) == 0) */ | ||||||
|  | "        jz      .L_test_for_second_level_dist\n" | ||||||
|  | "        andb    $15, %%cl\n"             /* op &= 15 */ | ||||||
|  | "        jz      .L_check_dist_one\n" | ||||||
|  | "        cmpb    %%cl, %%bl\n" | ||||||
|  | "        jae     .L_add_bits_to_dist\n"   /* if (op <= bits) 97.6% */ | ||||||
|  |  | ||||||
|  | "        movb    %%cl, %%ch\n"            /* stash op in ch, freeing cl */ | ||||||
|  | "        xorl    %%eax, %%eax\n" | ||||||
|  | "        lodsw\n"                         /* al = *(ushort *)in++ */ | ||||||
|  | "        movb    %%bl, %%cl\n"            /* cl = bits, needs it for shifting */ | ||||||
|  | "        addb    $16, %%bl\n"             /* bits += 16 */ | ||||||
|  | "        shll    %%cl, %%eax\n" | ||||||
|  | "        orl     %%eax, %%edx\n"        /* hold |= *((ushort *)in)++ << bits */ | ||||||
|  | "        movb    %%ch, %%cl\n"            /* move op back to ecx */ | ||||||
|  |  | ||||||
|  | ".L_add_bits_to_dist:\n" | ||||||
|  | "        movl    $1, %%eax\n" | ||||||
|  | "        shll    %%cl, %%eax\n" | ||||||
|  | "        decl    %%eax\n"                 /* (1 << op) - 1 */ | ||||||
|  | "        subb    %%cl, %%bl\n" | ||||||
|  | "        andl    %%edx, %%eax\n"          /* eax &= hold */ | ||||||
|  | "        shrl    %%cl, %%edx\n" | ||||||
|  | "        addl    %%eax, %%ebp\n"          /* dist += hold & ((1 << op) - 1) */ | ||||||
|  |  | ||||||
|  | ".L_check_window:\n" | ||||||
|  | "        movl    %%esi, 4(%%esp)\n"       /* save in so from can use it's reg */ | ||||||
|  | "        movl    %%edi, %%eax\n" | ||||||
|  | "        subl    16(%%esp), %%eax\n"      /* nbytes = out - beg */ | ||||||
|  |  | ||||||
|  | "        cmpl    %%ebp, %%eax\n" | ||||||
|  | "        jb      .L_clip_window\n"        /* if (dist > nbytes) 4.2% */ | ||||||
|  |  | ||||||
|  | "        movl    60(%%esp), %%ecx\n" | ||||||
|  | "        movl    %%edi, %%esi\n" | ||||||
|  | "        subl    %%ebp, %%esi\n"          /* from = out - dist */ | ||||||
|  |  | ||||||
|  | "        subl    $3, %%ecx\n"             /* copy from to out */ | ||||||
|  | "        movb    (%%esi), %%al\n" | ||||||
|  | "        movb    %%al, (%%edi)\n" | ||||||
|  | "        movb    1(%%esi), %%al\n" | ||||||
|  | "        movb    2(%%esi), %%ah\n" | ||||||
|  | "        addl    $3, %%esi\n" | ||||||
|  | "        movb    %%al, 1(%%edi)\n" | ||||||
|  | "        movb    %%ah, 2(%%edi)\n" | ||||||
|  | "        addl    $3, %%edi\n" | ||||||
|  | "        rep     movsb\n" | ||||||
|  |  | ||||||
|  | "        movl    4(%%esp), %%esi\n"      /* move in back to %esi, toss from */ | ||||||
|  | "        movl    44(%%esp), %%ebp\n"     /* ebp = lcode */ | ||||||
|  | "        jmp     .L_while_test\n" | ||||||
|  |  | ||||||
|  | ".L_check_dist_one:\n" | ||||||
|  | "        cmpl    $1, %%ebp\n"            /* if dist 1, is a memset */ | ||||||
|  | "        jne     .L_check_window\n" | ||||||
|  | "        cmpl    %%edi, 16(%%esp)\n" | ||||||
|  | "        je      .L_check_window\n" | ||||||
|  |  | ||||||
|  | "        decl    %%edi\n" | ||||||
|  | "        movl    60(%%esp), %%ecx\n" | ||||||
|  | "        movb    (%%edi), %%al\n" | ||||||
|  | "        subl    $3, %%ecx\n" | ||||||
|  |  | ||||||
|  | "        movb    %%al, 1(%%edi)\n"       /* memset out with from[-1] */ | ||||||
|  | "        movb    %%al, 2(%%edi)\n" | ||||||
|  | "        movb    %%al, 3(%%edi)\n" | ||||||
|  | "        addl    $4, %%edi\n" | ||||||
|  | "        rep     stosb\n" | ||||||
|  | "        movl    44(%%esp), %%ebp\n"      /* ebp = lcode */ | ||||||
|  | "        jmp     .L_while_test\n" | ||||||
|  |  | ||||||
|  | ".L_test_for_second_level_length:\n" | ||||||
|  | "        testb   $64, %%al\n" | ||||||
|  | "        jnz     .L_test_for_end_of_block\n" /* if ((op & 64) != 0) */ | ||||||
|  |  | ||||||
|  | "        movl    $1, %%eax\n" | ||||||
|  | "        shll    %%cl, %%eax\n" | ||||||
|  | "        decl    %%eax\n" | ||||||
|  | "        andl    %%edx, %%eax\n"         /* eax &= hold */ | ||||||
|  | "        addl    60(%%esp), %%eax\n"     /* eax += this.val */ | ||||||
|  | "        movl    (%%ebp,%%eax,4), %%eax\n" /* eax = lcode[val+(hold&mask[op])]*/ | ||||||
|  | "        jmp     .L_dolen\n" | ||||||
|  |  | ||||||
|  | ".L_test_for_second_level_dist:\n" | ||||||
|  | "        testb   $64, %%al\n" | ||||||
|  | "        jnz     .L_invalid_distance_code\n" /* if ((op & 64) != 0) */ | ||||||
|  |  | ||||||
|  | "        movl    $1, %%eax\n" | ||||||
|  | "        shll    %%cl, %%eax\n" | ||||||
|  | "        decl    %%eax\n" | ||||||
|  | "        andl    %%edx, %%eax\n"         /* eax &= hold */ | ||||||
|  | "        addl    %%ebp, %%eax\n"         /* eax += this.val */ | ||||||
|  | "        movl    48(%%esp), %%ecx\n"     /* ecx = dcode */ | ||||||
|  | "        movl    (%%ecx,%%eax,4), %%eax\n" /* eax = dcode[val+(hold&mask[op])]*/ | ||||||
|  | "        jmp     .L_dodist\n" | ||||||
|  |  | ||||||
|  | ".L_clip_window:\n" | ||||||
|  | "        movl    %%eax, %%ecx\n" | ||||||
|  | "        movl    24(%%esp), %%eax\n"     /* prepare for dist compare */ | ||||||
|  | "        negl    %%ecx\n"                /* nbytes = -nbytes */ | ||||||
|  | "        movl    32(%%esp), %%esi\n"     /* from = window */ | ||||||
|  |  | ||||||
|  | "        cmpl    %%ebp, %%eax\n" | ||||||
|  | "        jb      .L_invalid_distance_too_far\n" /* if (dist > wsize) */ | ||||||
|  |  | ||||||
|  | "        addl    %%ebp, %%ecx\n"         /* nbytes = dist - nbytes */ | ||||||
|  | "        cmpl    $0, 28(%%esp)\n" | ||||||
|  | "        jne     .L_wrap_around_window\n" /* if (write != 0) */ | ||||||
|  |  | ||||||
|  | "        subl    %%ecx, %%eax\n" | ||||||
|  | "        addl    %%eax, %%esi\n"         /* from += wsize - nbytes */ | ||||||
|  |  | ||||||
|  | "        movl    60(%%esp), %%eax\n" | ||||||
|  | "        cmpl    %%ecx, %%eax\n" | ||||||
|  | "        jbe     .L_do_copy1\n"          /* if (nbytes >= len) */ | ||||||
|  |  | ||||||
|  | "        subl    %%ecx, %%eax\n"         /* len -= nbytes */ | ||||||
|  | "        rep     movsb\n" | ||||||
|  | "        movl    %%edi, %%esi\n" | ||||||
|  | "        subl    %%ebp, %%esi\n"         /* from = out - dist */ | ||||||
|  | "        jmp     .L_do_copy1\n" | ||||||
|  |  | ||||||
|  | "        cmpl    %%ecx, %%eax\n" | ||||||
|  | "        jbe     .L_do_copy1\n"          /* if (nbytes >= len) */ | ||||||
|  |  | ||||||
|  | "        subl    %%ecx, %%eax\n"         /* len -= nbytes */ | ||||||
|  | "        rep     movsb\n" | ||||||
|  | "        movl    %%edi, %%esi\n" | ||||||
|  | "        subl    %%ebp, %%esi\n"         /* from = out - dist */ | ||||||
|  | "        jmp     .L_do_copy1\n" | ||||||
|  |  | ||||||
|  | ".L_wrap_around_window:\n" | ||||||
|  | "        movl    28(%%esp), %%eax\n" | ||||||
|  | "        cmpl    %%eax, %%ecx\n" | ||||||
|  | "        jbe     .L_contiguous_in_window\n" /* if (write >= nbytes) */ | ||||||
|  |  | ||||||
|  | "        addl    24(%%esp), %%esi\n" | ||||||
|  | "        addl    %%eax, %%esi\n" | ||||||
|  | "        subl    %%ecx, %%esi\n"         /* from += wsize + write - nbytes */ | ||||||
|  | "        subl    %%eax, %%ecx\n"         /* nbytes -= write */ | ||||||
|  |  | ||||||
|  | "        movl    60(%%esp), %%eax\n" | ||||||
|  | "        cmpl    %%ecx, %%eax\n" | ||||||
|  | "        jbe     .L_do_copy1\n"          /* if (nbytes >= len) */ | ||||||
|  |  | ||||||
|  | "        subl    %%ecx, %%eax\n"         /* len -= nbytes */ | ||||||
|  | "        rep     movsb\n" | ||||||
|  | "        movl    32(%%esp), %%esi\n"     /* from = window */ | ||||||
|  | "        movl    28(%%esp), %%ecx\n"     /* nbytes = write */ | ||||||
|  | "        cmpl    %%ecx, %%eax\n" | ||||||
|  | "        jbe     .L_do_copy1\n"          /* if (nbytes >= len) */ | ||||||
|  |  | ||||||
|  | "        subl    %%ecx, %%eax\n"         /* len -= nbytes */ | ||||||
|  | "        rep     movsb\n" | ||||||
|  | "        movl    %%edi, %%esi\n" | ||||||
|  | "        subl    %%ebp, %%esi\n"         /* from = out - dist */ | ||||||
|  | "        jmp     .L_do_copy1\n" | ||||||
|  |  | ||||||
|  | ".L_contiguous_in_window:\n" | ||||||
|  | "        addl    %%eax, %%esi\n" | ||||||
|  | "        subl    %%ecx, %%esi\n"         /* from += write - nbytes */ | ||||||
|  |  | ||||||
|  | "        movl    60(%%esp), %%eax\n" | ||||||
|  | "        cmpl    %%ecx, %%eax\n" | ||||||
|  | "        jbe     .L_do_copy1\n"          /* if (nbytes >= len) */ | ||||||
|  |  | ||||||
|  | "        subl    %%ecx, %%eax\n"         /* len -= nbytes */ | ||||||
|  | "        rep     movsb\n" | ||||||
|  | "        movl    %%edi, %%esi\n" | ||||||
|  | "        subl    %%ebp, %%esi\n"         /* from = out - dist */ | ||||||
|  |  | ||||||
|  | ".L_do_copy1:\n" | ||||||
|  | "        movl    %%eax, %%ecx\n" | ||||||
|  | "        rep     movsb\n" | ||||||
|  |  | ||||||
|  | "        movl    4(%%esp), %%esi\n"      /* move in back to %esi, toss from */ | ||||||
|  | "        movl    44(%%esp), %%ebp\n"     /* ebp = lcode */ | ||||||
|  | "        jmp     .L_while_test\n" | ||||||
|  |  | ||||||
|  | ".L_test_for_end_of_block:\n" | ||||||
|  | "        testb   $32, %%al\n" | ||||||
|  | "        jz      .L_invalid_literal_length_code\n" | ||||||
|  | "        movl    $1, 68(%%esp)\n" | ||||||
|  | "        jmp     .L_break_loop_with_status\n" | ||||||
|  |  | ||||||
|  | ".L_invalid_literal_length_code:\n" | ||||||
|  | "        movl    $2, 68(%%esp)\n" | ||||||
|  | "        jmp     .L_break_loop_with_status\n" | ||||||
|  |  | ||||||
|  | ".L_invalid_distance_code:\n" | ||||||
|  | "        movl    $3, 68(%%esp)\n" | ||||||
|  | "        jmp     .L_break_loop_with_status\n" | ||||||
|  |  | ||||||
|  | ".L_invalid_distance_too_far:\n" | ||||||
|  | "        movl    4(%%esp), %%esi\n" | ||||||
|  | "        movl    $4, 68(%%esp)\n" | ||||||
|  | "        jmp     .L_break_loop_with_status\n" | ||||||
|  |  | ||||||
|  | ".L_break_loop:\n" | ||||||
|  | "        movl    $0, 68(%%esp)\n" | ||||||
|  |  | ||||||
|  | ".L_break_loop_with_status:\n" | ||||||
|  | /* put in, out, bits, and hold back into ar and pop esp */ | ||||||
|  | "        movl    %%esi, 4(%%esp)\n" | ||||||
|  | "        movl    %%edi, 12(%%esp)\n" | ||||||
|  | "        movl    %%ebx, 40(%%esp)\n" | ||||||
|  | "        movl    %%edx, 36(%%esp)\n" | ||||||
|  | "        movl    (%%esp), %%esp\n" | ||||||
|  | "        popl    %%ebp\n" | ||||||
|  | "        popf\n" | ||||||
|  |           : | ||||||
|  |           : "m" (ar) | ||||||
|  |           : "memory", "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi" | ||||||
|  |     ); | ||||||
|  | #elif defined( _MSC_VER ) | ||||||
|  |     __asm { | ||||||
|  | 	lea	eax, ar | ||||||
|  | 	pushfd | ||||||
|  | 	push	ebp | ||||||
|  | 	mov	[eax], esp | ||||||
|  | 	mov	esp, eax | ||||||
|  | 	mov	esi, [esp+4]       /* esi = in */ | ||||||
|  | 	mov	edi, [esp+12]      /* edi = out */ | ||||||
|  | 	mov	edx, [esp+36]      /* edx = hold */ | ||||||
|  | 	mov	ebx, [esp+40]      /* ebx = bits */ | ||||||
|  | 	mov	ebp, [esp+44]      /* ebp = lcode */ | ||||||
|  |  | ||||||
|  | 	cld | ||||||
|  | 	jmp	L_do_loop | ||||||
|  |  | ||||||
|  | L_while_test: | ||||||
|  | 	cmp	[esp+20], edi | ||||||
|  | 	jbe	L_break_loop | ||||||
|  | 	cmp	[esp+8], esi | ||||||
|  | 	jbe	L_break_loop | ||||||
|  |  | ||||||
|  | L_do_loop: | ||||||
|  | 	cmp	bl, 15 | ||||||
|  | 	ja	L_get_length_code    /* if (15 < bits) */ | ||||||
|  |  | ||||||
|  | 	xor	eax, eax | ||||||
|  | 	lodsw                         /* al = *(ushort *)in++ */ | ||||||
|  | 	mov	cl, bl            /* cl = bits, needs it for shifting */ | ||||||
|  | 	add	bl, 16             /* bits += 16 */ | ||||||
|  | 	shl	eax, cl | ||||||
|  | 	or	edx, eax        /* hold |= *((ushort *)in)++ << bits */ | ||||||
|  |  | ||||||
|  | L_get_length_code: | ||||||
|  | 	mov	eax, [esp+52]      /* eax = lmask */ | ||||||
|  | 	and	eax, edx          /* eax &= hold */ | ||||||
|  | 	mov	eax, [ebp+eax*4] /* eax = lcode[hold & lmask] */ | ||||||
|  |  | ||||||
|  | L_dolen: | ||||||
|  | 	mov	cl, ah            /* cl = this.bits */ | ||||||
|  | 	sub	bl, ah            /* bits -= this.bits */ | ||||||
|  | 	shr	edx, cl           /* hold >>= this.bits */ | ||||||
|  |  | ||||||
|  | 	test	al, al | ||||||
|  | 	jnz	L_test_for_length_base /* if (op != 0) 45.7% */ | ||||||
|  |  | ||||||
|  | 	shr	eax, 16            /* output this.val char */ | ||||||
|  | 	stosb | ||||||
|  | 	jmp	L_while_test | ||||||
|  |  | ||||||
|  | L_test_for_length_base: | ||||||
|  | 	mov	ecx, eax          /* len = this */ | ||||||
|  | 	shr	ecx, 16            /* len = this.val */ | ||||||
|  | 	mov	[esp+60], ecx      /* len = this */ | ||||||
|  | 	mov	cl, al | ||||||
|  |  | ||||||
|  | 	test	al, 16 | ||||||
|  | 	jz	L_test_for_second_level_length /* if ((op & 16) == 0) 8% */ | ||||||
|  | 	and	cl, 15             /* op &= 15 */ | ||||||
|  | 	jz	L_decode_distance    /* if (!op) */ | ||||||
|  | 	cmp	bl, cl | ||||||
|  | 	jae	L_add_bits_to_len    /* if (op <= bits) */ | ||||||
|  |  | ||||||
|  | 	mov	ch, cl            /* stash op in ch, freeing cl */ | ||||||
|  | 	xor	eax, eax | ||||||
|  | 	lodsw                         /* al = *(ushort *)in++ */ | ||||||
|  | 	mov	cl, bl            /* cl = bits, needs it for shifting */ | ||||||
|  | 	add	bl, 16             /* bits += 16 */ | ||||||
|  | 	shl	eax, cl | ||||||
|  | 	or	edx, eax         /* hold |= *((ushort *)in)++ << bits */ | ||||||
|  | 	mov	cl, ch            /* move op back to ecx */ | ||||||
|  |  | ||||||
|  | L_add_bits_to_len: | ||||||
|  | 	mov	eax, 1 | ||||||
|  | 	shl	eax, cl | ||||||
|  | 	dec	eax | ||||||
|  | 	sub	bl, cl | ||||||
|  | 	and	eax, edx          /* eax &= hold */ | ||||||
|  | 	shr	edx, cl | ||||||
|  | 	add	[esp+60], eax      /* len += hold & mask[op] */ | ||||||
|  |  | ||||||
|  | L_decode_distance: | ||||||
|  | 	cmp	bl, 15 | ||||||
|  | 	ja	L_get_distance_code  /* if (15 < bits) */ | ||||||
|  |  | ||||||
|  | 	xor	eax, eax | ||||||
|  | 	lodsw                         /* al = *(ushort *)in++ */ | ||||||
|  | 	mov	cl, bl            /* cl = bits, needs it for shifting */ | ||||||
|  | 	add	bl, 16             /* bits += 16 */ | ||||||
|  | 	shl	eax, cl | ||||||
|  | 	or	edx, eax         /* hold |= *((ushort *)in)++ << bits */ | ||||||
|  |  | ||||||
|  | L_get_distance_code: | ||||||
|  | 	mov	eax, [esp+56]      /* eax = dmask */ | ||||||
|  | 	mov	ecx, [esp+48]      /* ecx = dcode */ | ||||||
|  | 	and	eax, edx          /* eax &= hold */ | ||||||
|  | 	mov	eax, [ecx+eax*4]/* eax = dcode[hold & dmask] */ | ||||||
|  |  | ||||||
|  | L_dodist: | ||||||
|  | 	mov	ebp, eax          /* dist = this */ | ||||||
|  | 	shr	ebp, 16            /* dist = this.val */ | ||||||
|  | 	mov	cl, ah | ||||||
|  | 	sub	bl, ah            /* bits -= this.bits */ | ||||||
|  | 	shr	edx, cl           /* hold >>= this.bits */ | ||||||
|  | 	mov	cl, al            /* cl = this.op */ | ||||||
|  |  | ||||||
|  | 	test	al, 16             /* if ((op & 16) == 0) */ | ||||||
|  | 	jz	L_test_for_second_level_dist | ||||||
|  | 	and	cl, 15             /* op &= 15 */ | ||||||
|  | 	jz	L_check_dist_one | ||||||
|  | 	cmp	bl, cl | ||||||
|  | 	jae	L_add_bits_to_dist   /* if (op <= bits) 97.6% */ | ||||||
|  |  | ||||||
|  | 	mov	ch, cl            /* stash op in ch, freeing cl */ | ||||||
|  | 	xor	eax, eax | ||||||
|  | 	lodsw                         /* al = *(ushort *)in++ */ | ||||||
|  | 	mov	cl, bl            /* cl = bits, needs it for shifting */ | ||||||
|  | 	add	bl, 16             /* bits += 16 */ | ||||||
|  | 	shl	eax, cl | ||||||
|  | 	or	edx, eax        /* hold |= *((ushort *)in)++ << bits */ | ||||||
|  | 	mov	cl, ch            /* move op back to ecx */ | ||||||
|  |  | ||||||
|  | L_add_bits_to_dist: | ||||||
|  | 	mov	eax, 1 | ||||||
|  | 	shl	eax, cl | ||||||
|  | 	dec	eax                 /* (1 << op) - 1 */ | ||||||
|  | 	sub	bl, cl | ||||||
|  | 	and	eax, edx          /* eax &= hold */ | ||||||
|  | 	shr	edx, cl | ||||||
|  | 	add	ebp, eax          /* dist += hold & ((1 << op) - 1) */ | ||||||
|  |  | ||||||
|  | L_check_window: | ||||||
|  | 	mov	[esp+4], esi       /* save in so from can use it's reg */ | ||||||
|  | 	mov	eax, edi | ||||||
|  | 	sub	eax, [esp+16]      /* nbytes = out - beg */ | ||||||
|  |  | ||||||
|  | 	cmp	eax, ebp | ||||||
|  | 	jb	L_clip_window        /* if (dist > nbytes) 4.2% */ | ||||||
|  |  | ||||||
|  | 	mov	ecx, [esp+60] | ||||||
|  | 	mov	esi, edi | ||||||
|  | 	sub	esi, ebp          /* from = out - dist */ | ||||||
|  |  | ||||||
|  | 	sub	ecx, 3             /* copy from to out */ | ||||||
|  | 	mov	al, [esi] | ||||||
|  | 	mov	[edi], al | ||||||
|  | 	mov	al, [esi+1] | ||||||
|  | 	mov	ah, [esi+2] | ||||||
|  | 	add	esi, 3 | ||||||
|  | 	mov	[edi+1], al | ||||||
|  | 	mov	[edi+2], ah | ||||||
|  | 	add	edi, 3 | ||||||
|  | 	rep     movsb | ||||||
|  |  | ||||||
|  | 	mov	esi, [esp+4]      /* move in back to %esi, toss from */ | ||||||
|  | 	mov	ebp, [esp+44]     /* ebp = lcode */ | ||||||
|  | 	jmp	L_while_test | ||||||
|  |  | ||||||
|  | L_check_dist_one: | ||||||
|  | 	cmp	ebp, 1            /* if dist 1, is a memset */ | ||||||
|  | 	jne	L_check_window | ||||||
|  | 	cmp	[esp+16], edi | ||||||
|  | 	je	L_check_window | ||||||
|  |  | ||||||
|  | 	dec	edi | ||||||
|  | 	mov	ecx, [esp+60] | ||||||
|  | 	mov	al, [edi] | ||||||
|  | 	sub	ecx, 3 | ||||||
|  |  | ||||||
|  | 	mov	[edi+1], al       /* memset out with from[-1] */ | ||||||
|  | 	mov	[edi+2], al | ||||||
|  | 	mov	[edi+3], al | ||||||
|  | 	add	edi, 4 | ||||||
|  | 	rep     stosb | ||||||
|  | 	mov	ebp, [esp+44]      /* ebp = lcode */ | ||||||
|  | 	jmp	L_while_test | ||||||
|  |  | ||||||
|  | L_test_for_second_level_length: | ||||||
|  | 	test	al, 64 | ||||||
|  | 	jnz	L_test_for_end_of_block /* if ((op & 64) != 0) */ | ||||||
|  |  | ||||||
|  | 	mov	eax, 1 | ||||||
|  | 	shl	eax, cl | ||||||
|  | 	dec	eax | ||||||
|  | 	and	eax, edx         /* eax &= hold */ | ||||||
|  | 	add	eax, [esp+60]     /* eax += this.val */ | ||||||
|  | 	mov	eax, [ebp+eax*4] /* eax = lcode[val+(hold&mask[op])]*/ | ||||||
|  | 	jmp	L_dolen | ||||||
|  |  | ||||||
|  | L_test_for_second_level_dist: | ||||||
|  | 	test	al, 64 | ||||||
|  | 	jnz	L_invalid_distance_code /* if ((op & 64) != 0) */ | ||||||
|  |  | ||||||
|  | 	mov	eax, 1 | ||||||
|  | 	shl	eax, cl | ||||||
|  | 	dec	eax | ||||||
|  | 	and	eax, edx         /* eax &= hold */ | ||||||
|  | 	add	eax, ebp         /* eax += this.val */ | ||||||
|  | 	mov	ecx, [esp+48]     /* ecx = dcode */ | ||||||
|  | 	mov	eax, [ecx+eax*4] /* eax = dcode[val+(hold&mask[op])]*/ | ||||||
|  | 	jmp	L_dodist | ||||||
|  |  | ||||||
|  | L_clip_window: | ||||||
|  | 	mov	ecx, eax | ||||||
|  | 	mov	eax, [esp+24]     /* prepare for dist compare */ | ||||||
|  | 	neg	ecx                /* nbytes = -nbytes */ | ||||||
|  | 	mov	esi, [esp+32]     /* from = window */ | ||||||
|  |  | ||||||
|  | 	cmp	eax, ebp | ||||||
|  | 	jb	L_invalid_distance_too_far /* if (dist > wsize) */ | ||||||
|  |  | ||||||
|  | 	add	ecx, ebp         /* nbytes = dist - nbytes */ | ||||||
|  | 	cmp	dword ptr [esp+28], 0 | ||||||
|  | 	jne	L_wrap_around_window /* if (write != 0) */ | ||||||
|  |  | ||||||
|  | 	sub	eax, ecx | ||||||
|  | 	add	esi, eax         /* from += wsize - nbytes */ | ||||||
|  |  | ||||||
|  | 	mov	eax, [esp+60] | ||||||
|  | 	cmp	eax, ecx | ||||||
|  | 	jbe	L_do_copy1          /* if (nbytes >= len) */ | ||||||
|  |  | ||||||
|  | 	sub	eax, ecx         /* len -= nbytes */ | ||||||
|  | 	rep     movsb | ||||||
|  | 	mov	esi, edi | ||||||
|  | 	sub	esi, ebp         /* from = out - dist */ | ||||||
|  | 	jmp	L_do_copy1 | ||||||
|  |  | ||||||
|  | 	cmp	eax, ecx | ||||||
|  | 	jbe	L_do_copy1          /* if (nbytes >= len) */ | ||||||
|  |  | ||||||
|  | 	sub	eax, ecx         /* len -= nbytes */ | ||||||
|  | 	rep     movsb | ||||||
|  | 	mov	esi, edi | ||||||
|  | 	sub	esi, ebp         /* from = out - dist */ | ||||||
|  | 	jmp	L_do_copy1 | ||||||
|  |  | ||||||
|  | L_wrap_around_window: | ||||||
|  | 	mov	eax, [esp+28] | ||||||
|  | 	cmp	ecx, eax | ||||||
|  | 	jbe	L_contiguous_in_window /* if (write >= nbytes) */ | ||||||
|  |  | ||||||
|  | 	add	esi, [esp+24] | ||||||
|  | 	add	esi, eax | ||||||
|  | 	sub	esi, ecx         /* from += wsize + write - nbytes */ | ||||||
|  | 	sub	ecx, eax         /* nbytes -= write */ | ||||||
|  |  | ||||||
|  | 	mov	eax, [esp+60] | ||||||
|  | 	cmp	eax, ecx | ||||||
|  | 	jbe	L_do_copy1          /* if (nbytes >= len) */ | ||||||
|  |  | ||||||
|  | 	sub	eax, ecx         /* len -= nbytes */ | ||||||
|  | 	rep     movsb | ||||||
|  | 	mov	esi, [esp+32]     /* from = window */ | ||||||
|  | 	mov	ecx, [esp+28]     /* nbytes = write */ | ||||||
|  | 	cmp	eax, ecx | ||||||
|  | 	jbe	L_do_copy1          /* if (nbytes >= len) */ | ||||||
|  |  | ||||||
|  | 	sub	eax, ecx         /* len -= nbytes */ | ||||||
|  | 	rep     movsb | ||||||
|  | 	mov	esi, edi | ||||||
|  | 	sub	esi, ebp         /* from = out - dist */ | ||||||
|  | 	jmp	L_do_copy1 | ||||||
|  |  | ||||||
|  | L_contiguous_in_window: | ||||||
|  | 	add	esi, eax | ||||||
|  | 	sub	esi, ecx         /* from += write - nbytes */ | ||||||
|  |  | ||||||
|  | 	mov	eax, [esp+60] | ||||||
|  | 	cmp	eax, ecx | ||||||
|  | 	jbe	L_do_copy1          /* if (nbytes >= len) */ | ||||||
|  |  | ||||||
|  | 	sub	eax, ecx         /* len -= nbytes */ | ||||||
|  | 	rep     movsb | ||||||
|  | 	mov	esi, edi | ||||||
|  | 	sub	esi, ebp         /* from = out - dist */ | ||||||
|  |  | ||||||
|  | L_do_copy1: | ||||||
|  | 	mov	ecx, eax | ||||||
|  | 	rep     movsb | ||||||
|  |  | ||||||
|  | 	mov	esi, [esp+4]      /* move in back to %esi, toss from */ | ||||||
|  | 	mov	ebp, [esp+44]     /* ebp = lcode */ | ||||||
|  | 	jmp	L_while_test | ||||||
|  |  | ||||||
|  | L_test_for_end_of_block: | ||||||
|  | 	test	al, 32 | ||||||
|  | 	jz	L_invalid_literal_length_code | ||||||
|  | 	mov	dword ptr [esp+68], 1 | ||||||
|  | 	jmp	L_break_loop_with_status | ||||||
|  |  | ||||||
|  | L_invalid_literal_length_code: | ||||||
|  | 	mov	dword ptr [esp+68], 2 | ||||||
|  | 	jmp	L_break_loop_with_status | ||||||
|  |  | ||||||
|  | L_invalid_distance_code: | ||||||
|  | 	mov	dword ptr [esp+68], 3 | ||||||
|  | 	jmp	L_break_loop_with_status | ||||||
|  |  | ||||||
|  | L_invalid_distance_too_far: | ||||||
|  | 	mov	esi, [esp+4] | ||||||
|  | 	mov	dword ptr [esp+68], 4 | ||||||
|  | 	jmp	L_break_loop_with_status | ||||||
|  |  | ||||||
|  | L_break_loop: | ||||||
|  | 	mov	dword ptr [esp+68], 0 | ||||||
|  |  | ||||||
|  | L_break_loop_with_status: | ||||||
|  | /* put in, out, bits, and hold back into ar and pop esp */ | ||||||
|  | 	mov	[esp+4], esi | ||||||
|  | 	mov	[esp+12], edi | ||||||
|  | 	mov	[esp+40], ebx | ||||||
|  | 	mov	[esp+36], edx | ||||||
|  | 	mov	esp, [esp] | ||||||
|  | 	pop	ebp | ||||||
|  | 	popfd | ||||||
|  |     } | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |     if (ar.status > 1) { | ||||||
|  |         if (ar.status == 2) | ||||||
|  |             strm->msg = "invalid literal/length code"; | ||||||
|  |         else if (ar.status == 3) | ||||||
|  |             strm->msg = "invalid distance code"; | ||||||
|  |         else | ||||||
|  |             strm->msg = "invalid distance too far back"; | ||||||
|  |         state->mode = BAD; | ||||||
|  |     } | ||||||
|  |     else if ( ar.status == 1 ) { | ||||||
|  |         state->mode = TYPE; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /* return unused bytes (on entry, bits < 8, so in won't go too far back) */ | ||||||
|  |     ar.len = ar.bits >> 3; | ||||||
|  |     ar.in -= ar.len; | ||||||
|  |     ar.bits -= ar.len << 3; | ||||||
|  |     ar.hold &= (1U << ar.bits) - 1; | ||||||
|  |  | ||||||
|  |     /* update state and return */ | ||||||
|  |     strm->next_in = ar.in; | ||||||
|  |     strm->next_out = ar.out; | ||||||
|  |     strm->avail_in = (unsigned)(ar.in < ar.last ? 5 + (ar.last - ar.in) : | ||||||
|  |                                                   5 - (ar.in - ar.last)); | ||||||
|  |     strm->avail_out = (unsigned)(ar.out < ar.end ? 257 + (ar.end - ar.out) : | ||||||
|  |                                                    257 - (ar.out - ar.end)); | ||||||
|  |     state->hold = ar.hold; | ||||||
|  |     state->bits = ar.bits; | ||||||
|  |     return; | ||||||
|  | } | ||||||
|  |  | ||||||
							
								
								
									
										1377
									
								
								contrib/inflate86/inffast.S
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1377
									
								
								contrib/inflate86/inffast.S
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										47
									
								
								contrib/minizip/ChangeLogUnzip
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								contrib/minizip/ChangeLogUnzip
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,47 @@ | |||||||
|  | Change in 0.21: (10 Mar 03) | ||||||
|  | - bug fixes | ||||||
|  |  | ||||||
|  | Change in 0.17: (27 Jan 02) | ||||||
|  | - bug fixes | ||||||
|  |  | ||||||
|  | Change in 0.16: (19 Jan 02) | ||||||
|  | - Support of ioapi for virtualize zip file access | ||||||
|  |  | ||||||
|  | Change in 0.15: (19 Mar 98) | ||||||
|  | - fix memory leak in minizip.c | ||||||
|  |  | ||||||
|  | Change in 0.14: (10 Mar 98) | ||||||
|  | - fix bugs in minizip.c sample for zipping big file | ||||||
|  | - fix problem in month in date handling | ||||||
|  | - fix bug in unzlocal_GetCurrentFileInfoInternal in unzip.c for  | ||||||
|  |     comment handling | ||||||
|  |  | ||||||
|  | Change in 0.13: (6 Mar 98) | ||||||
|  | - fix bugs in zip.c | ||||||
|  | - add real minizip sample | ||||||
|  |  | ||||||
|  | Change in 0.12: (4 Mar 98) | ||||||
|  | - add zip.c and zip.h for creates .zip file | ||||||
|  | - fix change_file_date in miniunz.c for Unix (Jean-loup Gailly) | ||||||
|  | - fix miniunz.c for file without specific record for directory | ||||||
|  |  | ||||||
|  | Change in 0.11: (3 Mar 98) | ||||||
|  | - fix bug in unzGetCurrentFileInfo for get extra field and comment | ||||||
|  | - enhance miniunz sample, remove the bad unztst.c sample | ||||||
|  |  | ||||||
|  | Change in 0.10: (2 Mar 98) | ||||||
|  | - fix bug in unzReadCurrentFile | ||||||
|  | - rename unzip* to unz* function and structure | ||||||
|  | - remove Windows-like hungary notation variable name | ||||||
|  | - modify some structure in unzip.h | ||||||
|  | - add somes comment in source | ||||||
|  | - remove unzipGetcCurrentFile function | ||||||
|  | - replace ZUNZEXPORT by ZEXPORT | ||||||
|  | - add unzGetLocalExtrafield for get the local extrafield info | ||||||
|  | - add a new sample, miniunz.c | ||||||
|  |  | ||||||
|  | Change in 0.4: (25 Feb 98) | ||||||
|  | - suppress the type unzipFileInZip.  | ||||||
|  |   Only on file in the zipfile can be open at the same time | ||||||
|  | - fix somes typo in code | ||||||
|  | - added tm_unz structure in unzip_file_info (date/time in readable format) | ||||||
							
								
								
									
										25
									
								
								contrib/minizip/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								contrib/minizip/Makefile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | |||||||
|  | CC=cc | ||||||
|  | CFLAGS=-O -I../.. | ||||||
|  |  | ||||||
|  | UNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a | ||||||
|  | ZIP_OBJS = minizip.o zip.o   ioapi.o ../../libz.a | ||||||
|  |  | ||||||
|  | .c.o: | ||||||
|  | 	$(CC) -c $(CFLAGS) $*.c | ||||||
|  |  | ||||||
|  | all: miniunz minizip | ||||||
|  |  | ||||||
|  | miniunz:  $(UNZ_OBJS) | ||||||
|  | 	$(CC) $(CFLAGS) -o $@ $(UNZ_OBJS) | ||||||
|  |  | ||||||
|  | minizip:  $(ZIP_OBJS) | ||||||
|  | 	$(CC) $(CFLAGS) -o $@ $(ZIP_OBJS) | ||||||
|  |  | ||||||
|  | test:	miniunz minizip | ||||||
|  | 	./minizip test readme.txt | ||||||
|  | 	./miniunz -l test.zip | ||||||
|  | 	mv readme.txt readme.old | ||||||
|  | 	./miniunz test.zip | ||||||
|  |  | ||||||
|  | clean: | ||||||
|  | 	/bin/rm -f *.o *~ minizip miniunz | ||||||
							
								
								
									
										104
									
								
								contrib/minizip/crypt.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										104
									
								
								contrib/minizip/crypt.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,104 @@ | |||||||
|  |  | ||||||
|  | #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8)) | ||||||
|  |  | ||||||
|  | /*********************************************************************** | ||||||
|  |  * Return the next byte in the pseudo-random sequence | ||||||
|  |  */ | ||||||
|  | static int decrypt_byte(unsigned long* pkeys, const unsigned long* pcrc_32_tab) | ||||||
|  | { | ||||||
|  |     unsigned temp;  /* POTENTIAL BUG:  temp*(temp^1) may overflow in an | ||||||
|  |                      * unpredictable manner on 16-bit systems; not a problem | ||||||
|  |                      * with any known compiler so far, though */ | ||||||
|  |  | ||||||
|  |     temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2; | ||||||
|  |     return (int)(((temp * (temp ^ 1)) >> 8) & 0xff); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /*********************************************************************** | ||||||
|  |  * Update the encryption keys with the next byte of plain text | ||||||
|  |  */ | ||||||
|  | static int update_keys(unsigned long* pkeys,const unsigned long* pcrc_32_tab,int c) | ||||||
|  | { | ||||||
|  |     (*(pkeys+0)) = CRC32((*(pkeys+0)), c); | ||||||
|  |     (*(pkeys+1)) += (*(pkeys+0)) & 0xff; | ||||||
|  |     (*(pkeys+1)) = (*(pkeys+1)) * 134775813L + 1; | ||||||
|  |     { | ||||||
|  |       register int keyshift = (int)((*(pkeys+1)) >> 24); | ||||||
|  |       (*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift); | ||||||
|  |     } | ||||||
|  |     return c; | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | /*********************************************************************** | ||||||
|  |  * Initialize the encryption keys and the random header according to | ||||||
|  |  * the given password. | ||||||
|  |  */ | ||||||
|  | static void init_keys(const char* passwd,unsigned long* pkeys,const unsigned long* pcrc_32_tab) | ||||||
|  | { | ||||||
|  |     *(pkeys+0) = 305419896L; | ||||||
|  |     *(pkeys+1) = 591751049L; | ||||||
|  |     *(pkeys+2) = 878082192L; | ||||||
|  |     while (*passwd != '\0') { | ||||||
|  |         update_keys(pkeys,pcrc_32_tab,(int)*passwd); | ||||||
|  |         passwd++; | ||||||
|  |     } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | #define zdecode(pkeys,pcrc_32_tab,c) \ | ||||||
|  |     (update_keys(pkeys,pcrc_32_tab,c ^= decrypt_byte(pkeys,pcrc_32_tab))) | ||||||
|  |  | ||||||
|  | #define zencode(pkeys,pcrc_32_tab,c,t) \ | ||||||
|  |     (t=decrypt_byte(pkeys,pcrc_32_tab), update_keys(pkeys,pcrc_32_tab,c), t^(c)) | ||||||
|  |  | ||||||
|  | #ifdef INCLUDECRYPTINGCODE_IFCRYPTALLOWED | ||||||
|  |  | ||||||
|  | #define RAND_HEAD_LEN  12 | ||||||
|  |    /* "last resort" source for second part of crypt seed pattern */ | ||||||
|  | #  ifndef ZCR_SEED2 | ||||||
|  | #    define ZCR_SEED2 (unsigned long)3141592654L     /* use PI as default pattern */ | ||||||
|  | #  endif | ||||||
|  |  | ||||||
|  | static int crypthead(passwd, buf, bufSize, pkeys, pcrc_32_tab, crcForCrypting) | ||||||
|  |     const char *passwd;         /* password string */ | ||||||
|  |     unsigned char *buf;         /* where to write header */ | ||||||
|  |     int bufSize; | ||||||
|  |     unsigned long* pkeys; | ||||||
|  |     const unsigned long* pcrc_32_tab; | ||||||
|  |     unsigned long crcForCrypting; | ||||||
|  | { | ||||||
|  |     int n;                       /* index in random header */ | ||||||
|  |     int t;                       /* temporary */ | ||||||
|  |     int c;                       /* random byte */ | ||||||
|  |     unsigned char header[RAND_HEAD_LEN-2]; /* random header */ | ||||||
|  |     static unsigned calls = 0;   /* ensure different random header each time */ | ||||||
|  |  | ||||||
|  |     if (bufSize<RAND_HEAD_LEN) | ||||||
|  |       return 0; | ||||||
|  |  | ||||||
|  |     /* First generate RAND_HEAD_LEN-2 random bytes. We encrypt the | ||||||
|  |      * output of rand() to get less predictability, since rand() is | ||||||
|  |      * often poorly implemented. | ||||||
|  |      */ | ||||||
|  |     if (++calls == 1) | ||||||
|  |     { | ||||||
|  |         srand((unsigned)(time(NULL) ^ ZCR_SEED2)); | ||||||
|  |     } | ||||||
|  |     init_keys(passwd, pkeys, pcrc_32_tab); | ||||||
|  |     for (n = 0; n < RAND_HEAD_LEN-2; n++) | ||||||
|  |     { | ||||||
|  |         c = (rand() >> 7) & 0xff; | ||||||
|  |         header[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, c, t); | ||||||
|  |     } | ||||||
|  |     /* Encrypt random header (last two bytes is high word of crc) */ | ||||||
|  |     init_keys(passwd, pkeys, pcrc_32_tab); | ||||||
|  |     for (n = 0; n < RAND_HEAD_LEN-2; n++) | ||||||
|  |     { | ||||||
|  |         buf[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, header[n], t); | ||||||
|  |     } | ||||||
|  |     buf[n++] = zencode(pkeys, pcrc_32_tab, (int)(crcForCrypting >> 16) & 0xff, t); | ||||||
|  |     buf[n++] = zencode(pkeys, pcrc_32_tab, (int)(crcForCrypting >> 24) & 0xff, t); | ||||||
|  |     return n; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | #endif | ||||||
							
								
								
									
										177
									
								
								contrib/minizip/ioapi.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										177
									
								
								contrib/minizip/ioapi.c
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,177 @@ | |||||||
|  | /* ioapi.c -- IO base function header for compress/uncompress .zip | ||||||
|  |    files using zlib + zip or unzip API | ||||||
|  |  | ||||||
|  |    Version 0.21, March 10th, 2003 | ||||||
|  |  | ||||||
|  |    Copyright (C) 1998-2003 Gilles Vollant | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdlib.h> | ||||||
|  | #include <string.h> | ||||||
|  |  | ||||||
|  | #include "zlib.h" | ||||||
|  | #include "ioapi.h" | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | /* I've found an old Unix (a SunOS 4.1.3_U1) without all SEEK_* defined.... */ | ||||||
|  |  | ||||||
|  | #ifndef SEEK_CUR | ||||||
|  | #define SEEK_CUR    1 | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #ifndef SEEK_END | ||||||
|  | #define SEEK_END    2 | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #ifndef SEEK_SET | ||||||
|  | #define SEEK_SET    0 | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | voidpf ZCALLBACK fopen_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    const char* filename, | ||||||
|  |    int mode)); | ||||||
|  |  | ||||||
|  | uLong ZCALLBACK fread_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream, | ||||||
|  |    void* buf, | ||||||
|  |    uLong size)); | ||||||
|  |  | ||||||
|  | uLong ZCALLBACK fwrite_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream, | ||||||
|  |    const void* buf, | ||||||
|  |    uLong size)); | ||||||
|  |  | ||||||
|  | long ZCALLBACK ftell_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream)); | ||||||
|  |  | ||||||
|  | long ZCALLBACK fseek_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream, | ||||||
|  |    uLong offset, | ||||||
|  |    int origin)); | ||||||
|  |  | ||||||
|  | int ZCALLBACK fclose_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream)); | ||||||
|  |  | ||||||
|  | int ZCALLBACK ferror_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream)); | ||||||
|  |  | ||||||
|  |  | ||||||
|  | voidpf ZCALLBACK fopen_file_func (opaque, filename, mode) | ||||||
|  |    voidpf opaque; | ||||||
|  |    const char* filename; | ||||||
|  |    int mode; | ||||||
|  | { | ||||||
|  |     FILE* file = NULL; | ||||||
|  |     const char* mode_fopen = NULL; | ||||||
|  |     if ((mode & ZLIB_FILEFUNC_MODE_READWRITEFILTER)==ZLIB_FILEFUNC_MODE_READ) | ||||||
|  |         mode_fopen = "rb"; | ||||||
|  |     else | ||||||
|  |     if (mode & ZLIB_FILEFUNC_MODE_EXISTING) | ||||||
|  |         mode_fopen = "r+b"; | ||||||
|  |     else | ||||||
|  |     if (mode & ZLIB_FILEFUNC_MODE_CREATE) | ||||||
|  |         mode_fopen = "wb"; | ||||||
|  |  | ||||||
|  |     if ((filename!=NULL) && (mode_fopen != NULL)) | ||||||
|  |         file = fopen(filename, mode_fopen); | ||||||
|  |     return file; | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | uLong ZCALLBACK fread_file_func (opaque, stream, buf, size) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  |    void* buf; | ||||||
|  |    uLong size; | ||||||
|  | { | ||||||
|  |     uLong ret; | ||||||
|  |     ret = fread(buf, 1, (size_t)size, (FILE *)stream); | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | uLong ZCALLBACK fwrite_file_func (opaque, stream, buf, size) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  |    const void* buf; | ||||||
|  |    uLong size; | ||||||
|  | { | ||||||
|  |     uLong ret; | ||||||
|  |     ret = fwrite(buf, 1, (size_t)size, (FILE *)stream); | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | long ZCALLBACK ftell_file_func (opaque, stream) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  | { | ||||||
|  |     long ret; | ||||||
|  |     ret = ftell((FILE *)stream); | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | long ZCALLBACK fseek_file_func (opaque, stream, offset, origin) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  |    uLong offset; | ||||||
|  |    int origin; | ||||||
|  | { | ||||||
|  |     int fseek_origin=0; | ||||||
|  |     long ret; | ||||||
|  |     switch (origin) | ||||||
|  |     { | ||||||
|  |     case ZLIB_FILEFUNC_SEEK_CUR : | ||||||
|  |         fseek_origin = SEEK_CUR; | ||||||
|  |         break; | ||||||
|  |     case ZLIB_FILEFUNC_SEEK_END : | ||||||
|  |         fseek_origin = SEEK_END; | ||||||
|  |         break; | ||||||
|  |     case ZLIB_FILEFUNC_SEEK_SET : | ||||||
|  |         fseek_origin = SEEK_SET; | ||||||
|  |         break; | ||||||
|  |     default: return -1; | ||||||
|  |     } | ||||||
|  |     ret = 0; | ||||||
|  |     fseek((FILE *)stream, offset, fseek_origin); | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int ZCALLBACK fclose_file_func (opaque, stream) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  | { | ||||||
|  |     int ret; | ||||||
|  |     ret = fclose((FILE *)stream); | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int ZCALLBACK ferror_file_func (opaque, stream) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  | { | ||||||
|  |     int ret; | ||||||
|  |     ret = ferror((FILE *)stream); | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | void fill_fopen_filefunc (pzlib_filefunc_def) | ||||||
|  |   zlib_filefunc_def* pzlib_filefunc_def; | ||||||
|  | { | ||||||
|  |     pzlib_filefunc_def->zopen_file = fopen_file_func; | ||||||
|  |     pzlib_filefunc_def->zread_file = fread_file_func; | ||||||
|  |     pzlib_filefunc_def->zwrite_file = fwrite_file_func; | ||||||
|  |     pzlib_filefunc_def->ztell_file = ftell_file_func; | ||||||
|  |     pzlib_filefunc_def->zseek_file = fseek_file_func; | ||||||
|  |     pzlib_filefunc_def->zclose_file = fclose_file_func; | ||||||
|  |     pzlib_filefunc_def->zerror_file = ferror_file_func; | ||||||
|  |     pzlib_filefunc_def->opaque = NULL; | ||||||
|  | } | ||||||
							
								
								
									
										75
									
								
								contrib/minizip/ioapi.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										75
									
								
								contrib/minizip/ioapi.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,75 @@ | |||||||
|  | /* ioapi.h -- IO base function header for compress/uncompress .zip | ||||||
|  |    files using zlib + zip or unzip API | ||||||
|  |  | ||||||
|  |    Version 0.21, March 10th, 2003 | ||||||
|  |  | ||||||
|  |    Copyright (C) 1998-2003 Gilles Vollant | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | #ifndef _ZLIBIOAPI_H | ||||||
|  | #define _ZLIBIOAPI_H | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #define ZLIB_FILEFUNC_SEEK_CUR (1) | ||||||
|  | #define ZLIB_FILEFUNC_SEEK_END (2) | ||||||
|  | #define ZLIB_FILEFUNC_SEEK_SET (0) | ||||||
|  |  | ||||||
|  | #define ZLIB_FILEFUNC_MODE_READ      (1) | ||||||
|  | #define ZLIB_FILEFUNC_MODE_WRITE     (2) | ||||||
|  | #define ZLIB_FILEFUNC_MODE_READWRITEFILTER (3) | ||||||
|  |  | ||||||
|  | #define ZLIB_FILEFUNC_MODE_EXISTING (4) | ||||||
|  | #define ZLIB_FILEFUNC_MODE_CREATE   (8) | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #ifndef ZCALLBACK | ||||||
|  |  | ||||||
|  | #if (defined(WIN32) || defined (WINDOWS) || defined (_WINDOWS)) && defined(CALLBACK) && defined (USEWINDOWS_CALLBACK) | ||||||
|  | #define ZCALLBACK CALLBACK | ||||||
|  | #else | ||||||
|  | #define ZCALLBACK | ||||||
|  | #endif | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #ifdef __cplusplus | ||||||
|  | extern "C" { | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode)); | ||||||
|  | typedef uLong  (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size)); | ||||||
|  | typedef uLong  (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size)); | ||||||
|  | typedef long   (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream)); | ||||||
|  | typedef long   (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin)); | ||||||
|  | typedef int    (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream)); | ||||||
|  | typedef int    (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream)); | ||||||
|  |  | ||||||
|  | typedef struct zlib_filefunc_def_s | ||||||
|  | { | ||||||
|  |     open_file_func      zopen_file; | ||||||
|  |     read_file_func      zread_file; | ||||||
|  |     write_file_func     zwrite_file; | ||||||
|  |     tell_file_func      ztell_file; | ||||||
|  |     seek_file_func      zseek_file; | ||||||
|  |     close_file_func     zclose_file; | ||||||
|  |     testerror_file_func zerror_file; | ||||||
|  |     voidpf              opaque; | ||||||
|  | } zlib_filefunc_def; | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | void fill_fopen_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def)); | ||||||
|  |  | ||||||
|  | #define ZREAD(filefunc,filestream,buf,size) ((*((filefunc).zread_file))((filefunc).opaque,filestream,buf,size)) | ||||||
|  | #define ZWRITE(filefunc,filestream,buf,size) ((*((filefunc).zwrite_file))((filefunc).opaque,filestream,buf,size)) | ||||||
|  | #define ZTELL(filefunc,filestream) ((*((filefunc).ztell_file))((filefunc).opaque,filestream)) | ||||||
|  | #define ZSEEK(filefunc,filestream,pos,mode) ((*((filefunc).zseek_file))((filefunc).opaque,filestream,pos,mode)) | ||||||
|  | #define ZCLOSE(filefunc,filestream) ((*((filefunc).zclose_file))((filefunc).opaque,filestream)) | ||||||
|  | #define ZERROR(filefunc,filestream) ((*((filefunc).zerror_file))((filefunc).opaque,filestream)) | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #ifdef __cplusplus | ||||||
|  | } | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #endif | ||||||
|  |  | ||||||
							
								
								
									
										271
									
								
								contrib/minizip/iowin32.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										271
									
								
								contrib/minizip/iowin32.c
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,271 @@ | |||||||
|  | /* iowin32.c -- IO base function header for compress/uncompress .zip | ||||||
|  |    files using zlib + zip or unzip API | ||||||
|  |    This IO API version uses the Win32 API (for Microsoft Windows) | ||||||
|  |  | ||||||
|  |    Version 0.21, March 10th, 2003 | ||||||
|  |  | ||||||
|  |    Copyright (C) 1998-2003 Gilles Vollant | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | #include <windows.h> | ||||||
|  | #include <stdlib.h> | ||||||
|  |  | ||||||
|  | #include "zlib.h" | ||||||
|  | #include "ioapi.h" | ||||||
|  | #include "iowin32.h" | ||||||
|  |  | ||||||
|  | #ifndef INVALID_HANDLE_VALUE | ||||||
|  | #define INVALID_HANDLE_VALUE (0xFFFFFFFF) | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #ifndef INVALID_SET_FILE_POINTER | ||||||
|  | #define INVALID_SET_FILE_POINTER ((DWORD)-1) | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | voidpf ZCALLBACK win32_open_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    const char* filename, | ||||||
|  |    int mode)); | ||||||
|  |  | ||||||
|  | uLong ZCALLBACK win32_read_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream, | ||||||
|  |    void* buf, | ||||||
|  |    uLong size)); | ||||||
|  |  | ||||||
|  | uLong ZCALLBACK win32_write_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream, | ||||||
|  |    const void* buf, | ||||||
|  |    uLong size)); | ||||||
|  |  | ||||||
|  | long ZCALLBACK win32_tell_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream)); | ||||||
|  |  | ||||||
|  | long ZCALLBACK win32_seek_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream, | ||||||
|  |    uLong offset, | ||||||
|  |    int origin)); | ||||||
|  |  | ||||||
|  | long ZCALLBACK win32_close_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream)); | ||||||
|  |  | ||||||
|  | int ZCALLBACK win32_error_file_func OF(( | ||||||
|  |    voidpf opaque, | ||||||
|  |    voidpf stream)); | ||||||
|  |  | ||||||
|  | typedef struct | ||||||
|  | { | ||||||
|  |     HANDLE hf; | ||||||
|  |     int error; | ||||||
|  | } WIN32FILE_IOWIN; | ||||||
|  |  | ||||||
|  | voidpf ZCALLBACK win32_open_file_func (opaque, filename, mode) | ||||||
|  |    voidpf opaque; | ||||||
|  |    const char* filename; | ||||||
|  |    int mode; | ||||||
|  | { | ||||||
|  |     const char* mode_fopen = NULL; | ||||||
|  |     DWORD dwDesiredAccess,dwCreationDisposition,dwShareMode,dwFlagsAndAttributes ; | ||||||
|  |     HANDLE hFile = 0; | ||||||
|  |     voidpf ret=NULL; | ||||||
|  |  | ||||||
|  |     dwDesiredAccess = dwShareMode = dwFlagsAndAttributes = 0; | ||||||
|  |  | ||||||
|  |     if ((mode & ZLIB_FILEFUNC_MODE_READWRITEFILTER)==ZLIB_FILEFUNC_MODE_READ) | ||||||
|  |     { | ||||||
|  |         dwDesiredAccess = GENERIC_READ; | ||||||
|  |         dwCreationDisposition = OPEN_EXISTING; | ||||||
|  |         dwShareMode = FILE_SHARE_READ; | ||||||
|  |     } | ||||||
|  |     else | ||||||
|  |     if (mode & ZLIB_FILEFUNC_MODE_EXISTING) | ||||||
|  |     { | ||||||
|  |         dwDesiredAccess = GENERIC_WRITE | GENERIC_READ; | ||||||
|  |         dwCreationDisposition = OPEN_EXISTING; | ||||||
|  |     } | ||||||
|  |     else | ||||||
|  |     if (mode & ZLIB_FILEFUNC_MODE_CREATE) | ||||||
|  |     { | ||||||
|  |         dwDesiredAccess = GENERIC_WRITE | GENERIC_READ; | ||||||
|  |         dwCreationDisposition = CREATE_ALWAYS; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     if ((filename!=NULL) && (dwDesiredAccess != 0)) | ||||||
|  |         hFile = CreateFile((LPCTSTR)filename, dwDesiredAccess, dwShareMode, NULL, | ||||||
|  |                       dwCreationDisposition, dwFlagsAndAttributes, NULL); | ||||||
|  |  | ||||||
|  |     if (hFile == INVALID_HANDLE_VALUE) | ||||||
|  |         hFile = NULL; | ||||||
|  |  | ||||||
|  |     if (hFile != NULL) | ||||||
|  |     { | ||||||
|  |         WIN32FILE_IOWIN w32fiow; | ||||||
|  |         w32fiow.hf = hFile; | ||||||
|  |         w32fiow.error = 0; | ||||||
|  |         ret = malloc(sizeof(WIN32FILE_IOWIN)); | ||||||
|  |         if (ret==NULL) | ||||||
|  |             CloseHandle(hFile); | ||||||
|  |         else *((WIN32FILE_IOWIN*)ret) = w32fiow; | ||||||
|  |     } | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | uLong ZCALLBACK win32_read_file_func (opaque, stream, buf, size) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  |    void* buf; | ||||||
|  |    uLong size; | ||||||
|  | { | ||||||
|  |     uLong ret=0; | ||||||
|  |     HANDLE hFile = NULL; | ||||||
|  |     if (stream!=NULL) | ||||||
|  |         hFile = ((WIN32FILE_IOWIN*)stream) -> hf; | ||||||
|  |     if (hFile != NULL) | ||||||
|  |         if (!ReadFile(hFile, buf, size, &ret, NULL)) | ||||||
|  |         { | ||||||
|  |             DWORD dwErr = GetLastError(); | ||||||
|  |             if (dwErr == ERROR_HANDLE_EOF) | ||||||
|  |                 dwErr = 0; | ||||||
|  |             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | uLong ZCALLBACK win32_write_file_func (opaque, stream, buf, size) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  |    const void* buf; | ||||||
|  |    uLong size; | ||||||
|  | { | ||||||
|  |     uLong ret=0; | ||||||
|  |     HANDLE hFile = NULL; | ||||||
|  |     if (stream!=NULL) | ||||||
|  |         hFile = ((WIN32FILE_IOWIN*)stream) -> hf; | ||||||
|  |  | ||||||
|  |     if (hFile !=NULL) | ||||||
|  |         if (!WriteFile(hFile, buf, size, &ret, NULL)) | ||||||
|  |         { | ||||||
|  |             DWORD dwErr = GetLastError(); | ||||||
|  |             if (dwErr == ERROR_HANDLE_EOF) | ||||||
|  |                 dwErr = 0; | ||||||
|  |             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | long ZCALLBACK win32_tell_file_func (opaque, stream) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  | { | ||||||
|  |     long ret=-1; | ||||||
|  |     HANDLE hFile = NULL; | ||||||
|  |     if (stream!=NULL) | ||||||
|  |         hFile = ((WIN32FILE_IOWIN*)stream) -> hf; | ||||||
|  |     if (hFile != NULL) | ||||||
|  |     { | ||||||
|  |         DWORD dwSet = SetFilePointer(hFile, 0, NULL, FILE_CURRENT); | ||||||
|  |         if (dwSet == INVALID_SET_FILE_POINTER) | ||||||
|  |         { | ||||||
|  |             DWORD dwErr = GetLastError(); | ||||||
|  |             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; | ||||||
|  |             ret = -1; | ||||||
|  |         } | ||||||
|  |         else | ||||||
|  |             ret=(long)dwSet; | ||||||
|  |     } | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | long ZCALLBACK win32_seek_file_func (opaque, stream, offset, origin) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  |    uLong offset; | ||||||
|  |    int origin; | ||||||
|  | { | ||||||
|  |     DWORD dwMoveMethod=0xFFFFFFFF; | ||||||
|  |     HANDLE hFile = NULL; | ||||||
|  |  | ||||||
|  |     long ret=-1; | ||||||
|  |     if (stream!=NULL) | ||||||
|  |         hFile = ((WIN32FILE_IOWIN*)stream) -> hf; | ||||||
|  |     switch (origin) | ||||||
|  |     { | ||||||
|  |     case ZLIB_FILEFUNC_SEEK_CUR : | ||||||
|  |         dwMoveMethod = FILE_CURRENT; | ||||||
|  |         break; | ||||||
|  |     case ZLIB_FILEFUNC_SEEK_END : | ||||||
|  |         dwMoveMethod = FILE_END; | ||||||
|  |         break; | ||||||
|  |     case ZLIB_FILEFUNC_SEEK_SET : | ||||||
|  |         dwMoveMethod = FILE_BEGIN; | ||||||
|  |         break; | ||||||
|  |     default: return -1; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     if (hFile != NULL) | ||||||
|  |     { | ||||||
|  |         DWORD dwSet = SetFilePointer(hFile, offset, NULL, dwMoveMethod); | ||||||
|  |         if (dwSet == INVALID_SET_FILE_POINTER) | ||||||
|  |         { | ||||||
|  |             DWORD dwErr = GetLastError(); | ||||||
|  |             ((WIN32FILE_IOWIN*)stream) -> error=(int)dwErr; | ||||||
|  |             ret = -1; | ||||||
|  |         } | ||||||
|  |         else | ||||||
|  |             ret=0; | ||||||
|  |     } | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | long ZCALLBACK win32_close_file_func (opaque, stream) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  | { | ||||||
|  |     long ret=-1; | ||||||
|  |  | ||||||
|  |     if (stream!=NULL) | ||||||
|  |     { | ||||||
|  |         HANDLE hFile; | ||||||
|  |         hFile = ((WIN32FILE_IOWIN*)stream) -> hf; | ||||||
|  |         if (hFile != NULL) | ||||||
|  |         { | ||||||
|  |             CloseHandle(hFile); | ||||||
|  |             ret=0; | ||||||
|  |         } | ||||||
|  |         free(stream); | ||||||
|  |     } | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int ZCALLBACK win32_error_file_func (opaque, stream) | ||||||
|  |    voidpf opaque; | ||||||
|  |    voidpf stream; | ||||||
|  | { | ||||||
|  |     int ret=-1; | ||||||
|  |     if (stream!=NULL) | ||||||
|  |     { | ||||||
|  |         ret = ((WIN32FILE_IOWIN*)stream) -> error; | ||||||
|  |     } | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | void fill_win32_filefunc (pzlib_filefunc_def) | ||||||
|  |   zlib_filefunc_def* pzlib_filefunc_def; | ||||||
|  | { | ||||||
|  |     pzlib_filefunc_def->zopen_file = win32_open_file_func; | ||||||
|  |     pzlib_filefunc_def->zread_file = win32_read_file_func; | ||||||
|  |     pzlib_filefunc_def->zwrite_file = win32_write_file_func; | ||||||
|  |     pzlib_filefunc_def->ztell_file = win32_tell_file_func; | ||||||
|  |     pzlib_filefunc_def->zseek_file = win32_seek_file_func; | ||||||
|  |     pzlib_filefunc_def->zclose_file = win32_close_file_func; | ||||||
|  |     pzlib_filefunc_def->zerror_file = win32_error_file_func; | ||||||
|  |     pzlib_filefunc_def->opaque=NULL; | ||||||
|  | } | ||||||
							
								
								
									
										19
									
								
								contrib/minizip/iowin32.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								contrib/minizip/iowin32.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | |||||||
|  | /* iowin32.h -- IO base function header for compress/uncompress .zip | ||||||
|  |    files using zlib + zip or unzip API | ||||||
|  |    This IO API version uses the Win32 API (for Microsoft Windows) | ||||||
|  |  | ||||||
|  |    Version 0.21, March 10th, 2003 | ||||||
|  |  | ||||||
|  |    Copyright (C) 1998-2003 Gilles Vollant | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | #ifdef __cplusplus | ||||||
|  | extern "C" { | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | void fill_win32_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def)); | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #ifdef __cplusplus | ||||||
|  | } | ||||||
|  | #endif | ||||||
							
								
								
									
										543
									
								
								contrib/minizip/miniunz.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										543
									
								
								contrib/minizip/miniunz.c
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,543 @@ | |||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdlib.h> | ||||||
|  | #include <string.h> | ||||||
|  | #include <time.h> | ||||||
|  | #include <errno.h> | ||||||
|  | #include <fcntl.h> | ||||||
|  |  | ||||||
|  | #ifdef unix | ||||||
|  | # include <unistd.h> | ||||||
|  | # include <utime.h> | ||||||
|  | #else | ||||||
|  | # include <direct.h> | ||||||
|  | # include <io.h> | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #include "unzip.h" | ||||||
|  |  | ||||||
|  | #define CASESENSITIVITY (0) | ||||||
|  | #define WRITEBUFFERSIZE (8192) | ||||||
|  | #define MAXFILENAME (256) | ||||||
|  |  | ||||||
|  | #ifdef WIN32 | ||||||
|  | #define USEWIN32IOAPI | ||||||
|  | #include "iowin32.h" | ||||||
|  | #endif | ||||||
|  | /* | ||||||
|  |   mini unzip, demo of unzip package | ||||||
|  |  | ||||||
|  |   usage : | ||||||
|  |   Usage : miniunz [-exvlo] file.zip [file_to_extract] | ||||||
|  |  | ||||||
|  |   list the file in the zipfile, and print the content of FILE_ID.ZIP or README.TXT | ||||||
|  |     if it exists | ||||||
|  | */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | /* change_file_date : change the date/time of a file | ||||||
|  |     filename : the filename of the file where date/time must be modified | ||||||
|  |     dosdate : the new date at the MSDos format (4 bytes) | ||||||
|  |     tmu_date : the SAME new date at the tm_unz format */ | ||||||
|  | void change_file_date(filename,dosdate,tmu_date) | ||||||
|  |     const char *filename; | ||||||
|  |     uLong dosdate; | ||||||
|  |     tm_unz tmu_date; | ||||||
|  | { | ||||||
|  | #ifdef WIN32 | ||||||
|  |   HANDLE hFile; | ||||||
|  |   FILETIME ftm,ftLocal,ftCreate,ftLastAcc,ftLastWrite; | ||||||
|  |  | ||||||
|  |   hFile = CreateFile(filename,GENERIC_READ | GENERIC_WRITE, | ||||||
|  |                       0,NULL,OPEN_EXISTING,0,NULL); | ||||||
|  |   GetFileTime(hFile,&ftCreate,&ftLastAcc,&ftLastWrite); | ||||||
|  |   DosDateTimeToFileTime((WORD)(dosdate>>16),(WORD)dosdate,&ftLocal); | ||||||
|  |   LocalFileTimeToFileTime(&ftLocal,&ftm); | ||||||
|  |   SetFileTime(hFile,&ftm,&ftLastAcc,&ftm); | ||||||
|  |   CloseHandle(hFile); | ||||||
|  | #else | ||||||
|  | #ifdef unix | ||||||
|  |   struct utimbuf ut; | ||||||
|  |   struct tm newdate; | ||||||
|  |   newdate.tm_sec = tmu_date.tm_sec; | ||||||
|  |   newdate.tm_min=tmu_date.tm_min; | ||||||
|  |   newdate.tm_hour=tmu_date.tm_hour; | ||||||
|  |   newdate.tm_mday=tmu_date.tm_mday; | ||||||
|  |   newdate.tm_mon=tmu_date.tm_mon; | ||||||
|  |   if (tmu_date.tm_year > 1900) | ||||||
|  |       newdate.tm_year=tmu_date.tm_year - 1900; | ||||||
|  |   else | ||||||
|  |       newdate.tm_year=tmu_date.tm_year ; | ||||||
|  |   newdate.tm_isdst=-1; | ||||||
|  |  | ||||||
|  |   ut.actime=ut.modtime=mktime(&newdate); | ||||||
|  |   utime(filename,&ut); | ||||||
|  | #endif | ||||||
|  | #endif | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | /* mymkdir and change_file_date are not 100 % portable | ||||||
|  |    As I don't know well Unix, I wait feedback for the unix portion */ | ||||||
|  |  | ||||||
|  | int mymkdir(dirname) | ||||||
|  |     const char* dirname; | ||||||
|  | { | ||||||
|  |     int ret=0; | ||||||
|  | #ifdef WIN32 | ||||||
|  |     ret = mkdir(dirname); | ||||||
|  | #else | ||||||
|  | #ifdef unix | ||||||
|  |     ret = mkdir (dirname,0775); | ||||||
|  | #endif | ||||||
|  | #endif | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int makedir (newdir) | ||||||
|  |     char *newdir; | ||||||
|  | { | ||||||
|  |   char *buffer ; | ||||||
|  |   char *p; | ||||||
|  |   int  len = (int)strlen(newdir); | ||||||
|  |  | ||||||
|  |   if (len <= 0) | ||||||
|  |     return 0; | ||||||
|  |  | ||||||
|  |   buffer = (char*)malloc(len+1); | ||||||
|  |   strcpy(buffer,newdir); | ||||||
|  |  | ||||||
|  |   if (buffer[len-1] == '/') { | ||||||
|  |     buffer[len-1] = '\0'; | ||||||
|  |   } | ||||||
|  |   if (mymkdir(buffer) == 0) | ||||||
|  |     { | ||||||
|  |       free(buffer); | ||||||
|  |       return 1; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |   p = buffer+1; | ||||||
|  |   while (1) | ||||||
|  |     { | ||||||
|  |       char hold; | ||||||
|  |  | ||||||
|  |       while(*p && *p != '\\' && *p != '/') | ||||||
|  |         p++; | ||||||
|  |       hold = *p; | ||||||
|  |       *p = 0; | ||||||
|  |       if ((mymkdir(buffer) == -1) && (errno == ENOENT)) | ||||||
|  |         { | ||||||
|  |           printf("couldn't create directory %s\n",buffer); | ||||||
|  |           free(buffer); | ||||||
|  |           return 0; | ||||||
|  |         } | ||||||
|  |       if (hold == 0) | ||||||
|  |         break; | ||||||
|  |       *p++ = hold; | ||||||
|  |     } | ||||||
|  |   free(buffer); | ||||||
|  |   return 1; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | void do_banner() | ||||||
|  | { | ||||||
|  |     printf("MiniUnz 0.15, demo of zLib + Unz package written by Gilles Vollant\n"); | ||||||
|  |     printf("more info at http://www.winimage.com/zLibDll/unzip.html\n\n"); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | void do_help() | ||||||
|  | { | ||||||
|  |     printf("Usage : miniunz [-exvlo] file.zip [file_to_extract]\n\n") ; | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | int do_list(uf) | ||||||
|  |     unzFile uf; | ||||||
|  | { | ||||||
|  |     uLong i; | ||||||
|  |     unz_global_info gi; | ||||||
|  |     int err; | ||||||
|  |  | ||||||
|  |     err = unzGetGlobalInfo (uf,&gi); | ||||||
|  |     if (err!=UNZ_OK) | ||||||
|  |         printf("error %d with zipfile in unzGetGlobalInfo \n",err); | ||||||
|  |     printf(" Length  Method   Size  Ratio   Date    Time   CRC-32     Name\n"); | ||||||
|  |     printf(" ------  ------   ----  -----   ----    ----   ------     ----\n"); | ||||||
|  |     for (i=0;i<gi.number_entry;i++) | ||||||
|  |     { | ||||||
|  |         char filename_inzip[256]; | ||||||
|  |         unz_file_info file_info; | ||||||
|  |         uLong ratio=0; | ||||||
|  |         const char *string_method; | ||||||
|  |         err = unzGetCurrentFileInfo(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0); | ||||||
|  |         if (err!=UNZ_OK) | ||||||
|  |         { | ||||||
|  |             printf("error %d with zipfile in unzGetCurrentFileInfo\n",err); | ||||||
|  |             break; | ||||||
|  |         } | ||||||
|  |         if (file_info.uncompressed_size>0) | ||||||
|  |             ratio = (file_info.compressed_size*100)/file_info.uncompressed_size; | ||||||
|  |  | ||||||
|  |         if (file_info.compression_method==0) | ||||||
|  |             string_method="Stored"; | ||||||
|  |         else | ||||||
|  |         if (file_info.compression_method==Z_DEFLATED) | ||||||
|  |         { | ||||||
|  |             uInt iLevel=(uInt)((file_info.flag & 0x6)/2); | ||||||
|  |             if (iLevel==0) | ||||||
|  |               string_method="Defl:N"; | ||||||
|  |             else if (iLevel==1) | ||||||
|  |               string_method="Defl:X"; | ||||||
|  |             else if ((iLevel==2) || (iLevel==3)) | ||||||
|  |               string_method="Defl:F"; /* 2:fast , 3 : extra fast*/ | ||||||
|  |         } | ||||||
|  |         else | ||||||
|  |             string_method="Unkn. "; | ||||||
|  |  | ||||||
|  |         printf("%7lu  %6s %7lu %3lu%%  %2.2lu-%2.2lu-%2.2lu  %2.2lu:%2.2lu  %8.8lx   %s\n", | ||||||
|  |                 file_info.uncompressed_size,string_method,file_info.compressed_size, | ||||||
|  |                 ratio, | ||||||
|  |                 (uLong)file_info.tmu_date.tm_mon + 1, | ||||||
|  |                 (uLong)file_info.tmu_date.tm_mday, | ||||||
|  |                 (uLong)file_info.tmu_date.tm_year % 100, | ||||||
|  |                 (uLong)file_info.tmu_date.tm_hour,(uLong)file_info.tmu_date.tm_min, | ||||||
|  |                 (uLong)file_info.crc,filename_inzip); | ||||||
|  |         if ((i+1)<gi.number_entry) | ||||||
|  |         { | ||||||
|  |             err = unzGoToNextFile(uf); | ||||||
|  |             if (err!=UNZ_OK) | ||||||
|  |             { | ||||||
|  |                 printf("error %d with zipfile in unzGoToNextFile\n",err); | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | int do_extract_currentfile(uf,popt_extract_without_path,popt_overwrite,password) | ||||||
|  |     unzFile uf; | ||||||
|  |     const int* popt_extract_without_path; | ||||||
|  |     int* popt_overwrite; | ||||||
|  |     const char* password; | ||||||
|  | { | ||||||
|  |     char filename_inzip[256]; | ||||||
|  |     char* filename_withoutpath; | ||||||
|  |     char* p; | ||||||
|  |     int err=UNZ_OK; | ||||||
|  |     FILE *fout=NULL; | ||||||
|  |     void* buf; | ||||||
|  |     uInt size_buf; | ||||||
|  |  | ||||||
|  |     unz_file_info file_info; | ||||||
|  |     uLong ratio=0; | ||||||
|  |     err = unzGetCurrentFileInfo(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0); | ||||||
|  |  | ||||||
|  |     if (err!=UNZ_OK) | ||||||
|  |     { | ||||||
|  |         printf("error %d with zipfile in unzGetCurrentFileInfo\n",err); | ||||||
|  |         return err; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     size_buf = WRITEBUFFERSIZE; | ||||||
|  |     buf = (void*)malloc(size_buf); | ||||||
|  |     if (buf==NULL) | ||||||
|  |     { | ||||||
|  |         printf("Error allocating memory\n"); | ||||||
|  |         return UNZ_INTERNALERROR; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     p = filename_withoutpath = filename_inzip; | ||||||
|  |     while ((*p) != '\0') | ||||||
|  |     { | ||||||
|  |         if (((*p)=='/') || ((*p)=='\\')) | ||||||
|  |             filename_withoutpath = p+1; | ||||||
|  |         p++; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     if ((*filename_withoutpath)=='\0') | ||||||
|  |     { | ||||||
|  |         if ((*popt_extract_without_path)==0) | ||||||
|  |         { | ||||||
|  |             printf("creating directory: %s\n",filename_inzip); | ||||||
|  |             mymkdir(filename_inzip); | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |     else | ||||||
|  |     { | ||||||
|  |         const char* write_filename; | ||||||
|  |         int skip=0; | ||||||
|  |  | ||||||
|  |         if ((*popt_extract_without_path)==0) | ||||||
|  |             write_filename = filename_inzip; | ||||||
|  |         else | ||||||
|  |             write_filename = filename_withoutpath; | ||||||
|  |  | ||||||
|  |         err = unzOpenCurrentFilePassword(uf,password); | ||||||
|  |         if (err!=UNZ_OK) | ||||||
|  |         { | ||||||
|  |             printf("error %d with zipfile in unzOpenCurrentFilePassword\n",err); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         if (((*popt_overwrite)==0) && (err==UNZ_OK)) | ||||||
|  |         { | ||||||
|  |             char rep=0; | ||||||
|  |             FILE* ftestexist; | ||||||
|  |             ftestexist = fopen(write_filename,"rb"); | ||||||
|  |             if (ftestexist!=NULL) | ||||||
|  |             { | ||||||
|  |                 fclose(ftestexist); | ||||||
|  |                 do | ||||||
|  |                 { | ||||||
|  |                     char answer[128]; | ||||||
|  |                     printf("The file %s exist. Overwrite ? [y]es, [n]o, [A]ll: ",write_filename); | ||||||
|  |                     scanf("%1s",answer); | ||||||
|  |                     rep = answer[0] ; | ||||||
|  |                     if ((rep>='a') && (rep<='z')) | ||||||
|  |                         rep -= 0x20; | ||||||
|  |                 } | ||||||
|  |                 while ((rep!='Y') && (rep!='N') && (rep!='A')); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             if (rep == 'N') | ||||||
|  |                 skip = 1; | ||||||
|  |  | ||||||
|  |             if (rep == 'A') | ||||||
|  |                 *popt_overwrite=1; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         if ((skip==0) && (err==UNZ_OK)) | ||||||
|  |         { | ||||||
|  |             fout=fopen(write_filename,"wb"); | ||||||
|  |  | ||||||
|  |             /* some zipfile don't contain directory alone before file */ | ||||||
|  |             if ((fout==NULL) && ((*popt_extract_without_path)==0) && | ||||||
|  |                                 (filename_withoutpath!=(char*)filename_inzip)) | ||||||
|  |             { | ||||||
|  |                 char c=*(filename_withoutpath-1); | ||||||
|  |                 *(filename_withoutpath-1)='\0'; | ||||||
|  |                 makedir(write_filename); | ||||||
|  |                 *(filename_withoutpath-1)=c; | ||||||
|  |                 fout=fopen(write_filename,"wb"); | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             if (fout==NULL) | ||||||
|  |             { | ||||||
|  |                 printf("error opening %s\n",write_filename); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         if (fout!=NULL) | ||||||
|  |         { | ||||||
|  |             printf(" extracting: %s\n",write_filename); | ||||||
|  |  | ||||||
|  |             do | ||||||
|  |             { | ||||||
|  |                 err = unzReadCurrentFile(uf,buf,size_buf); | ||||||
|  |                 if (err<0) | ||||||
|  |                 { | ||||||
|  |                     printf("error %d with zipfile in unzReadCurrentFile\n",err); | ||||||
|  |                     break; | ||||||
|  |                 } | ||||||
|  |                 if (err>0) | ||||||
|  |                     if (fwrite(buf,err,1,fout)!=1) | ||||||
|  |                     { | ||||||
|  |                         printf("error in writing extracted file\n"); | ||||||
|  |                         err=UNZ_ERRNO; | ||||||
|  |                         break; | ||||||
|  |                     } | ||||||
|  |             } | ||||||
|  |             while (err>0); | ||||||
|  |             if (fout) | ||||||
|  |                     fclose(fout); | ||||||
|  |  | ||||||
|  |             if (err==0) | ||||||
|  |                 change_file_date(write_filename,file_info.dosDate, | ||||||
|  |                                  file_info.tmu_date); | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         if (err==UNZ_OK) | ||||||
|  |         { | ||||||
|  |             err = unzCloseCurrentFile (uf); | ||||||
|  |             if (err!=UNZ_OK) | ||||||
|  |             { | ||||||
|  |                 printf("error %d with zipfile in unzCloseCurrentFile\n",err); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         else | ||||||
|  |             unzCloseCurrentFile(uf); /* don't lose the error */ | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     free(buf); | ||||||
|  |     return err; | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | int do_extract(uf,opt_extract_without_path,opt_overwrite,password) | ||||||
|  |     unzFile uf; | ||||||
|  |     int opt_extract_without_path; | ||||||
|  |     int opt_overwrite; | ||||||
|  |     const char* password; | ||||||
|  | { | ||||||
|  |     uLong i; | ||||||
|  |     unz_global_info gi; | ||||||
|  |     int err; | ||||||
|  |     FILE* fout=NULL; | ||||||
|  |  | ||||||
|  |     err = unzGetGlobalInfo (uf,&gi); | ||||||
|  |     if (err!=UNZ_OK) | ||||||
|  |         printf("error %d with zipfile in unzGetGlobalInfo \n",err); | ||||||
|  |  | ||||||
|  |     for (i=0;i<gi.number_entry;i++) | ||||||
|  |     { | ||||||
|  |         if (do_extract_currentfile(uf,&opt_extract_without_path, | ||||||
|  |                                       &opt_overwrite, | ||||||
|  |                                       password) != UNZ_OK) | ||||||
|  |             break; | ||||||
|  |  | ||||||
|  |         if ((i+1)<gi.number_entry) | ||||||
|  |         { | ||||||
|  |             err = unzGoToNextFile(uf); | ||||||
|  |             if (err!=UNZ_OK) | ||||||
|  |             { | ||||||
|  |                 printf("error %d with zipfile in unzGoToNextFile\n",err); | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int do_extract_onefile(uf,filename,opt_extract_without_path,opt_overwrite,password) | ||||||
|  |     unzFile uf; | ||||||
|  |     const char* filename; | ||||||
|  |     int opt_extract_without_path; | ||||||
|  |     int opt_overwrite; | ||||||
|  |     const char* password; | ||||||
|  | { | ||||||
|  |     int err = UNZ_OK; | ||||||
|  |     if (unzLocateFile(uf,filename,CASESENSITIVITY)!=UNZ_OK) | ||||||
|  |     { | ||||||
|  |         printf("file %s not found in the zipfile\n",filename); | ||||||
|  |         return 2; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     if (do_extract_currentfile(uf,&opt_extract_without_path, | ||||||
|  |                                       &opt_overwrite, | ||||||
|  |                                       password) == UNZ_OK) | ||||||
|  |         return 0; | ||||||
|  |     else | ||||||
|  |         return 1; | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  | int main(argc,argv) | ||||||
|  |     int argc; | ||||||
|  |     char *argv[]; | ||||||
|  | { | ||||||
|  |     const char *zipfilename=NULL; | ||||||
|  |     const char *filename_to_extract=NULL; | ||||||
|  |     const char *password=NULL; | ||||||
|  |     char filename_try[MAXFILENAME+16] = ""; | ||||||
|  |     int i; | ||||||
|  |     int opt_do_list=0; | ||||||
|  |     int opt_do_extract=1; | ||||||
|  |     int opt_do_extract_withoutpath=0; | ||||||
|  |     int opt_overwrite=0; | ||||||
|  |     unzFile uf=NULL; | ||||||
|  |  | ||||||
|  |     do_banner(); | ||||||
|  |     if (argc==1) | ||||||
|  |     { | ||||||
|  |         do_help(); | ||||||
|  |         return 0; | ||||||
|  |     } | ||||||
|  |     else | ||||||
|  |     { | ||||||
|  |         for (i=1;i<argc;i++) | ||||||
|  |         { | ||||||
|  |             if ((*argv[i])=='-') | ||||||
|  |             { | ||||||
|  |                 const char *p=argv[i]+1; | ||||||
|  |  | ||||||
|  |                 while ((*p)!='\0') | ||||||
|  |                 { | ||||||
|  |                     char c=*(p++);; | ||||||
|  |                     if ((c=='l') || (c=='L')) | ||||||
|  |                         opt_do_list = 1; | ||||||
|  |                     if ((c=='v') || (c=='V')) | ||||||
|  |                         opt_do_list = 1; | ||||||
|  |                     if ((c=='x') || (c=='X')) | ||||||
|  |                         opt_do_extract = 1; | ||||||
|  |                     if ((c=='e') || (c=='E')) | ||||||
|  |                         opt_do_extract = opt_do_extract_withoutpath = 1; | ||||||
|  |                     if ((c=='o') || (c=='O')) | ||||||
|  |                         opt_overwrite=1; | ||||||
|  |                     if (((c=='p') || (c=='P')) && (i+1<argc)) | ||||||
|  |                     { | ||||||
|  |                         password=argv[i+1]; | ||||||
|  |                         i++; | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             else | ||||||
|  |             { | ||||||
|  |                 if (zipfilename == NULL) | ||||||
|  |                     zipfilename = argv[i]; | ||||||
|  |                 else if (filename_to_extract==NULL) | ||||||
|  |                         filename_to_extract = argv[i] ; | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     if (zipfilename!=NULL) | ||||||
|  |     { | ||||||
|  |  | ||||||
|  |         #ifdef USEWIN32IOAPI | ||||||
|  |         zlib_filefunc_def ffunc; | ||||||
|  |         #endif | ||||||
|  |  | ||||||
|  |         strncpy(filename_try, zipfilename,MAXFILENAME-1); | ||||||
|  |         /* strncpy doesnt append the trailing NULL, of the string is too long. */ | ||||||
|  |         filename_try[ MAXFILENAME ] = '\0'; | ||||||
|  |  | ||||||
|  |         #ifdef USEWIN32IOAPI | ||||||
|  |         fill_win32_filefunc(&ffunc); | ||||||
|  |         uf = unzOpen2(zipfilename,&ffunc); | ||||||
|  |         #else | ||||||
|  |         uf = unzOpen(zipfilename); | ||||||
|  |         #endif | ||||||
|  |         if (uf==NULL) | ||||||
|  |         { | ||||||
|  |             strcat(filename_try,".zip"); | ||||||
|  |             #ifdef USEWIN32IOAPI | ||||||
|  |             uf = unzOpen2(filename_try,&ffunc); | ||||||
|  |             #else | ||||||
|  |             uf = unzOpen(filename_try); | ||||||
|  |             #endif | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     if (uf==NULL) | ||||||
|  |     { | ||||||
|  |         printf("Cannot open %s or %s.zip\n",zipfilename,zipfilename); | ||||||
|  |         return 1; | ||||||
|  |     } | ||||||
|  |     printf("%s opened\n",filename_try); | ||||||
|  |  | ||||||
|  |     if (opt_do_list==1) | ||||||
|  |         return do_list(uf); | ||||||
|  |     else if (opt_do_extract==1) | ||||||
|  |     { | ||||||
|  |         if (filename_to_extract == NULL) | ||||||
|  |             return do_extract(uf,opt_do_extract_withoutpath,opt_overwrite,password); | ||||||
|  |         else | ||||||
|  |             return do_extract_onefile(uf,filename_to_extract, | ||||||
|  |                                       opt_do_extract_withoutpath,opt_overwrite,password); | ||||||
|  |     } | ||||||
|  |     unzCloseCurrentFile(uf); | ||||||
|  |  | ||||||
|  |     return 0; | ||||||
|  | } | ||||||
							
								
								
									
										392
									
								
								contrib/minizip/minizip.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										392
									
								
								contrib/minizip/minizip.c
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,392 @@ | |||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdlib.h> | ||||||
|  | #include <string.h> | ||||||
|  | #include <time.h> | ||||||
|  | #include <errno.h> | ||||||
|  | #include <fcntl.h> | ||||||
|  |  | ||||||
|  | #ifdef unix | ||||||
|  | # include <unistd.h> | ||||||
|  | # include <utime.h> | ||||||
|  | # include <sys/types.h> | ||||||
|  | # include <sys/stat.h> | ||||||
|  | #else | ||||||
|  | # include <direct.h> | ||||||
|  | # include <io.h> | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #include "zip.h" | ||||||
|  |  | ||||||
|  | #ifdef WIN32 | ||||||
|  | #define USEWIN32IOAPI | ||||||
|  | #include "iowin32.h" | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #define WRITEBUFFERSIZE (16384) | ||||||
|  | #define MAXFILENAME (256) | ||||||
|  |  | ||||||
|  | #ifdef WIN32 | ||||||
|  | uLong filetime(f, tmzip, dt) | ||||||
|  |     char *f;                /* name of file to get info on */ | ||||||
|  |     tm_zip *tmzip;             /* return value: access, modific. and creation times */ | ||||||
|  |     uLong *dt;             /* dostime */ | ||||||
|  | { | ||||||
|  |   int ret = 0; | ||||||
|  |   { | ||||||
|  |       FILETIME ftLocal; | ||||||
|  |       HANDLE hFind; | ||||||
|  |       WIN32_FIND_DATA  ff32; | ||||||
|  |  | ||||||
|  |       hFind = FindFirstFile(f,&ff32); | ||||||
|  |       if (hFind != INVALID_HANDLE_VALUE) | ||||||
|  |       { | ||||||
|  |         FileTimeToLocalFileTime(&(ff32.ftLastWriteTime),&ftLocal); | ||||||
|  |         FileTimeToDosDateTime(&ftLocal,((LPWORD)dt)+1,((LPWORD)dt)+0); | ||||||
|  |         FindClose(hFind); | ||||||
|  |         ret = 1; | ||||||
|  |       } | ||||||
|  |   } | ||||||
|  |   return ret; | ||||||
|  | } | ||||||
|  | #else | ||||||
|  | #ifdef unix | ||||||
|  | uLong filetime(f, tmzip, dt) | ||||||
|  |     char *f;                /* name of file to get info on */ | ||||||
|  |     tm_zip *tmzip;             /* return value: access, modific. and creation times */ | ||||||
|  |     uLong *dt;             /* dostime */ | ||||||
|  | { | ||||||
|  |   int ret=0; | ||||||
|  |   struct stat s;        /* results of stat() */ | ||||||
|  |   struct tm* filedate; | ||||||
|  |   time_t tm_t=0; | ||||||
|  |  | ||||||
|  |   if (strcmp(f,"-")!=0) | ||||||
|  |   { | ||||||
|  |     char name[MAXFILENAME+1]; | ||||||
|  |     int len = strlen(f); | ||||||
|  |  | ||||||
|  |     strncpy(name, f,MAXFILENAME-1); | ||||||
|  |     /* strncpy doesnt append the trailing NULL, of the string is too long. */ | ||||||
|  |     name[ MAXFILENAME ] = '\0'; | ||||||
|  |  | ||||||
|  |     if (name[len - 1] == '/') | ||||||
|  |       name[len - 1] = '\0'; | ||||||
|  |     /* not all systems allow stat'ing a file with / appended */ | ||||||
|  |     if (stat(name,&s)==0) | ||||||
|  |     { | ||||||
|  |       tm_t = s.st_mtime; | ||||||
|  |       ret = 1; | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  |   filedate = localtime(&tm_t); | ||||||
|  |  | ||||||
|  |   tmzip->tm_sec  = filedate->tm_sec; | ||||||
|  |   tmzip->tm_min  = filedate->tm_min; | ||||||
|  |   tmzip->tm_hour = filedate->tm_hour; | ||||||
|  |   tmzip->tm_mday = filedate->tm_mday; | ||||||
|  |   tmzip->tm_mon  = filedate->tm_mon ; | ||||||
|  |   tmzip->tm_year = filedate->tm_year; | ||||||
|  |  | ||||||
|  |   return ret; | ||||||
|  | } | ||||||
|  | #else | ||||||
|  | uLong filetime(f, tmzip, dt) | ||||||
|  |     char *f;                /* name of file to get info on */ | ||||||
|  |     tm_zip *tmzip;             /* return value: access, modific. and creation times */ | ||||||
|  |     uLong *dt;             /* dostime */ | ||||||
|  | { | ||||||
|  |     return 0; | ||||||
|  | } | ||||||
|  | #endif | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | int check_exist_file(filename) | ||||||
|  |     const char* filename; | ||||||
|  | { | ||||||
|  |     FILE* ftestexist; | ||||||
|  |     int ret = 1; | ||||||
|  |     ftestexist = fopen(filename,"rb"); | ||||||
|  |     if (ftestexist==NULL) | ||||||
|  |         ret = 0; | ||||||
|  |     else | ||||||
|  |         fclose(ftestexist); | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | void do_banner() | ||||||
|  | { | ||||||
|  |     printf("MiniZip 0.15, demo of zLib + Zip package written by Gilles Vollant\n"); | ||||||
|  |     printf("more info at http://www.winimage.com/zLibDll/unzip.html\n\n"); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | void do_help() | ||||||
|  | { | ||||||
|  |     printf("Usage : minizip [-o] file.zip [files_to_add]\n\n") ; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* calculate the CRC32 of a file, | ||||||
|  |    because to encrypt a file, we need known the CRC32 of the file before */ | ||||||
|  | int getFileCrc(const char* filenameinzip,void*buf,unsigned long size_buf,unsigned long* result_crc) | ||||||
|  | { | ||||||
|  |    unsigned long calculate_crc=0; | ||||||
|  |    int err=ZIP_OK; | ||||||
|  |    FILE * fin = fopen(filenameinzip,"rb"); | ||||||
|  |    unsigned long size_read = 0; | ||||||
|  |    unsigned long total_read = 0; | ||||||
|  |    if (fin==NULL) | ||||||
|  |    { | ||||||
|  |        err = ZIP_ERRNO; | ||||||
|  |    } | ||||||
|  |  | ||||||
|  |     if (err == ZIP_OK) | ||||||
|  |         do | ||||||
|  |         { | ||||||
|  |             err = ZIP_OK; | ||||||
|  |             size_read = (int)fread(buf,1,size_buf,fin); | ||||||
|  |             if (size_read < size_buf) | ||||||
|  |                 if (feof(fin)==0) | ||||||
|  |             { | ||||||
|  |                 printf("error in reading %s\n",filenameinzip); | ||||||
|  |                 err = ZIP_ERRNO; | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             if (size_read>0) | ||||||
|  |                 calculate_crc = crc32(calculate_crc,buf,size_read); | ||||||
|  |             total_read += size_read; | ||||||
|  |  | ||||||
|  |         } while ((err == ZIP_OK) && (size_read>0)); | ||||||
|  |  | ||||||
|  |     if (fin) | ||||||
|  |         fclose(fin); | ||||||
|  |  | ||||||
|  |     *result_crc=calculate_crc; | ||||||
|  |     printf("file %s crc %x\n",filenameinzip,calculate_crc); | ||||||
|  |     return err; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int main(argc,argv) | ||||||
|  |     int argc; | ||||||
|  |     char *argv[]; | ||||||
|  | { | ||||||
|  |     int i; | ||||||
|  |     int opt_overwrite=0; | ||||||
|  |     int opt_compress_level=Z_DEFAULT_COMPRESSION; | ||||||
|  |     int zipfilenamearg = 0; | ||||||
|  |     char filename_try[MAXFILENAME+16]; | ||||||
|  |     int zipok; | ||||||
|  |     int err=0; | ||||||
|  |     int size_buf=0; | ||||||
|  |     void* buf=NULL; | ||||||
|  |     const char* password=NULL; | ||||||
|  |  | ||||||
|  |  | ||||||
|  |     do_banner(); | ||||||
|  |     if (argc==1) | ||||||
|  |     { | ||||||
|  |         do_help(); | ||||||
|  |         return 0; | ||||||
|  |     } | ||||||
|  |     else | ||||||
|  |     { | ||||||
|  |         for (i=1;i<argc;i++) | ||||||
|  |         { | ||||||
|  |             if ((*argv[i])=='-') | ||||||
|  |             { | ||||||
|  |                 const char *p=argv[i]+1; | ||||||
|  |  | ||||||
|  |                 while ((*p)!='\0') | ||||||
|  |                 { | ||||||
|  |                     char c=*(p++);; | ||||||
|  |                     if ((c=='o') || (c=='O')) | ||||||
|  |                         opt_overwrite = 1; | ||||||
|  |                     if ((c=='a') || (c=='A')) | ||||||
|  |                         opt_overwrite = 2; | ||||||
|  |                     if ((c>='0') && (c<='9')) | ||||||
|  |                         opt_compress_level = c-'0'; | ||||||
|  |  | ||||||
|  |                     if (((c=='p') || (c=='P')) && (i+1<argc)) | ||||||
|  |                     { | ||||||
|  |                         password=argv[i+1]; | ||||||
|  |                         i++; | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             else | ||||||
|  |                 if (zipfilenamearg == 0) | ||||||
|  |                     zipfilenamearg = i ; | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     size_buf = WRITEBUFFERSIZE; | ||||||
|  |     buf = (void*)malloc(size_buf); | ||||||
|  |     if (buf==NULL) | ||||||
|  |     { | ||||||
|  |         printf("Error allocating memory\n"); | ||||||
|  |         return ZIP_INTERNALERROR; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     if (zipfilenamearg==0) | ||||||
|  |         zipok=0; | ||||||
|  |     else | ||||||
|  |     { | ||||||
|  |         int i,len; | ||||||
|  |         int dot_found=0; | ||||||
|  |  | ||||||
|  |         zipok = 1 ; | ||||||
|  |         strncpy(filename_try, argv[zipfilenamearg],MAXFILENAME-1); | ||||||
|  |         /* strncpy doesnt append the trailing NULL, of the string is too long. */ | ||||||
|  |         filename_try[ MAXFILENAME ] = '\0'; | ||||||
|  |  | ||||||
|  |         len=(int)strlen(filename_try); | ||||||
|  |         for (i=0;i<len;i++) | ||||||
|  |             if (filename_try[i]=='.') | ||||||
|  |                 dot_found=1; | ||||||
|  |  | ||||||
|  |         if (dot_found==0) | ||||||
|  |             strcat(filename_try,".zip"); | ||||||
|  |  | ||||||
|  |         if (opt_overwrite==2) | ||||||
|  |         { | ||||||
|  |             /* if the file don't exist, we not append file */ | ||||||
|  |             if (check_exist_file(filename_try)==0) | ||||||
|  |                 opt_overwrite=1; | ||||||
|  |         } | ||||||
|  |         else | ||||||
|  |         if (opt_overwrite==0) | ||||||
|  |             if (check_exist_file(filename_try)!=0) | ||||||
|  |             { | ||||||
|  |                 char rep=0; | ||||||
|  |                 do | ||||||
|  |                 { | ||||||
|  |                     char answer[128]; | ||||||
|  |                     printf("The file %s exist. Overwrite ? [y]es, [n]o, [a]ppend : ",filename_try); | ||||||
|  |                     scanf("%1s",answer); | ||||||
|  |                     rep = answer[0] ; | ||||||
|  |                     if ((rep>='a') && (rep<='z')) | ||||||
|  |                         rep -= 0x20; | ||||||
|  |                 } | ||||||
|  |                 while ((rep!='Y') && (rep!='N') && (rep!='A')); | ||||||
|  |                 if (rep=='N') | ||||||
|  |                     zipok = 0; | ||||||
|  |                 if (rep=='A') | ||||||
|  |                     opt_overwrite = 2; | ||||||
|  |             } | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     if (zipok==1) | ||||||
|  |     { | ||||||
|  |         zipFile zf; | ||||||
|  |         int errclose; | ||||||
|  |         #ifdef USEWIN32IOAPI | ||||||
|  |         zlib_filefunc_def ffunc; | ||||||
|  |         fill_win32_filefunc(&ffunc); | ||||||
|  |         zf = zipOpen2(filename_try,(opt_overwrite==2) ? 2 : 0,NULL,&ffunc); | ||||||
|  |         #else | ||||||
|  |         zf = zipOpen(filename_try,(opt_overwrite==2) ? 2 : 0); | ||||||
|  |         #endif | ||||||
|  |  | ||||||
|  |         if (zf == NULL) | ||||||
|  |         { | ||||||
|  |             printf("error opening %s\n",filename_try); | ||||||
|  |             err= ZIP_ERRNO; | ||||||
|  |         } | ||||||
|  |         else | ||||||
|  |             printf("creating %s\n",filename_try); | ||||||
|  |  | ||||||
|  |         for (i=zipfilenamearg+1;(i<argc) && (err==ZIP_OK);i++) | ||||||
|  |         { | ||||||
|  |             if (((*(argv[i]))!='-') && ((*(argv[i]))!='/')) | ||||||
|  |             { | ||||||
|  |                 FILE * fin; | ||||||
|  |                 int size_read; | ||||||
|  |                 const char* filenameinzip = argv[i]; | ||||||
|  |                 zip_fileinfo zi; | ||||||
|  |                 unsigned long crcFile=0; | ||||||
|  |  | ||||||
|  |                 zi.tmz_date.tm_sec = zi.tmz_date.tm_min = zi.tmz_date.tm_hour = | ||||||
|  |                 zi.tmz_date.tm_mday = zi.tmz_date.tm_mon = zi.tmz_date.tm_year = 0; | ||||||
|  |                 zi.dosDate = 0; | ||||||
|  |                 zi.internal_fa = 0; | ||||||
|  |                 zi.external_fa = 0; | ||||||
|  |                 filetime(filenameinzip,&zi.tmz_date,&zi.dosDate); | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |                 err = zipOpenNewFileInZip(zf,filenameinzip,&zi, | ||||||
|  |                                  NULL,0,NULL,0,NULL / * comment * /, | ||||||
|  |                                  (opt_compress_level != 0) ? Z_DEFLATED : 0, | ||||||
|  |                                  opt_compress_level); | ||||||
|  | */ | ||||||
|  |                 if ((password != NULL) && (err==ZIP_OK)) | ||||||
|  |                     err = getFileCrc(filenameinzip,buf,size_buf,&crcFile); | ||||||
|  |  | ||||||
|  |                 err = zipOpenNewFileInZip3(zf,filenameinzip,&zi, | ||||||
|  |                                  NULL,0,NULL,0,NULL /* comment*/, | ||||||
|  |                                  (opt_compress_level != 0) ? Z_DEFLATED : 0, | ||||||
|  |                                  opt_compress_level,0, | ||||||
|  |                                  /* -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY, */ | ||||||
|  |                                  -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY, | ||||||
|  |                                  password,crcFile); | ||||||
|  |  | ||||||
|  |                 if (err != ZIP_OK) | ||||||
|  |                     printf("error in opening %s in zipfile\n",filenameinzip); | ||||||
|  |                 else | ||||||
|  |                 { | ||||||
|  |                     fin = fopen(filenameinzip,"rb"); | ||||||
|  |                     if (fin==NULL) | ||||||
|  |                     { | ||||||
|  |                         err=ZIP_ERRNO; | ||||||
|  |                         printf("error in opening %s for reading\n",filenameinzip); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |  | ||||||
|  |                 if (err == ZIP_OK) | ||||||
|  |                     do | ||||||
|  |                     { | ||||||
|  |                         err = ZIP_OK; | ||||||
|  |                         size_read = (int)fread(buf,1,size_buf,fin); | ||||||
|  |                         if (size_read < size_buf) | ||||||
|  |                             if (feof(fin)==0) | ||||||
|  |                         { | ||||||
|  |                             printf("error in reading %s\n",filenameinzip); | ||||||
|  |                             err = ZIP_ERRNO; | ||||||
|  |                         } | ||||||
|  |  | ||||||
|  |                         if (size_read>0) | ||||||
|  |                         { | ||||||
|  |                             err = zipWriteInFileInZip (zf,buf,size_read); | ||||||
|  |                             if (err<0) | ||||||
|  |                             { | ||||||
|  |                                 printf("error in writing %s in the zipfile\n", | ||||||
|  |                                                  filenameinzip); | ||||||
|  |                             } | ||||||
|  |  | ||||||
|  |                         } | ||||||
|  |                     } while ((err == ZIP_OK) && (size_read>0)); | ||||||
|  |  | ||||||
|  |                 if (fin) | ||||||
|  |                     fclose(fin); | ||||||
|  |  | ||||||
|  |                 if (err<0) | ||||||
|  |                     err=ZIP_ERRNO; | ||||||
|  |                 else | ||||||
|  |                 { | ||||||
|  |                     err = zipCloseFileInZip(zf); | ||||||
|  |                     if (err!=ZIP_OK) | ||||||
|  |                         printf("error in closing %s in the zipfile\n", | ||||||
|  |                                     filenameinzip); | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         errclose = zipClose(zf,NULL); | ||||||
|  |         if (errclose != ZIP_OK) | ||||||
|  |             printf("error in closing %s\n",filename_try); | ||||||
|  |    } | ||||||
|  |  | ||||||
|  |     free(buf); | ||||||
|  |     return 0; | ||||||
|  | } | ||||||
							
								
								
									
										1529
									
								
								contrib/minizip/unzip.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1529
									
								
								contrib/minizip/unzip.c
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										342
									
								
								contrib/minizip/unzip.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										342
									
								
								contrib/minizip/unzip.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,342 @@ | |||||||
|  | /* unzip.h -- IO for uncompress .zip files using zlib | ||||||
|  |    Version 0.21, March 10th, 2003 | ||||||
|  |  | ||||||
|  |    Copyright (C) 1998-2003 Gilles Vollant | ||||||
|  |  | ||||||
|  |    This unzip package allow extract file from .ZIP file, compatible with PKZip 2.04g | ||||||
|  |      WinZip, InfoZip tools and compatible. | ||||||
|  |    Encryption and multi volume ZipFile (span) are not supported. | ||||||
|  |    Old compressions used by old PKZip 1.x are not supported | ||||||
|  |  | ||||||
|  |  | ||||||
|  |    I WAIT FEEDBACK at mail info@winimage.com | ||||||
|  |    Visit also http://www.winimage.com/zLibDll/unzip.htm for evolution | ||||||
|  |  | ||||||
|  |    Condition of use and distribution are the same than zlib : | ||||||
|  |  | ||||||
|  |   This software is provided 'as-is', without any express or implied | ||||||
|  |   warranty.  In no event will the authors be held liable for any damages | ||||||
|  |   arising from the use of this software. | ||||||
|  |  | ||||||
|  |   Permission is granted to anyone to use this software for any purpose, | ||||||
|  |   including commercial applications, and to alter it and redistribute it | ||||||
|  |   freely, subject to the following restrictions: | ||||||
|  |  | ||||||
|  |   1. The origin of this software must not be misrepresented; you must not | ||||||
|  |      claim that you wrote the original software. If you use this software | ||||||
|  |      in a product, an acknowledgment in the product documentation would be | ||||||
|  |      appreciated but is not required. | ||||||
|  |   2. Altered source versions must be plainly marked as such, and must not be | ||||||
|  |      misrepresented as being the original software. | ||||||
|  |   3. This notice may not be removed or altered from any source distribution. | ||||||
|  |  | ||||||
|  |  | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | /* for more info about .ZIP format, see | ||||||
|  |       http://www.info-zip.org/pub/infozip/doc/appnote-981119-iz.zip | ||||||
|  |       http://www.info-zip.org/pub/infozip/doc/ | ||||||
|  |    PkWare has also a specification at : | ||||||
|  |       ftp://ftp.pkware.com/probdesc.zip | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | #ifndef _unz_H | ||||||
|  | #define _unz_H | ||||||
|  |  | ||||||
|  | #ifdef __cplusplus | ||||||
|  | extern "C" { | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #ifndef _ZLIB_H | ||||||
|  | #include "zlib.h" | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #ifndef _ZLIBIOAPI_H | ||||||
|  | #include "ioapi.h" | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #if defined(STRICTUNZIP) || defined(STRICTZIPUNZIP) | ||||||
|  | /* like the STRICT of WIN32, we define a pointer that cannot be converted | ||||||
|  |     from (void*) without cast */ | ||||||
|  | typedef struct TagunzFile__ { int unused; } unzFile__; | ||||||
|  | typedef unzFile__ *unzFile; | ||||||
|  | #else | ||||||
|  | typedef voidp unzFile; | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #define UNZ_OK                          (0) | ||||||
|  | #define UNZ_END_OF_LIST_OF_FILE         (-100) | ||||||
|  | #define UNZ_ERRNO                       (Z_ERRNO) | ||||||
|  | #define UNZ_EOF                         (0) | ||||||
|  | #define UNZ_PARAMERROR                  (-102) | ||||||
|  | #define UNZ_BADZIPFILE                  (-103) | ||||||
|  | #define UNZ_INTERNALERROR               (-104) | ||||||
|  | #define UNZ_CRCERROR                    (-105) | ||||||
|  |  | ||||||
|  | /* tm_unz contain date/time info */ | ||||||
|  | typedef struct tm_unz_s | ||||||
|  | { | ||||||
|  |     uInt tm_sec;            /* seconds after the minute - [0,59] */ | ||||||
|  |     uInt tm_min;            /* minutes after the hour - [0,59] */ | ||||||
|  |     uInt tm_hour;           /* hours since midnight - [0,23] */ | ||||||
|  |     uInt tm_mday;           /* day of the month - [1,31] */ | ||||||
|  |     uInt tm_mon;            /* months since January - [0,11] */ | ||||||
|  |     uInt tm_year;           /* years - [1980..2044] */ | ||||||
|  | } tm_unz; | ||||||
|  |  | ||||||
|  | /* unz_global_info structure contain global data about the ZIPfile | ||||||
|  |    These data comes from the end of central dir */ | ||||||
|  | typedef struct unz_global_info_s | ||||||
|  | { | ||||||
|  |     uLong number_entry;         /* total number of entries in | ||||||
|  |                        the central dir on this disk */ | ||||||
|  |     uLong size_comment;         /* size of the global comment of the zipfile */ | ||||||
|  | } unz_global_info; | ||||||
|  |  | ||||||
|  |  | ||||||
|  | /* unz_file_info contain information about a file in the zipfile */ | ||||||
|  | typedef struct unz_file_info_s | ||||||
|  | { | ||||||
|  |     uLong version;              /* version made by                 2 bytes */ | ||||||
|  |     uLong version_needed;       /* version needed to extract       2 bytes */ | ||||||
|  |     uLong flag;                 /* general purpose bit flag        2 bytes */ | ||||||
|  |     uLong compression_method;   /* compression method              2 bytes */ | ||||||
|  |     uLong dosDate;              /* last mod file date in Dos fmt   4 bytes */ | ||||||
|  |     uLong crc;                  /* crc-32                          4 bytes */ | ||||||
|  |     uLong compressed_size;      /* compressed size                 4 bytes */ | ||||||
|  |     uLong uncompressed_size;    /* uncompressed size               4 bytes */ | ||||||
|  |     uLong size_filename;        /* filename length                 2 bytes */ | ||||||
|  |     uLong size_file_extra;      /* extra field length              2 bytes */ | ||||||
|  |     uLong size_file_comment;    /* file comment length             2 bytes */ | ||||||
|  |  | ||||||
|  |     uLong disk_num_start;       /* disk number start               2 bytes */ | ||||||
|  |     uLong internal_fa;          /* internal file attributes        2 bytes */ | ||||||
|  |     uLong external_fa;          /* external file attributes        4 bytes */ | ||||||
|  |  | ||||||
|  |     tm_unz tmu_date; | ||||||
|  | } unz_file_info; | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzStringFileNameCompare OF ((const char* fileName1, | ||||||
|  |                                                  const char* fileName2, | ||||||
|  |                                                  int iCaseSensitivity)); | ||||||
|  | /* | ||||||
|  |    Compare two filename (fileName1,fileName2). | ||||||
|  |    If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp) | ||||||
|  |    If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi | ||||||
|  |                                 or strcasecmp) | ||||||
|  |    If iCaseSenisivity = 0, case sensitivity is defaut of your operating system | ||||||
|  |     (like 1 on Unix, 2 on Windows) | ||||||
|  | */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | extern unzFile ZEXPORT unzOpen OF((const char *path)); | ||||||
|  | /* | ||||||
|  |   Open a Zip file. path contain the full pathname (by example, | ||||||
|  |      on a Windows XP computer "c:\\zlib\\zlib113.zip" or on an Unix computer | ||||||
|  |      "zlib/zlib113.zip". | ||||||
|  |      If the zipfile cannot be opened (file don't exist or in not valid), the | ||||||
|  |        return value is NULL. | ||||||
|  |      Else, the return value is a unzFile Handle, usable with other function | ||||||
|  |        of this unzip package. | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern unzFile ZEXPORT unzOpen2 OF((const char *path, | ||||||
|  |                                     zlib_filefunc_def* pzlib_filefunc_def)); | ||||||
|  | /* | ||||||
|  |    Open a Zip file, like unzOpen, but provide a set of file low level API | ||||||
|  |       for read/write the zip file (see ioapi.h) | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzClose OF((unzFile file)); | ||||||
|  | /* | ||||||
|  |   Close a ZipFile opened with unzipOpen. | ||||||
|  |   If there is files inside the .Zip opened with unzOpenCurrentFile (see later), | ||||||
|  |     these files MUST be closed with unzipCloseCurrentFile before call unzipClose. | ||||||
|  |   return UNZ_OK if there is no problem. */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzGetGlobalInfo OF((unzFile file, | ||||||
|  |                                         unz_global_info *pglobal_info)); | ||||||
|  | /* | ||||||
|  |   Write info about the ZipFile in the *pglobal_info structure. | ||||||
|  |   No preparation of the structure is needed | ||||||
|  |   return UNZ_OK if there is no problem. */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzGetGlobalComment OF((unzFile file, | ||||||
|  |                                            char *szComment, | ||||||
|  |                                            uLong uSizeBuf)); | ||||||
|  | /* | ||||||
|  |   Get the global comment string of the ZipFile, in the szComment buffer. | ||||||
|  |   uSizeBuf is the size of the szComment buffer. | ||||||
|  |   return the number of byte copied or an error code <0 | ||||||
|  | */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | /***************************************************************************/ | ||||||
|  | /* Unzip package allow you browse the directory of the zipfile */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzGoToFirstFile OF((unzFile file)); | ||||||
|  | /* | ||||||
|  |   Set the current file of the zipfile to the first file. | ||||||
|  |   return UNZ_OK if there is no problem | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzGoToNextFile OF((unzFile file)); | ||||||
|  | /* | ||||||
|  |   Set the current file of the zipfile to the next file. | ||||||
|  |   return UNZ_OK if there is no problem | ||||||
|  |   return UNZ_END_OF_LIST_OF_FILE if the actual file was the latest. | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzLocateFile OF((unzFile file, | ||||||
|  |                      const char *szFileName, | ||||||
|  |                      int iCaseSensitivity)); | ||||||
|  | /* | ||||||
|  |   Try locate the file szFileName in the zipfile. | ||||||
|  |   For the iCaseSensitivity signification, see unzStringFileNameCompare | ||||||
|  |  | ||||||
|  |   return value : | ||||||
|  |   UNZ_OK if the file is found. It becomes the current file. | ||||||
|  |   UNZ_END_OF_LIST_OF_FILE if the file is not found | ||||||
|  | */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | /* ****************************************** */ | ||||||
|  | /* Ryan supplied functions */ | ||||||
|  | /* unz_file_info contain information about a file in the zipfile */ | ||||||
|  | typedef struct unz_file_pos_s | ||||||
|  | { | ||||||
|  |     uLong pos_in_zip_directory;   /* offset in zip file directory */ | ||||||
|  |     uLong num_of_file;            /* # of file */ | ||||||
|  | } unz_file_pos; | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzGetFilePos( | ||||||
|  |     unzFile file, | ||||||
|  |     unz_file_pos* file_pos); | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzGoToFilePos( | ||||||
|  |     unzFile file, | ||||||
|  |     unz_file_pos* file_pos); | ||||||
|  |  | ||||||
|  | /* ****************************************** */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzGetCurrentFileInfo OF((unzFile file, | ||||||
|  |                          unz_file_info *pfile_info, | ||||||
|  |                          char *szFileName, | ||||||
|  |                          uLong fileNameBufferSize, | ||||||
|  |                          void *extraField, | ||||||
|  |                          uLong extraFieldBufferSize, | ||||||
|  |                          char *szComment, | ||||||
|  |                          uLong commentBufferSize)); | ||||||
|  | /* | ||||||
|  |   Get Info about the current file | ||||||
|  |   if pfile_info!=NULL, the *pfile_info structure will contain somes info about | ||||||
|  |         the current file | ||||||
|  |   if szFileName!=NULL, the filemane string will be copied in szFileName | ||||||
|  |             (fileNameBufferSize is the size of the buffer) | ||||||
|  |   if extraField!=NULL, the extra field information will be copied in extraField | ||||||
|  |             (extraFieldBufferSize is the size of the buffer). | ||||||
|  |             This is the Central-header version of the extra field | ||||||
|  |   if szComment!=NULL, the comment string of the file will be copied in szComment | ||||||
|  |             (commentBufferSize is the size of the buffer) | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | /***************************************************************************/ | ||||||
|  | /* for reading the content of the current zipfile, you can open it, read data | ||||||
|  |    from it, and close it (you can close it before reading all the file) | ||||||
|  |    */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzOpenCurrentFile OF((unzFile file)); | ||||||
|  | /* | ||||||
|  |   Open for reading data the current file in the zipfile. | ||||||
|  |   If there is no error, the return value is UNZ_OK. | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzOpenCurrentFilePassword OF((unzFile file, | ||||||
|  |                                                   const char* password)); | ||||||
|  | /* | ||||||
|  |   Open for reading data the current file in the zipfile. | ||||||
|  |   password is a crypting password | ||||||
|  |   If there is no error, the return value is UNZ_OK. | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzOpenCurrentFile2 OF((unzFile file, | ||||||
|  |                                            int* method, | ||||||
|  |                                            int* level, | ||||||
|  |                                            int raw)); | ||||||
|  | /* | ||||||
|  |   Same than unzOpenCurrentFile, but open for read raw the file (not uncompress) | ||||||
|  |     if raw==1 | ||||||
|  |   *method will receive method of compression, *level will receive level of | ||||||
|  |      compression | ||||||
|  |   note : you can set level parameter as NULL (if you did not want known level, | ||||||
|  |          but you CANNOT set method parameter as NULL | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzOpenCurrentFile3 OF((unzFile file, | ||||||
|  |                                            int* method, | ||||||
|  |                                            int* level, | ||||||
|  |                                            int raw, | ||||||
|  |                                            const char* password)); | ||||||
|  | /* | ||||||
|  |   Same than unzOpenCurrentFile, but open for read raw the file (not uncompress) | ||||||
|  |     if raw==1 | ||||||
|  |   *method will receive method of compression, *level will receive level of | ||||||
|  |      compression | ||||||
|  |   note : you can set level parameter as NULL (if you did not want known level, | ||||||
|  |          but you CANNOT set method parameter as NULL | ||||||
|  | */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzCloseCurrentFile OF((unzFile file)); | ||||||
|  | /* | ||||||
|  |   Close the file in zip opened with unzOpenCurrentFile | ||||||
|  |   Return UNZ_CRCERROR if all the file was read but the CRC is not good | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzReadCurrentFile OF((unzFile file, | ||||||
|  |                       voidp buf, | ||||||
|  |                       unsigned len)); | ||||||
|  | /* | ||||||
|  |   Read bytes from the current file (opened by unzOpenCurrentFile) | ||||||
|  |   buf contain buffer where data must be copied | ||||||
|  |   len the size of buf. | ||||||
|  |  | ||||||
|  |   return the number of byte copied if somes bytes are copied | ||||||
|  |   return 0 if the end of file was reached | ||||||
|  |   return <0 with error code if there is an error | ||||||
|  |     (UNZ_ERRNO for IO error, or zLib error for uncompress error) | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern z_off_t ZEXPORT unztell OF((unzFile file)); | ||||||
|  | /* | ||||||
|  |   Give the current position in uncompressed data | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzeof OF((unzFile file)); | ||||||
|  | /* | ||||||
|  |   return 1 if the end of file was reached, 0 elsewhere | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT unzGetLocalExtrafield OF((unzFile file, | ||||||
|  |                                              voidp buf, | ||||||
|  |                                              unsigned len)); | ||||||
|  | /* | ||||||
|  |   Read extra field from the current file (opened by unzOpenCurrentFile) | ||||||
|  |   This is the local-header version of the extra field (sometimes, there is | ||||||
|  |     more info in the local-header version than in the central-header) | ||||||
|  |  | ||||||
|  |   if buf==NULL, it return the size of the local extra field | ||||||
|  |  | ||||||
|  |   if buf!=NULL, len is the size of the buffer, the extra header is copied in | ||||||
|  |     buf. | ||||||
|  |   the return value is the number of bytes copied in buf, or (if <0) | ||||||
|  |     the error code | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | #ifdef __cplusplus | ||||||
|  | } | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #endif /* _unz_H */ | ||||||
							
								
								
									
										1168
									
								
								contrib/minizip/zip.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1168
									
								
								contrib/minizip/zip.c
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										235
									
								
								contrib/minizip/zip.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										235
									
								
								contrib/minizip/zip.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,235 @@ | |||||||
|  | /* zip.h -- IO for compress .zip files using zlib | ||||||
|  |    Version 0.21, March 10th, 2003 | ||||||
|  |  | ||||||
|  |    Copyright (C) 1998-2003 Gilles Vollant | ||||||
|  |  | ||||||
|  |    This unzip package allow creates .ZIP file, compatible with PKZip 2.04g | ||||||
|  |      WinZip, InfoZip tools and compatible. | ||||||
|  |    Encryption and multi volume ZipFile (span) are not supported. | ||||||
|  |    Old compressions used by old PKZip 1.x are not supported | ||||||
|  |  | ||||||
|  |   For uncompress .zip file, look at unzip.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  |    I WAIT FEEDBACK at mail info@winimage.com | ||||||
|  |    Visit also http://www.winimage.com/zLibDll/unzip.html for evolution | ||||||
|  |  | ||||||
|  |    Condition of use and distribution are the same than zlib : | ||||||
|  |  | ||||||
|  |   This software is provided 'as-is', without any express or implied | ||||||
|  |   warranty.  In no event will the authors be held liable for any damages | ||||||
|  |   arising from the use of this software. | ||||||
|  |  | ||||||
|  |   Permission is granted to anyone to use this software for any purpose, | ||||||
|  |   including commercial applications, and to alter it and redistribute it | ||||||
|  |   freely, subject to the following restrictions: | ||||||
|  |  | ||||||
|  |   1. The origin of this software must not be misrepresented; you must not | ||||||
|  |      claim that you wrote the original software. If you use this software | ||||||
|  |      in a product, an acknowledgment in the product documentation would be | ||||||
|  |      appreciated but is not required. | ||||||
|  |   2. Altered source versions must be plainly marked as such, and must not be | ||||||
|  |      misrepresented as being the original software. | ||||||
|  |   3. This notice may not be removed or altered from any source distribution. | ||||||
|  |  | ||||||
|  |  | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | /* for more info about .ZIP format, see | ||||||
|  |       http://www.info-zip.org/pub/infozip/doc/appnote-981119-iz.zip | ||||||
|  |       http://www.info-zip.org/pub/infozip/doc/ | ||||||
|  |    PkWare has also a specification at : | ||||||
|  |       ftp://ftp.pkware.com/probdesc.zip | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | #ifndef _zip_H | ||||||
|  | #define _zip_H | ||||||
|  |  | ||||||
|  | #ifdef __cplusplus | ||||||
|  | extern "C" { | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #ifndef _ZLIB_H | ||||||
|  | #include "zlib.h" | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #ifndef _ZLIBIOAPI_H | ||||||
|  | #include "ioapi.h" | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #if defined(STRICTZIP) || defined(STRICTZIPUNZIP) | ||||||
|  | /* like the STRICT of WIN32, we define a pointer that cannot be converted | ||||||
|  |     from (void*) without cast */ | ||||||
|  | typedef struct TagzipFile__ { int unused; } zipFile__; | ||||||
|  | typedef zipFile__ *zipFile; | ||||||
|  | #else | ||||||
|  | typedef voidp zipFile; | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #define ZIP_OK                          (0) | ||||||
|  | #define ZIP_EOF                         (0) | ||||||
|  | #define ZIP_ERRNO                       (Z_ERRNO) | ||||||
|  | #define ZIP_PARAMERROR                  (-102) | ||||||
|  | #define ZIP_BADZIPFILE                  (-103) | ||||||
|  | #define ZIP_INTERNALERROR               (-104) | ||||||
|  |  | ||||||
|  | #ifndef DEF_MEM_LEVEL | ||||||
|  | #  if MAX_MEM_LEVEL >= 8 | ||||||
|  | #    define DEF_MEM_LEVEL 8 | ||||||
|  | #  else | ||||||
|  | #    define DEF_MEM_LEVEL  MAX_MEM_LEVEL | ||||||
|  | #  endif | ||||||
|  | #endif | ||||||
|  | /* default memLevel */ | ||||||
|  |  | ||||||
|  | /* tm_zip contain date/time info */ | ||||||
|  | typedef struct tm_zip_s | ||||||
|  | { | ||||||
|  |     uInt tm_sec;            /* seconds after the minute - [0,59] */ | ||||||
|  |     uInt tm_min;            /* minutes after the hour - [0,59] */ | ||||||
|  |     uInt tm_hour;           /* hours since midnight - [0,23] */ | ||||||
|  |     uInt tm_mday;           /* day of the month - [1,31] */ | ||||||
|  |     uInt tm_mon;            /* months since January - [0,11] */ | ||||||
|  |     uInt tm_year;           /* years - [1980..2044] */ | ||||||
|  | } tm_zip; | ||||||
|  |  | ||||||
|  | typedef struct | ||||||
|  | { | ||||||
|  |     tm_zip      tmz_date;       /* date in understandable format           */ | ||||||
|  |     uLong       dosDate;       /* if dos_date == 0, tmu_date is used      */ | ||||||
|  | /*    uLong       flag;        */   /* general purpose bit flag        2 bytes */ | ||||||
|  |  | ||||||
|  |     uLong       internal_fa;    /* internal file attributes        2 bytes */ | ||||||
|  |     uLong       external_fa;    /* external file attributes        4 bytes */ | ||||||
|  | } zip_fileinfo; | ||||||
|  |  | ||||||
|  | typedef const char* zipcharpc; | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #define APPEND_STATUS_CREATE        (0) | ||||||
|  | #define APPEND_STATUS_CREATEAFTER   (1) | ||||||
|  | #define APPEND_STATUS_ADDINZIP      (2) | ||||||
|  |  | ||||||
|  | extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append)); | ||||||
|  | /* | ||||||
|  |   Create a zipfile. | ||||||
|  |      pathname contain on Windows XP a filename like "c:\\zlib\\zlib113.zip" or on | ||||||
|  |        an Unix computer "zlib/zlib113.zip". | ||||||
|  |      if the file pathname exist and append==APPEND_STATUS_CREATEAFTER, the zip | ||||||
|  |        will be created at the end of the file. | ||||||
|  |          (useful if the file contain a self extractor code) | ||||||
|  |      if the file pathname exist and append==APPEND_STATUS_ADDINZIP, we will | ||||||
|  |        add files in existing zip (be sure you don't add file that doesn't exist) | ||||||
|  |      If the zipfile cannot be opened, the return value is NULL. | ||||||
|  |      Else, the return value is a zipFile Handle, usable with other function | ||||||
|  |        of this zip package. | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | /* Note : there is no delete function into a zipfile. | ||||||
|  |    If you want delete file into a zipfile, you must open a zipfile, and create another | ||||||
|  |    Of couse, you can use RAW reading and writing to copy the file you did not want delte | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern zipFile ZEXPORT zipOpen2 OF((const char *pathname, | ||||||
|  |                                    int append, | ||||||
|  |                                    zipcharpc* globalcomment, | ||||||
|  |                                    zlib_filefunc_def* pzlib_filefunc_def)); | ||||||
|  |  | ||||||
|  | extern int ZEXPORT zipOpenNewFileInZip OF((zipFile file, | ||||||
|  |                        const char* filename, | ||||||
|  |                        const zip_fileinfo* zipfi, | ||||||
|  |                        const void* extrafield_local, | ||||||
|  |                        uInt size_extrafield_local, | ||||||
|  |                        const void* extrafield_global, | ||||||
|  |                        uInt size_extrafield_global, | ||||||
|  |                        const char* comment, | ||||||
|  |                        int method, | ||||||
|  |                        int level)); | ||||||
|  | /* | ||||||
|  |   Open a file in the ZIP for writing. | ||||||
|  |   filename : the filename in zip (if NULL, '-' without quote will be used | ||||||
|  |   *zipfi contain supplemental information | ||||||
|  |   if extrafield_local!=NULL and size_extrafield_local>0, extrafield_local | ||||||
|  |     contains the extrafield data the the local header | ||||||
|  |   if extrafield_global!=NULL and size_extrafield_global>0, extrafield_global | ||||||
|  |     contains the extrafield data the the local header | ||||||
|  |   if comment != NULL, comment contain the comment string | ||||||
|  |   method contain the compression method (0 for store, Z_DEFLATED for deflate) | ||||||
|  |   level contain the level of compression (can be Z_DEFAULT_COMPRESSION) | ||||||
|  | */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | extern int ZEXPORT zipOpenNewFileInZip2 OF((zipFile file, | ||||||
|  |                                             const char* filename, | ||||||
|  |                                             const zip_fileinfo* zipfi, | ||||||
|  |                                             const void* extrafield_local, | ||||||
|  |                                             uInt size_extrafield_local, | ||||||
|  |                                             const void* extrafield_global, | ||||||
|  |                                             uInt size_extrafield_global, | ||||||
|  |                                             const char* comment, | ||||||
|  |                                             int method, | ||||||
|  |                                             int level, | ||||||
|  |                                             int raw)); | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |   Same than zipOpenNewFileInZip, except if raw=1, we write raw file | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT zipOpenNewFileInZip3 OF((zipFile file, | ||||||
|  |                                             const char* filename, | ||||||
|  |                                             const zip_fileinfo* zipfi, | ||||||
|  |                                             const void* extrafield_local, | ||||||
|  |                                             uInt size_extrafield_local, | ||||||
|  |                                             const void* extrafield_global, | ||||||
|  |                                             uInt size_extrafield_global, | ||||||
|  |                                             const char* comment, | ||||||
|  |                                             int method, | ||||||
|  |                                             int level, | ||||||
|  |                                             int raw, | ||||||
|  |                                             int windowBits, | ||||||
|  |                                             int memLevel, | ||||||
|  |                                             int strategy, | ||||||
|  |                                             const char* password, | ||||||
|  |                                             uLong crcForCtypting)); | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |   Same than zipOpenNewFileInZip2, except | ||||||
|  |     windowBits,memLevel,,strategy : see parameter strategy in deflateInit2 | ||||||
|  |     password : crypting password (NULL for no crypting) | ||||||
|  |     crcForCtypting : crc of file to compress (needed for crypting) | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | extern int ZEXPORT zipWriteInFileInZip OF((zipFile file, | ||||||
|  |                        const void* buf, | ||||||
|  |                        unsigned len)); | ||||||
|  | /* | ||||||
|  |   Write data in the zipfile | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT zipCloseFileInZip OF((zipFile file)); | ||||||
|  | /* | ||||||
|  |   Close the current file in the zipfile | ||||||
|  | */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | extern int ZEXPORT zipCloseFileInZipRaw OF((zipFile file, | ||||||
|  |                                             uLong uncompressed_size, | ||||||
|  |                                             uLong crc32)); | ||||||
|  | /* | ||||||
|  |   Close the current file in the zipfile, for fiel opened with | ||||||
|  |     parameter raw=1 in zipOpenNewFileInZip2 | ||||||
|  |   uncompressed_size and crc32 are value for the uncompressed size | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | extern int ZEXPORT zipClose OF((zipFile file, | ||||||
|  |                 const char* global_comment)); | ||||||
|  | /* | ||||||
|  |   Close the zipfile | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | #ifdef __cplusplus | ||||||
|  | } | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #endif /* _zip_H */ | ||||||
							
								
								
									
										8
									
								
								contrib/puff/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								contrib/puff/Makefile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | |||||||
|  | puff: puff.c puff.h | ||||||
|  | 	cc -DTEST -o puff puff.c | ||||||
|  |  | ||||||
|  | test: puff | ||||||
|  | 	puff zeros.raw | ||||||
|  |  | ||||||
|  | clean: | ||||||
|  | 	rm -f puff puff.o | ||||||
							
								
								
									
										63
									
								
								contrib/puff/README
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										63
									
								
								contrib/puff/README
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,63 @@ | |||||||
|  | Puff -- A Simple Inflate | ||||||
|  | 3 Mar 2003 | ||||||
|  | Mark Adler | ||||||
|  | madler@alumni.caltech.edu | ||||||
|  |  | ||||||
|  | What this is -- | ||||||
|  |  | ||||||
|  | puff.c provides the routine puff() to decompress the deflate data format.  It | ||||||
|  | does so more slowly than zlib, but the code is about one-fifth the size of the | ||||||
|  | inflate code in zlib, and written to be very easy to read. | ||||||
|  |  | ||||||
|  | Why I wrote this -- | ||||||
|  |  | ||||||
|  | puff.c was written to document the deflate format unambiguously, by virtue of | ||||||
|  | being working C code.  It is meant to supplement RFC 1951, which formally | ||||||
|  | describes the deflate format.  I have received many questions on details of the | ||||||
|  | deflate format, and I hope that reading this code will answer those questions.  | ||||||
|  | puff.c is heavily commented with details of the deflate format, especially | ||||||
|  | those little nooks and cranies of the format that might not be obvious from a | ||||||
|  | specification. | ||||||
|  |  | ||||||
|  | puff.c may also be useful in applications where code size or memory usage is a | ||||||
|  | very limited resource, and speed is not as important. | ||||||
|  |  | ||||||
|  | How to use it -- | ||||||
|  |  | ||||||
|  | Well, most likely you should just be reading puff.c and using zlib for actual | ||||||
|  | applications, but if you must ... | ||||||
|  |  | ||||||
|  | Include puff.h in your code, which provides this prototype: | ||||||
|  |  | ||||||
|  | int puff(unsigned char *dest,		/* pointer to destination pointer */ | ||||||
|  |          unsigned long *destlen,	/* amount of output space */ | ||||||
|  |          unsigned char *source,		/* pointer to source data pointer */ | ||||||
|  |          unsigned long *sourcelen);	/* amount of input available */ | ||||||
|  |  | ||||||
|  | Then you can call puff() to decompress a deflate stream that is in memory in | ||||||
|  | its entirety at source, to a sufficiently sized block of memory for the | ||||||
|  | decompressed data at dest.  puff() is the only external symbol in puff.c  The | ||||||
|  | only C library functions that puff.c needs are setjmp() and longjmp(), which | ||||||
|  | are used to simplify error checking in the code to improve readabilty.  puff.c | ||||||
|  | does no memory allocation, and uses less than 2K bytes off of the stack. | ||||||
|  |  | ||||||
|  | If destlen is not enough space for the uncompressed data, then inflate will | ||||||
|  | return an error without writing more than destlen bytes.  Note that this means | ||||||
|  | that in order to decompress the deflate data successfully, you need to know | ||||||
|  | the size of the uncompressed data ahead of time. | ||||||
|  |  | ||||||
|  | If needed, puff() can determine the size of the uncompressed data with no | ||||||
|  | output space.  This is done by passing dest equal to (unsigned char *)0.  Then | ||||||
|  | the initial value of *destlen is ignored and *destlen is set to the length of | ||||||
|  | the uncompressed data.  So if the size of the uncompressed data is not known, | ||||||
|  | then two passes of puff() can be used--first to determine the size, and second | ||||||
|  | to do the actual inflation after allocating the appropriate memory.  Not | ||||||
|  | pretty, but it works.  (This is one of the reasons you should be using zlib.) | ||||||
|  |  | ||||||
|  | The deflate format is self-terminating.  If the deflate stream does not end | ||||||
|  | in *sourcelen bytes, puff() will return an error without reading at or past | ||||||
|  | endsource. | ||||||
|  |  | ||||||
|  | On return, *sourcelen is updated to the amount of input data consumed, and | ||||||
|  | *destlen is updated to the size of the uncompressed data.  See the comments | ||||||
|  | in puff.c for the possible return codes for puff(). | ||||||
							
								
								
									
										833
									
								
								contrib/puff/puff.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										833
									
								
								contrib/puff/puff.c
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,833 @@ | |||||||
|  | /* | ||||||
|  |  * puff.c | ||||||
|  |  * Copyright (C) 2002, 2003 Mark Adler | ||||||
|  |  * For conditions of distribution and use, see copyright notice in puff.h | ||||||
|  |  * version 1.7, 3 Mar 2003 | ||||||
|  |  * | ||||||
|  |  * puff.c is a simple inflate written to be an unambiguous way to specify the | ||||||
|  |  * deflate format.  It is not written for speed but rather simplicity.  As a | ||||||
|  |  * side benefit, this code might actually be useful when small code is more | ||||||
|  |  * important than speed, such as bootstrap applications.  For typical deflate | ||||||
|  |  * data, zlib's inflate() is about four times as fast as puff().  zlib's | ||||||
|  |  * inflate compiles to around 20K on my machine, whereas puff.c compiles to | ||||||
|  |  * around 4K on my machine (a PowerPC using GNU cc).  If the faster decode() | ||||||
|  |  * function here is used, then puff() is only twice as slow as zlib's | ||||||
|  |  * inflate(). | ||||||
|  |  * | ||||||
|  |  * All dynamically allocated memory comes from the stack.  The stack required | ||||||
|  |  * is less than 2K bytes.  This code is compatible with 16-bit int's and | ||||||
|  |  * assumes that long's are at least 32 bits.  puff.c uses the short data type, | ||||||
|  |  * assumed to be 16 bits, for arrays in order to to conserve memory.  The code | ||||||
|  |  * works whether integers are stored big endian or little endian. | ||||||
|  |  * | ||||||
|  |  * In the comments below are "Format notes" that describe the inflate process | ||||||
|  |  * and document some of the less obvious aspects of the format.  This source | ||||||
|  |  * code is meant to supplement RFC 1951, which formally describes the deflate | ||||||
|  |  * format: | ||||||
|  |  * | ||||||
|  |  *    http://www.zlib.org/rfc-deflate.html | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Change history: | ||||||
|  |  * | ||||||
|  |  * 1.0  10 Feb 2002     - First version | ||||||
|  |  * 1.1  17 Feb 2002     - Clarifications of some comments and notes | ||||||
|  |  *                      - Update puff() dest and source pointers on negative | ||||||
|  |  *                        errors to facilitate debugging deflators | ||||||
|  |  *                      - Remove longest from struct huffman -- not needed | ||||||
|  |  *                      - Simplify offs[] index in construct() | ||||||
|  |  *                      - Add input size and checking, using longjmp() to | ||||||
|  |  *                        maintain easy readability | ||||||
|  |  *                      - Use short data type for large arrays | ||||||
|  |  *                      - Use pointers instead of long to specify source and | ||||||
|  |  *                        destination sizes to avoid arbitrary 4 GB limits | ||||||
|  |  * 1.2  17 Mar 2002     - Add faster version of decode(), doubles speed (!), | ||||||
|  |  *                        but leave simple version for readabilty | ||||||
|  |  *                      - Make sure invalid distances detected if pointers | ||||||
|  |  *                        are 16 bits | ||||||
|  |  *                      - Fix fixed codes table error | ||||||
|  |  *                      - Provide a scanning mode for determining size of | ||||||
|  |  *                        uncompressed data | ||||||
|  |  * 1.3  20 Mar 2002     - Go back to lengths for puff() parameters [Jean-loup] | ||||||
|  |  *                      - Add a puff.h file for the interface | ||||||
|  |  *                      - Add braces in puff() for else do [Jean-loup] | ||||||
|  |  *                      - Use indexes instead of pointers for readability | ||||||
|  |  * 1.4  31 Mar 2002     - Simplify construct() code set check | ||||||
|  |  *                      - Fix some comments | ||||||
|  |  *                      - Add FIXLCODES #define | ||||||
|  |  * 1.5   6 Apr 2002     - Minor comment fixes | ||||||
|  |  * 1.6   7 Aug 2002     - Minor format changes | ||||||
|  |  * 1.7   3 Mar 2002     - Added test code for distribution | ||||||
|  |  *                      - Added zlib-like license | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | #include <setjmp.h>             /* for setjmp(), longjmp(), and jmp_buf */ | ||||||
|  | #include "puff.h"               /* prototype for puff() */ | ||||||
|  |  | ||||||
|  | #define local static            /* for local function definitions */ | ||||||
|  | #define NIL ((unsigned char *)0)        /* for no output option */ | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Maximums for allocations and loops.  It is not useful to change these -- | ||||||
|  |  * they are fixed by the deflate format. | ||||||
|  |  */ | ||||||
|  | #define MAXBITS 15              /* maximum bits in a code */ | ||||||
|  | #define MAXLCODES 286           /* maximum number of literal/length codes */ | ||||||
|  | #define MAXDCODES 30            /* maximum number of distance codes */ | ||||||
|  | #define MAXCODES (MAXLCODES+MAXDCODES)  /* maximum codes lengths to read */ | ||||||
|  | #define FIXLCODES 288           /* number of fixed literal/length codes */ | ||||||
|  |  | ||||||
|  | /* input and output state */ | ||||||
|  | struct state { | ||||||
|  |     /* output state */ | ||||||
|  |     unsigned char *out;         /* output buffer */ | ||||||
|  |     unsigned long outlen;       /* available space at out */ | ||||||
|  |     unsigned long outcnt;       /* bytes written to out so far */ | ||||||
|  |  | ||||||
|  |     /* input state */ | ||||||
|  |     unsigned char *in;          /* input buffer */ | ||||||
|  |     unsigned long inlen;        /* available input at in */ | ||||||
|  |     unsigned long incnt;        /* bytes read so far */ | ||||||
|  |     int bitbuf;                 /* bit buffer */ | ||||||
|  |     int bitcnt;                 /* number of bits in bit buffer */ | ||||||
|  |  | ||||||
|  |     /* input limit error return state for bits() and decode() */ | ||||||
|  |     jmp_buf env; | ||||||
|  | }; | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Return need bits from the input stream.  This always leaves less than | ||||||
|  |  * eight bits in the buffer.  bits() works properly for need == 0. | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - Bits are stored in bytes from the least significant bit to the most | ||||||
|  |  *   significant bit.  Therefore bits are dropped from the bottom of the bit | ||||||
|  |  *   buffer, using shift right, and new bytes are appended to the top of the | ||||||
|  |  *   bit buffer, using shift left. | ||||||
|  |  */ | ||||||
|  | local int bits(struct state *s, int need) | ||||||
|  | { | ||||||
|  |     long val;           /* bit accumulator (can use up to 20 bits) */ | ||||||
|  |  | ||||||
|  |     /* load at least need bits into val */ | ||||||
|  |     val = s->bitbuf; | ||||||
|  |     while (s->bitcnt < need) { | ||||||
|  |         if (s->incnt == s->inlen) longjmp(s->env, 1);   /* out of input */ | ||||||
|  |         val |= (long)(s->in[s->incnt++]) << s->bitcnt;  /* load eight bits */ | ||||||
|  |         s->bitcnt += 8; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /* drop need bits and update buffer, always zero to seven bits left */ | ||||||
|  |     s->bitbuf = (int)(val >> need); | ||||||
|  |     s->bitcnt -= need; | ||||||
|  |  | ||||||
|  |     /* return need bits, zeroing the bits above that */ | ||||||
|  |     return (int)(val & ((1L << need) - 1)); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Process a stored block. | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - After the two-bit stored block type (00), the stored block length and | ||||||
|  |  *   stored bytes are byte-aligned for fast copying.  Therefore any leftover | ||||||
|  |  *   bits in the byte that has the last bit of the type, as many as seven, are | ||||||
|  |  *   discarded.  The value of the discarded bits are not defined and should not | ||||||
|  |  *   be checked against any expectation. | ||||||
|  |  * | ||||||
|  |  * - The second inverted copy of the stored block length does not have to be | ||||||
|  |  *   checked, but it's probably a good idea to do so anyway. | ||||||
|  |  * | ||||||
|  |  * - A stored block can have zero length.  This is sometimes used to byte-align | ||||||
|  |  *   subsets of the compressed data for random access or partial recovery. | ||||||
|  |  */ | ||||||
|  | local int stored(struct state *s) | ||||||
|  | { | ||||||
|  |     unsigned len;       /* length of stored block */ | ||||||
|  |  | ||||||
|  |     /* discard leftover bits from current byte (assumes s->bitcnt < 8) */ | ||||||
|  |     s->bitbuf = 0; | ||||||
|  |     s->bitcnt = 0; | ||||||
|  |  | ||||||
|  |     /* get length and check against its one's complement */ | ||||||
|  |     if (s->incnt + 4 > s->inlen) return 2;      /* not enough input */ | ||||||
|  |     len = s->in[s->incnt++]; | ||||||
|  |     len |= s->in[s->incnt++] << 8; | ||||||
|  |     if (s->in[s->incnt++] != (~len & 0xff) || | ||||||
|  |         s->in[s->incnt++] != ((~len >> 8) & 0xff)) | ||||||
|  |         return -2;                              /* didn't match complement! */ | ||||||
|  |  | ||||||
|  |     /* copy len bytes from in to out */ | ||||||
|  |     if (s->incnt + len > s->inlen) return 2;    /* not enough input */ | ||||||
|  |     if (s->out != NIL) { | ||||||
|  |         if (s->outcnt + len > s->outlen) | ||||||
|  |             return 1;                           /* not enough output space */ | ||||||
|  |         while (len--) | ||||||
|  |             s->out[s->outcnt++] = s->in[s->incnt++]; | ||||||
|  |     } | ||||||
|  |     else {                                      /* just scanning */ | ||||||
|  |         s->outcnt += len; | ||||||
|  |         s->incnt += len; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /* done with a valid stored block */ | ||||||
|  |     return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Huffman code decoding tables.  count[1..MAXBITS] is the number of symbols of | ||||||
|  |  * each length, which for a canonical code are stepped through in order. | ||||||
|  |  * symbol[] are the symbol values in canonical order, where the number of | ||||||
|  |  * entries is the sum of the counts in count[].  The decoding process can be | ||||||
|  |  * seen in the function decode() below. | ||||||
|  |  */ | ||||||
|  | struct huffman { | ||||||
|  |     short *count;       /* number of symbols of each length */ | ||||||
|  |     short *symbol;      /* canonically ordered symbols */ | ||||||
|  | }; | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Decode a code from the stream s using huffman table h.  Return the symbol or | ||||||
|  |  * a negative value if there is an error.  If all of the lengths are zero, i.e. | ||||||
|  |  * an empty code, or if the code is incomplete and an invalid code is received, | ||||||
|  |  * then -9 is returned after reading MAXBITS bits. | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - The codes as stored in the compressed data are bit-reversed relative to | ||||||
|  |  *   a simple integer ordering of codes of the same lengths.  Hence below the | ||||||
|  |  *   bits are pulled from the compressed data one at a time and used to | ||||||
|  |  *   build the code value reversed from what is in the stream in order to | ||||||
|  |  *   permit simple integer comparisons for decoding.  A table-based decoding | ||||||
|  |  *   scheme (as used in zlib) does not need to do this reversal. | ||||||
|  |  * | ||||||
|  |  * - The first code for the shortest length is all zeros.  Subsequent codes of | ||||||
|  |  *   the same length are simply integer increments of the previous code.  When | ||||||
|  |  *   moving up a length, a zero bit is appended to the code.  For a complete | ||||||
|  |  *   code, the last code of the longest length will be all ones. | ||||||
|  |  * | ||||||
|  |  * - Incomplete codes are handled by this decoder, since they are permitted | ||||||
|  |  *   in the deflate format.  See the format notes for fixed() and dynamic(). | ||||||
|  |  */ | ||||||
|  | #ifdef SLOW | ||||||
|  | local int decode(struct state *s, struct huffman *h) | ||||||
|  | { | ||||||
|  |     int len;            /* current number of bits in code */ | ||||||
|  |     int code;           /* len bits being decoded */ | ||||||
|  |     int first;          /* first code of length len */ | ||||||
|  |     int count;          /* number of codes of length len */ | ||||||
|  |     int index;          /* index of first code of length len in symbol table */ | ||||||
|  |  | ||||||
|  |     code = first = index = 0; | ||||||
|  |     for (len = 1; len <= MAXBITS; len++) { | ||||||
|  |         code |= bits(s, 1);             /* get next bit */ | ||||||
|  |         count = h->count[len]; | ||||||
|  |         if (code < first + count)       /* if length len, return symbol */ | ||||||
|  |             return h->symbol[index + (code - first)]; | ||||||
|  |         index += count;                 /* else update for next length */ | ||||||
|  |         first += count; | ||||||
|  |         first <<= 1; | ||||||
|  |         code <<= 1; | ||||||
|  |     } | ||||||
|  |     return -9;                          /* ran out of codes */ | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * A faster version of decode() for real applications of this code.   It's not | ||||||
|  |  * as readable, but it makes puff() twice as fast.  And it only makes the code | ||||||
|  |  * a few percent larger. | ||||||
|  |  */ | ||||||
|  | #else /* !SLOW */ | ||||||
|  | local int decode(struct state *s, struct huffman *h) | ||||||
|  | { | ||||||
|  |     int len;            /* current number of bits in code */ | ||||||
|  |     int code;           /* len bits being decoded */ | ||||||
|  |     int first;          /* first code of length len */ | ||||||
|  |     int count;          /* number of codes of length len */ | ||||||
|  |     int index;          /* index of first code of length len in symbol table */ | ||||||
|  |     int bitbuf;         /* bits from stream */ | ||||||
|  |     int left;           /* bits left in next or left to process */ | ||||||
|  |     short *next;        /* next number of codes */ | ||||||
|  |  | ||||||
|  |     bitbuf = s->bitbuf; | ||||||
|  |     left = s->bitcnt; | ||||||
|  |     code = first = index = 0; | ||||||
|  |     len = 1; | ||||||
|  |     next = h->count + 1; | ||||||
|  |     while (1) { | ||||||
|  |         while (left--) { | ||||||
|  |             code |= bitbuf & 1; | ||||||
|  |             bitbuf >>= 1; | ||||||
|  |             count = *next++; | ||||||
|  |             if (code < first + count) { /* if length len, return symbol */ | ||||||
|  |                 s->bitbuf = bitbuf; | ||||||
|  |                 s->bitcnt = (s->bitcnt - len) & 7; | ||||||
|  |                 return h->symbol[index + (code - first)]; | ||||||
|  |             } | ||||||
|  |             index += count;             /* else update for next length */ | ||||||
|  |             first += count; | ||||||
|  |             first <<= 1; | ||||||
|  |             code <<= 1; | ||||||
|  |             len++; | ||||||
|  |         } | ||||||
|  |         left = (MAXBITS+1) - len; | ||||||
|  |         if (left == 0) break; | ||||||
|  |         if (s->incnt == s->inlen) longjmp(s->env, 1);   /* out of input */ | ||||||
|  |         bitbuf = s->in[s->incnt++]; | ||||||
|  |         if (left > 8) left = 8; | ||||||
|  |     } | ||||||
|  |     return -9;                          /* ran out of codes */ | ||||||
|  | } | ||||||
|  | #endif /* SLOW */ | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Given the list of code lengths length[0..n-1] representing a canonical | ||||||
|  |  * Huffman code for n symbols, construct the tables required to decode those | ||||||
|  |  * codes.  Those tables are the number of codes of each length, and the symbols | ||||||
|  |  * sorted by length, retaining their original order within each length.  The | ||||||
|  |  * return value is zero for a complete code set, negative for an over- | ||||||
|  |  * subscribed code set, and positive for an incomplete code set.  The tables | ||||||
|  |  * can be used if the return value is zero or positive, but they cannot be used | ||||||
|  |  * if the return value is negative.  If the return value is zero, it is not | ||||||
|  |  * possible for decode() using that table to return an error--any stream of | ||||||
|  |  * enough bits will resolve to a symbol.  If the return value is positive, then | ||||||
|  |  * it is possible for decode() using that table to return an error for received | ||||||
|  |  * codes past the end of the incomplete lengths. | ||||||
|  |  * | ||||||
|  |  * Not used by decode(), but used for error checking, h->count[0] is the number | ||||||
|  |  * of the n symbols not in the code.  So n - h->count[0] is the number of | ||||||
|  |  * codes.  This is useful for checking for incomplete codes that have more than | ||||||
|  |  * one symbol, which is an error in a dynamic block. | ||||||
|  |  * | ||||||
|  |  * Assumption: for all i in 0..n-1, 0 <= length[i] <= MAXBITS | ||||||
|  |  * This is assured by the construction of the length arrays in dynamic() and | ||||||
|  |  * fixed() and is not verified by construct(). | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - Permitted and expected examples of incomplete codes are one of the fixed | ||||||
|  |  *   codes and any code with a single symbol which in deflate is coded as one | ||||||
|  |  *   bit instead of zero bits.  See the format notes for fixed() and dynamic(). | ||||||
|  |  * | ||||||
|  |  * - Within a given code length, the symbols are kept in ascending order for | ||||||
|  |  *   the code bits definition. | ||||||
|  |  */ | ||||||
|  | local int construct(struct huffman *h, short *length, int n) | ||||||
|  | { | ||||||
|  |     int symbol;         /* current symbol when stepping through length[] */ | ||||||
|  |     int len;            /* current length when stepping through h->count[] */ | ||||||
|  |     int left;           /* number of possible codes left of current length */ | ||||||
|  |     short offs[MAXBITS+1];      /* offsets in symbol table for each length */ | ||||||
|  |  | ||||||
|  |     /* count number of codes of each length */ | ||||||
|  |     for (len = 0; len <= MAXBITS; len++) | ||||||
|  |         h->count[len] = 0; | ||||||
|  |     for (symbol = 0; symbol < n; symbol++) | ||||||
|  |         (h->count[length[symbol]])++;   /* assumes lengths are within bounds */ | ||||||
|  |     if (h->count[0] == n)               /* no codes! */ | ||||||
|  |         return 0;                       /* complete, but decode() will fail */ | ||||||
|  |  | ||||||
|  |     /* check for an over-subscribed or incomplete set of lengths */ | ||||||
|  |     left = 1;                           /* one possible code of zero length */ | ||||||
|  |     for (len = 1; len <= MAXBITS; len++) { | ||||||
|  |         left <<= 1;                     /* one more bit, double codes left */ | ||||||
|  |         left -= h->count[len];          /* deduct count from possible codes */ | ||||||
|  |         if (left < 0) return left;      /* over-subscribed--return negative */ | ||||||
|  |     }                                   /* left > 0 means incomplete */ | ||||||
|  |  | ||||||
|  |     /* generate offsets into symbol table for each length for sorting */ | ||||||
|  |     offs[1] = 0; | ||||||
|  |     for (len = 1; len < MAXBITS; len++) | ||||||
|  |         offs[len + 1] = offs[len] + h->count[len]; | ||||||
|  |  | ||||||
|  |     /* | ||||||
|  |      * put symbols in table sorted by length, by symbol order within each | ||||||
|  |      * length | ||||||
|  |      */ | ||||||
|  |     for (symbol = 0; symbol < n; symbol++) | ||||||
|  |         if (length[symbol] != 0) | ||||||
|  |             h->symbol[offs[length[symbol]]++] = symbol; | ||||||
|  |  | ||||||
|  |     /* return zero for complete set, positive for incomplete set */ | ||||||
|  |     return left; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Decode literal/length and distance codes until an end-of-block code. | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - Compressed data that is after the block type if fixed or after the code | ||||||
|  |  *   description if dynamic is a combination of literals and length/distance | ||||||
|  |  *   pairs terminated by and end-of-block code.  Literals are simply Huffman | ||||||
|  |  *   coded bytes.  A length/distance pair is a coded length followed by a | ||||||
|  |  *   coded distance to represent a string that occurs earlier in the | ||||||
|  |  *   uncompressed data that occurs again at the current location. | ||||||
|  |  * | ||||||
|  |  * - Literals, lengths, and the end-of-block code are combined into a single | ||||||
|  |  *   code of up to 286 symbols.  They are 256 literals (0..255), 29 length | ||||||
|  |  *   symbols (257..285), and the end-of-block symbol (256). | ||||||
|  |  * | ||||||
|  |  * - There are 256 possible lengths (3..258), and so 29 symbols are not enough | ||||||
|  |  *   to represent all of those.  Lengths 3..10 and 258 are in fact represented | ||||||
|  |  *   by just a length symbol.  Lengths 11..257 are represented as a symbol and | ||||||
|  |  *   some number of extra bits that are added as an integer to the base length | ||||||
|  |  *   of the length symbol.  The number of extra bits is determined by the base | ||||||
|  |  *   length symbol.  These are in the static arrays below, lens[] for the base | ||||||
|  |  *   lengths and lext[] for the corresponding number of extra bits. | ||||||
|  |  * | ||||||
|  |  * - The reason that 258 gets its own symbol is that the longest length is used | ||||||
|  |  *   often in highly redundant files.  Note that 258 can also be coded as the | ||||||
|  |  *   base value 227 plus the maximum extra value of 31.  While a good deflate | ||||||
|  |  *   should never do this, it is not an error, and should be decoded properly. | ||||||
|  |  * | ||||||
|  |  * - If a length is decoded, including its extra bits if any, then it is | ||||||
|  |  *   followed a distance code.  There are up to 30 distance symbols.  Again | ||||||
|  |  *   there are many more possible distances (1..32768), so extra bits are added | ||||||
|  |  *   to a base value represented by the symbol.  The distances 1..4 get their | ||||||
|  |  *   own symbol, but the rest require extra bits.  The base distances and | ||||||
|  |  *   corresponding number of extra bits are below in the static arrays dist[] | ||||||
|  |  *   and dext[]. | ||||||
|  |  * | ||||||
|  |  * - Literal bytes are simply written to the output.  A length/distance pair is | ||||||
|  |  *   an instruction to copy previously uncompressed bytes to the output.  The | ||||||
|  |  *   copy is from distance bytes back in the output stream, copying for length | ||||||
|  |  *   bytes. | ||||||
|  |  * | ||||||
|  |  * - Distances pointing before the beginning of the output data are not | ||||||
|  |  *   permitted. | ||||||
|  |  * | ||||||
|  |  * - Overlapped copies, where the length is greater than the distance, are | ||||||
|  |  *   allowed and common.  For example, a distance of one and a length of 258 | ||||||
|  |  *   simply copies the last byte 258 times.  A distance of four and a length of | ||||||
|  |  *   twelve copies the last four bytes three times.  A simple forward copy | ||||||
|  |  *   ignoring whether the length is greater than the distance or not implements | ||||||
|  |  *   this correctly.  You should not use memcpy() since its behavior is not | ||||||
|  |  *   defined for overlapped arrays.  You should not use memmove() or bcopy() | ||||||
|  |  *   since though their behavior -is- defined for overlapping arrays, it is | ||||||
|  |  *   defined to do the wrong thing in this case. | ||||||
|  |  */ | ||||||
|  | local int codes(struct state *s, | ||||||
|  |                 struct huffman *lencode, | ||||||
|  |                 struct huffman *distcode) | ||||||
|  | { | ||||||
|  |     int symbol;         /* decoded symbol */ | ||||||
|  |     int len;            /* length for copy */ | ||||||
|  |     unsigned dist;      /* distance for copy */ | ||||||
|  |     static const short lens[29] = { /* Size base for length codes 257..285 */ | ||||||
|  |         3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, | ||||||
|  |         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; | ||||||
|  |     static const short lext[29] = { /* Extra bits for length codes 257..285 */ | ||||||
|  |         0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, | ||||||
|  |         3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; | ||||||
|  |     static const short dists[30] = { /* Offset base for distance codes 0..29 */ | ||||||
|  |         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, | ||||||
|  |         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, | ||||||
|  |         8193, 12289, 16385, 24577}; | ||||||
|  |     static const short dext[30] = { /* Extra bits for distance codes 0..29 */ | ||||||
|  |         0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, | ||||||
|  |         7, 7, 8, 8, 9, 9, 10, 10, 11, 11, | ||||||
|  |         12, 12, 13, 13}; | ||||||
|  |  | ||||||
|  |     /* decode literals and length/distance pairs */ | ||||||
|  |     do { | ||||||
|  |         symbol = decode(s, lencode); | ||||||
|  |         if (symbol < 0) return symbol;  /* invalid symbol */ | ||||||
|  |         if (symbol < 256) {             /* literal: symbol is the byte */ | ||||||
|  |             /* write out the literal */ | ||||||
|  |             if (s->out != NIL) { | ||||||
|  |                 if (s->outcnt == s->outlen) return 1; | ||||||
|  |                 s->out[s->outcnt] = symbol; | ||||||
|  |             } | ||||||
|  |             s->outcnt++; | ||||||
|  |         } | ||||||
|  |         else if (symbol > 256) {        /* length */ | ||||||
|  |             /* get and compute length */ | ||||||
|  |             symbol -= 257; | ||||||
|  |             if (symbol >= 29) return -9;        /* invalid fixed code */ | ||||||
|  |             len = lens[symbol] + bits(s, lext[symbol]); | ||||||
|  |  | ||||||
|  |             /* get and check distance */ | ||||||
|  |             symbol = decode(s, distcode); | ||||||
|  |             if (symbol < 0) return symbol;      /* invalid symbol */ | ||||||
|  |             dist = dists[symbol] + bits(s, dext[symbol]); | ||||||
|  |             if (dist > s->outcnt) | ||||||
|  |                 return -10;     /* distance too far back */ | ||||||
|  |  | ||||||
|  |             /* copy length bytes from distance bytes back */ | ||||||
|  |             if (s->out != NIL) { | ||||||
|  |                 if (s->outcnt + len > s->outlen) return 1; | ||||||
|  |                 while (len--) { | ||||||
|  |                     s->out[s->outcnt] = s->out[s->outcnt - dist]; | ||||||
|  |                     s->outcnt++; | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             else | ||||||
|  |                 s->outcnt += len; | ||||||
|  |         } | ||||||
|  |     } while (symbol != 256);            /* end of block symbol */ | ||||||
|  |  | ||||||
|  |     /* done with a valid fixed or dynamic block */ | ||||||
|  |     return 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Process a fixed codes block. | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - This block type can be useful for compressing small amounts of data for | ||||||
|  |  *   which the size of the code descriptions in a dynamic block exceeds the | ||||||
|  |  *   benefit of custom codes for that block.  For fixed codes, no bits are | ||||||
|  |  *   spent on code descriptions.  Instead the code lengths for literal/length | ||||||
|  |  *   codes and distance codes are fixed.  The specific lengths for each symbol | ||||||
|  |  *   can be seen in the "for" loops below. | ||||||
|  |  * | ||||||
|  |  * - The literal/length code is complete, but has two symbols that are invalid | ||||||
|  |  *   and should result in an error if received.  This cannot be implemented | ||||||
|  |  *   simply as an incomplete code since those two symbols are in the "middle" | ||||||
|  |  *   of the code.  They are eight bits long and the longest literal/length\ | ||||||
|  |  *   code is nine bits.  Therefore the code must be constructed with those | ||||||
|  |  *   symbols, and the invalid symbols must be detected after decoding. | ||||||
|  |  * | ||||||
|  |  * - The fixed distance codes also have two invalid symbols that should result | ||||||
|  |  *   in an error if received.  Since all of the distance codes are the same | ||||||
|  |  *   length, this can be implemented as an incomplete code.  Then the invalid | ||||||
|  |  *   codes are detected while decoding. | ||||||
|  |  */ | ||||||
|  | local int fixed(struct state *s) | ||||||
|  | { | ||||||
|  |     static int virgin = 1; | ||||||
|  |     static short lencnt[MAXBITS+1], lensym[FIXLCODES]; | ||||||
|  |     static short distcnt[MAXBITS+1], distsym[MAXDCODES]; | ||||||
|  |     static struct huffman lencode = {lencnt, lensym}; | ||||||
|  |     static struct huffman distcode = {distcnt, distsym}; | ||||||
|  |  | ||||||
|  |     /* build fixed huffman tables if first call (may not be thread safe) */ | ||||||
|  |     if (virgin) { | ||||||
|  |         int symbol; | ||||||
|  |         short lengths[FIXLCODES]; | ||||||
|  |  | ||||||
|  |         /* literal/length table */ | ||||||
|  |         for (symbol = 0; symbol < 144; symbol++) | ||||||
|  |             lengths[symbol] = 8; | ||||||
|  |         for (; symbol < 256; symbol++) | ||||||
|  |             lengths[symbol] = 9; | ||||||
|  |         for (; symbol < 280; symbol++) | ||||||
|  |             lengths[symbol] = 7; | ||||||
|  |         for (; symbol < FIXLCODES; symbol++) | ||||||
|  |             lengths[symbol] = 8; | ||||||
|  |         construct(&lencode, lengths, FIXLCODES); | ||||||
|  |  | ||||||
|  |         /* distance table */ | ||||||
|  |         for (symbol = 0; symbol < MAXDCODES; symbol++) | ||||||
|  |             lengths[symbol] = 5; | ||||||
|  |         construct(&distcode, lengths, MAXDCODES); | ||||||
|  |  | ||||||
|  |         /* do this just once */ | ||||||
|  |         virgin = 0; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /* decode data until end-of-block code */ | ||||||
|  |     return codes(s, &lencode, &distcode); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Process a dynamic codes block. | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - A dynamic block starts with a description of the literal/length and | ||||||
|  |  *   distance codes for that block.  New dynamic blocks allow the compressor to | ||||||
|  |  *   rapidly adapt to changing data with new codes optimized for that data. | ||||||
|  |  * | ||||||
|  |  * - The codes used by the deflate format are "canonical", which means that | ||||||
|  |  *   the actual bits of the codes are generated in an unambiguous way simply | ||||||
|  |  *   from the number of bits in each code.  Therefore the code descriptions | ||||||
|  |  *   are simply a list of code lengths for each symbol. | ||||||
|  |  * | ||||||
|  |  * - The code lengths are stored in order for the symbols, so lengths are | ||||||
|  |  *   provided for each of the literal/length symbols, and for each of the | ||||||
|  |  *   distance symbols. | ||||||
|  |  * | ||||||
|  |  * - If a symbol is not used in the block, this is represented by a zero as | ||||||
|  |  *   as the code length.  This does not mean a zero-length code, but rather | ||||||
|  |  *   that no code should be created for this symbol.  There is no way in the | ||||||
|  |  *   deflate format to represent a zero-length code. | ||||||
|  |  * | ||||||
|  |  * - The maximum number of bits in a code is 15, so the possible lengths for | ||||||
|  |  *   any code are 1..15. | ||||||
|  |  * | ||||||
|  |  * - The fact that a length of zero is not permitted for a code has an | ||||||
|  |  *   interesting consequence.  Normally if only one symbol is used for a given | ||||||
|  |  *   code, then in fact that code could be represented with zero bits.  However | ||||||
|  |  *   in deflate, that code has to be at least one bit.  So for example, if | ||||||
|  |  *   only a single distance base symbol appears in a block, then it will be | ||||||
|  |  *   represented by a single code of length one, in particular one 0 bit.  This | ||||||
|  |  *   is an incomplete code, since if a 1 bit is received, it has no meaning, | ||||||
|  |  *   and should result in an error.  So incomplete distance codes of one symbol | ||||||
|  |  *   should be permitted, and the receipt of invalid codes should be handled. | ||||||
|  |  * | ||||||
|  |  * - It is also possible to have a single literal/length code, but that code | ||||||
|  |  *   must be the end-of-block code, since every dynamic block has one.  This | ||||||
|  |  *   is not the most efficient way to create an empty block (an empty fixed | ||||||
|  |  *   block is fewer bits), but it is allowed by the format.  So incomplete | ||||||
|  |  *   literal/length codes of one symbol should also be permitted. | ||||||
|  |  * | ||||||
|  |  * - The list of up to 286 length/literal lengths and up to 30 distance lengths | ||||||
|  |  *   are themselves compressed using Huffman codes and run-length encoding.  In | ||||||
|  |  *   the list of code lengths, a 0 symbol means no code, a 1..15 symbol means | ||||||
|  |  *   that length, and the symbols 16, 17, and 18 are run-length instructions. | ||||||
|  |  *   Each of 16, 17, and 18 are follwed by extra bits to define the length of | ||||||
|  |  *   the run.  16 copies the last length 3 to 6 times.  17 represents 3 to 10 | ||||||
|  |  *   zero lengths, and 18 represents 11 to 138 zero lengths.  Unused symbols | ||||||
|  |  *   are common, hence the special coding for zero lengths. | ||||||
|  |  * | ||||||
|  |  * - The symbols for 0..18 are Huffman coded, and so that code must be | ||||||
|  |  *   described first.  This is simply a sequence of up to 19 three-bit values | ||||||
|  |  *   representing no code (0) or the code length for that symbol (1..7). | ||||||
|  |  * | ||||||
|  |  * - A dynamic block starts with three fixed-size counts from which is computed | ||||||
|  |  *   the number of literal/length code lengths, the number of distance code | ||||||
|  |  *   lengths, and the number of code length code lengths (ok, you come up with | ||||||
|  |  *   a better name!) in the code descriptions.  For the literal/length and | ||||||
|  |  *   distance codes, lengths after those provided are considered zero, i.e. no | ||||||
|  |  *   code.  The code length code lengths are received in a permuted order (see | ||||||
|  |  *   the order[] array below) to make a short code length code length list more | ||||||
|  |  *   likely.  As it turns out, very short and very long codes are less likely | ||||||
|  |  *   to be seen in a dynamic code description, hence what may appear initially | ||||||
|  |  *   to be a peculiar ordering. | ||||||
|  |  * | ||||||
|  |  * - Given the number of literal/length code lengths (nlen) and distance code | ||||||
|  |  *   lengths (ndist), then they are treated as one long list of nlen + ndist | ||||||
|  |  *   code lengths.  Therefore run-length coding can and often does cross the | ||||||
|  |  *   boundary between the two sets of lengths. | ||||||
|  |  * | ||||||
|  |  * - So to summarize, the code description at the start of a dynamic block is | ||||||
|  |  *   three counts for the number of code lengths for the literal/length codes, | ||||||
|  |  *   the distance codes, and the code length codes.  This is followed by the | ||||||
|  |  *   code length code lengths, three bits each.  This is used to construct the | ||||||
|  |  *   code length code which is used to read the remainder of the lengths.  Then | ||||||
|  |  *   the literal/length code lengths and distance lengths are read as a single | ||||||
|  |  *   set of lengths using the code length codes.  Codes are constructed from | ||||||
|  |  *   the resulting two sets of lengths, and then finally you can start | ||||||
|  |  *   decoding actual compressed data in the block. | ||||||
|  |  * | ||||||
|  |  * - For reference, a "typical" size for the code description in a dynamic | ||||||
|  |  *   block is around 80 bytes. | ||||||
|  |  */ | ||||||
|  | local int dynamic(struct state *s) | ||||||
|  | { | ||||||
|  |     int nlen, ndist, ncode;             /* number of lengths in descriptor */ | ||||||
|  |     int index;                          /* index of lengths[] */ | ||||||
|  |     int err;                            /* construct() return value */ | ||||||
|  |     short lengths[MAXCODES];            /* descriptor code lengths */ | ||||||
|  |     short lencnt[MAXBITS+1], lensym[MAXLCODES];         /* lencode memory */ | ||||||
|  |     short distcnt[MAXBITS+1], distsym[MAXDCODES];       /* distcode memory */ | ||||||
|  |     struct huffman lencode = {lencnt, lensym};          /* length code */ | ||||||
|  |     struct huffman distcode = {distcnt, distsym};       /* distance code */ | ||||||
|  |     static const short order[19] =      /* permutation of code length codes */ | ||||||
|  |         {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; | ||||||
|  |  | ||||||
|  |     /* get number of lengths in each table, check lengths */ | ||||||
|  |     nlen = bits(s, 5) + 257; | ||||||
|  |     ndist = bits(s, 5) + 1; | ||||||
|  |     ncode = bits(s, 4) + 4; | ||||||
|  |     if (nlen > MAXLCODES || ndist > MAXDCODES) | ||||||
|  |         return -3;                      /* bad counts */ | ||||||
|  |  | ||||||
|  |     /* read code length code lengths (really), missing lengths are zero */ | ||||||
|  |     for (index = 0; index < ncode; index++) | ||||||
|  |         lengths[order[index]] = bits(s, 3); | ||||||
|  |     for (; index < 19; index++) | ||||||
|  |         lengths[order[index]] = 0; | ||||||
|  |  | ||||||
|  |     /* build huffman table for code lengths codes (use lencode temporarily) */ | ||||||
|  |     err = construct(&lencode, lengths, 19); | ||||||
|  |     if (err != 0) return -4;            /* require complete code set here */ | ||||||
|  |  | ||||||
|  |     /* read length/literal and distance code length tables */ | ||||||
|  |     index = 0; | ||||||
|  |     while (index < nlen + ndist) { | ||||||
|  |         int symbol;             /* decoded value */ | ||||||
|  |         int len;                /* last length to repeat */ | ||||||
|  |  | ||||||
|  |         symbol = decode(s, &lencode); | ||||||
|  |         if (symbol < 16)                /* length in 0..15 */ | ||||||
|  |             lengths[index++] = symbol; | ||||||
|  |         else {                          /* repeat instruction */ | ||||||
|  |             len = 0;                    /* assume repeating zeros */ | ||||||
|  |             if (symbol == 16) {         /* repeat last length 3..6 times */ | ||||||
|  |                 if (index == 0) return -5;      /* no last length! */ | ||||||
|  |                 len = lengths[index - 1];       /* last length */ | ||||||
|  |                 symbol = 3 + bits(s, 2); | ||||||
|  |             } | ||||||
|  |             else if (symbol == 17)      /* repeat zero 3..10 times */ | ||||||
|  |                 symbol = 3 + bits(s, 3); | ||||||
|  |             else                        /* == 18, repeat zero 11..138 times */ | ||||||
|  |                 symbol = 11 + bits(s, 7); | ||||||
|  |             if (index + symbol > nlen + ndist) | ||||||
|  |                 return -6;              /* too many lengths! */ | ||||||
|  |             while (symbol--)            /* repeat last or zero symbol times */ | ||||||
|  |                 lengths[index++] = len; | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /* build huffman table for literal/length codes */ | ||||||
|  |     err = construct(&lencode, lengths, nlen); | ||||||
|  |     if (err < 0 || (err > 0 && nlen - lencode.count[0] != 1)) | ||||||
|  |         return -7;      /* only allow incomplete codes if just one code */ | ||||||
|  |  | ||||||
|  |     /* build huffman table for distance codes */ | ||||||
|  |     err = construct(&distcode, lengths + nlen, ndist); | ||||||
|  |     if (err < 0 || (err > 0 && ndist - distcode.count[0] != 1)) | ||||||
|  |         return -8;      /* only allow incomplete codes if just one code */ | ||||||
|  |  | ||||||
|  |     /* decode data until end-of-block code */ | ||||||
|  |     return codes(s, &lencode, &distcode); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * Inflate source to dest.  On return, destlen and sourcelen are updated to the | ||||||
|  |  * size of the uncompressed data and the size of the deflate data respectively. | ||||||
|  |  * On success, the return value of puff() is zero.  If there is an error in the | ||||||
|  |  * source data, i.e. it is not in the deflate format, then a negative value is | ||||||
|  |  * returned.  If there is not enough input available or there is not enough | ||||||
|  |  * output space, then a positive error is returned.  In that case, destlen and | ||||||
|  |  * sourcelen are not updated to facilitate retrying from the beginning with the | ||||||
|  |  * provision of more input data or more output space.  In the case of invalid | ||||||
|  |  * inflate data (a negative error), the dest and source pointers are updated to | ||||||
|  |  * facilitate the debugging of deflators. | ||||||
|  |  * | ||||||
|  |  * puff() also has a mode to determine the size of the uncompressed output with | ||||||
|  |  * no output written.  For this dest must be (unsigned char *)0.  In this case, | ||||||
|  |  * the input value of *destlen is ignored, and on return *destlen is set to the | ||||||
|  |  * size of the uncompressed output. | ||||||
|  |  * | ||||||
|  |  * The return codes are: | ||||||
|  |  * | ||||||
|  |  *   2:  available inflate data did not terminate | ||||||
|  |  *   1:  output space exhausted before completing inflate | ||||||
|  |  *   0:  successful inflate | ||||||
|  |  *  -1:  invalid block type (type == 3) | ||||||
|  |  *  -2:  stored block length did not match one's complement | ||||||
|  |  *  -3:  dynamic block code description: too many length or distance codes | ||||||
|  |  *  -4:  dynamic block code description: code lengths codes incomplete | ||||||
|  |  *  -5:  dynamic block code description: repeat lengths with no first length | ||||||
|  |  *  -6:  dynamic block code description: repeat more than specified lengths | ||||||
|  |  *  -7:  dynamic block code description: invalid literal/length code lengths | ||||||
|  |  *  -8:  dynamic block code description: invalid distance code lengths | ||||||
|  |  *  -9:  invalid literal/length or distance code in fixed or dynamic block | ||||||
|  |  * -10:  distance is too far back in fixed or dynamic block | ||||||
|  |  * | ||||||
|  |  * Format notes: | ||||||
|  |  * | ||||||
|  |  * - Three bits are read for each block to determine the kind of block and | ||||||
|  |  *   whether or not it is the last block.  Then the block is decoded and the | ||||||
|  |  *   process repeated if it was not the last block. | ||||||
|  |  * | ||||||
|  |  * - The leftover bits in the last byte of the deflate data after the last | ||||||
|  |  *   block (if it was a fixed or dynamic block) are undefined and have no | ||||||
|  |  *   expected values to check. | ||||||
|  |  */ | ||||||
|  | int puff(unsigned char *dest,           /* pointer to destination pointer */ | ||||||
|  |          unsigned long *destlen,        /* amount of output space */ | ||||||
|  |          unsigned char *source,         /* pointer to source data pointer */ | ||||||
|  |          unsigned long *sourcelen)      /* amount of input available */ | ||||||
|  | { | ||||||
|  |     struct state s;             /* input/output state */ | ||||||
|  |     int last, type;             /* block information */ | ||||||
|  |     int err;                    /* return value */ | ||||||
|  |  | ||||||
|  |     /* initialize output state */ | ||||||
|  |     s.out = dest; | ||||||
|  |     s.outlen = *destlen;                /* ignored if dest is NIL */ | ||||||
|  |     s.outcnt = 0; | ||||||
|  |  | ||||||
|  |     /* initialize input state */ | ||||||
|  |     s.in = source; | ||||||
|  |     s.inlen = *sourcelen; | ||||||
|  |     s.incnt = 0; | ||||||
|  |     s.bitbuf = 0; | ||||||
|  |     s.bitcnt = 0; | ||||||
|  |  | ||||||
|  |     /* return if bits() or decode() tries to read past available input */ | ||||||
|  |     if (setjmp(s.env) != 0)             /* if came back here via longjmp() */ | ||||||
|  |         err = 2;                        /* then skip do-loop, return error */ | ||||||
|  |     else { | ||||||
|  |         /* process blocks until last block or error */ | ||||||
|  |         do { | ||||||
|  |             last = bits(&s, 1);         /* one if last block */ | ||||||
|  |             type = bits(&s, 2);         /* block type 0..3 */ | ||||||
|  |             err = type == 0 ? stored(&s) : | ||||||
|  |                   (type == 1 ? fixed(&s) : | ||||||
|  |                    (type == 2 ? dynamic(&s) : | ||||||
|  |                     -1));               /* type == 3, invalid */ | ||||||
|  |             if (err != 0) break;        /* return with error */ | ||||||
|  |         } while (!last); | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /* update the lengths and return */ | ||||||
|  |     if (err <= 0) { | ||||||
|  |         *destlen = s.outcnt; | ||||||
|  |         *sourcelen = s.incnt; | ||||||
|  |     } | ||||||
|  |     return err; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | #ifdef TEST | ||||||
|  | /* Example of how to use puff() */ | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdlib.h> | ||||||
|  | #include <sys/types.h> | ||||||
|  | #include <sys/stat.h> | ||||||
|  |  | ||||||
|  | local unsigned char *yank(char *name, unsigned long *len) | ||||||
|  | { | ||||||
|  |     unsigned long size; | ||||||
|  |     unsigned char *buf; | ||||||
|  |     FILE *in; | ||||||
|  |     struct stat s; | ||||||
|  |  | ||||||
|  |     *len = 0; | ||||||
|  |     if (stat(name, &s)) return NULL; | ||||||
|  |     if ((s.st_mode & S_IFMT) != S_IFREG) return NULL; | ||||||
|  |     size = (unsigned long)(s.st_size); | ||||||
|  |     if (size == 0 || (off_t)size != s.st_size) return NULL; | ||||||
|  |     in = fopen(name, "r"); | ||||||
|  |     if (in == NULL) return NULL; | ||||||
|  |     buf = malloc(size); | ||||||
|  |     if (buf != NULL && fread(buf, 1, size, in) != size) { | ||||||
|  |         free(buf); | ||||||
|  |         buf = NULL; | ||||||
|  |     } | ||||||
|  |     fclose(in); | ||||||
|  |     *len = size;     | ||||||
|  |     return buf; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int main(int argc, char **argv) | ||||||
|  | { | ||||||
|  |     int ret; | ||||||
|  |     unsigned char *source; | ||||||
|  |     unsigned long len, sourcelen, destlen; | ||||||
|  |  | ||||||
|  |     if (argc < 2) return 2; | ||||||
|  |     source = yank(argv[1], &len); | ||||||
|  |     if (source == NULL) return 2; | ||||||
|  |     sourcelen = len; | ||||||
|  |     ret = puff(NIL, &destlen, source, &sourcelen); | ||||||
|  |     if (ret) | ||||||
|  |         printf("puff() failed with return code %d\n", ret); | ||||||
|  |     else { | ||||||
|  |         printf("puff() succeeded uncompressing %lu bytes\n", destlen); | ||||||
|  |         if (sourcelen < len) printf("%lu compressed bytes unused\n", | ||||||
|  |                                     len - sourcelen); | ||||||
|  |     } | ||||||
|  |     free(source); | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  | #endif | ||||||
							
								
								
									
										31
									
								
								contrib/puff/puff.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								contrib/puff/puff.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,31 @@ | |||||||
|  | /* puff.h | ||||||
|  |   Copyright (C) 2002, 2003 Mark Adler, all rights reserved | ||||||
|  |   version 1.7, 3 Mar 2002 | ||||||
|  |  | ||||||
|  |   This software is provided 'as-is', without any express or implied | ||||||
|  |   warranty.  In no event will the author be held liable for any damages | ||||||
|  |   arising from the use of this software. | ||||||
|  |  | ||||||
|  |   Permission is granted to anyone to use this software for any purpose, | ||||||
|  |   including commercial applications, and to alter it and redistribute it | ||||||
|  |   freely, subject to the following restrictions: | ||||||
|  |  | ||||||
|  |   1. The origin of this software must not be misrepresented; you must not | ||||||
|  |      claim that you wrote the original software. If you use this software | ||||||
|  |      in a product, an acknowledgment in the product documentation would be | ||||||
|  |      appreciated but is not required. | ||||||
|  |   2. Altered source versions must be plainly marked as such, and must not be | ||||||
|  |      misrepresented as being the original software. | ||||||
|  |   3. This notice may not be removed or altered from any source distribution. | ||||||
|  |  | ||||||
|  |   Mark Adler	madler@alumni.caltech.edu | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |  * See puff.c for purpose and usage. | ||||||
|  |  */ | ||||||
|  | int puff(unsigned char *dest,           /* pointer to destination pointer */ | ||||||
|  |          unsigned long *destlen,        /* amount of output space */ | ||||||
|  |          unsigned char *source,         /* pointer to source data pointer */ | ||||||
|  |          unsigned long *sourcelen);     /* amount of input available */ | ||||||
							
								
								
									
										
											BIN
										
									
								
								contrib/puff/zeros.raw
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								contrib/puff/zeros.raw
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										149
									
								
								contrib/testzlib/testzlib.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										149
									
								
								contrib/testzlib/testzlib.c
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,149 @@ | |||||||
|  |  | ||||||
|  | #include <stdio.h> | ||||||
|  | #include <stdlib.h> | ||||||
|  | #include <windows.h> | ||||||
|  | #include "zlib.h" | ||||||
|  |  | ||||||
|  | int ReadFileMemory(const char* filename,long* plFileSize,void** pFilePtr) | ||||||
|  | { | ||||||
|  |     FILE* stream; | ||||||
|  |     void* ptr; | ||||||
|  |     int retVal=1; | ||||||
|  |     stream=fopen(filename, "rb"); | ||||||
|  |     if (stream==NULL) | ||||||
|  |         return 0; | ||||||
|  |  | ||||||
|  |     fseek(stream,0,SEEK_END); | ||||||
|  |  | ||||||
|  |     *plFileSize=ftell(stream); | ||||||
|  |     fseek(stream,0,SEEK_SET); | ||||||
|  |     ptr=malloc((*plFileSize)+1); | ||||||
|  |     if (ptr==NULL) | ||||||
|  |         retVal=0; | ||||||
|  |     else | ||||||
|  |     { | ||||||
|  |         if (fread(ptr, 1, *plFileSize,stream) != (*plFileSize)) | ||||||
|  |             retVal=0; | ||||||
|  |     } | ||||||
|  |     fclose(stream); | ||||||
|  |     *pFilePtr=ptr; | ||||||
|  |     return retVal; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int main(int argc, char *argv[]) | ||||||
|  | { | ||||||
|  |     int BlockSizeCompress=0x8000; | ||||||
|  |     int BlockSizeUncompress=0x8000; | ||||||
|  |     int cprLevel=Z_DEFAULT_COMPRESSION ; | ||||||
|  |     long lFileSize; | ||||||
|  |     unsigned char* FilePtr; | ||||||
|  |     long lBufferSizeCpr; | ||||||
|  |     long lBufferSizeUncpr; | ||||||
|  |     long lCompressedSize=0; | ||||||
|  |     unsigned char* CprPtr; | ||||||
|  |     unsigned char* UncprPtr; | ||||||
|  |     long lSizeCpr,lSizeUncpr; | ||||||
|  |     DWORD dwGetTick; | ||||||
|  |  | ||||||
|  |     if (argc<=1) | ||||||
|  |     { | ||||||
|  |         printf("run TestZlib <File> [BlockSizeCompress] [BlockSizeUncompress] [compres. level]\n"); | ||||||
|  |         return 0; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     if (ReadFileMemory(argv[1],&lFileSize,&FilePtr)==0) | ||||||
|  |     { | ||||||
|  |         printf("error reading %s\n",argv[1]); | ||||||
|  |         return 1; | ||||||
|  |     } | ||||||
|  |     else printf("file %s read, %u bytes\n",argv[1],lFileSize); | ||||||
|  |  | ||||||
|  |     if (argc>=3) | ||||||
|  |         BlockSizeCompress=atol(argv[2]); | ||||||
|  |  | ||||||
|  |     if (argc>=4) | ||||||
|  |         BlockSizeUncompress=atol(argv[3]); | ||||||
|  |  | ||||||
|  |     if (argc>=5) | ||||||
|  |         cprLevel=(int)atol(argv[4]); | ||||||
|  |  | ||||||
|  |     lBufferSizeCpr = lFileSize + (lFileSize/0x10) + 0x200; | ||||||
|  |     lBufferSizeUncpr = lBufferSizeCpr; | ||||||
|  |  | ||||||
|  |     CprPtr=(unsigned char*)malloc(lBufferSizeCpr + BlockSizeCompress); | ||||||
|  |     UncprPtr=(unsigned char*)malloc(lBufferSizeUncpr + BlockSizeUncompress); | ||||||
|  |  | ||||||
|  |     dwGetTick=GetTickCount(); | ||||||
|  |     { | ||||||
|  |         z_stream zcpr; | ||||||
|  |         int ret=Z_OK; | ||||||
|  |         long lOrigToDo = lFileSize; | ||||||
|  |         long lOrigDone = 0; | ||||||
|  |         int step=0; | ||||||
|  |         memset(&zcpr,0,sizeof(z_stream)); | ||||||
|  |         deflateInit(&zcpr,cprLevel); | ||||||
|  |  | ||||||
|  |         zcpr.next_in = FilePtr; | ||||||
|  |         zcpr.next_out = CprPtr; | ||||||
|  |  | ||||||
|  |  | ||||||
|  |         do | ||||||
|  |         { | ||||||
|  |             long all_read_before = zcpr.total_in; | ||||||
|  |             zcpr.avail_in = min(lOrigToDo,BlockSizeCompress); | ||||||
|  |             zcpr.avail_out = BlockSizeCompress; | ||||||
|  |             ret=deflate(&zcpr,(zcpr.avail_in==lOrigToDo) ? Z_FINISH : Z_SYNC_FLUSH); | ||||||
|  |             lOrigDone += (zcpr.total_in-all_read_before); | ||||||
|  |             lOrigToDo -= (zcpr.total_in-all_read_before); | ||||||
|  |             step++; | ||||||
|  |         } while (ret==Z_OK); | ||||||
|  |  | ||||||
|  |         lSizeCpr=zcpr.total_out; | ||||||
|  |         deflateEnd(&zcpr); | ||||||
|  |         dwGetTick=GetTickCount()-dwGetTick; | ||||||
|  |         printf("total compress size = %u, in %u step\n",lSizeCpr,step); | ||||||
|  |         printf("time = %u msec = %f sec\n\n",dwGetTick,dwGetTick/(double)1000.); | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     dwGetTick=GetTickCount(); | ||||||
|  |     { | ||||||
|  |         z_stream zcpr; | ||||||
|  |         int ret=Z_OK; | ||||||
|  |         long lOrigToDo = lSizeCpr; | ||||||
|  |         long lOrigDone = 0; | ||||||
|  |         int step=0; | ||||||
|  |         memset(&zcpr,0,sizeof(z_stream)); | ||||||
|  |         inflateInit(&zcpr); | ||||||
|  |  | ||||||
|  |         zcpr.next_in = CprPtr; | ||||||
|  |         zcpr.next_out = UncprPtr; | ||||||
|  |  | ||||||
|  |  | ||||||
|  |         do | ||||||
|  |         { | ||||||
|  |             long all_read_before = zcpr.total_in; | ||||||
|  |             zcpr.avail_in = min(lOrigToDo,BlockSizeUncompress); | ||||||
|  |             zcpr.avail_out = BlockSizeUncompress; | ||||||
|  |             ret=inflate(&zcpr,Z_SYNC_FLUSH); | ||||||
|  |             lOrigDone += (zcpr.total_in-all_read_before); | ||||||
|  |             lOrigToDo -= (zcpr.total_in-all_read_before); | ||||||
|  |             step++; | ||||||
|  |         } while (ret==Z_OK); | ||||||
|  |  | ||||||
|  |         lSizeUncpr=zcpr.total_out; | ||||||
|  |         inflateEnd(&zcpr); | ||||||
|  |         dwGetTick=GetTickCount()-dwGetTick; | ||||||
|  |         printf("total uncompress size = %u, in %u step\n",lSizeUncpr,step); | ||||||
|  |         printf("time = %u msec = %f sec\n\n",dwGetTick,dwGetTick/(double)1000.); | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     if (lSizeUncpr==lFileSize) | ||||||
|  |     { | ||||||
|  |         if (memcmp(FilePtr,UncprPtr,lFileSize)==0) | ||||||
|  |             printf("compare ok\n"); | ||||||
|  |  | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     return 0; | ||||||
|  |  | ||||||
|  | } | ||||||
							
								
								
									
										21
									
								
								contrib/testzlib/testzlib.sln
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								contrib/testzlib/testzlib.sln
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | |||||||
|  | Microsoft Visual Studio Solution File, Format Version 7.00 | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testzlib", "testzlib.vcproj", "{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}" | ||||||
|  | EndProject | ||||||
|  | Global | ||||||
|  | 	GlobalSection(SolutionConfiguration) = preSolution | ||||||
|  | 		ConfigName.0 = Debug | ||||||
|  | 		ConfigName.1 = Release | ||||||
|  | 	EndGlobalSection | ||||||
|  | 	GlobalSection(ProjectDependencies) = postSolution | ||||||
|  | 	EndGlobalSection | ||||||
|  | 	GlobalSection(ProjectConfiguration) = postSolution | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug.ActiveCfg = Debug|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug.Build.0 = Debug|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release.ActiveCfg = Release|Win32 | ||||||
|  | 		{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release.Build.0 = Release|Win32 | ||||||
|  | 	EndGlobalSection | ||||||
|  | 	GlobalSection(ExtensibilityGlobals) = postSolution | ||||||
|  | 	EndGlobalSection | ||||||
|  | 	GlobalSection(ExtensibilityAddIns) = postSolution | ||||||
|  | 	EndGlobalSection | ||||||
|  | EndGlobal | ||||||
							
								
								
									
										124
									
								
								contrib/testzlib/testzlib.vcproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										124
									
								
								contrib/testzlib/testzlib.vcproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,124 @@ | |||||||
|  | <?xml version="1.0" encoding = "Windows-1252"?> | ||||||
|  | <VisualStudioProject | ||||||
|  | 	ProjectType="Visual C++" | ||||||
|  | 	Version="7.00" | ||||||
|  | 	Name="testzlib" | ||||||
|  | 	ProjectGUID="{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}" | ||||||
|  | 	Keyword="Win32Proj"> | ||||||
|  | 	<Platforms> | ||||||
|  | 		<Platform | ||||||
|  | 			Name="Win32"/> | ||||||
|  | 	</Platforms> | ||||||
|  | 	<Configurations> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="Debug|Win32" | ||||||
|  | 			OutputDirectory="Debug" | ||||||
|  | 			IntermediateDirectory="Debug" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE" | ||||||
|  | 				MinimalRebuild="TRUE" | ||||||
|  | 				BasicRuntimeChecks="3" | ||||||
|  | 				RuntimeLibrary="5" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="TRUE" | ||||||
|  | 				DebugInformationFormat="4"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				OutputFile="$(OutDir)/testzlib.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				GenerateDebugInformation="TRUE" | ||||||
|  | 				ProgramDatabaseFile="$(OutDir)/testzlib.pdb" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="Release|Win32" | ||||||
|  | 			OutputDirectory="Release" | ||||||
|  | 			IntermediateDirectory="Release" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="2" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				OmitFramePointers="TRUE" | ||||||
|  | 				PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				RuntimeLibrary="4" | ||||||
|  | 				EnableFunctionLevelLinking="TRUE" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="TRUE" | ||||||
|  | 				DebugInformationFormat="3"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				OutputFile="$(OutDir)/testzlib.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				GenerateDebugInformation="TRUE" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				OptimizeForWindows98="1" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 	</Configurations> | ||||||
|  | 	<Files> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Source Files" | ||||||
|  | 			Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath="testzlib.c"> | ||||||
|  | 			</File> | ||||||
|  | 		</Filter> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Header Files" | ||||||
|  | 			Filter="h;hpp;hxx;hm;inl;inc"> | ||||||
|  | 		</Filter> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Resource Files" | ||||||
|  | 			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> | ||||||
|  | 		</Filter> | ||||||
|  | 		<File | ||||||
|  | 			RelativePath="zlib.lib"> | ||||||
|  | 		</File> | ||||||
|  | 	</Files> | ||||||
|  | 	<Globals> | ||||||
|  | 	</Globals> | ||||||
|  | </VisualStudioProject> | ||||||
| @@ -9,7 +9,6 @@ | |||||||
| #include <stdlib.h> | #include <stdlib.h> | ||||||
| #include <string.h> | #include <string.h> | ||||||
| #include <time.h> | #include <time.h> | ||||||
| #include <utime.h> |  | ||||||
| #include <errno.h> | #include <errno.h> | ||||||
| #include <fcntl.h> | #include <fcntl.h> | ||||||
| #ifdef unix | #ifdef unix | ||||||
| @@ -21,6 +20,23 @@ | |||||||
|  |  | ||||||
| #include "zlib.h" | #include "zlib.h" | ||||||
|  |  | ||||||
|  | #ifdef WIN32 | ||||||
|  | #  ifndef F_OK | ||||||
|  | #    define F_OK (0) | ||||||
|  | #  endif | ||||||
|  | #  ifdef _MSC_VER | ||||||
|  | #    define mkdir(dirname,mode) _mkdir(dirname) | ||||||
|  | #    define strdup(str)         _strdup(str) | ||||||
|  | #    define unlink(fn)          _unlink(fn) | ||||||
|  | #    define access(path,mode)   _access(path,mode) | ||||||
|  | #  else | ||||||
|  | #    define mkdir(dirname,mode) _mkdir(dirname) | ||||||
|  | #  endif | ||||||
|  | #else | ||||||
|  | #  include <utime.h> | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
| /* Values used in typeflag field.  */ | /* Values used in typeflag field.  */ | ||||||
|  |  | ||||||
| #define REGTYPE	 '0'		/* regular file */ | #define REGTYPE	 '0'		/* regular file */ | ||||||
| @@ -83,7 +99,7 @@ char *prog; | |||||||
|  |  | ||||||
| /* This will give a benign warning */ | /* This will give a benign warning */ | ||||||
|  |  | ||||||
| static char *TGZprefix[] = { "\0", ".tgz", ".tar.gz", NULL }; | static char *TGZprefix[] = { "\0", ".tgz", ".tar.gz", ".tar", NULL }; | ||||||
|  |  | ||||||
| /* Return the real name of the TGZ archive */ | /* Return the real name of the TGZ archive */ | ||||||
| /* or NULL if it does not exist. */ | /* or NULL if it does not exist. */ | ||||||
| @@ -271,14 +287,6 @@ int tar (gzFile in,int action,int arg,int argc,char **argv) | |||||||
|       len = gzread(in, &buffer, BLOCKSIZE); |       len = gzread(in, &buffer, BLOCKSIZE); | ||||||
|       if (len < 0) |       if (len < 0) | ||||||
| 	error (gzerror(in, &err)); | 	error (gzerror(in, &err)); | ||||||
|       /* |  | ||||||
|        * if we met the end of the tar |  | ||||||
|        * or the end-of-tar block, |  | ||||||
|        * we are done |  | ||||||
|        */ |  | ||||||
|       if ((len == 0)  || (buffer.header.name[0]== 0)) |  | ||||||
| 	break; |  | ||||||
|        |  | ||||||
|       /* |       /* | ||||||
|        * Always expect complete blocks to process |        * Always expect complete blocks to process | ||||||
|        * the tar information. |        * the tar information. | ||||||
| @@ -291,6 +299,13 @@ int tar (gzFile in,int action,int arg,int argc,char **argv) | |||||||
|        */ |        */ | ||||||
|       if (getheader == 1) |       if (getheader == 1) | ||||||
| 	{ | 	{ | ||||||
|  | 	  /* | ||||||
|  | 	   * if we met the end of the tar | ||||||
|  | 	   * or the end-of-tar block, | ||||||
|  | 	   * we are done | ||||||
|  | 	   */ | ||||||
|  | 	  if ((len == 0)  || (buffer.header.name[0]== 0)) break; | ||||||
|  |  | ||||||
| 	  tartime = (time_t)getoct(buffer.header.mtime,12); | 	  tartime = (time_t)getoct(buffer.header.mtime,12); | ||||||
| 	  strcpy(fname,buffer.header.name); | 	  strcpy(fname,buffer.header.name); | ||||||
| 	   | 	   | ||||||
| @@ -360,6 +375,34 @@ int tar (gzFile in,int action,int arg,int argc,char **argv) | |||||||
| 	      getheader = 1; | 	      getheader = 1; | ||||||
| 	      if ((action == TGZ_EXTRACT) && (outfile != NULL)) | 	      if ((action == TGZ_EXTRACT) && (outfile != NULL)) | ||||||
| 		{ | 		{ | ||||||
|  | #ifdef WIN32 | ||||||
|  | 		  HANDLE hFile; | ||||||
|  | 		  FILETIME ftm,ftLocal; | ||||||
|  | 		  SYSTEMTIME st; | ||||||
|  | 		  struct tm localt; | ||||||
|  |   | ||||||
|  | 		  fclose(outfile); | ||||||
|  |  | ||||||
|  | 		  localt = *localtime(&tartime); | ||||||
|  |  | ||||||
|  | 		  hFile = CreateFile(fname, GENERIC_READ | GENERIC_WRITE, | ||||||
|  | 				     0, NULL, OPEN_EXISTING, 0, NULL); | ||||||
|  | 		   | ||||||
|  | 		  st.wYear = (WORD)localt.tm_year+1900; | ||||||
|  | 		  st.wMonth = (WORD)localt.tm_mon; | ||||||
|  | 		  st.wDayOfWeek = (WORD)localt.tm_wday; | ||||||
|  | 		  st.wDay = (WORD)localt.tm_mday; | ||||||
|  | 		  st.wHour = (WORD)localt.tm_hour; | ||||||
|  | 		  st.wMinute = (WORD)localt.tm_min; | ||||||
|  | 		  st.wSecond = (WORD)localt.tm_sec; | ||||||
|  | 		  st.wMilliseconds = 0; | ||||||
|  | 		  SystemTimeToFileTime(&st,&ftLocal); | ||||||
|  | 		  LocalFileTimeToFileTime(&ftLocal,&ftm); | ||||||
|  | 		  SetFileTime(hFile,&ftm,NULL,&ftm); | ||||||
|  | 		  CloseHandle(hFile); | ||||||
|  |  | ||||||
|  | 		  outfile = NULL; | ||||||
|  | #else | ||||||
| 		  struct utimbuf settime; | 		  struct utimbuf settime; | ||||||
|  |  | ||||||
| 		  settime.actime = settime.modtime = tartime; | 		  settime.actime = settime.modtime = tartime; | ||||||
| @@ -367,6 +410,7 @@ int tar (gzFile in,int action,int arg,int argc,char **argv) | |||||||
| 		  fclose(outfile); | 		  fclose(outfile); | ||||||
| 		  outfile = NULL; | 		  outfile = NULL; | ||||||
| 		  utime(fname,&settime); | 		  utime(fname,&settime); | ||||||
|  | #endif | ||||||
| 		} | 		} | ||||||
| 	    } | 	    } | ||||||
| 	} | 	} | ||||||
|   | |||||||
| @@ -1,5 +1,17 @@ | |||||||
|  | See below some functions declarations for Visual Basic. | ||||||
|  |  | ||||||
|  | Frequently Asked Question: | ||||||
|  |  | ||||||
|  | Q: Each time I use the compress function I get the -5 error (not enough | ||||||
|  |    room in the output buffer). | ||||||
|  |  | ||||||
|  | A: Make sure that the length of the compressed buffer is passed by | ||||||
|  |    reference ("as any"), not by value ("as long"). Also check that | ||||||
|  |    before the call of compress this length is equal to the total size of | ||||||
|  |    the compressed buffer and not zero. | ||||||
|  |  | ||||||
|  |  | ||||||
| From: "Jon Caruana" <jon-net@usa.net> | From: "Jon Caruana" <jon-net@usa.net> | ||||||
| To: "Jean-loup Gailly" <gzip@prep.ai.mit.edu> |  | ||||||
| Subject: Re: How to port zlib declares to vb? | Subject: Re: How to port zlib declares to vb? | ||||||
| Date: Mon, 28 Oct 1996 18:33:03 -0600 | Date: Mon, 28 Oct 1996 18:33:03 -0600 | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										17
									
								
								contrib/vstudio/readme.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								contrib/vstudio/readme.txt
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | |||||||
|  | For create the 16 and 32 bits DLL of Zlib 1.20 | ||||||
|  |  | ||||||
|  | For the 16 bits : | ||||||
|  | unzip zlib120.zip and copy file from contrib\vstudio\vc15_16 and from contrib\minizip in the same directory | ||||||
|  | open zlib16.mak with Microsoft Visual C++ 1.52 | ||||||
|  |  | ||||||
|  |  | ||||||
|  | For the 32 bits : | ||||||
|  | unzip zlib120.zip and copy file from contrib\vstudio\vc70_32 and from contrib\minizip in the same directory | ||||||
|  | You can also need unzip http://www.winimage.com/zLibDll/crtdll.zip | ||||||
|  |  | ||||||
|  | If you are using x86, use target Release | ||||||
|  | open zlibvc.sln with Microsoft Visual C++ 7.0 (Visual Studio .net) | ||||||
|  |  | ||||||
|  |  | ||||||
|  | Note : You don't need recompile yourself. There is compiled .LIB in | ||||||
|  |   http://www.winimage.com/zLibDll | ||||||
							
								
								
									
										94
									
								
								contrib/vstudio/vc15_16/zlib16.def
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										94
									
								
								contrib/vstudio/vc15_16/zlib16.def
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,94 @@ | |||||||
|  | LIBRARY		"zlib" | ||||||
|  |  | ||||||
|  | DESCRIPTION	'"""zlib data compression library"""' | ||||||
|  |  | ||||||
|  | EXETYPE		WINDOWS | ||||||
|  |  | ||||||
|  | VERSION		1.20 | ||||||
|  |  | ||||||
|  | CODE    PRELOAD MOVEABLE DISCARDABLE | ||||||
|  | DATA    PRELOAD MOVEABLE SINGLE | ||||||
|  |  | ||||||
|  |  | ||||||
|  | HEAPSIZE	32768,8192 | ||||||
|  |  | ||||||
|  | EXPORTS | ||||||
|  |         adler32                                  @1 | ||||||
|  |         compress                                 @2 | ||||||
|  |         crc32                                    @3 | ||||||
|  |         deflate                                  @4 | ||||||
|  |         deflateCopy                              @5 | ||||||
|  |         deflateEnd                               @6 | ||||||
|  |         deflateInit2_                            @7 | ||||||
|  |         deflateInit_                             @8 | ||||||
|  |         deflateParams                            @9 | ||||||
|  |         deflateReset                             @10 | ||||||
|  |         deflateSetDictionary                     @11 | ||||||
|  |         gzclose                                  @12 | ||||||
|  |         gzdopen                                  @13 | ||||||
|  |         gzerror                                  @14 | ||||||
|  |         gzflush                                  @15 | ||||||
|  |         gzopen                                   @16 | ||||||
|  |         gzread                                   @17 | ||||||
|  |         gzwrite                                  @18 | ||||||
|  |         inflate                                  @19 | ||||||
|  |         inflateEnd                               @20 | ||||||
|  |         inflateInit2_                            @21 | ||||||
|  |         inflateInit_                             @22 | ||||||
|  |         inflateReset                             @23 | ||||||
|  |         inflateSetDictionary                     @24 | ||||||
|  |         inflateSync                              @25 | ||||||
|  |         uncompress                               @26 | ||||||
|  |         zlibVersion                              @27 | ||||||
|  |         _gzprintf                                @28 | ||||||
|  |         gzputc                                   @29 | ||||||
|  |         gzgetc                                   @30 | ||||||
|  |         gzseek                                   @31 | ||||||
|  |         gzrewind                                 @32 | ||||||
|  |         gztell                                   @33 | ||||||
|  |         gzeof                                    @34 | ||||||
|  |         gzsetparams                              @35 | ||||||
|  |         zError                                   @36 | ||||||
|  |         inflateSyncPoint                         @37 | ||||||
|  |         get_crc_table                            @38 | ||||||
|  |         compress2                                @39 | ||||||
|  |         gzputs                                   @40 | ||||||
|  |         gzgets                                   @41 | ||||||
|  |         inflateCopy                              @42 | ||||||
|  |         inflateBackInit_                         @43 | ||||||
|  |         inflateBack                              @44 | ||||||
|  |         inflateBackEnd                           @45 | ||||||
|  |         compressBound                            @46 | ||||||
|  |  | ||||||
|  |         unzOpen                                  @61 | ||||||
|  |         unzClose                                 @62 | ||||||
|  |         unzGetGlobalInfo                         @63 | ||||||
|  |         unzGetCurrentFileInfo                    @64 | ||||||
|  |         unzGoToFirstFile                         @65 | ||||||
|  |         unzGoToNextFile                          @66 | ||||||
|  |         unzOpenCurrentFile                       @67 | ||||||
|  |         unzReadCurrentFile                       @68 | ||||||
|  |         unzOpenCurrentFile3                      @69 | ||||||
|  |         unztell                                  @70 | ||||||
|  |         unzeof                                   @71 | ||||||
|  |         unzCloseCurrentFile                      @72 | ||||||
|  |         unzGetGlobalComment                      @73 | ||||||
|  |         unzStringFileNameCompare                 @74 | ||||||
|  |         unzLocateFile                            @75 | ||||||
|  |         unzGetLocalExtrafield                    @76 | ||||||
|  |         unzOpen2                                 @77 | ||||||
|  |         unzOpenCurrentFile2                      @78 | ||||||
|  |         unzOpenCurrentFilePassword               @79 | ||||||
|  |  | ||||||
|  |         zipOpen                                  @80 | ||||||
|  |         zipOpenNewFileInZip                      @81 | ||||||
|  |         zipWriteInFileInZip                      @82 | ||||||
|  |         zipCloseFileInZip                        @83 | ||||||
|  |         zipClose                                 @84 | ||||||
|  |         zipOpenNewFileInZip2                     @86 | ||||||
|  |         zipCloseFileInZipRaw                     @87 | ||||||
|  |         zipOpen2                                 @88 | ||||||
|  |         zipOpenNewFileInZip3                     @89 | ||||||
|  |  | ||||||
|  |         unzGetFilePos                            @100 | ||||||
|  |         unzGoToFilePos                           @101 | ||||||
							
								
								
									
										256
									
								
								contrib/vstudio/vc15_16/zlib16.mak
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										256
									
								
								contrib/vstudio/vc15_16/zlib16.mak
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,256 @@ | |||||||
|  | # Microsoft Visual C++ generated build script - Do not modify | ||||||
|  |  | ||||||
|  | PROJ = ZLIB16 | ||||||
|  | DEBUG = 0 | ||||||
|  | PROGTYPE = 1 | ||||||
|  | CALLER =  | ||||||
|  | ARGS =  | ||||||
|  | DLLS =  | ||||||
|  | D_RCDEFINES = -d_DEBUG | ||||||
|  | R_RCDEFINES = -dNDEBUG | ||||||
|  | ORIGIN = MSVC | ||||||
|  | ORIGIN_VER = 1.00 | ||||||
|  | PROJPATH = c:\zlib\ | ||||||
|  | USEMFC = 0 | ||||||
|  | CC = cl | ||||||
|  | CPP = cl | ||||||
|  | CXX = cl | ||||||
|  | CCREATEPCHFLAG =  | ||||||
|  | CPPCREATEPCHFLAG =  | ||||||
|  | CUSEPCHFLAG =  | ||||||
|  | CPPUSEPCHFLAG =  | ||||||
|  | FIRSTC = ADLER32.C    | ||||||
|  | FIRSTCPP =              | ||||||
|  | RC = rc | ||||||
|  | CFLAGS_D_WDLL = /nologo /G2 /W3 /Zi /ALw /Od /D "_DEBUG" /D "WINDOWS" /D "ZLIB_DLL" /FR /GD /Fd"ZLIB.PDB" | ||||||
|  | CFLAGS_R_WDLL = /nologo /W3 /ALw /O1 /D "NDEBUG" /D "WINDOWS" /D "ZLIB_DLL" /FR /GD  | ||||||
|  | LFLAGS_D_WDLL = /NOLOGO /ONERROR:NOEXE /NOD /PACKC:61440 /CO /NOE /ALIGN:16 /MAP:FULL | ||||||
|  | LFLAGS_R_WDLL = /NOLOGO /ONERROR:NOEXE /NOD /PACKC:61440 /NOE /ALIGN:16 /MAP:FULL | ||||||
|  | LIBS_D_WDLL = oldnames libw commdlg shell olecli olesvr ldllcew | ||||||
|  | LIBS_R_WDLL = oldnames libw commdlg shell olecli olesvr ldllcew | ||||||
|  | RCFLAGS = /nologo | ||||||
|  | RESFLAGS = /nologo | ||||||
|  | RUNFLAGS =  | ||||||
|  | DEFFILE = ZLIB16.DEF | ||||||
|  | OBJS_EXT =  | ||||||
|  | LIBS_EXT =  | ||||||
|  | !if "$(DEBUG)" == "1" | ||||||
|  | CFLAGS = $(CFLAGS_D_WDLL) | ||||||
|  | LFLAGS = $(LFLAGS_D_WDLL) | ||||||
|  | LIBS = $(LIBS_D_WDLL) | ||||||
|  | MAPFILE = nul | ||||||
|  | RCDEFINES = $(D_RCDEFINES) | ||||||
|  | !else | ||||||
|  | CFLAGS = $(CFLAGS_R_WDLL) | ||||||
|  | LFLAGS = $(LFLAGS_R_WDLL) | ||||||
|  | LIBS = $(LIBS_R_WDLL) | ||||||
|  | MAPFILE = nul | ||||||
|  | RCDEFINES = $(R_RCDEFINES) | ||||||
|  | !endif | ||||||
|  | !if [if exist MSVC.BND del MSVC.BND] | ||||||
|  | !endif | ||||||
|  | SBRS = ADLER32.SBR \ | ||||||
|  | 		COMPRESS.SBR \ | ||||||
|  | 		CRC32.SBR \ | ||||||
|  | 		DEFLATE.SBR \ | ||||||
|  | 		GZIO.SBR \ | ||||||
|  | 		INFFAST.SBR \ | ||||||
|  | 		INFLATE.SBR \ | ||||||
|  | 		TREES.SBR \ | ||||||
|  | 		UNCOMPR.SBR \ | ||||||
|  | 		ZUTIL.SBR \ | ||||||
|  | 		ZIP.SBR \ | ||||||
|  | 		UNZIP.SBR \ | ||||||
|  | 		INFBACK.SBR \ | ||||||
|  | 		IOAPI.SBR \ | ||||||
|  | 		INFTREES.SBR | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ADLER32_DEP = c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | COMPRESS_DEP = c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | CRC32_DEP = c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h \ | ||||||
|  | 	c:\zlib\crc32.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | DEFLATE_DEP = c:\zlib\deflate.h \ | ||||||
|  | 	c:\zlib\zutil.h \ | ||||||
|  | 	c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | GZIO_DEP = c:\zlib\zutil.h \ | ||||||
|  | 	c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | INFFAST_DEP = c:\zlib\zutil.h \ | ||||||
|  | 	c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h \ | ||||||
|  | 	c:\zlib\inftrees.h \ | ||||||
|  | 	c:\zlib\inflate.h \ | ||||||
|  | 	c:\zlib\inffast.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | INFLATE_DEP = c:\zlib\zutil.h \ | ||||||
|  | 	c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h \ | ||||||
|  | 	c:\zlib\inftrees.h \ | ||||||
|  | 	c:\zlib\inflate.h \ | ||||||
|  | 	c:\zlib\inffast.h \ | ||||||
|  | 	c:\zlib\inffixed.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | TREES_DEP = c:\zlib\deflate.h \ | ||||||
|  | 	c:\zlib\zutil.h \ | ||||||
|  | 	c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h \ | ||||||
|  | 	c:\zlib\trees.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | UNCOMPR_DEP = c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ZUTIL_DEP = c:\zlib\zutil.h \ | ||||||
|  | 	c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ZLIB16_RCDEP =  | ||||||
|  |  | ||||||
|  | ZIP_DEP = c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h \ | ||||||
|  | 	c:\zlib\zip.h \ | ||||||
|  | 	c:\zlib\ioapi.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | UNZIP_DEP = c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h \ | ||||||
|  | 	c:\zlib\unzip.h \ | ||||||
|  | 	c:\zlib\ioapi.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | INFBACK_DEP = c:\zlib\zutil.h \ | ||||||
|  | 	c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h \ | ||||||
|  | 	c:\zlib\inftrees.h \ | ||||||
|  | 	c:\zlib\inflate.h \ | ||||||
|  | 	c:\zlib\inffast.h \ | ||||||
|  | 	c:\zlib\inffixed.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | IOAPI_DEP = c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h \ | ||||||
|  | 	c:\zlib\ioapi.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | INFTREES_DEP = c:\zlib\zutil.h \ | ||||||
|  | 	c:\zlib\zlib.h \ | ||||||
|  | 	c:\zlib\zconf.h \ | ||||||
|  | 	c:\zlib\inftrees.h | ||||||
|  |  | ||||||
|  |  | ||||||
|  | all:	$(PROJ).DLL $(PROJ).BSC | ||||||
|  |  | ||||||
|  | ADLER32.OBJ:	ADLER32.C $(ADLER32_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CCREATEPCHFLAG) /c ADLER32.C | ||||||
|  |  | ||||||
|  | COMPRESS.OBJ:	COMPRESS.C $(COMPRESS_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c COMPRESS.C | ||||||
|  |  | ||||||
|  | CRC32.OBJ:	CRC32.C $(CRC32_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c CRC32.C | ||||||
|  |  | ||||||
|  | DEFLATE.OBJ:	DEFLATE.C $(DEFLATE_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c DEFLATE.C | ||||||
|  |  | ||||||
|  | GZIO.OBJ:	GZIO.C $(GZIO_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c GZIO.C | ||||||
|  |  | ||||||
|  | INFFAST.OBJ:	INFFAST.C $(INFFAST_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c INFFAST.C | ||||||
|  |  | ||||||
|  | INFLATE.OBJ:	INFLATE.C $(INFLATE_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c INFLATE.C | ||||||
|  |  | ||||||
|  | TREES.OBJ:	TREES.C $(TREES_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c TREES.C | ||||||
|  |  | ||||||
|  | UNCOMPR.OBJ:	UNCOMPR.C $(UNCOMPR_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c UNCOMPR.C | ||||||
|  |  | ||||||
|  | ZUTIL.OBJ:	ZUTIL.C $(ZUTIL_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ZUTIL.C | ||||||
|  |  | ||||||
|  | ZLIB16.RES:	ZLIB16.RC $(ZLIB16_RCDEP) | ||||||
|  | 	$(RC) $(RCFLAGS) $(RCDEFINES) -r ZLIB16.RC | ||||||
|  |  | ||||||
|  | ZIP.OBJ:	ZIP.C $(ZIP_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c ZIP.C | ||||||
|  |  | ||||||
|  | UNZIP.OBJ:	UNZIP.C $(UNZIP_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c UNZIP.C | ||||||
|  |  | ||||||
|  | INFBACK.OBJ:	INFBACK.C $(INFBACK_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c INFBACK.C | ||||||
|  |  | ||||||
|  | IOAPI.OBJ:	IOAPI.C $(IOAPI_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c IOAPI.C | ||||||
|  |  | ||||||
|  | INFTREES.OBJ:	INFTREES.C $(INFTREES_DEP) | ||||||
|  | 	$(CC) $(CFLAGS) $(CUSEPCHFLAG) /c INFTREES.C | ||||||
|  |  | ||||||
|  |  | ||||||
|  | $(PROJ).DLL::	ZLIB16.RES | ||||||
|  |  | ||||||
|  | $(PROJ).DLL::	ADLER32.OBJ COMPRESS.OBJ CRC32.OBJ DEFLATE.OBJ GZIO.OBJ INFFAST.OBJ \ | ||||||
|  | 	INFLATE.OBJ TREES.OBJ UNCOMPR.OBJ ZUTIL.OBJ ZIP.OBJ UNZIP.OBJ INFBACK.OBJ IOAPI.OBJ \ | ||||||
|  | 	INFTREES.OBJ $(OBJS_EXT) $(DEFFILE) | ||||||
|  | 	echo >NUL @<<$(PROJ).CRF | ||||||
|  | ADLER32.OBJ + | ||||||
|  | COMPRESS.OBJ + | ||||||
|  | CRC32.OBJ + | ||||||
|  | DEFLATE.OBJ + | ||||||
|  | GZIO.OBJ + | ||||||
|  | INFFAST.OBJ + | ||||||
|  | INFLATE.OBJ + | ||||||
|  | TREES.OBJ + | ||||||
|  | UNCOMPR.OBJ + | ||||||
|  | ZUTIL.OBJ + | ||||||
|  | ZIP.OBJ + | ||||||
|  | UNZIP.OBJ + | ||||||
|  | INFBACK.OBJ + | ||||||
|  | IOAPI.OBJ + | ||||||
|  | INFTREES.OBJ + | ||||||
|  | $(OBJS_EXT) | ||||||
|  | $(PROJ).DLL | ||||||
|  | $(MAPFILE) | ||||||
|  | C:\MSVC\LIB\+ | ||||||
|  | C:\MSVC\MFC\LIB\+ | ||||||
|  | E:\PROGRAMFILES\MICROSOFTVISUALSTUDIO.NET\FRAMEWORKSDK\LIB\+ | ||||||
|  | $(LIBS) | ||||||
|  | $(DEFFILE); | ||||||
|  | << | ||||||
|  | 	link $(LFLAGS) @$(PROJ).CRF | ||||||
|  | 	$(RC) $(RESFLAGS) ZLIB16.RES $@ | ||||||
|  | 	@copy $(PROJ).CRF MSVC.BND | ||||||
|  | 	implib /nowep $(PROJ).LIB $(PROJ).DLL | ||||||
|  |  | ||||||
|  | $(PROJ).DLL::	ZLIB16.RES | ||||||
|  | 	if not exist MSVC.BND 	$(RC) $(RESFLAGS) ZLIB16.RES $@ | ||||||
|  |  | ||||||
|  | run: $(PROJ).DLL | ||||||
|  | 	$(PROJ) $(RUNFLAGS) | ||||||
|  |  | ||||||
|  |  | ||||||
|  | $(PROJ).BSC: $(SBRS) | ||||||
|  | 	bscmake @<< | ||||||
|  | /o$@ $(SBRS) | ||||||
|  | << | ||||||
							
								
								
									
										33
									
								
								contrib/vstudio/vc15_16/zlib16.rc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								contrib/vstudio/vc15_16/zlib16.rc
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,33 @@ | |||||||
|  | #include <windows.h> | ||||||
|  | #include <ver.h> | ||||||
|  |  | ||||||
|  | #define IDR_VERSION1  1 | ||||||
|  | IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE | ||||||
|  |   FILEVERSION	 1,2,0,0 | ||||||
|  |   PRODUCTVERSION 1,2,0,0 | ||||||
|  |   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK | ||||||
|  |   FILEFLAGS	0 | ||||||
|  |   FILEOS	VOS_DOS_WINDOWS16 | ||||||
|  |   FILETYPE	VFT_DLL | ||||||
|  |   FILESUBTYPE	0	// not used | ||||||
|  | BEGIN | ||||||
|  |   BLOCK "StringFileInfo" | ||||||
|  |   BEGIN | ||||||
|  |     BLOCK "040904E4" | ||||||
|  |     //language ID = U.S. English, char set = Windows, Multilingual | ||||||
|  |  | ||||||
|  |     BEGIN | ||||||
|  |       VALUE "FileDescription", "zlib data compression library\0" | ||||||
|  |       VALUE "FileVersion",	"1.2.0\0" | ||||||
|  |       VALUE "InternalName",	"zlib16\0" | ||||||
|  |       VALUE "OriginalFilename",	"zlib16.dll\0" | ||||||
|  |       VALUE "ProductName",	"ZLib16.DLL\0" | ||||||
|  |       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" | ||||||
|  |       VALUE "LegalCopyright", "(C) 1995-2003 Jean-loup Gailly & Mark Adler\0" | ||||||
|  |     END | ||||||
|  |   END | ||||||
|  |   BLOCK "VarFileInfo" | ||||||
|  |   BEGIN | ||||||
|  |     VALUE "Translation", 0x0409, 1252 | ||||||
|  |   END | ||||||
|  | END | ||||||
							
								
								
									
										905
									
								
								contrib/vstudio/vc70_32/gvmat32.asm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										905
									
								
								contrib/vstudio/vc70_32/gvmat32.asm
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,905 @@ | |||||||
|  | ; | ||||||
|  | ; gvmat32.asm -- Asm portion of the optimized longest_match for 32 bits x86 | ||||||
|  | ; Copyright (C) 1995-1996 Jean-loup Gailly and Gilles Vollant. | ||||||
|  | ; File written by Gilles Vollant, by modifiying the longest_match | ||||||
|  | ;  from Jean-loup Gailly in deflate.c | ||||||
|  | ; It need wmask == 0x7fff | ||||||
|  | ;     (assembly code is faster with a fixed wmask) | ||||||
|  | ; | ||||||
|  | ; For Visual C++ 4.2 and ML 6.11c (version in directory \MASM611C of Win95 DDK) | ||||||
|  | ;   I compile with : "ml /coff /Zi /c gvmat32.asm" | ||||||
|  | ; | ||||||
|  |  | ||||||
|  | ;uInt longest_match_7fff(s, cur_match) | ||||||
|  | ;    deflate_state *s; | ||||||
|  | ;    IPos cur_match;                             /* current match */ | ||||||
|  |  | ||||||
|  |         NbStack         equ     76 | ||||||
|  |         cur_match       equ     dword ptr[esp+NbStack-0] | ||||||
|  |         str_s           equ     dword ptr[esp+NbStack-4] | ||||||
|  | ; 5 dword on top (ret,ebp,esi,edi,ebx) | ||||||
|  |         adrret          equ     dword ptr[esp+NbStack-8] | ||||||
|  |         pushebp         equ     dword ptr[esp+NbStack-12] | ||||||
|  |         pushedi         equ     dword ptr[esp+NbStack-16] | ||||||
|  |         pushesi         equ     dword ptr[esp+NbStack-20] | ||||||
|  |         pushebx         equ     dword ptr[esp+NbStack-24] | ||||||
|  |  | ||||||
|  |         chain_length    equ     dword ptr [esp+NbStack-28] | ||||||
|  |         limit           equ     dword ptr [esp+NbStack-32] | ||||||
|  |         best_len        equ     dword ptr [esp+NbStack-36] | ||||||
|  |         window          equ     dword ptr [esp+NbStack-40] | ||||||
|  |         prev            equ     dword ptr [esp+NbStack-44] | ||||||
|  |         scan_start      equ      word ptr [esp+NbStack-48] | ||||||
|  |         wmask           equ     dword ptr [esp+NbStack-52] | ||||||
|  |         match_start_ptr equ     dword ptr [esp+NbStack-56] | ||||||
|  |         nice_match      equ     dword ptr [esp+NbStack-60] | ||||||
|  |         scan            equ     dword ptr [esp+NbStack-64] | ||||||
|  |  | ||||||
|  |         windowlen       equ     dword ptr [esp+NbStack-68] | ||||||
|  |         match_start     equ     dword ptr [esp+NbStack-72] | ||||||
|  |         strend          equ     dword ptr [esp+NbStack-76] | ||||||
|  |         NbStackAdd      equ     (NbStack-24) | ||||||
|  |  | ||||||
|  |     .386p | ||||||
|  |  | ||||||
|  |     name    gvmatch | ||||||
|  |     .MODEL  FLAT | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ;  all the +4 offsets are due to the addition of pending_buf_size (in zlib | ||||||
|  | ;  in the deflate_state structure since the asm code was first written | ||||||
|  | ;  (if you compile with zlib 1.0.4 or older, remove the +4). | ||||||
|  | ;  Note : these value are good with a 8 bytes boundary pack structure | ||||||
|  |     dep_chain_length    equ     70h+4 | ||||||
|  |     dep_window          equ     2ch+4 | ||||||
|  |     dep_strstart        equ     60h+4 | ||||||
|  |     dep_prev_length     equ     6ch+4 | ||||||
|  |     dep_nice_match      equ     84h+4 | ||||||
|  |     dep_w_size          equ     20h+4 | ||||||
|  |     dep_prev            equ     34h+4 | ||||||
|  |     dep_w_mask          equ     28h+4 | ||||||
|  |     dep_good_match      equ     80h+4 | ||||||
|  |     dep_match_start     equ     64h+4 | ||||||
|  |     dep_lookahead       equ     68h+4 | ||||||
|  |  | ||||||
|  |  | ||||||
|  | _TEXT                   segment | ||||||
|  |  | ||||||
|  | IFDEF NOUNDERLINE | ||||||
|  |                         public  longest_match_7fff | ||||||
|  |                         public  longest_match_686 | ||||||
|  | ;                        public  match_init | ||||||
|  | ELSE | ||||||
|  |                         public  _longest_match_7fff | ||||||
|  |                         public  _longest_match_686 | ||||||
|  | ;                        public  _match_init | ||||||
|  | ENDIF | ||||||
|  |  | ||||||
|  |     MAX_MATCH           equ     258 | ||||||
|  |     MIN_MATCH           equ     3 | ||||||
|  |     MIN_LOOKAHEAD       equ     (MAX_MATCH+MIN_MATCH+1) | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | IFDEF NOUNDERLINE | ||||||
|  | ;match_init      proc near | ||||||
|  | ;                ret | ||||||
|  | ;match_init      endp | ||||||
|  | ELSE | ||||||
|  | ;_match_init     proc near | ||||||
|  | ;                ret | ||||||
|  | ;_match_init     endp | ||||||
|  | ENDIF | ||||||
|  |  | ||||||
|  |  | ||||||
|  | IFDEF NOUNDERLINE | ||||||
|  | longest_match_7fff   proc near | ||||||
|  | ELSE | ||||||
|  | _longest_match_7fff  proc near | ||||||
|  | ENDIF | ||||||
|  |  | ||||||
|  |         mov     edx,[esp+4] | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |         push    ebp | ||||||
|  |         push    edi | ||||||
|  |         push    esi | ||||||
|  |         push    ebx | ||||||
|  |  | ||||||
|  |         sub     esp,NbStackAdd | ||||||
|  |  | ||||||
|  | ; initialize or check the variables used in match.asm. | ||||||
|  |         mov     ebp,edx | ||||||
|  |  | ||||||
|  | ; chain_length = s->max_chain_length | ||||||
|  | ; if (prev_length>=good_match) chain_length >>= 2 | ||||||
|  |         mov     edx,[ebp+dep_chain_length] | ||||||
|  |         mov     ebx,[ebp+dep_prev_length] | ||||||
|  |         cmp     [ebp+dep_good_match],ebx | ||||||
|  |         ja      noshr | ||||||
|  |         shr     edx,2 | ||||||
|  | noshr: | ||||||
|  | ; we increment chain_length because in the asm, the --chain_lenght is in the beginning of the loop | ||||||
|  |         inc     edx | ||||||
|  |         mov     edi,[ebp+dep_nice_match] | ||||||
|  |         mov     chain_length,edx | ||||||
|  |         mov     eax,[ebp+dep_lookahead] | ||||||
|  |         cmp     eax,edi | ||||||
|  | ; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; | ||||||
|  |         jae     nolookaheadnicematch | ||||||
|  |         mov     edi,eax | ||||||
|  | nolookaheadnicematch: | ||||||
|  | ; best_len = s->prev_length | ||||||
|  |         mov     best_len,ebx | ||||||
|  |  | ||||||
|  | ; window = s->window | ||||||
|  |         mov     esi,[ebp+dep_window] | ||||||
|  |         mov     ecx,[ebp+dep_strstart] | ||||||
|  |         mov     window,esi | ||||||
|  |  | ||||||
|  |         mov     nice_match,edi | ||||||
|  | ; scan = window + strstart | ||||||
|  |         add     esi,ecx | ||||||
|  |         mov     scan,esi | ||||||
|  | ; dx = *window | ||||||
|  |         mov     dx,word ptr [esi] | ||||||
|  | ; bx = *(window+best_len-1) | ||||||
|  |         mov     bx,word ptr [esi+ebx-1] | ||||||
|  |         add     esi,MAX_MATCH-1 | ||||||
|  | ; scan_start = *scan | ||||||
|  |         mov     scan_start,dx | ||||||
|  | ; strend = scan + MAX_MATCH-1 | ||||||
|  |         mov     strend,esi | ||||||
|  | ; bx = scan_end = *(window+best_len-1) | ||||||
|  |  | ||||||
|  | ;    IPos limit = s->strstart > (IPos)MAX_DIST(s) ? | ||||||
|  | ;        s->strstart - (IPos)MAX_DIST(s) : NIL; | ||||||
|  |  | ||||||
|  |         mov     esi,[ebp+dep_w_size] | ||||||
|  |         sub     esi,MIN_LOOKAHEAD | ||||||
|  | ; here esi = MAX_DIST(s) | ||||||
|  |         sub     ecx,esi | ||||||
|  |         ja      nodist | ||||||
|  |         xor     ecx,ecx | ||||||
|  | nodist: | ||||||
|  |         mov     limit,ecx | ||||||
|  |  | ||||||
|  | ; prev = s->prev | ||||||
|  |         mov     edx,[ebp+dep_prev] | ||||||
|  |         mov     prev,edx | ||||||
|  |  | ||||||
|  | ; | ||||||
|  |         mov     edx,dword ptr [ebp+dep_match_start] | ||||||
|  |         mov     bp,scan_start | ||||||
|  |         mov     eax,cur_match | ||||||
|  |         mov     match_start,edx | ||||||
|  |  | ||||||
|  |         mov     edx,window | ||||||
|  |         mov     edi,edx | ||||||
|  |         add     edi,best_len | ||||||
|  |         mov     esi,prev | ||||||
|  |         dec     edi | ||||||
|  | ; windowlen = window + best_len -1 | ||||||
|  |         mov     windowlen,edi | ||||||
|  |  | ||||||
|  |         jmp     beginloop2 | ||||||
|  |         align   4 | ||||||
|  |  | ||||||
|  | ; here, in the loop | ||||||
|  | ;       eax = ax = cur_match | ||||||
|  | ;       ecx = limit | ||||||
|  | ;        bx = scan_end | ||||||
|  | ;        bp = scan_start | ||||||
|  | ;       edi = windowlen (window + best_len -1) | ||||||
|  | ;       esi = prev | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ;// here; chain_length <=16 | ||||||
|  | normalbeg0add16: | ||||||
|  |         add     chain_length,16 | ||||||
|  |         jz      exitloop | ||||||
|  | normalbeg0: | ||||||
|  |         cmp     word ptr[edi+eax],bx | ||||||
|  |         je      normalbeg2noroll | ||||||
|  | rcontlabnoroll: | ||||||
|  | ; cur_match = prev[cur_match & wmask] | ||||||
|  |         and     eax,7fffh | ||||||
|  |         mov     ax,word ptr[esi+eax*2] | ||||||
|  | ; if cur_match > limit, go to exitloop | ||||||
|  |         cmp     ecx,eax | ||||||
|  |         jnb     exitloop | ||||||
|  | ; if --chain_length != 0, go to exitloop | ||||||
|  |         dec     chain_length | ||||||
|  |         jnz     normalbeg0 | ||||||
|  |         jmp     exitloop | ||||||
|  |  | ||||||
|  | normalbeg2noroll: | ||||||
|  | ; if (scan_start==*(cur_match+window)) goto normalbeg2 | ||||||
|  |         cmp     bp,word ptr[edx+eax] | ||||||
|  |         jne     rcontlabnoroll | ||||||
|  |         jmp     normalbeg2 | ||||||
|  |  | ||||||
|  | contloop3: | ||||||
|  |         mov     edi,windowlen | ||||||
|  |  | ||||||
|  | ; cur_match = prev[cur_match & wmask] | ||||||
|  |         and     eax,7fffh | ||||||
|  |         mov     ax,word ptr[esi+eax*2] | ||||||
|  | ; if cur_match > limit, go to exitloop | ||||||
|  |         cmp     ecx,eax | ||||||
|  | jnbexitloopshort1: | ||||||
|  |         jnb     exitloop | ||||||
|  | ; if --chain_length != 0, go to exitloop | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ; begin the main loop | ||||||
|  | beginloop2: | ||||||
|  |         sub     chain_length,16+1 | ||||||
|  | ; if chain_length <=16, don't use the unrolled loop | ||||||
|  |         jna     normalbeg0add16 | ||||||
|  |  | ||||||
|  | do16: | ||||||
|  |         cmp     word ptr[edi+eax],bx | ||||||
|  |         je      normalbeg2dc0 | ||||||
|  |  | ||||||
|  | maccn   MACRO   lab | ||||||
|  |         and     eax,7fffh | ||||||
|  |         mov     ax,word ptr[esi+eax*2] | ||||||
|  |         cmp     ecx,eax | ||||||
|  |         jnb     exitloop | ||||||
|  |         cmp     word ptr[edi+eax],bx | ||||||
|  |         je      lab | ||||||
|  |         ENDM | ||||||
|  |  | ||||||
|  | rcontloop0: | ||||||
|  |         maccn   normalbeg2dc1 | ||||||
|  |  | ||||||
|  | rcontloop1: | ||||||
|  |         maccn   normalbeg2dc2 | ||||||
|  |  | ||||||
|  | rcontloop2: | ||||||
|  |         maccn   normalbeg2dc3 | ||||||
|  |  | ||||||
|  | rcontloop3: | ||||||
|  |         maccn   normalbeg2dc4 | ||||||
|  |  | ||||||
|  | rcontloop4: | ||||||
|  |         maccn   normalbeg2dc5 | ||||||
|  |  | ||||||
|  | rcontloop5: | ||||||
|  |         maccn   normalbeg2dc6 | ||||||
|  |  | ||||||
|  | rcontloop6: | ||||||
|  |         maccn   normalbeg2dc7 | ||||||
|  |  | ||||||
|  | rcontloop7: | ||||||
|  |         maccn   normalbeg2dc8 | ||||||
|  |  | ||||||
|  | rcontloop8: | ||||||
|  |         maccn   normalbeg2dc9 | ||||||
|  |  | ||||||
|  | rcontloop9: | ||||||
|  |         maccn   normalbeg2dc10 | ||||||
|  |  | ||||||
|  | rcontloop10: | ||||||
|  |         maccn   short normalbeg2dc11 | ||||||
|  |  | ||||||
|  | rcontloop11: | ||||||
|  |         maccn   short normalbeg2dc12 | ||||||
|  |  | ||||||
|  | rcontloop12: | ||||||
|  |         maccn   short normalbeg2dc13 | ||||||
|  |  | ||||||
|  | rcontloop13: | ||||||
|  |         maccn   short normalbeg2dc14 | ||||||
|  |  | ||||||
|  | rcontloop14: | ||||||
|  |         maccn   short normalbeg2dc15 | ||||||
|  |  | ||||||
|  | rcontloop15: | ||||||
|  |         and     eax,7fffh | ||||||
|  |         mov     ax,word ptr[esi+eax*2] | ||||||
|  |         cmp     ecx,eax | ||||||
|  |         jnb     exitloop | ||||||
|  |  | ||||||
|  |         sub     chain_length,16 | ||||||
|  |         ja      do16 | ||||||
|  |         jmp     normalbeg0add16 | ||||||
|  |  | ||||||
|  | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||||||
|  |  | ||||||
|  | normbeg MACRO   rcontlab,valsub | ||||||
|  | ; if we are here, we know that *(match+best_len-1) == scan_end | ||||||
|  |         cmp     bp,word ptr[edx+eax] | ||||||
|  | ; if (match != scan_start) goto rcontlab | ||||||
|  |         jne     rcontlab | ||||||
|  | ; calculate the good chain_length, and we'll compare scan and match string | ||||||
|  |         add     chain_length,16-valsub | ||||||
|  |         jmp     iseq | ||||||
|  |         ENDM | ||||||
|  |  | ||||||
|  |  | ||||||
|  | normalbeg2dc11: | ||||||
|  |         normbeg rcontloop11,11 | ||||||
|  |  | ||||||
|  | normalbeg2dc12: | ||||||
|  |         normbeg short rcontloop12,12 | ||||||
|  |  | ||||||
|  | normalbeg2dc13: | ||||||
|  |         normbeg short rcontloop13,13 | ||||||
|  |  | ||||||
|  | normalbeg2dc14: | ||||||
|  |         normbeg short rcontloop14,14 | ||||||
|  |  | ||||||
|  | normalbeg2dc15: | ||||||
|  |         normbeg short rcontloop15,15 | ||||||
|  |  | ||||||
|  | normalbeg2dc10: | ||||||
|  |         normbeg rcontloop10,10 | ||||||
|  |  | ||||||
|  | normalbeg2dc9: | ||||||
|  |         normbeg rcontloop9,9 | ||||||
|  |  | ||||||
|  | normalbeg2dc8: | ||||||
|  |         normbeg rcontloop8,8 | ||||||
|  |  | ||||||
|  | normalbeg2dc7: | ||||||
|  |         normbeg rcontloop7,7 | ||||||
|  |  | ||||||
|  | normalbeg2dc6: | ||||||
|  |         normbeg rcontloop6,6 | ||||||
|  |  | ||||||
|  | normalbeg2dc5: | ||||||
|  |         normbeg rcontloop5,5 | ||||||
|  |  | ||||||
|  | normalbeg2dc4: | ||||||
|  |         normbeg rcontloop4,4 | ||||||
|  |  | ||||||
|  | normalbeg2dc3: | ||||||
|  |         normbeg rcontloop3,3 | ||||||
|  |  | ||||||
|  | normalbeg2dc2: | ||||||
|  |         normbeg rcontloop2,2 | ||||||
|  |  | ||||||
|  | normalbeg2dc1: | ||||||
|  |         normbeg rcontloop1,1 | ||||||
|  |  | ||||||
|  | normalbeg2dc0: | ||||||
|  |         normbeg rcontloop0,0 | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ; we go in normalbeg2 because *(ushf*)(match+best_len-1) == scan_end | ||||||
|  |  | ||||||
|  | normalbeg2: | ||||||
|  |         mov     edi,window | ||||||
|  |  | ||||||
|  |         cmp     bp,word ptr[edi+eax] | ||||||
|  |         jne     contloop3                   ; if *(ushf*)match != scan_start, continue | ||||||
|  |  | ||||||
|  | iseq: | ||||||
|  | ; if we are here, we know that *(match+best_len-1) == scan_end | ||||||
|  | ; and (match == scan_start) | ||||||
|  |  | ||||||
|  |         mov     edi,edx | ||||||
|  |         mov     esi,scan                    ; esi = scan | ||||||
|  |         add     edi,eax                     ; edi = window + cur_match = match | ||||||
|  |  | ||||||
|  |         mov     edx,[esi+3]                 ; compare manually dword at match+3 | ||||||
|  |         xor     edx,[edi+3]                 ; and scan +3 | ||||||
|  |  | ||||||
|  |         jz      begincompare                ; if equal, go to long compare | ||||||
|  |  | ||||||
|  | ; we will determine the unmatch byte and calculate len (in esi) | ||||||
|  |         or      dl,dl | ||||||
|  |         je      eq1rr | ||||||
|  |         mov     esi,3 | ||||||
|  |         jmp     trfinval | ||||||
|  | eq1rr: | ||||||
|  |         or      dx,dx | ||||||
|  |         je      eq1 | ||||||
|  |  | ||||||
|  |         mov     esi,4 | ||||||
|  |         jmp     trfinval | ||||||
|  | eq1: | ||||||
|  |         and     edx,0ffffffh | ||||||
|  |         jz      eq11 | ||||||
|  |         mov     esi,5 | ||||||
|  |         jmp     trfinval | ||||||
|  | eq11: | ||||||
|  |         mov     esi,6 | ||||||
|  |         jmp     trfinval | ||||||
|  |  | ||||||
|  | begincompare: | ||||||
|  |         ; here we now scan and match begin same | ||||||
|  |         add     edi,6 | ||||||
|  |         add     esi,6 | ||||||
|  |         mov     ecx,(MAX_MATCH-(2+4))/4     ; scan for at most MAX_MATCH bytes | ||||||
|  |         repe    cmpsd                       ; loop until mismatch | ||||||
|  |  | ||||||
|  |         je      trfin                       ; go to trfin if not unmatch | ||||||
|  | ; we determine the unmatch byte | ||||||
|  |         sub     esi,4 | ||||||
|  |         mov     edx,[edi-4] | ||||||
|  |         xor     edx,[esi] | ||||||
|  |  | ||||||
|  |         or      dl,dl | ||||||
|  |         jnz     trfin | ||||||
|  |         inc     esi | ||||||
|  |  | ||||||
|  |         or      dx,dx | ||||||
|  |         jnz     trfin | ||||||
|  |         inc     esi | ||||||
|  |  | ||||||
|  |         and     edx,0ffffffh | ||||||
|  |         jnz     trfin | ||||||
|  |         inc     esi | ||||||
|  |  | ||||||
|  | trfin: | ||||||
|  |         sub     esi,scan          ; esi = len | ||||||
|  | trfinval: | ||||||
|  | ; here we have finised compare, and esi contain len of equal string | ||||||
|  |         cmp     esi,best_len        ; if len > best_len, go newbestlen | ||||||
|  |         ja      short newbestlen | ||||||
|  | ; now we restore edx, ecx and esi, for the big loop | ||||||
|  |         mov     esi,prev | ||||||
|  |         mov     ecx,limit | ||||||
|  |         mov     edx,window | ||||||
|  |         jmp     contloop3 | ||||||
|  |  | ||||||
|  | newbestlen: | ||||||
|  |         mov     best_len,esi        ; len become best_len | ||||||
|  |  | ||||||
|  |         mov     match_start,eax     ; save new position as match_start | ||||||
|  |         cmp     esi,nice_match      ; if best_len >= nice_match, exit | ||||||
|  |         jae     exitloop | ||||||
|  |         mov     ecx,scan | ||||||
|  |         mov     edx,window          ; restore edx=window | ||||||
|  |         add     ecx,esi | ||||||
|  |         add     esi,edx | ||||||
|  |  | ||||||
|  |         dec     esi | ||||||
|  |         mov     windowlen,esi       ; windowlen = window + best_len-1 | ||||||
|  |         mov     bx,[ecx-1]          ; bx = *(scan+best_len-1) = scan_end | ||||||
|  |  | ||||||
|  | ; now we restore ecx and esi, for the big loop : | ||||||
|  |         mov     esi,prev | ||||||
|  |         mov     ecx,limit | ||||||
|  |         jmp     contloop3 | ||||||
|  |  | ||||||
|  | exitloop: | ||||||
|  | ; exit : s->match_start=match_start | ||||||
|  |         mov     ebx,match_start | ||||||
|  |         mov     ebp,str_s | ||||||
|  |         mov     ecx,best_len | ||||||
|  |         mov     dword ptr [ebp+dep_match_start],ebx         | ||||||
|  |         mov     eax,dword ptr [ebp+dep_lookahead] | ||||||
|  |         cmp     ecx,eax | ||||||
|  |         ja      minexlo | ||||||
|  |         mov     eax,ecx | ||||||
|  | minexlo: | ||||||
|  | ; return min(best_len,s->lookahead) | ||||||
|  |          | ||||||
|  | ; restore stack and register ebx,esi,edi,ebp | ||||||
|  |         add     esp,NbStackAdd | ||||||
|  |  | ||||||
|  |         pop     ebx | ||||||
|  |         pop     esi | ||||||
|  |         pop     edi | ||||||
|  |         pop     ebp | ||||||
|  |         ret | ||||||
|  | InfoAuthor: | ||||||
|  | ; please don't remove this string ! | ||||||
|  | ; Your are free use gvmat32 in any fre or commercial apps if you don't remove the string in the binary! | ||||||
|  |         db     0dh,0ah,"GVMat32 optimised assembly code written 1996-98 by Gilles Vollant",0dh,0ah | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | IFDEF NOUNDERLINE | ||||||
|  | longest_match_7fff   endp | ||||||
|  | ELSE | ||||||
|  | _longest_match_7fff  endp | ||||||
|  | ENDIF | ||||||
|  |  | ||||||
|  |  | ||||||
|  | IFDEF NOUNDERLINE | ||||||
|  | cpudetect32     proc near | ||||||
|  | ELSE | ||||||
|  | _cpudetect32    proc near | ||||||
|  | ENDIF | ||||||
|  |  | ||||||
|  | 	push	ebx | ||||||
|  |  | ||||||
|  | 	pushfd                  ; push original EFLAGS | ||||||
|  | 	pop     eax             ; get original EFLAGS | ||||||
|  | 	mov     ecx, eax        ; save original EFLAGS | ||||||
|  | 	xor     eax, 40000h     ; flip AC bit in EFLAGS | ||||||
|  | 	push    eax             ; save new EFLAGS value on stack | ||||||
|  | 	popfd                   ; replace current EFLAGS value | ||||||
|  | 	pushfd                  ; get new EFLAGS | ||||||
|  | 	pop     eax             ; store new EFLAGS in EAX | ||||||
|  | 	xor     eax, ecx        ; can<61>t toggle AC bit, processor=80386 | ||||||
|  | 	jz      end_cpu_is_386  ; jump if 80386 processor | ||||||
|  | 	push    ecx | ||||||
|  | 	popfd                   ; restore AC bit in EFLAGS first | ||||||
|  |  | ||||||
|  | 	pushfd | ||||||
|  | 	pushfd | ||||||
|  | 	pop     ecx | ||||||
|  | 			 | ||||||
|  | 	mov     eax, ecx        ; get original EFLAGS | ||||||
|  | 	xor     eax, 200000h    ; flip ID bit in EFLAGS | ||||||
|  | 	push    eax             ; save new EFLAGS value on stack | ||||||
|  | 	popfd                   ; replace current EFLAGS value | ||||||
|  | 	pushfd                  ; get new EFLAGS | ||||||
|  | 	pop		eax	            ; store new EFLAGS in EAX | ||||||
|  | 	popfd                   ; restore original EFLAGS | ||||||
|  | 	xor		eax, ecx        ; can<61>t toggle ID bit, | ||||||
|  | 	je		is_old_486		; processor=old | ||||||
|  |  | ||||||
|  | 	mov     eax,1 | ||||||
|  | 	db      0fh,0a2h        ;CPUID    | ||||||
|  |  | ||||||
|  | exitcpudetect: | ||||||
|  | 	pop	ebx | ||||||
|  | 	ret | ||||||
|  |  | ||||||
|  | end_cpu_is_386: | ||||||
|  | 	mov     eax,0300h | ||||||
|  | 	jmp     exitcpudetect | ||||||
|  |  | ||||||
|  | is_old_486: | ||||||
|  | 	mov     eax,0400h | ||||||
|  | 	jmp     exitcpudetect | ||||||
|  |  | ||||||
|  | IFDEF NOUNDERLINE | ||||||
|  | cpudetect32     endp | ||||||
|  | ELSE | ||||||
|  | _cpudetect32    endp | ||||||
|  | ENDIF | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | MAX_MATCH       equ     258 | ||||||
|  | MIN_MATCH       equ     3 | ||||||
|  | MIN_LOOKAHEAD   equ     (MAX_MATCH + MIN_MATCH + 1) | ||||||
|  | MAX_MATCH_8_     equ     ((MAX_MATCH + 7) AND 0FFF0h) | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ;;; stack frame offsets | ||||||
|  |  | ||||||
|  | chainlenwmask	equ  esp + 0	; high word: current chain len | ||||||
|  | 					; low word: s->wmask | ||||||
|  | window		equ  esp + 4	; local copy of s->window | ||||||
|  | windowbestlen	equ  esp + 8	; s->window + bestlen | ||||||
|  | scanstart	equ  esp + 16	; first two bytes of string | ||||||
|  | scanend		equ  esp + 12	; last two bytes of string | ||||||
|  | scanalign	equ  esp + 20	; dword-misalignment of string | ||||||
|  | nicematch	equ  esp + 24	; a good enough match size | ||||||
|  | bestlen		equ  esp + 28	; size of best match so far | ||||||
|  | scan		equ  esp + 32	; ptr to string wanting match | ||||||
|  |  | ||||||
|  | LocalVarsSize	equ 36 | ||||||
|  | ;	saved ebx	byte esp + 36 | ||||||
|  | ;	saved edi	byte esp + 40 | ||||||
|  | ;	saved esi	byte esp + 44 | ||||||
|  | ;	saved ebp	byte esp + 48 | ||||||
|  | ;	return address	byte esp + 52 | ||||||
|  | deflatestate	equ  esp + 56	; the function arguments | ||||||
|  | curmatch	equ  esp + 60 | ||||||
|  |  | ||||||
|  | ;;; Offsets for fields in the deflate_state structure. These numbers | ||||||
|  | ;;; are calculated from the definition of deflate_state, with the | ||||||
|  | ;;; assumption that the compiler will dword-align the fields. (Thus, | ||||||
|  | ;;; changing the definition of deflate_state could easily cause this | ||||||
|  | ;;; program to crash horribly, without so much as a warning at | ||||||
|  | ;;; compile time. Sigh.) | ||||||
|  |  | ||||||
|  | dsWSize		equ 36 | ||||||
|  | dsWMask		equ 44 | ||||||
|  | dsWindow	equ 48 | ||||||
|  | dsPrev		equ 56 | ||||||
|  | dsMatchLen	equ 88 | ||||||
|  | dsPrevMatch	equ 92 | ||||||
|  | dsStrStart	equ 100 | ||||||
|  | dsMatchStart	equ 104 | ||||||
|  | dsLookahead	equ 108 | ||||||
|  | dsPrevLen	equ 112 | ||||||
|  | dsMaxChainLen	equ 116 | ||||||
|  | dsGoodMatch	equ 132 | ||||||
|  | dsNiceMatch	equ 136 | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ;;; match.asm -- Pentium-Pro-optimized version of longest_match() | ||||||
|  | ;;; Written for zlib 1.1.2 | ||||||
|  | ;;; Copyright (C) 1998 Brian Raiter <breadbox@muppetlabs.com> | ||||||
|  | ;;; You can look at http://www.muppetlabs.com/~breadbox/software/assembly.html | ||||||
|  | ;;; | ||||||
|  | ;;; This is free software; you can redistribute it and/or modify it | ||||||
|  | ;;; under the terms of the GNU General Public License. | ||||||
|  |  | ||||||
|  | ;GLOBAL	_longest_match, _match_init | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ;SECTION	.text | ||||||
|  |  | ||||||
|  | ;;; uInt longest_match(deflate_state *deflatestate, IPos curmatch) | ||||||
|  |  | ||||||
|  | ;_longest_match: | ||||||
|  | IFDEF NOUNDERLINE | ||||||
|  | longest_match_686   proc near | ||||||
|  | ELSE | ||||||
|  | _longest_match_686  proc near | ||||||
|  | ENDIF | ||||||
|  |  | ||||||
|  |  | ||||||
|  | ;;; Save registers that the compiler may be using, and adjust esp to | ||||||
|  | ;;; make room for our stack frame. | ||||||
|  |  | ||||||
|  | 		push	ebp | ||||||
|  | 		push	edi | ||||||
|  | 		push	esi | ||||||
|  | 		push	ebx | ||||||
|  | 		sub	esp, LocalVarsSize | ||||||
|  |  | ||||||
|  | ;;; Retrieve the function arguments. ecx will hold cur_match | ||||||
|  | ;;; throughout the entire function. edx will hold the pointer to the | ||||||
|  | ;;; deflate_state structure during the function's setup (before | ||||||
|  | ;;; entering the main loop. | ||||||
|  |  | ||||||
|  | 		mov	edx, [deflatestate] | ||||||
|  | 		mov	ecx, [curmatch] | ||||||
|  |  | ||||||
|  | ;;; uInt wmask = s->w_mask; | ||||||
|  | ;;; unsigned chain_length = s->max_chain_length; | ||||||
|  | ;;; if (s->prev_length >= s->good_match) { | ||||||
|  | ;;;     chain_length >>= 2; | ||||||
|  | ;;; } | ||||||
|  |  | ||||||
|  | 		mov	eax, [edx + dsPrevLen] | ||||||
|  | 		mov	ebx, [edx + dsGoodMatch] | ||||||
|  | 		cmp	eax, ebx | ||||||
|  | 		mov	eax, [edx + dsWMask] | ||||||
|  | 		mov	ebx, [edx + dsMaxChainLen] | ||||||
|  | 		jl	LastMatchGood | ||||||
|  | 		shr	ebx, 2 | ||||||
|  | LastMatchGood: | ||||||
|  |  | ||||||
|  | ;;; chainlen is decremented once beforehand so that the function can | ||||||
|  | ;;; use the sign flag instead of the zero flag for the exit test. | ||||||
|  | ;;; It is then shifted into the high word, to make room for the wmask | ||||||
|  | ;;; value, which it will always accompany. | ||||||
|  |  | ||||||
|  | 		dec	ebx | ||||||
|  | 		shl	ebx, 16 | ||||||
|  | 		or	ebx, eax | ||||||
|  | 		mov	[chainlenwmask], ebx | ||||||
|  |  | ||||||
|  | ;;; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; | ||||||
|  |  | ||||||
|  | 		mov	eax, [edx + dsNiceMatch] | ||||||
|  | 		mov	ebx, [edx + dsLookahead] | ||||||
|  | 		cmp	ebx, eax | ||||||
|  | 		jl	LookaheadLess | ||||||
|  | 		mov	ebx, eax | ||||||
|  | LookaheadLess:	mov	[nicematch], ebx | ||||||
|  |  | ||||||
|  | ;;; register Bytef *scan = s->window + s->strstart; | ||||||
|  |  | ||||||
|  | 		mov	esi, [edx + dsWindow] | ||||||
|  | 		mov	[window], esi | ||||||
|  | 		mov	ebp, [edx + dsStrStart] | ||||||
|  | 		lea	edi, [esi + ebp] | ||||||
|  | 		mov	[scan], edi | ||||||
|  |  | ||||||
|  | ;;; Determine how many bytes the scan ptr is off from being | ||||||
|  | ;;; dword-aligned. | ||||||
|  |  | ||||||
|  | 		mov	eax, edi | ||||||
|  | 		neg	eax | ||||||
|  | 		and	eax, 3 | ||||||
|  | 		mov	[scanalign], eax | ||||||
|  |  | ||||||
|  | ;;; IPos limit = s->strstart > (IPos)MAX_DIST(s) ? | ||||||
|  | ;;;     s->strstart - (IPos)MAX_DIST(s) : NIL; | ||||||
|  |  | ||||||
|  | 		mov	eax, [edx + dsWSize] | ||||||
|  | 		sub	eax, MIN_LOOKAHEAD | ||||||
|  | 		sub	ebp, eax | ||||||
|  | 		jg	LimitPositive | ||||||
|  | 		xor	ebp, ebp | ||||||
|  | LimitPositive: | ||||||
|  |  | ||||||
|  | ;;; int best_len = s->prev_length; | ||||||
|  |  | ||||||
|  | 		mov	eax, [edx + dsPrevLen] | ||||||
|  | 		mov	[bestlen], eax | ||||||
|  |  | ||||||
|  | ;;; Store the sum of s->window + best_len in esi locally, and in esi. | ||||||
|  |  | ||||||
|  | 		add	esi, eax | ||||||
|  | 		mov	[windowbestlen], esi | ||||||
|  |  | ||||||
|  | ;;; register ush scan_start = *(ushf*)scan; | ||||||
|  | ;;; register ush scan_end   = *(ushf*)(scan+best_len-1); | ||||||
|  | ;;; Posf *prev = s->prev; | ||||||
|  |  | ||||||
|  | 		movzx	ebx, word ptr [edi] | ||||||
|  | 		mov	[scanstart], ebx | ||||||
|  | 		movzx	ebx, word ptr [edi + eax - 1] | ||||||
|  | 		mov	[scanend], ebx | ||||||
|  | 		mov	edi, [edx + dsPrev] | ||||||
|  |  | ||||||
|  | ;;; Jump into the main loop. | ||||||
|  |  | ||||||
|  | 		mov	edx, [chainlenwmask] | ||||||
|  | 		jmp	short LoopEntry | ||||||
|  |  | ||||||
|  | align 4 | ||||||
|  |  | ||||||
|  | ;;; do { | ||||||
|  | ;;;     match = s->window + cur_match; | ||||||
|  | ;;;     if (*(ushf*)(match+best_len-1) != scan_end || | ||||||
|  | ;;;         *(ushf*)match != scan_start) continue; | ||||||
|  | ;;;     [...] | ||||||
|  | ;;; } while ((cur_match = prev[cur_match & wmask]) > limit | ||||||
|  | ;;;          && --chain_length != 0); | ||||||
|  | ;;; | ||||||
|  | ;;; Here is the inner loop of the function. The function will spend the | ||||||
|  | ;;; majority of its time in this loop, and majority of that time will | ||||||
|  | ;;; be spent in the first ten instructions. | ||||||
|  | ;;; | ||||||
|  | ;;; Within this loop: | ||||||
|  | ;;; ebx = scanend | ||||||
|  | ;;; ecx = curmatch | ||||||
|  | ;;; edx = chainlenwmask - i.e., ((chainlen << 16) | wmask) | ||||||
|  | ;;; esi = windowbestlen - i.e., (window + bestlen) | ||||||
|  | ;;; edi = prev | ||||||
|  | ;;; ebp = limit | ||||||
|  |  | ||||||
|  | LookupLoop: | ||||||
|  | 		and	ecx, edx | ||||||
|  | 		movzx	ecx, word ptr [edi + ecx*2] | ||||||
|  | 		cmp	ecx, ebp | ||||||
|  | 		jbe	LeaveNow | ||||||
|  | 		sub	edx, 00010000h | ||||||
|  | 		js	LeaveNow | ||||||
|  | LoopEntry:	movzx	eax, word ptr [esi + ecx - 1] | ||||||
|  | 		cmp	eax, ebx | ||||||
|  | 		jnz	LookupLoop | ||||||
|  | 		mov	eax, [window] | ||||||
|  | 		movzx	eax, word ptr [eax + ecx] | ||||||
|  | 		cmp	eax, [scanstart] | ||||||
|  | 		jnz	LookupLoop | ||||||
|  |  | ||||||
|  | ;;; Store the current value of chainlen. | ||||||
|  |  | ||||||
|  | 		mov	[chainlenwmask], edx | ||||||
|  |  | ||||||
|  | ;;; Point edi to the string under scrutiny, and esi to the string we | ||||||
|  | ;;; are hoping to match it up with. In actuality, esi and edi are | ||||||
|  | ;;; both pointed (MAX_MATCH_8 - scanalign) bytes ahead, and edx is | ||||||
|  | ;;; initialized to -(MAX_MATCH_8 - scanalign). | ||||||
|  |  | ||||||
|  | 		mov	esi, [window] | ||||||
|  | 		mov	edi, [scan] | ||||||
|  | 		add	esi, ecx | ||||||
|  | 		mov	eax, [scanalign] | ||||||
|  | 		mov	edx, 0fffffef8h; -(MAX_MATCH_8) | ||||||
|  | 		lea	edi, [edi + eax + 0108h] ;MAX_MATCH_8] | ||||||
|  | 		lea	esi, [esi + eax + 0108h] ;MAX_MATCH_8] | ||||||
|  |  | ||||||
|  | ;;; Test the strings for equality, 8 bytes at a time. At the end, | ||||||
|  | ;;; adjust edx so that it is offset to the exact byte that mismatched. | ||||||
|  | ;;; | ||||||
|  | ;;; We already know at this point that the first three bytes of the | ||||||
|  | ;;; strings match each other, and they can be safely passed over before | ||||||
|  | ;;; starting the compare loop. So what this code does is skip over 0-3 | ||||||
|  | ;;; bytes, as much as necessary in order to dword-align the edi | ||||||
|  | ;;; pointer. (esi will still be misaligned three times out of four.) | ||||||
|  | ;;; | ||||||
|  | ;;; It should be confessed that this loop usually does not represent | ||||||
|  | ;;; much of the total running time. Replacing it with a more | ||||||
|  | ;;; straightforward "rep cmpsb" would not drastically degrade | ||||||
|  | ;;; performance. | ||||||
|  |  | ||||||
|  | LoopCmps: | ||||||
|  | 		mov	eax, [esi + edx] | ||||||
|  | 		xor	eax, [edi + edx] | ||||||
|  | 		jnz	LeaveLoopCmps | ||||||
|  | 		mov	eax, [esi + edx + 4] | ||||||
|  | 		xor	eax, [edi + edx + 4] | ||||||
|  | 		jnz	LeaveLoopCmps4 | ||||||
|  | 		add	edx, 8 | ||||||
|  | 		jnz	LoopCmps | ||||||
|  | 		jmp	short LenMaximum | ||||||
|  | LeaveLoopCmps4:	add	edx, 4 | ||||||
|  | LeaveLoopCmps:	test	eax, 0000FFFFh | ||||||
|  | 		jnz	LenLower | ||||||
|  | 		add	edx,  2 | ||||||
|  | 		shr	eax, 16 | ||||||
|  | LenLower:	sub	al, 1 | ||||||
|  | 		adc	edx, 0 | ||||||
|  |  | ||||||
|  | ;;; Calculate the length of the match. If it is longer than MAX_MATCH, | ||||||
|  | ;;; then automatically accept it as the best possible match and leave. | ||||||
|  |  | ||||||
|  | 		lea	eax, [edi + edx] | ||||||
|  | 		mov	edi, [scan] | ||||||
|  | 		sub	eax, edi | ||||||
|  | 		cmp	eax, MAX_MATCH | ||||||
|  | 		jge	LenMaximum | ||||||
|  |  | ||||||
|  | ;;; If the length of the match is not longer than the best match we | ||||||
|  | ;;; have so far, then forget it and return to the lookup loop. | ||||||
|  |  | ||||||
|  | 		mov	edx, [deflatestate] | ||||||
|  | 		mov	ebx, [bestlen] | ||||||
|  | 		cmp	eax, ebx | ||||||
|  | 		jg	LongerMatch | ||||||
|  | 		mov	esi, [windowbestlen] | ||||||
|  | 		mov	edi, [edx + dsPrev] | ||||||
|  | 		mov	ebx, [scanend] | ||||||
|  | 		mov	edx, [chainlenwmask] | ||||||
|  | 		jmp	LookupLoop | ||||||
|  |  | ||||||
|  | ;;;         s->match_start = cur_match; | ||||||
|  | ;;;         best_len = len; | ||||||
|  | ;;;         if (len >= nice_match) break; | ||||||
|  | ;;;         scan_end = *(ushf*)(scan+best_len-1); | ||||||
|  |  | ||||||
|  | LongerMatch:	mov	ebx, [nicematch] | ||||||
|  | 		mov	[bestlen], eax | ||||||
|  | 		mov	[edx + dsMatchStart], ecx | ||||||
|  | 		cmp	eax, ebx | ||||||
|  | 		jge	LeaveNow | ||||||
|  | 		mov	esi, [window] | ||||||
|  | 		add	esi, eax | ||||||
|  | 		mov	[windowbestlen], esi | ||||||
|  | 		movzx	ebx, word ptr [edi + eax - 1] | ||||||
|  | 		mov	edi, [edx + dsPrev] | ||||||
|  | 		mov	[scanend], ebx | ||||||
|  | 		mov	edx, [chainlenwmask] | ||||||
|  | 		jmp	LookupLoop | ||||||
|  |  | ||||||
|  | ;;; Accept the current string, with the maximum possible length. | ||||||
|  |  | ||||||
|  | LenMaximum:	mov	edx, [deflatestate] | ||||||
|  | 		mov	dword ptr [bestlen], MAX_MATCH | ||||||
|  | 		mov	[edx + dsMatchStart], ecx | ||||||
|  |  | ||||||
|  | ;;; if ((uInt)best_len <= s->lookahead) return (uInt)best_len; | ||||||
|  | ;;; return s->lookahead; | ||||||
|  |  | ||||||
|  | LeaveNow: | ||||||
|  | 		mov	edx, [deflatestate] | ||||||
|  | 		mov	ebx, [bestlen] | ||||||
|  | 		mov	eax, [edx + dsLookahead] | ||||||
|  | 		cmp	ebx, eax | ||||||
|  | 		jg	LookaheadRet | ||||||
|  | 		mov	eax, ebx | ||||||
|  | LookaheadRet: | ||||||
|  |  | ||||||
|  | ;;; Restore the stack and return from whence we came. | ||||||
|  |  | ||||||
|  | 		add	esp, LocalVarsSize | ||||||
|  | 		pop	ebx | ||||||
|  | 		pop	esi | ||||||
|  | 		pop	edi | ||||||
|  | 		pop	ebp | ||||||
|  |  | ||||||
|  | 		ret | ||||||
|  | ; please don't remove this string ! | ||||||
|  | ; Your are free use gvmat32 in any fre or commercial apps if you don't remove the string in the binary! | ||||||
|  |         db     0dh,0ah,"asm686 with masm, code optimised assembly code from Brian Raiter, written 1998",0dh,0ah | ||||||
|  |  | ||||||
|  | IFDEF NOUNDERLINE | ||||||
|  | longest_match_686   endp | ||||||
|  | ELSE | ||||||
|  | _longest_match_686  endp | ||||||
|  | ENDIF | ||||||
|  |  | ||||||
|  | _TEXT   ends | ||||||
|  | end | ||||||
							
								
								
									
										
											BIN
										
									
								
								contrib/vstudio/vc70_32/gvmat32.obj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								contrib/vstudio/vc70_32/gvmat32.obj
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										209
									
								
								contrib/vstudio/vc70_32/gvmat32c.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										209
									
								
								contrib/vstudio/vc70_32/gvmat32c.c
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,209 @@ | |||||||
|  | /* gvmat32.c -- C portion of the optimized longest_match for 32 bits x86 | ||||||
|  |  * Copyright (C) 1995-1996 Jean-loup Gailly and Gilles Vollant. | ||||||
|  |  * File written by Gilles Vollant, by modifiying the longest_match | ||||||
|  |  *  from Jean-loup Gailly in deflate.c | ||||||
|  |  *  it prepare all parameters and call the assembly longest_match_gvasm | ||||||
|  |  *  longest_match execute standard C code is wmask != 0x7fff | ||||||
|  |  *     (assembly code is faster with a fixed wmask) | ||||||
|  |  * | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | #include "deflate.h" | ||||||
|  |  | ||||||
|  | #undef FAR | ||||||
|  | //#include <windows.h> | ||||||
|  |  | ||||||
|  | #ifdef ASMV | ||||||
|  | #define NIL 0 | ||||||
|  |  | ||||||
|  | #define UNALIGNED_OK | ||||||
|  |  | ||||||
|  |  | ||||||
|  | /* if your C compiler don't add underline before function name, | ||||||
|  |         define ADD_UNDERLINE_ASMFUNC */ | ||||||
|  | #ifdef ADD_UNDERLINE_ASMFUNC | ||||||
|  | #define longest_match_7fff _longest_match_7fff | ||||||
|  | #define longest_match_686  _longest_match_686 | ||||||
|  | #define cpudetect32        _cpudetect32 | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | void match_init() | ||||||
|  | { | ||||||
|  | } | ||||||
|  |  | ||||||
|  | unsigned long cpudetect32(); | ||||||
|  |  | ||||||
|  | uInt longest_match_c( | ||||||
|  |     deflate_state *s, | ||||||
|  |     IPos cur_match);                             /* current match */ | ||||||
|  |  | ||||||
|  |  | ||||||
|  | uInt longest_match_7fff( | ||||||
|  |     deflate_state *s, | ||||||
|  |     IPos cur_match);                             /* current match */ | ||||||
|  |  | ||||||
|  | uInt longest_match_686( | ||||||
|  |     deflate_state *s, | ||||||
|  |     IPos cur_match);                             /* current match */ | ||||||
|  |  | ||||||
|  | uInt longest_match( | ||||||
|  |     deflate_state *s, | ||||||
|  |     IPos cur_match)                             /* current match */ | ||||||
|  | { | ||||||
|  |     static uInt iIsPPro=2; | ||||||
|  |  | ||||||
|  |     if ((s->w_mask == 0x7fff) && (iIsPPro==0)) | ||||||
|  |         return longest_match_7fff(s,cur_match); | ||||||
|  |  | ||||||
|  |     if (iIsPPro==1) | ||||||
|  |         return longest_match_686(s,cur_match); | ||||||
|  |  | ||||||
|  |     if (iIsPPro==2) | ||||||
|  |         iIsPPro = (((cpudetect32()/0x100)&0xf)>=6) ? 1 : 0; | ||||||
|  |  | ||||||
|  |     return longest_match_c(s,cur_match); | ||||||
|  | } | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  | uInt longest_match_c(s, cur_match) | ||||||
|  |     deflate_state *s; | ||||||
|  |     IPos cur_match;                             /* current match */ | ||||||
|  | { | ||||||
|  |     unsigned chain_length = s->max_chain_length;/* max hash chain length */ | ||||||
|  |     register Bytef *scan = s->window + s->strstart; /* current string */ | ||||||
|  |     register Bytef *match;                       /* matched string */ | ||||||
|  |     register int len;                           /* length of current match */ | ||||||
|  |     int best_len = s->prev_length;              /* best match length so far */ | ||||||
|  |     int nice_match = s->nice_match;             /* stop if match long enough */ | ||||||
|  |     IPos limit = s->strstart > (IPos)MAX_DIST(s) ? | ||||||
|  |         s->strstart - (IPos)MAX_DIST(s) : NIL; | ||||||
|  |     /* Stop when cur_match becomes <= limit. To simplify the code, | ||||||
|  |      * we prevent matches with the string of window index 0. | ||||||
|  |      */ | ||||||
|  |     Posf *prev = s->prev; | ||||||
|  |     uInt wmask = s->w_mask; | ||||||
|  |  | ||||||
|  | #ifdef UNALIGNED_OK | ||||||
|  |     /* Compare two bytes at a time. Note: this is not always beneficial. | ||||||
|  |      * Try with and without -DUNALIGNED_OK to check. | ||||||
|  |      */ | ||||||
|  |     register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1; | ||||||
|  |     register ush scan_start = *(ushf*)scan; | ||||||
|  |     register ush scan_end   = *(ushf*)(scan+best_len-1); | ||||||
|  | #else | ||||||
|  |     register Bytef *strend = s->window + s->strstart + MAX_MATCH; | ||||||
|  |     register Byte scan_end1  = scan[best_len-1]; | ||||||
|  |     register Byte scan_end   = scan[best_len]; | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |     /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16. | ||||||
|  |      * It is easy to get rid of this optimization if necessary. | ||||||
|  |      */ | ||||||
|  |     Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); | ||||||
|  |  | ||||||
|  |     /* Do not waste too much time if we already have a good match: */ | ||||||
|  |     if (s->prev_length >= s->good_match) { | ||||||
|  |         chain_length >>= 2; | ||||||
|  |     } | ||||||
|  |     /* Do not look for matches beyond the end of the input. This is necessary | ||||||
|  |      * to make deflate deterministic. | ||||||
|  |      */ | ||||||
|  |     if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; | ||||||
|  |  | ||||||
|  |     Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); | ||||||
|  |  | ||||||
|  |     do { | ||||||
|  |         Assert(cur_match < s->strstart, "no future"); | ||||||
|  |         match = s->window + cur_match; | ||||||
|  |  | ||||||
|  |         /* Skip to next match if the match length cannot increase | ||||||
|  |          * or if the match length is less than 2: | ||||||
|  |          */ | ||||||
|  | #if (defined(UNALIGNED_OK) && MAX_MATCH == 258) | ||||||
|  |         /* This code assumes sizeof(unsigned short) == 2. Do not use | ||||||
|  |          * UNALIGNED_OK if your compiler uses a different size. | ||||||
|  |          */ | ||||||
|  |         if (*(ushf*)(match+best_len-1) != scan_end || | ||||||
|  |             *(ushf*)match != scan_start) continue; | ||||||
|  |  | ||||||
|  |         /* It is not necessary to compare scan[2] and match[2] since they are | ||||||
|  |          * always equal when the other bytes match, given that the hash keys | ||||||
|  |          * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at | ||||||
|  |          * strstart+3, +5, ... up to strstart+257. We check for insufficient | ||||||
|  |          * lookahead only every 4th comparison; the 128th check will be made | ||||||
|  |          * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is | ||||||
|  |          * necessary to put more guard bytes at the end of the window, or | ||||||
|  |          * to check more often for insufficient lookahead. | ||||||
|  |          */ | ||||||
|  |         Assert(scan[2] == match[2], "scan[2]?"); | ||||||
|  |         scan++, match++; | ||||||
|  |         do { | ||||||
|  |         } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) && | ||||||
|  |                  *(ushf*)(scan+=2) == *(ushf*)(match+=2) && | ||||||
|  |                  *(ushf*)(scan+=2) == *(ushf*)(match+=2) && | ||||||
|  |                  *(ushf*)(scan+=2) == *(ushf*)(match+=2) && | ||||||
|  |                  scan < strend); | ||||||
|  |         /* The funny "do {}" generates better code on most compilers */ | ||||||
|  |  | ||||||
|  |         /* Here, scan <= window+strstart+257 */ | ||||||
|  |         Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); | ||||||
|  |         if (*scan == *match) scan++; | ||||||
|  |  | ||||||
|  |         len = (MAX_MATCH - 1) - (int)(strend-scan); | ||||||
|  |         scan = strend - (MAX_MATCH-1); | ||||||
|  |  | ||||||
|  | #else /* UNALIGNED_OK */ | ||||||
|  |  | ||||||
|  |         if (match[best_len]   != scan_end  || | ||||||
|  |             match[best_len-1] != scan_end1 || | ||||||
|  |             *match            != *scan     || | ||||||
|  |             *++match          != scan[1])      continue; | ||||||
|  |  | ||||||
|  |         /* The check at best_len-1 can be removed because it will be made | ||||||
|  |          * again later. (This heuristic is not always a win.) | ||||||
|  |          * It is not necessary to compare scan[2] and match[2] since they | ||||||
|  |          * are always equal when the other bytes match, given that | ||||||
|  |          * the hash keys are equal and that HASH_BITS >= 8. | ||||||
|  |          */ | ||||||
|  |         scan += 2, match++; | ||||||
|  |         Assert(*scan == *match, "match[2]?"); | ||||||
|  |  | ||||||
|  |         /* We check for insufficient lookahead only every 8th comparison; | ||||||
|  |          * the 256th check will be made at strstart+258. | ||||||
|  |          */ | ||||||
|  |         do { | ||||||
|  |         } while (*++scan == *++match && *++scan == *++match && | ||||||
|  |                  *++scan == *++match && *++scan == *++match && | ||||||
|  |                  *++scan == *++match && *++scan == *++match && | ||||||
|  |                  *++scan == *++match && *++scan == *++match && | ||||||
|  |                  scan < strend); | ||||||
|  |  | ||||||
|  |         Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); | ||||||
|  |  | ||||||
|  |         len = MAX_MATCH - (int)(strend - scan); | ||||||
|  |         scan = strend - MAX_MATCH; | ||||||
|  |  | ||||||
|  | #endif /* UNALIGNED_OK */ | ||||||
|  |  | ||||||
|  |         if (len > best_len) { | ||||||
|  |             s->match_start = cur_match; | ||||||
|  |             best_len = len; | ||||||
|  |             if (len >= nice_match) break; | ||||||
|  | #ifdef UNALIGNED_OK | ||||||
|  |             scan_end = *(ushf*)(scan+best_len-1); | ||||||
|  | #else | ||||||
|  |             scan_end1  = scan[best_len-1]; | ||||||
|  |             scan_end   = scan[best_len]; | ||||||
|  | #endif | ||||||
|  |         } | ||||||
|  |     } while ((cur_match = prev[cur_match & wmask]) > limit | ||||||
|  |              && --chain_length != 0); | ||||||
|  |  | ||||||
|  |     if ((uInt)best_len <= s->lookahead) return (uInt)best_len; | ||||||
|  |     return s->lookahead; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | #endif /* ASMV */ | ||||||
							
								
								
									
										1020
									
								
								contrib/vstudio/vc70_32/inffastAsm.asm
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1020
									
								
								contrib/vstudio/vc70_32/inffastAsm.asm
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								contrib/vstudio/vc70_32/inffastAsm.obj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								contrib/vstudio/vc70_32/inffastAsm.obj
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										124
									
								
								contrib/vstudio/vc70_32/miniunz.vcproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										124
									
								
								contrib/vstudio/vc70_32/miniunz.vcproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,124 @@ | |||||||
|  | <?xml version="1.0" encoding = "Windows-1252"?> | ||||||
|  | <VisualStudioProject | ||||||
|  | 	ProjectType="Visual C++" | ||||||
|  | 	Version="7.00" | ||||||
|  | 	Name="miniunz" | ||||||
|  | 	ProjectGUID="{C52F9E7B-498A-42BE-8DB4-85A15694382A}" | ||||||
|  | 	Keyword="Win32Proj"> | ||||||
|  | 	<Platforms> | ||||||
|  | 		<Platform | ||||||
|  | 			Name="Win32"/> | ||||||
|  | 	</Platforms> | ||||||
|  | 	<Configurations> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="Debug|Win32" | ||||||
|  | 			OutputDirectory="Debug" | ||||||
|  | 			IntermediateDirectory="Debug" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE" | ||||||
|  | 				MinimalRebuild="TRUE" | ||||||
|  | 				BasicRuntimeChecks="3" | ||||||
|  | 				RuntimeLibrary="5" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="TRUE" | ||||||
|  | 				DebugInformationFormat="4"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				OutputFile="$(OutDir)/miniunz.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				GenerateDebugInformation="TRUE" | ||||||
|  | 				ProgramDatabaseFile="$(OutDir)/miniunz.pdb" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="Release|Win32" | ||||||
|  | 			OutputDirectory="Release" | ||||||
|  | 			IntermediateDirectory="Release" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="2" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				OmitFramePointers="TRUE" | ||||||
|  | 				PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				RuntimeLibrary="4" | ||||||
|  | 				EnableFunctionLevelLinking="TRUE" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="TRUE" | ||||||
|  | 				DebugInformationFormat="3"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				OutputFile="$(OutDir)/miniunz.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				GenerateDebugInformation="TRUE" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				OptimizeForWindows98="1" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 	</Configurations> | ||||||
|  | 	<Files> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Source Files" | ||||||
|  | 			Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath="miniunz.c"> | ||||||
|  | 			</File> | ||||||
|  | 		</Filter> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Header Files" | ||||||
|  | 			Filter="h;hpp;hxx;hm;inl;inc"> | ||||||
|  | 		</Filter> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Resource Files" | ||||||
|  | 			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> | ||||||
|  | 		</Filter> | ||||||
|  | 		<File | ||||||
|  | 			RelativePath="zlib.lib"> | ||||||
|  | 		</File> | ||||||
|  | 	</Files> | ||||||
|  | 	<Globals> | ||||||
|  | 	</Globals> | ||||||
|  | </VisualStudioProject> | ||||||
							
								
								
									
										124
									
								
								contrib/vstudio/vc70_32/minizip.vcproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										124
									
								
								contrib/vstudio/vc70_32/minizip.vcproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,124 @@ | |||||||
|  | <?xml version="1.0" encoding = "Windows-1252"?> | ||||||
|  | <VisualStudioProject | ||||||
|  | 	ProjectType="Visual C++" | ||||||
|  | 	Version="7.00" | ||||||
|  | 	Name="minizip" | ||||||
|  | 	ProjectGUID="{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" | ||||||
|  | 	Keyword="Win32Proj"> | ||||||
|  | 	<Platforms> | ||||||
|  | 		<Platform | ||||||
|  | 			Name="Win32"/> | ||||||
|  | 	</Platforms> | ||||||
|  | 	<Configurations> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="Debug|Win32" | ||||||
|  | 			OutputDirectory="Debug" | ||||||
|  | 			IntermediateDirectory="Debug" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE" | ||||||
|  | 				MinimalRebuild="TRUE" | ||||||
|  | 				BasicRuntimeChecks="3" | ||||||
|  | 				RuntimeLibrary="5" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="TRUE" | ||||||
|  | 				DebugInformationFormat="4"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				OutputFile="$(OutDir)/minizip.exe" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				GenerateDebugInformation="TRUE" | ||||||
|  | 				ProgramDatabaseFile="$(OutDir)/minizip.pdb" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="Release|Win32" | ||||||
|  | 			OutputDirectory="Release" | ||||||
|  | 			IntermediateDirectory="Release" | ||||||
|  | 			ConfigurationType="1" | ||||||
|  | 			CharacterSet="2"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="2" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				OmitFramePointers="TRUE" | ||||||
|  | 				PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				RuntimeLibrary="4" | ||||||
|  | 				EnableFunctionLevelLinking="TRUE" | ||||||
|  | 				UsePrecompiledHeader="0" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				Detect64BitPortabilityProblems="TRUE" | ||||||
|  | 				DebugInformationFormat="3"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				OutputFile="$(OutDir)/minizip.exe" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				GenerateDebugInformation="TRUE" | ||||||
|  | 				SubSystem="1" | ||||||
|  | 				OptimizeReferences="2" | ||||||
|  | 				EnableCOMDATFolding="2" | ||||||
|  | 				OptimizeForWindows98="1" | ||||||
|  | 				TargetMachine="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 	</Configurations> | ||||||
|  | 	<Files> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Source Files" | ||||||
|  | 			Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath="minizip.c"> | ||||||
|  | 			</File> | ||||||
|  | 		</Filter> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Header Files" | ||||||
|  | 			Filter="h;hpp;hxx;hm;inl;inc"> | ||||||
|  | 		</Filter> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Resource Files" | ||||||
|  | 			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"> | ||||||
|  | 		</Filter> | ||||||
|  | 		<File | ||||||
|  | 			RelativePath="zlib.lib"> | ||||||
|  | 		</File> | ||||||
|  | 	</Files> | ||||||
|  | 	<Globals> | ||||||
|  | 	</Globals> | ||||||
|  | </VisualStudioProject> | ||||||
							
								
								
									
										2
									
								
								contrib/vstudio/vc70_32/mkgvmt32.bat
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								contrib/vstudio/vc70_32/mkgvmt32.bat
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,2 @@ | |||||||
|  | c:\masm611\bin\ml /coff /Zi /c /Flgvmat32.lst gvmat32.asm | ||||||
|  | c:\masm611\bin\ml /coff /Zi /c /FlinffastAsm.lst inffastAsm.asm | ||||||
							
								
								
									
										32
									
								
								contrib/vstudio/vc70_32/zlib.rc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								contrib/vstudio/vc70_32/zlib.rc
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,32 @@ | |||||||
|  | #include <windows.h> | ||||||
|  |  | ||||||
|  | #define IDR_VERSION1  1 | ||||||
|  | IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE | ||||||
|  |   FILEVERSION	 1,2,0,0 | ||||||
|  |   PRODUCTVERSION 1,2,0,0 | ||||||
|  |   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK | ||||||
|  |   FILEFLAGS	0 | ||||||
|  |   FILEOS	VOS_DOS_WINDOWS32 | ||||||
|  |   FILETYPE	VFT_DLL | ||||||
|  |   FILESUBTYPE	0	// not used | ||||||
|  | BEGIN | ||||||
|  |   BLOCK "StringFileInfo" | ||||||
|  |   BEGIN | ||||||
|  |     BLOCK "040904E4" | ||||||
|  |     //language ID = U.S. English, char set = Windows, Multilingual | ||||||
|  |  | ||||||
|  |     BEGIN | ||||||
|  |       VALUE "FileDescription", "zlib data compression library\0" | ||||||
|  |       VALUE "FileVersion",	"1.2.0.0\0" | ||||||
|  |       VALUE "InternalName",	"zlib\0" | ||||||
|  |       VALUE "OriginalFilename",	"zlib.dll\0" | ||||||
|  |       VALUE "ProductName",	"ZLib.DLL\0" | ||||||
|  |       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" | ||||||
|  |       VALUE "LegalCopyright", "(C) 1995-2003 Jean-loup Gailly & Mark Adler\0" | ||||||
|  |     END | ||||||
|  |   END | ||||||
|  |   BLOCK "VarFileInfo" | ||||||
|  |   BEGIN | ||||||
|  |     VALUE "Translation", 0x0409, 1252 | ||||||
|  |   END | ||||||
|  | END | ||||||
							
								
								
									
										253
									
								
								contrib/vstudio/vc70_32/zlibstat.vcproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										253
									
								
								contrib/vstudio/vc70_32/zlibstat.vcproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,253 @@ | |||||||
|  | <?xml version="1.0" encoding = "Windows-1252"?> | ||||||
|  | <VisualStudioProject | ||||||
|  | 	ProjectType="Visual C++" | ||||||
|  | 	Version="7.00" | ||||||
|  | 	Name="zlibstat" | ||||||
|  | 	SccProjectName="" | ||||||
|  | 	SccLocalPath=""> | ||||||
|  | 	<Platforms> | ||||||
|  | 		<Platform | ||||||
|  | 			Name="Win32"/> | ||||||
|  | 	</Platforms> | ||||||
|  | 	<Configurations> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="Debug|Win32" | ||||||
|  | 			OutputDirectory=".\zlibstatDebug" | ||||||
|  | 			IntermediateDirectory=".\zlibstatDebug" | ||||||
|  | 			ConfigurationType="4" | ||||||
|  | 			UseOfMFC="0" | ||||||
|  | 			ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				PreprocessorDefinitions="WIN32" | ||||||
|  | 				ExceptionHandling="FALSE" | ||||||
|  | 				RuntimeLibrary="5" | ||||||
|  | 				PrecompiledHeaderFile=".\zlibstatDebug/zlibstat.pch" | ||||||
|  | 				AssemblerListingLocation=".\zlibstatDebug/" | ||||||
|  | 				ObjectFile=".\zlibstatDebug/" | ||||||
|  | 				ProgramDataBaseFileName=".\zlibstatDebug/" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				DebugInformationFormat="1"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLibrarianTool" | ||||||
|  | 				AdditionalOptions="/NODEFAULTLIB " | ||||||
|  | 				OutputFile=".\zlibstatDebug\zlibstat.lib" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool" | ||||||
|  | 				Culture="1036"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="ReleaseAxp|Win32" | ||||||
|  | 			OutputDirectory=".\zlibsta0" | ||||||
|  | 			IntermediateDirectory=".\zlibsta0" | ||||||
|  | 			ConfigurationType="4" | ||||||
|  | 			UseOfMFC="0" | ||||||
|  | 			ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				PreprocessorDefinitions="WIN32" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				ExceptionHandling="FALSE" | ||||||
|  | 				RuntimeLibrary="4" | ||||||
|  | 				EnableFunctionLevelLinking="TRUE" | ||||||
|  | 				PrecompiledHeaderFile=".\zlibsta0/zlibstat.pch" | ||||||
|  | 				AssemblerListingLocation=".\zlibsta0/" | ||||||
|  | 				ObjectFile=".\zlibsta0/" | ||||||
|  | 				ProgramDataBaseFileName=".\zlibsta0/" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLibrarianTool" | ||||||
|  | 				AdditionalOptions="/NODEFAULTLIB " | ||||||
|  | 				OutputFile=".\zlibsta0\zlibstat.lib" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="Release|Win32" | ||||||
|  | 			OutputDirectory=".\zlibstat" | ||||||
|  | 			IntermediateDirectory=".\zlibstat" | ||||||
|  | 			ConfigurationType="4" | ||||||
|  | 			UseOfMFC="0" | ||||||
|  | 			ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				PreprocessorDefinitions="WIN32,ASMV" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				ExceptionHandling="FALSE" | ||||||
|  | 				RuntimeLibrary="4" | ||||||
|  | 				EnableFunctionLevelLinking="TRUE" | ||||||
|  | 				PrecompiledHeaderFile=".\zlibstat/zlibstat.pch" | ||||||
|  | 				AssemblerListingLocation=".\zlibstat/" | ||||||
|  | 				ObjectFile=".\zlibstat/" | ||||||
|  | 				ProgramDataBaseFileName=".\zlibstat/" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLibrarianTool" | ||||||
|  | 				AdditionalOptions="gvmat32.obj  inffastAsm.obj /NODEFAULTLIB " | ||||||
|  | 				OutputFile=".\zlibstat\zlibstat.lib" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool" | ||||||
|  | 				Culture="1036"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="ReleaseWithoutAsm|Win32" | ||||||
|  | 			OutputDirectory="zlibstatWithoutAsm" | ||||||
|  | 			IntermediateDirectory="zlibstatWithoutAsm" | ||||||
|  | 			ConfigurationType="4" | ||||||
|  | 			UseOfMFC="0" | ||||||
|  | 			ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				PreprocessorDefinitions="WIN32" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				ExceptionHandling="FALSE" | ||||||
|  | 				RuntimeLibrary="4" | ||||||
|  | 				EnableFunctionLevelLinking="TRUE" | ||||||
|  | 				PrecompiledHeaderFile=".\zlibstat/zlibstat.pch" | ||||||
|  | 				AssemblerListingLocation=".\zlibstatWithoutAsm/" | ||||||
|  | 				ObjectFile=".\zlibstatWithoutAsm/" | ||||||
|  | 				ProgramDataBaseFileName=".\zlibstatWithoutAsm/" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLibrarianTool" | ||||||
|  | 				AdditionalOptions=" /NODEFAULTLIB " | ||||||
|  | 				OutputFile=".\zlibstatWithoutAsm\zlibstat.lib" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool" | ||||||
|  | 				Culture="1036"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 	</Configurations> | ||||||
|  | 	<Files> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Source Files" | ||||||
|  | 			Filter=""> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\adler32.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\compress.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\crc32.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\deflate.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\gvmat32c.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\gzio.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\infback.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\inffast.c"> | ||||||
|  | 				<FileConfiguration | ||||||
|  | 					Name="Release|Win32" | ||||||
|  | 					ExcludedFromBuild="TRUE"> | ||||||
|  | 					<Tool | ||||||
|  | 						Name="VCCLCompilerTool"/> | ||||||
|  | 				</FileConfiguration> | ||||||
|  | 				<FileConfiguration | ||||||
|  | 					Name="ReleaseWithoutAsm|Win32"> | ||||||
|  | 					<Tool | ||||||
|  | 						Name="VCCLCompilerTool"/> | ||||||
|  | 				</FileConfiguration> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\inflate.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\inftrees.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\ioapi.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\trees.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\uncompr.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\unzip.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zip.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zlib.rc"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zlibvc.def"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zutil.c"> | ||||||
|  | 			</File> | ||||||
|  | 		</Filter> | ||||||
|  | 	</Files> | ||||||
|  | 	<Globals> | ||||||
|  | 	</Globals> | ||||||
|  | </VisualStudioProject> | ||||||
							
								
								
									
										88
									
								
								contrib/vstudio/vc70_32/zlibvc.def
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										88
									
								
								contrib/vstudio/vc70_32/zlibvc.def
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,88 @@ | |||||||
|  | LIBRARY		"zlib" | ||||||
|  |  | ||||||
|  | VERSION		1.20 | ||||||
|  |  | ||||||
|  | HEAPSIZE	1048576,8192 | ||||||
|  |  | ||||||
|  | EXPORTS | ||||||
|  |         adler32                                  @1 | ||||||
|  |         compress                                 @2 | ||||||
|  |         crc32                                    @3 | ||||||
|  |         deflate                                  @4 | ||||||
|  |         deflateCopy                              @5 | ||||||
|  |         deflateEnd                               @6 | ||||||
|  |         deflateInit2_                            @7 | ||||||
|  |         deflateInit_                             @8 | ||||||
|  |         deflateParams                            @9 | ||||||
|  |         deflateReset                             @10 | ||||||
|  |         deflateSetDictionary                     @11 | ||||||
|  |         gzclose                                  @12 | ||||||
|  |         gzdopen                                  @13 | ||||||
|  |         gzerror                                  @14 | ||||||
|  |         gzflush                                  @15 | ||||||
|  |         gzopen                                   @16 | ||||||
|  |         gzread                                   @17 | ||||||
|  |         gzwrite                                  @18 | ||||||
|  |         inflate                                  @19 | ||||||
|  |         inflateEnd                               @20 | ||||||
|  |         inflateInit2_                            @21 | ||||||
|  |         inflateInit_                             @22 | ||||||
|  |         inflateReset                             @23 | ||||||
|  |         inflateSetDictionary                     @24 | ||||||
|  |         inflateSync                              @25 | ||||||
|  |         uncompress                               @26 | ||||||
|  |         zlibVersion                              @27 | ||||||
|  |         gzprintf                                 @28 | ||||||
|  |         gzputc                                   @29 | ||||||
|  |         gzgetc                                   @30 | ||||||
|  |         gzseek                                   @31 | ||||||
|  |         gzrewind                                 @32 | ||||||
|  |         gztell                                   @33 | ||||||
|  |         gzeof                                    @34 | ||||||
|  |         gzsetparams                              @35 | ||||||
|  |         zError                                   @36 | ||||||
|  |         inflateSyncPoint                         @37 | ||||||
|  |         get_crc_table                            @38 | ||||||
|  |         compress2                                @39 | ||||||
|  |         gzputs                                   @40 | ||||||
|  |         gzgets                                   @41 | ||||||
|  |         inflateCopy                              @42 | ||||||
|  |         inflateBackInit_                         @43 | ||||||
|  |         inflateBack                              @44 | ||||||
|  |         inflateBackEnd                           @45 | ||||||
|  |         compressBound                            @46 | ||||||
|  |  | ||||||
|  |         unzOpen                                  @61 | ||||||
|  |         unzClose                                 @62 | ||||||
|  |         unzGetGlobalInfo                         @63 | ||||||
|  |         unzGetCurrentFileInfo                    @64 | ||||||
|  |         unzGoToFirstFile                         @65 | ||||||
|  |         unzGoToNextFile                          @66 | ||||||
|  |         unzOpenCurrentFile                       @67 | ||||||
|  |         unzReadCurrentFile                       @68 | ||||||
|  |         unzOpenCurrentFile3                      @69 | ||||||
|  |         unztell                                  @70 | ||||||
|  |         unzeof                                   @71 | ||||||
|  |         unzCloseCurrentFile                      @72 | ||||||
|  |         unzGetGlobalComment                      @73 | ||||||
|  |         unzStringFileNameCompare                 @74 | ||||||
|  |         unzLocateFile                            @75 | ||||||
|  |         unzGetLocalExtrafield                    @76 | ||||||
|  |         unzOpen2                                 @77 | ||||||
|  |         unzOpenCurrentFile2                      @78 | ||||||
|  |         unzOpenCurrentFilePassword               @79 | ||||||
|  |  | ||||||
|  |         zipOpen                                  @80 | ||||||
|  |         zipOpenNewFileInZip                      @81 | ||||||
|  |         zipWriteInFileInZip                      @82 | ||||||
|  |         zipCloseFileInZip                        @83 | ||||||
|  |         zipClose                                 @84 | ||||||
|  |         zipOpenNewFileInZip2                     @86 | ||||||
|  |         zipCloseFileInZipRaw                     @87 | ||||||
|  |         zipOpen2                                 @88 | ||||||
|  |         zipOpenNewFileInZip3                     @89 | ||||||
|  |  | ||||||
|  |         unzGetFilePos                            @100 | ||||||
|  |         unzGoToFilePos                           @101 | ||||||
|  |  | ||||||
|  |         fill_win32_filefunc                      @110 | ||||||
							
								
								
									
										66
									
								
								contrib/vstudio/vc70_32/zlibvc.sln
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										66
									
								
								contrib/vstudio/vc70_32/zlibvc.sln
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,66 @@ | |||||||
|  | Microsoft Visual Studio Solution File, Format Version 7.00 | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "zlibstat.vcproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}" | ||||||
|  | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}" | ||||||
|  | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minizip", "minizip.vcproj", "{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}" | ||||||
|  | EndProject | ||||||
|  | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniunz", "miniunz.vcproj", "{C52F9E7B-498A-42BE-8DB4-85A15694382A}" | ||||||
|  | EndProject | ||||||
|  | Global | ||||||
|  | 	GlobalSection(SolutionConfiguration) = preSolution | ||||||
|  | 		ConfigName.0 = Debug | ||||||
|  | 		ConfigName.1 = Release | ||||||
|  | 		ConfigName.2 = ReleaseAxp | ||||||
|  | 		ConfigName.3 = ReleaseWithoutAsm | ||||||
|  | 		ConfigName.4 = ReleaseWithoutCrtdll | ||||||
|  | 	EndGlobalSection | ||||||
|  | 	GlobalSection(ProjectDependencies) = postSolution | ||||||
|  | 	EndGlobalSection | ||||||
|  | 	GlobalSection(ProjectConfiguration) = postSolution | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug.ActiveCfg = Debug|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug.Build.0 = Debug|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release.ActiveCfg = Release|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release.Build.0 = Release|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseAxp.ActiveCfg = ReleaseAxp|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseAxp.Build.0 = ReleaseAxp|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm.ActiveCfg = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm.Build.0 = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutCrtdll.ActiveCfg = ReleaseAxp|Win32 | ||||||
|  | 		{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutCrtdll.Build.0 = ReleaseAxp|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug.ActiveCfg = Debug|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug.Build.0 = Debug|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release.ActiveCfg = Release|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release.Build.0 = Release|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseAxp.ActiveCfg = ReleaseAxp|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseAxp.Build.0 = ReleaseAxp|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm.ActiveCfg = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm.Build.0 = ReleaseWithoutAsm|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutCrtdll.ActiveCfg = ReleaseWithoutCrtdll|Win32 | ||||||
|  | 		{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutCrtdll.Build.0 = ReleaseWithoutCrtdll|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug.ActiveCfg = Debug|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug.Build.0 = Debug|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release.ActiveCfg = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release.Build.0 = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseAxp.ActiveCfg = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseAxp.Build.0 = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm.Build.0 = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutCrtdll.ActiveCfg = Release|Win32 | ||||||
|  | 		{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutCrtdll.Build.0 = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug.ActiveCfg = Debug|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug.Build.0 = Debug|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release.Build.0 = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseAxp.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseAxp.Build.0 = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm.Build.0 = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutCrtdll.ActiveCfg = Release|Win32 | ||||||
|  | 		{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutCrtdll.Build.0 = Release|Win32 | ||||||
|  | 	EndGlobalSection | ||||||
|  | 	GlobalSection(ExtensibilityGlobals) = postSolution | ||||||
|  | 	EndGlobalSection | ||||||
|  | 	GlobalSection(ExtensibilityAddIns) = postSolution | ||||||
|  | 	EndGlobalSection | ||||||
|  | EndGlobal | ||||||
							
								
								
									
										434
									
								
								contrib/vstudio/vc70_32/zlibvc.vcproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										434
									
								
								contrib/vstudio/vc70_32/zlibvc.vcproj
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,434 @@ | |||||||
|  | <?xml version="1.0" encoding = "Windows-1252"?> | ||||||
|  | <VisualStudioProject | ||||||
|  | 	ProjectType="Visual C++" | ||||||
|  | 	Version="7.00" | ||||||
|  | 	Name="zlibvc" | ||||||
|  | 	SccProjectName="" | ||||||
|  | 	SccLocalPath=""> | ||||||
|  | 	<Platforms> | ||||||
|  | 		<Platform | ||||||
|  | 			Name="Win32"/> | ||||||
|  | 	</Platforms> | ||||||
|  | 	<Configurations> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="Debug|Win32" | ||||||
|  | 			OutputDirectory=".\DebugDll" | ||||||
|  | 			IntermediateDirectory=".\DebugDll" | ||||||
|  | 			ConfigurationType="2" | ||||||
|  | 			UseOfMFC="0" | ||||||
|  | 			ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				Optimization="0" | ||||||
|  | 				PreprocessorDefinitions="WIN32,ASMV" | ||||||
|  | 				ExceptionHandling="FALSE" | ||||||
|  | 				RuntimeLibrary="1" | ||||||
|  | 				PrecompiledHeaderFile=".\DebugDll/zlibvc.pch" | ||||||
|  | 				AssemblerListingLocation=".\DebugDll/" | ||||||
|  | 				ObjectFile=".\DebugDll/" | ||||||
|  | 				ProgramDataBaseFileName=".\DebugDll/" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				DebugInformationFormat="4"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalOptions="/MACHINE:I386" | ||||||
|  | 				AdditionalDependencies="gvmat32.obj " | ||||||
|  | 				OutputFile=".\DebugDll\zlib.dll" | ||||||
|  | 				LinkIncremental="2" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				ModuleDefinitionFile=".\zlibvc.def" | ||||||
|  | 				GenerateDebugInformation="TRUE" | ||||||
|  | 				ProgramDatabaseFile=".\DebugDll/zlib.pdb" | ||||||
|  | 				SubSystem="2" | ||||||
|  | 				ImportLibrary=".\DebugDll/zlib.lib"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				PreprocessorDefinitions="_DEBUG" | ||||||
|  | 				MkTypLibCompatible="TRUE" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				TargetEnvironment="1" | ||||||
|  | 				TypeLibraryName=".\DebugDll/zlibvc.tlb"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool" | ||||||
|  | 				PreprocessorDefinitions="_DEBUG" | ||||||
|  | 				Culture="1036"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="ReleaseWithoutAsm|Win32" | ||||||
|  | 			OutputDirectory=".\zlibDllWithoutAsm" | ||||||
|  | 			IntermediateDirectory=".\zlibDllWithoutAsm" | ||||||
|  | 			ConfigurationType="2" | ||||||
|  | 			UseOfMFC="0" | ||||||
|  | 			ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				PreprocessorDefinitions="WIN32" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				ExceptionHandling="FALSE" | ||||||
|  | 				RuntimeLibrary="0" | ||||||
|  | 				EnableFunctionLevelLinking="TRUE" | ||||||
|  | 				PrecompiledHeaderFile=".\zlibDllWithoutAsm/zlibvc.pch" | ||||||
|  | 				AssemblerOutput="2" | ||||||
|  | 				AssemblerListingLocation=".\zlibDllWithoutAsm/" | ||||||
|  | 				ObjectFile=".\zlibDllWithoutAsm/" | ||||||
|  | 				ProgramDataBaseFileName=".\zlibDllWithoutAsm/" | ||||||
|  | 				BrowseInformation="1" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalOptions="/MACHINE:I386" | ||||||
|  | 				AdditionalDependencies="crtdll.lib" | ||||||
|  | 				OutputFile=".\zlibDllWithoutAsm\zlib.dll" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				IgnoreAllDefaultLibraries="TRUE" | ||||||
|  | 				ModuleDefinitionFile=".\zlibvc.def" | ||||||
|  | 				ProgramDatabaseFile=".\zlibDllWithoutAsm/zlib.pdb" | ||||||
|  | 				GenerateMapFile="TRUE" | ||||||
|  | 				MapFileName=".\zlibDllWithoutAsm/zlib.map" | ||||||
|  | 				SubSystem="2" | ||||||
|  | 				OptimizeForWindows98="1" | ||||||
|  | 				ImportLibrary=".\zlibDllWithoutAsm/zlib.lib"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				PreprocessorDefinitions="NDEBUG" | ||||||
|  | 				MkTypLibCompatible="TRUE" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				TargetEnvironment="1" | ||||||
|  | 				TypeLibraryName=".\zlibDllWithoutAsm/zlibvc.tlb"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool" | ||||||
|  | 				PreprocessorDefinitions="NDEBUG" | ||||||
|  | 				Culture="1036"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="ReleaseWithoutCrtdll|Win32" | ||||||
|  | 			OutputDirectory=".\zlibDllWithoutCrtDll" | ||||||
|  | 			IntermediateDirectory=".\zlibDllWithoutCrtDll" | ||||||
|  | 			ConfigurationType="2" | ||||||
|  | 			UseOfMFC="0" | ||||||
|  | 			ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				PreprocessorDefinitions="WIN32,ASMV" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				ExceptionHandling="FALSE" | ||||||
|  | 				RuntimeLibrary="0" | ||||||
|  | 				EnableFunctionLevelLinking="TRUE" | ||||||
|  | 				PrecompiledHeaderFile=".\zlibDllWithoutCrtDll/zlibvc.pch" | ||||||
|  | 				AssemblerOutput="2" | ||||||
|  | 				AssemblerListingLocation=".\zlibDllWithoutCrtDll/" | ||||||
|  | 				ObjectFile=".\zlibDllWithoutCrtDll/" | ||||||
|  | 				ProgramDataBaseFileName=".\zlibDllWithoutCrtDll/" | ||||||
|  | 				BrowseInformation="1" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalOptions="/MACHINE:I386" | ||||||
|  | 				AdditionalDependencies="gvmat32.obj inffastAsm.obj " | ||||||
|  | 				OutputFile=".\zlibDllWithoutCrtDll\zlib.dll" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				IgnoreAllDefaultLibraries="FALSE" | ||||||
|  | 				ModuleDefinitionFile=".\zlibvc.def" | ||||||
|  | 				ProgramDatabaseFile=".\zlibDllWithoutCrtDll/zlib.pdb" | ||||||
|  | 				GenerateMapFile="TRUE" | ||||||
|  | 				MapFileName=".\zlibDllWithoutCrtDll/zlib.map" | ||||||
|  | 				SubSystem="2" | ||||||
|  | 				OptimizeForWindows98="1" | ||||||
|  | 				ImportLibrary=".\zlibDllWithoutCrtDll/zlib.lib"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				PreprocessorDefinitions="NDEBUG" | ||||||
|  | 				MkTypLibCompatible="TRUE" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				TargetEnvironment="1" | ||||||
|  | 				TypeLibraryName=".\zlibDllWithoutCrtDll/zlibvc.tlb"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool" | ||||||
|  | 				PreprocessorDefinitions="NDEBUG" | ||||||
|  | 				Culture="1036"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="ReleaseAxp|Win32" | ||||||
|  | 			OutputDirectory=".\zlibvc__" | ||||||
|  | 			IntermediateDirectory=".\zlibvc__" | ||||||
|  | 			ConfigurationType="2" | ||||||
|  | 			UseOfMFC="0" | ||||||
|  | 			ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				PreprocessorDefinitions="WIN32" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				ExceptionHandling="FALSE" | ||||||
|  | 				RuntimeLibrary="0" | ||||||
|  | 				EnableFunctionLevelLinking="TRUE" | ||||||
|  | 				PrecompiledHeaderFile=".\zlibvc__/zlibvc.pch" | ||||||
|  | 				AssemblerOutput="2" | ||||||
|  | 				AssemblerListingLocation=".\zlibvc__/" | ||||||
|  | 				ObjectFile=".\zlibvc__/" | ||||||
|  | 				ProgramDataBaseFileName=".\zlibvc__/" | ||||||
|  | 				BrowseInformation="1" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalDependencies="crtdll.lib" | ||||||
|  | 				OutputFile="zlibvc__\zlib.dll" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				IgnoreAllDefaultLibraries="TRUE" | ||||||
|  | 				ModuleDefinitionFile=".\zlibvc.def" | ||||||
|  | 				ProgramDatabaseFile=".\zlibvc__/zlib.pdb" | ||||||
|  | 				GenerateMapFile="TRUE" | ||||||
|  | 				MapFileName=".\zlibvc__/zlib.map" | ||||||
|  | 				SubSystem="2" | ||||||
|  | 				ImportLibrary=".\zlibvc__/zlib.lib"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				PreprocessorDefinitions="NDEBUG" | ||||||
|  | 				MkTypLibCompatible="TRUE" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				TargetEnvironment="1" | ||||||
|  | 				TypeLibraryName=".\zlibvc__/zlibvc.tlb"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool" | ||||||
|  | 				PreprocessorDefinitions="NDEBUG" | ||||||
|  | 				Culture="1036"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 		<Configuration | ||||||
|  | 			Name="Release|Win32" | ||||||
|  | 			OutputDirectory=".\ReleaseDll" | ||||||
|  | 			IntermediateDirectory=".\ReleaseDll" | ||||||
|  | 			ConfigurationType="2" | ||||||
|  | 			UseOfMFC="0" | ||||||
|  | 			ATLMinimizesCRunTimeLibraryUsage="FALSE"> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCLCompilerTool" | ||||||
|  | 				InlineFunctionExpansion="1" | ||||||
|  | 				PreprocessorDefinitions="WIN32,ASMV" | ||||||
|  | 				StringPooling="TRUE" | ||||||
|  | 				ExceptionHandling="FALSE" | ||||||
|  | 				RuntimeLibrary="0" | ||||||
|  | 				EnableFunctionLevelLinking="TRUE" | ||||||
|  | 				PrecompiledHeaderFile=".\ReleaseDll/zlibvc.pch" | ||||||
|  | 				AssemblerOutput="2" | ||||||
|  | 				AssemblerListingLocation=".\ReleaseDll/" | ||||||
|  | 				ObjectFile=".\ReleaseDll/" | ||||||
|  | 				ProgramDataBaseFileName=".\ReleaseDll/" | ||||||
|  | 				BrowseInformation="1" | ||||||
|  | 				WarningLevel="3" | ||||||
|  | 				SuppressStartupBanner="TRUE"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCCustomBuildTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCLinkerTool" | ||||||
|  | 				AdditionalOptions="/MACHINE:I386" | ||||||
|  | 				AdditionalDependencies="gvmat32.obj inffastAsm.obj crtdll.lib" | ||||||
|  | 				OutputFile=".\ReleaseDll\zlib.dll" | ||||||
|  | 				LinkIncremental="1" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				IgnoreAllDefaultLibraries="TRUE" | ||||||
|  | 				ModuleDefinitionFile=".\zlibvc.def" | ||||||
|  | 				ProgramDatabaseFile=".\ReleaseDll/zlib.pdb" | ||||||
|  | 				GenerateMapFile="TRUE" | ||||||
|  | 				MapFileName=".\ReleaseDll/zlib.map" | ||||||
|  | 				SubSystem="2" | ||||||
|  | 				OptimizeForWindows98="1" | ||||||
|  | 				ImportLibrary=".\ReleaseDll/zlib.lib"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCMIDLTool" | ||||||
|  | 				PreprocessorDefinitions="NDEBUG" | ||||||
|  | 				MkTypLibCompatible="TRUE" | ||||||
|  | 				SuppressStartupBanner="TRUE" | ||||||
|  | 				TargetEnvironment="1" | ||||||
|  | 				TypeLibraryName=".\Release/zlibvc.tlb"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPostBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreBuildEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCPreLinkEventTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCResourceCompilerTool" | ||||||
|  | 				PreprocessorDefinitions="NDEBUG" | ||||||
|  | 				Culture="1036"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebServiceProxyGeneratorTool"/> | ||||||
|  | 			<Tool | ||||||
|  | 				Name="VCWebDeploymentTool"/> | ||||||
|  | 		</Configuration> | ||||||
|  | 	</Configurations> | ||||||
|  | 	<Files> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Source Files" | ||||||
|  | 			Filter="cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\adler32.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\compress.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\crc32.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\deflate.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\gvmat32c.c"> | ||||||
|  | 				<FileConfiguration | ||||||
|  | 					Name="ReleaseWithoutAsm|Win32" | ||||||
|  | 					ExcludedFromBuild="TRUE"> | ||||||
|  | 					<Tool | ||||||
|  | 						Name="VCCLCompilerTool"/> | ||||||
|  | 				</FileConfiguration> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\gzio.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\infback.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\inffast.c"> | ||||||
|  | 				<FileConfiguration | ||||||
|  | 					Name="ReleaseWithoutCrtdll|Win32" | ||||||
|  | 					ExcludedFromBuild="TRUE"> | ||||||
|  | 					<Tool | ||||||
|  | 						Name="VCCLCompilerTool"/> | ||||||
|  | 				</FileConfiguration> | ||||||
|  | 				<FileConfiguration | ||||||
|  | 					Name="Release|Win32" | ||||||
|  | 					ExcludedFromBuild="TRUE"> | ||||||
|  | 					<Tool | ||||||
|  | 						Name="VCCLCompilerTool"/> | ||||||
|  | 				</FileConfiguration> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\inflate.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\inftrees.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\ioapi.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\iowin32.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\trees.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\uncompr.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\unzip.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zip.c"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zlib.rc"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zlibvc.def"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zutil.c"> | ||||||
|  | 			</File> | ||||||
|  | 		</Filter> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Header Files" | ||||||
|  | 			Filter="h;hpp;hxx;hm;inl;fi;fd"> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\deflate.h"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\infblock.h"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\infcodes.h"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\inffast.h"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\inftrees.h"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\infutil.h"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zconf.h"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zlib.h"> | ||||||
|  | 			</File> | ||||||
|  | 			<File | ||||||
|  | 				RelativePath=".\zutil.h"> | ||||||
|  | 			</File> | ||||||
|  | 		</Filter> | ||||||
|  | 		<Filter | ||||||
|  | 			Name="Resource Files" | ||||||
|  | 			Filter="ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe"> | ||||||
|  | 		</Filter> | ||||||
|  | 	</Files> | ||||||
|  | 	<Globals> | ||||||
|  | 	</Globals> | ||||||
|  | </VisualStudioProject> | ||||||
							
								
								
									
										344
									
								
								crc32.c
									
									
									
									
									
								
							
							
						
						
									
										344
									
								
								crc32.c
									
									
									
									
									
								
							| @@ -1,22 +1,68 @@ | |||||||
| /* crc32.c -- compute the CRC-32 of a data stream | /* crc32.c -- compute the CRC-32 of a data stream | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  * Copyright (C) 1995-2003 Mark Adler | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  |  * | ||||||
|  |  * Thanks to Rodney Brown <rbrown64@csc.com.au> for his contribution of faster | ||||||
|  |  * CRC methods: exclusive-oring 32 bits of data at a time, and pre-computing | ||||||
|  |  * tables for updating the shift register in one step with three exclusive-ors | ||||||
|  |  * instead of four steps with four exclusive-ors.  This results about a 50% | ||||||
|  |  * increase in speed on a Power PC using gcc -O3. | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| /* @(#) $Id$ */ | /* @(#) $Id$ */ | ||||||
|  |  | ||||||
|  | #ifdef MAKECRCH | ||||||
|  | #  include <stdio.h> | ||||||
|  | #  ifndef DYNAMIC_CRC_TABLE | ||||||
|  | #    define DYNAMIC_CRC_TABLE | ||||||
|  | #  endif /* !DYNAMIC_CRC_TABLE */ | ||||||
|  | #endif /* MAKECRCH */ | ||||||
|  |  | ||||||
| #include "zlib.h" | #include "zlib.h" | ||||||
|  |  | ||||||
| #define local static | #define local static | ||||||
|  |  | ||||||
|  | /* Find a four-byte integer type for crc32_little() and crc32_big(). */ | ||||||
|  | #ifndef NOBYFOUR | ||||||
|  | #  ifdef __STDC__       /* need ANSI C limits.h to determine sizes */ | ||||||
|  | #    include <limits.h> | ||||||
|  | #    define BYFOUR | ||||||
|  | #    if (UINT_MAX == 4294967295) | ||||||
|  |        typedef unsigned int u4; | ||||||
|  | #    elif (ULONG_MAX == 4294967295) | ||||||
|  |        typedef unsigned long u4; | ||||||
|  | #    elif (USHRT_MAX == 4294967295) | ||||||
|  |        typedef unsigned short u4; | ||||||
|  | #    else | ||||||
|  | #      undef BYFOUR     /* can't find a four-byte integer type! */ | ||||||
|  | #    endif | ||||||
|  | #  endif /* __STDC__ */ | ||||||
|  | #endif /* !NOBYFOUR */ | ||||||
|  |  | ||||||
|  | /* Definitions for doing the crc four data bytes at a time. */ | ||||||
|  | #ifdef BYFOUR | ||||||
|  | #  define REV(w) (((w)>>24)+(((w)>>8)&0xff00)+ \ | ||||||
|  |                 (((w)&0xff00)<<8)+(((w)&0xff)<<24)) | ||||||
|  |    local unsigned long crc32_little OF((unsigned long, | ||||||
|  |                         const unsigned char FAR *, unsigned)); | ||||||
|  |    local unsigned long crc32_big OF((unsigned long, | ||||||
|  |                         const unsigned char FAR *, unsigned)); | ||||||
|  | #  define TBLS 8 | ||||||
|  | #else | ||||||
|  | #  define TBLS 1 | ||||||
|  | #endif /* BYFOUR */ | ||||||
|  |  | ||||||
| #ifdef DYNAMIC_CRC_TABLE | #ifdef DYNAMIC_CRC_TABLE | ||||||
|  |  | ||||||
| local int crc_table_empty = 1; | local int crc_table_empty = 1; | ||||||
| local uLongf crc_table[256]; | local unsigned long FAR crc_table[TBLS][256]; | ||||||
| local void make_crc_table OF((void)); | local void make_crc_table OF((void)); | ||||||
|  | #ifdef MAKECRCH | ||||||
|  |    local void write_table OF((FILE *, const unsigned long FAR *)); | ||||||
|  | #endif /* MAKECRCH */ | ||||||
|  |  | ||||||
| /* | /* | ||||||
|   Generate a table for a byte-wise 32-bit CRC calculation on the polynomial: |   Generate tables for a byte-wise 32-bit CRC calculation on the polynomial: | ||||||
|   x^32+x^26+x^23+x^22+x^16+x^12+x^11+x^10+x^8+x^7+x^5+x^4+x^2+x+1. |   x^32+x^26+x^23+x^22+x^16+x^12+x^11+x^10+x^8+x^7+x^5+x^4+x^2+x+1. | ||||||
|  |  | ||||||
|   Polynomials over GF(2) are represented in binary, one bit per coefficient, |   Polynomials over GF(2) are represented in binary, one bit per coefficient, | ||||||
| @@ -35,128 +81,228 @@ local void make_crc_table OF((void)); | |||||||
|   out is a one).  We start with the highest power (least significant bit) of |   out is a one).  We start with the highest power (least significant bit) of | ||||||
|   q and repeat for all eight bits of q. |   q and repeat for all eight bits of q. | ||||||
|  |  | ||||||
|   The table is simply the CRC of all possible eight bit values.  This is all |   The first table is simply the CRC of all possible eight bit values.  This is | ||||||
|   the information needed to generate CRC's on data a byte at a time for all |   all the information needed to generate CRCs on data a byte at a time for all | ||||||
|   combinations of CRC register values and incoming bytes. |   combinations of CRC register values and incoming bytes.  The remaining tables | ||||||
|  |   allow for word-at-a-time CRC calculation for both big-endian and little- | ||||||
|  |   endian machines, where a word is four bytes. | ||||||
| */ | */ | ||||||
| local void make_crc_table() | local void make_crc_table() | ||||||
| { | { | ||||||
|   uLong c; |     unsigned long c; | ||||||
|   int n, k; |     int n, k; | ||||||
|   uLong poly;            /* polynomial exclusive-or pattern */ |     unsigned long poly;            /* polynomial exclusive-or pattern */ | ||||||
|   /* terms of polynomial defining this crc (except x^32): */ |     /* terms of polynomial defining this crc (except x^32): */ | ||||||
|   static const Byte p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26}; |     static const unsigned char p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26}; | ||||||
|  |  | ||||||
|   /* make exclusive-or pattern from polynomial (0xedb88320L) */ |     /* make exclusive-or pattern from polynomial (0xedb88320L) */ | ||||||
|   poly = 0L; |     poly = 0UL; | ||||||
|   for (n = 0; n < sizeof(p)/sizeof(Byte); n++) |     for (n = 0; n < sizeof(p)/sizeof(unsigned char); n++) | ||||||
|     poly |= 1L << (31 - p[n]); |         poly |= 1UL << (31 - p[n]); | ||||||
|  |  | ||||||
|  |     /* generate a crc for every 8-bit value */ | ||||||
|  |     for (n = 0; n < 256; n++) { | ||||||
|  |         c = (unsigned long)n; | ||||||
|  |         for (k = 0; k < 8; k++) | ||||||
|  |             c = c & 1 ? poly ^ (c >> 1) : c >> 1; | ||||||
|  |         crc_table[0][n] = c; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  | #ifdef BYFOUR | ||||||
|  |     /* generate crc for each value followed by one, two, and three zeros, and | ||||||
|  |        then the byte reversal of those as well as the first table */ | ||||||
|  |     for (n = 0; n < 256; n++) { | ||||||
|  |         c = crc_table[0][n]; | ||||||
|  |         crc_table[4][n] = REV(c); | ||||||
|  |         for (k = 1; k < 4; k++) { | ||||||
|  |             c = crc_table[0][c & 0xff] ^ (c >> 8); | ||||||
|  |             crc_table[k][n] = c; | ||||||
|  |             crc_table[k + 4][n] = REV(c); | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | #endif /* BYFOUR */ | ||||||
|  |  | ||||||
|   for (n = 0; n < 256; n++) |  | ||||||
|   { |  | ||||||
|     c = (uLong)n; |  | ||||||
|     for (k = 0; k < 8; k++) |  | ||||||
|       c = c & 1 ? poly ^ (c >> 1) : c >> 1; |  | ||||||
|     crc_table[n] = c; |  | ||||||
|   } |  | ||||||
|   crc_table_empty = 0; |   crc_table_empty = 0; | ||||||
|  |  | ||||||
|  | #ifdef MAKECRCH | ||||||
|  |     /* write out CRC tables to crc32.h */ | ||||||
|  |     { | ||||||
|  |         FILE *out; | ||||||
|  |  | ||||||
|  |         out = fopen("crc32.h", "w"); | ||||||
|  |         if (out == NULL) return; | ||||||
|  |         fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n"); | ||||||
|  |         fprintf(out, " * Generated automatically by crc32.c\n */\n\n"); | ||||||
|  |         fprintf(out, "local const unsigned long FAR "); | ||||||
|  |         fprintf(out, "crc_table[TBLS][256] =\n{\n  {\n"); | ||||||
|  |         write_table(out, crc_table[0]); | ||||||
|  | #  ifdef BYFOUR | ||||||
|  |         fprintf(out, "#ifdef BYFOUR\n"); | ||||||
|  |         for (k = 1; k < 8; k++) { | ||||||
|  |             fprintf(out, "  },\n  {\n"); | ||||||
|  |             write_table(out, crc_table[k]); | ||||||
|  |         } | ||||||
|  |         fprintf(out, "#endif\n"); | ||||||
|  | #  endif /* BYFOUR */ | ||||||
|  |         fprintf(out, "  }\n};\n"); | ||||||
|  |         fclose(out); | ||||||
|  |     } | ||||||
|  | #endif /* MAKECRCH */ | ||||||
| } | } | ||||||
| #else |  | ||||||
|  | #ifdef MAKECRCH | ||||||
|  | local void write_table(out, table) | ||||||
|  |     FILE *out; | ||||||
|  |     const unsigned long FAR *table; | ||||||
|  | { | ||||||
|  |     int n; | ||||||
|  |  | ||||||
|  |     for (n = 0; n < 256; n++) | ||||||
|  |         fprintf(out, "%s0x%08lxUL%s", n % 5 ? "" : "    ", table[n], | ||||||
|  |                 n == 255 ? "\n" : (n % 5 == 4 ? ",\n" : ", ")); | ||||||
|  | } | ||||||
|  | #endif /* MAKECRCH */ | ||||||
|  |  | ||||||
|  | #else /* !DYNAMIC_CRC_TABLE */ | ||||||
| /* ======================================================================== | /* ======================================================================== | ||||||
|  * Table of CRC-32's of all single-byte values (made by make_crc_table) |  * Tables of CRC-32s of all single-byte values, made by make_crc_table(). | ||||||
|  */ |  */ | ||||||
| local const uLongf crc_table[256] = { | #include "crc32.h" | ||||||
|   0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L, | #endif /* DYNAMIC_CRC_TABLE */ | ||||||
|   0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L, |  | ||||||
|   0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L, |  | ||||||
|   0x90bf1d91L, 0x1db71064L, 0x6ab020f2L, 0xf3b97148L, 0x84be41deL, |  | ||||||
|   0x1adad47dL, 0x6ddde4ebL, 0xf4d4b551L, 0x83d385c7L, 0x136c9856L, |  | ||||||
|   0x646ba8c0L, 0xfd62f97aL, 0x8a65c9ecL, 0x14015c4fL, 0x63066cd9L, |  | ||||||
|   0xfa0f3d63L, 0x8d080df5L, 0x3b6e20c8L, 0x4c69105eL, 0xd56041e4L, |  | ||||||
|   0xa2677172L, 0x3c03e4d1L, 0x4b04d447L, 0xd20d85fdL, 0xa50ab56bL, |  | ||||||
|   0x35b5a8faL, 0x42b2986cL, 0xdbbbc9d6L, 0xacbcf940L, 0x32d86ce3L, |  | ||||||
|   0x45df5c75L, 0xdcd60dcfL, 0xabd13d59L, 0x26d930acL, 0x51de003aL, |  | ||||||
|   0xc8d75180L, 0xbfd06116L, 0x21b4f4b5L, 0x56b3c423L, 0xcfba9599L, |  | ||||||
|   0xb8bda50fL, 0x2802b89eL, 0x5f058808L, 0xc60cd9b2L, 0xb10be924L, |  | ||||||
|   0x2f6f7c87L, 0x58684c11L, 0xc1611dabL, 0xb6662d3dL, 0x76dc4190L, |  | ||||||
|   0x01db7106L, 0x98d220bcL, 0xefd5102aL, 0x71b18589L, 0x06b6b51fL, |  | ||||||
|   0x9fbfe4a5L, 0xe8b8d433L, 0x7807c9a2L, 0x0f00f934L, 0x9609a88eL, |  | ||||||
|   0xe10e9818L, 0x7f6a0dbbL, 0x086d3d2dL, 0x91646c97L, 0xe6635c01L, |  | ||||||
|   0x6b6b51f4L, 0x1c6c6162L, 0x856530d8L, 0xf262004eL, 0x6c0695edL, |  | ||||||
|   0x1b01a57bL, 0x8208f4c1L, 0xf50fc457L, 0x65b0d9c6L, 0x12b7e950L, |  | ||||||
|   0x8bbeb8eaL, 0xfcb9887cL, 0x62dd1ddfL, 0x15da2d49L, 0x8cd37cf3L, |  | ||||||
|   0xfbd44c65L, 0x4db26158L, 0x3ab551ceL, 0xa3bc0074L, 0xd4bb30e2L, |  | ||||||
|   0x4adfa541L, 0x3dd895d7L, 0xa4d1c46dL, 0xd3d6f4fbL, 0x4369e96aL, |  | ||||||
|   0x346ed9fcL, 0xad678846L, 0xda60b8d0L, 0x44042d73L, 0x33031de5L, |  | ||||||
|   0xaa0a4c5fL, 0xdd0d7cc9L, 0x5005713cL, 0x270241aaL, 0xbe0b1010L, |  | ||||||
|   0xc90c2086L, 0x5768b525L, 0x206f85b3L, 0xb966d409L, 0xce61e49fL, |  | ||||||
|   0x5edef90eL, 0x29d9c998L, 0xb0d09822L, 0xc7d7a8b4L, 0x59b33d17L, |  | ||||||
|   0x2eb40d81L, 0xb7bd5c3bL, 0xc0ba6cadL, 0xedb88320L, 0x9abfb3b6L, |  | ||||||
|   0x03b6e20cL, 0x74b1d29aL, 0xead54739L, 0x9dd277afL, 0x04db2615L, |  | ||||||
|   0x73dc1683L, 0xe3630b12L, 0x94643b84L, 0x0d6d6a3eL, 0x7a6a5aa8L, |  | ||||||
|   0xe40ecf0bL, 0x9309ff9dL, 0x0a00ae27L, 0x7d079eb1L, 0xf00f9344L, |  | ||||||
|   0x8708a3d2L, 0x1e01f268L, 0x6906c2feL, 0xf762575dL, 0x806567cbL, |  | ||||||
|   0x196c3671L, 0x6e6b06e7L, 0xfed41b76L, 0x89d32be0L, 0x10da7a5aL, |  | ||||||
|   0x67dd4accL, 0xf9b9df6fL, 0x8ebeeff9L, 0x17b7be43L, 0x60b08ed5L, |  | ||||||
|   0xd6d6a3e8L, 0xa1d1937eL, 0x38d8c2c4L, 0x4fdff252L, 0xd1bb67f1L, |  | ||||||
|   0xa6bc5767L, 0x3fb506ddL, 0x48b2364bL, 0xd80d2bdaL, 0xaf0a1b4cL, |  | ||||||
|   0x36034af6L, 0x41047a60L, 0xdf60efc3L, 0xa867df55L, 0x316e8eefL, |  | ||||||
|   0x4669be79L, 0xcb61b38cL, 0xbc66831aL, 0x256fd2a0L, 0x5268e236L, |  | ||||||
|   0xcc0c7795L, 0xbb0b4703L, 0x220216b9L, 0x5505262fL, 0xc5ba3bbeL, |  | ||||||
|   0xb2bd0b28L, 0x2bb45a92L, 0x5cb36a04L, 0xc2d7ffa7L, 0xb5d0cf31L, |  | ||||||
|   0x2cd99e8bL, 0x5bdeae1dL, 0x9b64c2b0L, 0xec63f226L, 0x756aa39cL, |  | ||||||
|   0x026d930aL, 0x9c0906a9L, 0xeb0e363fL, 0x72076785L, 0x05005713L, |  | ||||||
|   0x95bf4a82L, 0xe2b87a14L, 0x7bb12baeL, 0x0cb61b38L, 0x92d28e9bL, |  | ||||||
|   0xe5d5be0dL, 0x7cdcefb7L, 0x0bdbdf21L, 0x86d3d2d4L, 0xf1d4e242L, |  | ||||||
|   0x68ddb3f8L, 0x1fda836eL, 0x81be16cdL, 0xf6b9265bL, 0x6fb077e1L, |  | ||||||
|   0x18b74777L, 0x88085ae6L, 0xff0f6a70L, 0x66063bcaL, 0x11010b5cL, |  | ||||||
|   0x8f659effL, 0xf862ae69L, 0x616bffd3L, 0x166ccf45L, 0xa00ae278L, |  | ||||||
|   0xd70dd2eeL, 0x4e048354L, 0x3903b3c2L, 0xa7672661L, 0xd06016f7L, |  | ||||||
|   0x4969474dL, 0x3e6e77dbL, 0xaed16a4aL, 0xd9d65adcL, 0x40df0b66L, |  | ||||||
|   0x37d83bf0L, 0xa9bcae53L, 0xdebb9ec5L, 0x47b2cf7fL, 0x30b5ffe9L, |  | ||||||
|   0xbdbdf21cL, 0xcabac28aL, 0x53b39330L, 0x24b4a3a6L, 0xbad03605L, |  | ||||||
|   0xcdd70693L, 0x54de5729L, 0x23d967bfL, 0xb3667a2eL, 0xc4614ab8L, |  | ||||||
|   0x5d681b02L, 0x2a6f2b94L, 0xb40bbe37L, 0xc30c8ea1L, 0x5a05df1bL, |  | ||||||
|   0x2d02ef8dL |  | ||||||
| }; |  | ||||||
| #endif |  | ||||||
|  |  | ||||||
| /* ========================================================================= | /* ========================================================================= | ||||||
|  * This function can be used by asm versions of crc32() |  * This function can be used by asm versions of crc32() | ||||||
|  */ |  */ | ||||||
| const uLongf * ZEXPORT get_crc_table() | const unsigned long FAR * ZEXPORT get_crc_table() | ||||||
| { | { | ||||||
| #ifdef DYNAMIC_CRC_TABLE | #ifdef DYNAMIC_CRC_TABLE | ||||||
|   if (crc_table_empty) make_crc_table(); |   if (crc_table_empty) make_crc_table(); | ||||||
| #endif | #endif /* DYNAMIC_CRC_TABLE */ | ||||||
|   return (const uLongf *)crc_table; |   return (const unsigned long FAR *)crc_table; | ||||||
| } | } | ||||||
|  |  | ||||||
| /* ========================================================================= */ | /* ========================================================================= */ | ||||||
| #define DO1(buf) crc = crc_table[((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8); | #define DO1 crc = crc_table[0][((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8) | ||||||
| #define DO2(buf)  DO1(buf); DO1(buf); | #define DO8 DO1; DO1; DO1; DO1; DO1; DO1; DO1; DO1 | ||||||
| #define DO4(buf)  DO2(buf); DO2(buf); |  | ||||||
| #define DO8(buf)  DO4(buf); DO4(buf); |  | ||||||
|  |  | ||||||
| /* ========================================================================= */ | /* ========================================================================= */ | ||||||
| uLong ZEXPORT crc32(crc, buf, len) | unsigned long ZEXPORT crc32(crc, buf, len) | ||||||
|     uLong crc; |     unsigned long crc; | ||||||
|     const Bytef *buf; |     const unsigned char FAR *buf; | ||||||
|     uInt len; |     unsigned len; | ||||||
| { | { | ||||||
|     if (buf == Z_NULL) return 0L; |     if (buf == Z_NULL) return 0UL; | ||||||
|  |  | ||||||
| #ifdef DYNAMIC_CRC_TABLE | #ifdef DYNAMIC_CRC_TABLE | ||||||
|     if (crc_table_empty) |     if (crc_table_empty) | ||||||
|       make_crc_table(); |         make_crc_table(); | ||||||
| #endif | #endif /* DYNAMIC_CRC_TABLE */ | ||||||
|     crc = crc ^ 0xffffffffL; |  | ||||||
|     while (len >= 8) | #ifdef BYFOUR | ||||||
|     { |     { | ||||||
|       DO8(buf); |         u4 endian; | ||||||
|       len -= 8; |  | ||||||
|  |         endian = 1; | ||||||
|  |         if (*((unsigned char *)(&endian))) | ||||||
|  |             return crc32_little(crc, buf, len); | ||||||
|  |         else | ||||||
|  |             return crc32_big(crc, buf, len); | ||||||
|  |     } | ||||||
|  | #else /* !BYFOUR */ | ||||||
|  |     crc = crc ^ 0xffffffffUL; | ||||||
|  |     while (len >= 8) { | ||||||
|  |         DO8; | ||||||
|  |         len -= 8; | ||||||
|     } |     } | ||||||
|     if (len) do { |     if (len) do { | ||||||
|       DO1(buf); |         DO1; | ||||||
|     } while (--len); |     } while (--len); | ||||||
|     return crc ^ 0xffffffffL; |     return crc ^ 0xffffffffUL; | ||||||
|  | #endif /* BYFOUR */ | ||||||
| } | } | ||||||
|  |  | ||||||
|  | #ifdef BYFOUR | ||||||
|  |  | ||||||
|  | /* ========================================================================= */ | ||||||
|  | #define DOLIT4 c ^= *buf4++; \ | ||||||
|  |         c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \ | ||||||
|  |             crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24] | ||||||
|  | #define DOLIT32 DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4 | ||||||
|  |  | ||||||
|  | /* ========================================================================= */ | ||||||
|  | local unsigned long crc32_little(crc, buf, len) | ||||||
|  |     unsigned long crc; | ||||||
|  |     const unsigned char FAR *buf; | ||||||
|  |     unsigned len; | ||||||
|  | { | ||||||
|  |     register u4 c; | ||||||
|  |     register const u4 FAR *buf4; | ||||||
|  |  | ||||||
|  |     c = (u4)crc; | ||||||
|  |     c = ~c; | ||||||
|  |     while (len && ((int)buf & 3)) { | ||||||
|  |         c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8); | ||||||
|  |         len--; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     buf4 = (const u4 FAR *)buf; | ||||||
|  |     while (len >= 32) { | ||||||
|  |         DOLIT32; | ||||||
|  |         len -= 32; | ||||||
|  |     } | ||||||
|  |     while (len >= 4) { | ||||||
|  |         DOLIT4; | ||||||
|  |         len -= 4; | ||||||
|  |     } | ||||||
|  |     buf = (const unsigned char FAR *)buf4; | ||||||
|  |  | ||||||
|  |     if (len) do { | ||||||
|  |         c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8); | ||||||
|  |     } while (--len); | ||||||
|  |     c = ~c; | ||||||
|  |     return (unsigned long)c; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* ========================================================================= */ | ||||||
|  | #define DOBIG4 c ^= *++buf4; \ | ||||||
|  |         c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \ | ||||||
|  |             crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24] | ||||||
|  | #define DOBIG32 DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4 | ||||||
|  |  | ||||||
|  | /* ========================================================================= */ | ||||||
|  | local unsigned long crc32_big(crc, buf, len) | ||||||
|  |     unsigned long crc; | ||||||
|  |     const unsigned char FAR *buf; | ||||||
|  |     unsigned len; | ||||||
|  | { | ||||||
|  |     register u4 c; | ||||||
|  |     register const u4 FAR *buf4; | ||||||
|  |  | ||||||
|  |     c = REV((u4)crc); | ||||||
|  |     c = ~c; | ||||||
|  |     while (len && ((int)buf & 3)) { | ||||||
|  |         c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8); | ||||||
|  |         len--; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     buf4 = (const u4 FAR *)buf; | ||||||
|  |     buf4--; | ||||||
|  |     while (len >= 32) { | ||||||
|  |         DOBIG32; | ||||||
|  |         len -= 32; | ||||||
|  |     } | ||||||
|  |     while (len >= 4) { | ||||||
|  |         DOBIG4; | ||||||
|  |         len -= 4; | ||||||
|  |     } | ||||||
|  |     buf4++; | ||||||
|  |     buf = (const unsigned char FAR *)buf4; | ||||||
|  |  | ||||||
|  |     if (len) do { | ||||||
|  |         c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8); | ||||||
|  |     } while (--len); | ||||||
|  |     c = ~c; | ||||||
|  |     return (unsigned long)(REV(c)); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | #endif /* BYFOUR */ | ||||||
|   | |||||||
							
								
								
									
										441
									
								
								crc32.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										441
									
								
								crc32.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,441 @@ | |||||||
|  | /* crc32.h -- tables for rapid CRC calculation | ||||||
|  |  * Generated automatically by crc32.c | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | local const unsigned long FAR crc_table[TBLS][256] = | ||||||
|  | { | ||||||
|  |   { | ||||||
|  |     0x00000000UL, 0x77073096UL, 0xee0e612cUL, 0x990951baUL, 0x076dc419UL, | ||||||
|  |     0x706af48fUL, 0xe963a535UL, 0x9e6495a3UL, 0x0edb8832UL, 0x79dcb8a4UL, | ||||||
|  |     0xe0d5e91eUL, 0x97d2d988UL, 0x09b64c2bUL, 0x7eb17cbdUL, 0xe7b82d07UL, | ||||||
|  |     0x90bf1d91UL, 0x1db71064UL, 0x6ab020f2UL, 0xf3b97148UL, 0x84be41deUL, | ||||||
|  |     0x1adad47dUL, 0x6ddde4ebUL, 0xf4d4b551UL, 0x83d385c7UL, 0x136c9856UL, | ||||||
|  |     0x646ba8c0UL, 0xfd62f97aUL, 0x8a65c9ecUL, 0x14015c4fUL, 0x63066cd9UL, | ||||||
|  |     0xfa0f3d63UL, 0x8d080df5UL, 0x3b6e20c8UL, 0x4c69105eUL, 0xd56041e4UL, | ||||||
|  |     0xa2677172UL, 0x3c03e4d1UL, 0x4b04d447UL, 0xd20d85fdUL, 0xa50ab56bUL, | ||||||
|  |     0x35b5a8faUL, 0x42b2986cUL, 0xdbbbc9d6UL, 0xacbcf940UL, 0x32d86ce3UL, | ||||||
|  |     0x45df5c75UL, 0xdcd60dcfUL, 0xabd13d59UL, 0x26d930acUL, 0x51de003aUL, | ||||||
|  |     0xc8d75180UL, 0xbfd06116UL, 0x21b4f4b5UL, 0x56b3c423UL, 0xcfba9599UL, | ||||||
|  |     0xb8bda50fUL, 0x2802b89eUL, 0x5f058808UL, 0xc60cd9b2UL, 0xb10be924UL, | ||||||
|  |     0x2f6f7c87UL, 0x58684c11UL, 0xc1611dabUL, 0xb6662d3dUL, 0x76dc4190UL, | ||||||
|  |     0x01db7106UL, 0x98d220bcUL, 0xefd5102aUL, 0x71b18589UL, 0x06b6b51fUL, | ||||||
|  |     0x9fbfe4a5UL, 0xe8b8d433UL, 0x7807c9a2UL, 0x0f00f934UL, 0x9609a88eUL, | ||||||
|  |     0xe10e9818UL, 0x7f6a0dbbUL, 0x086d3d2dUL, 0x91646c97UL, 0xe6635c01UL, | ||||||
|  |     0x6b6b51f4UL, 0x1c6c6162UL, 0x856530d8UL, 0xf262004eUL, 0x6c0695edUL, | ||||||
|  |     0x1b01a57bUL, 0x8208f4c1UL, 0xf50fc457UL, 0x65b0d9c6UL, 0x12b7e950UL, | ||||||
|  |     0x8bbeb8eaUL, 0xfcb9887cUL, 0x62dd1ddfUL, 0x15da2d49UL, 0x8cd37cf3UL, | ||||||
|  |     0xfbd44c65UL, 0x4db26158UL, 0x3ab551ceUL, 0xa3bc0074UL, 0xd4bb30e2UL, | ||||||
|  |     0x4adfa541UL, 0x3dd895d7UL, 0xa4d1c46dUL, 0xd3d6f4fbUL, 0x4369e96aUL, | ||||||
|  |     0x346ed9fcUL, 0xad678846UL, 0xda60b8d0UL, 0x44042d73UL, 0x33031de5UL, | ||||||
|  |     0xaa0a4c5fUL, 0xdd0d7cc9UL, 0x5005713cUL, 0x270241aaUL, 0xbe0b1010UL, | ||||||
|  |     0xc90c2086UL, 0x5768b525UL, 0x206f85b3UL, 0xb966d409UL, 0xce61e49fUL, | ||||||
|  |     0x5edef90eUL, 0x29d9c998UL, 0xb0d09822UL, 0xc7d7a8b4UL, 0x59b33d17UL, | ||||||
|  |     0x2eb40d81UL, 0xb7bd5c3bUL, 0xc0ba6cadUL, 0xedb88320UL, 0x9abfb3b6UL, | ||||||
|  |     0x03b6e20cUL, 0x74b1d29aUL, 0xead54739UL, 0x9dd277afUL, 0x04db2615UL, | ||||||
|  |     0x73dc1683UL, 0xe3630b12UL, 0x94643b84UL, 0x0d6d6a3eUL, 0x7a6a5aa8UL, | ||||||
|  |     0xe40ecf0bUL, 0x9309ff9dUL, 0x0a00ae27UL, 0x7d079eb1UL, 0xf00f9344UL, | ||||||
|  |     0x8708a3d2UL, 0x1e01f268UL, 0x6906c2feUL, 0xf762575dUL, 0x806567cbUL, | ||||||
|  |     0x196c3671UL, 0x6e6b06e7UL, 0xfed41b76UL, 0x89d32be0UL, 0x10da7a5aUL, | ||||||
|  |     0x67dd4accUL, 0xf9b9df6fUL, 0x8ebeeff9UL, 0x17b7be43UL, 0x60b08ed5UL, | ||||||
|  |     0xd6d6a3e8UL, 0xa1d1937eUL, 0x38d8c2c4UL, 0x4fdff252UL, 0xd1bb67f1UL, | ||||||
|  |     0xa6bc5767UL, 0x3fb506ddUL, 0x48b2364bUL, 0xd80d2bdaUL, 0xaf0a1b4cUL, | ||||||
|  |     0x36034af6UL, 0x41047a60UL, 0xdf60efc3UL, 0xa867df55UL, 0x316e8eefUL, | ||||||
|  |     0x4669be79UL, 0xcb61b38cUL, 0xbc66831aUL, 0x256fd2a0UL, 0x5268e236UL, | ||||||
|  |     0xcc0c7795UL, 0xbb0b4703UL, 0x220216b9UL, 0x5505262fUL, 0xc5ba3bbeUL, | ||||||
|  |     0xb2bd0b28UL, 0x2bb45a92UL, 0x5cb36a04UL, 0xc2d7ffa7UL, 0xb5d0cf31UL, | ||||||
|  |     0x2cd99e8bUL, 0x5bdeae1dUL, 0x9b64c2b0UL, 0xec63f226UL, 0x756aa39cUL, | ||||||
|  |     0x026d930aUL, 0x9c0906a9UL, 0xeb0e363fUL, 0x72076785UL, 0x05005713UL, | ||||||
|  |     0x95bf4a82UL, 0xe2b87a14UL, 0x7bb12baeUL, 0x0cb61b38UL, 0x92d28e9bUL, | ||||||
|  |     0xe5d5be0dUL, 0x7cdcefb7UL, 0x0bdbdf21UL, 0x86d3d2d4UL, 0xf1d4e242UL, | ||||||
|  |     0x68ddb3f8UL, 0x1fda836eUL, 0x81be16cdUL, 0xf6b9265bUL, 0x6fb077e1UL, | ||||||
|  |     0x18b74777UL, 0x88085ae6UL, 0xff0f6a70UL, 0x66063bcaUL, 0x11010b5cUL, | ||||||
|  |     0x8f659effUL, 0xf862ae69UL, 0x616bffd3UL, 0x166ccf45UL, 0xa00ae278UL, | ||||||
|  |     0xd70dd2eeUL, 0x4e048354UL, 0x3903b3c2UL, 0xa7672661UL, 0xd06016f7UL, | ||||||
|  |     0x4969474dUL, 0x3e6e77dbUL, 0xaed16a4aUL, 0xd9d65adcUL, 0x40df0b66UL, | ||||||
|  |     0x37d83bf0UL, 0xa9bcae53UL, 0xdebb9ec5UL, 0x47b2cf7fUL, 0x30b5ffe9UL, | ||||||
|  |     0xbdbdf21cUL, 0xcabac28aUL, 0x53b39330UL, 0x24b4a3a6UL, 0xbad03605UL, | ||||||
|  |     0xcdd70693UL, 0x54de5729UL, 0x23d967bfUL, 0xb3667a2eUL, 0xc4614ab8UL, | ||||||
|  |     0x5d681b02UL, 0x2a6f2b94UL, 0xb40bbe37UL, 0xc30c8ea1UL, 0x5a05df1bUL, | ||||||
|  |     0x2d02ef8dUL | ||||||
|  | #ifdef BYFOUR | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     0x00000000UL, 0x191b3141UL, 0x32366282UL, 0x2b2d53c3UL, 0x646cc504UL, | ||||||
|  |     0x7d77f445UL, 0x565aa786UL, 0x4f4196c7UL, 0xc8d98a08UL, 0xd1c2bb49UL, | ||||||
|  |     0xfaefe88aUL, 0xe3f4d9cbUL, 0xacb54f0cUL, 0xb5ae7e4dUL, 0x9e832d8eUL, | ||||||
|  |     0x87981ccfUL, 0x4ac21251UL, 0x53d92310UL, 0x78f470d3UL, 0x61ef4192UL, | ||||||
|  |     0x2eaed755UL, 0x37b5e614UL, 0x1c98b5d7UL, 0x05838496UL, 0x821b9859UL, | ||||||
|  |     0x9b00a918UL, 0xb02dfadbUL, 0xa936cb9aUL, 0xe6775d5dUL, 0xff6c6c1cUL, | ||||||
|  |     0xd4413fdfUL, 0xcd5a0e9eUL, 0x958424a2UL, 0x8c9f15e3UL, 0xa7b24620UL, | ||||||
|  |     0xbea97761UL, 0xf1e8e1a6UL, 0xe8f3d0e7UL, 0xc3de8324UL, 0xdac5b265UL, | ||||||
|  |     0x5d5daeaaUL, 0x44469febUL, 0x6f6bcc28UL, 0x7670fd69UL, 0x39316baeUL, | ||||||
|  |     0x202a5aefUL, 0x0b07092cUL, 0x121c386dUL, 0xdf4636f3UL, 0xc65d07b2UL, | ||||||
|  |     0xed705471UL, 0xf46b6530UL, 0xbb2af3f7UL, 0xa231c2b6UL, 0x891c9175UL, | ||||||
|  |     0x9007a034UL, 0x179fbcfbUL, 0x0e848dbaUL, 0x25a9de79UL, 0x3cb2ef38UL, | ||||||
|  |     0x73f379ffUL, 0x6ae848beUL, 0x41c51b7dUL, 0x58de2a3cUL, 0xf0794f05UL, | ||||||
|  |     0xe9627e44UL, 0xc24f2d87UL, 0xdb541cc6UL, 0x94158a01UL, 0x8d0ebb40UL, | ||||||
|  |     0xa623e883UL, 0xbf38d9c2UL, 0x38a0c50dUL, 0x21bbf44cUL, 0x0a96a78fUL, | ||||||
|  |     0x138d96ceUL, 0x5ccc0009UL, 0x45d73148UL, 0x6efa628bUL, 0x77e153caUL, | ||||||
|  |     0xbabb5d54UL, 0xa3a06c15UL, 0x888d3fd6UL, 0x91960e97UL, 0xded79850UL, | ||||||
|  |     0xc7cca911UL, 0xece1fad2UL, 0xf5facb93UL, 0x7262d75cUL, 0x6b79e61dUL, | ||||||
|  |     0x4054b5deUL, 0x594f849fUL, 0x160e1258UL, 0x0f152319UL, 0x243870daUL, | ||||||
|  |     0x3d23419bUL, 0x65fd6ba7UL, 0x7ce65ae6UL, 0x57cb0925UL, 0x4ed03864UL, | ||||||
|  |     0x0191aea3UL, 0x188a9fe2UL, 0x33a7cc21UL, 0x2abcfd60UL, 0xad24e1afUL, | ||||||
|  |     0xb43fd0eeUL, 0x9f12832dUL, 0x8609b26cUL, 0xc94824abUL, 0xd05315eaUL, | ||||||
|  |     0xfb7e4629UL, 0xe2657768UL, 0x2f3f79f6UL, 0x362448b7UL, 0x1d091b74UL, | ||||||
|  |     0x04122a35UL, 0x4b53bcf2UL, 0x52488db3UL, 0x7965de70UL, 0x607eef31UL, | ||||||
|  |     0xe7e6f3feUL, 0xfefdc2bfUL, 0xd5d0917cUL, 0xcccba03dUL, 0x838a36faUL, | ||||||
|  |     0x9a9107bbUL, 0xb1bc5478UL, 0xa8a76539UL, 0x3b83984bUL, 0x2298a90aUL, | ||||||
|  |     0x09b5fac9UL, 0x10aecb88UL, 0x5fef5d4fUL, 0x46f46c0eUL, 0x6dd93fcdUL, | ||||||
|  |     0x74c20e8cUL, 0xf35a1243UL, 0xea412302UL, 0xc16c70c1UL, 0xd8774180UL, | ||||||
|  |     0x9736d747UL, 0x8e2de606UL, 0xa500b5c5UL, 0xbc1b8484UL, 0x71418a1aUL, | ||||||
|  |     0x685abb5bUL, 0x4377e898UL, 0x5a6cd9d9UL, 0x152d4f1eUL, 0x0c367e5fUL, | ||||||
|  |     0x271b2d9cUL, 0x3e001cddUL, 0xb9980012UL, 0xa0833153UL, 0x8bae6290UL, | ||||||
|  |     0x92b553d1UL, 0xddf4c516UL, 0xc4eff457UL, 0xefc2a794UL, 0xf6d996d5UL, | ||||||
|  |     0xae07bce9UL, 0xb71c8da8UL, 0x9c31de6bUL, 0x852aef2aUL, 0xca6b79edUL, | ||||||
|  |     0xd37048acUL, 0xf85d1b6fUL, 0xe1462a2eUL, 0x66de36e1UL, 0x7fc507a0UL, | ||||||
|  |     0x54e85463UL, 0x4df36522UL, 0x02b2f3e5UL, 0x1ba9c2a4UL, 0x30849167UL, | ||||||
|  |     0x299fa026UL, 0xe4c5aeb8UL, 0xfdde9ff9UL, 0xd6f3cc3aUL, 0xcfe8fd7bUL, | ||||||
|  |     0x80a96bbcUL, 0x99b25afdUL, 0xb29f093eUL, 0xab84387fUL, 0x2c1c24b0UL, | ||||||
|  |     0x350715f1UL, 0x1e2a4632UL, 0x07317773UL, 0x4870e1b4UL, 0x516bd0f5UL, | ||||||
|  |     0x7a468336UL, 0x635db277UL, 0xcbfad74eUL, 0xd2e1e60fUL, 0xf9ccb5ccUL, | ||||||
|  |     0xe0d7848dUL, 0xaf96124aUL, 0xb68d230bUL, 0x9da070c8UL, 0x84bb4189UL, | ||||||
|  |     0x03235d46UL, 0x1a386c07UL, 0x31153fc4UL, 0x280e0e85UL, 0x674f9842UL, | ||||||
|  |     0x7e54a903UL, 0x5579fac0UL, 0x4c62cb81UL, 0x8138c51fUL, 0x9823f45eUL, | ||||||
|  |     0xb30ea79dUL, 0xaa1596dcUL, 0xe554001bUL, 0xfc4f315aUL, 0xd7626299UL, | ||||||
|  |     0xce7953d8UL, 0x49e14f17UL, 0x50fa7e56UL, 0x7bd72d95UL, 0x62cc1cd4UL, | ||||||
|  |     0x2d8d8a13UL, 0x3496bb52UL, 0x1fbbe891UL, 0x06a0d9d0UL, 0x5e7ef3ecUL, | ||||||
|  |     0x4765c2adUL, 0x6c48916eUL, 0x7553a02fUL, 0x3a1236e8UL, 0x230907a9UL, | ||||||
|  |     0x0824546aUL, 0x113f652bUL, 0x96a779e4UL, 0x8fbc48a5UL, 0xa4911b66UL, | ||||||
|  |     0xbd8a2a27UL, 0xf2cbbce0UL, 0xebd08da1UL, 0xc0fdde62UL, 0xd9e6ef23UL, | ||||||
|  |     0x14bce1bdUL, 0x0da7d0fcUL, 0x268a833fUL, 0x3f91b27eUL, 0x70d024b9UL, | ||||||
|  |     0x69cb15f8UL, 0x42e6463bUL, 0x5bfd777aUL, 0xdc656bb5UL, 0xc57e5af4UL, | ||||||
|  |     0xee530937UL, 0xf7483876UL, 0xb809aeb1UL, 0xa1129ff0UL, 0x8a3fcc33UL, | ||||||
|  |     0x9324fd72UL | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     0x00000000UL, 0x01c26a37UL, 0x0384d46eUL, 0x0246be59UL, 0x0709a8dcUL, | ||||||
|  |     0x06cbc2ebUL, 0x048d7cb2UL, 0x054f1685UL, 0x0e1351b8UL, 0x0fd13b8fUL, | ||||||
|  |     0x0d9785d6UL, 0x0c55efe1UL, 0x091af964UL, 0x08d89353UL, 0x0a9e2d0aUL, | ||||||
|  |     0x0b5c473dUL, 0x1c26a370UL, 0x1de4c947UL, 0x1fa2771eUL, 0x1e601d29UL, | ||||||
|  |     0x1b2f0bacUL, 0x1aed619bUL, 0x18abdfc2UL, 0x1969b5f5UL, 0x1235f2c8UL, | ||||||
|  |     0x13f798ffUL, 0x11b126a6UL, 0x10734c91UL, 0x153c5a14UL, 0x14fe3023UL, | ||||||
|  |     0x16b88e7aUL, 0x177ae44dUL, 0x384d46e0UL, 0x398f2cd7UL, 0x3bc9928eUL, | ||||||
|  |     0x3a0bf8b9UL, 0x3f44ee3cUL, 0x3e86840bUL, 0x3cc03a52UL, 0x3d025065UL, | ||||||
|  |     0x365e1758UL, 0x379c7d6fUL, 0x35dac336UL, 0x3418a901UL, 0x3157bf84UL, | ||||||
|  |     0x3095d5b3UL, 0x32d36beaUL, 0x331101ddUL, 0x246be590UL, 0x25a98fa7UL, | ||||||
|  |     0x27ef31feUL, 0x262d5bc9UL, 0x23624d4cUL, 0x22a0277bUL, 0x20e69922UL, | ||||||
|  |     0x2124f315UL, 0x2a78b428UL, 0x2bbade1fUL, 0x29fc6046UL, 0x283e0a71UL, | ||||||
|  |     0x2d711cf4UL, 0x2cb376c3UL, 0x2ef5c89aUL, 0x2f37a2adUL, 0x709a8dc0UL, | ||||||
|  |     0x7158e7f7UL, 0x731e59aeUL, 0x72dc3399UL, 0x7793251cUL, 0x76514f2bUL, | ||||||
|  |     0x7417f172UL, 0x75d59b45UL, 0x7e89dc78UL, 0x7f4bb64fUL, 0x7d0d0816UL, | ||||||
|  |     0x7ccf6221UL, 0x798074a4UL, 0x78421e93UL, 0x7a04a0caUL, 0x7bc6cafdUL, | ||||||
|  |     0x6cbc2eb0UL, 0x6d7e4487UL, 0x6f38fadeUL, 0x6efa90e9UL, 0x6bb5866cUL, | ||||||
|  |     0x6a77ec5bUL, 0x68315202UL, 0x69f33835UL, 0x62af7f08UL, 0x636d153fUL, | ||||||
|  |     0x612bab66UL, 0x60e9c151UL, 0x65a6d7d4UL, 0x6464bde3UL, 0x662203baUL, | ||||||
|  |     0x67e0698dUL, 0x48d7cb20UL, 0x4915a117UL, 0x4b531f4eUL, 0x4a917579UL, | ||||||
|  |     0x4fde63fcUL, 0x4e1c09cbUL, 0x4c5ab792UL, 0x4d98dda5UL, 0x46c49a98UL, | ||||||
|  |     0x4706f0afUL, 0x45404ef6UL, 0x448224c1UL, 0x41cd3244UL, 0x400f5873UL, | ||||||
|  |     0x4249e62aUL, 0x438b8c1dUL, 0x54f16850UL, 0x55330267UL, 0x5775bc3eUL, | ||||||
|  |     0x56b7d609UL, 0x53f8c08cUL, 0x523aaabbUL, 0x507c14e2UL, 0x51be7ed5UL, | ||||||
|  |     0x5ae239e8UL, 0x5b2053dfUL, 0x5966ed86UL, 0x58a487b1UL, 0x5deb9134UL, | ||||||
|  |     0x5c29fb03UL, 0x5e6f455aUL, 0x5fad2f6dUL, 0xe1351b80UL, 0xe0f771b7UL, | ||||||
|  |     0xe2b1cfeeUL, 0xe373a5d9UL, 0xe63cb35cUL, 0xe7fed96bUL, 0xe5b86732UL, | ||||||
|  |     0xe47a0d05UL, 0xef264a38UL, 0xeee4200fUL, 0xeca29e56UL, 0xed60f461UL, | ||||||
|  |     0xe82fe2e4UL, 0xe9ed88d3UL, 0xebab368aUL, 0xea695cbdUL, 0xfd13b8f0UL, | ||||||
|  |     0xfcd1d2c7UL, 0xfe976c9eUL, 0xff5506a9UL, 0xfa1a102cUL, 0xfbd87a1bUL, | ||||||
|  |     0xf99ec442UL, 0xf85cae75UL, 0xf300e948UL, 0xf2c2837fUL, 0xf0843d26UL, | ||||||
|  |     0xf1465711UL, 0xf4094194UL, 0xf5cb2ba3UL, 0xf78d95faUL, 0xf64fffcdUL, | ||||||
|  |     0xd9785d60UL, 0xd8ba3757UL, 0xdafc890eUL, 0xdb3ee339UL, 0xde71f5bcUL, | ||||||
|  |     0xdfb39f8bUL, 0xddf521d2UL, 0xdc374be5UL, 0xd76b0cd8UL, 0xd6a966efUL, | ||||||
|  |     0xd4efd8b6UL, 0xd52db281UL, 0xd062a404UL, 0xd1a0ce33UL, 0xd3e6706aUL, | ||||||
|  |     0xd2241a5dUL, 0xc55efe10UL, 0xc49c9427UL, 0xc6da2a7eUL, 0xc7184049UL, | ||||||
|  |     0xc25756ccUL, 0xc3953cfbUL, 0xc1d382a2UL, 0xc011e895UL, 0xcb4dafa8UL, | ||||||
|  |     0xca8fc59fUL, 0xc8c97bc6UL, 0xc90b11f1UL, 0xcc440774UL, 0xcd866d43UL, | ||||||
|  |     0xcfc0d31aUL, 0xce02b92dUL, 0x91af9640UL, 0x906dfc77UL, 0x922b422eUL, | ||||||
|  |     0x93e92819UL, 0x96a63e9cUL, 0x976454abUL, 0x9522eaf2UL, 0x94e080c5UL, | ||||||
|  |     0x9fbcc7f8UL, 0x9e7eadcfUL, 0x9c381396UL, 0x9dfa79a1UL, 0x98b56f24UL, | ||||||
|  |     0x99770513UL, 0x9b31bb4aUL, 0x9af3d17dUL, 0x8d893530UL, 0x8c4b5f07UL, | ||||||
|  |     0x8e0de15eUL, 0x8fcf8b69UL, 0x8a809decUL, 0x8b42f7dbUL, 0x89044982UL, | ||||||
|  |     0x88c623b5UL, 0x839a6488UL, 0x82580ebfUL, 0x801eb0e6UL, 0x81dcdad1UL, | ||||||
|  |     0x8493cc54UL, 0x8551a663UL, 0x8717183aUL, 0x86d5720dUL, 0xa9e2d0a0UL, | ||||||
|  |     0xa820ba97UL, 0xaa6604ceUL, 0xaba46ef9UL, 0xaeeb787cUL, 0xaf29124bUL, | ||||||
|  |     0xad6fac12UL, 0xacadc625UL, 0xa7f18118UL, 0xa633eb2fUL, 0xa4755576UL, | ||||||
|  |     0xa5b73f41UL, 0xa0f829c4UL, 0xa13a43f3UL, 0xa37cfdaaUL, 0xa2be979dUL, | ||||||
|  |     0xb5c473d0UL, 0xb40619e7UL, 0xb640a7beUL, 0xb782cd89UL, 0xb2cddb0cUL, | ||||||
|  |     0xb30fb13bUL, 0xb1490f62UL, 0xb08b6555UL, 0xbbd72268UL, 0xba15485fUL, | ||||||
|  |     0xb853f606UL, 0xb9919c31UL, 0xbcde8ab4UL, 0xbd1ce083UL, 0xbf5a5edaUL, | ||||||
|  |     0xbe9834edUL | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     0x00000000UL, 0xb8bc6765UL, 0xaa09c88bUL, 0x12b5afeeUL, 0x8f629757UL, | ||||||
|  |     0x37def032UL, 0x256b5fdcUL, 0x9dd738b9UL, 0xc5b428efUL, 0x7d084f8aUL, | ||||||
|  |     0x6fbde064UL, 0xd7018701UL, 0x4ad6bfb8UL, 0xf26ad8ddUL, 0xe0df7733UL, | ||||||
|  |     0x58631056UL, 0x5019579fUL, 0xe8a530faUL, 0xfa109f14UL, 0x42acf871UL, | ||||||
|  |     0xdf7bc0c8UL, 0x67c7a7adUL, 0x75720843UL, 0xcdce6f26UL, 0x95ad7f70UL, | ||||||
|  |     0x2d111815UL, 0x3fa4b7fbUL, 0x8718d09eUL, 0x1acfe827UL, 0xa2738f42UL, | ||||||
|  |     0xb0c620acUL, 0x087a47c9UL, 0xa032af3eUL, 0x188ec85bUL, 0x0a3b67b5UL, | ||||||
|  |     0xb28700d0UL, 0x2f503869UL, 0x97ec5f0cUL, 0x8559f0e2UL, 0x3de59787UL, | ||||||
|  |     0x658687d1UL, 0xdd3ae0b4UL, 0xcf8f4f5aUL, 0x7733283fUL, 0xeae41086UL, | ||||||
|  |     0x525877e3UL, 0x40edd80dUL, 0xf851bf68UL, 0xf02bf8a1UL, 0x48979fc4UL, | ||||||
|  |     0x5a22302aUL, 0xe29e574fUL, 0x7f496ff6UL, 0xc7f50893UL, 0xd540a77dUL, | ||||||
|  |     0x6dfcc018UL, 0x359fd04eUL, 0x8d23b72bUL, 0x9f9618c5UL, 0x272a7fa0UL, | ||||||
|  |     0xbafd4719UL, 0x0241207cUL, 0x10f48f92UL, 0xa848e8f7UL, 0x9b14583dUL, | ||||||
|  |     0x23a83f58UL, 0x311d90b6UL, 0x89a1f7d3UL, 0x1476cf6aUL, 0xaccaa80fUL, | ||||||
|  |     0xbe7f07e1UL, 0x06c36084UL, 0x5ea070d2UL, 0xe61c17b7UL, 0xf4a9b859UL, | ||||||
|  |     0x4c15df3cUL, 0xd1c2e785UL, 0x697e80e0UL, 0x7bcb2f0eUL, 0xc377486bUL, | ||||||
|  |     0xcb0d0fa2UL, 0x73b168c7UL, 0x6104c729UL, 0xd9b8a04cUL, 0x446f98f5UL, | ||||||
|  |     0xfcd3ff90UL, 0xee66507eUL, 0x56da371bUL, 0x0eb9274dUL, 0xb6054028UL, | ||||||
|  |     0xa4b0efc6UL, 0x1c0c88a3UL, 0x81dbb01aUL, 0x3967d77fUL, 0x2bd27891UL, | ||||||
|  |     0x936e1ff4UL, 0x3b26f703UL, 0x839a9066UL, 0x912f3f88UL, 0x299358edUL, | ||||||
|  |     0xb4446054UL, 0x0cf80731UL, 0x1e4da8dfUL, 0xa6f1cfbaUL, 0xfe92dfecUL, | ||||||
|  |     0x462eb889UL, 0x549b1767UL, 0xec277002UL, 0x71f048bbUL, 0xc94c2fdeUL, | ||||||
|  |     0xdbf98030UL, 0x6345e755UL, 0x6b3fa09cUL, 0xd383c7f9UL, 0xc1366817UL, | ||||||
|  |     0x798a0f72UL, 0xe45d37cbUL, 0x5ce150aeUL, 0x4e54ff40UL, 0xf6e89825UL, | ||||||
|  |     0xae8b8873UL, 0x1637ef16UL, 0x048240f8UL, 0xbc3e279dUL, 0x21e91f24UL, | ||||||
|  |     0x99557841UL, 0x8be0d7afUL, 0x335cb0caUL, 0xed59b63bUL, 0x55e5d15eUL, | ||||||
|  |     0x47507eb0UL, 0xffec19d5UL, 0x623b216cUL, 0xda874609UL, 0xc832e9e7UL, | ||||||
|  |     0x708e8e82UL, 0x28ed9ed4UL, 0x9051f9b1UL, 0x82e4565fUL, 0x3a58313aUL, | ||||||
|  |     0xa78f0983UL, 0x1f336ee6UL, 0x0d86c108UL, 0xb53aa66dUL, 0xbd40e1a4UL, | ||||||
|  |     0x05fc86c1UL, 0x1749292fUL, 0xaff54e4aUL, 0x322276f3UL, 0x8a9e1196UL, | ||||||
|  |     0x982bbe78UL, 0x2097d91dUL, 0x78f4c94bUL, 0xc048ae2eUL, 0xd2fd01c0UL, | ||||||
|  |     0x6a4166a5UL, 0xf7965e1cUL, 0x4f2a3979UL, 0x5d9f9697UL, 0xe523f1f2UL, | ||||||
|  |     0x4d6b1905UL, 0xf5d77e60UL, 0xe762d18eUL, 0x5fdeb6ebUL, 0xc2098e52UL, | ||||||
|  |     0x7ab5e937UL, 0x680046d9UL, 0xd0bc21bcUL, 0x88df31eaUL, 0x3063568fUL, | ||||||
|  |     0x22d6f961UL, 0x9a6a9e04UL, 0x07bda6bdUL, 0xbf01c1d8UL, 0xadb46e36UL, | ||||||
|  |     0x15080953UL, 0x1d724e9aUL, 0xa5ce29ffUL, 0xb77b8611UL, 0x0fc7e174UL, | ||||||
|  |     0x9210d9cdUL, 0x2aacbea8UL, 0x38191146UL, 0x80a57623UL, 0xd8c66675UL, | ||||||
|  |     0x607a0110UL, 0x72cfaefeUL, 0xca73c99bUL, 0x57a4f122UL, 0xef189647UL, | ||||||
|  |     0xfdad39a9UL, 0x45115eccUL, 0x764dee06UL, 0xcef18963UL, 0xdc44268dUL, | ||||||
|  |     0x64f841e8UL, 0xf92f7951UL, 0x41931e34UL, 0x5326b1daUL, 0xeb9ad6bfUL, | ||||||
|  |     0xb3f9c6e9UL, 0x0b45a18cUL, 0x19f00e62UL, 0xa14c6907UL, 0x3c9b51beUL, | ||||||
|  |     0x842736dbUL, 0x96929935UL, 0x2e2efe50UL, 0x2654b999UL, 0x9ee8defcUL, | ||||||
|  |     0x8c5d7112UL, 0x34e11677UL, 0xa9362eceUL, 0x118a49abUL, 0x033fe645UL, | ||||||
|  |     0xbb838120UL, 0xe3e09176UL, 0x5b5cf613UL, 0x49e959fdUL, 0xf1553e98UL, | ||||||
|  |     0x6c820621UL, 0xd43e6144UL, 0xc68bceaaUL, 0x7e37a9cfUL, 0xd67f4138UL, | ||||||
|  |     0x6ec3265dUL, 0x7c7689b3UL, 0xc4caeed6UL, 0x591dd66fUL, 0xe1a1b10aUL, | ||||||
|  |     0xf3141ee4UL, 0x4ba87981UL, 0x13cb69d7UL, 0xab770eb2UL, 0xb9c2a15cUL, | ||||||
|  |     0x017ec639UL, 0x9ca9fe80UL, 0x241599e5UL, 0x36a0360bUL, 0x8e1c516eUL, | ||||||
|  |     0x866616a7UL, 0x3eda71c2UL, 0x2c6fde2cUL, 0x94d3b949UL, 0x090481f0UL, | ||||||
|  |     0xb1b8e695UL, 0xa30d497bUL, 0x1bb12e1eUL, 0x43d23e48UL, 0xfb6e592dUL, | ||||||
|  |     0xe9dbf6c3UL, 0x516791a6UL, 0xccb0a91fUL, 0x740cce7aUL, 0x66b96194UL, | ||||||
|  |     0xde0506f1UL | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     0x00000000UL, 0x96300777UL, 0x2c610eeeUL, 0xba510999UL, 0x19c46d07UL, | ||||||
|  |     0x8ff46a70UL, 0x35a563e9UL, 0xa395649eUL, 0x3288db0eUL, 0xa4b8dc79UL, | ||||||
|  |     0x1ee9d5e0UL, 0x88d9d297UL, 0x2b4cb609UL, 0xbd7cb17eUL, 0x072db8e7UL, | ||||||
|  |     0x911dbf90UL, 0x6410b71dUL, 0xf220b06aUL, 0x4871b9f3UL, 0xde41be84UL, | ||||||
|  |     0x7dd4da1aUL, 0xebe4dd6dUL, 0x51b5d4f4UL, 0xc785d383UL, 0x56986c13UL, | ||||||
|  |     0xc0a86b64UL, 0x7af962fdUL, 0xecc9658aUL, 0x4f5c0114UL, 0xd96c0663UL, | ||||||
|  |     0x633d0ffaUL, 0xf50d088dUL, 0xc8206e3bUL, 0x5e10694cUL, 0xe44160d5UL, | ||||||
|  |     0x727167a2UL, 0xd1e4033cUL, 0x47d4044bUL, 0xfd850dd2UL, 0x6bb50aa5UL, | ||||||
|  |     0xfaa8b535UL, 0x6c98b242UL, 0xd6c9bbdbUL, 0x40f9bcacUL, 0xe36cd832UL, | ||||||
|  |     0x755cdf45UL, 0xcf0dd6dcUL, 0x593dd1abUL, 0xac30d926UL, 0x3a00de51UL, | ||||||
|  |     0x8051d7c8UL, 0x1661d0bfUL, 0xb5f4b421UL, 0x23c4b356UL, 0x9995bacfUL, | ||||||
|  |     0x0fa5bdb8UL, 0x9eb80228UL, 0x0888055fUL, 0xb2d90cc6UL, 0x24e90bb1UL, | ||||||
|  |     0x877c6f2fUL, 0x114c6858UL, 0xab1d61c1UL, 0x3d2d66b6UL, 0x9041dc76UL, | ||||||
|  |     0x0671db01UL, 0xbc20d298UL, 0x2a10d5efUL, 0x8985b171UL, 0x1fb5b606UL, | ||||||
|  |     0xa5e4bf9fUL, 0x33d4b8e8UL, 0xa2c90778UL, 0x34f9000fUL, 0x8ea80996UL, | ||||||
|  |     0x18980ee1UL, 0xbb0d6a7fUL, 0x2d3d6d08UL, 0x976c6491UL, 0x015c63e6UL, | ||||||
|  |     0xf4516b6bUL, 0x62616c1cUL, 0xd8306585UL, 0x4e0062f2UL, 0xed95066cUL, | ||||||
|  |     0x7ba5011bUL, 0xc1f40882UL, 0x57c40ff5UL, 0xc6d9b065UL, 0x50e9b712UL, | ||||||
|  |     0xeab8be8bUL, 0x7c88b9fcUL, 0xdf1ddd62UL, 0x492dda15UL, 0xf37cd38cUL, | ||||||
|  |     0x654cd4fbUL, 0x5861b24dUL, 0xce51b53aUL, 0x7400bca3UL, 0xe230bbd4UL, | ||||||
|  |     0x41a5df4aUL, 0xd795d83dUL, 0x6dc4d1a4UL, 0xfbf4d6d3UL, 0x6ae96943UL, | ||||||
|  |     0xfcd96e34UL, 0x468867adUL, 0xd0b860daUL, 0x732d0444UL, 0xe51d0333UL, | ||||||
|  |     0x5f4c0aaaUL, 0xc97c0dddUL, 0x3c710550UL, 0xaa410227UL, 0x10100bbeUL, | ||||||
|  |     0x86200cc9UL, 0x25b56857UL, 0xb3856f20UL, 0x09d466b9UL, 0x9fe461ceUL, | ||||||
|  |     0x0ef9de5eUL, 0x98c9d929UL, 0x2298d0b0UL, 0xb4a8d7c7UL, 0x173db359UL, | ||||||
|  |     0x810db42eUL, 0x3b5cbdb7UL, 0xad6cbac0UL, 0x2083b8edUL, 0xb6b3bf9aUL, | ||||||
|  |     0x0ce2b603UL, 0x9ad2b174UL, 0x3947d5eaUL, 0xaf77d29dUL, 0x1526db04UL, | ||||||
|  |     0x8316dc73UL, 0x120b63e3UL, 0x843b6494UL, 0x3e6a6d0dUL, 0xa85a6a7aUL, | ||||||
|  |     0x0bcf0ee4UL, 0x9dff0993UL, 0x27ae000aUL, 0xb19e077dUL, 0x44930ff0UL, | ||||||
|  |     0xd2a30887UL, 0x68f2011eUL, 0xfec20669UL, 0x5d5762f7UL, 0xcb676580UL, | ||||||
|  |     0x71366c19UL, 0xe7066b6eUL, 0x761bd4feUL, 0xe02bd389UL, 0x5a7ada10UL, | ||||||
|  |     0xcc4add67UL, 0x6fdfb9f9UL, 0xf9efbe8eUL, 0x43beb717UL, 0xd58eb060UL, | ||||||
|  |     0xe8a3d6d6UL, 0x7e93d1a1UL, 0xc4c2d838UL, 0x52f2df4fUL, 0xf167bbd1UL, | ||||||
|  |     0x6757bca6UL, 0xdd06b53fUL, 0x4b36b248UL, 0xda2b0dd8UL, 0x4c1b0aafUL, | ||||||
|  |     0xf64a0336UL, 0x607a0441UL, 0xc3ef60dfUL, 0x55df67a8UL, 0xef8e6e31UL, | ||||||
|  |     0x79be6946UL, 0x8cb361cbUL, 0x1a8366bcUL, 0xa0d26f25UL, 0x36e26852UL, | ||||||
|  |     0x95770cccUL, 0x03470bbbUL, 0xb9160222UL, 0x2f260555UL, 0xbe3bbac5UL, | ||||||
|  |     0x280bbdb2UL, 0x925ab42bUL, 0x046ab35cUL, 0xa7ffd7c2UL, 0x31cfd0b5UL, | ||||||
|  |     0x8b9ed92cUL, 0x1daede5bUL, 0xb0c2649bUL, 0x26f263ecUL, 0x9ca36a75UL, | ||||||
|  |     0x0a936d02UL, 0xa906099cUL, 0x3f360eebUL, 0x85670772UL, 0x13570005UL, | ||||||
|  |     0x824abf95UL, 0x147ab8e2UL, 0xae2bb17bUL, 0x381bb60cUL, 0x9b8ed292UL, | ||||||
|  |     0x0dbed5e5UL, 0xb7efdc7cUL, 0x21dfdb0bUL, 0xd4d2d386UL, 0x42e2d4f1UL, | ||||||
|  |     0xf8b3dd68UL, 0x6e83da1fUL, 0xcd16be81UL, 0x5b26b9f6UL, 0xe177b06fUL, | ||||||
|  |     0x7747b718UL, 0xe65a0888UL, 0x706a0fffUL, 0xca3b0666UL, 0x5c0b0111UL, | ||||||
|  |     0xff9e658fUL, 0x69ae62f8UL, 0xd3ff6b61UL, 0x45cf6c16UL, 0x78e20aa0UL, | ||||||
|  |     0xeed20dd7UL, 0x5483044eUL, 0xc2b30339UL, 0x612667a7UL, 0xf71660d0UL, | ||||||
|  |     0x4d476949UL, 0xdb776e3eUL, 0x4a6ad1aeUL, 0xdc5ad6d9UL, 0x660bdf40UL, | ||||||
|  |     0xf03bd837UL, 0x53aebca9UL, 0xc59ebbdeUL, 0x7fcfb247UL, 0xe9ffb530UL, | ||||||
|  |     0x1cf2bdbdUL, 0x8ac2bacaUL, 0x3093b353UL, 0xa6a3b424UL, 0x0536d0baUL, | ||||||
|  |     0x9306d7cdUL, 0x2957de54UL, 0xbf67d923UL, 0x2e7a66b3UL, 0xb84a61c4UL, | ||||||
|  |     0x021b685dUL, 0x942b6f2aUL, 0x37be0bb4UL, 0xa18e0cc3UL, 0x1bdf055aUL, | ||||||
|  |     0x8def022dUL | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     0x00000000UL, 0x41311b19UL, 0x82623632UL, 0xc3532d2bUL, 0x04c56c64UL, | ||||||
|  |     0x45f4777dUL, 0x86a75a56UL, 0xc796414fUL, 0x088ad9c8UL, 0x49bbc2d1UL, | ||||||
|  |     0x8ae8effaUL, 0xcbd9f4e3UL, 0x0c4fb5acUL, 0x4d7eaeb5UL, 0x8e2d839eUL, | ||||||
|  |     0xcf1c9887UL, 0x5112c24aUL, 0x1023d953UL, 0xd370f478UL, 0x9241ef61UL, | ||||||
|  |     0x55d7ae2eUL, 0x14e6b537UL, 0xd7b5981cUL, 0x96848305UL, 0x59981b82UL, | ||||||
|  |     0x18a9009bUL, 0xdbfa2db0UL, 0x9acb36a9UL, 0x5d5d77e6UL, 0x1c6c6cffUL, | ||||||
|  |     0xdf3f41d4UL, 0x9e0e5acdUL, 0xa2248495UL, 0xe3159f8cUL, 0x2046b2a7UL, | ||||||
|  |     0x6177a9beUL, 0xa6e1e8f1UL, 0xe7d0f3e8UL, 0x2483dec3UL, 0x65b2c5daUL, | ||||||
|  |     0xaaae5d5dUL, 0xeb9f4644UL, 0x28cc6b6fUL, 0x69fd7076UL, 0xae6b3139UL, | ||||||
|  |     0xef5a2a20UL, 0x2c09070bUL, 0x6d381c12UL, 0xf33646dfUL, 0xb2075dc6UL, | ||||||
|  |     0x715470edUL, 0x30656bf4UL, 0xf7f32abbUL, 0xb6c231a2UL, 0x75911c89UL, | ||||||
|  |     0x34a00790UL, 0xfbbc9f17UL, 0xba8d840eUL, 0x79dea925UL, 0x38efb23cUL, | ||||||
|  |     0xff79f373UL, 0xbe48e86aUL, 0x7d1bc541UL, 0x3c2ade58UL, 0x054f79f0UL, | ||||||
|  |     0x447e62e9UL, 0x872d4fc2UL, 0xc61c54dbUL, 0x018a1594UL, 0x40bb0e8dUL, | ||||||
|  |     0x83e823a6UL, 0xc2d938bfUL, 0x0dc5a038UL, 0x4cf4bb21UL, 0x8fa7960aUL, | ||||||
|  |     0xce968d13UL, 0x0900cc5cUL, 0x4831d745UL, 0x8b62fa6eUL, 0xca53e177UL, | ||||||
|  |     0x545dbbbaUL, 0x156ca0a3UL, 0xd63f8d88UL, 0x970e9691UL, 0x5098d7deUL, | ||||||
|  |     0x11a9ccc7UL, 0xd2fae1ecUL, 0x93cbfaf5UL, 0x5cd76272UL, 0x1de6796bUL, | ||||||
|  |     0xdeb55440UL, 0x9f844f59UL, 0x58120e16UL, 0x1923150fUL, 0xda703824UL, | ||||||
|  |     0x9b41233dUL, 0xa76bfd65UL, 0xe65ae67cUL, 0x2509cb57UL, 0x6438d04eUL, | ||||||
|  |     0xa3ae9101UL, 0xe29f8a18UL, 0x21cca733UL, 0x60fdbc2aUL, 0xafe124adUL, | ||||||
|  |     0xeed03fb4UL, 0x2d83129fUL, 0x6cb20986UL, 0xab2448c9UL, 0xea1553d0UL, | ||||||
|  |     0x29467efbUL, 0x687765e2UL, 0xf6793f2fUL, 0xb7482436UL, 0x741b091dUL, | ||||||
|  |     0x352a1204UL, 0xf2bc534bUL, 0xb38d4852UL, 0x70de6579UL, 0x31ef7e60UL, | ||||||
|  |     0xfef3e6e7UL, 0xbfc2fdfeUL, 0x7c91d0d5UL, 0x3da0cbccUL, 0xfa368a83UL, | ||||||
|  |     0xbb07919aUL, 0x7854bcb1UL, 0x3965a7a8UL, 0x4b98833bUL, 0x0aa99822UL, | ||||||
|  |     0xc9fab509UL, 0x88cbae10UL, 0x4f5def5fUL, 0x0e6cf446UL, 0xcd3fd96dUL, | ||||||
|  |     0x8c0ec274UL, 0x43125af3UL, 0x022341eaUL, 0xc1706cc1UL, 0x804177d8UL, | ||||||
|  |     0x47d73697UL, 0x06e62d8eUL, 0xc5b500a5UL, 0x84841bbcUL, 0x1a8a4171UL, | ||||||
|  |     0x5bbb5a68UL, 0x98e87743UL, 0xd9d96c5aUL, 0x1e4f2d15UL, 0x5f7e360cUL, | ||||||
|  |     0x9c2d1b27UL, 0xdd1c003eUL, 0x120098b9UL, 0x533183a0UL, 0x9062ae8bUL, | ||||||
|  |     0xd153b592UL, 0x16c5f4ddUL, 0x57f4efc4UL, 0x94a7c2efUL, 0xd596d9f6UL, | ||||||
|  |     0xe9bc07aeUL, 0xa88d1cb7UL, 0x6bde319cUL, 0x2aef2a85UL, 0xed796bcaUL, | ||||||
|  |     0xac4870d3UL, 0x6f1b5df8UL, 0x2e2a46e1UL, 0xe136de66UL, 0xa007c57fUL, | ||||||
|  |     0x6354e854UL, 0x2265f34dUL, 0xe5f3b202UL, 0xa4c2a91bUL, 0x67918430UL, | ||||||
|  |     0x26a09f29UL, 0xb8aec5e4UL, 0xf99fdefdUL, 0x3accf3d6UL, 0x7bfde8cfUL, | ||||||
|  |     0xbc6ba980UL, 0xfd5ab299UL, 0x3e099fb2UL, 0x7f3884abUL, 0xb0241c2cUL, | ||||||
|  |     0xf1150735UL, 0x32462a1eUL, 0x73773107UL, 0xb4e17048UL, 0xf5d06b51UL, | ||||||
|  |     0x3683467aUL, 0x77b25d63UL, 0x4ed7facbUL, 0x0fe6e1d2UL, 0xccb5ccf9UL, | ||||||
|  |     0x8d84d7e0UL, 0x4a1296afUL, 0x0b238db6UL, 0xc870a09dUL, 0x8941bb84UL, | ||||||
|  |     0x465d2303UL, 0x076c381aUL, 0xc43f1531UL, 0x850e0e28UL, 0x42984f67UL, | ||||||
|  |     0x03a9547eUL, 0xc0fa7955UL, 0x81cb624cUL, 0x1fc53881UL, 0x5ef42398UL, | ||||||
|  |     0x9da70eb3UL, 0xdc9615aaUL, 0x1b0054e5UL, 0x5a314ffcUL, 0x996262d7UL, | ||||||
|  |     0xd85379ceUL, 0x174fe149UL, 0x567efa50UL, 0x952dd77bUL, 0xd41ccc62UL, | ||||||
|  |     0x138a8d2dUL, 0x52bb9634UL, 0x91e8bb1fUL, 0xd0d9a006UL, 0xecf37e5eUL, | ||||||
|  |     0xadc26547UL, 0x6e91486cUL, 0x2fa05375UL, 0xe836123aUL, 0xa9070923UL, | ||||||
|  |     0x6a542408UL, 0x2b653f11UL, 0xe479a796UL, 0xa548bc8fUL, 0x661b91a4UL, | ||||||
|  |     0x272a8abdUL, 0xe0bccbf2UL, 0xa18dd0ebUL, 0x62defdc0UL, 0x23efe6d9UL, | ||||||
|  |     0xbde1bc14UL, 0xfcd0a70dUL, 0x3f838a26UL, 0x7eb2913fUL, 0xb924d070UL, | ||||||
|  |     0xf815cb69UL, 0x3b46e642UL, 0x7a77fd5bUL, 0xb56b65dcUL, 0xf45a7ec5UL, | ||||||
|  |     0x370953eeUL, 0x763848f7UL, 0xb1ae09b8UL, 0xf09f12a1UL, 0x33cc3f8aUL, | ||||||
|  |     0x72fd2493UL | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     0x00000000UL, 0x376ac201UL, 0x6ed48403UL, 0x59be4602UL, 0xdca80907UL, | ||||||
|  |     0xebc2cb06UL, 0xb27c8d04UL, 0x85164f05UL, 0xb851130eUL, 0x8f3bd10fUL, | ||||||
|  |     0xd685970dUL, 0xe1ef550cUL, 0x64f91a09UL, 0x5393d808UL, 0x0a2d9e0aUL, | ||||||
|  |     0x3d475c0bUL, 0x70a3261cUL, 0x47c9e41dUL, 0x1e77a21fUL, 0x291d601eUL, | ||||||
|  |     0xac0b2f1bUL, 0x9b61ed1aUL, 0xc2dfab18UL, 0xf5b56919UL, 0xc8f23512UL, | ||||||
|  |     0xff98f713UL, 0xa626b111UL, 0x914c7310UL, 0x145a3c15UL, 0x2330fe14UL, | ||||||
|  |     0x7a8eb816UL, 0x4de47a17UL, 0xe0464d38UL, 0xd72c8f39UL, 0x8e92c93bUL, | ||||||
|  |     0xb9f80b3aUL, 0x3cee443fUL, 0x0b84863eUL, 0x523ac03cUL, 0x6550023dUL, | ||||||
|  |     0x58175e36UL, 0x6f7d9c37UL, 0x36c3da35UL, 0x01a91834UL, 0x84bf5731UL, | ||||||
|  |     0xb3d59530UL, 0xea6bd332UL, 0xdd011133UL, 0x90e56b24UL, 0xa78fa925UL, | ||||||
|  |     0xfe31ef27UL, 0xc95b2d26UL, 0x4c4d6223UL, 0x7b27a022UL, 0x2299e620UL, | ||||||
|  |     0x15f32421UL, 0x28b4782aUL, 0x1fdeba2bUL, 0x4660fc29UL, 0x710a3e28UL, | ||||||
|  |     0xf41c712dUL, 0xc376b32cUL, 0x9ac8f52eUL, 0xada2372fUL, 0xc08d9a70UL, | ||||||
|  |     0xf7e75871UL, 0xae591e73UL, 0x9933dc72UL, 0x1c259377UL, 0x2b4f5176UL, | ||||||
|  |     0x72f11774UL, 0x459bd575UL, 0x78dc897eUL, 0x4fb64b7fUL, 0x16080d7dUL, | ||||||
|  |     0x2162cf7cUL, 0xa4748079UL, 0x931e4278UL, 0xcaa0047aUL, 0xfdcac67bUL, | ||||||
|  |     0xb02ebc6cUL, 0x87447e6dUL, 0xdefa386fUL, 0xe990fa6eUL, 0x6c86b56bUL, | ||||||
|  |     0x5bec776aUL, 0x02523168UL, 0x3538f369UL, 0x087faf62UL, 0x3f156d63UL, | ||||||
|  |     0x66ab2b61UL, 0x51c1e960UL, 0xd4d7a665UL, 0xe3bd6464UL, 0xba032266UL, | ||||||
|  |     0x8d69e067UL, 0x20cbd748UL, 0x17a11549UL, 0x4e1f534bUL, 0x7975914aUL, | ||||||
|  |     0xfc63de4fUL, 0xcb091c4eUL, 0x92b75a4cUL, 0xa5dd984dUL, 0x989ac446UL, | ||||||
|  |     0xaff00647UL, 0xf64e4045UL, 0xc1248244UL, 0x4432cd41UL, 0x73580f40UL, | ||||||
|  |     0x2ae64942UL, 0x1d8c8b43UL, 0x5068f154UL, 0x67023355UL, 0x3ebc7557UL, | ||||||
|  |     0x09d6b756UL, 0x8cc0f853UL, 0xbbaa3a52UL, 0xe2147c50UL, 0xd57ebe51UL, | ||||||
|  |     0xe839e25aUL, 0xdf53205bUL, 0x86ed6659UL, 0xb187a458UL, 0x3491eb5dUL, | ||||||
|  |     0x03fb295cUL, 0x5a456f5eUL, 0x6d2fad5fUL, 0x801b35e1UL, 0xb771f7e0UL, | ||||||
|  |     0xeecfb1e2UL, 0xd9a573e3UL, 0x5cb33ce6UL, 0x6bd9fee7UL, 0x3267b8e5UL, | ||||||
|  |     0x050d7ae4UL, 0x384a26efUL, 0x0f20e4eeUL, 0x569ea2ecUL, 0x61f460edUL, | ||||||
|  |     0xe4e22fe8UL, 0xd388ede9UL, 0x8a36abebUL, 0xbd5c69eaUL, 0xf0b813fdUL, | ||||||
|  |     0xc7d2d1fcUL, 0x9e6c97feUL, 0xa90655ffUL, 0x2c101afaUL, 0x1b7ad8fbUL, | ||||||
|  |     0x42c49ef9UL, 0x75ae5cf8UL, 0x48e900f3UL, 0x7f83c2f2UL, 0x263d84f0UL, | ||||||
|  |     0x115746f1UL, 0x944109f4UL, 0xa32bcbf5UL, 0xfa958df7UL, 0xcdff4ff6UL, | ||||||
|  |     0x605d78d9UL, 0x5737bad8UL, 0x0e89fcdaUL, 0x39e33edbUL, 0xbcf571deUL, | ||||||
|  |     0x8b9fb3dfUL, 0xd221f5ddUL, 0xe54b37dcUL, 0xd80c6bd7UL, 0xef66a9d6UL, | ||||||
|  |     0xb6d8efd4UL, 0x81b22dd5UL, 0x04a462d0UL, 0x33cea0d1UL, 0x6a70e6d3UL, | ||||||
|  |     0x5d1a24d2UL, 0x10fe5ec5UL, 0x27949cc4UL, 0x7e2adac6UL, 0x494018c7UL, | ||||||
|  |     0xcc5657c2UL, 0xfb3c95c3UL, 0xa282d3c1UL, 0x95e811c0UL, 0xa8af4dcbUL, | ||||||
|  |     0x9fc58fcaUL, 0xc67bc9c8UL, 0xf1110bc9UL, 0x740744ccUL, 0x436d86cdUL, | ||||||
|  |     0x1ad3c0cfUL, 0x2db902ceUL, 0x4096af91UL, 0x77fc6d90UL, 0x2e422b92UL, | ||||||
|  |     0x1928e993UL, 0x9c3ea696UL, 0xab546497UL, 0xf2ea2295UL, 0xc580e094UL, | ||||||
|  |     0xf8c7bc9fUL, 0xcfad7e9eUL, 0x9613389cUL, 0xa179fa9dUL, 0x246fb598UL, | ||||||
|  |     0x13057799UL, 0x4abb319bUL, 0x7dd1f39aUL, 0x3035898dUL, 0x075f4b8cUL, | ||||||
|  |     0x5ee10d8eUL, 0x698bcf8fUL, 0xec9d808aUL, 0xdbf7428bUL, 0x82490489UL, | ||||||
|  |     0xb523c688UL, 0x88649a83UL, 0xbf0e5882UL, 0xe6b01e80UL, 0xd1dadc81UL, | ||||||
|  |     0x54cc9384UL, 0x63a65185UL, 0x3a181787UL, 0x0d72d586UL, 0xa0d0e2a9UL, | ||||||
|  |     0x97ba20a8UL, 0xce0466aaUL, 0xf96ea4abUL, 0x7c78ebaeUL, 0x4b1229afUL, | ||||||
|  |     0x12ac6fadUL, 0x25c6adacUL, 0x1881f1a7UL, 0x2feb33a6UL, 0x765575a4UL, | ||||||
|  |     0x413fb7a5UL, 0xc429f8a0UL, 0xf3433aa1UL, 0xaafd7ca3UL, 0x9d97bea2UL, | ||||||
|  |     0xd073c4b5UL, 0xe71906b4UL, 0xbea740b6UL, 0x89cd82b7UL, 0x0cdbcdb2UL, | ||||||
|  |     0x3bb10fb3UL, 0x620f49b1UL, 0x55658bb0UL, 0x6822d7bbUL, 0x5f4815baUL, | ||||||
|  |     0x06f653b8UL, 0x319c91b9UL, 0xb48adebcUL, 0x83e01cbdUL, 0xda5e5abfUL, | ||||||
|  |     0xed3498beUL | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     0x00000000UL, 0x6567bcb8UL, 0x8bc809aaUL, 0xeeafb512UL, 0x5797628fUL, | ||||||
|  |     0x32f0de37UL, 0xdc5f6b25UL, 0xb938d79dUL, 0xef28b4c5UL, 0x8a4f087dUL, | ||||||
|  |     0x64e0bd6fUL, 0x018701d7UL, 0xb8bfd64aUL, 0xddd86af2UL, 0x3377dfe0UL, | ||||||
|  |     0x56106358UL, 0x9f571950UL, 0xfa30a5e8UL, 0x149f10faUL, 0x71f8ac42UL, | ||||||
|  |     0xc8c07bdfUL, 0xada7c767UL, 0x43087275UL, 0x266fcecdUL, 0x707fad95UL, | ||||||
|  |     0x1518112dUL, 0xfbb7a43fUL, 0x9ed01887UL, 0x27e8cf1aUL, 0x428f73a2UL, | ||||||
|  |     0xac20c6b0UL, 0xc9477a08UL, 0x3eaf32a0UL, 0x5bc88e18UL, 0xb5673b0aUL, | ||||||
|  |     0xd00087b2UL, 0x6938502fUL, 0x0c5fec97UL, 0xe2f05985UL, 0x8797e53dUL, | ||||||
|  |     0xd1878665UL, 0xb4e03addUL, 0x5a4f8fcfUL, 0x3f283377UL, 0x8610e4eaUL, | ||||||
|  |     0xe3775852UL, 0x0dd8ed40UL, 0x68bf51f8UL, 0xa1f82bf0UL, 0xc49f9748UL, | ||||||
|  |     0x2a30225aUL, 0x4f579ee2UL, 0xf66f497fUL, 0x9308f5c7UL, 0x7da740d5UL, | ||||||
|  |     0x18c0fc6dUL, 0x4ed09f35UL, 0x2bb7238dUL, 0xc518969fUL, 0xa07f2a27UL, | ||||||
|  |     0x1947fdbaUL, 0x7c204102UL, 0x928ff410UL, 0xf7e848a8UL, 0x3d58149bUL, | ||||||
|  |     0x583fa823UL, 0xb6901d31UL, 0xd3f7a189UL, 0x6acf7614UL, 0x0fa8caacUL, | ||||||
|  |     0xe1077fbeUL, 0x8460c306UL, 0xd270a05eUL, 0xb7171ce6UL, 0x59b8a9f4UL, | ||||||
|  |     0x3cdf154cUL, 0x85e7c2d1UL, 0xe0807e69UL, 0x0e2fcb7bUL, 0x6b4877c3UL, | ||||||
|  |     0xa20f0dcbUL, 0xc768b173UL, 0x29c70461UL, 0x4ca0b8d9UL, 0xf5986f44UL, | ||||||
|  |     0x90ffd3fcUL, 0x7e5066eeUL, 0x1b37da56UL, 0x4d27b90eUL, 0x284005b6UL, | ||||||
|  |     0xc6efb0a4UL, 0xa3880c1cUL, 0x1ab0db81UL, 0x7fd76739UL, 0x9178d22bUL, | ||||||
|  |     0xf41f6e93UL, 0x03f7263bUL, 0x66909a83UL, 0x883f2f91UL, 0xed589329UL, | ||||||
|  |     0x546044b4UL, 0x3107f80cUL, 0xdfa84d1eUL, 0xbacff1a6UL, 0xecdf92feUL, | ||||||
|  |     0x89b82e46UL, 0x67179b54UL, 0x027027ecUL, 0xbb48f071UL, 0xde2f4cc9UL, | ||||||
|  |     0x3080f9dbUL, 0x55e74563UL, 0x9ca03f6bUL, 0xf9c783d3UL, 0x176836c1UL, | ||||||
|  |     0x720f8a79UL, 0xcb375de4UL, 0xae50e15cUL, 0x40ff544eUL, 0x2598e8f6UL, | ||||||
|  |     0x73888baeUL, 0x16ef3716UL, 0xf8408204UL, 0x9d273ebcUL, 0x241fe921UL, | ||||||
|  |     0x41785599UL, 0xafd7e08bUL, 0xcab05c33UL, 0x3bb659edUL, 0x5ed1e555UL, | ||||||
|  |     0xb07e5047UL, 0xd519ecffUL, 0x6c213b62UL, 0x094687daUL, 0xe7e932c8UL, | ||||||
|  |     0x828e8e70UL, 0xd49eed28UL, 0xb1f95190UL, 0x5f56e482UL, 0x3a31583aUL, | ||||||
|  |     0x83098fa7UL, 0xe66e331fUL, 0x08c1860dUL, 0x6da63ab5UL, 0xa4e140bdUL, | ||||||
|  |     0xc186fc05UL, 0x2f294917UL, 0x4a4ef5afUL, 0xf3762232UL, 0x96119e8aUL, | ||||||
|  |     0x78be2b98UL, 0x1dd99720UL, 0x4bc9f478UL, 0x2eae48c0UL, 0xc001fdd2UL, | ||||||
|  |     0xa566416aUL, 0x1c5e96f7UL, 0x79392a4fUL, 0x97969f5dUL, 0xf2f123e5UL, | ||||||
|  |     0x05196b4dUL, 0x607ed7f5UL, 0x8ed162e7UL, 0xebb6de5fUL, 0x528e09c2UL, | ||||||
|  |     0x37e9b57aUL, 0xd9460068UL, 0xbc21bcd0UL, 0xea31df88UL, 0x8f566330UL, | ||||||
|  |     0x61f9d622UL, 0x049e6a9aUL, 0xbda6bd07UL, 0xd8c101bfUL, 0x366eb4adUL, | ||||||
|  |     0x53090815UL, 0x9a4e721dUL, 0xff29cea5UL, 0x11867bb7UL, 0x74e1c70fUL, | ||||||
|  |     0xcdd91092UL, 0xa8beac2aUL, 0x46111938UL, 0x2376a580UL, 0x7566c6d8UL, | ||||||
|  |     0x10017a60UL, 0xfeaecf72UL, 0x9bc973caUL, 0x22f1a457UL, 0x479618efUL, | ||||||
|  |     0xa939adfdUL, 0xcc5e1145UL, 0x06ee4d76UL, 0x6389f1ceUL, 0x8d2644dcUL, | ||||||
|  |     0xe841f864UL, 0x51792ff9UL, 0x341e9341UL, 0xdab12653UL, 0xbfd69aebUL, | ||||||
|  |     0xe9c6f9b3UL, 0x8ca1450bUL, 0x620ef019UL, 0x07694ca1UL, 0xbe519b3cUL, | ||||||
|  |     0xdb362784UL, 0x35999296UL, 0x50fe2e2eUL, 0x99b95426UL, 0xfcdee89eUL, | ||||||
|  |     0x12715d8cUL, 0x7716e134UL, 0xce2e36a9UL, 0xab498a11UL, 0x45e63f03UL, | ||||||
|  |     0x208183bbUL, 0x7691e0e3UL, 0x13f65c5bUL, 0xfd59e949UL, 0x983e55f1UL, | ||||||
|  |     0x2106826cUL, 0x44613ed4UL, 0xaace8bc6UL, 0xcfa9377eUL, 0x38417fd6UL, | ||||||
|  |     0x5d26c36eUL, 0xb389767cUL, 0xd6eecac4UL, 0x6fd61d59UL, 0x0ab1a1e1UL, | ||||||
|  |     0xe41e14f3UL, 0x8179a84bUL, 0xd769cb13UL, 0xb20e77abUL, 0x5ca1c2b9UL, | ||||||
|  |     0x39c67e01UL, 0x80fea99cUL, 0xe5991524UL, 0x0b36a036UL, 0x6e511c8eUL, | ||||||
|  |     0xa7166686UL, 0xc271da3eUL, 0x2cde6f2cUL, 0x49b9d394UL, 0xf0810409UL, | ||||||
|  |     0x95e6b8b1UL, 0x7b490da3UL, 0x1e2eb11bUL, 0x483ed243UL, 0x2d596efbUL, | ||||||
|  |     0xc3f6dbe9UL, 0xa6916751UL, 0x1fa9b0ccUL, 0x7ace0c74UL, 0x9461b966UL, | ||||||
|  |     0xf10605deUL | ||||||
|  | #endif | ||||||
|  |   } | ||||||
|  | }; | ||||||
							
								
								
									
										323
									
								
								deflate.c
									
									
									
									
									
								
							
							
						
						
									
										323
									
								
								deflate.c
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| /* deflate.c -- compress data using the deflation algorithm | /* deflate.c -- compress data using the deflation algorithm | ||||||
|  * Copyright (C) 1995-1998 Jean-loup Gailly. |  * Copyright (C) 1995-2003 Jean-loup Gailly. | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| @@ -52,7 +52,7 @@ | |||||||
| #include "deflate.h" | #include "deflate.h" | ||||||
|  |  | ||||||
| const char deflate_copyright[] = | const char deflate_copyright[] = | ||||||
|    " deflate 1.1.1 Copyright 1995-1998 Jean-loup Gailly "; |    " deflate 1.2.0.1 Copyright 1995-2003 Jean-loup Gailly "; | ||||||
| /* | /* | ||||||
|   If you use the zlib library in a product, an acknowledgment is welcome |   If you use the zlib library in a product, an acknowledgment is welcome | ||||||
|   in the documentation of your product. If for some reason you cannot |   in the documentation of your product. If for some reason you cannot | ||||||
| @@ -76,17 +76,22 @@ typedef block_state (*compress_func) OF((deflate_state *s, int flush)); | |||||||
| local void fill_window    OF((deflate_state *s)); | local void fill_window    OF((deflate_state *s)); | ||||||
| local block_state deflate_stored OF((deflate_state *s, int flush)); | local block_state deflate_stored OF((deflate_state *s, int flush)); | ||||||
| local block_state deflate_fast   OF((deflate_state *s, int flush)); | local block_state deflate_fast   OF((deflate_state *s, int flush)); | ||||||
|  | #ifndef FASTEST | ||||||
| local block_state deflate_slow   OF((deflate_state *s, int flush)); | local block_state deflate_slow   OF((deflate_state *s, int flush)); | ||||||
|  | #endif | ||||||
| local void lm_init        OF((deflate_state *s)); | local void lm_init        OF((deflate_state *s)); | ||||||
| local void putShortMSB    OF((deflate_state *s, uInt b)); | local void putShortMSB    OF((deflate_state *s, uInt b)); | ||||||
| local void flush_pending  OF((z_streamp strm)); | local void flush_pending  OF((z_streamp strm)); | ||||||
| local int read_buf        OF((z_streamp strm, Bytef *buf, unsigned size)); | local int read_buf        OF((z_streamp strm, Bytef *buf, unsigned size)); | ||||||
|  | #ifndef FASTEST | ||||||
| #ifdef ASMV | #ifdef ASMV | ||||||
|       void match_init OF((void)); /* asm code initialization */ |       void match_init OF((void)); /* asm code initialization */ | ||||||
|       uInt longest_match  OF((deflate_state *s, IPos cur_match)); |       uInt longest_match  OF((deflate_state *s, IPos cur_match)); | ||||||
| #else | #else | ||||||
| local uInt longest_match  OF((deflate_state *s, IPos cur_match)); | local uInt longest_match  OF((deflate_state *s, IPos cur_match)); | ||||||
| #endif | #endif | ||||||
|  | #endif | ||||||
|  | local uInt longest_match_fast OF((deflate_state *s, IPos cur_match)); | ||||||
|  |  | ||||||
| #ifdef DEBUG | #ifdef DEBUG | ||||||
| local  void check_match OF((deflate_state *s, IPos start, IPos match, | local  void check_match OF((deflate_state *s, IPos start, IPos match, | ||||||
| @@ -123,6 +128,12 @@ typedef struct config_s { | |||||||
|    compress_func func; |    compress_func func; | ||||||
| } config; | } config; | ||||||
|  |  | ||||||
|  | #ifdef FASTEST | ||||||
|  | local const config configuration_table[2] = { | ||||||
|  | /*      good lazy nice chain */ | ||||||
|  | /* 0 */ {0,    0,  0,    0, deflate_stored},  /* store only */ | ||||||
|  | /* 1 */ {4,    4,  8,    4, deflate_fast}}; /* maximum speed, no lazy matches */ | ||||||
|  | #else | ||||||
| local const config configuration_table[10] = { | local const config configuration_table[10] = { | ||||||
| /*      good lazy nice chain */ | /*      good lazy nice chain */ | ||||||
| /* 0 */ {0,    0,  0,    0, deflate_stored},  /* store only */ | /* 0 */ {0,    0,  0,    0, deflate_stored},  /* store only */ | ||||||
| @@ -136,6 +147,7 @@ local const config configuration_table[10] = { | |||||||
| /* 7 */ {8,   32, 128, 256, deflate_slow}, | /* 7 */ {8,   32, 128, 256, deflate_slow}, | ||||||
| /* 8 */ {32, 128, 258, 1024, deflate_slow}, | /* 8 */ {32, 128, 258, 1024, deflate_slow}, | ||||||
| /* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* maximum compression */ | /* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* maximum compression */ | ||||||
|  | #endif | ||||||
|  |  | ||||||
| /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 | /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 | ||||||
|  * For deflate_fast() (levels <= 3) good is ignored and lazy has a different |  * For deflate_fast() (levels <= 3) good is ignored and lazy has a different | ||||||
| @@ -194,13 +206,13 @@ int ZEXPORT deflateInit_(strm, level, version, stream_size) | |||||||
|     int stream_size; |     int stream_size; | ||||||
| { | { | ||||||
|     return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, |     return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, | ||||||
| 			 Z_DEFAULT_STRATEGY, version, stream_size); |                          Z_DEFAULT_STRATEGY, version, stream_size); | ||||||
|     /* To do: ignore strm->next_in if we use it as window */ |     /* To do: ignore strm->next_in if we use it as window */ | ||||||
| } | } | ||||||
|  |  | ||||||
| /* ========================================================================= */ | /* ========================================================================= */ | ||||||
| int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, | int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, | ||||||
| 		  version, stream_size) |                   version, stream_size) | ||||||
|     z_streamp strm; |     z_streamp strm; | ||||||
|     int  level; |     int  level; | ||||||
|     int  method; |     int  method; | ||||||
| @@ -212,7 +224,7 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, | |||||||
| { | { | ||||||
|     deflate_state *s; |     deflate_state *s; | ||||||
|     int noheader = 0; |     int noheader = 0; | ||||||
|     static const char* my_version = ZLIB_VERSION; |     static const char my_version[] = ZLIB_VERSION; | ||||||
|  |  | ||||||
|     ushf *overlay; |     ushf *overlay; | ||||||
|     /* We overlay pending_buf and d_buf+l_buf. This works since the average |     /* We overlay pending_buf and d_buf+l_buf. This works since the average | ||||||
| @@ -221,20 +233,21 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, | |||||||
|  |  | ||||||
|     if (version == Z_NULL || version[0] != my_version[0] || |     if (version == Z_NULL || version[0] != my_version[0] || | ||||||
|         stream_size != sizeof(z_stream)) { |         stream_size != sizeof(z_stream)) { | ||||||
| 	return Z_VERSION_ERROR; |         return Z_VERSION_ERROR; | ||||||
|     } |     } | ||||||
|     if (strm == Z_NULL) return Z_STREAM_ERROR; |     if (strm == Z_NULL) return Z_STREAM_ERROR; | ||||||
|  |  | ||||||
|     strm->msg = Z_NULL; |     strm->msg = Z_NULL; | ||||||
|     if (strm->zalloc == Z_NULL) { |     if (strm->zalloc == Z_NULL) { | ||||||
| 	strm->zalloc = zcalloc; |         strm->zalloc = zcalloc; | ||||||
| 	strm->opaque = (voidpf)0; |         strm->opaque = (voidpf)0; | ||||||
|     } |     } | ||||||
|     if (strm->zfree == Z_NULL) strm->zfree = zcfree; |     if (strm->zfree == Z_NULL) strm->zfree = zcfree; | ||||||
|  |  | ||||||
|     if (level == Z_DEFAULT_COMPRESSION) level = 6; |  | ||||||
| #ifdef FASTEST | #ifdef FASTEST | ||||||
|     level = 1; |     if (level != 0) level = 1; | ||||||
|  | #else | ||||||
|  |     if (level == Z_DEFAULT_COMPRESSION) level = 6; | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|     if (windowBits < 0) { /* undocumented feature: suppress zlib header */ |     if (windowBits < 0) { /* undocumented feature: suppress zlib header */ | ||||||
| @@ -242,8 +255,8 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, | |||||||
|         windowBits = -windowBits; |         windowBits = -windowBits; | ||||||
|     } |     } | ||||||
|     if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED || |     if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED || | ||||||
|         windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || |         windowBits < 9 || windowBits > 15 || level < 0 || level > 9 || | ||||||
| 	strategy < 0 || strategy > Z_HUFFMAN_ONLY) { |         strategy < 0 || strategy > Z_RLE) { | ||||||
|         return Z_STREAM_ERROR; |         return Z_STREAM_ERROR; | ||||||
|     } |     } | ||||||
|     s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); |     s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); | ||||||
| @@ -273,6 +286,7 @@ int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, | |||||||
|  |  | ||||||
|     if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL || |     if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL || | ||||||
|         s->pending_buf == Z_NULL) { |         s->pending_buf == Z_NULL) { | ||||||
|  |         s->status = FINISH_STATE; | ||||||
|         strm->msg = (char*)ERR_MSG(Z_MEM_ERROR); |         strm->msg = (char*)ERR_MSG(Z_MEM_ERROR); | ||||||
|         deflateEnd (strm); |         deflateEnd (strm); | ||||||
|         return Z_MEM_ERROR; |         return Z_MEM_ERROR; | ||||||
| @@ -299,16 +313,18 @@ int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) | |||||||
|     IPos hash_head = 0; |     IPos hash_head = 0; | ||||||
|  |  | ||||||
|     if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL || |     if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL || | ||||||
|         strm->state->status != INIT_STATE) return Z_STREAM_ERROR; |         (!strm->state->noheader && strm->state->status != INIT_STATE)) | ||||||
|  |         return Z_STREAM_ERROR; | ||||||
|  |  | ||||||
|     s = strm->state; |     s = strm->state; | ||||||
|     strm->adler = adler32(strm->adler, dictionary, dictLength); |     if (!s->noheader) | ||||||
|  |         strm->adler = adler32(strm->adler, dictionary, dictLength); | ||||||
|  |  | ||||||
|     if (length < MIN_MATCH) return Z_OK; |     if (length < MIN_MATCH) return Z_OK; | ||||||
|     if (length > MAX_DIST(s)) { |     if (length > MAX_DIST(s)) { | ||||||
| 	length = MAX_DIST(s); |         length = MAX_DIST(s); | ||||||
| #ifndef USE_DICT_HEAD | #ifndef USE_DICT_HEAD | ||||||
| 	dictionary += dictLength - length; /* use the tail of the dictionary */ |         dictionary += dictLength - length; /* use the tail of the dictionary */ | ||||||
| #endif | #endif | ||||||
|     } |     } | ||||||
|     zmemcpy(s->window, dictionary, length); |     zmemcpy(s->window, dictionary, length); | ||||||
| @@ -322,7 +338,7 @@ int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) | |||||||
|     s->ins_h = s->window[0]; |     s->ins_h = s->window[0]; | ||||||
|     UPDATE_HASH(s, s->ins_h, s->window[1]); |     UPDATE_HASH(s, s->ins_h, s->window[1]); | ||||||
|     for (n = 0; n <= length - MIN_MATCH; n++) { |     for (n = 0; n <= length - MIN_MATCH; n++) { | ||||||
| 	INSERT_STRING(s, n, hash_head); |         INSERT_STRING(s, n, hash_head); | ||||||
|     } |     } | ||||||
|     if (hash_head) hash_head = 0;  /* to make compiler happy */ |     if (hash_head) hash_head = 0;  /* to make compiler happy */ | ||||||
|     return Z_OK; |     return Z_OK; | ||||||
| @@ -371,29 +387,72 @@ int ZEXPORT deflateParams(strm, level, strategy) | |||||||
|     if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; |     if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; | ||||||
|     s = strm->state; |     s = strm->state; | ||||||
|  |  | ||||||
|     if (level == Z_DEFAULT_COMPRESSION) { | #ifdef FASTEST | ||||||
| 	level = 6; |     if (level != 0) level = 1; | ||||||
|     } | #else | ||||||
|     if (level < 0 || level > 9 || strategy < 0 || strategy > Z_HUFFMAN_ONLY) { |     if (level == Z_DEFAULT_COMPRESSION) level = 6; | ||||||
| 	return Z_STREAM_ERROR; | #endif | ||||||
|  |     if (level < 0 || level > 9 || strategy < 0 || strategy > Z_RLE) { | ||||||
|  |         return Z_STREAM_ERROR; | ||||||
|     } |     } | ||||||
|     func = configuration_table[s->level].func; |     func = configuration_table[s->level].func; | ||||||
|  |  | ||||||
|     if (func != configuration_table[level].func && strm->total_in != 0) { |     if (func != configuration_table[level].func && strm->total_in != 0) { | ||||||
| 	/* Flush the last buffer: */ |         /* Flush the last buffer: */ | ||||||
| 	err = deflate(strm, Z_PARTIAL_FLUSH); |         err = deflate(strm, Z_PARTIAL_FLUSH); | ||||||
|     } |     } | ||||||
|     if (s->level != level) { |     if (s->level != level) { | ||||||
| 	s->level = level; |         s->level = level; | ||||||
| 	s->max_lazy_match   = configuration_table[level].max_lazy; |         s->max_lazy_match   = configuration_table[level].max_lazy; | ||||||
| 	s->good_match       = configuration_table[level].good_length; |         s->good_match       = configuration_table[level].good_length; | ||||||
| 	s->nice_match       = configuration_table[level].nice_length; |         s->nice_match       = configuration_table[level].nice_length; | ||||||
| 	s->max_chain_length = configuration_table[level].max_chain; |         s->max_chain_length = configuration_table[level].max_chain; | ||||||
|     } |     } | ||||||
|     s->strategy = strategy; |     s->strategy = strategy; | ||||||
|     return err; |     return err; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | /* ========================================================================= | ||||||
|  |  * For the default windowBits of 15 and memLevel of 8, this function returns | ||||||
|  |  * a close to exact, as well as small, upper bound on the compressed size. | ||||||
|  |  * They are coded as constants here for a reason--if the #define's are | ||||||
|  |  * changed, then this function needs to be changed as well.  The return | ||||||
|  |  * value for 15 and 8 only works for those exact settings. | ||||||
|  |  * | ||||||
|  |  * For any setting other than those defaults for windowBits and memLevel, | ||||||
|  |  * the value returned is a conservative worst case for the maximum expansion | ||||||
|  |  * resulting from using fixed blocks instead of stored blocks, which deflate | ||||||
|  |  * can emit on compressed data for some combinations of the parameters. | ||||||
|  |  * | ||||||
|  |  * This function could be more sophisticated to provide closer upper bounds | ||||||
|  |  * for every combination of windowBits and memLevel, as well as noheader. | ||||||
|  |  * But even the conservative upper bound of about 14% expansion does not | ||||||
|  |  * seem onerous for output buffer allocation. | ||||||
|  |  */ | ||||||
|  | uLong ZEXPORT deflateBound(strm, sourceLen) | ||||||
|  |     z_streamp strm; | ||||||
|  |     uLong sourceLen; | ||||||
|  | { | ||||||
|  |     deflate_state *s; | ||||||
|  |     uLong destLen; | ||||||
|  |  | ||||||
|  |     /* conservative upper bound */ | ||||||
|  |     destLen = sourceLen + | ||||||
|  |               ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 11; | ||||||
|  |  | ||||||
|  |     /* if can't get parameters, return conservative bound */ | ||||||
|  |     if (strm == Z_NULL || strm->state == Z_NULL) | ||||||
|  |         return destLen; | ||||||
|  |  | ||||||
|  |     /* if not default parameters, return conservative bound */ | ||||||
|  |     s = strm->state; | ||||||
|  |     if (s->w_bits != 15 || s->hash_bits != 8 + 7) | ||||||
|  |         return destLen; | ||||||
|  |  | ||||||
|  |     /* default settings: return tight bound for that case */ | ||||||
|  |     return compressBound(sourceLen); | ||||||
|  | } | ||||||
|  |  | ||||||
| /* ========================================================================= | /* ========================================================================= | ||||||
|  * Put a short in the pending buffer. The 16-bit value is put in MSB order. |  * Put a short in the pending buffer. The 16-bit value is put in MSB order. | ||||||
|  * IN assertion: the stream state is correct and there is enough room in |  * IN assertion: the stream state is correct and there is enough room in | ||||||
| @@ -441,14 +500,14 @@ int ZEXPORT deflate (strm, flush) | |||||||
|     deflate_state *s; |     deflate_state *s; | ||||||
|  |  | ||||||
|     if (strm == Z_NULL || strm->state == Z_NULL || |     if (strm == Z_NULL || strm->state == Z_NULL || | ||||||
| 	flush > Z_FINISH || flush < 0) { |         flush > Z_FINISH || flush < 0) { | ||||||
|         return Z_STREAM_ERROR; |         return Z_STREAM_ERROR; | ||||||
|     } |     } | ||||||
|     s = strm->state; |     s = strm->state; | ||||||
|  |  | ||||||
|     if (strm->next_out == Z_NULL || |     if (strm->next_out == Z_NULL || | ||||||
|         (strm->next_in == Z_NULL && strm->avail_in != 0) || |         (strm->next_in == Z_NULL && strm->avail_in != 0) || | ||||||
| 	(s->status == FINISH_STATE && flush != Z_FINISH)) { |         (s->status == FINISH_STATE && flush != Z_FINISH)) { | ||||||
|         ERR_RETURN(strm, Z_STREAM_ERROR); |         ERR_RETURN(strm, Z_STREAM_ERROR); | ||||||
|     } |     } | ||||||
|     if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR); |     if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR); | ||||||
| @@ -465,40 +524,40 @@ int ZEXPORT deflate (strm, flush) | |||||||
|  |  | ||||||
|         if (level_flags > 3) level_flags = 3; |         if (level_flags > 3) level_flags = 3; | ||||||
|         header |= (level_flags << 6); |         header |= (level_flags << 6); | ||||||
| 	if (s->strstart != 0) header |= PRESET_DICT; |         if (s->strstart != 0) header |= PRESET_DICT; | ||||||
|         header += 31 - (header % 31); |         header += 31 - (header % 31); | ||||||
|  |  | ||||||
|         s->status = BUSY_STATE; |         s->status = BUSY_STATE; | ||||||
|         putShortMSB(s, header); |         putShortMSB(s, header); | ||||||
|  |  | ||||||
| 	/* Save the adler32 of the preset dictionary: */ |         /* Save the adler32 of the preset dictionary: */ | ||||||
| 	if (s->strstart != 0) { |         if (s->strstart != 0) { | ||||||
| 	    putShortMSB(s, (uInt)(strm->adler >> 16)); |             putShortMSB(s, (uInt)(strm->adler >> 16)); | ||||||
| 	    putShortMSB(s, (uInt)(strm->adler & 0xffff)); |             putShortMSB(s, (uInt)(strm->adler & 0xffff)); | ||||||
| 	} |         } | ||||||
| 	strm->adler = 1L; |         strm->adler = 1L; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /* Flush as much pending output as possible */ |     /* Flush as much pending output as possible */ | ||||||
|     if (s->pending != 0) { |     if (s->pending != 0) { | ||||||
|         flush_pending(strm); |         flush_pending(strm); | ||||||
|         if (strm->avail_out == 0) { |         if (strm->avail_out == 0) { | ||||||
| 	    /* Since avail_out is 0, deflate will be called again with |             /* Since avail_out is 0, deflate will be called again with | ||||||
| 	     * more output space, but possibly with both pending and |              * more output space, but possibly with both pending and | ||||||
| 	     * avail_in equal to zero. There won't be anything to do, |              * avail_in equal to zero. There won't be anything to do, | ||||||
| 	     * but this is not an error situation so make sure we |              * but this is not an error situation so make sure we | ||||||
| 	     * return OK instead of BUF_ERROR at next call of deflate: |              * return OK instead of BUF_ERROR at next call of deflate: | ||||||
|              */ |              */ | ||||||
| 	    s->last_flush = -1; |             s->last_flush = -1; | ||||||
| 	    return Z_OK; |             return Z_OK; | ||||||
| 	} |         } | ||||||
|  |  | ||||||
|     /* Make sure there is something to do and avoid duplicate consecutive |     /* Make sure there is something to do and avoid duplicate consecutive | ||||||
|      * flushes. For repeated and useless calls with Z_FINISH, we keep |      * flushes. For repeated and useless calls with Z_FINISH, we keep | ||||||
|      * returning Z_STREAM_END instead of Z_BUFF_ERROR. |      * returning Z_STREAM_END instead of Z_BUF_ERROR. | ||||||
|      */ |      */ | ||||||
|     } else if (strm->avail_in == 0 && flush <= old_flush && |     } else if (strm->avail_in == 0 && flush <= old_flush && | ||||||
| 	       flush != Z_FINISH) { |                flush != Z_FINISH) { | ||||||
|         ERR_RETURN(strm, Z_BUF_ERROR); |         ERR_RETURN(strm, Z_BUF_ERROR); | ||||||
|     } |     } | ||||||
|  |  | ||||||
| @@ -513,24 +572,24 @@ int ZEXPORT deflate (strm, flush) | |||||||
|         (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) { |         (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) { | ||||||
|         block_state bstate; |         block_state bstate; | ||||||
|  |  | ||||||
| 	bstate = (*(configuration_table[s->level].func))(s, flush); |         bstate = (*(configuration_table[s->level].func))(s, flush); | ||||||
|  |  | ||||||
|         if (bstate == finish_started || bstate == finish_done) { |         if (bstate == finish_started || bstate == finish_done) { | ||||||
|             s->status = FINISH_STATE; |             s->status = FINISH_STATE; | ||||||
|         } |         } | ||||||
|         if (bstate == need_more || bstate == finish_started) { |         if (bstate == need_more || bstate == finish_started) { | ||||||
| 	    if (strm->avail_out == 0) { |             if (strm->avail_out == 0) { | ||||||
| 	        s->last_flush = -1; /* avoid BUF_ERROR next call, see above */ |                 s->last_flush = -1; /* avoid BUF_ERROR next call, see above */ | ||||||
| 	    } |             } | ||||||
| 	    return Z_OK; |             return Z_OK; | ||||||
| 	    /* If flush != Z_NO_FLUSH && avail_out == 0, the next call |             /* If flush != Z_NO_FLUSH && avail_out == 0, the next call | ||||||
| 	     * of deflate should use the same flush parameter to make sure |              * of deflate should use the same flush parameter to make sure | ||||||
| 	     * that the flush is complete. So we don't have to output an |              * that the flush is complete. So we don't have to output an | ||||||
| 	     * empty block here, this will be done at next call. This also |              * empty block here, this will be done at next call. This also | ||||||
| 	     * ensures that for a very small output buffer, we emit at most |              * ensures that for a very small output buffer, we emit at most | ||||||
| 	     * one empty block. |              * one empty block. | ||||||
| 	     */ |              */ | ||||||
| 	} |         } | ||||||
|         if (bstate == block_done) { |         if (bstate == block_done) { | ||||||
|             if (flush == Z_PARTIAL_FLUSH) { |             if (flush == Z_PARTIAL_FLUSH) { | ||||||
|                 _tr_align(s); |                 _tr_align(s); | ||||||
| @@ -544,10 +603,10 @@ int ZEXPORT deflate (strm, flush) | |||||||
|                 } |                 } | ||||||
|             } |             } | ||||||
|             flush_pending(strm); |             flush_pending(strm); | ||||||
| 	    if (strm->avail_out == 0) { |             if (strm->avail_out == 0) { | ||||||
| 	      s->last_flush = -1; /* avoid BUF_ERROR at next call, see above */ |               s->last_flush = -1; /* avoid BUF_ERROR at next call, see above */ | ||||||
| 	      return Z_OK; |               return Z_OK; | ||||||
| 	    } |             } | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|     Assert(strm->avail_out > 0, "bug2"); |     Assert(strm->avail_out > 0, "bug2"); | ||||||
| @@ -576,7 +635,7 @@ int ZEXPORT deflateEnd (strm) | |||||||
|  |  | ||||||
|     status = strm->state->status; |     status = strm->state->status; | ||||||
|     if (status != INIT_STATE && status != BUSY_STATE && |     if (status != INIT_STATE && status != BUSY_STATE && | ||||||
| 	status != FINISH_STATE) { |         status != FINISH_STATE) { | ||||||
|       return Z_STREAM_ERROR; |       return Z_STREAM_ERROR; | ||||||
|     } |     } | ||||||
|  |  | ||||||
| @@ -608,11 +667,13 @@ int ZEXPORT deflateCopy (dest, source) | |||||||
|     deflate_state *ss; |     deflate_state *ss; | ||||||
|     ushf *overlay; |     ushf *overlay; | ||||||
|  |  | ||||||
|     ss = source->state; |  | ||||||
|  |  | ||||||
|     if (source == Z_NULL || dest == Z_NULL || ss == Z_NULL) { |     if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) { | ||||||
|         return Z_STREAM_ERROR; |         return Z_STREAM_ERROR; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     ss = source->state; | ||||||
|  |  | ||||||
|     *dest = *source; |     *dest = *source; | ||||||
|  |  | ||||||
|     ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state)); |     ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state)); | ||||||
| @@ -647,7 +708,7 @@ int ZEXPORT deflateCopy (dest, source) | |||||||
|     ds->bl_desc.dyn_tree = ds->bl_tree; |     ds->bl_desc.dyn_tree = ds->bl_tree; | ||||||
|  |  | ||||||
|     return Z_OK; |     return Z_OK; | ||||||
| #endif | #endif /* MAXSEG_64K */ | ||||||
| } | } | ||||||
|  |  | ||||||
| /* =========================================================================== | /* =========================================================================== | ||||||
| @@ -707,6 +768,7 @@ local void lm_init (s) | |||||||
| #endif | #endif | ||||||
| } | } | ||||||
|  |  | ||||||
|  | #ifndef FASTEST | ||||||
| /* =========================================================================== | /* =========================================================================== | ||||||
|  * Set match_start to the longest match starting at the given string and |  * Set match_start to the longest match starting at the given string and | ||||||
|  * return its length. Matches shorter or equal to prev_length are discarded, |  * return its length. Matches shorter or equal to prev_length are discarded, | ||||||
| @@ -720,7 +782,6 @@ local void lm_init (s) | |||||||
| /* For 80x86 and 680x0, an optimized version will be provided in match.asm or | /* For 80x86 and 680x0, an optimized version will be provided in match.asm or | ||||||
|  * match.S. The code will be functionally equivalent. |  * match.S. The code will be functionally equivalent. | ||||||
|  */ |  */ | ||||||
| #ifndef FASTEST |  | ||||||
| local uInt longest_match(s, cur_match) | local uInt longest_match(s, cur_match) | ||||||
|     deflate_state *s; |     deflate_state *s; | ||||||
|     IPos cur_match;                             /* current match */ |     IPos cur_match;                             /* current match */ | ||||||
| @@ -858,12 +919,13 @@ local uInt longest_match(s, cur_match) | |||||||
|     if ((uInt)best_len <= s->lookahead) return (uInt)best_len; |     if ((uInt)best_len <= s->lookahead) return (uInt)best_len; | ||||||
|     return s->lookahead; |     return s->lookahead; | ||||||
| } | } | ||||||
|  | #endif /* ASMV */ | ||||||
|  | #endif /* FASTEST */ | ||||||
|  |  | ||||||
| #else /* FASTEST */ |  | ||||||
| /* --------------------------------------------------------------------------- | /* --------------------------------------------------------------------------- | ||||||
|  * Optimized version for level == 1 only |  * Optimized version for level == 1 or strategy == Z_RLE only | ||||||
|  */ |  */ | ||||||
| local uInt longest_match(s, cur_match) | local uInt longest_match_fast(s, cur_match) | ||||||
|     deflate_state *s; |     deflate_state *s; | ||||||
|     IPos cur_match;                             /* current match */ |     IPos cur_match;                             /* current match */ | ||||||
| { | { | ||||||
| @@ -901,10 +963,10 @@ local uInt longest_match(s, cur_match) | |||||||
|      */ |      */ | ||||||
|     do { |     do { | ||||||
|     } while (*++scan == *++match && *++scan == *++match && |     } while (*++scan == *++match && *++scan == *++match && | ||||||
| 	     *++scan == *++match && *++scan == *++match && |              *++scan == *++match && *++scan == *++match && | ||||||
| 	     *++scan == *++match && *++scan == *++match && |              *++scan == *++match && *++scan == *++match && | ||||||
| 	     *++scan == *++match && *++scan == *++match && |              *++scan == *++match && *++scan == *++match && | ||||||
| 	     scan < strend); |              scan < strend); | ||||||
|  |  | ||||||
|     Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); |     Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); | ||||||
|  |  | ||||||
| @@ -915,8 +977,6 @@ local uInt longest_match(s, cur_match) | |||||||
|     s->match_start = cur_match; |     s->match_start = cur_match; | ||||||
|     return len <= s->lookahead ? len : s->lookahead; |     return len <= s->lookahead ? len : s->lookahead; | ||||||
| } | } | ||||||
| #endif /* FASTEST */ |  | ||||||
| #endif /* ASMV */ |  | ||||||
|  |  | ||||||
| #ifdef DEBUG | #ifdef DEBUG | ||||||
| /* =========================================================================== | /* =========================================================================== | ||||||
| @@ -931,10 +991,10 @@ local void check_match(s, start, match, length) | |||||||
|     if (zmemcmp(s->window + match, |     if (zmemcmp(s->window + match, | ||||||
|                 s->window + start, length) != EQUAL) { |                 s->window + start, length) != EQUAL) { | ||||||
|         fprintf(stderr, " start %u, match %u, length %d\n", |         fprintf(stderr, " start %u, match %u, length %d\n", | ||||||
| 		start, match, length); |                 start, match, length); | ||||||
|         do { |         do { | ||||||
| 	    fprintf(stderr, "%c%c", s->window[match++], s->window[start++]); |             fprintf(stderr, "%c%c", s->window[match++], s->window[start++]); | ||||||
| 	} while (--length != 0); |         } while (--length != 0); | ||||||
|         z_error("invalid match"); |         z_error("invalid match"); | ||||||
|     } |     } | ||||||
|     if (z_verbose > 1) { |     if (z_verbose > 1) { | ||||||
| @@ -944,7 +1004,7 @@ local void check_match(s, start, match, length) | |||||||
| } | } | ||||||
| #else | #else | ||||||
| #  define check_match(s, start, match, length) | #  define check_match(s, start, match, length) | ||||||
| #endif | #endif /* DEBUG */ | ||||||
|  |  | ||||||
| /* =========================================================================== | /* =========================================================================== | ||||||
|  * Fill the window when the lookahead becomes insufficient. |  * Fill the window when the lookahead becomes insufficient. | ||||||
| @@ -993,23 +1053,23 @@ local void fill_window(s) | |||||||
|                later. (Using level 0 permanently is not an optimal usage of |                later. (Using level 0 permanently is not an optimal usage of | ||||||
|                zlib, so we don't care about this pathological case.) |                zlib, so we don't care about this pathological case.) | ||||||
|              */ |              */ | ||||||
| 	    n = s->hash_size; |             n = s->hash_size; | ||||||
| 	    p = &s->head[n]; |             p = &s->head[n]; | ||||||
| 	    do { |             do { | ||||||
| 		m = *--p; |                 m = *--p; | ||||||
| 		*p = (Pos)(m >= wsize ? m-wsize : NIL); |                 *p = (Pos)(m >= wsize ? m-wsize : NIL); | ||||||
| 	    } while (--n); |             } while (--n); | ||||||
|  |  | ||||||
| 	    n = wsize; |             n = wsize; | ||||||
| #ifndef FASTEST | #ifndef FASTEST | ||||||
| 	    p = &s->prev[n]; |             p = &s->prev[n]; | ||||||
| 	    do { |             do { | ||||||
| 		m = *--p; |                 m = *--p; | ||||||
| 		*p = (Pos)(m >= wsize ? m-wsize : NIL); |                 *p = (Pos)(m >= wsize ? m-wsize : NIL); | ||||||
| 		/* If n is not on any hash chain, prev[n] is garbage but |                 /* If n is not on any hash chain, prev[n] is garbage but | ||||||
| 		 * its value will never be used. |                  * its value will never be used. | ||||||
| 		 */ |                  */ | ||||||
| 	    } while (--n); |             } while (--n); | ||||||
| #endif | #endif | ||||||
|             more += wsize; |             more += wsize; | ||||||
|         } |         } | ||||||
| @@ -1054,8 +1114,8 @@ local void fill_window(s) | |||||||
|    _tr_flush_block(s, (s->block_start >= 0L ? \ |    _tr_flush_block(s, (s->block_start >= 0L ? \ | ||||||
|                    (charf *)&s->window[(unsigned)s->block_start] : \ |                    (charf *)&s->window[(unsigned)s->block_start] : \ | ||||||
|                    (charf *)Z_NULL), \ |                    (charf *)Z_NULL), \ | ||||||
| 		(ulg)((long)s->strstart - s->block_start), \ |                 (ulg)((long)s->strstart - s->block_start), \ | ||||||
| 		(eof)); \ |                 (eof)); \ | ||||||
|    s->block_start = s->strstart; \ |    s->block_start = s->strstart; \ | ||||||
|    flush_pending(s->strm); \ |    flush_pending(s->strm); \ | ||||||
|    Tracev((stderr,"[FLUSH]")); \ |    Tracev((stderr,"[FLUSH]")); \ | ||||||
| @@ -1096,32 +1156,32 @@ local block_state deflate_stored(s, flush) | |||||||
|         if (s->lookahead <= 1) { |         if (s->lookahead <= 1) { | ||||||
|  |  | ||||||
|             Assert(s->strstart < s->w_size+MAX_DIST(s) || |             Assert(s->strstart < s->w_size+MAX_DIST(s) || | ||||||
| 		   s->block_start >= (long)s->w_size, "slide too late"); |                    s->block_start >= (long)s->w_size, "slide too late"); | ||||||
|  |  | ||||||
|             fill_window(s); |             fill_window(s); | ||||||
|             if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more; |             if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more; | ||||||
|  |  | ||||||
|             if (s->lookahead == 0) break; /* flush the current block */ |             if (s->lookahead == 0) break; /* flush the current block */ | ||||||
|         } |         } | ||||||
| 	Assert(s->block_start >= 0L, "block gone"); |         Assert(s->block_start >= 0L, "block gone"); | ||||||
|  |  | ||||||
| 	s->strstart += s->lookahead; |         s->strstart += s->lookahead; | ||||||
| 	s->lookahead = 0; |         s->lookahead = 0; | ||||||
|  |  | ||||||
| 	/* Emit a stored block if pending_buf will be full: */ |         /* Emit a stored block if pending_buf will be full: */ | ||||||
|  	max_start = s->block_start + max_block_size; |         max_start = s->block_start + max_block_size; | ||||||
|         if (s->strstart == 0 || (ulg)s->strstart >= max_start) { |         if (s->strstart == 0 || (ulg)s->strstart >= max_start) { | ||||||
| 	    /* strstart == 0 is possible when wraparound on 16-bit machine */ |             /* strstart == 0 is possible when wraparound on 16-bit machine */ | ||||||
| 	    s->lookahead = (uInt)(s->strstart - max_start); |             s->lookahead = (uInt)(s->strstart - max_start); | ||||||
| 	    s->strstart = (uInt)max_start; |             s->strstart = (uInt)max_start; | ||||||
|             FLUSH_BLOCK(s, 0); |             FLUSH_BLOCK(s, 0); | ||||||
| 	} |         } | ||||||
| 	/* Flush if we may have to slide, otherwise block_start may become |         /* Flush if we may have to slide, otherwise block_start may become | ||||||
|          * negative and the data will be gone: |          * negative and the data will be gone: | ||||||
|          */ |          */ | ||||||
|         if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) { |         if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) { | ||||||
|             FLUSH_BLOCK(s, 0); |             FLUSH_BLOCK(s, 0); | ||||||
| 	} |         } | ||||||
|     } |     } | ||||||
|     FLUSH_BLOCK(s, flush == Z_FINISH); |     FLUSH_BLOCK(s, flush == Z_FINISH); | ||||||
|     return flush == Z_FINISH ? finish_done : block_done; |     return flush == Z_FINISH ? finish_done : block_done; | ||||||
| @@ -1150,8 +1210,8 @@ local block_state deflate_fast(s, flush) | |||||||
|         if (s->lookahead < MIN_LOOKAHEAD) { |         if (s->lookahead < MIN_LOOKAHEAD) { | ||||||
|             fill_window(s); |             fill_window(s); | ||||||
|             if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { |             if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { | ||||||
| 	        return need_more; |                 return need_more; | ||||||
| 	    } |             } | ||||||
|             if (s->lookahead == 0) break; /* flush the current block */ |             if (s->lookahead == 0) break; /* flush the current block */ | ||||||
|         } |         } | ||||||
|  |  | ||||||
| @@ -1170,10 +1230,19 @@ local block_state deflate_fast(s, flush) | |||||||
|              * of window index 0 (in particular we have to avoid a match |              * of window index 0 (in particular we have to avoid a match | ||||||
|              * of the string with itself at the start of the input file). |              * of the string with itself at the start of the input file). | ||||||
|              */ |              */ | ||||||
|             if (s->strategy != Z_HUFFMAN_ONLY) { | #ifdef FASTEST | ||||||
|                 s->match_length = longest_match (s, hash_head); |             if ((s->strategy < Z_HUFFMAN_ONLY) || | ||||||
|  |                 (s->strategy == Z_RLE && s->strstart - hash_head == 1)) { | ||||||
|  |                 s->match_length = longest_match_fast (s, hash_head); | ||||||
|             } |             } | ||||||
|             /* longest_match() sets match_start */ | #else | ||||||
|  |             if (s->strategy < Z_HUFFMAN_ONLY) { | ||||||
|  |                 s->match_length = longest_match (s, hash_head); | ||||||
|  |             } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) { | ||||||
|  |                 s->match_length = longest_match_fast (s, hash_head); | ||||||
|  |             } | ||||||
|  | #endif | ||||||
|  |             /* longest_match() or longest_match_fast() sets match_start */ | ||||||
|         } |         } | ||||||
|         if (s->match_length >= MIN_MATCH) { |         if (s->match_length >= MIN_MATCH) { | ||||||
|             check_match(s, s->strstart, s->match_start, s->match_length); |             check_match(s, s->strstart, s->match_start, s->match_length); | ||||||
| @@ -1200,7 +1269,7 @@ local block_state deflate_fast(s, flush) | |||||||
|                 s->strstart++; |                 s->strstart++; | ||||||
|             } else |             } else | ||||||
| #endif | #endif | ||||||
| 	    { |             { | ||||||
|                 s->strstart += s->match_length; |                 s->strstart += s->match_length; | ||||||
|                 s->match_length = 0; |                 s->match_length = 0; | ||||||
|                 s->ins_h = s->window[s->strstart]; |                 s->ins_h = s->window[s->strstart]; | ||||||
| @@ -1225,6 +1294,7 @@ local block_state deflate_fast(s, flush) | |||||||
|     return flush == Z_FINISH ? finish_done : block_done; |     return flush == Z_FINISH ? finish_done : block_done; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | #ifndef FASTEST | ||||||
| /* =========================================================================== | /* =========================================================================== | ||||||
|  * Same as above, but achieves better compression. We use a lazy |  * Same as above, but achieves better compression. We use a lazy | ||||||
|  * evaluation for matches: a match is finally adopted only if there is |  * evaluation for matches: a match is finally adopted only if there is | ||||||
| @@ -1247,8 +1317,8 @@ local block_state deflate_slow(s, flush) | |||||||
|         if (s->lookahead < MIN_LOOKAHEAD) { |         if (s->lookahead < MIN_LOOKAHEAD) { | ||||||
|             fill_window(s); |             fill_window(s); | ||||||
|             if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { |             if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { | ||||||
| 	        return need_more; |                 return need_more; | ||||||
| 	    } |             } | ||||||
|             if (s->lookahead == 0) break; /* flush the current block */ |             if (s->lookahead == 0) break; /* flush the current block */ | ||||||
|         } |         } | ||||||
|  |  | ||||||
| @@ -1270,10 +1340,12 @@ local block_state deflate_slow(s, flush) | |||||||
|              * of window index 0 (in particular we have to avoid a match |              * of window index 0 (in particular we have to avoid a match | ||||||
|              * of the string with itself at the start of the input file). |              * of the string with itself at the start of the input file). | ||||||
|              */ |              */ | ||||||
|             if (s->strategy != Z_HUFFMAN_ONLY) { |             if (s->strategy < Z_HUFFMAN_ONLY) { | ||||||
|                 s->match_length = longest_match (s, hash_head); |                 s->match_length = longest_match (s, hash_head); | ||||||
|  |             } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) { | ||||||
|  |                 s->match_length = longest_match_fast (s, hash_head); | ||||||
|             } |             } | ||||||
|             /* longest_match() sets match_start */ |             /* longest_match() or longest_match_fast() sets match_start */ | ||||||
|  |  | ||||||
|             if (s->match_length <= 5 && (s->strategy == Z_FILTERED || |             if (s->match_length <= 5 && (s->strategy == Z_FILTERED || | ||||||
|                  (s->match_length == MIN_MATCH && |                  (s->match_length == MIN_MATCH && | ||||||
| @@ -1295,7 +1367,7 @@ local block_state deflate_slow(s, flush) | |||||||
|             check_match(s, s->strstart-1, s->prev_match, s->prev_length); |             check_match(s, s->strstart-1, s->prev_match, s->prev_length); | ||||||
|  |  | ||||||
|             _tr_tally_dist(s, s->strstart -1 - s->prev_match, |             _tr_tally_dist(s, s->strstart -1 - s->prev_match, | ||||||
| 			   s->prev_length - MIN_MATCH, bflush); |                            s->prev_length - MIN_MATCH, bflush); | ||||||
|  |  | ||||||
|             /* Insert in hash table all strings up to the end of the match. |             /* Insert in hash table all strings up to the end of the match. | ||||||
|              * strstart-1 and strstart are already inserted. If there is not |              * strstart-1 and strstart are already inserted. If there is not | ||||||
| @@ -1321,8 +1393,8 @@ local block_state deflate_slow(s, flush) | |||||||
|              * is longer, truncate the previous match to a single literal. |              * is longer, truncate the previous match to a single literal. | ||||||
|              */ |              */ | ||||||
|             Tracevv((stderr,"%c", s->window[s->strstart-1])); |             Tracevv((stderr,"%c", s->window[s->strstart-1])); | ||||||
| 	    _tr_tally_lit(s, s->window[s->strstart-1], bflush); |             _tr_tally_lit(s, s->window[s->strstart-1], bflush); | ||||||
| 	    if (bflush) { |             if (bflush) { | ||||||
|                 FLUSH_BLOCK_ONLY(s, 0); |                 FLUSH_BLOCK_ONLY(s, 0); | ||||||
|             } |             } | ||||||
|             s->strstart++; |             s->strstart++; | ||||||
| @@ -1346,3 +1418,4 @@ local block_state deflate_slow(s, flush) | |||||||
|     FLUSH_BLOCK(s, flush == Z_FINISH); |     FLUSH_BLOCK(s, flush == Z_FINISH); | ||||||
|     return flush == Z_FINISH ? finish_done : block_done; |     return flush == Z_FINISH ? finish_done : block_done; | ||||||
| } | } | ||||||
|  | #endif /* FASTEST */ | ||||||
|   | |||||||
							
								
								
									
										10
									
								
								deflate.h
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								deflate.h
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| /* deflate.h -- internal compression state | /* deflate.h -- internal compression state | ||||||
|  * Copyright (C) 1995-1998 Jean-loup Gailly |  * Copyright (C) 1995-2002 Jean-loup Gailly | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h  |  * For conditions of distribution and use, see copyright notice in zlib.h  | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| @@ -230,12 +230,12 @@ typedef struct internal_state { | |||||||
|  |  | ||||||
|     ulg opt_len;        /* bit length of current block with optimal trees */ |     ulg opt_len;        /* bit length of current block with optimal trees */ | ||||||
|     ulg static_len;     /* bit length of current block with static trees */ |     ulg static_len;     /* bit length of current block with static trees */ | ||||||
|     ulg compressed_len; /* total bit length of compressed file */ |  | ||||||
|     uInt matches;       /* number of string matches in current block */ |     uInt matches;       /* number of string matches in current block */ | ||||||
|     int last_eob_len;   /* bit length of EOB code for last block */ |     int last_eob_len;   /* bit length of EOB code for last block */ | ||||||
|  |  | ||||||
| #ifdef DEBUG | #ifdef DEBUG | ||||||
|     ulg bits_sent;      /* bit length of the compressed data */ |     ulg compressed_len; /* total bit length of compressed file mod 2^32 */ | ||||||
|  |     ulg bits_sent;      /* bit length of compressed data sent mod 2^32 */ | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|     ush bi_buf; |     ush bi_buf; | ||||||
| @@ -268,8 +268,8 @@ typedef struct internal_state { | |||||||
|         /* in trees.c */ |         /* in trees.c */ | ||||||
| void _tr_init         OF((deflate_state *s)); | void _tr_init         OF((deflate_state *s)); | ||||||
| int  _tr_tally        OF((deflate_state *s, unsigned dist, unsigned lc)); | int  _tr_tally        OF((deflate_state *s, unsigned dist, unsigned lc)); | ||||||
| ulg  _tr_flush_block  OF((deflate_state *s, charf *buf, ulg stored_len, | void _tr_flush_block  OF((deflate_state *s, charf *buf, ulg stored_len, | ||||||
| 			  int eof)); |                           int eof)); | ||||||
| void _tr_align        OF((deflate_state *s)); | void _tr_align        OF((deflate_state *s)); | ||||||
| void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, | void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, | ||||||
|                           int eof)); |                           int eof)); | ||||||
|   | |||||||
							
								
								
									
										110
									
								
								example.c
									
									
									
									
									
								
							
							
						
						
									
										110
									
								
								example.c
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| /* example.c -- usage example of the zlib compression library | /* example.c -- usage example of the zlib compression library | ||||||
|  * Copyright (C) 1995-1998 Jean-loup Gailly. |  * Copyright (C) 1995-2003 Jean-loup Gailly. | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| @@ -15,6 +15,12 @@ | |||||||
|    extern void exit  OF((int)); |    extern void exit  OF((int)); | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|  | #if defined(VMS) || defined(RISCOS) | ||||||
|  | #  define TESTFILE "foo-gz" | ||||||
|  | #else | ||||||
|  | #  define TESTFILE "foo.gz" | ||||||
|  | #endif | ||||||
|  |  | ||||||
| #define CHECK_ERR(err, msg) { \ | #define CHECK_ERR(err, msg) { \ | ||||||
|     if (err != Z_OK) { \ |     if (err != Z_OK) { \ | ||||||
|         fprintf(stderr, "%s error: %d\n", msg, err); \ |         fprintf(stderr, "%s error: %d\n", msg, err); \ | ||||||
| @@ -31,22 +37,22 @@ const char dictionary[] = "hello"; | |||||||
| uLong dictId; /* Adler32 value of the dictionary */ | uLong dictId; /* Adler32 value of the dictionary */ | ||||||
|  |  | ||||||
| void test_compress      OF((Byte *compr, uLong comprLen, | void test_compress      OF((Byte *compr, uLong comprLen, | ||||||
| 		            Byte *uncompr, uLong uncomprLen)); |                             Byte *uncompr, uLong uncomprLen)); | ||||||
| void test_gzio          OF((const char *out, const char *in, | void test_gzio          OF((const char *out, const char *in, | ||||||
| 		            Byte *uncompr, int uncomprLen)); |                             Byte *uncompr, int uncomprLen)); | ||||||
| void test_deflate       OF((Byte *compr, uLong comprLen)); | void test_deflate       OF((Byte *compr, uLong comprLen)); | ||||||
| void test_inflate       OF((Byte *compr, uLong comprLen, | void test_inflate       OF((Byte *compr, uLong comprLen, | ||||||
| 		            Byte *uncompr, uLong uncomprLen)); |                             Byte *uncompr, uLong uncomprLen)); | ||||||
| void test_large_deflate OF((Byte *compr, uLong comprLen, | void test_large_deflate OF((Byte *compr, uLong comprLen, | ||||||
| 		            Byte *uncompr, uLong uncomprLen)); |                             Byte *uncompr, uLong uncomprLen)); | ||||||
| void test_large_inflate OF((Byte *compr, uLong comprLen, | void test_large_inflate OF((Byte *compr, uLong comprLen, | ||||||
| 		            Byte *uncompr, uLong uncomprLen)); |                             Byte *uncompr, uLong uncomprLen)); | ||||||
| void test_flush         OF((Byte *compr, uLong *comprLen)); | void test_flush         OF((Byte *compr, uLong *comprLen)); | ||||||
| void test_sync          OF((Byte *compr, uLong comprLen, | void test_sync          OF((Byte *compr, uLong comprLen, | ||||||
| 		            Byte *uncompr, uLong uncomprLen)); |                             Byte *uncompr, uLong uncomprLen)); | ||||||
| void test_dict_deflate  OF((Byte *compr, uLong comprLen)); | void test_dict_deflate  OF((Byte *compr, uLong comprLen)); | ||||||
| void test_dict_inflate  OF((Byte *compr, uLong comprLen, | void test_dict_inflate  OF((Byte *compr, uLong comprLen, | ||||||
| 		            Byte *uncompr, uLong uncomprLen)); |                             Byte *uncompr, uLong uncomprLen)); | ||||||
| int  main               OF((int argc, char *argv[])); | int  main               OF((int argc, char *argv[])); | ||||||
|  |  | ||||||
| /* =========================================================================== | /* =========================================================================== | ||||||
| @@ -69,9 +75,9 @@ void test_compress(compr, comprLen, uncompr, uncomprLen) | |||||||
|  |  | ||||||
|     if (strcmp((char*)uncompr, hello)) { |     if (strcmp((char*)uncompr, hello)) { | ||||||
|         fprintf(stderr, "bad uncompress\n"); |         fprintf(stderr, "bad uncompress\n"); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } else { |     } else { | ||||||
|         printf("uncompress(): %s\n", uncompr); |         printf("uncompress(): %s\n", (char *)uncompr); | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -79,8 +85,8 @@ void test_compress(compr, comprLen, uncompr, uncomprLen) | |||||||
|  * Test read/write of .gz files |  * Test read/write of .gz files | ||||||
|  */ |  */ | ||||||
| void test_gzio(out, in, uncompr, uncomprLen) | void test_gzio(out, in, uncompr, uncomprLen) | ||||||
|     const char *out; /* output file */ |     const char *out; /* compressed output file */ | ||||||
|     const char *in;  /* input file */ |     const char *in;  /* compressed input file */ | ||||||
|     Byte *uncompr; |     Byte *uncompr; | ||||||
|     int  uncomprLen; |     int  uncomprLen; | ||||||
| { | { | ||||||
| @@ -97,11 +103,11 @@ void test_gzio(out, in, uncompr, uncomprLen) | |||||||
|     gzputc(file, 'h'); |     gzputc(file, 'h'); | ||||||
|     if (gzputs(file, "ello") != 4) { |     if (gzputs(file, "ello") != 4) { | ||||||
|         fprintf(stderr, "gzputs err: %s\n", gzerror(file, &err)); |         fprintf(stderr, "gzputs err: %s\n", gzerror(file, &err)); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|     if (gzprintf(file, ", %s!", "hello") != 8) { |     if (gzprintf(file, ", %s!", "hello") != 8) { | ||||||
|         fprintf(stderr, "gzprintf err: %s\n", gzerror(file, &err)); |         fprintf(stderr, "gzprintf err: %s\n", gzerror(file, &err)); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|     gzseek(file, 1L, SEEK_CUR); /* add one zero byte */ |     gzseek(file, 1L, SEEK_CUR); /* add one zero byte */ | ||||||
|     gzclose(file); |     gzclose(file); | ||||||
| @@ -115,38 +121,38 @@ void test_gzio(out, in, uncompr, uncomprLen) | |||||||
|     uncomprLen = gzread(file, uncompr, (unsigned)uncomprLen); |     uncomprLen = gzread(file, uncompr, (unsigned)uncomprLen); | ||||||
|     if (uncomprLen != len) { |     if (uncomprLen != len) { | ||||||
|         fprintf(stderr, "gzread err: %s\n", gzerror(file, &err)); |         fprintf(stderr, "gzread err: %s\n", gzerror(file, &err)); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|     if (strcmp((char*)uncompr, hello)) { |     if (strcmp((char*)uncompr, hello)) { | ||||||
|         fprintf(stderr, "bad gzread: %s\n", (char*)uncompr); |         fprintf(stderr, "bad gzread: %s\n", (char*)uncompr); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } else { |     } else { | ||||||
|         printf("gzread(): %s\n", uncompr); |         printf("gzread(): %s\n", (char *)uncompr); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     pos = gzseek(file, -8L, SEEK_CUR); |     pos = gzseek(file, -8L, SEEK_CUR); | ||||||
|     if (pos != 6 || gztell(file) != pos) { |     if (pos != 6 || gztell(file) != pos) { | ||||||
| 	fprintf(stderr, "gzseek error, pos=%ld, gztell=%ld\n", |         fprintf(stderr, "gzseek error, pos=%ld, gztell=%ld\n", | ||||||
| 		pos, gztell(file)); |                 (long)pos, (long)gztell(file)); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     if (gzgetc(file) != ' ') { |     if (gzgetc(file) != ' ') { | ||||||
| 	fprintf(stderr, "gzgetc error\n"); |         fprintf(stderr, "gzgetc error\n"); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     gzgets(file, (char*)uncompr, uncomprLen); |     gzgets(file, (char*)uncompr, uncomprLen); | ||||||
|     uncomprLen = strlen((char*)uncompr); |     uncomprLen = strlen((char*)uncompr); | ||||||
|     if (uncomprLen != 6) { /* "hello!" */ |     if (uncomprLen != 6) { /* "hello!" */ | ||||||
|         fprintf(stderr, "gzgets err after gzseek: %s\n", gzerror(file, &err)); |         fprintf(stderr, "gzgets err after gzseek: %s\n", gzerror(file, &err)); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|     if (strcmp((char*)uncompr, hello+7)) { |     if (strcmp((char*)uncompr, hello+7)) { | ||||||
|         fprintf(stderr, "bad gzgets after gzseek\n"); |         fprintf(stderr, "bad gzgets after gzseek\n"); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } else { |     } else { | ||||||
|         printf("gzgets() after gzseek: %s\n", uncompr); |         printf("gzgets() after gzseek: %s\n", (char *)uncompr); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     gzclose(file); |     gzclose(file); | ||||||
| @@ -225,9 +231,9 @@ void test_inflate(compr, comprLen, uncompr, uncomprLen) | |||||||
|  |  | ||||||
|     if (strcmp((char*)uncompr, hello)) { |     if (strcmp((char*)uncompr, hello)) { | ||||||
|         fprintf(stderr, "bad inflate\n"); |         fprintf(stderr, "bad inflate\n"); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } else { |     } else { | ||||||
|         printf("inflate(): %s\n", uncompr); |         printf("inflate(): %s\n", (char *)uncompr); | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -260,7 +266,7 @@ void test_large_deflate(compr, comprLen, uncompr, uncomprLen) | |||||||
|     CHECK_ERR(err, "deflate"); |     CHECK_ERR(err, "deflate"); | ||||||
|     if (c_stream.avail_in != 0) { |     if (c_stream.avail_in != 0) { | ||||||
|         fprintf(stderr, "deflate not greedy\n"); |         fprintf(stderr, "deflate not greedy\n"); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /* Feed in already compressed data and switch to no compression: */ |     /* Feed in already compressed data and switch to no compression: */ | ||||||
| @@ -280,7 +286,7 @@ void test_large_deflate(compr, comprLen, uncompr, uncomprLen) | |||||||
|     err = deflate(&c_stream, Z_FINISH); |     err = deflate(&c_stream, Z_FINISH); | ||||||
|     if (err != Z_STREAM_END) { |     if (err != Z_STREAM_END) { | ||||||
|         fprintf(stderr, "deflate should report Z_STREAM_END\n"); |         fprintf(stderr, "deflate should report Z_STREAM_END\n"); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|     err = deflateEnd(&c_stream); |     err = deflateEnd(&c_stream); | ||||||
|     CHECK_ERR(err, "deflateEnd"); |     CHECK_ERR(err, "deflateEnd"); | ||||||
| @@ -310,7 +316,7 @@ void test_large_inflate(compr, comprLen, uncompr, uncomprLen) | |||||||
|  |  | ||||||
|     for (;;) { |     for (;;) { | ||||||
|         d_stream.next_out = uncompr;            /* discard the output */ |         d_stream.next_out = uncompr;            /* discard the output */ | ||||||
| 	d_stream.avail_out = (uInt)uncomprLen; |         d_stream.avail_out = (uInt)uncomprLen; | ||||||
|         err = inflate(&d_stream, Z_NO_FLUSH); |         err = inflate(&d_stream, Z_NO_FLUSH); | ||||||
|         if (err == Z_STREAM_END) break; |         if (err == Z_STREAM_END) break; | ||||||
|         CHECK_ERR(err, "large inflate"); |         CHECK_ERR(err, "large inflate"); | ||||||
| @@ -321,7 +327,7 @@ void test_large_inflate(compr, comprLen, uncompr, uncomprLen) | |||||||
|  |  | ||||||
|     if (d_stream.total_out != 2*uncomprLen + comprLen/2) { |     if (d_stream.total_out != 2*uncomprLen + comprLen/2) { | ||||||
|         fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out); |         fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } else { |     } else { | ||||||
|         printf("large_inflate(): OK\n"); |         printf("large_inflate(): OK\n"); | ||||||
|     } |     } | ||||||
| @@ -401,12 +407,12 @@ void test_sync(compr, comprLen, uncompr, uncomprLen) | |||||||
|     if (err != Z_DATA_ERROR) { |     if (err != Z_DATA_ERROR) { | ||||||
|         fprintf(stderr, "inflate should report DATA_ERROR\n"); |         fprintf(stderr, "inflate should report DATA_ERROR\n"); | ||||||
|         /* Because of incorrect adler32 */ |         /* Because of incorrect adler32 */ | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|     err = inflateEnd(&d_stream); |     err = inflateEnd(&d_stream); | ||||||
|     CHECK_ERR(err, "inflateEnd"); |     CHECK_ERR(err, "inflateEnd"); | ||||||
|  |  | ||||||
|     printf("after inflateSync(): hel%s\n", uncompr); |     printf("after inflateSync(): hel%s\n", (char *)uncompr); | ||||||
| } | } | ||||||
|  |  | ||||||
| /* =========================================================================== | /* =========================================================================== | ||||||
| @@ -427,7 +433,7 @@ void test_dict_deflate(compr, comprLen) | |||||||
|     CHECK_ERR(err, "deflateInit"); |     CHECK_ERR(err, "deflateInit"); | ||||||
|  |  | ||||||
|     err = deflateSetDictionary(&c_stream, |     err = deflateSetDictionary(&c_stream, | ||||||
| 			       (const Bytef*)dictionary, sizeof(dictionary)); |                                (const Bytef*)dictionary, sizeof(dictionary)); | ||||||
|     CHECK_ERR(err, "deflateSetDictionary"); |     CHECK_ERR(err, "deflateSetDictionary"); | ||||||
|  |  | ||||||
|     dictId = c_stream.adler; |     dictId = c_stream.adler; | ||||||
| @@ -440,7 +446,7 @@ void test_dict_deflate(compr, comprLen) | |||||||
|     err = deflate(&c_stream, Z_FINISH); |     err = deflate(&c_stream, Z_FINISH); | ||||||
|     if (err != Z_STREAM_END) { |     if (err != Z_STREAM_END) { | ||||||
|         fprintf(stderr, "deflate should report Z_STREAM_END\n"); |         fprintf(stderr, "deflate should report Z_STREAM_END\n"); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|     err = deflateEnd(&c_stream); |     err = deflateEnd(&c_stream); | ||||||
|     CHECK_ERR(err, "deflateEnd"); |     CHECK_ERR(err, "deflateEnd"); | ||||||
| @@ -474,14 +480,14 @@ void test_dict_inflate(compr, comprLen, uncompr, uncomprLen) | |||||||
|     for (;;) { |     for (;;) { | ||||||
|         err = inflate(&d_stream, Z_NO_FLUSH); |         err = inflate(&d_stream, Z_NO_FLUSH); | ||||||
|         if (err == Z_STREAM_END) break; |         if (err == Z_STREAM_END) break; | ||||||
| 	if (err == Z_NEED_DICT) { |         if (err == Z_NEED_DICT) { | ||||||
| 	    if (d_stream.adler != dictId) { |             if (d_stream.adler != dictId) { | ||||||
| 		fprintf(stderr, "unexpected dictionary"); |                 fprintf(stderr, "unexpected dictionary"); | ||||||
| 		exit(1); |                 exit(1); | ||||||
| 	    } |             } | ||||||
| 	    err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary, |             err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary, | ||||||
| 				       sizeof(dictionary)); |                                        sizeof(dictionary)); | ||||||
| 	} |         } | ||||||
|         CHECK_ERR(err, "inflate with dict"); |         CHECK_ERR(err, "inflate with dict"); | ||||||
|     } |     } | ||||||
|  |  | ||||||
| @@ -490,9 +496,9 @@ void test_dict_inflate(compr, comprLen, uncompr, uncomprLen) | |||||||
|  |  | ||||||
|     if (strcmp((char*)uncompr, hello)) { |     if (strcmp((char*)uncompr, hello)) { | ||||||
|         fprintf(stderr, "bad inflate with dict\n"); |         fprintf(stderr, "bad inflate with dict\n"); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } else { |     } else { | ||||||
|         printf("inflate with dictionary: %s\n", uncompr); |         printf("inflate with dictionary: %s\n", (char *)uncompr); | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -524,13 +530,13 @@ int main(argc, argv) | |||||||
|      */ |      */ | ||||||
|     if (compr == Z_NULL || uncompr == Z_NULL) { |     if (compr == Z_NULL || uncompr == Z_NULL) { | ||||||
|         printf("out of memory\n"); |         printf("out of memory\n"); | ||||||
| 	exit(1); |         exit(1); | ||||||
|     } |     } | ||||||
|     test_compress(compr, comprLen, uncompr, uncomprLen); |     test_compress(compr, comprLen, uncompr, uncomprLen); | ||||||
|  |  | ||||||
|     test_gzio((argc > 1 ? argv[1] : "foo.gz"), |     test_gzio((argc > 1 ? argv[1] : TESTFILE), | ||||||
|               (argc > 2 ? argv[2] : "foo.gz"), |               (argc > 2 ? argv[2] : TESTFILE), | ||||||
| 	      uncompr, (int)uncomprLen); |               uncompr, (int)uncomprLen); | ||||||
|  |  | ||||||
|     test_deflate(compr, comprLen); |     test_deflate(compr, comprLen); | ||||||
|     test_inflate(compr, comprLen, uncompr, uncomprLen); |     test_inflate(compr, comprLen, uncompr, uncomprLen); | ||||||
| @@ -545,6 +551,8 @@ int main(argc, argv) | |||||||
|     test_dict_deflate(compr, comprLen); |     test_dict_deflate(compr, comprLen); | ||||||
|     test_dict_inflate(compr, comprLen, uncompr, uncomprLen); |     test_dict_inflate(compr, comprLen, uncompr, uncomprLen); | ||||||
|  |  | ||||||
|     exit(0); |     free(compr); | ||||||
|     return 0; /* to avoid warning */ |     free(uncompr); | ||||||
|  |  | ||||||
|  |     return 0; | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										398
									
								
								gzio.c
									
									
									
									
									
								
							
							
						
						
									
										398
									
								
								gzio.c
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| /* gzio.c -- IO on .gz files | /* gzio.c -- IO on .gz files | ||||||
|  * Copyright (C) 1995-1998 Jean-loup Gailly. |  * Copyright (C) 1995-2003 Jean-loup Gailly. | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  * |  * | ||||||
|  * Compile this file with -DNO_DEFLATE to avoid the compression code. |  * Compile this file with -DNO_DEFLATE to avoid the compression code. | ||||||
| @@ -13,13 +13,26 @@ | |||||||
|  |  | ||||||
| struct internal_state {int dummy;}; /* for buggy compilers */ | struct internal_state {int dummy;}; /* for buggy compilers */ | ||||||
|  |  | ||||||
| #define Z_BUFSIZE       16384 | #ifndef Z_BUFSIZE | ||||||
| #define Z_PRINTF_BUFSIZE 4096 | #  ifdef MAXSEG_64K | ||||||
|  | #    define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */ | ||||||
|  | #  else | ||||||
|  | #    define Z_BUFSIZE 16384 | ||||||
|  | #  endif | ||||||
|  | #endif | ||||||
|  | #ifndef Z_PRINTF_BUFSIZE | ||||||
|  | #  define Z_PRINTF_BUFSIZE 4096 | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | #ifndef STDC | ||||||
|  | extern voidp  malloc OF((uInt size)); | ||||||
|  | extern void   free   OF((voidpf ptr)); | ||||||
|  | #endif | ||||||
|  |  | ||||||
| #define ALLOC(size) malloc(size) | #define ALLOC(size) malloc(size) | ||||||
| #define TRYFREE(p) {if (p) free(p);} | #define TRYFREE(p) {if (p) free(p);} | ||||||
|  |  | ||||||
| static int gz_magic[2] = {0x1f, 0x8b}; /* gzip magic header */ | static int const gz_magic[2] = {0x1f, 0x8b}; /* gzip magic header */ | ||||||
|  |  | ||||||
| /* gzip flag byte */ | /* gzip flag byte */ | ||||||
| #define ASCII_FLAG   0x01 /* bit 0 set: file probably ascii text */ | #define ASCII_FLAG   0x01 /* bit 0 set: file probably ascii text */ | ||||||
| @@ -104,14 +117,16 @@ local gzFile gz_open (path, mode, fd) | |||||||
|         if (*p == 'r') s->mode = 'r'; |         if (*p == 'r') s->mode = 'r'; | ||||||
|         if (*p == 'w' || *p == 'a') s->mode = 'w'; |         if (*p == 'w' || *p == 'a') s->mode = 'w'; | ||||||
|         if (*p >= '0' && *p <= '9') { |         if (*p >= '0' && *p <= '9') { | ||||||
| 	    level = *p - '0'; |             level = *p - '0'; | ||||||
| 	} else if (*p == 'f') { |         } else if (*p == 'f') { | ||||||
| 	  strategy = Z_FILTERED; |           strategy = Z_FILTERED; | ||||||
| 	} else if (*p == 'h') { |         } else if (*p == 'h') { | ||||||
| 	  strategy = Z_HUFFMAN_ONLY; |           strategy = Z_HUFFMAN_ONLY; | ||||||
| 	} else { |         } else if (*p == 'R') { | ||||||
| 	    *m++ = *p; /* copy the mode */ |           strategy = Z_RLE; | ||||||
| 	} |         } else { | ||||||
|  |             *m++ = *p; /* copy the mode */ | ||||||
|  |         } | ||||||
|     } while (*p++ && m != fmode + sizeof(fmode)); |     } while (*p++ && m != fmode + sizeof(fmode)); | ||||||
|     if (s->mode == '\0') return destroy(s), (gzFile)Z_NULL; |     if (s->mode == '\0') return destroy(s), (gzFile)Z_NULL; | ||||||
|  |  | ||||||
| @@ -132,8 +147,12 @@ local gzFile gz_open (path, mode, fd) | |||||||
|         s->stream.next_in  = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); |         s->stream.next_in  = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); | ||||||
|  |  | ||||||
|         err = inflateInit2(&(s->stream), -MAX_WBITS); |         err = inflateInit2(&(s->stream), -MAX_WBITS); | ||||||
|         /* windowBits is passed < 0 to tell that there is no zlib header */ |         /* windowBits is passed < 0 to tell that there is no zlib header. | ||||||
|  |          * Note that in this case inflate *requires* an extra "dummy" byte | ||||||
|  |          * after the compressed stream in order to complete decompression and | ||||||
|  |          * return Z_STREAM_END. Here the gzip CRC32 ensures that 4 bytes are | ||||||
|  |          * present after the compressed stream. | ||||||
|  |          */ | ||||||
|         if (err != Z_OK || s->inbuf == Z_NULL) { |         if (err != Z_OK || s->inbuf == Z_NULL) { | ||||||
|             return destroy(s), (gzFile)Z_NULL; |             return destroy(s), (gzFile)Z_NULL; | ||||||
|         } |         } | ||||||
| @@ -151,15 +170,15 @@ local gzFile gz_open (path, mode, fd) | |||||||
|          */ |          */ | ||||||
|         fprintf(s->file, "%c%c%c%c%c%c%c%c%c%c", gz_magic[0], gz_magic[1], |         fprintf(s->file, "%c%c%c%c%c%c%c%c%c%c", gz_magic[0], gz_magic[1], | ||||||
|              Z_DEFLATED, 0 /*flags*/, 0,0,0,0 /*time*/, 0 /*xflags*/, OS_CODE); |              Z_DEFLATED, 0 /*flags*/, 0,0,0,0 /*time*/, 0 /*xflags*/, OS_CODE); | ||||||
| 	s->startpos = 10L; |         s->startpos = 10L; | ||||||
| 	/* We use 10L instead of ftell(s->file) to because ftell causes an |         /* We use 10L instead of ftell(s->file) to because ftell causes an | ||||||
|          * fflush on some systems. This version of the library doesn't use |          * fflush on some systems. This version of the library doesn't use | ||||||
|          * startpos anyway in write mode, so this initialization is not |          * startpos anyway in write mode, so this initialization is not | ||||||
|          * necessary. |          * necessary. | ||||||
|          */ |          */ | ||||||
|     } else { |     } else { | ||||||
| 	check_header(s); /* skip the .gz header */ |         check_header(s); /* skip the .gz header */ | ||||||
| 	s->startpos = (ftell(s->file) - s->stream.avail_in); |         s->startpos = (ftell(s->file) - s->stream.avail_in); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     return (gzFile)s; |     return (gzFile)s; | ||||||
| @@ -206,11 +225,11 @@ int ZEXPORT gzsetparams (file, level, strategy) | |||||||
|     /* Make room to allow flushing */ |     /* Make room to allow flushing */ | ||||||
|     if (s->stream.avail_out == 0) { |     if (s->stream.avail_out == 0) { | ||||||
|  |  | ||||||
| 	s->stream.next_out = s->outbuf; |         s->stream.next_out = s->outbuf; | ||||||
| 	if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) { |         if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) { | ||||||
| 	    s->z_err = Z_ERRNO; |             s->z_err = Z_ERRNO; | ||||||
| 	} |         } | ||||||
| 	s->stream.avail_out = Z_BUFSIZE; |         s->stream.avail_out = Z_BUFSIZE; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     return deflateParams (&(s->stream), level, strategy); |     return deflateParams (&(s->stream), level, strategy); | ||||||
| @@ -226,14 +245,14 @@ local int get_byte(s) | |||||||
| { | { | ||||||
|     if (s->z_eof) return EOF; |     if (s->z_eof) return EOF; | ||||||
|     if (s->stream.avail_in == 0) { |     if (s->stream.avail_in == 0) { | ||||||
| 	errno = 0; |         errno = 0; | ||||||
| 	s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file); |         s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file); | ||||||
| 	if (s->stream.avail_in == 0) { |         if (s->stream.avail_in == 0) { | ||||||
| 	    s->z_eof = 1; |             s->z_eof = 1; | ||||||
| 	    if (ferror(s->file)) s->z_err = Z_ERRNO; |             if (ferror(s->file)) s->z_err = Z_ERRNO; | ||||||
| 	    return EOF; |             return EOF; | ||||||
| 	} |         } | ||||||
| 	s->stream.next_in = s->inbuf; |         s->stream.next_in = s->inbuf; | ||||||
|     } |     } | ||||||
|     s->stream.avail_in--; |     s->stream.avail_in--; | ||||||
|     return *(s->stream.next_in)++; |     return *(s->stream.next_in)++; | ||||||
| @@ -256,43 +275,57 @@ local void check_header(s) | |||||||
|     uInt len; |     uInt len; | ||||||
|     int c; |     int c; | ||||||
|  |  | ||||||
|     /* Check the gzip magic header */ |     /* Assure two bytes in the buffer so we can peek ahead -- handle case | ||||||
|     for (len = 0; len < 2; len++) { |        where first byte of header is at the end of the buffer after the last | ||||||
| 	c = get_byte(s); |        gzip segment */ | ||||||
| 	if (c != gz_magic[len]) { |     len = s->stream.avail_in; | ||||||
| 	    if (len != 0) s->stream.avail_in++, s->stream.next_in--; |     if (len < 2) { | ||||||
| 	    if (c != EOF) { |         if (len) s->inbuf[0] = s->stream.next_in[0]; | ||||||
| 		s->stream.avail_in++, s->stream.next_in--; |         errno = 0; | ||||||
| 		s->transparent = 1; |         len = fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file); | ||||||
| 	    } |         if (len == 0 && ferror(s->file)) s->z_err = Z_ERRNO; | ||||||
| 	    s->z_err = s->stream.avail_in != 0 ? Z_OK : Z_STREAM_END; |         s->stream.avail_in += len; | ||||||
| 	    return; |         s->stream.next_in = s->inbuf; | ||||||
| 	} |         if (s->stream.avail_in < 2) { | ||||||
|  |             s->transparent = s->stream.avail_in; | ||||||
|  |             return; | ||||||
|  |         } | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     /* Peek ahead to check the gzip magic header */ | ||||||
|  |     if (s->stream.next_in[0] != gz_magic[0] || | ||||||
|  |         s->stream.next_in[1] != gz_magic[1]) { | ||||||
|  |         s->transparent = 1; | ||||||
|  |         return; | ||||||
|  |     } | ||||||
|  |     s->stream.avail_in -= 2; | ||||||
|  |     s->stream.next_in += 2; | ||||||
|  |  | ||||||
|  |     /* Check the rest of the gzip header */ | ||||||
|     method = get_byte(s); |     method = get_byte(s); | ||||||
|     flags = get_byte(s); |     flags = get_byte(s); | ||||||
|     if (method != Z_DEFLATED || (flags & RESERVED) != 0) { |     if (method != Z_DEFLATED || (flags & RESERVED) != 0) { | ||||||
| 	s->z_err = Z_DATA_ERROR; |         s->z_err = Z_DATA_ERROR; | ||||||
| 	return; |         return; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /* Discard time, xflags and OS code: */ |     /* Discard time, xflags and OS code: */ | ||||||
|     for (len = 0; len < 6; len++) (void)get_byte(s); |     for (len = 0; len < 6; len++) (void)get_byte(s); | ||||||
|  |  | ||||||
|     if ((flags & EXTRA_FIELD) != 0) { /* skip the extra field */ |     if ((flags & EXTRA_FIELD) != 0) { /* skip the extra field */ | ||||||
| 	len  =  (uInt)get_byte(s); |         len  =  (uInt)get_byte(s); | ||||||
| 	len += ((uInt)get_byte(s))<<8; |         len += ((uInt)get_byte(s))<<8; | ||||||
| 	/* len is garbage if EOF but the loop below will quit anyway */ |         /* len is garbage if EOF but the loop below will quit anyway */ | ||||||
| 	while (len-- != 0 && get_byte(s) != EOF) ; |         while (len-- != 0 && get_byte(s) != EOF) ; | ||||||
|     } |     } | ||||||
|     if ((flags & ORIG_NAME) != 0) { /* skip the original file name */ |     if ((flags & ORIG_NAME) != 0) { /* skip the original file name */ | ||||||
| 	while ((c = get_byte(s)) != 0 && c != EOF) ; |         while ((c = get_byte(s)) != 0 && c != EOF) ; | ||||||
|     } |     } | ||||||
|     if ((flags & COMMENT) != 0) {   /* skip the .gz file comment */ |     if ((flags & COMMENT) != 0) {   /* skip the .gz file comment */ | ||||||
| 	while ((c = get_byte(s)) != 0 && c != EOF) ; |         while ((c = get_byte(s)) != 0 && c != EOF) ; | ||||||
|     } |     } | ||||||
|     if ((flags & HEAD_CRC) != 0) {  /* skip the header crc */ |     if ((flags & HEAD_CRC) != 0) {  /* skip the header crc */ | ||||||
| 	for (len = 0; len < 2; len++) (void)get_byte(s); |         for (len = 0; len < 2; len++) (void)get_byte(s); | ||||||
|     } |     } | ||||||
|     s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK; |     s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK; | ||||||
| } | } | ||||||
| @@ -311,21 +344,21 @@ local int destroy (s) | |||||||
|     TRYFREE(s->msg); |     TRYFREE(s->msg); | ||||||
|  |  | ||||||
|     if (s->stream.state != NULL) { |     if (s->stream.state != NULL) { | ||||||
| 	if (s->mode == 'w') { |         if (s->mode == 'w') { | ||||||
| #ifdef NO_DEFLATE | #ifdef NO_DEFLATE | ||||||
| 	    err = Z_STREAM_ERROR; |             err = Z_STREAM_ERROR; | ||||||
| #else | #else | ||||||
| 	    err = deflateEnd(&(s->stream)); |             err = deflateEnd(&(s->stream)); | ||||||
| #endif | #endif | ||||||
| 	} else if (s->mode == 'r') { |         } else if (s->mode == 'r') { | ||||||
| 	    err = inflateEnd(&(s->stream)); |             err = inflateEnd(&(s->stream)); | ||||||
| 	} |         } | ||||||
|     } |     } | ||||||
|     if (s->file != NULL && fclose(s->file)) { |     if (s->file != NULL && fclose(s->file)) { | ||||||
| #ifdef ESPIPE | #ifdef ESPIPE | ||||||
| 	if (errno != ESPIPE) /* fclose is broken for pipes in HP/UX */ |         if (errno != ESPIPE) /* fclose is broken for pipes in HP/UX */ | ||||||
| #endif | #endif | ||||||
| 	    err = Z_ERRNO; |             err = Z_ERRNO; | ||||||
|     } |     } | ||||||
|     if (s->z_err < 0) err = s->z_err; |     if (s->z_err < 0) err = s->z_err; | ||||||
|  |  | ||||||
| @@ -360,64 +393,69 @@ int ZEXPORT gzread (file, buf, len) | |||||||
|  |  | ||||||
|     while (s->stream.avail_out != 0) { |     while (s->stream.avail_out != 0) { | ||||||
|  |  | ||||||
| 	if (s->transparent) { |         if (s->transparent) { | ||||||
| 	    /* Copy first the lookahead bytes: */ |             /* Copy first the lookahead bytes: */ | ||||||
| 	    uInt n = s->stream.avail_in; |             uInt n = s->stream.avail_in; | ||||||
| 	    if (n > s->stream.avail_out) n = s->stream.avail_out; |             if (n > s->stream.avail_out) n = s->stream.avail_out; | ||||||
| 	    if (n > 0) { |             if (n > 0) { | ||||||
| 		zmemcpy(s->stream.next_out, s->stream.next_in, n); |                 zmemcpy(s->stream.next_out, s->stream.next_in, n); | ||||||
| 		next_out += n; |                 next_out += n; | ||||||
| 		s->stream.next_out = next_out; |                 s->stream.next_out = next_out; | ||||||
| 		s->stream.next_in   += n; |                 s->stream.next_in   += n; | ||||||
| 		s->stream.avail_out -= n; |                 s->stream.avail_out -= n; | ||||||
| 		s->stream.avail_in  -= n; |                 s->stream.avail_in  -= n; | ||||||
| 	    } |             } | ||||||
| 	    if (s->stream.avail_out > 0) { |             if (s->stream.avail_out > 0) { | ||||||
| 		s->stream.avail_out -= fread(next_out, 1, s->stream.avail_out, |                 s->stream.avail_out -= fread(next_out, 1, s->stream.avail_out, | ||||||
| 					     s->file); |                                              s->file); | ||||||
| 	    } |             } | ||||||
| 	    len -= s->stream.avail_out; |             len -= s->stream.avail_out; | ||||||
| 	    s->stream.total_in  += (uLong)len; |             s->stream.total_in  += (uLong)len; | ||||||
| 	    s->stream.total_out += (uLong)len; |             s->stream.total_out += (uLong)len; | ||||||
| 	    return (int)len; |             if (len == 0) s->z_eof = 1; | ||||||
| 	} |             return (int)len; | ||||||
|  |         } | ||||||
|         if (s->stream.avail_in == 0 && !s->z_eof) { |         if (s->stream.avail_in == 0 && !s->z_eof) { | ||||||
|  |  | ||||||
|             errno = 0; |             errno = 0; | ||||||
|             s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file); |             s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file); | ||||||
|             if (s->stream.avail_in == 0) { |             if (s->stream.avail_in == 0) { | ||||||
|                 s->z_eof = 1; |                 s->z_eof = 1; | ||||||
| 		if (ferror(s->file)) { |                 if (ferror(s->file)) { | ||||||
| 		    s->z_err = Z_ERRNO; |                     s->z_err = Z_ERRNO; | ||||||
| 		    break; |                     break; | ||||||
| 		} |                 } | ||||||
|             } |             } | ||||||
|             s->stream.next_in = s->inbuf; |             s->stream.next_in = s->inbuf; | ||||||
|         } |         } | ||||||
|         s->z_err = inflate(&(s->stream), Z_NO_FLUSH); |         s->z_err = inflate(&(s->stream), Z_NO_FLUSH); | ||||||
|  |  | ||||||
| 	if (s->z_err == Z_STREAM_END) { |         if (s->z_err == Z_STREAM_END) { | ||||||
| 	    /* Check CRC and original size */ |             /* Check CRC and original size */ | ||||||
| 	    s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start)); |             s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start)); | ||||||
| 	    start = s->stream.next_out; |             start = s->stream.next_out; | ||||||
|  |  | ||||||
| 	    if (getLong(s) != s->crc || getLong(s) != s->stream.total_out) { |             if (getLong(s) != s->crc) { | ||||||
| 		s->z_err = Z_DATA_ERROR; |                 s->z_err = Z_DATA_ERROR; | ||||||
| 	    } else { |             } else { | ||||||
| 		/* Check for concatenated .gz files: */ |                 (void)getLong(s); | ||||||
| 		check_header(s); |                 /* The uncompressed length returned by above getlong() may | ||||||
| 		if (s->z_err == Z_OK) { |                  * be different from s->stream.total_out) in case of | ||||||
| 		    uLong total_in = s->stream.total_in; |                  * concatenated .gz files. Check for such files: | ||||||
| 		    uLong total_out = s->stream.total_out; |                  */ | ||||||
|  |                 check_header(s); | ||||||
|  |                 if (s->z_err == Z_OK) { | ||||||
|  |                     uLong total_in = s->stream.total_in; | ||||||
|  |                     uLong total_out = s->stream.total_out; | ||||||
|  |  | ||||||
| 		    inflateReset(&(s->stream)); |                     inflateReset(&(s->stream)); | ||||||
| 		    s->stream.total_in = total_in; |                     s->stream.total_in = total_in; | ||||||
| 		    s->stream.total_out = total_out; |                     s->stream.total_out = total_out; | ||||||
| 		    s->crc = crc32(0L, Z_NULL, 0); |                     s->crc = crc32(0L, Z_NULL, 0); | ||||||
| 		} |                 } | ||||||
| 	    } |             } | ||||||
| 	} |         } | ||||||
| 	if (s->z_err != Z_OK || s->z_eof) break; |         if (s->z_err != Z_OK || s->z_eof) break; | ||||||
|     } |     } | ||||||
|     s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start)); |     s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start)); | ||||||
|  |  | ||||||
| @@ -468,7 +506,7 @@ char * ZEXPORT gzgets(file, buf, len) | |||||||
| */ | */ | ||||||
| int ZEXPORT gzwrite (file, buf, len) | int ZEXPORT gzwrite (file, buf, len) | ||||||
|     gzFile file; |     gzFile file; | ||||||
|     const voidp buf; |     voidpc buf; | ||||||
|     unsigned len; |     unsigned len; | ||||||
| { | { | ||||||
|     gz_stream *s = (gz_stream*)file; |     gz_stream *s = (gz_stream*)file; | ||||||
| @@ -512,38 +550,73 @@ int ZEXPORTVA gzprintf (gzFile file, const char *format, /* args */ ...) | |||||||
|     int len; |     int len; | ||||||
|  |  | ||||||
|     va_start(va, format); |     va_start(va, format); | ||||||
| #ifdef HAS_vsnprintf | #ifdef NO_vsnprintf | ||||||
|     (void)vsnprintf(buf, sizeof(buf), format, va); | #  ifdef HAS_vsprintf_void | ||||||
| #else |  | ||||||
|     (void)vsprintf(buf, format, va); |     (void)vsprintf(buf, format, va); | ||||||
| #endif |  | ||||||
|     va_end(va); |     va_end(va); | ||||||
|     len = strlen(buf); /* some *sprintf don't return the nb of bytes written */ |     len = strlen(buf); /* some *sprintf don't return the nb of bytes written */ | ||||||
|     if (len <= 0) return 0; |     if (len <= 0) return 0; | ||||||
|  | #  else | ||||||
|  |     len = vsprintf(buf, format, va); | ||||||
|  |     va_end(va); | ||||||
|  |     if (len <= 0 || len >= sizeof(buf)) | ||||||
|  |         return 0; | ||||||
|  | #  endif | ||||||
|  | #else | ||||||
|  | #  ifdef HAS_vsnprintf_void | ||||||
|  |     (void)vsnprintf(buf, sizeof(buf), format, va); | ||||||
|  |     va_end(va); | ||||||
|  |     len = strlen(buf); | ||||||
|  |     if (len <= 0) | ||||||
|  |         return 0; | ||||||
|  | #  else | ||||||
|  |     len = vsnprintf(buf, sizeof(buf), format, va); | ||||||
|  |     va_end(va); | ||||||
|  |     if (len <= 0 || len >= sizeof(buf)) | ||||||
|  |         return 0; | ||||||
|  | #  endif | ||||||
|  | #endif | ||||||
|  |  | ||||||
|     return gzwrite(file, buf, (unsigned)len); |     return gzwrite(file, buf, (unsigned)len); | ||||||
| } | } | ||||||
| #else /* not ANSI C */ | #else /* not ANSI C */ | ||||||
|  |  | ||||||
| int ZEXPORTVA gzprintf (file, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, | int ZEXPORTVA gzprintf (file, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, | ||||||
| 	               a11, a12, a13, a14, a15, a16, a17, a18, a19, a20) |                        a11, a12, a13, a14, a15, a16, a17, a18, a19, a20) | ||||||
|     gzFile file; |     gzFile file; | ||||||
|     const char *format; |     const char *format; | ||||||
|     int a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, |     int a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, | ||||||
| 	a11, a12, a13, a14, a15, a16, a17, a18, a19, a20; |         a11, a12, a13, a14, a15, a16, a17, a18, a19, a20; | ||||||
| { | { | ||||||
|     char buf[Z_PRINTF_BUFSIZE]; |     char buf[Z_PRINTF_BUFSIZE]; | ||||||
|     int len; |     int len; | ||||||
|  |  | ||||||
| #ifdef HAS_snprintf | #ifdef NO_snprintf | ||||||
|     snprintf(buf, sizeof(buf), format, a1, a2, a3, a4, a5, a6, a7, a8, | #  ifdef HAS_sprintf_void | ||||||
| 	     a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); |  | ||||||
| #else |  | ||||||
|     sprintf(buf, format, a1, a2, a3, a4, a5, a6, a7, a8, |     sprintf(buf, format, a1, a2, a3, a4, a5, a6, a7, a8, | ||||||
| 	    a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); |             a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); | ||||||
| #endif |  | ||||||
|     len = strlen(buf); /* old sprintf doesn't return the nb of bytes written */ |     len = strlen(buf); /* old sprintf doesn't return the nb of bytes written */ | ||||||
|     if (len <= 0) return 0; |     if (len <= 0) return 0; | ||||||
|  | #  else | ||||||
|  |     len = sprintf(buf, format, a1, a2, a3, a4, a5, a6, a7, a8, | ||||||
|  |                 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); | ||||||
|  |     if (len <= 0 || len >= sizeof(buf)) | ||||||
|  |         return 0; | ||||||
|  | #  endif | ||||||
|  | #else | ||||||
|  | #  ifdef HAS_snprintf_void | ||||||
|  |     snprintf(buf, sizeof(buf), format, a1, a2, a3, a4, a5, a6, a7, a8, | ||||||
|  |              a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); | ||||||
|  |     len = strlen(buf); | ||||||
|  |     if (len <= 0) | ||||||
|  |         return 0; | ||||||
|  | #  else | ||||||
|  |     len = snprintf(buf, sizeof(buf), format, a1, a2, a3, a4, a5, a6, a7, a8, | ||||||
|  |                  a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); | ||||||
|  |     if (len <= 0 || len >= sizeof(buf)) | ||||||
|  |         return 0; | ||||||
|  | #  endif | ||||||
|  | #endif | ||||||
|  |  | ||||||
|     return gzwrite(file, buf, len); |     return gzwrite(file, buf, len); | ||||||
| } | } | ||||||
| @@ -572,7 +645,7 @@ int ZEXPORT gzputs(file, s) | |||||||
|     gzFile file; |     gzFile file; | ||||||
|     const char *s; |     const char *s; | ||||||
| { | { | ||||||
|     return gzwrite(file, (const voidp)s, (unsigned)strlen(s)); |     return gzwrite(file, (char*)s, (unsigned)strlen(s)); | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| @@ -606,8 +679,8 @@ local int do_flush (file, flush) | |||||||
|         if (done) break; |         if (done) break; | ||||||
|         s->z_err = deflate(&(s->stream), flush); |         s->z_err = deflate(&(s->stream), flush); | ||||||
|  |  | ||||||
| 	/* Ignore the second of two consecutive flushes: */ |         /* Ignore the second of two consecutive flushes: */ | ||||||
| 	if (len == 0 && s->z_err == Z_BUF_ERROR) s->z_err = Z_OK; |         if (len == 0 && s->z_err == Z_BUF_ERROR) s->z_err = Z_OK; | ||||||
|  |  | ||||||
|         /* deflate has finished flushing only when it hasn't used up |         /* deflate has finished flushing only when it hasn't used up | ||||||
|          * all the available space in the output buffer: |          * all the available space in the output buffer: | ||||||
| @@ -648,72 +721,74 @@ z_off_t ZEXPORT gzseek (file, offset, whence) | |||||||
|     gz_stream *s = (gz_stream*)file; |     gz_stream *s = (gz_stream*)file; | ||||||
|  |  | ||||||
|     if (s == NULL || whence == SEEK_END || |     if (s == NULL || whence == SEEK_END || | ||||||
| 	s->z_err == Z_ERRNO || s->z_err == Z_DATA_ERROR) { |         s->z_err == Z_ERRNO || s->z_err == Z_DATA_ERROR) { | ||||||
| 	return -1L; |         return -1L; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     if (s->mode == 'w') { |     if (s->mode == 'w') { | ||||||
| #ifdef NO_DEFLATE | #ifdef NO_DEFLATE | ||||||
| 	return -1L; |         return -1L; | ||||||
| #else | #else | ||||||
| 	if (whence == SEEK_SET) { |         if (whence == SEEK_SET) { | ||||||
| 	    offset -= s->stream.total_out; |             offset -= s->stream.total_in; | ||||||
| 	} |         } | ||||||
| 	if (offset < 0) return -1L; |         if (offset < 0) return -1L; | ||||||
|  |  | ||||||
| 	/* At this point, offset is the number of zero bytes to write. */ |         /* At this point, offset is the number of zero bytes to write. */ | ||||||
| 	if (s->inbuf == Z_NULL) { |         if (s->inbuf == Z_NULL) { | ||||||
| 	    s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); /* for seeking */ |             s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); /* for seeking */ | ||||||
| 	    zmemzero(s->inbuf, Z_BUFSIZE); |             if (s->inbuf == Z_NULL) return -1L; | ||||||
| 	} |             zmemzero(s->inbuf, Z_BUFSIZE); | ||||||
| 	while (offset > 0)  { |         } | ||||||
| 	    uInt size = Z_BUFSIZE; |         while (offset > 0)  { | ||||||
| 	    if (offset < Z_BUFSIZE) size = (uInt)offset; |             uInt size = Z_BUFSIZE; | ||||||
|  |             if (offset < Z_BUFSIZE) size = (uInt)offset; | ||||||
|  |  | ||||||
| 	    size = gzwrite(file, s->inbuf, size); |             size = gzwrite(file, s->inbuf, size); | ||||||
| 	    if (size == 0) return -1L; |             if (size == 0) return -1L; | ||||||
|  |  | ||||||
| 	    offset -= size; |             offset -= size; | ||||||
| 	} |         } | ||||||
| 	return (z_off_t)s->stream.total_in; |         return (z_off_t)s->stream.total_in; | ||||||
| #endif | #endif | ||||||
|     } |     } | ||||||
|     /* Rest of function is for reading only */ |     /* Rest of function is for reading only */ | ||||||
|  |  | ||||||
|     /* compute absolute position */ |     /* compute absolute position */ | ||||||
|     if (whence == SEEK_CUR) { |     if (whence == SEEK_CUR) { | ||||||
| 	offset += s->stream.total_out; |         offset += s->stream.total_out; | ||||||
|     } |     } | ||||||
|     if (offset < 0) return -1L; |     if (offset < 0) return -1L; | ||||||
|  |  | ||||||
|     if (s->transparent) { |     if (s->transparent) { | ||||||
| 	/* map to fseek */ |         /* map to fseek */ | ||||||
| 	s->stream.avail_in = 0; |         s->stream.avail_in = 0; | ||||||
| 	s->stream.next_in = s->inbuf; |         s->stream.next_in = s->inbuf; | ||||||
|         if (fseek(s->file, offset, SEEK_SET) < 0) return -1L; |         if (fseek(s->file, offset, SEEK_SET) < 0) return -1L; | ||||||
|  |  | ||||||
| 	s->stream.total_in = s->stream.total_out = (uLong)offset; |         s->stream.total_in = s->stream.total_out = (uLong)offset; | ||||||
| 	return offset; |         return offset; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /* For a negative seek, rewind and use positive seek */ |     /* For a negative seek, rewind and use positive seek */ | ||||||
|     if ((uLong)offset >= s->stream.total_out) { |     if ((uLong)offset >= s->stream.total_out) { | ||||||
| 	offset -= s->stream.total_out; |         offset -= s->stream.total_out; | ||||||
|     } else if (gzrewind(file) < 0) { |     } else if (gzrewind(file) < 0) { | ||||||
| 	return -1L; |         return -1L; | ||||||
|     } |     } | ||||||
|     /* offset is now the number of bytes to skip. */ |     /* offset is now the number of bytes to skip. */ | ||||||
|  |  | ||||||
|     if (offset != 0 && s->outbuf == Z_NULL) { |     if (offset != 0 && s->outbuf == Z_NULL) { | ||||||
| 	s->outbuf = (Byte*)ALLOC(Z_BUFSIZE); |         s->outbuf = (Byte*)ALLOC(Z_BUFSIZE); | ||||||
|  |         if (s->outbuf == Z_NULL) return -1L; | ||||||
|     } |     } | ||||||
|     while (offset > 0)  { |     while (offset > 0)  { | ||||||
| 	int size = Z_BUFSIZE; |         int size = Z_BUFSIZE; | ||||||
| 	if (offset < Z_BUFSIZE) size = (int)offset; |         if (offset < Z_BUFSIZE) size = (int)offset; | ||||||
|  |  | ||||||
| 	size = gzread(file, s->outbuf, (uInt)size); |         size = gzread(file, s->outbuf, (uInt)size); | ||||||
| 	if (size <= 0) return -1L; |         if (size <= 0) return -1L; | ||||||
| 	offset -= size; |         offset -= size; | ||||||
|     } |     } | ||||||
|     return (z_off_t)s->stream.total_out; |     return (z_off_t)s->stream.total_out; | ||||||
| } | } | ||||||
| @@ -732,10 +807,11 @@ int ZEXPORT gzrewind (file) | |||||||
|     s->z_eof = 0; |     s->z_eof = 0; | ||||||
|     s->stream.avail_in = 0; |     s->stream.avail_in = 0; | ||||||
|     s->stream.next_in = s->inbuf; |     s->stream.next_in = s->inbuf; | ||||||
|  |     s->crc = crc32(0L, Z_NULL, 0); | ||||||
|  |  | ||||||
|     if (s->startpos == 0) { /* not a compressed file */ |     if (s->startpos == 0) { /* not a compressed file */ | ||||||
| 	rewind(s->file); |         rewind(s->file); | ||||||
| 	return 0; |         return 0; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     (void) inflateReset(&s->stream); |     (void) inflateReset(&s->stream); | ||||||
| @@ -780,7 +856,8 @@ local void putLong (file, x) | |||||||
| } | } | ||||||
|  |  | ||||||
| /* =========================================================================== | /* =========================================================================== | ||||||
|    Reads a long in LSB order from the given gz_stream. Sets  |    Reads a long in LSB order from the given gz_stream. Sets z_err in case | ||||||
|  |    of error. | ||||||
| */ | */ | ||||||
| local uLong getLong (s) | local uLong getLong (s) | ||||||
|     gz_stream *s; |     gz_stream *s; | ||||||
| @@ -810,7 +887,7 @@ int ZEXPORT gzclose (file) | |||||||
|  |  | ||||||
|     if (s->mode == 'w') { |     if (s->mode == 'w') { | ||||||
| #ifdef NO_DEFLATE | #ifdef NO_DEFLATE | ||||||
| 	return Z_STREAM_ERROR; |         return Z_STREAM_ERROR; | ||||||
| #else | #else | ||||||
|         err = do_flush (file, Z_FINISH); |         err = do_flush (file, Z_FINISH); | ||||||
|         if (err != Z_OK) return destroy((gz_stream*)file); |         if (err != Z_OK) return destroy((gz_stream*)file); | ||||||
| @@ -843,12 +920,13 @@ const char*  ZEXPORT gzerror (file, errnum) | |||||||
|     *errnum = s->z_err; |     *errnum = s->z_err; | ||||||
|     if (*errnum == Z_OK) return (const char*)""; |     if (*errnum == Z_OK) return (const char*)""; | ||||||
|  |  | ||||||
|     m =  (char*)(*errnum == Z_ERRNO ? zstrerror(errno) : s->stream.msg); |     m = (char*)(*errnum == Z_ERRNO ? zstrerror(errno) : s->stream.msg); | ||||||
|  |  | ||||||
|     if (m == NULL || *m == '\0') m = (char*)ERR_MSG(s->z_err); |     if (m == NULL || *m == '\0') m = (char*)ERR_MSG(s->z_err); | ||||||
|  |  | ||||||
|     TRYFREE(s->msg); |     TRYFREE(s->msg); | ||||||
|     s->msg = (char*)ALLOC(strlen(s->path) + strlen(m) + 3); |     s->msg = (char*)ALLOC(strlen(s->path) + strlen(m) + 3); | ||||||
|  |     if (s->msg == Z_NULL) return (const char*)ERR_MSG(Z_MEM_ERROR); | ||||||
|     strcpy(s->msg, s->path); |     strcpy(s->msg, s->path); | ||||||
|     strcat(s->msg, ": "); |     strcat(s->msg, ": "); | ||||||
|     strcat(s->msg, m); |     strcat(s->msg, m); | ||||||
|   | |||||||
							
								
								
									
										612
									
								
								infback.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										612
									
								
								infback.c
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,612 @@ | |||||||
|  | /* infback.c -- inflate using a call-back interface | ||||||
|  |  * Copyright (C) 1995-2003 Mark Adler | ||||||
|  |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |    This code is largely copied from inflate.c.  Normally either infback.o or | ||||||
|  |    inflate.o would be linked into an application--not both.  The interface | ||||||
|  |    with inffast.c is retained so that optimized assembler-coded versions of | ||||||
|  |    inflate_fast() can be used with either inflate.c or infback.c. | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | #include "zutil.h" | ||||||
|  | #include "inftrees.h" | ||||||
|  | #include "inflate.h" | ||||||
|  | #include "inffast.h" | ||||||
|  |  | ||||||
|  | /* function prototypes */ | ||||||
|  | local void fixedtables OF((struct inflate_state FAR *state)); | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |    strm provides memory allocation functions in zalloc and zfree, or | ||||||
|  |    Z_NULL to use the library memory allocation functions. | ||||||
|  |  | ||||||
|  |    windowBits is in the range 8..15, and window is a user-supplied | ||||||
|  |    window and output buffer that is 2**windowBits bytes. | ||||||
|  |  */ | ||||||
|  | int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) | ||||||
|  | z_stream FAR *strm; | ||||||
|  | int windowBits; | ||||||
|  | unsigned char FAR *window; | ||||||
|  | const char *version; | ||||||
|  | int stream_size; | ||||||
|  | { | ||||||
|  |     struct inflate_state FAR *state; | ||||||
|  |  | ||||||
|  |     if (version == Z_NULL || version[0] != ZLIB_VERSION[0] || | ||||||
|  |         stream_size != (int)(sizeof(z_stream))) | ||||||
|  |         return Z_VERSION_ERROR; | ||||||
|  |     if (strm == Z_NULL || window == Z_NULL || | ||||||
|  |         windowBits < 8 || windowBits > 15) | ||||||
|  |         return Z_STREAM_ERROR; | ||||||
|  |     strm->msg = Z_NULL;                 /* in case we return an error */ | ||||||
|  |     if (strm->zalloc == Z_NULL) { | ||||||
|  |         strm->zalloc = zcalloc; | ||||||
|  |         strm->opaque = (voidpf)0; | ||||||
|  |     } | ||||||
|  |     if (strm->zfree == Z_NULL) strm->zfree = zcfree; | ||||||
|  |     state = (struct inflate_state FAR *)ZALLOC(strm, 1, | ||||||
|  |                                                sizeof(struct inflate_state)); | ||||||
|  |     if (state == Z_NULL) return Z_MEM_ERROR; | ||||||
|  |     Tracev((stderr, "inflate: allocated\n")); | ||||||
|  |     strm->state = (voidpf)state; | ||||||
|  |     state->wbits = windowBits; | ||||||
|  |     state->wsize = 1U << windowBits; | ||||||
|  |     state->window = window; | ||||||
|  |     state->write = 0; | ||||||
|  |     return Z_OK; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |    Return state with length and distance decoding tables and index sizes set to | ||||||
|  |    fixed code decoding.  Normally this returns fixed tables from inffixed.h. | ||||||
|  |    If BUILDFIXED is defined, then instead this routine builds the tables the | ||||||
|  |    first time it's called, and returns those tables the first time and | ||||||
|  |    thereafter.  This reduces the size of the code by about 2K bytes, in | ||||||
|  |    exchange for a little execution time.  However, BUILDFIXED should not be | ||||||
|  |    used for threaded applications, since the rewriting of the tables and virgin | ||||||
|  |    may not be thread-safe. | ||||||
|  |  */ | ||||||
|  | local void fixedtables(state) | ||||||
|  | struct inflate_state FAR *state; | ||||||
|  | { | ||||||
|  | #ifdef BUILDFIXED | ||||||
|  |     static int virgin = 1; | ||||||
|  |     static code *lenfix, *distfix; | ||||||
|  |     static code fixed[544]; | ||||||
|  |  | ||||||
|  |     /* build fixed huffman tables if first call (may not be thread safe) */ | ||||||
|  |     if (virgin) { | ||||||
|  |         unsigned sym, bits; | ||||||
|  |         static code *next; | ||||||
|  |  | ||||||
|  |         /* literal/length table */ | ||||||
|  |         sym = 0; | ||||||
|  |         while (sym < 144) state->lens[sym++] = 8; | ||||||
|  |         while (sym < 256) state->lens[sym++] = 9; | ||||||
|  |         while (sym < 280) state->lens[sym++] = 7; | ||||||
|  |         while (sym < 288) state->lens[sym++] = 8; | ||||||
|  |         next = fixed; | ||||||
|  |         lenfix = next; | ||||||
|  |         bits = 9; | ||||||
|  |         inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); | ||||||
|  |  | ||||||
|  |         /* distance table */ | ||||||
|  |         sym = 0; | ||||||
|  |         while (sym < 32) state->lens[sym++] = 5; | ||||||
|  |         distfix = next; | ||||||
|  |         bits = 5; | ||||||
|  |         inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); | ||||||
|  |  | ||||||
|  |         /* do this just once */ | ||||||
|  |         virgin = 0; | ||||||
|  |     } | ||||||
|  | #else /* !BUILDFIXED */ | ||||||
|  | #   include "inffixed.h" | ||||||
|  | #endif /* BUILDFIXED */ | ||||||
|  |     state->lencode = lenfix; | ||||||
|  |     state->lenbits = 9; | ||||||
|  |     state->distcode = distfix; | ||||||
|  |     state->distbits = 5; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* Macros for inflateBack(): */ | ||||||
|  |  | ||||||
|  | /* Load returned state from inflate_fast() */ | ||||||
|  | #define LOAD() \ | ||||||
|  |     do { \ | ||||||
|  |         put = strm->next_out; \ | ||||||
|  |         left = strm->avail_out; \ | ||||||
|  |         next = strm->next_in; \ | ||||||
|  |         have = strm->avail_in; \ | ||||||
|  |         hold = state->hold; \ | ||||||
|  |         bits = state->bits; \ | ||||||
|  |     } while (0) | ||||||
|  |  | ||||||
|  | /* Set state from registers for inflate_fast() */ | ||||||
|  | #define RESTORE() \ | ||||||
|  |     do { \ | ||||||
|  |         strm->next_out = put; \ | ||||||
|  |         strm->avail_out = left; \ | ||||||
|  |         strm->next_in = next; \ | ||||||
|  |         strm->avail_in = have; \ | ||||||
|  |         state->hold = hold; \ | ||||||
|  |         state->bits = bits; \ | ||||||
|  |     } while (0) | ||||||
|  |  | ||||||
|  | /* Clear the input bit accumulator */ | ||||||
|  | #define INITBITS() \ | ||||||
|  |     do { \ | ||||||
|  |         hold = 0; \ | ||||||
|  |         bits = 0; \ | ||||||
|  |     } while (0) | ||||||
|  |  | ||||||
|  | /* Assure that some input is available.  If input is requested, but denied, | ||||||
|  |    then return a Z_BUF_ERROR from inflateBack(). */ | ||||||
|  | #define PULL() \ | ||||||
|  |     do { \ | ||||||
|  |         if (have == 0) { \ | ||||||
|  |             have = in(in_desc, &next); \ | ||||||
|  |             if (have == 0) { \ | ||||||
|  |                 next = Z_NULL; \ | ||||||
|  |                 ret = Z_BUF_ERROR; \ | ||||||
|  |                 goto leave; \ | ||||||
|  |             } \ | ||||||
|  |         } \ | ||||||
|  |     } while (0) | ||||||
|  |  | ||||||
|  | /* Get a byte of input into the bit accumulator, or return from inflateBack() | ||||||
|  |    with an error if there is no input available. */ | ||||||
|  | #define PULLBYTE() \ | ||||||
|  |     do { \ | ||||||
|  |         PULL(); \ | ||||||
|  |         have--; \ | ||||||
|  |         hold += (unsigned long)(*next++) << bits; \ | ||||||
|  |         bits += 8; \ | ||||||
|  |     } while (0) | ||||||
|  |  | ||||||
|  | /* Assure that there are at least n bits in the bit accumulator.  If there is | ||||||
|  |    not enough available input to do that, then return from inflateBack() with | ||||||
|  |    an error. */ | ||||||
|  | #define NEEDBITS(n) \ | ||||||
|  |     do { \ | ||||||
|  |         while (bits < (unsigned)(n)) \ | ||||||
|  |             PULLBYTE(); \ | ||||||
|  |     } while (0) | ||||||
|  |  | ||||||
|  | /* Return the low n bits of the bit accumulator (n < 16) */ | ||||||
|  | #define BITS(n) \ | ||||||
|  |     ((unsigned)hold & ((1U << (n)) - 1)) | ||||||
|  |  | ||||||
|  | /* Remove n bits from the bit accumulator */ | ||||||
|  | #define DROPBITS(n) \ | ||||||
|  |     do { \ | ||||||
|  |         hold >>= (n); \ | ||||||
|  |         bits -= (unsigned)(n); \ | ||||||
|  |     } while (0) | ||||||
|  |  | ||||||
|  | /* Remove zero to seven bits as needed to go to a byte boundary */ | ||||||
|  | #define BYTEBITS() \ | ||||||
|  |     do { \ | ||||||
|  |         hold >>= bits & 7; \ | ||||||
|  |         bits -= bits & 7; \ | ||||||
|  |     } while (0) | ||||||
|  |  | ||||||
|  | /* Assure that some output space is available, by writing out the window | ||||||
|  |    if it's full.  If the write fails, return from inflateBack() with a | ||||||
|  |    Z_BUF_ERROR. */ | ||||||
|  | #define ROOM() \ | ||||||
|  |     do { \ | ||||||
|  |         if (left == 0) { \ | ||||||
|  |             put = state->window; \ | ||||||
|  |             left = state->wsize; \ | ||||||
|  |             if (out(out_desc, put, left)) { \ | ||||||
|  |                 ret = Z_BUF_ERROR; \ | ||||||
|  |                 goto leave; \ | ||||||
|  |             } \ | ||||||
|  |         } \ | ||||||
|  |     } while (0) | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |    strm provides the memory allocation functions and window buffer on input, | ||||||
|  |    and provides information on the unused input on return.  For Z_DATA_ERROR | ||||||
|  |    returns, strm will also provide an error message. | ||||||
|  |  | ||||||
|  |    in() and out() are the call-back input and output functions.  When | ||||||
|  |    inflateBack() needs more input, it calls in().  When inflateBack() has | ||||||
|  |    filled the window with output, or when it completes with data in the | ||||||
|  |    window, it called out() to write out the data.  The application must not | ||||||
|  |    change the provided input until in() is called again or inflateBack() | ||||||
|  |    returns.  The application must not change the window/output buffer until | ||||||
|  |    inflateBack() returns. | ||||||
|  |  | ||||||
|  |    in() and out() are called with a descriptor parameter provided in the | ||||||
|  |    inflateBack() call.  This parameter can be a structure that provides the | ||||||
|  |    information required to do the read or write, as well as accumulated | ||||||
|  |    information on the input and output such as totals and check values. | ||||||
|  |  | ||||||
|  |    in() should return zero on failure.  out() should return non-zero on | ||||||
|  |    failure.  If either in() or out() fails, than inflateBack() returns a | ||||||
|  |    Z_BUF_ERROR.  strm->next_in can be checked for Z_NULL to see whether it | ||||||
|  |    was in() or out() that caused in the error.  Otherwise,  inflateBack() | ||||||
|  |    returns Z_STREAM_END on success, Z_DATA_ERROR for an deflate format | ||||||
|  |    error, or Z_MEM_ERROR if it could not allocate memory for the state. | ||||||
|  |    inflateBack() can also return Z_STREAM_ERROR if the input parameters | ||||||
|  |    are not correct, i.e. strm is Z_NULL or the state was not initialized. | ||||||
|  |  */ | ||||||
|  | int ZEXPORT inflateBack(strm, in, in_desc, out, out_desc) | ||||||
|  | z_stream FAR *strm; | ||||||
|  | in_func in; | ||||||
|  | void FAR *in_desc; | ||||||
|  | out_func out; | ||||||
|  | void FAR *out_desc; | ||||||
|  | { | ||||||
|  |     struct inflate_state FAR *state; | ||||||
|  |     unsigned char *next, *put;  /* next input and output */ | ||||||
|  |     unsigned have, left;        /* available input and output */ | ||||||
|  |     unsigned long hold;         /* bit buffer */ | ||||||
|  |     unsigned bits;              /* bits in bit buffer */ | ||||||
|  |     unsigned copy;              /* number of stored or match bytes to copy */ | ||||||
|  |     unsigned char *from;        /* where to copy match bytes from */ | ||||||
|  |     code this;                  /* current decoding table entry */ | ||||||
|  |     code last;                  /* parent table entry */ | ||||||
|  |     unsigned len;               /* length to copy for repeats, bits to drop */ | ||||||
|  |     int ret;                    /* return code */ | ||||||
|  |     static const unsigned short order[19] = /* permutation of code lengths */ | ||||||
|  |         {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; | ||||||
|  |  | ||||||
|  |     /* Check that the strm exists and that the state was initialized */ | ||||||
|  |     if (strm == Z_NULL || strm->state == Z_NULL) | ||||||
|  |         return Z_STREAM_ERROR; | ||||||
|  |     state = (struct inflate_state FAR *)strm->state; | ||||||
|  |  | ||||||
|  |     /* Reset the state */ | ||||||
|  |     strm->msg = Z_NULL; | ||||||
|  |     state->mode = TYPE; | ||||||
|  |     state->last = 0; | ||||||
|  |     next = strm->next_in; | ||||||
|  |     have = next != Z_NULL ? strm->avail_in : 0; | ||||||
|  |     hold = 0; | ||||||
|  |     bits = 0; | ||||||
|  |     put = state->window; | ||||||
|  |     left = state->wsize; | ||||||
|  |  | ||||||
|  |     /* Inflate until end of block marked as last */ | ||||||
|  |     for (;;) | ||||||
|  |         switch (state->mode) { | ||||||
|  |         case TYPE: | ||||||
|  |             /* determine and dispatch block type */ | ||||||
|  |             if (state->last) { | ||||||
|  |                 BYTEBITS(); | ||||||
|  |                 state->mode = DONE; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |             NEEDBITS(3); | ||||||
|  |             state->last = BITS(1); | ||||||
|  |             DROPBITS(1); | ||||||
|  |             switch (BITS(2)) { | ||||||
|  |             case 0:                             /* stored block */ | ||||||
|  |                 Tracev((stderr, "inflate:     stored block%s\n", | ||||||
|  |                         state->last ? " (last)" : "")); | ||||||
|  |                 state->mode = STORED; | ||||||
|  |                 break; | ||||||
|  |             case 1:                             /* fixed block */ | ||||||
|  |                 fixedtables(state); | ||||||
|  |                 Tracev((stderr, "inflate:     fixed codes block%s\n", | ||||||
|  |                         state->last ? " (last)" : "")); | ||||||
|  |                 state->mode = LEN;              /* decode codes */ | ||||||
|  |                 break; | ||||||
|  |             case 2:                             /* dynamic block */ | ||||||
|  |                 Tracev((stderr, "inflate:     dynamic codes block%s\n", | ||||||
|  |                         state->last ? " (last)" : "")); | ||||||
|  |                 state->mode = TABLE; | ||||||
|  |                 break; | ||||||
|  |             case 3: | ||||||
|  |                 strm->msg = (char *)"invalid block type"; | ||||||
|  |                 state->mode = BAD; | ||||||
|  |             } | ||||||
|  |             DROPBITS(2); | ||||||
|  |             break; | ||||||
|  |  | ||||||
|  |         case STORED: | ||||||
|  |             /* get and verify stored block length */ | ||||||
|  |             BYTEBITS();                         /* go to byte boundary */ | ||||||
|  |             NEEDBITS(32); | ||||||
|  |             if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) { | ||||||
|  |                 strm->msg = (char *)"invalid stored block lengths"; | ||||||
|  |                 state->mode = BAD; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |             state->length = (unsigned)hold & 0xffff; | ||||||
|  |             Tracev((stderr, "inflate:       stored length %u\n", | ||||||
|  |                     state->length)); | ||||||
|  |             INITBITS(); | ||||||
|  |  | ||||||
|  |             /* copy stored block from input to output */ | ||||||
|  |             while (state->length != 0) { | ||||||
|  |                 copy = state->length; | ||||||
|  |                 PULL(); | ||||||
|  |                 ROOM(); | ||||||
|  |                 if (copy > have) copy = have; | ||||||
|  |                 if (copy > left) copy = left; | ||||||
|  |                 zmemcpy(put, next, copy); | ||||||
|  |                 have -= copy; | ||||||
|  |                 next += copy; | ||||||
|  |                 left -= copy; | ||||||
|  |                 put += copy; | ||||||
|  |                 state->length -= copy; | ||||||
|  |             } | ||||||
|  |             Tracev((stderr, "inflate:       stored end\n")); | ||||||
|  |             state->mode = TYPE; | ||||||
|  |             break; | ||||||
|  |  | ||||||
|  |         case TABLE: | ||||||
|  |             /* get dynamic table entries descriptor */ | ||||||
|  |             NEEDBITS(14); | ||||||
|  |             state->nlen = BITS(5) + 257; | ||||||
|  |             DROPBITS(5); | ||||||
|  |             state->ndist = BITS(5) + 1; | ||||||
|  |             DROPBITS(5); | ||||||
|  |             state->ncode = BITS(4) + 4; | ||||||
|  |             DROPBITS(4); | ||||||
|  | #ifndef PKZIP_BUG_WORKAROUND | ||||||
|  |             if (state->nlen > 286 || state->ndist > 30) { | ||||||
|  |                 strm->msg = (char *)"too many length or distance symbols"; | ||||||
|  |                 state->mode = BAD; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  | #endif | ||||||
|  |             Tracev((stderr, "inflate:       table sizes ok\n")); | ||||||
|  |  | ||||||
|  |             /* get code length code lengths (not a typo) */ | ||||||
|  |             state->have = 0; | ||||||
|  |             while (state->have < state->ncode) { | ||||||
|  |                 NEEDBITS(3); | ||||||
|  |                 state->lens[order[state->have++]] = (unsigned short)BITS(3); | ||||||
|  |                 DROPBITS(3); | ||||||
|  |             } | ||||||
|  |             while (state->have < 19) | ||||||
|  |                 state->lens[order[state->have++]] = 0; | ||||||
|  |             state->next = state->codes; | ||||||
|  |             state->lencode = (code const FAR *)(state->next); | ||||||
|  |             state->lenbits = 7; | ||||||
|  |             ret = inflate_table(CODES, state->lens, 19, &(state->next), | ||||||
|  |                                 &(state->lenbits), state->work); | ||||||
|  |             if (ret) { | ||||||
|  |                 strm->msg = (char *)"invalid code lengths set"; | ||||||
|  |                 state->mode = BAD; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |             Tracev((stderr, "inflate:       code lengths ok\n")); | ||||||
|  |  | ||||||
|  |             /* get length and distance code code lengths */ | ||||||
|  |             state->have = 0; | ||||||
|  |             while (state->have < state->nlen + state->ndist) { | ||||||
|  |                 for (;;) { | ||||||
|  |                     this = state->lencode[BITS(state->lenbits)]; | ||||||
|  |                     if ((unsigned)(this.bits) <= bits) break; | ||||||
|  |                     PULLBYTE(); | ||||||
|  |                 } | ||||||
|  |                 if (this.val < 16) { | ||||||
|  |                     NEEDBITS(this.bits); | ||||||
|  |                     DROPBITS(this.bits); | ||||||
|  |                     state->lens[state->have++] = this.val; | ||||||
|  |                 } | ||||||
|  |                 else { | ||||||
|  |                     if (this.val == 16) { | ||||||
|  |                         NEEDBITS(this.bits + 2); | ||||||
|  |                         DROPBITS(this.bits); | ||||||
|  |                         if (state->have == 0) { | ||||||
|  |                             strm->msg = (char *)"invalid bit length repeat"; | ||||||
|  |                             state->mode = BAD; | ||||||
|  |                             break; | ||||||
|  |                         } | ||||||
|  |                         len = (unsigned)(state->lens[state->have - 1]); | ||||||
|  |                         copy = 3 + BITS(2); | ||||||
|  |                         DROPBITS(2); | ||||||
|  |                     } | ||||||
|  |                     else if (this.val == 17) { | ||||||
|  |                         NEEDBITS(this.bits + 3); | ||||||
|  |                         DROPBITS(this.bits); | ||||||
|  |                         len = 0; | ||||||
|  |                         copy = 3 + BITS(3); | ||||||
|  |                         DROPBITS(3); | ||||||
|  |                     } | ||||||
|  |                     else { | ||||||
|  |                         NEEDBITS(this.bits + 7); | ||||||
|  |                         DROPBITS(this.bits); | ||||||
|  |                         len = 0; | ||||||
|  |                         copy = 11 + BITS(7); | ||||||
|  |                         DROPBITS(7); | ||||||
|  |                     } | ||||||
|  |                     if (state->have + copy > state->nlen + state->ndist) { | ||||||
|  |                         strm->msg = (char *)"invalid bit length repeat"; | ||||||
|  |                         state->mode = BAD; | ||||||
|  |                         break; | ||||||
|  |                     } | ||||||
|  |                     while (copy--) | ||||||
|  |                         state->lens[state->have++] = (unsigned short)len; | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             /* build code tables */ | ||||||
|  |             state->next = state->codes; | ||||||
|  |             state->lencode = (code const FAR *)(state->next); | ||||||
|  |             state->lenbits = 9; | ||||||
|  |             ret = inflate_table(LENS, state->lens, state->nlen, &(state->next), | ||||||
|  |                                 &(state->lenbits), state->work); | ||||||
|  |             if (ret) { | ||||||
|  |                 strm->msg = (char *)"invalid literal/lengths set"; | ||||||
|  |                 state->mode = BAD; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |             state->distcode = (code const FAR *)(state->next); | ||||||
|  |             state->distbits = 6; | ||||||
|  |             ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist, | ||||||
|  |                             &(state->next), &(state->distbits), state->work); | ||||||
|  |             if (ret) { | ||||||
|  |                 strm->msg = (char *)"invalid distances set"; | ||||||
|  |                 state->mode = BAD; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |             Tracev((stderr, "inflate:       codes ok\n")); | ||||||
|  |             state->mode = LEN; | ||||||
|  |  | ||||||
|  |         case LEN: | ||||||
|  |             /* use inflate_fast() if we have enough input and output */ | ||||||
|  |             if (have >= 6 && left >= 258) { | ||||||
|  |                 RESTORE(); | ||||||
|  |                 inflate_fast(strm, state->wsize); | ||||||
|  |                 LOAD(); | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             /* get a literal, length, or end-of-block code */ | ||||||
|  |             for (;;) { | ||||||
|  |                 this = state->lencode[BITS(state->lenbits)]; | ||||||
|  |                 if ((unsigned)(this.bits) <= bits) break; | ||||||
|  |                 PULLBYTE(); | ||||||
|  |             } | ||||||
|  |             if (this.op && (this.op & 0xf0) == 0) { | ||||||
|  |                 last = this; | ||||||
|  |                 for (;;) { | ||||||
|  |                     this = state->lencode[last.val + | ||||||
|  |                             (BITS(last.bits + last.op) >> last.bits)]; | ||||||
|  |                     if ((unsigned)(last.bits + this.bits) <= bits) break; | ||||||
|  |                     PULLBYTE(); | ||||||
|  |                 } | ||||||
|  |                 DROPBITS(last.bits); | ||||||
|  |             } | ||||||
|  |             DROPBITS(this.bits); | ||||||
|  |             state->length = (unsigned)this.val; | ||||||
|  |  | ||||||
|  |             /* process literal */ | ||||||
|  |             if (this.op == 0) { | ||||||
|  |                 Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ? | ||||||
|  |                         "inflate:         literal '%c'\n" : | ||||||
|  |                         "inflate:         literal 0x%02x\n", this.val)); | ||||||
|  |                 ROOM(); | ||||||
|  |                 *put++ = (unsigned char)(state->length); | ||||||
|  |                 left--; | ||||||
|  |                 state->mode = LEN; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             /* process end of block */ | ||||||
|  |             if (this.op & 32) { | ||||||
|  |                 Tracevv((stderr, "inflate:         end of block\n")); | ||||||
|  |                 state->mode = TYPE; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             /* invalid code */ | ||||||
|  |             if (this.op & 64) { | ||||||
|  |                 strm->msg = (char *)"invalid literal/length code"; | ||||||
|  |                 state->mode = BAD; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |  | ||||||
|  |             /* length code -- get extra bits, if any */ | ||||||
|  |             state->extra = (unsigned)(this.op) & 15; | ||||||
|  |             if (state->extra != 0) { | ||||||
|  |                 NEEDBITS(state->extra); | ||||||
|  |                 state->length += BITS(state->extra); | ||||||
|  |                 DROPBITS(state->extra); | ||||||
|  |             } | ||||||
|  |             Tracevv((stderr, "inflate:         length %u\n", state->length)); | ||||||
|  |  | ||||||
|  |             /* get distance code */ | ||||||
|  |             for (;;) { | ||||||
|  |                 this = state->distcode[BITS(state->distbits)]; | ||||||
|  |                 if ((unsigned)(this.bits) <= bits) break; | ||||||
|  |                 PULLBYTE(); | ||||||
|  |             } | ||||||
|  |             if ((this.op & 0xf0) == 0) { | ||||||
|  |                 last = this; | ||||||
|  |                 for (;;) { | ||||||
|  |                     this = state->distcode[last.val + | ||||||
|  |                             (BITS(last.bits + last.op) >> last.bits)]; | ||||||
|  |                     if ((unsigned)(last.bits + this.bits) <= bits) break; | ||||||
|  |                     PULLBYTE(); | ||||||
|  |                 } | ||||||
|  |                 DROPBITS(last.bits); | ||||||
|  |             } | ||||||
|  |             DROPBITS(this.bits); | ||||||
|  |             if (this.op & 64) { | ||||||
|  |                 strm->msg = (char *)"invalid distance code"; | ||||||
|  |                 state->mode = BAD; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |             state->offset = (unsigned)this.val; | ||||||
|  |  | ||||||
|  |             /* get distance extra bits, if any */ | ||||||
|  |             state->extra = (unsigned)(this.op) & 15; | ||||||
|  |             if (state->extra != 0) { | ||||||
|  |                 NEEDBITS(state->extra); | ||||||
|  |                 state->offset += BITS(state->extra); | ||||||
|  |                 DROPBITS(state->extra); | ||||||
|  |             } | ||||||
|  |             if (state->offset > state->wsize) { | ||||||
|  |                 strm->msg = (char *)"invalid distance too far back"; | ||||||
|  |                 state->mode = BAD; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |             Tracevv((stderr, "inflate:         distance %u\n", state->offset)); | ||||||
|  |  | ||||||
|  |             /* copy match from window to output */ | ||||||
|  |             do { | ||||||
|  |                 ROOM(); | ||||||
|  |                 copy = state->wsize - state->offset; | ||||||
|  |                 if (copy < left) { | ||||||
|  |                     from = put + copy; | ||||||
|  |                     copy = left - copy; | ||||||
|  |                 } | ||||||
|  |                 else { | ||||||
|  |                     from = put - state->offset; | ||||||
|  |                     copy = left; | ||||||
|  |                 } | ||||||
|  |                 if (copy > state->length) copy = state->length; | ||||||
|  |                 state->length -= copy; | ||||||
|  |                 left -= copy; | ||||||
|  |                 do { | ||||||
|  |                     *put++ = *from++; | ||||||
|  |                 } while (--copy); | ||||||
|  |             } while (state->length != 0); | ||||||
|  |             break; | ||||||
|  |  | ||||||
|  |         case DONE: | ||||||
|  |             /* inflate stream terminated properly -- write leftover output */ | ||||||
|  |             ret = Z_STREAM_END; | ||||||
|  |             if (left < state->wsize) { | ||||||
|  |                 if (out(out_desc, state->window, state->wsize - left)) | ||||||
|  |                     ret = Z_BUF_ERROR; | ||||||
|  |             } | ||||||
|  |             goto leave; | ||||||
|  |  | ||||||
|  |         case BAD: | ||||||
|  |             ret = Z_DATA_ERROR; | ||||||
|  |             goto leave; | ||||||
|  |  | ||||||
|  |         default:                /* can't happen, but makes compilers happy */ | ||||||
|  |             ret = Z_STREAM_ERROR; | ||||||
|  |             goto leave; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |     /* Return unused input */ | ||||||
|  |   leave: | ||||||
|  |     strm->next_in = next; | ||||||
|  |     strm->avail_in = have; | ||||||
|  |     return ret; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | int ZEXPORT inflateBackEnd(strm) | ||||||
|  | z_stream FAR *strm; | ||||||
|  | { | ||||||
|  |     if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == Z_NULL) | ||||||
|  |         return Z_STREAM_ERROR; | ||||||
|  |     ZFREE(strm, strm->state); | ||||||
|  |     strm->state = Z_NULL; | ||||||
|  |     Tracev((stderr, "inflate: end\n")); | ||||||
|  |     return Z_OK; | ||||||
|  | } | ||||||
							
								
								
									
										401
									
								
								infblock.c
									
									
									
									
									
								
							
							
						
						
									
										401
									
								
								infblock.c
									
									
									
									
									
								
							| @@ -1,401 +0,0 @@ | |||||||
| /* infblock.c -- interpret and process block types to last block |  | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h  |  | ||||||
|  */ |  | ||||||
|  |  | ||||||
| #include "zutil.h" |  | ||||||
| #include "infblock.h" |  | ||||||
| #include "inftrees.h" |  | ||||||
| #include "infcodes.h" |  | ||||||
| #include "infutil.h" |  | ||||||
|  |  | ||||||
| struct inflate_codes_state {int dummy;}; /* for buggy compilers */ |  | ||||||
|  |  | ||||||
| /* Table for deflate from PKZIP's appnote.txt. */ |  | ||||||
| local const uInt border[] = { /* Order of the bit length code lengths */ |  | ||||||
|         16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; |  | ||||||
|  |  | ||||||
| /* |  | ||||||
|    Notes beyond the 1.93a appnote.txt: |  | ||||||
|  |  | ||||||
|    1. Distance pointers never point before the beginning of the output |  | ||||||
|       stream. |  | ||||||
|    2. Distance pointers can point back across blocks, up to 32k away. |  | ||||||
|    3. There is an implied maximum of 7 bits for the bit length table and |  | ||||||
|       15 bits for the actual data. |  | ||||||
|    4. If only one code exists, then it is encoded using one bit.  (Zero |  | ||||||
|       would be more efficient, but perhaps a little confusing.)  If two |  | ||||||
|       codes exist, they are coded using one bit each (0 and 1). |  | ||||||
|    5. There is no way of sending zero distance codes--a dummy must be |  | ||||||
|       sent if there are none.  (History: a pre 2.0 version of PKZIP would |  | ||||||
|       store blocks with no distance codes, but this was discovered to be |  | ||||||
|       too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow |  | ||||||
|       zero distance codes, which is sent as one code of zero bits in |  | ||||||
|       length. |  | ||||||
|    6. There are up to 286 literal/length codes.  Code 256 represents the |  | ||||||
|       end-of-block.  Note however that the static length tree defines |  | ||||||
|       288 codes just to fill out the Huffman codes.  Codes 286 and 287 |  | ||||||
|       cannot be used though, since there is no length base or extra bits |  | ||||||
|       defined for them.  Similarily, there are up to 30 distance codes. |  | ||||||
|       However, static trees define 32 codes (all 5 bits) to fill out the |  | ||||||
|       Huffman codes, but the last two had better not show up in the data. |  | ||||||
|    7. Unzip can check dynamic Huffman blocks for complete code sets. |  | ||||||
|       The exception is that a single code would not be complete (see #4). |  | ||||||
|    8. The five bits following the block type is really the number of |  | ||||||
|       literal codes sent minus 257. |  | ||||||
|    9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits |  | ||||||
|       (1+6+6).  Therefore, to output three times the length, you output |  | ||||||
|       three codes (1+1+1), whereas to output four times the same length, |  | ||||||
|       you only need two codes (1+3).  Hmm. |  | ||||||
|   10. In the tree reconstruction algorithm, Code = Code + Increment |  | ||||||
|       only if BitLength(i) is not zero.  (Pretty obvious.) |  | ||||||
|   11. Correction: 4 Bits: # of Bit Length codes - 4     (4 - 19) |  | ||||||
|   12. Note: length code 284 can represent 227-258, but length code 285 |  | ||||||
|       really is 258.  The last length deserves its own, short code |  | ||||||
|       since it gets used a lot in very redundant files.  The length |  | ||||||
|       258 is special since 258 - 3 (the min match length) is 255. |  | ||||||
|   13. The literal/length and distance code bit lengths are read as a |  | ||||||
|       single stream of lengths.  It is possible (and advantageous) for |  | ||||||
|       a repeat code (16, 17, or 18) to go across the boundary between |  | ||||||
|       the two sets of lengths. |  | ||||||
|  */ |  | ||||||
|  |  | ||||||
|  |  | ||||||
| void inflate_blocks_reset(s, z, c) |  | ||||||
| inflate_blocks_statef *s; |  | ||||||
| z_streamp z; |  | ||||||
| uLongf *c; |  | ||||||
| { |  | ||||||
|   if (c != Z_NULL) |  | ||||||
|     *c = s->check; |  | ||||||
|   if (s->mode == BTREE || s->mode == DTREE) |  | ||||||
|     ZFREE(z, s->sub.trees.blens); |  | ||||||
|   if (s->mode == CODES) |  | ||||||
|     inflate_codes_free(s->sub.decode.codes, z); |  | ||||||
|   s->mode = TYPE; |  | ||||||
|   s->bitk = 0; |  | ||||||
|   s->bitb = 0; |  | ||||||
|   s->read = s->write = s->window; |  | ||||||
|   if (s->checkfn != Z_NULL) |  | ||||||
|     z->adler = s->check = (*s->checkfn)(0L, (const Bytef *)Z_NULL, 0); |  | ||||||
|   Tracev((stderr, "inflate:   blocks reset\n")); |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| inflate_blocks_statef *inflate_blocks_new(z, c, w) |  | ||||||
| z_streamp z; |  | ||||||
| check_func c; |  | ||||||
| uInt w; |  | ||||||
| { |  | ||||||
|   inflate_blocks_statef *s; |  | ||||||
|  |  | ||||||
|   if ((s = (inflate_blocks_statef *)ZALLOC |  | ||||||
|        (z,1,sizeof(struct inflate_blocks_state))) == Z_NULL) |  | ||||||
|     return s; |  | ||||||
|   if ((s->hufts = |  | ||||||
|        (inflate_huft *)ZALLOC(z, sizeof(inflate_huft), MANY)) == Z_NULL) |  | ||||||
|   { |  | ||||||
|     ZFREE(z, s); |  | ||||||
|     return Z_NULL; |  | ||||||
|   } |  | ||||||
|   if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL) |  | ||||||
|   { |  | ||||||
|     ZFREE(z, s->hufts); |  | ||||||
|     ZFREE(z, s); |  | ||||||
|     return Z_NULL; |  | ||||||
|   } |  | ||||||
|   s->end = s->window + w; |  | ||||||
|   s->checkfn = c; |  | ||||||
|   s->mode = TYPE; |  | ||||||
|   Tracev((stderr, "inflate:   blocks allocated\n")); |  | ||||||
|   inflate_blocks_reset(s, z, Z_NULL); |  | ||||||
|   return s; |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| int inflate_blocks(s, z, r) |  | ||||||
| inflate_blocks_statef *s; |  | ||||||
| z_streamp z; |  | ||||||
| int r; |  | ||||||
| { |  | ||||||
|   uInt t;               /* temporary storage */ |  | ||||||
|   uLong b;              /* bit buffer */ |  | ||||||
|   uInt k;               /* bits in bit buffer */ |  | ||||||
|   Bytef *p;             /* input data pointer */ |  | ||||||
|   uInt n;               /* bytes available there */ |  | ||||||
|   Bytef *q;             /* output window write pointer */ |  | ||||||
|   uInt m;               /* bytes to end of window or read pointer */ |  | ||||||
|  |  | ||||||
|   /* copy input/output information to locals (UPDATE macro restores) */ |  | ||||||
|   LOAD |  | ||||||
|  |  | ||||||
|   /* process input based on current state */ |  | ||||||
|   while (1) switch (s->mode) |  | ||||||
|   { |  | ||||||
|     case TYPE: |  | ||||||
|       NEEDBITS(3) |  | ||||||
|       t = (uInt)b & 7; |  | ||||||
|       s->last = t & 1; |  | ||||||
|       switch (t >> 1) |  | ||||||
|       { |  | ||||||
|         case 0:                         /* stored */ |  | ||||||
|           Tracev((stderr, "inflate:     stored block%s\n", |  | ||||||
|                  s->last ? " (last)" : "")); |  | ||||||
|           DUMPBITS(3) |  | ||||||
|           t = k & 7;                    /* go to byte boundary */ |  | ||||||
|           DUMPBITS(t) |  | ||||||
|           s->mode = LENS;               /* get length of stored block */ |  | ||||||
|           break; |  | ||||||
|         case 1:                         /* fixed */ |  | ||||||
|           Tracev((stderr, "inflate:     fixed codes block%s\n", |  | ||||||
|                  s->last ? " (last)" : "")); |  | ||||||
|           { |  | ||||||
|             uInt bl, bd; |  | ||||||
|             inflate_huft *tl, *td; |  | ||||||
|  |  | ||||||
|             inflate_trees_fixed(&bl, &bd, &tl, &td, z); |  | ||||||
|             s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z); |  | ||||||
|             if (s->sub.decode.codes == Z_NULL) |  | ||||||
|             { |  | ||||||
|               r = Z_MEM_ERROR; |  | ||||||
|               LEAVE |  | ||||||
|             } |  | ||||||
|           } |  | ||||||
|           DUMPBITS(3) |  | ||||||
|           s->mode = CODES; |  | ||||||
|           break; |  | ||||||
|         case 2:                         /* dynamic */ |  | ||||||
|           Tracev((stderr, "inflate:     dynamic codes block%s\n", |  | ||||||
|                  s->last ? " (last)" : "")); |  | ||||||
|           DUMPBITS(3) |  | ||||||
|           s->mode = TABLE; |  | ||||||
|           break; |  | ||||||
|         case 3:                         /* illegal */ |  | ||||||
|           DUMPBITS(3) |  | ||||||
|           s->mode = BAD; |  | ||||||
|           z->msg = (char*)"invalid block type"; |  | ||||||
|           r = Z_DATA_ERROR; |  | ||||||
|           LEAVE |  | ||||||
|       } |  | ||||||
|       break; |  | ||||||
|     case LENS: |  | ||||||
|       NEEDBITS(32) |  | ||||||
|       if ((((~b) >> 16) & 0xffff) != (b & 0xffff)) |  | ||||||
|       { |  | ||||||
|         s->mode = BAD; |  | ||||||
|         z->msg = (char*)"invalid stored block lengths"; |  | ||||||
|         r = Z_DATA_ERROR; |  | ||||||
|         LEAVE |  | ||||||
|       } |  | ||||||
|       s->sub.left = (uInt)b & 0xffff; |  | ||||||
|       b = k = 0;                      /* dump bits */ |  | ||||||
|       Tracev((stderr, "inflate:       stored length %u\n", s->sub.left)); |  | ||||||
|       s->mode = s->sub.left ? STORED : (s->last ? DRY : TYPE); |  | ||||||
|       break; |  | ||||||
|     case STORED: |  | ||||||
|       if (n == 0) |  | ||||||
|         LEAVE |  | ||||||
|       NEEDOUT |  | ||||||
|       t = s->sub.left; |  | ||||||
|       if (t > n) t = n; |  | ||||||
|       if (t > m) t = m; |  | ||||||
|       zmemcpy(q, p, t); |  | ||||||
|       p += t;  n -= t; |  | ||||||
|       q += t;  m -= t; |  | ||||||
|       if ((s->sub.left -= t) != 0) |  | ||||||
|         break; |  | ||||||
|       Tracev((stderr, "inflate:       stored end, %lu total out\n", |  | ||||||
|               z->total_out + (q >= s->read ? q - s->read : |  | ||||||
|               (s->end - s->read) + (q - s->window)))); |  | ||||||
|       s->mode = s->last ? DRY : TYPE; |  | ||||||
|       break; |  | ||||||
|     case TABLE: |  | ||||||
|       NEEDBITS(14) |  | ||||||
|       s->sub.trees.table = t = (uInt)b & 0x3fff; |  | ||||||
| #ifndef PKZIP_BUG_WORKAROUND |  | ||||||
|       if ((t & 0x1f) > 29 || ((t >> 5) & 0x1f) > 29) |  | ||||||
|       { |  | ||||||
|         s->mode = BAD; |  | ||||||
|         z->msg = (char*)"too many length or distance symbols"; |  | ||||||
|         r = Z_DATA_ERROR; |  | ||||||
|         LEAVE |  | ||||||
|       } |  | ||||||
| #endif |  | ||||||
|       t = 258 + (t & 0x1f) + ((t >> 5) & 0x1f); |  | ||||||
|       if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL) |  | ||||||
|       { |  | ||||||
|         r = Z_MEM_ERROR; |  | ||||||
|         LEAVE |  | ||||||
|       } |  | ||||||
|       DUMPBITS(14) |  | ||||||
|       s->sub.trees.index = 0; |  | ||||||
|       Tracev((stderr, "inflate:       table sizes ok\n")); |  | ||||||
|       s->mode = BTREE; |  | ||||||
|     case BTREE: |  | ||||||
|       while (s->sub.trees.index < 4 + (s->sub.trees.table >> 10)) |  | ||||||
|       { |  | ||||||
|         NEEDBITS(3) |  | ||||||
|         s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7; |  | ||||||
|         DUMPBITS(3) |  | ||||||
|       } |  | ||||||
|       while (s->sub.trees.index < 19) |  | ||||||
|         s->sub.trees.blens[border[s->sub.trees.index++]] = 0; |  | ||||||
|       s->sub.trees.bb = 7; |  | ||||||
|       t = inflate_trees_bits(s->sub.trees.blens, &s->sub.trees.bb, |  | ||||||
|                              &s->sub.trees.tb, s->hufts, z); |  | ||||||
|       if (t != Z_OK) |  | ||||||
|       { |  | ||||||
|         ZFREE(z, s->sub.trees.blens); |  | ||||||
|         r = t; |  | ||||||
|         if (r == Z_DATA_ERROR) |  | ||||||
|           s->mode = BAD; |  | ||||||
|         LEAVE |  | ||||||
|       } |  | ||||||
|       s->sub.trees.index = 0; |  | ||||||
|       Tracev((stderr, "inflate:       bits tree ok\n")); |  | ||||||
|       s->mode = DTREE; |  | ||||||
|     case DTREE: |  | ||||||
|       while (t = s->sub.trees.table, |  | ||||||
|              s->sub.trees.index < 258 + (t & 0x1f) + ((t >> 5) & 0x1f)) |  | ||||||
|       { |  | ||||||
|         inflate_huft *h; |  | ||||||
|         uInt i, j, c; |  | ||||||
|  |  | ||||||
|         t = s->sub.trees.bb; |  | ||||||
|         NEEDBITS(t) |  | ||||||
|         h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]); |  | ||||||
|         t = h->word.what.Bits; |  | ||||||
|         c = h->more.Base; |  | ||||||
|         if (c < 16) |  | ||||||
|         { |  | ||||||
|           DUMPBITS(t) |  | ||||||
|           s->sub.trees.blens[s->sub.trees.index++] = c; |  | ||||||
|         } |  | ||||||
|         else /* c == 16..18 */ |  | ||||||
|         { |  | ||||||
|           i = c == 18 ? 7 : c - 14; |  | ||||||
|           j = c == 18 ? 11 : 3; |  | ||||||
|           NEEDBITS(t + i) |  | ||||||
|           DUMPBITS(t) |  | ||||||
|           j += (uInt)b & inflate_mask[i]; |  | ||||||
|           DUMPBITS(i) |  | ||||||
|           i = s->sub.trees.index; |  | ||||||
|           t = s->sub.trees.table; |  | ||||||
|           if (i + j > 258 + (t & 0x1f) + ((t >> 5) & 0x1f) || |  | ||||||
|               (c == 16 && i < 1)) |  | ||||||
|           { |  | ||||||
|             ZFREE(z, s->sub.trees.blens); |  | ||||||
|             s->mode = BAD; |  | ||||||
|             z->msg = (char*)"invalid bit length repeat"; |  | ||||||
|             r = Z_DATA_ERROR; |  | ||||||
|             LEAVE |  | ||||||
|           } |  | ||||||
|           c = c == 16 ? s->sub.trees.blens[i - 1] : 0; |  | ||||||
|           do { |  | ||||||
|             s->sub.trees.blens[i++] = c; |  | ||||||
|           } while (--j); |  | ||||||
|           s->sub.trees.index = i; |  | ||||||
|         } |  | ||||||
|       } |  | ||||||
|       s->sub.trees.tb = Z_NULL; |  | ||||||
|       { |  | ||||||
|         uInt bl, bd; |  | ||||||
|         inflate_huft *tl, *td; |  | ||||||
|         inflate_codes_statef *c; |  | ||||||
|  |  | ||||||
|         bl = 9;         /* must be <= 9 for lookahead assumptions */ |  | ||||||
|         bd = 6;         /* must be <= 9 for lookahead assumptions */ |  | ||||||
|         t = s->sub.trees.table; |  | ||||||
|         t = inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f), |  | ||||||
|                                   s->sub.trees.blens, &bl, &bd, &tl, &td, |  | ||||||
|                                   s->hufts, z); |  | ||||||
|         ZFREE(z, s->sub.trees.blens); |  | ||||||
|         if (t != Z_OK) |  | ||||||
|         { |  | ||||||
|           if (t == (uInt)Z_DATA_ERROR) |  | ||||||
|             s->mode = BAD; |  | ||||||
|           r = t; |  | ||||||
|           LEAVE |  | ||||||
|         } |  | ||||||
|         Tracev((stderr, "inflate:       trees ok\n")); |  | ||||||
|         if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL) |  | ||||||
|         { |  | ||||||
|           r = Z_MEM_ERROR; |  | ||||||
|           LEAVE |  | ||||||
|         } |  | ||||||
|         s->sub.decode.codes = c; |  | ||||||
|       } |  | ||||||
|       s->mode = CODES; |  | ||||||
|     case CODES: |  | ||||||
|       UPDATE |  | ||||||
|       if ((r = inflate_codes(s, z, r)) != Z_STREAM_END) |  | ||||||
|         return inflate_flush(s, z, r); |  | ||||||
|       r = Z_OK; |  | ||||||
|       inflate_codes_free(s->sub.decode.codes, z); |  | ||||||
|       LOAD |  | ||||||
|       Tracev((stderr, "inflate:       codes end, %lu total out\n", |  | ||||||
|               z->total_out + (q >= s->read ? q - s->read : |  | ||||||
|               (s->end - s->read) + (q - s->window)))); |  | ||||||
|       if (!s->last) |  | ||||||
|       { |  | ||||||
|         s->mode = TYPE; |  | ||||||
|         break; |  | ||||||
|       } |  | ||||||
|       if (k > 7)              /* return unused byte, if any */ |  | ||||||
|       { |  | ||||||
|         Assert(k < 16, "inflate_codes grabbed too many bytes") |  | ||||||
|         k -= 8; |  | ||||||
|         n++; |  | ||||||
|         p--;                    /* can always return one */ |  | ||||||
|       } |  | ||||||
|       s->mode = DRY; |  | ||||||
|     case DRY: |  | ||||||
|       FLUSH |  | ||||||
|       if (s->read != s->write) |  | ||||||
|         LEAVE |  | ||||||
|       s->mode = DONE; |  | ||||||
|     case DONE: |  | ||||||
|       r = Z_STREAM_END; |  | ||||||
|       LEAVE |  | ||||||
|     case BAD: |  | ||||||
|       r = Z_DATA_ERROR; |  | ||||||
|       LEAVE |  | ||||||
|     default: |  | ||||||
|       r = Z_STREAM_ERROR; |  | ||||||
|       LEAVE |  | ||||||
|   } |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| int inflate_blocks_free(s, z) |  | ||||||
| inflate_blocks_statef *s; |  | ||||||
| z_streamp z; |  | ||||||
| { |  | ||||||
|   inflate_blocks_reset(s, z, Z_NULL); |  | ||||||
|   ZFREE(z, s->window); |  | ||||||
|   ZFREE(z, s->hufts); |  | ||||||
|   ZFREE(z, s); |  | ||||||
|   Tracev((stderr, "inflate:   blocks freed\n")); |  | ||||||
|   return Z_OK; |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| void inflate_set_dictionary(s, d, n) |  | ||||||
| inflate_blocks_statef *s; |  | ||||||
| const Bytef *d; |  | ||||||
| uInt  n; |  | ||||||
| { |  | ||||||
|   zmemcpy(s->window, d, n); |  | ||||||
|   s->read = s->write = s->window + n; |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| /* Returns true if inflate is currently at the end of a block generated |  | ||||||
|  * by Z_SYNC_FLUSH or Z_FULL_FLUSH.  |  | ||||||
|  * IN assertion: s != Z_NULL |  | ||||||
|  */ |  | ||||||
| int inflate_blocks_sync_point(s) |  | ||||||
| inflate_blocks_statef *s; |  | ||||||
| { |  | ||||||
|   return s->mode == LENS; |  | ||||||
| } |  | ||||||
							
								
								
									
										39
									
								
								infblock.h
									
									
									
									
									
								
							
							
						
						
									
										39
									
								
								infblock.h
									
									
									
									
									
								
							| @@ -1,39 +0,0 @@ | |||||||
| /* infblock.h -- header to use infblock.c |  | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h  |  | ||||||
|  */ |  | ||||||
|  |  | ||||||
| /* WARNING: this file should *not* be used by applications. It is |  | ||||||
|    part of the implementation of the compression library and is |  | ||||||
|    subject to change. Applications should only use zlib.h. |  | ||||||
|  */ |  | ||||||
|  |  | ||||||
| struct inflate_blocks_state; |  | ||||||
| typedef struct inflate_blocks_state FAR inflate_blocks_statef; |  | ||||||
|  |  | ||||||
| extern inflate_blocks_statef * inflate_blocks_new OF(( |  | ||||||
|     z_streamp z, |  | ||||||
|     check_func c,               /* check function */ |  | ||||||
|     uInt w));                   /* window size */ |  | ||||||
|  |  | ||||||
| extern int inflate_blocks OF(( |  | ||||||
|     inflate_blocks_statef *, |  | ||||||
|     z_streamp , |  | ||||||
|     int));                      /* initial return code */ |  | ||||||
|  |  | ||||||
| extern void inflate_blocks_reset OF(( |  | ||||||
|     inflate_blocks_statef *, |  | ||||||
|     z_streamp , |  | ||||||
|     uLongf *));                  /* check value on output */ |  | ||||||
|  |  | ||||||
| extern int inflate_blocks_free OF(( |  | ||||||
|     inflate_blocks_statef *, |  | ||||||
|     z_streamp)); |  | ||||||
|  |  | ||||||
| extern void inflate_set_dictionary OF(( |  | ||||||
|     inflate_blocks_statef *s, |  | ||||||
|     const Bytef *d,  /* dictionary */ |  | ||||||
|     uInt  n));       /* dictionary length */ |  | ||||||
|  |  | ||||||
| extern int inflate_blocks_sync_point OF(( |  | ||||||
|     inflate_blocks_statef *s)); |  | ||||||
							
								
								
									
										252
									
								
								infcodes.c
									
									
									
									
									
								
							
							
						
						
									
										252
									
								
								infcodes.c
									
									
									
									
									
								
							| @@ -1,252 +0,0 @@ | |||||||
| /* infcodes.c -- process literals and length/distance pairs |  | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h  |  | ||||||
|  */ |  | ||||||
|  |  | ||||||
| #include "zutil.h" |  | ||||||
| #include "inftrees.h" |  | ||||||
| #include "infblock.h" |  | ||||||
| #include "infcodes.h" |  | ||||||
| #include "infutil.h" |  | ||||||
| #include "inffast.h" |  | ||||||
|  |  | ||||||
| /* simplify the use of the inflate_huft type with some defines */ |  | ||||||
| #define base more.Base |  | ||||||
| #define next more.Next |  | ||||||
| #define exop word.what.Exop |  | ||||||
| #define bits word.what.Bits |  | ||||||
|  |  | ||||||
| typedef enum {        /* waiting for "i:"=input, "o:"=output, "x:"=nothing */ |  | ||||||
|       START,    /* x: set up for LEN */ |  | ||||||
|       LEN,      /* i: get length/literal/eob next */ |  | ||||||
|       LENEXT,   /* i: getting length extra (have base) */ |  | ||||||
|       DIST,     /* i: get distance next */ |  | ||||||
|       DISTEXT,  /* i: getting distance extra */ |  | ||||||
|       COPY,     /* o: copying bytes in window, waiting for space */ |  | ||||||
|       LIT,      /* o: got literal, waiting for output space */ |  | ||||||
|       WASH,     /* o: got eob, possibly still output waiting */ |  | ||||||
|       END,      /* x: got eob and all data flushed */ |  | ||||||
|       BADCODE}  /* x: got error */ |  | ||||||
| inflate_codes_mode; |  | ||||||
|  |  | ||||||
| /* inflate codes private state */ |  | ||||||
| struct inflate_codes_state { |  | ||||||
|  |  | ||||||
|   /* mode */ |  | ||||||
|   inflate_codes_mode mode;      /* current inflate_codes mode */ |  | ||||||
|  |  | ||||||
|   /* mode dependent information */ |  | ||||||
|   uInt len; |  | ||||||
|   union { |  | ||||||
|     struct { |  | ||||||
|       inflate_huft *tree;       /* pointer into tree */ |  | ||||||
|       uInt need;                /* bits needed */ |  | ||||||
|     } code;             /* if LEN or DIST, where in tree */ |  | ||||||
|     uInt lit;           /* if LIT, literal */ |  | ||||||
|     struct { |  | ||||||
|       uInt get;                 /* bits to get for extra */ |  | ||||||
|       uInt dist;                /* distance back to copy from */ |  | ||||||
|     } copy;             /* if EXT or COPY, where and how much */ |  | ||||||
|   } sub;                /* submode */ |  | ||||||
|  |  | ||||||
|   /* mode independent information */ |  | ||||||
|   Byte lbits;           /* ltree bits decoded per branch */ |  | ||||||
|   Byte dbits;           /* dtree bits decoder per branch */ |  | ||||||
|   inflate_huft *ltree;          /* literal/length/eob tree */ |  | ||||||
|   inflate_huft *dtree;          /* distance tree */ |  | ||||||
|  |  | ||||||
| }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
| inflate_codes_statef *inflate_codes_new(bl, bd, tl, td, z) |  | ||||||
| uInt bl, bd; |  | ||||||
| inflate_huft *tl; |  | ||||||
| inflate_huft *td; /* need separate declaration for Borland C++ */ |  | ||||||
| z_streamp z; |  | ||||||
| { |  | ||||||
|   inflate_codes_statef *c; |  | ||||||
|  |  | ||||||
|   if ((c = (inflate_codes_statef *) |  | ||||||
|        ZALLOC(z,1,sizeof(struct inflate_codes_state))) != Z_NULL) |  | ||||||
|   { |  | ||||||
|     c->mode = START; |  | ||||||
|     c->lbits = (Byte)bl; |  | ||||||
|     c->dbits = (Byte)bd; |  | ||||||
|     c->ltree = tl; |  | ||||||
|     c->dtree = td; |  | ||||||
|     Tracev((stderr, "inflate:       codes new\n")); |  | ||||||
|   } |  | ||||||
|   return c; |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| int inflate_codes(s, z, r) |  | ||||||
| inflate_blocks_statef *s; |  | ||||||
| z_streamp z; |  | ||||||
| int r; |  | ||||||
| { |  | ||||||
|   uInt j;               /* temporary storage */ |  | ||||||
|   inflate_huft *t;      /* temporary pointer */ |  | ||||||
|   uInt e;               /* extra bits or operation */ |  | ||||||
|   uLong b;              /* bit buffer */ |  | ||||||
|   uInt k;               /* bits in bit buffer */ |  | ||||||
|   Bytef *p;             /* input data pointer */ |  | ||||||
|   uInt n;               /* bytes available there */ |  | ||||||
|   Bytef *q;             /* output window write pointer */ |  | ||||||
|   uInt m;               /* bytes to end of window or read pointer */ |  | ||||||
|   Bytef *f;             /* pointer to copy strings from */ |  | ||||||
|   inflate_codes_statef *c = s->sub.decode.codes;  /* codes state */ |  | ||||||
|  |  | ||||||
|   /* copy input/output information to locals (UPDATE macro restores) */ |  | ||||||
|   LOAD |  | ||||||
|  |  | ||||||
|   /* process input and output based on current state */ |  | ||||||
|   while (1) switch (c->mode) |  | ||||||
|   {             /* waiting for "i:"=input, "o:"=output, "x:"=nothing */ |  | ||||||
|     case START:         /* x: set up for LEN */ |  | ||||||
| #ifndef SLOW |  | ||||||
|       if (m >= 258 && n >= 10) |  | ||||||
|       { |  | ||||||
|         UPDATE |  | ||||||
|         r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z); |  | ||||||
|         LOAD |  | ||||||
|         if (r != Z_OK) |  | ||||||
|         { |  | ||||||
|           c->mode = r == Z_STREAM_END ? WASH : BADCODE; |  | ||||||
|           break; |  | ||||||
|         } |  | ||||||
|       } |  | ||||||
| #endif /* !SLOW */ |  | ||||||
|       c->sub.code.need = c->lbits; |  | ||||||
|       c->sub.code.tree = c->ltree; |  | ||||||
|       c->mode = LEN; |  | ||||||
|     case LEN:           /* i: get length/literal/eob next */ |  | ||||||
|       j = c->sub.code.need; |  | ||||||
|       NEEDBITS(j) |  | ||||||
|       t = c->sub.code.tree + ((uInt)b & inflate_mask[j]); |  | ||||||
|       DUMPBITS(t->bits) |  | ||||||
|       e = (uInt)(t->exop); |  | ||||||
|       if (e == 0)               /* literal */ |  | ||||||
|       { |  | ||||||
|         c->sub.lit = t->base; |  | ||||||
|         Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ? |  | ||||||
|                  "inflate:         literal '%c'\n" : |  | ||||||
|                  "inflate:         literal 0x%02x\n", t->base)); |  | ||||||
|         c->mode = LIT; |  | ||||||
|         break; |  | ||||||
|       } |  | ||||||
|       if (e & 16)               /* length */ |  | ||||||
|       { |  | ||||||
|         c->sub.copy.get = e & 15; |  | ||||||
|         c->len = t->base; |  | ||||||
|         c->mode = LENEXT; |  | ||||||
|         break; |  | ||||||
|       } |  | ||||||
|       if ((e & 64) == 0)        /* next table */ |  | ||||||
|       { |  | ||||||
|         c->sub.code.need = e; |  | ||||||
|         c->sub.code.tree = t->next; |  | ||||||
|         break; |  | ||||||
|       } |  | ||||||
|       if (e & 32)               /* end of block */ |  | ||||||
|       { |  | ||||||
|         Tracevv((stderr, "inflate:         end of block\n")); |  | ||||||
|         c->mode = WASH; |  | ||||||
|         break; |  | ||||||
|       } |  | ||||||
|       c->mode = BADCODE;        /* invalid code */ |  | ||||||
|       z->msg = (char*)"invalid literal/length code"; |  | ||||||
|       r = Z_DATA_ERROR; |  | ||||||
|       LEAVE |  | ||||||
|     case LENEXT:        /* i: getting length extra (have base) */ |  | ||||||
|       j = c->sub.copy.get; |  | ||||||
|       NEEDBITS(j) |  | ||||||
|       c->len += (uInt)b & inflate_mask[j]; |  | ||||||
|       DUMPBITS(j) |  | ||||||
|       c->sub.code.need = c->dbits; |  | ||||||
|       c->sub.code.tree = c->dtree; |  | ||||||
|       Tracevv((stderr, "inflate:         length %u\n", c->len)); |  | ||||||
|       c->mode = DIST; |  | ||||||
|     case DIST:          /* i: get distance next */ |  | ||||||
|       j = c->sub.code.need; |  | ||||||
|       NEEDBITS(j) |  | ||||||
|       t = c->sub.code.tree + ((uInt)b & inflate_mask[j]); |  | ||||||
|       DUMPBITS(t->bits) |  | ||||||
|       e = (uInt)(t->exop); |  | ||||||
|       if (e & 16)               /* distance */ |  | ||||||
|       { |  | ||||||
|         c->sub.copy.get = e & 15; |  | ||||||
|         c->sub.copy.dist = t->base; |  | ||||||
|         c->mode = DISTEXT; |  | ||||||
|         break; |  | ||||||
|       } |  | ||||||
|       if ((e & 64) == 0)        /* next table */ |  | ||||||
|       { |  | ||||||
|         c->sub.code.need = e; |  | ||||||
|         c->sub.code.tree = t->next; |  | ||||||
|         break; |  | ||||||
|       } |  | ||||||
|       c->mode = BADCODE;        /* invalid code */ |  | ||||||
|       z->msg = (char*)"invalid distance code"; |  | ||||||
|       r = Z_DATA_ERROR; |  | ||||||
|       LEAVE |  | ||||||
|     case DISTEXT:       /* i: getting distance extra */ |  | ||||||
|       j = c->sub.copy.get; |  | ||||||
|       NEEDBITS(j) |  | ||||||
|       c->sub.copy.dist += (uInt)b & inflate_mask[j]; |  | ||||||
|       DUMPBITS(j) |  | ||||||
|       Tracevv((stderr, "inflate:         distance %u\n", c->sub.copy.dist)); |  | ||||||
|       c->mode = COPY; |  | ||||||
|     case COPY:          /* o: copying bytes in window, waiting for space */ |  | ||||||
| #ifndef __TURBOC__ /* Turbo C bug for following expression */ |  | ||||||
|       f = (uInt)(q - s->window) < c->sub.copy.dist ? |  | ||||||
|           s->end - (c->sub.copy.dist - (q - s->window)) : |  | ||||||
|           q - c->sub.copy.dist; |  | ||||||
| #else |  | ||||||
|       f = q - c->sub.copy.dist; |  | ||||||
|       if ((uInt)(q - s->window) < c->sub.copy.dist) |  | ||||||
|         f = s->end - (c->sub.copy.dist - (uInt)(q - s->window)); |  | ||||||
| #endif |  | ||||||
|       while (c->len) |  | ||||||
|       { |  | ||||||
|         NEEDOUT |  | ||||||
|         OUTBYTE(*f++) |  | ||||||
|         if (f == s->end) |  | ||||||
|           f = s->window; |  | ||||||
|         c->len--; |  | ||||||
|       } |  | ||||||
|       c->mode = START; |  | ||||||
|       break; |  | ||||||
|     case LIT:           /* o: got literal, waiting for output space */ |  | ||||||
|       NEEDOUT |  | ||||||
|       OUTBYTE(c->sub.lit) |  | ||||||
|       c->mode = START; |  | ||||||
|       break; |  | ||||||
|     case WASH:          /* o: got eob, possibly more output */ |  | ||||||
|       FLUSH |  | ||||||
|       if (s->read != s->write) |  | ||||||
|         LEAVE |  | ||||||
|       c->mode = END; |  | ||||||
|     case END: |  | ||||||
|       r = Z_STREAM_END; |  | ||||||
|       LEAVE |  | ||||||
|     case BADCODE:       /* x: got error */ |  | ||||||
|       r = Z_DATA_ERROR; |  | ||||||
|       LEAVE |  | ||||||
|     default: |  | ||||||
|       r = Z_STREAM_ERROR; |  | ||||||
|       LEAVE |  | ||||||
|   } |  | ||||||
| #ifdef NEED_DUMMY_RETURN |  | ||||||
|   return Z_STREAM_ERROR;  /* Some dumb compilers complain without this */ |  | ||||||
| #endif |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| void inflate_codes_free(c, z) |  | ||||||
| inflate_codes_statef *c; |  | ||||||
| z_streamp z; |  | ||||||
| { |  | ||||||
|   ZFREE(z, c); |  | ||||||
|   Tracev((stderr, "inflate:       codes free\n")); |  | ||||||
| } |  | ||||||
							
								
								
									
										27
									
								
								infcodes.h
									
									
									
									
									
								
							
							
						
						
									
										27
									
								
								infcodes.h
									
									
									
									
									
								
							| @@ -1,27 +0,0 @@ | |||||||
| /* infcodes.h -- header to use infcodes.c |  | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h  |  | ||||||
|  */ |  | ||||||
|  |  | ||||||
| /* WARNING: this file should *not* be used by applications. It is |  | ||||||
|    part of the implementation of the compression library and is |  | ||||||
|    subject to change. Applications should only use zlib.h. |  | ||||||
|  */ |  | ||||||
|  |  | ||||||
| struct inflate_codes_state; |  | ||||||
| typedef struct inflate_codes_state FAR inflate_codes_statef; |  | ||||||
|  |  | ||||||
| extern inflate_codes_statef *inflate_codes_new OF(( |  | ||||||
|     uInt, uInt, |  | ||||||
|     inflate_huft *, inflate_huft *, |  | ||||||
|     z_streamp )); |  | ||||||
|  |  | ||||||
| extern int inflate_codes OF(( |  | ||||||
|     inflate_blocks_statef *, |  | ||||||
|     z_streamp , |  | ||||||
|     int)); |  | ||||||
|  |  | ||||||
| extern void inflate_codes_free OF(( |  | ||||||
|     inflate_codes_statef *, |  | ||||||
|     z_streamp )); |  | ||||||
|  |  | ||||||
							
								
								
									
										430
									
								
								inffast.c
									
									
									
									
									
								
							
							
						
						
									
										430
									
								
								inffast.c
									
									
									
									
									
								
							| @@ -1,168 +1,298 @@ | |||||||
| /* inffast.c -- process literals and length/distance pairs fast | /* inffast.c -- fast decoding | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  * Copyright (C) 1995-2003 Mark Adler | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| #include "zutil.h" | #include "zutil.h" | ||||||
| #include "inftrees.h" | #include "inftrees.h" | ||||||
| #include "infblock.h" | #include "inflate.h" | ||||||
| #include "infcodes.h" |  | ||||||
| #include "infutil.h" |  | ||||||
| #include "inffast.h" | #include "inffast.h" | ||||||
|  |  | ||||||
| struct inflate_codes_state {int dummy;}; /* for buggy compilers */ | /* Allow machine dependent optimization for post-increment or pre-increment. | ||||||
|  |    Based on testing to date, | ||||||
|  |    Pre-increment preferred for: | ||||||
|  |    - PowerPC G3 (Adler) | ||||||
|  |    - MIPS R5000 (Randers-Pehrson) | ||||||
|  |    Post-increment preferred for: | ||||||
|  |    - none | ||||||
|  |    No measurable difference: | ||||||
|  |    - Pentium III (Anderson) | ||||||
|  |  */ | ||||||
|  | #ifdef POSTINC | ||||||
|  | #  define OFF 0 | ||||||
|  | #  define PUP(a) *(a)++ | ||||||
|  | #else | ||||||
|  | #  define OFF 1 | ||||||
|  | #  define PUP(a) *++(a) | ||||||
|  | #endif | ||||||
|  |  | ||||||
| /* simplify the use of the inflate_huft type with some defines */ | /* | ||||||
| #define base more.Base |    Decode literal, length, and distance codes and write out the resulting | ||||||
| #define next more.Next |    literal and match bytes until either not enough input or output is | ||||||
| #define exop word.what.Exop |    available, an end-of-block is encountered, or a data error is encountered. | ||||||
| #define bits word.what.Bits |    When large enough input and output buffers are supplied to inflate(), for | ||||||
|  |    example, a 16K input buffer and a 64K output buffer, more than 95% of the | ||||||
|  |    inflate execution time is spent in this routine. | ||||||
|  |  | ||||||
| /* macros for bit input with no checking and for returning unused bytes */ |    Entry assumptions: | ||||||
| #define GRABBITS(j) {while(k<(j)){b|=((uLong)NEXTBYTE)<<k;k+=8;}} |  | ||||||
| #define UNGRAB {n+=(c=k>>3);p-=c;k&=7;} |  | ||||||
|  |  | ||||||
| /* Called with number of bytes left to write in window at least 258 |         state->mode == LEN | ||||||
|    (the maximum string length) and number of input bytes available |         strm->avail_in >= 6 | ||||||
|    at least ten.  The ten bytes are six bytes for the longest length/ |         strm->avail_out >= 258 | ||||||
|    distance pair plus four bytes for overloading the bit buffer. */ |         start >= strm->avail_out | ||||||
|  |         state->bits < 8 | ||||||
|  |  | ||||||
| int inflate_fast(bl, bd, tl, td, s, z) |    On return, state->mode is one of: | ||||||
| uInt bl, bd; |  | ||||||
| inflate_huft *tl; |         LEN -- ran out of enough output space or enough available input | ||||||
| inflate_huft *td; /* need separate declaration for Borland C++ */ |         TYPE -- reached end of block code, inflate() to interpret next block | ||||||
| inflate_blocks_statef *s; |         BAD -- error in block data | ||||||
| z_streamp z; |  | ||||||
|  |    Notes: | ||||||
|  |  | ||||||
|  |     - The maximum input bits used by a length/distance pair is 15 bits for the | ||||||
|  |       length code, 5 bits for the length extra, 15 bits for the distance code, | ||||||
|  |       and 13 bits for the distance extra.  This totals 48 bits, or six bytes. | ||||||
|  |       Therefore if strm->avail_in >= 6, then there is enough input to avoid | ||||||
|  |       checking for available input while decoding. | ||||||
|  |  | ||||||
|  |     - The maximum bytes that a single length/distance pair can output is 258 | ||||||
|  |       bytes, which is the maximum length that can be coded.  inflate_fast() | ||||||
|  |       requires strm->avail_out >= 258 for each loop to avoid checking for | ||||||
|  |       output space. | ||||||
|  |  */ | ||||||
|  | void inflate_fast(strm, start) | ||||||
|  | z_streamp strm; | ||||||
|  | unsigned start;         /* inflate()'s starting value for strm->avail_out */ | ||||||
| { | { | ||||||
|   inflate_huft *t;      /* temporary pointer */ |     struct inflate_state FAR *state; | ||||||
|   uInt e;               /* extra bits or operation */ |     unsigned char FAR *in;      /* local strm->next_in */ | ||||||
|   uLong b;              /* bit buffer */ |     unsigned char FAR *last;    /* while in < last, enough input available */ | ||||||
|   uInt k;               /* bits in bit buffer */ |     unsigned char FAR *out;     /* local strm->next_out */ | ||||||
|   Bytef *p;             /* input data pointer */ |     unsigned char FAR *beg;     /* inflate()'s initial strm->next_out */ | ||||||
|   uInt n;               /* bytes available there */ |     unsigned char FAR *end;     /* while out < end, enough space available */ | ||||||
|   Bytef *q;             /* output window write pointer */ |     unsigned wsize;             /* window size or zero if not using window */ | ||||||
|   uInt m;               /* bytes to end of window or read pointer */ |     unsigned write;             /* window write index */ | ||||||
|   uInt ml;              /* mask for literal/length tree */ |     unsigned char FAR *window;  /* allocated sliding window, if wsize != 0 */ | ||||||
|   uInt md;              /* mask for distance tree */ |     unsigned long hold;         /* local strm->hold */ | ||||||
|   uInt c;               /* bytes to copy */ |     unsigned bits;              /* local strm->bits */ | ||||||
|   uInt d;               /* distance back to copy from */ |     code const FAR *lcode;      /* local strm->lencode */ | ||||||
|   Bytef *r;             /* copy source pointer */ |     code const FAR *dcode;      /* local strm->distcode */ | ||||||
|  |     unsigned lmask;             /* mask for first level of length codes */ | ||||||
|  |     unsigned dmask;             /* mask for first level of distance codes */ | ||||||
|  |     code this;                  /* retrieved table entry */ | ||||||
|  |     unsigned op;                /* code bits, operation, extra bits, or */ | ||||||
|  |                                 /*  window position, window bytes to copy */ | ||||||
|  |     unsigned len;               /* match length, unused bytes */ | ||||||
|  |     unsigned dist;              /* match distance */ | ||||||
|  |     unsigned char FAR *from;    /* where to copy match from */ | ||||||
|  |  | ||||||
|   /* load input, output, bit values */ |     /* copy state to local variables */ | ||||||
|   LOAD |     state = (struct inflate_state FAR *)strm->state; | ||||||
|  |     in = strm->next_in - OFF; | ||||||
|  |     last = in + (strm->avail_in - 5); | ||||||
|  |     out = strm->next_out - OFF; | ||||||
|  |     beg = out - (start - strm->avail_out); | ||||||
|  |     end = out + (strm->avail_out - 257); | ||||||
|  |     wsize = state->wsize; | ||||||
|  |     write = state->write; | ||||||
|  |     window = state->window; | ||||||
|  |     hold = state->hold; | ||||||
|  |     bits = state->bits; | ||||||
|  |     lcode = state->lencode; | ||||||
|  |     dcode = state->distcode; | ||||||
|  |     lmask = (1U << state->lenbits) - 1; | ||||||
|  |     dmask = (1U << state->distbits) - 1; | ||||||
|  |  | ||||||
|   /* initialize masks */ |     /* decode literals and length/distances until end-of-block or not enough | ||||||
|   ml = inflate_mask[bl]; |        input data or output space */ | ||||||
|   md = inflate_mask[bd]; |  | ||||||
|  |  | ||||||
|   /* do until not enough input or output space for fast loop */ |  | ||||||
|   do {                          /* assume called with m >= 258 && n >= 10 */ |  | ||||||
|     /* get literal/length code */ |  | ||||||
|     GRABBITS(20)                /* max bits for literal/length code */ |  | ||||||
|     if ((e = (t = tl + ((uInt)b & ml))->exop) == 0) |  | ||||||
|     { |  | ||||||
|       DUMPBITS(t->bits) |  | ||||||
|       Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ? |  | ||||||
|                 "inflate:         * literal '%c'\n" : |  | ||||||
|                 "inflate:         * literal 0x%02x\n", t->base)); |  | ||||||
|       *q++ = (Byte)t->base; |  | ||||||
|       m--; |  | ||||||
|       continue; |  | ||||||
|     } |  | ||||||
|     do { |     do { | ||||||
|       DUMPBITS(t->bits) |         if (bits < 15) { | ||||||
|       if (e & 16) |             hold += (unsigned long)(PUP(in)) << bits; | ||||||
|       { |             bits += 8; | ||||||
|         /* get extra bits for length */ |             hold += (unsigned long)(PUP(in)) << bits; | ||||||
|         e &= 15; |             bits += 8; | ||||||
|         c = t->base + ((uInt)b & inflate_mask[e]); |  | ||||||
|         DUMPBITS(e) |  | ||||||
|         Tracevv((stderr, "inflate:         * length %u\n", c)); |  | ||||||
|  |  | ||||||
|         /* decode distance base of block to copy */ |  | ||||||
|         GRABBITS(15);           /* max bits for distance code */ |  | ||||||
|         e = (t = td + ((uInt)b & md))->exop; |  | ||||||
|         do { |  | ||||||
|           DUMPBITS(t->bits) |  | ||||||
|           if (e & 16) |  | ||||||
|           { |  | ||||||
|             /* get extra bits to add to distance base */ |  | ||||||
|             e &= 15; |  | ||||||
|             GRABBITS(e)         /* get extra bits (up to 13) */ |  | ||||||
|             d = t->base + ((uInt)b & inflate_mask[e]); |  | ||||||
|             DUMPBITS(e) |  | ||||||
|             Tracevv((stderr, "inflate:         * distance %u\n", d)); |  | ||||||
|  |  | ||||||
|             /* do the copy */ |  | ||||||
|             m -= c; |  | ||||||
|             if ((uInt)(q - s->window) >= d)     /* offset before dest */ |  | ||||||
|             {                                   /*  just copy */ |  | ||||||
|               r = q - d; |  | ||||||
|               *q++ = *r++;  c--;        /* minimum count is three, */ |  | ||||||
|               *q++ = *r++;  c--;        /*  so unroll loop a little */ |  | ||||||
|             } |  | ||||||
|             else                        /* else offset after destination */ |  | ||||||
|             { |  | ||||||
|               e = d - (uInt)(q - s->window); /* bytes from offset to end */ |  | ||||||
|               r = s->end - e;           /* pointer to offset */ |  | ||||||
|               if (c > e)                /* if source crosses, */ |  | ||||||
|               { |  | ||||||
|                 c -= e;                 /* copy to end of window */ |  | ||||||
|                 do { |  | ||||||
|                   *q++ = *r++; |  | ||||||
|                 } while (--e); |  | ||||||
|                 r = s->window;          /* copy rest from start of window */ |  | ||||||
|               } |  | ||||||
|             } |  | ||||||
|             do {                        /* copy all or what's left */ |  | ||||||
|               *q++ = *r++; |  | ||||||
|             } while (--c); |  | ||||||
|             break; |  | ||||||
|           } |  | ||||||
|           else if ((e & 64) == 0) |  | ||||||
|             e = (t = t->next + ((uInt)b & inflate_mask[e]))->exop; |  | ||||||
|           else |  | ||||||
|           { |  | ||||||
|             z->msg = (char*)"invalid distance code"; |  | ||||||
|             UNGRAB |  | ||||||
|             UPDATE |  | ||||||
|             return Z_DATA_ERROR; |  | ||||||
|           } |  | ||||||
|         } while (1); |  | ||||||
|         break; |  | ||||||
|       } |  | ||||||
|       if ((e & 64) == 0) |  | ||||||
|       { |  | ||||||
|         if ((e = (t = t->next + ((uInt)b & inflate_mask[e]))->exop) == 0) |  | ||||||
|         { |  | ||||||
|           DUMPBITS(t->bits) |  | ||||||
|           Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ? |  | ||||||
|                     "inflate:         * literal '%c'\n" : |  | ||||||
|                     "inflate:         * literal 0x%02x\n", t->base)); |  | ||||||
|           *q++ = (Byte)t->base; |  | ||||||
|           m--; |  | ||||||
|           break; |  | ||||||
|         } |         } | ||||||
|       } |         this = lcode[hold & lmask]; | ||||||
|       else if (e & 32) |       dolen: | ||||||
|       { |         op = (unsigned)(this.bits); | ||||||
|         Tracevv((stderr, "inflate:         * end of block\n")); |         hold >>= op; | ||||||
|         UNGRAB |         bits -= op; | ||||||
|         UPDATE |         op = (unsigned)(this.op); | ||||||
|         return Z_STREAM_END; |         if (op == 0) {                          /* literal */ | ||||||
|       } |             Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ? | ||||||
|       else |                     "inflate:         literal '%c'\n" : | ||||||
|       { |                     "inflate:         literal 0x%02x\n", this.val)); | ||||||
|         z->msg = (char*)"invalid literal/length code"; |             PUP(out) = (unsigned char)(this.val); | ||||||
|         UNGRAB |         } | ||||||
|         UPDATE |         else if (op & 16) {                     /* length base */ | ||||||
|         return Z_DATA_ERROR; |             len = (unsigned)(this.val); | ||||||
|       } |             op &= 15;                           /* number of extra bits */ | ||||||
|     } while (1); |             if (op) { | ||||||
|   } while (m >= 258 && n >= 10); |                 if (bits < op) { | ||||||
|  |                     hold += (unsigned long)(PUP(in)) << bits; | ||||||
|  |                     bits += 8; | ||||||
|  |                 } | ||||||
|  |                 len += (unsigned)hold & ((1U << op) - 1); | ||||||
|  |                 hold >>= op; | ||||||
|  |                 bits -= op; | ||||||
|  |             } | ||||||
|  |             Tracevv((stderr, "inflate:         length %u\n", len)); | ||||||
|  |             if (bits < 15) { | ||||||
|  |                 hold += (unsigned long)(PUP(in)) << bits; | ||||||
|  |                 bits += 8; | ||||||
|  |                 hold += (unsigned long)(PUP(in)) << bits; | ||||||
|  |                 bits += 8; | ||||||
|  |             } | ||||||
|  |             this = dcode[hold & dmask]; | ||||||
|  |           dodist: | ||||||
|  |             op = (unsigned)(this.bits); | ||||||
|  |             hold >>= op; | ||||||
|  |             bits -= op; | ||||||
|  |             op = (unsigned)(this.op); | ||||||
|  |             if (op & 16) {                      /* distance base */ | ||||||
|  |                 dist = (unsigned)(this.val); | ||||||
|  |                 op &= 15;                       /* number of extra bits */ | ||||||
|  |                 if (bits < op) { | ||||||
|  |                     hold += (unsigned long)(PUP(in)) << bits; | ||||||
|  |                     bits += 8; | ||||||
|  |                     if (bits < op) { | ||||||
|  |                         hold += (unsigned long)(PUP(in)) << bits; | ||||||
|  |                         bits += 8; | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |                 dist += (unsigned)hold & ((1U << op) - 1); | ||||||
|  |                 hold >>= op; | ||||||
|  |                 bits -= op; | ||||||
|  |                 Tracevv((stderr, "inflate:         distance %u\n", dist)); | ||||||
|  |                 op = (unsigned)(out - beg);     /* max distance in output */ | ||||||
|  |                 if (dist > op) {                /* see if copy from window */ | ||||||
|  |                     if (dist > wsize) { | ||||||
|  |                         strm->msg = (char *)"invalid distance too far back"; | ||||||
|  |                         state->mode = BAD; | ||||||
|  |                         break; | ||||||
|  |                     } | ||||||
|  |                     from = window - OFF; | ||||||
|  |                     op = dist - op;             /* distance back in window */ | ||||||
|  |                     if (write == 0) {           /* very common case */ | ||||||
|  |                         from += wsize - op; | ||||||
|  |                         if (op < len) {         /* some from window */ | ||||||
|  |                             len -= op; | ||||||
|  |                             do { | ||||||
|  |                                 PUP(out) = PUP(from); | ||||||
|  |                             } while (--op); | ||||||
|  |                             from = out - dist;  /* rest from output */ | ||||||
|  |                         } | ||||||
|  |                     } | ||||||
|  |                     else if (write < op) {      /* wrap around window */ | ||||||
|  |                         from += wsize + write - op; | ||||||
|  |                         op -= write; | ||||||
|  |                         if (op < len) {         /* some from end of window */ | ||||||
|  |                             len -= op; | ||||||
|  |                             do { | ||||||
|  |                                 PUP(out) = PUP(from); | ||||||
|  |                             } while (--op); | ||||||
|  |                             from = window - OFF; | ||||||
|  |                             if (write < len) {  /* some from start of window */ | ||||||
|  |                                 op = write; | ||||||
|  |                                 len -= op; | ||||||
|  |                                 do { | ||||||
|  |                                     PUP(out) = PUP(from); | ||||||
|  |                                 } while (--op); | ||||||
|  |                                 from = out - dist;      /* rest from output */ | ||||||
|  |                             } | ||||||
|  |                         } | ||||||
|  |                     } | ||||||
|  |                     else {                      /* contiguous in window */ | ||||||
|  |                         from += write - op; | ||||||
|  |                         if (op < len) {         /* some from window */ | ||||||
|  |                             len -= op; | ||||||
|  |                             do { | ||||||
|  |                                 PUP(out) = PUP(from); | ||||||
|  |                             } while (--op); | ||||||
|  |                             from = out - dist;  /* rest from output */ | ||||||
|  |                         } | ||||||
|  |                     } | ||||||
|  |                     while (len > 2) { | ||||||
|  |                         PUP(out) = PUP(from); | ||||||
|  |                         PUP(out) = PUP(from); | ||||||
|  |                         PUP(out) = PUP(from); | ||||||
|  |                         len -= 3; | ||||||
|  |                     } | ||||||
|  |                     if (len) { | ||||||
|  |                         PUP(out) = PUP(from); | ||||||
|  |                         if (len > 1) | ||||||
|  |                             PUP(out) = PUP(from); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |                 else { | ||||||
|  |                     from = out - dist;          /* copy direct from output */ | ||||||
|  |                     do {                        /* minimum length is three */ | ||||||
|  |                         PUP(out) = PUP(from); | ||||||
|  |                         PUP(out) = PUP(from); | ||||||
|  |                         PUP(out) = PUP(from); | ||||||
|  |                         len -= 3; | ||||||
|  |                     } while (len > 2); | ||||||
|  |                     if (len) { | ||||||
|  |                         PUP(out) = PUP(from); | ||||||
|  |                         if (len > 1) | ||||||
|  |                             PUP(out) = PUP(from); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             else if ((op & 64) == 0) {          /* 2nd level distance code */ | ||||||
|  |                 this = dcode[this.val + (hold & ((1U << op) - 1))]; | ||||||
|  |                 goto dodist; | ||||||
|  |             } | ||||||
|  |             else { | ||||||
|  |                 strm->msg = (char *)"invalid distance code"; | ||||||
|  |                 state->mode = BAD; | ||||||
|  |                 break; | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         else if ((op & 64) == 0) {              /* 2nd level length code */ | ||||||
|  |             this = lcode[this.val + (hold & ((1U << op) - 1))]; | ||||||
|  |             goto dolen; | ||||||
|  |         } | ||||||
|  |         else if (op & 32) {                     /* end-of-block */ | ||||||
|  |             Tracevv((stderr, "inflate:         end of block\n")); | ||||||
|  |             state->mode = TYPE; | ||||||
|  |             break; | ||||||
|  |         } | ||||||
|  |         else { | ||||||
|  |             strm->msg = (char *)"invalid literal/length code"; | ||||||
|  |             state->mode = BAD; | ||||||
|  |             break; | ||||||
|  |         } | ||||||
|  |     } while (in < last && out < end); | ||||||
|  |  | ||||||
|   /* not enough input or output--restore pointers and return */ |     /* return unused bytes (on entry, bits < 8, so in won't go too far back) */ | ||||||
|   UNGRAB |     len = bits >> 3; | ||||||
|   UPDATE |     in -= len; | ||||||
|   return Z_OK; |     bits -= len << 3; | ||||||
|  |     hold &= (1U << bits) - 1; | ||||||
|  |  | ||||||
|  |     /* update state and return */ | ||||||
|  |     strm->next_in = in + OFF; | ||||||
|  |     strm->next_out = out + OFF; | ||||||
|  |     strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last)); | ||||||
|  |     strm->avail_out = (unsigned)(out < end ? | ||||||
|  |                                  257 + (end - out) : 257 - (out - end)); | ||||||
|  |     state->hold = hold; | ||||||
|  |     state->bits = bits; | ||||||
|  |     return; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |    inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe): | ||||||
|  |    - Using bit fields for code structure | ||||||
|  |    - Different op definition to avoid & for extra bits (do & for table bits) | ||||||
|  |    - Three separate decoding do-loops for direct, window, and write == 0 | ||||||
|  |    - Special case for distance > 1 copies to do overlapped load and store copy | ||||||
|  |    - Explicit branch predictions (based on measured branch probabilities) | ||||||
|  |    - Deferring match copy and interspersed it with decoding subsequent codes | ||||||
|  |    - Swapping literal/length else | ||||||
|  |    - Swapping window/direct else | ||||||
|  |    - Larger unrolled copy loops (three is about right) | ||||||
|  |    - Moving len -= 3 statement into middle of loop | ||||||
|  |  */ | ||||||
|   | |||||||
							
								
								
									
										10
									
								
								inffast.h
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								inffast.h
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| /* inffast.h -- header to use inffast.c | /* inffast.h -- header to use inffast.c | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  * Copyright (C) 1995-2003 Mark Adler | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h  |  * For conditions of distribution and use, see copyright notice in zlib.h  | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| @@ -8,10 +8,4 @@ | |||||||
|    subject to change. Applications should only use zlib.h. |    subject to change. Applications should only use zlib.h. | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| extern int inflate_fast OF(( | void inflate_fast OF((z_streamp strm, unsigned start)); | ||||||
|     uInt, |  | ||||||
|     uInt, |  | ||||||
|     inflate_huft *, |  | ||||||
|     inflate_huft *, |  | ||||||
|     inflate_blocks_statef *, |  | ||||||
|     z_streamp )); |  | ||||||
|   | |||||||
							
								
								
									
										94
									
								
								inffixed.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										94
									
								
								inffixed.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,94 @@ | |||||||
|  |     /* inffixed.h -- table for decoding fixed codes | ||||||
|  |      * Generated automatically by makefixed(). | ||||||
|  |      */ | ||||||
|  |  | ||||||
|  |     /* WARNING: this file should *not* be used by applications. It | ||||||
|  |        is part of the implementation of the compression library and | ||||||
|  |        is subject to change. Applications should only use zlib.h. | ||||||
|  |      */ | ||||||
|  |  | ||||||
|  |     static const code lenfix[512] = { | ||||||
|  |         {96,7,0},{0,8,80},{0,8,16},{20,8,115},{18,7,31},{0,8,112},{0,8,48}, | ||||||
|  |         {0,9,192},{16,7,10},{0,8,96},{0,8,32},{0,9,160},{0,8,0},{0,8,128}, | ||||||
|  |         {0,8,64},{0,9,224},{16,7,6},{0,8,88},{0,8,24},{0,9,144},{19,7,59}, | ||||||
|  |         {0,8,120},{0,8,56},{0,9,208},{17,7,17},{0,8,104},{0,8,40},{0,9,176}, | ||||||
|  |         {0,8,8},{0,8,136},{0,8,72},{0,9,240},{16,7,4},{0,8,84},{0,8,20}, | ||||||
|  |         {21,8,227},{19,7,43},{0,8,116},{0,8,52},{0,9,200},{17,7,13},{0,8,100}, | ||||||
|  |         {0,8,36},{0,9,168},{0,8,4},{0,8,132},{0,8,68},{0,9,232},{16,7,8}, | ||||||
|  |         {0,8,92},{0,8,28},{0,9,152},{20,7,83},{0,8,124},{0,8,60},{0,9,216}, | ||||||
|  |         {18,7,23},{0,8,108},{0,8,44},{0,9,184},{0,8,12},{0,8,140},{0,8,76}, | ||||||
|  |         {0,9,248},{16,7,3},{0,8,82},{0,8,18},{21,8,163},{19,7,35},{0,8,114}, | ||||||
|  |         {0,8,50},{0,9,196},{17,7,11},{0,8,98},{0,8,34},{0,9,164},{0,8,2}, | ||||||
|  |         {0,8,130},{0,8,66},{0,9,228},{16,7,7},{0,8,90},{0,8,26},{0,9,148}, | ||||||
|  |         {20,7,67},{0,8,122},{0,8,58},{0,9,212},{18,7,19},{0,8,106},{0,8,42}, | ||||||
|  |         {0,9,180},{0,8,10},{0,8,138},{0,8,74},{0,9,244},{16,7,5},{0,8,86}, | ||||||
|  |         {0,8,22},{64,8,0},{19,7,51},{0,8,118},{0,8,54},{0,9,204},{17,7,15}, | ||||||
|  |         {0,8,102},{0,8,38},{0,9,172},{0,8,6},{0,8,134},{0,8,70},{0,9,236}, | ||||||
|  |         {16,7,9},{0,8,94},{0,8,30},{0,9,156},{20,7,99},{0,8,126},{0,8,62}, | ||||||
|  |         {0,9,220},{18,7,27},{0,8,110},{0,8,46},{0,9,188},{0,8,14},{0,8,142}, | ||||||
|  |         {0,8,78},{0,9,252},{96,7,0},{0,8,81},{0,8,17},{21,8,131},{18,7,31}, | ||||||
|  |         {0,8,113},{0,8,49},{0,9,194},{16,7,10},{0,8,97},{0,8,33},{0,9,162}, | ||||||
|  |         {0,8,1},{0,8,129},{0,8,65},{0,9,226},{16,7,6},{0,8,89},{0,8,25}, | ||||||
|  |         {0,9,146},{19,7,59},{0,8,121},{0,8,57},{0,9,210},{17,7,17},{0,8,105}, | ||||||
|  |         {0,8,41},{0,9,178},{0,8,9},{0,8,137},{0,8,73},{0,9,242},{16,7,4}, | ||||||
|  |         {0,8,85},{0,8,21},{16,8,258},{19,7,43},{0,8,117},{0,8,53},{0,9,202}, | ||||||
|  |         {17,7,13},{0,8,101},{0,8,37},{0,9,170},{0,8,5},{0,8,133},{0,8,69}, | ||||||
|  |         {0,9,234},{16,7,8},{0,8,93},{0,8,29},{0,9,154},{20,7,83},{0,8,125}, | ||||||
|  |         {0,8,61},{0,9,218},{18,7,23},{0,8,109},{0,8,45},{0,9,186},{0,8,13}, | ||||||
|  |         {0,8,141},{0,8,77},{0,9,250},{16,7,3},{0,8,83},{0,8,19},{21,8,195}, | ||||||
|  |         {19,7,35},{0,8,115},{0,8,51},{0,9,198},{17,7,11},{0,8,99},{0,8,35}, | ||||||
|  |         {0,9,166},{0,8,3},{0,8,131},{0,8,67},{0,9,230},{16,7,7},{0,8,91}, | ||||||
|  |         {0,8,27},{0,9,150},{20,7,67},{0,8,123},{0,8,59},{0,9,214},{18,7,19}, | ||||||
|  |         {0,8,107},{0,8,43},{0,9,182},{0,8,11},{0,8,139},{0,8,75},{0,9,246}, | ||||||
|  |         {16,7,5},{0,8,87},{0,8,23},{64,8,0},{19,7,51},{0,8,119},{0,8,55}, | ||||||
|  |         {0,9,206},{17,7,15},{0,8,103},{0,8,39},{0,9,174},{0,8,7},{0,8,135}, | ||||||
|  |         {0,8,71},{0,9,238},{16,7,9},{0,8,95},{0,8,31},{0,9,158},{20,7,99}, | ||||||
|  |         {0,8,127},{0,8,63},{0,9,222},{18,7,27},{0,8,111},{0,8,47},{0,9,190}, | ||||||
|  |         {0,8,15},{0,8,143},{0,8,79},{0,9,254},{96,7,0},{0,8,80},{0,8,16}, | ||||||
|  |         {20,8,115},{18,7,31},{0,8,112},{0,8,48},{0,9,193},{16,7,10},{0,8,96}, | ||||||
|  |         {0,8,32},{0,9,161},{0,8,0},{0,8,128},{0,8,64},{0,9,225},{16,7,6}, | ||||||
|  |         {0,8,88},{0,8,24},{0,9,145},{19,7,59},{0,8,120},{0,8,56},{0,9,209}, | ||||||
|  |         {17,7,17},{0,8,104},{0,8,40},{0,9,177},{0,8,8},{0,8,136},{0,8,72}, | ||||||
|  |         {0,9,241},{16,7,4},{0,8,84},{0,8,20},{21,8,227},{19,7,43},{0,8,116}, | ||||||
|  |         {0,8,52},{0,9,201},{17,7,13},{0,8,100},{0,8,36},{0,9,169},{0,8,4}, | ||||||
|  |         {0,8,132},{0,8,68},{0,9,233},{16,7,8},{0,8,92},{0,8,28},{0,9,153}, | ||||||
|  |         {20,7,83},{0,8,124},{0,8,60},{0,9,217},{18,7,23},{0,8,108},{0,8,44}, | ||||||
|  |         {0,9,185},{0,8,12},{0,8,140},{0,8,76},{0,9,249},{16,7,3},{0,8,82}, | ||||||
|  |         {0,8,18},{21,8,163},{19,7,35},{0,8,114},{0,8,50},{0,9,197},{17,7,11}, | ||||||
|  |         {0,8,98},{0,8,34},{0,9,165},{0,8,2},{0,8,130},{0,8,66},{0,9,229}, | ||||||
|  |         {16,7,7},{0,8,90},{0,8,26},{0,9,149},{20,7,67},{0,8,122},{0,8,58}, | ||||||
|  |         {0,9,213},{18,7,19},{0,8,106},{0,8,42},{0,9,181},{0,8,10},{0,8,138}, | ||||||
|  |         {0,8,74},{0,9,245},{16,7,5},{0,8,86},{0,8,22},{64,8,0},{19,7,51}, | ||||||
|  |         {0,8,118},{0,8,54},{0,9,205},{17,7,15},{0,8,102},{0,8,38},{0,9,173}, | ||||||
|  |         {0,8,6},{0,8,134},{0,8,70},{0,9,237},{16,7,9},{0,8,94},{0,8,30}, | ||||||
|  |         {0,9,157},{20,7,99},{0,8,126},{0,8,62},{0,9,221},{18,7,27},{0,8,110}, | ||||||
|  |         {0,8,46},{0,9,189},{0,8,14},{0,8,142},{0,8,78},{0,9,253},{96,7,0}, | ||||||
|  |         {0,8,81},{0,8,17},{21,8,131},{18,7,31},{0,8,113},{0,8,49},{0,9,195}, | ||||||
|  |         {16,7,10},{0,8,97},{0,8,33},{0,9,163},{0,8,1},{0,8,129},{0,8,65}, | ||||||
|  |         {0,9,227},{16,7,6},{0,8,89},{0,8,25},{0,9,147},{19,7,59},{0,8,121}, | ||||||
|  |         {0,8,57},{0,9,211},{17,7,17},{0,8,105},{0,8,41},{0,9,179},{0,8,9}, | ||||||
|  |         {0,8,137},{0,8,73},{0,9,243},{16,7,4},{0,8,85},{0,8,21},{16,8,258}, | ||||||
|  |         {19,7,43},{0,8,117},{0,8,53},{0,9,203},{17,7,13},{0,8,101},{0,8,37}, | ||||||
|  |         {0,9,171},{0,8,5},{0,8,133},{0,8,69},{0,9,235},{16,7,8},{0,8,93}, | ||||||
|  |         {0,8,29},{0,9,155},{20,7,83},{0,8,125},{0,8,61},{0,9,219},{18,7,23}, | ||||||
|  |         {0,8,109},{0,8,45},{0,9,187},{0,8,13},{0,8,141},{0,8,77},{0,9,251}, | ||||||
|  |         {16,7,3},{0,8,83},{0,8,19},{21,8,195},{19,7,35},{0,8,115},{0,8,51}, | ||||||
|  |         {0,9,199},{17,7,11},{0,8,99},{0,8,35},{0,9,167},{0,8,3},{0,8,131}, | ||||||
|  |         {0,8,67},{0,9,231},{16,7,7},{0,8,91},{0,8,27},{0,9,151},{20,7,67}, | ||||||
|  |         {0,8,123},{0,8,59},{0,9,215},{18,7,19},{0,8,107},{0,8,43},{0,9,183}, | ||||||
|  |         {0,8,11},{0,8,139},{0,8,75},{0,9,247},{16,7,5},{0,8,87},{0,8,23}, | ||||||
|  |         {64,8,0},{19,7,51},{0,8,119},{0,8,55},{0,9,207},{17,7,15},{0,8,103}, | ||||||
|  |         {0,8,39},{0,9,175},{0,8,7},{0,8,135},{0,8,71},{0,9,239},{16,7,9}, | ||||||
|  |         {0,8,95},{0,8,31},{0,9,159},{20,7,99},{0,8,127},{0,8,63},{0,9,223}, | ||||||
|  |         {18,7,27},{0,8,111},{0,8,47},{0,9,191},{0,8,15},{0,8,143},{0,8,79}, | ||||||
|  |         {0,9,255} | ||||||
|  |     }; | ||||||
|  |  | ||||||
|  |     static const code distfix[32] = { | ||||||
|  |         {16,5,1},{23,5,257},{19,5,17},{27,5,4097},{17,5,5},{25,5,1025}, | ||||||
|  |         {21,5,65},{29,5,16385},{16,5,3},{24,5,513},{20,5,33},{28,5,8193}, | ||||||
|  |         {18,5,9},{26,5,2049},{22,5,129},{64,5,0},{16,5,2},{23,5,385}, | ||||||
|  |         {19,5,25},{27,5,6145},{17,5,7},{25,5,1537},{21,5,97},{29,5,24577}, | ||||||
|  |         {16,5,4},{24,5,769},{20,5,49},{28,5,12289},{18,5,13},{26,5,3073}, | ||||||
|  |         {22,5,193},{64,5,0} | ||||||
|  |     }; | ||||||
							
								
								
									
										115
									
								
								inflate.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										115
									
								
								inflate.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,115 @@ | |||||||
|  | /* inflate.h -- internal inflate state definition | ||||||
|  |  * Copyright (C) 1995-2003 Mark Adler | ||||||
|  |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | /* WARNING: this file should *not* be used by applications. It is | ||||||
|  |    part of the implementation of the compression library and is | ||||||
|  |    subject to change. Applications should only use zlib.h. | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | /* define NO_GUNZIP when compiling if you want to disable gzip header and | ||||||
|  |    trailer decoding by inflate().  NO_GUNZIP would be used to avoid linking in | ||||||
|  |    the crc code when it is not needed.  For shared libraries, gzip decoding | ||||||
|  |    should be left enabled. */ | ||||||
|  | #ifndef NO_GUNZIP | ||||||
|  | #  define GUNZIP | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  | /* Possible inflate modes between inflate() calls */ | ||||||
|  | typedef enum { | ||||||
|  |     HEAD,       /* i: waiting for magic header */ | ||||||
|  | #ifdef GUNZIP | ||||||
|  |     FLAGS,      /* i: waiting for method and flags (gzip) */ | ||||||
|  |     TIME,       /* i: waiting for modification time (gzip) */ | ||||||
|  |     OS,         /* i: waiting for extra flags and operating system (gzip) */ | ||||||
|  |     EXLEN,      /* i: waiting for extra length (gzip) */ | ||||||
|  |     EXTRA,      /* i: waiting for extra bytes (gzip) */ | ||||||
|  |     NAME,       /* i: waiting for end of file name (gzip) */ | ||||||
|  |     COMMENT,    /* i: waiting for end of comment (gzip) */ | ||||||
|  |     HCRC,       /* i: waiting for header crc (gzip) */ | ||||||
|  | #endif | ||||||
|  |     DICTID,     /* i: waiting for dictionary check value */ | ||||||
|  |     DICT,       /* waiting for inflateSetDictionary() call */ | ||||||
|  |         TYPE,       /* i: waiting for type bits, including last-flag bit */ | ||||||
|  |         STORED,     /* i: waiting for stored size (length and complement) */ | ||||||
|  |         COPY,       /* i/o: waiting for input or output to copy stored block */ | ||||||
|  |         TABLE,      /* i: waiting for dynamic block table lengths */ | ||||||
|  |         LENLENS,    /* i: waiting for code length code lengths */ | ||||||
|  |         CODELENS,   /* i: waiting for length/lit and distance code lengths */ | ||||||
|  |             LEN,        /* i: waiting for length/lit code */ | ||||||
|  |             LENEXT,     /* i: waiting for length extra bits */ | ||||||
|  |             DIST,       /* i: waiting for distance code */ | ||||||
|  |             DISTEXT,    /* i: waiting for distance extra bits */ | ||||||
|  |             MATCH,      /* o: waiting for output space to copy string */ | ||||||
|  |             LIT,        /* o: waiting for output space to write literal */ | ||||||
|  |     CHECK,      /* i: waiting for 32-bit check value */ | ||||||
|  | #ifdef GUNZIP | ||||||
|  |     LENGTH,     /* i: waiting for 32-bit length (gzip) */ | ||||||
|  | #endif | ||||||
|  |     DONE,       /* finished check, done -- remain here until reset */ | ||||||
|  |     BAD,        /* got a data error -- remain here until reset */ | ||||||
|  |     MEM,        /* got an inflate() memory error -- remain here until reset */ | ||||||
|  |     SYNC        /* looking for synchronization bytes to restart inflate() */ | ||||||
|  | } inflate_mode; | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |     State transitions between above modes - | ||||||
|  |  | ||||||
|  |     (most modes can go to the BAD or MEM mode -- not shown for clarity) | ||||||
|  |  | ||||||
|  |     Process header: | ||||||
|  |         HEAD -> (gzip) or (zlib) | ||||||
|  |         (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME | ||||||
|  |         NAME -> COMMENT -> HCRC -> TYPE | ||||||
|  |         (zlib) -> DICTID or TYPE | ||||||
|  |         DICTID -> DICT -> TYPE | ||||||
|  |     Read deflate blocks: | ||||||
|  |             TYPE -> STORED or TABLE or LEN or CHECK | ||||||
|  |             STORED -> COPY -> TYPE | ||||||
|  |             TABLE -> LENLENS -> CODELENS -> LEN | ||||||
|  |     Read deflate codes: | ||||||
|  |                 LEN -> LENEXT or LIT or TYPE | ||||||
|  |                 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN | ||||||
|  |                 LIT -> LEN | ||||||
|  |     Process trailer: | ||||||
|  |         CHECK -> LENGTH -> DONE | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | /* state maintained between inflate() calls.  Approximately 7K bytes. */ | ||||||
|  | struct inflate_state { | ||||||
|  |     inflate_mode mode;          /* current inflate mode */ | ||||||
|  |     int last;                   /* true if processing last block */ | ||||||
|  |     int wrap;                   /* true to process header and trailer */ | ||||||
|  |     int havedict;               /* true if dictionary provided */ | ||||||
|  |     int flags;                  /* gzip header method and flags (0 if zlib) */ | ||||||
|  |     unsigned long check;        /* protected copy of check value */ | ||||||
|  |     unsigned long total;        /* protected copy of output count */ | ||||||
|  |         /* sliding window */ | ||||||
|  |     unsigned wbits;             /* log base 2 of requested window size */ | ||||||
|  |     unsigned wsize;             /* window size or zero if not using window */ | ||||||
|  |     unsigned write;             /* window write index */ | ||||||
|  |     unsigned char FAR *window;  /* allocated sliding window, if needed */ | ||||||
|  |         /* bit accumulator */ | ||||||
|  |     unsigned long hold;         /* input bit accumulator */ | ||||||
|  |     unsigned bits;              /* number of bits in "in" */ | ||||||
|  |         /* for string and stored block copying */ | ||||||
|  |     unsigned length;            /* literal or length of data to copy */ | ||||||
|  |     unsigned offset;            /* distance back to copy string from */ | ||||||
|  |         /* for table and code decoding */ | ||||||
|  |     unsigned extra;             /* extra bits needed */ | ||||||
|  |         /* fixed and dynamic code tables */ | ||||||
|  |     code const FAR *lencode;    /* starting table for length/literal codes */ | ||||||
|  |     code const FAR *distcode;   /* starting table for distance codes */ | ||||||
|  |     unsigned lenbits;           /* index bits for lencode */ | ||||||
|  |     unsigned distbits;          /* index bits for distcode */ | ||||||
|  |         /* dynamic table building */ | ||||||
|  |     unsigned ncode;             /* number of code length code lengths */ | ||||||
|  |     unsigned nlen;              /* number of length code lengths */ | ||||||
|  |     unsigned ndist;             /* number of distance code lengths */ | ||||||
|  |     unsigned have;              /* number of code lengths in lens[] */ | ||||||
|  |     code FAR *next;             /* next available space in codes[] */ | ||||||
|  |     unsigned short lens[320];   /* temporary storage for code lengths */ | ||||||
|  |     unsigned short work[288];   /* work area for code table building */ | ||||||
|  |     code codes[ENOUGH];         /* space for code tables */ | ||||||
|  | }; | ||||||
							
								
								
									
										689
									
								
								inftrees.c
									
									
									
									
									
								
							
							
						
						
									
										689
									
								
								inftrees.c
									
									
									
									
									
								
							| @@ -1,450 +1,321 @@ | |||||||
| /* inftrees.c -- generate Huffman trees for efficient decoding | /* inftrees.c -- generate Huffman trees for efficient decoding | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  * Copyright (C) 1995-2003 Mark Adler | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| #include "zutil.h" | #include "zutil.h" | ||||||
| #include "inftrees.h" | #include "inftrees.h" | ||||||
|  |  | ||||||
|  | #define MAXBITS 15 | ||||||
|  |  | ||||||
| const char inflate_copyright[] = | const char inflate_copyright[] = | ||||||
|    " inflate 1.1.1 Copyright 1995-1998 Mark Adler "; |    " inflate 1.2.0.1 Copyright 1995-2003 Mark Adler "; | ||||||
| /* | /* | ||||||
|   If you use the zlib library in a product, an acknowledgment is welcome |   If you use the zlib library in a product, an acknowledgment is welcome | ||||||
|   in the documentation of your product. If for some reason you cannot |   in the documentation of your product. If for some reason you cannot | ||||||
|   include such an acknowledgment, I would appreciate that you keep this |   include such an acknowledgment, I would appreciate that you keep this | ||||||
|   copyright string in the executable of your product. |   copyright string in the executable of your product. | ||||||
|  */ |  */ | ||||||
| struct internal_state  {int dummy;}; /* for buggy compilers */ |  | ||||||
|  |  | ||||||
| /* simplify the use of the inflate_huft type with some defines */ |  | ||||||
| #define base more.Base |  | ||||||
| #define next more.Next |  | ||||||
| #define exop word.what.Exop |  | ||||||
| #define bits word.what.Bits |  | ||||||
|  |  | ||||||
|  |  | ||||||
| local int huft_build OF(( |  | ||||||
|     uIntf *,            /* code lengths in bits */ |  | ||||||
|     uInt,               /* number of codes */ |  | ||||||
|     uInt,               /* number of "simple" codes */ |  | ||||||
|     const uIntf *,      /* list of base values for non-simple codes */ |  | ||||||
|     const uIntf *,      /* list of extra bits for non-simple codes */ |  | ||||||
|     inflate_huft * FAR*,/* result: starting table */ |  | ||||||
|     uIntf *,            /* maximum lookup bits (returns actual) */ |  | ||||||
|     inflate_huft *,     /* space for trees */ |  | ||||||
|     uInt *,             /* hufts used in space */ |  | ||||||
|     uIntf * ));         /* space for values */ |  | ||||||
|  |  | ||||||
| /* Tables for deflate from PKZIP's appnote.txt. */ |  | ||||||
| local const uInt cplens[31] = { /* Copy lengths for literal codes 257..285 */ |  | ||||||
|         3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, |  | ||||||
|         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0}; |  | ||||||
|         /* see note #13 above about 258 */ |  | ||||||
| local const uInt cplext[31] = { /* Extra bits for literal codes 257..285 */ |  | ||||||
|         0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, |  | ||||||
|         3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 112, 112}; /* 112==invalid */ |  | ||||||
| local const uInt cpdist[30] = { /* Copy offsets for distance codes 0..29 */ |  | ||||||
|         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, |  | ||||||
|         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, |  | ||||||
|         8193, 12289, 16385, 24577}; |  | ||||||
| local const uInt cpdext[30] = { /* Extra bits for distance codes */ |  | ||||||
|         0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, |  | ||||||
|         7, 7, 8, 8, 9, 9, 10, 10, 11, 11, |  | ||||||
|         12, 12, 13, 13}; |  | ||||||
|  |  | ||||||
| /* | /* | ||||||
|    Huffman code decoding is performed using a multi-level table lookup. |    Build a set of tables to decode the provided canonical Huffman code. | ||||||
|    The fastest way to decode is to simply build a lookup table whose |    The code lengths are lens[0..codes-1].  The result starts at *table, | ||||||
|    size is determined by the longest code.  However, the time it takes |    whose indices are 0..2^bits-1.  work is a writable array of at least | ||||||
|    to build this table can also be a factor if the data being decoded |    lens shorts, which is used as a work area.  type is the type of code | ||||||
|    is not very long.  The most common codes are necessarily the |    to be generated, CODES, LENS, or DISTS.  On return, zero is success, | ||||||
|    shortest codes, so those codes dominate the decoding time, and hence |    -1 is an invalid code, and +1 means that ENOUGH isn't enough.  table | ||||||
|    the speed.  The idea is you can have a shorter table that decodes the |    on return points to the next available entry's address.  bits is the | ||||||
|    shorter, more probable codes, and then point to subsidiary tables for |    requested root table index bits, and on return it is the actual root | ||||||
|    the longer codes.  The time it costs to decode the longer codes is |    table index bits.  It will differ if the request is greater than the | ||||||
|    then traded against the time it takes to make longer tables. |    longest code or if it is less than the shortest code. | ||||||
|  |  | ||||||
|    This results of this trade are in the variables lbits and dbits |  | ||||||
|    below.  lbits is the number of bits the first level table for literal/ |  | ||||||
|    length codes can decode in one step, and dbits is the same thing for |  | ||||||
|    the distance codes.  Subsequent tables are also less than or equal to |  | ||||||
|    those sizes.  These values may be adjusted either when all of the |  | ||||||
|    codes are shorter than that, in which case the longest code length in |  | ||||||
|    bits is used, or when the shortest code is *longer* than the requested |  | ||||||
|    table size, in which case the length of the shortest code in bits is |  | ||||||
|    used. |  | ||||||
|  |  | ||||||
|    There are two different values for the two tables, since they code a |  | ||||||
|    different number of possibilities each.  The literal/length table |  | ||||||
|    codes 286 possible values, or in a flat code, a little over eight |  | ||||||
|    bits.  The distance table codes 30 possible values, or a little less |  | ||||||
|    than five bits, flat.  The optimum values for speed end up being |  | ||||||
|    about one bit more than those, so lbits is 8+1 and dbits is 5+1. |  | ||||||
|    The optimum values may differ though from machine to machine, and |  | ||||||
|    possibly even between compilers.  Your mileage may vary. |  | ||||||
|  */ |  */ | ||||||
|  | int inflate_table(type, lens, codes, table, bits, work) | ||||||
|  | codetype type; | ||||||
| /* If BMAX needs to be larger than 16, then h and x[] should be uLong. */ | unsigned short FAR *lens; | ||||||
| #define BMAX 15         /* maximum bit length of any code */ | unsigned codes; | ||||||
|  | code * FAR *table; | ||||||
| local int huft_build(b, n, s, d, e, t, m, hp, hn, v) | unsigned *bits; | ||||||
| uIntf *b;               /* code lengths in bits (all assumed <= BMAX) */ | unsigned short FAR *work; | ||||||
| uInt n;                 /* number of codes (assumed <= 288) */ |  | ||||||
| uInt s;                 /* number of simple-valued codes (0..s-1) */ |  | ||||||
| const uIntf *d;         /* list of base values for non-simple codes */ |  | ||||||
| const uIntf *e;         /* list of extra bits for non-simple codes */ |  | ||||||
| inflate_huft * FAR *t;  /* result: starting table */ |  | ||||||
| uIntf *m;               /* maximum lookup bits, returns actual */ |  | ||||||
| inflate_huft *hp;       /* space for trees */ |  | ||||||
| uInt *hn;               /* hufts used in space */ |  | ||||||
| uIntf *v;               /* working area: values in order of bit length */ |  | ||||||
| /* Given a list of code lengths and a maximum table size, make a set of |  | ||||||
|    tables to decode that set of codes.  Return Z_OK on success, Z_BUF_ERROR |  | ||||||
|    if the given code set is incomplete (the tables are still built in this |  | ||||||
|    case), Z_DATA_ERROR if the input is invalid (an over-subscribed set of |  | ||||||
|    lengths), or Z_MEM_ERROR if not enough memory. */ |  | ||||||
| { | { | ||||||
|  |     unsigned len;               /* a code's length in bits */ | ||||||
|  |     unsigned sym;               /* index of code symbols */ | ||||||
|  |     unsigned min, max;          /* minimum and maximum code lengths */ | ||||||
|  |     unsigned root;              /* number of index bits for root table */ | ||||||
|  |     unsigned curr;              /* number of index bits for current table */ | ||||||
|  |     unsigned drop;              /* code bits to drop for sub-table */ | ||||||
|  |     int left;                   /* number of prefix codes available */ | ||||||
|  |     unsigned used;              /* code entries in table used */ | ||||||
|  |     unsigned huff;              /* Huffman code */ | ||||||
|  |     unsigned incr;              /* for incrementing code, index */ | ||||||
|  |     unsigned fill;              /* index for replicating entries */ | ||||||
|  |     unsigned low;               /* low bits for current root entry */ | ||||||
|  |     unsigned mask;              /* mask for low root bits */ | ||||||
|  |     code this;                  /* table entry for duplication */ | ||||||
|  |     code FAR *next;             /* next available space in table */ | ||||||
|  |     const unsigned short *base; /* base value table to use */ | ||||||
|  |     const unsigned short *extra;        /* extra bits table to use */ | ||||||
|  |     int end;                    /* use base and extra for symbol > end */ | ||||||
|  |     unsigned short count[MAXBITS+1];    /* number of codes of each length */ | ||||||
|  |     unsigned short offs[MAXBITS+1];     /* offsets in table for each length */ | ||||||
|  |     static const unsigned short lbase[31] = { /* Length codes 257..285 base */ | ||||||
|  |         3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, | ||||||
|  |         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0}; | ||||||
|  |     static const unsigned short lext[31] = { /* Length codes 257..285 extra */ | ||||||
|  |         16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, | ||||||
|  |         19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 205, 64}; | ||||||
|  |     static const unsigned short dbase[32] = { /* Distance codes 0..29 base */ | ||||||
|  |         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, | ||||||
|  |         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, | ||||||
|  |         8193, 12289, 16385, 24577, 0, 0}; | ||||||
|  |     static const unsigned short dext[32] = { /* Distance codes 0..29 extra */ | ||||||
|  |         16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, | ||||||
|  |         23, 23, 24, 24, 25, 25, 26, 26, 27, 27, | ||||||
|  |         28, 28, 29, 29, 64, 64}; | ||||||
|  |  | ||||||
|   uInt a;                       /* counter for codes of length k */ |     /* | ||||||
|   uInt c[BMAX+1];               /* bit length count table */ |        Process a set of code lengths to create a canonical Huffman code.  The | ||||||
|   uInt f;                       /* i repeats in table every f entries */ |        code lengths are lens[0..codes-1].  Each length corresponds to the | ||||||
|   int g;                        /* maximum code length */ |        symbols 0..codes-1.  The Huffman code is generated by first sorting the | ||||||
|   int h;                        /* table level */ |        symbols by length from short to long, and retaining the symbol order | ||||||
|   register uInt i;              /* counter, current code */ |        for codes with equal lengths.  Then the code starts with all zero bits | ||||||
|   register uInt j;              /* counter */ |        for the first code of the shortest length, and the codes are integer | ||||||
|   register int k;               /* number of bits in current code */ |        increments for the same length, and zeros are appended as the length | ||||||
|   int l;                        /* bits per table (returned in m) */ |        increases.  For the deflate format, these bits are stored backwards | ||||||
|   uInt mask;                    /* (1 << w) - 1, to avoid cc -O bug on HP */ |        from their more natural integer increment ordering, and so when the | ||||||
|   register uIntf *p;            /* pointer into c[], b[], or v[] */ |        decoding tables are built in the large loop below, the integer codes | ||||||
|   inflate_huft *q;              /* points to current table */ |        are incremented backwards. | ||||||
|   struct inflate_huft_s r;      /* table entry for structure assignment */ |  | ||||||
|   inflate_huft *u[BMAX];        /* table stack */ |  | ||||||
|   register int w;               /* bits before this table == (l * h) */ |  | ||||||
|   uInt x[BMAX+1];               /* bit offsets, then code stack */ |  | ||||||
|   uIntf *xp;                    /* pointer into x */ |  | ||||||
|   int y;                        /* number of dummy codes added */ |  | ||||||
|   uInt z;                       /* number of entries in current table */ |  | ||||||
|  |  | ||||||
|  |        This routine assumes, but does not check, that all of the entries in | ||||||
|  |        lens[] are in the range 0..MAXBITS.  The caller must assure this. | ||||||
|  |        1..MAXBITS is interpreted as that code length.  zero means that that | ||||||
|  |        symbol does not occur in this code. | ||||||
|  |  | ||||||
|   /* Generate counts for each bit length */ |        The codes are sorted by computing a count of codes for each length, | ||||||
|   p = c; |        creating from that a table of starting indices for each length in the | ||||||
| #define C0 *p++ = 0; |        sorted table, and then entering the symbols in order in the sorted | ||||||
| #define C2 C0 C0 C0 C0 |        table.  The sorted table is work[], with that space being provided by | ||||||
| #define C4 C2 C2 C2 C2 |        the caller. | ||||||
|   C4                            /* clear c[]--assume BMAX+1 is 16 */ |  | ||||||
|   p = b;  i = n; |  | ||||||
|   do { |  | ||||||
|     c[*p++]++;                  /* assume all entries <= BMAX */ |  | ||||||
|   } while (--i); |  | ||||||
|   if (c[0] == n)                /* null input--all zero length codes */ |  | ||||||
|   { |  | ||||||
|     *t = (inflate_huft *)Z_NULL; |  | ||||||
|     *m = 0; |  | ||||||
|     return Z_OK; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|  |        The length counts are used for other purposes as well, i.e. finding | ||||||
|  |        the minimum and maximum length codes, determining if there are any | ||||||
|  |        codes at all, checking for a valid set of lengths, and looking ahead | ||||||
|  |        at length counts to determine sub-table sizes when building the | ||||||
|  |        decoding tables. | ||||||
|  |      */ | ||||||
|  |  | ||||||
|   /* Find minimum and maximum length, bound *m by those */ |     /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ | ||||||
|   l = *m; |     for (len = 0; len <= MAXBITS; len++) | ||||||
|   for (j = 1; j <= BMAX; j++) |         count[len] = 0; | ||||||
|     if (c[j]) |     for (sym = 0; sym < codes; sym++) | ||||||
|       break; |         count[lens[sym]]++; | ||||||
|   k = j;                        /* minimum code length */ |  | ||||||
|   if ((uInt)l < j) |  | ||||||
|     l = j; |  | ||||||
|   for (i = BMAX; i; i--) |  | ||||||
|     if (c[i]) |  | ||||||
|       break; |  | ||||||
|   g = i;                        /* maximum code length */ |  | ||||||
|   if ((uInt)l > i) |  | ||||||
|     l = i; |  | ||||||
|   *m = l; |  | ||||||
|  |  | ||||||
|  |     /* bound code lengths, force root to be within code lengths */ | ||||||
|  |     root = *bits; | ||||||
|  |     for (max = MAXBITS; max >= 1; max--) | ||||||
|  |         if (count[max] != 0) break; | ||||||
|  |     if (root > max) root = max; | ||||||
|  |     if (max == 0) return -1;            /* no codes! */ | ||||||
|  |     for (min = 1; min <= MAXBITS; min++) | ||||||
|  |         if (count[min] != 0) break; | ||||||
|  |     if (root < min) root = min; | ||||||
|  |  | ||||||
|   /* Adjust last length count to fill out codes, if needed */ |     /* check for an over-subscribed or incomplete set of lengths */ | ||||||
|   for (y = 1 << j; j < i; j++, y <<= 1) |     left = 1; | ||||||
|     if ((y -= c[j]) < 0) |     for (len = 1; len <= MAXBITS; len++) { | ||||||
|       return Z_DATA_ERROR; |         left <<= 1; | ||||||
|   if ((y -= c[i]) < 0) |         left -= count[len]; | ||||||
|     return Z_DATA_ERROR; |         if (left < 0) return -1;        /* over-subscribed */ | ||||||
|   c[i] += y; |     } | ||||||
|  |     if (left > 0 && (type == CODES || (codes - count[0] != 1))) | ||||||
|  |         return -1;                      /* incomplete set */ | ||||||
|  |  | ||||||
|  |     /* generate offsets into symbol table for each length for sorting */ | ||||||
|  |     offs[1] = 0; | ||||||
|  |     for (len = 1; len < MAXBITS; len++) | ||||||
|  |         offs[len + 1] = offs[len] + count[len]; | ||||||
|  |  | ||||||
|   /* Generate starting offsets into the value table for each length */ |     /* sort symbols by length, by symbol order within each length */ | ||||||
|   x[1] = j = 0; |     for (sym = 0; sym < codes; sym++) | ||||||
|   p = c + 1;  xp = x + 2; |         if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; | ||||||
|   while (--i) {                 /* note that i == g from above */ |  | ||||||
|     *xp++ = (j += *p++); |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|  |     /* | ||||||
|  |        Create and fill in decoding tables.  In this loop, the table being | ||||||
|  |        filled is at next and has curr index bits.  The code being used is huff | ||||||
|  |        with length len.  That code is converted to an index by dropping drop | ||||||
|  |        bits off of the bottom.  For codes where len is less than drop + curr, | ||||||
|  |        those top drop + curr - len bits are incremented through all values to | ||||||
|  |        fill the table with replicated entries. | ||||||
|  |  | ||||||
|   /* Make a table of values in order of bit lengths */ |        root is the number of index bits for the root table.  When len exceeds | ||||||
|   p = b;  i = 0; |        root, sub-tables are created pointed to by the root entry with an index | ||||||
|   do { |        of the low root bits of huff.  This is saved in low to check for when a | ||||||
|     if ((j = *p++) != 0) |        new sub-table should be started.  drop is zero when the root table is | ||||||
|       v[x[j]++] = i; |        being filled, and drop is root when sub-tables are being filled. | ||||||
|   } while (++i < n); |  | ||||||
|   n = x[g];                     /* set n to length of v */ |  | ||||||
|  |  | ||||||
|  |        When a new sub-table is needed, it is necessary to look ahead in the | ||||||
|  |        code lengths to determine what size sub-table is needed.  The length | ||||||
|  |        counts are used for this, and so count[] is decremented as codes are | ||||||
|  |        entered in the tables. | ||||||
|  |  | ||||||
|   /* Generate the Huffman codes and for each, make the table entries */ |        used keeps track of how many table entries have been allocated from the | ||||||
|   x[0] = i = 0;                 /* first Huffman code is zero */ |        provided *table space.  It is checked when a LENS table is being made | ||||||
|   p = v;                        /* grab values in bit order */ |        against the space in *table, ENOUGH, minus the maximum space needed by | ||||||
|   h = -1;                       /* no tables yet--level -1 */ |        the worst case distance code, MAXD.  This should never happen, but the | ||||||
|   w = -l;                       /* bits decoded == (l * h) */ |        sufficiency of ENOUGH has not been proven exhaustively, hence the check. | ||||||
|   u[0] = (inflate_huft *)Z_NULL;        /* just to keep compilers happy */ |        This assumes that when type == LENS, bits == 9. | ||||||
|   q = (inflate_huft *)Z_NULL;   /* ditto */ |  | ||||||
|   z = 0;                        /* ditto */ |  | ||||||
|  |  | ||||||
|   /* go through the bit lengths (k already is bits in shortest code) */ |        sym increments through all symbols, and the loop terminates when | ||||||
|   for (; k <= g; k++) |        all codes of length max, i.e. all codes, have been processed.  This | ||||||
|   { |        routine permits incomplete codes, so another loop after this one fills | ||||||
|     a = c[k]; |        in the rest of the decoding tables with invalid code markers. | ||||||
|     while (a--) |      */ | ||||||
|     { |  | ||||||
|       /* here i is the Huffman code of length k bits for value *p */ |  | ||||||
|       /* make tables up to required level */ |  | ||||||
|       while (k > w + l) |  | ||||||
|       { |  | ||||||
|         h++; |  | ||||||
|         w += l;                 /* previous table always l bits */ |  | ||||||
|  |  | ||||||
|         /* compute minimum size table less than or equal to l bits */ |     /* set up for code type */ | ||||||
|         z = g - w; |     switch (type) { | ||||||
|         z = z > (uInt)l ? l : z;        /* table size upper limit */ |     case CODES: | ||||||
|         if ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */ |         base = extra = work;    /* dummy value--not used */ | ||||||
|         {                       /* too few codes for k-w bit table */ |         end = 19; | ||||||
|           f -= a + 1;           /* deduct codes from patterns left */ |         break; | ||||||
|           xp = c + k; |     case LENS: | ||||||
|           if (j < z) |         base = lbase; | ||||||
|             while (++j < z)     /* try smaller tables up to z bits */ |         base -= 257; | ||||||
|             { |         extra = lext; | ||||||
|               if ((f <<= 1) <= *++xp) |         extra -= 257; | ||||||
|                 break;          /* enough codes to use up j bits */ |         end = 256; | ||||||
|               f -= *xp;         /* else deduct codes from patterns */ |         break; | ||||||
|  |     default:            /* DISTS */ | ||||||
|  |         base = dbase; | ||||||
|  |         extra = dext; | ||||||
|  |         end = -1; | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /* initialize state for loop */ | ||||||
|  |     huff = 0;                   /* starting code */ | ||||||
|  |     sym = 0;                    /* starting code symbol */ | ||||||
|  |     len = min;                  /* starting code length */ | ||||||
|  |     next = *table;              /* current table to fill in */ | ||||||
|  |     curr = root;                /* current table index bits */ | ||||||
|  |     drop = 0;                   /* current bits to drop from code for index */ | ||||||
|  |     low = (unsigned)(-1);       /* trigger new sub-table when len > root */ | ||||||
|  |     used = 1U << root;          /* use root table entries */ | ||||||
|  |     mask = used - 1;            /* mask for comparing low */ | ||||||
|  |  | ||||||
|  |     /* check available table space */ | ||||||
|  |     if (type == LENS && used >= ENOUGH - MAXD) | ||||||
|  |         return 1; | ||||||
|  |  | ||||||
|  |     /* process all codes and make table entries */ | ||||||
|  |     for (;;) { | ||||||
|  |         /* create table entry */ | ||||||
|  |         this.bits = (unsigned char)(len - drop); | ||||||
|  |         if ((int)(work[sym]) < end) { | ||||||
|  |             this.op = (unsigned char)0; | ||||||
|  |             this.val = work[sym]; | ||||||
|  |         } | ||||||
|  |         else if ((int)(work[sym]) > end) { | ||||||
|  |             this.op = (unsigned char)(extra[work[sym]]); | ||||||
|  |             this.val = base[work[sym]]; | ||||||
|  |         } | ||||||
|  |         else { | ||||||
|  |             this.op = (unsigned char)(32 + 64);         /* end of block */ | ||||||
|  |             this.val = 0; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         /* replicate for those indices with low len bits equal to huff */ | ||||||
|  |         incr = 1U << (len - drop); | ||||||
|  |         fill = 1U << curr; | ||||||
|  |         do { | ||||||
|  |             fill -= incr; | ||||||
|  |             next[(huff >> drop) + fill] = this; | ||||||
|  |         } while (fill != 0); | ||||||
|  |  | ||||||
|  |         /* backwards increment the len-bit code huff */ | ||||||
|  |         incr = 1U << (len - 1); | ||||||
|  |         while (huff & incr) | ||||||
|  |             incr >>= 1; | ||||||
|  |         if (incr != 0) { | ||||||
|  |             huff &= incr - 1; | ||||||
|  |             huff += incr; | ||||||
|  |         } | ||||||
|  |         else | ||||||
|  |             huff = 0; | ||||||
|  |  | ||||||
|  |         /* go to next symbol, update count, len */ | ||||||
|  |         sym++; | ||||||
|  |         if (--(count[len]) == 0) { | ||||||
|  |             if (len == max) break; | ||||||
|  |             len = lens[work[sym]]; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         /* create new sub-table if needed */ | ||||||
|  |         if (len > root && (huff & mask) != low) { | ||||||
|  |             /* if first time, transition to sub-tables */ | ||||||
|  |             if (drop == 0) | ||||||
|  |                 drop = root; | ||||||
|  |  | ||||||
|  |             /* increment past last table */ | ||||||
|  |             next += 1U << curr; | ||||||
|  |  | ||||||
|  |             /* determine length of next table */ | ||||||
|  |             curr = len - drop; | ||||||
|  |             left = (int)(1 << curr); | ||||||
|  |             while (curr + drop < max) { | ||||||
|  |                 left -= count[curr + drop]; | ||||||
|  |                 if (left <= 0) break; | ||||||
|  |                 curr++; | ||||||
|  |                 left <<= 1; | ||||||
|             } |             } | ||||||
|         } |  | ||||||
|         z = 1 << j;             /* table entries for j-bit table */ |  | ||||||
|  |  | ||||||
|         /* allocate new table */ |             /* check for enough space */ | ||||||
|         if (*hn + z > MANY)     /* (note: doesn't matter for fixed) */ |             used += 1U << curr; | ||||||
|           return Z_MEM_ERROR;   /* not enough memory */ |             if (type == LENS && used >= ENOUGH - MAXD) | ||||||
|         u[h] = q = hp + *hn; |                 return 1; | ||||||
|         *hn += z; |  | ||||||
|         if (t != Z_NULL)        /* first table is returned result */ |             /* point entry in root table to sub-table */ | ||||||
|         { |             low = huff & mask; | ||||||
|           *t = q; |             (*table)[low].op = (unsigned char)curr; | ||||||
|           t = Z_NULL; |             (*table)[low].bits = (unsigned char)root; | ||||||
|  |             (*table)[low].val = (unsigned short)(next - *table); | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     /* | ||||||
|  |        Fill in rest of table for incomplete codes.  This loop is similar to the | ||||||
|  |        loop above in incrementing huff for table indices.  It is assumed that | ||||||
|  |        len is equal to curr + drop, so there is no loop needed to increment | ||||||
|  |        through high index bits.  When the current sub-table is filled, the loop | ||||||
|  |        drops back to the root table to fill in any remaining entries there. | ||||||
|  |      */ | ||||||
|  |     this.op = (unsigned char)64;                /* invalid code marker */ | ||||||
|  |     this.bits = (unsigned char)(len - drop); | ||||||
|  |     this.val = (unsigned short)0; | ||||||
|  |     while (huff != 0) { | ||||||
|  |         /* when done with sub-table, drop back to root table */ | ||||||
|  |         if (drop != 0 && (huff & mask) != low) { | ||||||
|  |             drop = 0; | ||||||
|  |             len = root; | ||||||
|  |             next = *table; | ||||||
|  |             curr = root; | ||||||
|  |             this.bits = (unsigned char)len; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         /* connect to last table, if there is one */ |         /* put invalid code marker in table */ | ||||||
|         if (h) |         next[huff >> drop] = this; | ||||||
|         { |  | ||||||
|           x[h] = i;             /* save pattern for backing up */ |         /* backwards increment the len-bit code huff */ | ||||||
|           r.bits = (Byte)l;     /* bits to dump before this table */ |         incr = 1U << (len - 1); | ||||||
|           r.exop = (Byte)j;     /* bits in this table */ |         while (huff & incr) | ||||||
|           r.next = q;           /* pointer to this table */ |             incr >>= 1; | ||||||
|           j = i >> (w - l);     /* (get around Turbo C bug) */ |         if (incr != 0) { | ||||||
|           u[h-1][j] = r;        /* connect to last table */ |             huff &= incr - 1; | ||||||
|  |             huff += incr; | ||||||
|         } |         } | ||||||
|       } |         else | ||||||
|  |             huff = 0; | ||||||
|       /* set up table entry in r */ |  | ||||||
|       r.bits = (Byte)(k - w); |  | ||||||
|       if (p >= v + n) |  | ||||||
|         r.exop = 128 + 64;      /* out of values--invalid code */ |  | ||||||
|       else if (*p < s) |  | ||||||
|       { |  | ||||||
|         r.exop = (Byte)(*p < 256 ? 0 : 32 + 64);     /* 256 is end-of-block */ |  | ||||||
|         r.base = *p++;          /* simple code is just the value */ |  | ||||||
|       } |  | ||||||
|       else |  | ||||||
|       { |  | ||||||
|         r.exop = (Byte)(e[*p - s] + 16 + 64);/* non-simple--look up in lists */ |  | ||||||
|         r.base = d[*p++ - s]; |  | ||||||
|       } |  | ||||||
|  |  | ||||||
|       /* fill code-like entries with r */ |  | ||||||
|       f = 1 << (k - w); |  | ||||||
|       for (j = i >> w; j < z; j += f) |  | ||||||
|         q[j] = r; |  | ||||||
|  |  | ||||||
|       /* backwards increment the k-bit code i */ |  | ||||||
|       for (j = 1 << (k - 1); i & j; j >>= 1) |  | ||||||
|         i ^= j; |  | ||||||
|       i ^= j; |  | ||||||
|  |  | ||||||
|       /* backup over finished tables */ |  | ||||||
|       mask = (1 << w) - 1;      /* needed on HP, cc -O bug */ |  | ||||||
|       while ((i & mask) != x[h]) |  | ||||||
|       { |  | ||||||
|         h--;                    /* don't need to update q */ |  | ||||||
|         w -= l; |  | ||||||
|         mask = (1 << w) - 1; |  | ||||||
|       } |  | ||||||
|     } |     } | ||||||
|   } |  | ||||||
|  |  | ||||||
|  |     /* set return parameters */ | ||||||
|   /* Return Z_BUF_ERROR if we were given an incomplete table */ |     *table += used; | ||||||
|   return y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK; |     *bits = root; | ||||||
| } |     return 0; | ||||||
|  |  | ||||||
|  |  | ||||||
| int inflate_trees_bits(c, bb, tb, hp, z) |  | ||||||
| uIntf *c;               /* 19 code lengths */ |  | ||||||
| uIntf *bb;              /* bits tree desired/actual depth */ |  | ||||||
| inflate_huft * FAR *tb; /* bits tree result */ |  | ||||||
| inflate_huft *hp;       /* space for trees */ |  | ||||||
| z_streamp z;            /* for messages */ |  | ||||||
| { |  | ||||||
|   int r; |  | ||||||
|   uInt hn = 0;          /* hufts used in space */ |  | ||||||
|   uIntf *v;             /* work area for huft_build */ |  | ||||||
|  |  | ||||||
|   if ((v = (uIntf*)ZALLOC(z, 19, sizeof(uInt))) == Z_NULL) |  | ||||||
|     return Z_MEM_ERROR; |  | ||||||
|   r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL, |  | ||||||
|                  tb, bb, hp, &hn, v); |  | ||||||
|   if (r == Z_DATA_ERROR) |  | ||||||
|     z->msg = (char*)"oversubscribed dynamic bit lengths tree"; |  | ||||||
|   else if (r == Z_BUF_ERROR || *bb == 0) |  | ||||||
|   { |  | ||||||
|     z->msg = (char*)"incomplete dynamic bit lengths tree"; |  | ||||||
|     r = Z_DATA_ERROR; |  | ||||||
|   } |  | ||||||
|   ZFREE(z, v); |  | ||||||
|   return r; |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| int inflate_trees_dynamic(nl, nd, c, bl, bd, tl, td, hp, z) |  | ||||||
| uInt nl;                /* number of literal/length codes */ |  | ||||||
| uInt nd;                /* number of distance codes */ |  | ||||||
| uIntf *c;               /* that many (total) code lengths */ |  | ||||||
| uIntf *bl;              /* literal desired/actual bit depth */ |  | ||||||
| uIntf *bd;              /* distance desired/actual bit depth */ |  | ||||||
| inflate_huft * FAR *tl; /* literal/length tree result */ |  | ||||||
| inflate_huft * FAR *td; /* distance tree result */ |  | ||||||
| inflate_huft *hp;       /* space for trees */ |  | ||||||
| z_streamp z;            /* for messages */ |  | ||||||
| { |  | ||||||
|   int r; |  | ||||||
|   uInt hn = 0;          /* hufts used in space */ |  | ||||||
|   uIntf *v;             /* work area for huft_build */ |  | ||||||
|  |  | ||||||
|   /* allocate work area */ |  | ||||||
|   if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL) |  | ||||||
|     return Z_MEM_ERROR; |  | ||||||
|  |  | ||||||
|   /* build literal/length tree */ |  | ||||||
|   r = huft_build(c, nl, 257, cplens, cplext, tl, bl, hp, &hn, v); |  | ||||||
|   if (r != Z_OK || *bl == 0) |  | ||||||
|   { |  | ||||||
|     if (r == Z_DATA_ERROR) |  | ||||||
|       z->msg = (char*)"oversubscribed literal/length tree"; |  | ||||||
|     else if (r != Z_MEM_ERROR) |  | ||||||
|     { |  | ||||||
|       z->msg = (char*)"incomplete literal/length tree"; |  | ||||||
|       r = Z_DATA_ERROR; |  | ||||||
|     } |  | ||||||
|     ZFREE(z, v); |  | ||||||
|     return r; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   /* build distance tree */ |  | ||||||
|   r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, hp, &hn, v); |  | ||||||
|   if (r != Z_OK || (*bd == 0 && nl > 257)) |  | ||||||
|   { |  | ||||||
|     if (r == Z_DATA_ERROR) |  | ||||||
|       z->msg = (char*)"oversubscribed distance tree"; |  | ||||||
|     else if (r == Z_BUF_ERROR) { |  | ||||||
| #ifdef PKZIP_BUG_WORKAROUND |  | ||||||
|       r = Z_OK; |  | ||||||
|     } |  | ||||||
| #else |  | ||||||
|       z->msg = (char*)"incomplete distance tree"; |  | ||||||
|       r = Z_DATA_ERROR; |  | ||||||
|     } |  | ||||||
|     else if (r != Z_MEM_ERROR) |  | ||||||
|     { |  | ||||||
|       z->msg = (char*)"empty distance tree with lengths"; |  | ||||||
|       r = Z_DATA_ERROR; |  | ||||||
|     } |  | ||||||
|     ZFREE(z, v); |  | ||||||
|     return r; |  | ||||||
| #endif |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   /* done */ |  | ||||||
|   ZFREE(z, v); |  | ||||||
|   return Z_OK; |  | ||||||
| } |  | ||||||
|  |  | ||||||
|  |  | ||||||
| /* build fixed tables only once--keep them here */ |  | ||||||
| local int fixed_built = 0; |  | ||||||
| #define FIXEDH 424      /* number of hufts used by fixed tables */ |  | ||||||
| local inflate_huft fixed_mem[FIXEDH]; |  | ||||||
| local uInt fixed_bl; |  | ||||||
| local uInt fixed_bd; |  | ||||||
| local inflate_huft *fixed_tl; |  | ||||||
| local inflate_huft *fixed_td; |  | ||||||
|  |  | ||||||
|  |  | ||||||
| int inflate_trees_fixed(bl, bd, tl, td, z) |  | ||||||
| uIntf *bl;               /* literal desired/actual bit depth */ |  | ||||||
| uIntf *bd;               /* distance desired/actual bit depth */ |  | ||||||
| inflate_huft * FAR *tl;  /* literal/length tree result */ |  | ||||||
| inflate_huft * FAR *td;  /* distance tree result */ |  | ||||||
| z_streamp z;             /* for memory allocation */ |  | ||||||
| { |  | ||||||
|   /* build fixed tables if not already (multiple overlapped executions ok) */ |  | ||||||
|   if (!fixed_built) |  | ||||||
|   { |  | ||||||
|     int k;              /* temporary variable */ |  | ||||||
|     uInt f = 0;         /* number of hufts used in fixed_mem */ |  | ||||||
|     uIntf *c;           /* length list for huft_build */ |  | ||||||
|     uIntf *v;           /* work area for huft_build */ |  | ||||||
|  |  | ||||||
|     /* allocate memory */ |  | ||||||
|     if ((c = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL) |  | ||||||
|       return Z_MEM_ERROR; |  | ||||||
|     if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL) |  | ||||||
|     { |  | ||||||
|       ZFREE(z, c); |  | ||||||
|       return Z_MEM_ERROR; |  | ||||||
|     } |  | ||||||
|  |  | ||||||
|     /* literal table */ |  | ||||||
|     for (k = 0; k < 144; k++) |  | ||||||
|       c[k] = 8; |  | ||||||
|     for (; k < 256; k++) |  | ||||||
|       c[k] = 9; |  | ||||||
|     for (; k < 280; k++) |  | ||||||
|       c[k] = 7; |  | ||||||
|     for (; k < 288; k++) |  | ||||||
|       c[k] = 8; |  | ||||||
|     fixed_bl = 7; |  | ||||||
|     huft_build(c, 288, 257, cplens, cplext, &fixed_tl, &fixed_bl, |  | ||||||
|                fixed_mem, &f, v); |  | ||||||
|  |  | ||||||
|     /* distance table */ |  | ||||||
|     for (k = 0; k < 30; k++) |  | ||||||
|       c[k] = 5; |  | ||||||
|     fixed_bd = 5; |  | ||||||
|     huft_build(c, 30, 0, cpdist, cpdext, &fixed_td, &fixed_bd, |  | ||||||
|                fixed_mem, &f, v); |  | ||||||
|  |  | ||||||
|     /* done */ |  | ||||||
|     ZFREE(z, v); |  | ||||||
|     ZFREE(z, c); |  | ||||||
|     fixed_built = 1; |  | ||||||
|   } |  | ||||||
|   *bl = fixed_bl; |  | ||||||
|   *bd = fixed_bd; |  | ||||||
|   *tl = fixed_tl; |  | ||||||
|   *td = fixed_td; |  | ||||||
|   return Z_OK; |  | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										87
									
								
								inftrees.h
									
									
									
									
									
								
							
							
						
						
									
										87
									
								
								inftrees.h
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | |||||||
| /* inftrees.h -- header to use inftrees.c | /* inftrees.h -- header to use inftrees.c | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  * Copyright (C) 1995-2003 Mark Adler | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h |  * For conditions of distribution and use, see copyright notice in zlib.h | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| @@ -8,53 +8,48 @@ | |||||||
|    subject to change. Applications should only use zlib.h. |    subject to change. Applications should only use zlib.h. | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| /* Huffman code lookup table entry--this entry is four bytes for machines | /* Structure for decoding tables.  Each entry provides either the | ||||||
|    that have 16-bit pointers (e.g. PC's in the small or medium model). */ |    information needed to do the operation requested by the code that | ||||||
|  |    indexed that table entry, or it provides a pointer to another | ||||||
|  |    table that indexes more bits of the code.  op indicates whether | ||||||
|  |    the entry is a pointer to another table, a literal, a length or | ||||||
|  |    distance, an end-of-block, or an invalid code.  For a table | ||||||
|  |    pointer, the low four bits of op is the number of index bits of | ||||||
|  |    that table.  For a length or distance, the low four bits of op | ||||||
|  |    is the number of extra bits to get after the code.  bits is | ||||||
|  |    the number of bits in this code or part of the code to drop off | ||||||
|  |    of the bit buffer.  val is the actual byte to output in the case | ||||||
|  |    of a literal, the base length or distance, or the offset from | ||||||
|  |    the current table to the next table.  Each entry is four bytes. */ | ||||||
|  | typedef struct { | ||||||
|  |     unsigned char op;           /* operation, extra bits, table bits */ | ||||||
|  |     unsigned char bits;         /* bits in this part of the code */ | ||||||
|  |     unsigned short val;         /* offset in table or code value */ | ||||||
|  | } code; | ||||||
|  |  | ||||||
| typedef struct inflate_huft_s FAR inflate_huft; | /* op values as set by inflate_table(): | ||||||
|  |     00000000 - literal | ||||||
| struct inflate_huft_s { |     0000tttt - table link, tttt != 0 is the number of table index bits | ||||||
|   union { |     0001eeee - length or distance, eeee is the number of extra bits | ||||||
|     struct { |     01100000 - end of block | ||||||
|       Byte Exop;        /* number of extra bits or operation */ |     01000000 - invalid code | ||||||
|       Byte Bits;        /* number of bits in this code or subcode */ |  */ | ||||||
|     } what; |  | ||||||
|     Bytef *pad;         /* pad structure to a power of 2 (4 bytes for */ |  | ||||||
|   } word;               /*  16-bit, 8 bytes for 32-bit machines) */ |  | ||||||
|   union { |  | ||||||
|     uInt Base;          /* literal, length base, or distance base */ |  | ||||||
|     inflate_huft *Next; /* pointer to next level of table */ |  | ||||||
|   } more; |  | ||||||
| }; |  | ||||||
|  |  | ||||||
| /* Maximum size of dynamic tree.  The maximum found in a long but non- | /* Maximum size of dynamic tree.  The maximum found in a long but non- | ||||||
|    exhaustive search was 1041 huft structures (875 for length/literals |    exhaustive search was 1004 code structures (850 for length/literals | ||||||
|    and 166 for distances, the latter actually the result of an |    and 154 for distances, the latter actually the result of an | ||||||
|    exhaustive search).  The actual maximum is not known, but the |    exhaustive search).  The true maximum is not known, but the value | ||||||
|    value below is more than safe. */ |    below is more than safe. */ | ||||||
| #define MANY 1440 | #define ENOUGH 1440 | ||||||
|  | #define MAXD 154 | ||||||
|  |  | ||||||
| extern int inflate_trees_bits OF(( | /* Type of code to build for inftable() */ | ||||||
|     uIntf *,                    /* 19 code lengths */ | typedef enum { | ||||||
|     uIntf *,                    /* bits tree desired/actual depth */ |     CODES, | ||||||
|     inflate_huft * FAR *,       /* bits tree result */ |     LENS, | ||||||
|     inflate_huft *,             /* space for trees */ |     DISTS | ||||||
|     z_streamp));                /* for messages */ | } codetype; | ||||||
|  |  | ||||||
| extern int inflate_trees_dynamic OF(( | extern int inflate_table OF((codetype type, unsigned short FAR *lens, | ||||||
|     uInt,                       /* number of literal/length codes */ |                              unsigned codes, code * FAR *table, unsigned *bits, | ||||||
|     uInt,                       /* number of distance codes */ |                              unsigned short FAR *work)); | ||||||
|     uIntf *,                    /* that many (total) code lengths */ |  | ||||||
|     uIntf *,                    /* literal desired/actual bit depth */ |  | ||||||
|     uIntf *,                    /* distance desired/actual bit depth */ |  | ||||||
|     inflate_huft * FAR *,       /* literal/length tree result */ |  | ||||||
|     inflate_huft * FAR *,       /* distance tree result */ |  | ||||||
|     inflate_huft *,             /* space for trees */ |  | ||||||
|     z_streamp));                /* for messages */ |  | ||||||
|  |  | ||||||
| extern int inflate_trees_fixed OF(( |  | ||||||
|     uIntf *,                    /* literal desired/actual bit depth */ |  | ||||||
|     uIntf *,                    /* distance desired/actual bit depth */ |  | ||||||
|     inflate_huft * FAR *,       /* literal/length tree result */ |  | ||||||
|     inflate_huft * FAR *,       /* distance tree result */ |  | ||||||
|     z_streamp));                /* for memory allocation */ |  | ||||||
|   | |||||||
							
								
								
									
										87
									
								
								infutil.c
									
									
									
									
									
								
							
							
						
						
									
										87
									
								
								infutil.c
									
									
									
									
									
								
							| @@ -1,87 +0,0 @@ | |||||||
| /* inflate_util.c -- data and routines common to blocks and codes |  | ||||||
|  * Copyright (C) 1995-1998 Mark Adler |  | ||||||
|  * For conditions of distribution and use, see copyright notice in zlib.h  |  | ||||||
|  */ |  | ||||||
|  |  | ||||||
| #include "zutil.h" |  | ||||||
| #include "infblock.h" |  | ||||||
| #include "inftrees.h" |  | ||||||
| #include "infcodes.h" |  | ||||||
| #include "infutil.h" |  | ||||||
|  |  | ||||||
| struct inflate_codes_state {int dummy;}; /* for buggy compilers */ |  | ||||||
|  |  | ||||||
| /* And'ing with mask[n] masks the lower n bits */ |  | ||||||
| uInt inflate_mask[17] = { |  | ||||||
|     0x0000, |  | ||||||
|     0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff, |  | ||||||
|     0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff |  | ||||||
| }; |  | ||||||
|  |  | ||||||
|  |  | ||||||
| /* copy as much as possible from the sliding window to the output area */ |  | ||||||
| int inflate_flush(s, z, r) |  | ||||||
| inflate_blocks_statef *s; |  | ||||||
| z_streamp z; |  | ||||||
| int r; |  | ||||||
| { |  | ||||||
|   uInt n; |  | ||||||
|   Bytef *p; |  | ||||||
|   Bytef *q; |  | ||||||
|  |  | ||||||
|   /* local copies of source and destination pointers */ |  | ||||||
|   p = z->next_out; |  | ||||||
|   q = s->read; |  | ||||||
|  |  | ||||||
|   /* compute number of bytes to copy as far as end of window */ |  | ||||||
|   n = (uInt)((q <= s->write ? s->write : s->end) - q); |  | ||||||
|   if (n > z->avail_out) n = z->avail_out; |  | ||||||
|   if (n && r == Z_BUF_ERROR) r = Z_OK; |  | ||||||
|  |  | ||||||
|   /* update counters */ |  | ||||||
|   z->avail_out -= n; |  | ||||||
|   z->total_out += n; |  | ||||||
|  |  | ||||||
|   /* update check information */ |  | ||||||
|   if (s->checkfn != Z_NULL) |  | ||||||
|     z->adler = s->check = (*s->checkfn)(s->check, q, n); |  | ||||||
|  |  | ||||||
|   /* copy as far as end of window */ |  | ||||||
|   zmemcpy(p, q, n); |  | ||||||
|   p += n; |  | ||||||
|   q += n; |  | ||||||
|  |  | ||||||
|   /* see if more to copy at beginning of window */ |  | ||||||
|   if (q == s->end) |  | ||||||
|   { |  | ||||||
|     /* wrap pointers */ |  | ||||||
|     q = s->window; |  | ||||||
|     if (s->write == s->end) |  | ||||||
|       s->write = s->window; |  | ||||||
|  |  | ||||||
|     /* compute bytes to copy */ |  | ||||||
|     n = (uInt)(s->write - q); |  | ||||||
|     if (n > z->avail_out) n = z->avail_out; |  | ||||||
|     if (n && r == Z_BUF_ERROR) r = Z_OK; |  | ||||||
|  |  | ||||||
|     /* update counters */ |  | ||||||
|     z->avail_out -= n; |  | ||||||
|     z->total_out += n; |  | ||||||
|  |  | ||||||
|     /* update check information */ |  | ||||||
|     if (s->checkfn != Z_NULL) |  | ||||||
|       z->adler = s->check = (*s->checkfn)(s->check, q, n); |  | ||||||
|  |  | ||||||
|     /* copy */ |  | ||||||
|     zmemcpy(p, q, n); |  | ||||||
|     p += n; |  | ||||||
|     q += n; |  | ||||||
|   } |  | ||||||
|  |  | ||||||
|   /* update pointers */ |  | ||||||
|   z->next_out = p; |  | ||||||
|   s->read = q; |  | ||||||
|  |  | ||||||
|   /* done */ |  | ||||||
|   return r; |  | ||||||
| } |  | ||||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user