Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7c2a874e50 | ||
|
|
a383133c4e | ||
|
|
14763ac7c6 | ||
|
|
c34c1fcbb1 | ||
|
|
02b6cf579f | ||
|
|
965fe72aed | ||
|
|
b8c9ecb076 | ||
|
|
6759211ad8 |
201
ChangeLog
201
ChangeLog
@@ -1,5 +1,203 @@
|
|||||||
|
|
||||||
ChangeLog file for zlib
|
ChangeLog file for zlib
|
||||||
|
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)
|
||||||
|
- fix macros _tr_tally_* in deflate.h for debug mode (Glenn Randers-Pehrson)
|
||||||
|
- remove block truncation heuristic which had very marginal effect for zlib
|
||||||
|
(smaller lit_bufsize than in gzip 1.2.4) and degraded a little the
|
||||||
|
compression ratio on some files. This also allows inlining _tr_tally for
|
||||||
|
matches in deflate_slow.
|
||||||
|
- added msdos/Makefile.w32 for WIN32 Microsoft Visual C++ (Bob Frazier)
|
||||||
|
|
||||||
|
Changes in 1.1.0 (24 Feb 98)
|
||||||
|
- do not return STREAM_END prematurely in inflate (John Bowler)
|
||||||
|
- revert to the zlib 1.0.8 inflate to avoid the gcc 2.8.0 bug (Jeremy Buhler)
|
||||||
|
- compile with -DFASTEST to get compression code optimized for speed only
|
||||||
|
- in minigzip, try mmap'ing the input file first (Miguel Albrecht)
|
||||||
|
- increase size of I/O buffers in minigzip.c and gzio.c (not a big gain
|
||||||
|
on Sun but significant on HP)
|
||||||
|
|
||||||
|
- add a pointer to experimental unzip library in README (Gilles Vollant)
|
||||||
|
- initialize variable gcc in configure (Chris Herborth)
|
||||||
|
|
||||||
|
Changes in 1.0.9 (17 Feb 1998)
|
||||||
|
- added gzputs and gzgets functions
|
||||||
|
- do not clear eof flag in gzseek (Mark Diekhans)
|
||||||
|
- fix gzseek for files in transparent mode (Mark Diekhans)
|
||||||
|
- do not assume that vsprintf returns the number of bytes written (Jens Krinke)
|
||||||
|
- replace EXPORT with ZEXPORT to avoid conflict with other programs
|
||||||
|
- added compress2 in zconf.h, zlib.def, zlib.dnt
|
||||||
|
- new asm code from Gilles Vollant in contrib/asm386
|
||||||
|
- simplify the inflate code (Mark):
|
||||||
|
. Replace ZALLOC's in huft_build() with single ZALLOC in inflate_blocks_new()
|
||||||
|
. ZALLOC the length list in inflate_trees_fixed() instead of using stack
|
||||||
|
. ZALLOC the value area for huft_build() instead of using stack
|
||||||
|
. Simplify Z_FINISH check in inflate()
|
||||||
|
|
||||||
|
- Avoid gcc 2.8.0 comparison bug a little differently than zlib 1.0.8
|
||||||
|
- in inftrees.c, avoid cc -O bug on HP (Farshid Elahi)
|
||||||
|
- in zconf.h move the ZLIB_DLL stuff earlier to avoid problems with
|
||||||
|
the declaration of FAR (Gilles VOllant)
|
||||||
|
- install libz.so* with mode 755 (executable) instead of 644 (Marc Lehmann)
|
||||||
|
- read_buf buf parameter of type Bytef* instead of charf*
|
||||||
|
- zmemcpy parameters are of type Bytef*, not charf* (Joseph Strout)
|
||||||
|
- do not redeclare unlink in minigzip.c for WIN32 (John Bowler)
|
||||||
|
- fix check for presence of directories in "make install" (Ian Willis)
|
||||||
|
|
||||||
|
Changes in 1.0.8 (27 Jan 1998)
|
||||||
|
- fixed offsets in contrib/asm386/gvmat32.asm (Gilles Vollant)
|
||||||
|
- fix gzgetc and gzputc for big endian systems (Markus Oberhumer)
|
||||||
|
- added compress2() to allow setting the compression level
|
||||||
|
- include sys/types.h to get off_t on some systems (Marc Lehmann & QingLong)
|
||||||
|
- use constant arrays for the static trees in trees.c instead of computing
|
||||||
|
them at run time (thanks to Ken Raeburn for this suggestion). To create
|
||||||
|
trees.h, compile with GEN_TREES_H and run "make test".
|
||||||
|
- check return code of example in "make test" and display result
|
||||||
|
- pass minigzip command line options to file_compress
|
||||||
|
- simplifying code of inflateSync to avoid gcc 2.8 bug
|
||||||
|
|
||||||
|
- support CC="gcc -Wall" in configure -s (QingLong)
|
||||||
|
- avoid a flush caused by ftell in gzopen for write mode (Ken Raeburn)
|
||||||
|
- fix test for shared library support to avoid compiler warnings
|
||||||
|
- zlib.lib -> zlib.dll in msdos/zlib.rc (Gilles Vollant)
|
||||||
|
- check for TARGET_OS_MAC in addition to MACOS (Brad Pettit)
|
||||||
|
- do not use fdopen for Metrowerks on Mac (Brad Pettit))
|
||||||
|
- add checks for gzputc and gzputc in example.c
|
||||||
|
- avoid warnings in gzio.c and deflate.c (Andreas Kleinert)
|
||||||
|
- use const for the CRC table (Ken Raeburn)
|
||||||
|
- fixed "make uninstall" for shared libraries
|
||||||
|
- use Tracev instead of Trace in infblock.c
|
||||||
|
- in example.c use correct compressed length for test_sync
|
||||||
|
- suppress +vnocompatwarnings in configure for HPUX (not always supported)
|
||||||
|
|
||||||
Changes in 1.0.7 (20 Jan 1998)
|
Changes in 1.0.7 (20 Jan 1998)
|
||||||
- fix gzseek which was broken in write mode
|
- fix gzseek which was broken in write mode
|
||||||
@@ -69,7 +267,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)
|
||||||
@@ -81,7 +279,6 @@ Changes in 1.0.6 (19 Jan 1998)
|
|||||||
- in Makefile.dj2, use copy and del instead of install and rm (Frank Donahoe)
|
- in Makefile.dj2, use copy and del instead of install and rm (Frank Donahoe)
|
||||||
- Avoid expanded $Id$. Use "rcs -kb" or "cvs admin -kb" to avoid Id expansion.
|
- Avoid expanded $Id$. Use "rcs -kb" or "cvs admin -kb" to avoid Id expansion.
|
||||||
- check for unistd.h in configure (for off_t)
|
- check for unistd.h in configure (for off_t)
|
||||||
- use Tracev instead of Trace in infblock.c
|
|
||||||
- remove useless check parameter in inflate_blocks_free
|
- remove useless check parameter in inflate_blocks_free
|
||||||
- avoid useless assignment of s->check to itself in inflate_blocks_new
|
- avoid useless assignment of s->check to itself in inflate_blocks_new
|
||||||
- do not flush twice in gzclose (thanks to Ken Raeburn)
|
- do not flush twice in gzclose (thanks to Ken Raeburn)
|
||||||
|
|||||||
263
FAQ
Normal file
263
FAQ
Normal file
@@ -0,0 +1,263 @@
|
|||||||
|
|
||||||
|
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. Why does "make test" fail on Mac OS X?
|
||||||
|
|
||||||
|
Mac OS X already includes zlib as a shared library, and so -lz links the
|
||||||
|
shared library instead of the one that the "make" compiled. The two are
|
||||||
|
incompatible due to different compile-time options. Simply change the -lz
|
||||||
|
in the Makefile to libz.a, and it will use the compiled library instead
|
||||||
|
of the shared one and the "make test" will succeed.
|
||||||
|
|
||||||
|
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, but have different headers
|
||||||
|
and trailers.
|
||||||
|
|
||||||
|
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. Of course,
|
||||||
|
you should only operate on any given zlib or gzip stream from a single
|
||||||
|
thread. 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.
|
||||||
|
|
||||||
|
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. Will zlib work on a big-endian or little-endian architecture, and can I
|
||||||
|
exchange compressed data between them?
|
||||||
|
|
||||||
|
Yes and yes.
|
||||||
|
|
||||||
|
23. 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
|
||||||
|
|
||||||
|
24. 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.
|
||||||
|
|
||||||
|
25. 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.
|
||||||
|
|
||||||
|
26. 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.
|
||||||
|
|
||||||
|
27. 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.
|
||||||
|
|
||||||
|
28. 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
|
||||||
|
|
||||||
|
29. 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 user can easily set up their 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() may be limited to 4 GB
|
||||||
|
depending on how zlib is compiled.
|
||||||
|
|
||||||
|
30. 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(), then there is
|
||||||
|
no vulnerability.
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
31. 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/
|
||||||
|
|
||||||
|
32. I get this or that compiler or source-code scanner warning. 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.
|
||||||
|
|
||||||
|
33. 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.
|
||||||
|
|
||||||
|
34. 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.
|
||||||
|
|
||||||
|
35. 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.
|
||||||
|
|
||||||
|
36. 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.
|
||||||
|
|
||||||
|
37. 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.
|
||||||
50
INDEX
50
INDEX
@@ -1,29 +1,16 @@
|
|||||||
ChangeLog history of changes
|
ChangeLog history of changes
|
||||||
|
FAQ Frequently Asked Questions about zlib
|
||||||
INDEX this file
|
INDEX this file
|
||||||
Make_vms.com script for Vax/VMS
|
|
||||||
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
|
|
||||||
Makefile.riscos makefile for RISCOS
|
|
||||||
Makefile.sas makefile for Amiga SAS/C
|
|
||||||
README guess what
|
README guess what
|
||||||
algorithm.txt description of the (de)compression algorithm
|
algorithm.txt description of the (de)compression algorithm
|
||||||
configure configure script for Unix
|
configure configure script for Unix
|
||||||
descrip.mms makefile for Vax/VMS
|
zconf.in.h template for zconf.h (used by configure)
|
||||||
zlib.3 mini man page for zlib (volunteers to write full
|
|
||||||
man pages from zlib.h welcome. write to jloup@gzip.org)
|
|
||||||
|
|
||||||
msdos/Makefile.b32 makefile for Borland C++ 32-bit
|
|
||||||
msdos/Makefile.bor makefile for Borland C/C++ 16-bit
|
|
||||||
msdos/Makefile.dj2 makefile for DJGPP 2.x
|
|
||||||
msdos/Makefile.tc makefile for Turbo C
|
|
||||||
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
|
|
||||||
nt/zlib.dnt definition file for Windows NT DLL
|
|
||||||
|
|
||||||
|
aix/ instructions for building an AIX shared library
|
||||||
|
old/ makefiles for various architectures and zlib documentation
|
||||||
|
that has not yet been updated for zlib 1.2.x
|
||||||
|
|
||||||
zlib public header files (must be kept):
|
zlib public header files (must be kept):
|
||||||
zconf.h
|
zconf.h
|
||||||
@@ -33,21 +20,20 @@ zlib.h
|
|||||||
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
|
||||||
@@ -57,18 +43,4 @@ 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.
|
|
||||||
|
|||||||
108
Makefile
108
Makefile
@@ -1,10 +1,11 @@
|
|||||||
# 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:
|
||||||
# ./configure; make test
|
# ./configure; make test
|
||||||
# The call of configure is optional if you don't have special requirements
|
# The call of configure is optional if you don't have special requirements
|
||||||
|
# If you wish to build zlib as a shared library, use: ./configure -s
|
||||||
|
|
||||||
# To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
|
# To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
|
||||||
# make install
|
# make install
|
||||||
@@ -19,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.0.7
|
VER=1.2.0
|
||||||
LIBS=libz.a
|
LIBS=libz.a
|
||||||
SHAREDLIB=libz.so
|
SHAREDLIB=libz.so
|
||||||
|
|
||||||
@@ -31,33 +33,54 @@ 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/*.mak 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
|
||||||
|
|
||||||
test: all
|
test: all
|
||||||
@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
|
@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
|
||||||
./example ; \
|
echo hello world | ./minigzip | ./minigzip -d || \
|
||||||
echo hello world | ./minigzip | ./minigzip -d
|
echo ' *** minigzip test FAILED ***' ; \
|
||||||
|
if ./example; then \
|
||||||
|
echo ' *** zlib test OK ***'; \
|
||||||
|
else \
|
||||||
|
echo ' *** zlib test FAILED ***'; \
|
||||||
|
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
|
||||||
@@ -71,14 +94,15 @@ minigzip: minigzip.o $(LIBS)
|
|||||||
$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
|
$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
|
||||||
|
|
||||||
install: $(LIBS)
|
install: $(LIBS)
|
||||||
-@if [ ! $(prefix)/include ]; then mkdir $(prefix)/include; fi
|
-@if [ ! -d $(exec_prefix) ]; then mkdir $(exec_prefix); fi
|
||||||
-@if [ ! $(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 644 $(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; \
|
||||||
@@ -88,26 +112,36 @@ install: $(LIBS)
|
|||||||
# ldconfig is for Linux
|
# ldconfig is for Linux
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
cd $(exec_prefix)/lib; rm -f $(LIBS); \
|
cd $(includedir); \
|
||||||
if test -f $(SHAREDLIB); then \
|
v=$(VER); \
|
||||||
v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p'<$(prefix)/include/zlib.h`;\
|
if test -f zlib.h; then \
|
||||||
rm -f $(SHAREDLIB).$$v $(SHAREDLIB); \
|
v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`; \
|
||||||
|
rm -f zlib.h zconf.h; \
|
||||||
|
fi; \
|
||||||
|
cd $(libdir); rm -f libz.a; \
|
||||||
|
if test -f $(SHAREDLIB).$$v; then \
|
||||||
|
rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; \
|
||||||
fi
|
fi
|
||||||
cdz $(prefix)/include; rm -f zlib.h zconf.h
|
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
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 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 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; \
|
||||||
@@ -128,19 +162,15 @@ 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.o: deflate.h zutil.h zlib.h zconf.h trees.h
|
||||||
uncompr.o: zlib.h zconf.h
|
uncompr.o: zlib.h zconf.h
|
||||||
zutil.o: zutil.h zlib.h zconf.h
|
zutil.o: zutil.h zlib.h zconf.h
|
||||||
|
|||||||
108
Makefile.in
108
Makefile.in
@@ -1,10 +1,11 @@
|
|||||||
# 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:
|
||||||
# ./configure; make test
|
# ./configure; make test
|
||||||
# The call of configure is optional if you don't have special requirements
|
# The call of configure is optional if you don't have special requirements
|
||||||
|
# If you wish to build zlib as a shared library, use: ./configure -s
|
||||||
|
|
||||||
# To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
|
# To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
|
||||||
# make install
|
# make install
|
||||||
@@ -19,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.0.7
|
VER=1.2.0
|
||||||
LIBS=libz.a
|
LIBS=libz.a
|
||||||
SHAREDLIB=libz.so
|
SHAREDLIB=libz.so
|
||||||
|
|
||||||
@@ -31,33 +33,54 @@ 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/*.mak 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
|
||||||
|
|
||||||
test: all
|
test: all
|
||||||
@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
|
@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
|
||||||
./example ; \
|
echo hello world | ./minigzip | ./minigzip -d || \
|
||||||
echo hello world | ./minigzip | ./minigzip -d
|
echo ' *** minigzip test FAILED ***' ; \
|
||||||
|
if ./example; then \
|
||||||
|
echo ' *** zlib test OK ***'; \
|
||||||
|
else \
|
||||||
|
echo ' *** zlib test FAILED ***'; \
|
||||||
|
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
|
||||||
@@ -71,14 +94,15 @@ minigzip: minigzip.o $(LIBS)
|
|||||||
$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
|
$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
|
||||||
|
|
||||||
install: $(LIBS)
|
install: $(LIBS)
|
||||||
-@if [ ! $(prefix)/include ]; then mkdir $(prefix)/include; fi
|
-@if [ ! -d $(exec_prefix) ]; then mkdir $(exec_prefix); fi
|
||||||
-@if [ ! $(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 644 $(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; \
|
||||||
@@ -88,26 +112,36 @@ install: $(LIBS)
|
|||||||
# ldconfig is for Linux
|
# ldconfig is for Linux
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
cd $(exec_prefix)/lib; rm -f $(LIBS); \
|
cd $(includedir); \
|
||||||
if test -f $(SHAREDLIB); then \
|
v=$(VER); \
|
||||||
v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p'<$(prefix)/include/zlib.h`;\
|
if test -f zlib.h; then \
|
||||||
rm -f $(SHAREDLIB).$$v $(SHAREDLIB); \
|
v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`; \
|
||||||
|
rm -f zlib.h zconf.h; \
|
||||||
|
fi; \
|
||||||
|
cd $(libdir); rm -f libz.a; \
|
||||||
|
if test -f $(SHAREDLIB).$$v; then \
|
||||||
|
rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; \
|
||||||
fi
|
fi
|
||||||
cdz $(prefix)/include; rm -f zlib.h zconf.h
|
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
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 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 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; \
|
||||||
@@ -128,19 +162,15 @@ 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.o: deflate.h zutil.h zlib.h zconf.h trees.h
|
||||||
uncompr.o: zlib.h zconf.h
|
uncompr.o: zlib.h zconf.h
|
||||||
zutil.o: zutil.h zlib.h zconf.h
|
zutil.o: zutil.h 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
|
|
||||||
96
README
96
README
@@ -1,55 +1,61 @@
|
|||||||
zlib 1.0.7 is a general purpose data compression library. All the code
|
zlib 1.2.0 is a general purpose data compression library. All the code
|
||||||
is reentrant (thread safe). The data format used by the zlib 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
|
is described by RFCs (Request for Comments) 1950 to 1952 in the files
|
||||||
ftp://ds.internic.net/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate
|
http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate
|
||||||
format) and rfc1952.txt (gzip format). These documents are also available in
|
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
|
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
|
All functions of the compression library are documented in the file zlib.h
|
||||||
zlib.h. A usage example of the library is given in the file example.c
|
(volunteer to write man pages welcome, contact jloup@gzip.org). A usage
|
||||||
which also tests that the library is working correctly. Another
|
example of the library is given in the file example.c which also tests that
|
||||||
example is given in the file minigzip.c. The compression library itself
|
the library is working correctly. Another example is given in the file
|
||||||
is composed of all source files except example.c and minigzip.c.
|
minigzip.c. The compression library itself is composed of all source files
|
||||||
|
except example.c and 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 the top of Makefile. In short "make test; make install"
|
given at the top of Makefile. In short "make test; make install"
|
||||||
should work for most machines. For MSDOS, use one of the special
|
should work for most machines. For Unix: "./configure; make test; make install"
|
||||||
makefiles such as Makefile.msc; for VMS, use Make_vms.com or descrip.mms.
|
For MSDOS, use one 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
|
||||||
if this fails, to the addresses given below in the Copyright section.
|
Gilles Vollant <info@winimage.com> for the Windows DLL version.
|
||||||
The zlib home page is http://www.cdrom.com/pub/infozip/zlib/
|
The zlib home page is http://www.zlib.org or http://www.gzip.org/zlib/
|
||||||
The official zlib ftp site is ftp://ftp.cdrom.com/pub/infozip/zlib/
|
Before reporting a problem, please check this site to verify that
|
||||||
Mark Nelson wrote an article about zlib for the Jan. 1997 issue of
|
you have the latest version of zlib; otherwise get the latest version and
|
||||||
Dr. Dobb's Journal; a copy of the article is available in
|
check whether the problem still exists or not.
|
||||||
http://web2.airmail.net/markn/articles/zlibtool/zlibtool.htm
|
|
||||||
|
|
||||||
The changes made in version 1.0.7 are documented in the file ChangeLog.
|
PLEASE read the zlib FAQ http://www.gzip.org/zlib/zlib_faq.html
|
||||||
The main changes since 1.0.6 are:
|
before asking for help.
|
||||||
|
|
||||||
- fix gzseek which was broken in write mode
|
Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997
|
||||||
- return error for gzseek to negative absolute position
|
issue of Dr. Dobb's Journal; a copy of the article is available in
|
||||||
- fix configure for Linux (Chun-Chung Chen)
|
http://dogma.net/markn/articles/zlibtool/zlibtool.htm
|
||||||
- increase stack space for MSC (Tim Wegner)
|
|
||||||
- get_crc_table and inflateSyncPoint are EXPORTed (Gilles Vollant)
|
The changes made in version 1.2.0 are documented in the file ChangeLog.
|
||||||
- define EXPORTVA for gzprintf (Gilles Vollant)
|
|
||||||
- added mini man page zlib.3 (Rick Rodgers) [volunteers to write full
|
|
||||||
man pages from zlib.h most welcome. write to jloup@gzip.org]
|
|
||||||
- for contrib/untgz, fix makedir() and improve Makefile
|
|
||||||
|
|
||||||
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 CPAN (Comprehensive Perl Archive Network) sites, such as:
|
is in the 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 available from the Python Software Association sites, such as:
|
is 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
|
||||||
|
|
||||||
|
A zlib binding for TCL written by Andreas Kupries <a.kupries@westend.com>
|
||||||
|
is availlable at http://www.westend.com/~kupries/doc/trf/man/man.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:
|
||||||
|
|
||||||
@@ -61,8 +67,8 @@ Notes for some targets:
|
|||||||
|
|
||||||
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 structure as argument: compress, uncompress and all gz* functions.
|
a structure as argument: compress, uncompress and all gz* functions.
|
||||||
See contrib/visual-basic.txt for more information.
|
See 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 -O, one libpng test fails. The test works in 32 bit mode (with
|
With -O, one libpng test fails. The test works in 32 bit mode (with
|
||||||
@@ -71,25 +77,31 @@ Notes for some targets:
|
|||||||
- 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 when compiled with cc.
|
it works when compiled with cc.
|
||||||
|
|
||||||
- zlib doesn't work on HP-UX 9.05 with one cc compiler (the one not
|
- on Digital Unix 4.0D (formely OSF/1) on AlphaServer, the cc option -std1
|
||||||
accepting the -O option). It works with the other cc compiler.
|
is necessary to get gzprintf working correctly. This is done by configure.
|
||||||
|
|
||||||
- gzdopen is not supported on RISCOS
|
- zlib doesn't work on HP-UX 9.05 with some versions of /bin/cc. It works
|
||||||
|
with other compilers. Use "make test" to check your compiler.
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|||||||
@@ -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
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
#define DO16(buf) DO8(buf,0); DO8(buf,8);
|
#define DO16(buf) DO8(buf,0); DO8(buf,8);
|
||||||
|
|
||||||
/* ========================================================================= */
|
/* ========================================================================= */
|
||||||
uLong EXPORT adler32(adler, buf, len)
|
uLong ZEXPORT adler32(adler, buf, len)
|
||||||
uLong adler;
|
uLong adler;
|
||||||
const Bytef *buf;
|
const Bytef *buf;
|
||||||
uInt len;
|
uInt len;
|
||||||
@@ -30,7 +30,7 @@ uLong EXPORT 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);
|
||||||
|
|||||||
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.
|
||||||
|
|
||||||
|
|||||||
47
compress.c
47
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
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -8,22 +8,22 @@
|
|||||||
#include "zlib.h"
|
#include "zlib.h"
|
||||||
|
|
||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
Compresses the source buffer into the destination buffer. sourceLen is
|
Compresses the source buffer into the destination buffer. The level
|
||||||
the byte length of the source buffer. Upon entry, destLen is the total
|
parameter has the same meaning as in deflateInit. sourceLen is the byte
|
||||||
size of the destination buffer, which must be at least 0.1% larger than
|
length of the source buffer. Upon entry, destLen is the total size of the
|
||||||
sourceLen plus 8 bytes. Upon exit, destLen is the actual size of the
|
destination buffer, which must be at least 0.1% larger than sourceLen plus
|
||||||
compressed buffer.
|
12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
|
||||||
This function can be used to compress a whole file at once if the
|
|
||||||
input file is mmap'ed.
|
compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
|
||||||
compress returns Z_OK if success, Z_MEM_ERROR if there was not
|
memory, Z_BUF_ERROR if there was not enough room in the output buffer,
|
||||||
enough memory, Z_BUF_ERROR if there was not enough room in the output
|
Z_STREAM_ERROR if the level parameter is invalid.
|
||||||
buffer.
|
|
||||||
*/
|
*/
|
||||||
int EXPORT compress (dest, destLen, source, sourceLen)
|
int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
|
||||||
Bytef *dest;
|
Bytef *dest;
|
||||||
uLongf *destLen;
|
uLongf *destLen;
|
||||||
const Bytef *source;
|
const Bytef *source;
|
||||||
uLong sourceLen;
|
uLong sourceLen;
|
||||||
|
int level;
|
||||||
{
|
{
|
||||||
z_stream stream;
|
z_stream stream;
|
||||||
int err;
|
int err;
|
||||||
@@ -42,7 +42,7 @@ int EXPORT compress (dest, destLen, source, sourceLen)
|
|||||||
stream.zfree = (free_func)0;
|
stream.zfree = (free_func)0;
|
||||||
stream.opaque = (voidpf)0;
|
stream.opaque = (voidpf)0;
|
||||||
|
|
||||||
err = deflateInit(&stream, Z_DEFAULT_COMPRESSION);
|
err = deflateInit(&stream, level);
|
||||||
if (err != Z_OK) return err;
|
if (err != Z_OK) return err;
|
||||||
|
|
||||||
err = deflate(&stream, Z_FINISH);
|
err = deflate(&stream, Z_FINISH);
|
||||||
@@ -55,3 +55,24 @@ int EXPORT compress (dest, destLen, source, sourceLen)
|
|||||||
err = deflateEnd(&stream);
|
err = deflateEnd(&stream);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ===========================================================================
|
||||||
|
*/
|
||||||
|
int ZEXPORT compress (dest, destLen, source, sourceLen)
|
||||||
|
Bytef *dest;
|
||||||
|
uLongf *destLen;
|
||||||
|
const Bytef *source;
|
||||||
|
uLong sourceLen;
|
||||||
|
{
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|||||||
376
configure
vendored
376
configure
vendored
@@ -14,47 +14,89 @@
|
|||||||
# (setenv prefix $HOME; setenv CC cc; setenv CFLAGS "-O4"; ./configure)
|
# (setenv prefix $HOME; setenv CC cc; setenv CFLAGS "-O4"; ./configure)
|
||||||
# LDSHARED is the command to be used to create a shared library
|
# LDSHARED is the command to be used to create a shared library
|
||||||
|
|
||||||
|
# Incorrect settings of CC or CFLAGS may prevent creating a shared library.
|
||||||
|
# If you have problems, try without defining CC and CFLAGS before reporting
|
||||||
|
# an error.
|
||||||
|
|
||||||
LIBS=libz.a
|
LIBS=libz.a
|
||||||
SHAREDLIB=libz.so
|
SHAREDLIB=libz.so
|
||||||
VER=`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`
|
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
|
||||||
|
old_cc="$CC"
|
||||||
|
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 -z "$CC" && echo Checking for gcc...
|
|
||||||
test=ztest$$
|
test=ztest$$
|
||||||
cat > $test.c <<EOF
|
cat > $test.c <<EOF
|
||||||
int hello() { printf("hello\n"); }
|
extern int getchar();
|
||||||
|
int hello() {return getchar();}
|
||||||
EOF
|
EOF
|
||||||
if test -z "$CC" -o "$CC" = "gcc" && (gcc -c -O3 $test.c) 2>/dev/null; then
|
|
||||||
CC=gcc
|
test -z "$CC" && echo Checking for gcc...
|
||||||
|
cc=${CC-gcc}
|
||||||
|
cflags=${CFLAGS-"-O3"}
|
||||||
|
# to force the asm version use: CFLAGS="-O3 -DASMV" ./configure
|
||||||
|
case "$cc" in
|
||||||
|
*gcc*) gcc=1;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) 2>/dev/null; then
|
||||||
|
CC="$cc"
|
||||||
SFLAGS=${CFLAGS-"-fPIC -O3"}
|
SFLAGS=${CFLAGS-"-fPIC -O3"}
|
||||||
CFLAGS=${CFLAGS-"-O3"}
|
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"}
|
||||||
@@ -63,15 +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"};;
|
||||||
shared_ext='.sl'
|
SunOS\ 4*) SFLAGS=${CFLAGS-"-O2 -PIC"}
|
||||||
SHAREDLIB='libz.sl';;
|
CFLAGS=${CFLAGS-"-O2"}
|
||||||
|
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"}
|
||||||
@@ -87,35 +138,288 @@ if test $shared -eq 1; then
|
|||||||
CFLAGS="$SFLAGS"
|
CFLAGS="$SFLAGS"
|
||||||
LIBS="$SHAREDLIB.$VER"
|
LIBS="$SHAREDLIB.$VER"
|
||||||
echo Building shared library $SHAREDLIB.$VER with $CC.
|
echo Building shared library $SHAREDLIB.$VER with $CC.
|
||||||
else
|
elif test -z "$old_cc" -a -z "$old_cflags"; then
|
||||||
echo No shared library suppport.
|
echo No shared library suppport.
|
||||||
shared=0;
|
shared=0;
|
||||||
|
else
|
||||||
|
echo 'No shared library suppport; try without defining CC and CFLAGS'
|
||||||
|
shared=0;
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if test $shared -eq 0; then
|
if test $shared -eq 0; then
|
||||||
LDSHARED="$CC"
|
LDSHARED="$CC"
|
||||||
echo Building static library $LIBS version $VER with $CC.
|
echo Building static library $LIBS version $VER with $CC.
|
||||||
fi
|
fi
|
||||||
rm -f $test.[co] $test$shared_ext
|
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
|
cat > $test.c <<EOF
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
caddr_t hello() {
|
||||||
|
return mmap((caddr_t)0, (off_t)0, PROT_READ, MAP_SHARED, 0, (off_t)0);
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then
|
||||||
|
CFLAGS="$CFLAGS -DUSE_MMAP"
|
||||||
|
echo Checking for mmap support... Yes.
|
||||||
|
else
|
||||||
|
echo Checking for mmap support... No.
|
||||||
|
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
|
||||||
|
|
||||||
# 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%
|
||||||
/^AR *=/s,=.*,=$AR,
|
/^AR *=/s%=.*%=$AR%
|
||||||
/^RANLIB *=/s,=.*,=$RANLIB,
|
/^RANLIB *=/s%=.*%=$RANLIB%
|
||||||
/^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
|
||||||
|
|||||||
@@ -5,8 +5,27 @@ 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(). This code may be slower
|
386 asm code replacing longest_match(), for Visual C++ 4.2 and ML 6.11c
|
||||||
than the C code if you have a good compiler.
|
|
||||||
|
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
|
||||||
|
|
||||||
|
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
|
||||||
|
|||||||
@@ -9,40 +9,36 @@
|
|||||||
; For Visual C++ 4.2 and ML 6.11c (version in directory \MASM611C of Win95 DDK)
|
; 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"
|
; I compile with : "ml /coff /Zi /c gvmat32.asm"
|
||||||
;
|
;
|
||||||
; uInt longest_match_gvasm(IPos cur_match,int* match_start_ptr,uInt scan_end,
|
|
||||||
; uInt scan_start,ush* prev,uch* window,int best_len,
|
|
||||||
; IPos limit,uInt chain_length,uch* scanrp,
|
|
||||||
; uInt nice_match);
|
|
||||||
|
|
||||||
;uInt longest_match(s, cur_match)
|
;uInt longest_match_7fff(s, cur_match)
|
||||||
; deflate_state *s;
|
; deflate_state *s;
|
||||||
; IPos cur_match; /* current match */
|
; IPos cur_match; /* current match */
|
||||||
|
|
||||||
NbStack equ 76
|
NbStack equ 76
|
||||||
cur_match equ dword ptr[esp+NbStack-0]
|
cur_match equ dword ptr[esp+NbStack-0]
|
||||||
str_s equ dword ptr[esp+NbStack-4]
|
str_s equ dword ptr[esp+NbStack-4]
|
||||||
; 5 dword on top (ret,ebp,esi,edi,ebx)
|
; 5 dword on top (ret,ebp,esi,edi,ebx)
|
||||||
adrret equ dword ptr[esp+NbStack-8]
|
adrret equ dword ptr[esp+NbStack-8]
|
||||||
pushebp equ dword ptr[esp+NbStack-12]
|
pushebp equ dword ptr[esp+NbStack-12]
|
||||||
pushedi equ dword ptr[esp+NbStack-16]
|
pushedi equ dword ptr[esp+NbStack-16]
|
||||||
pushesi equ dword ptr[esp+NbStack-20]
|
pushesi equ dword ptr[esp+NbStack-20]
|
||||||
pushebx equ dword ptr[esp+NbStack-24]
|
pushebx equ dword ptr[esp+NbStack-24]
|
||||||
|
|
||||||
chain_length equ dword ptr [esp+NbStack-28]
|
chain_length equ dword ptr [esp+NbStack-28]
|
||||||
limit equ dword ptr [esp+NbStack-32]
|
limit equ dword ptr [esp+NbStack-32]
|
||||||
best_len equ dword ptr [esp+NbStack-36]
|
best_len equ dword ptr [esp+NbStack-36]
|
||||||
window equ dword ptr [esp+NbStack-40]
|
window equ dword ptr [esp+NbStack-40]
|
||||||
prev equ dword ptr [esp+NbStack-44]
|
prev equ dword ptr [esp+NbStack-44]
|
||||||
scan_start equ word ptr [esp+NbStack-48]
|
scan_start equ word ptr [esp+NbStack-48]
|
||||||
scan_end equ word ptr [esp+NbStack-52]
|
wmask equ dword ptr [esp+NbStack-52]
|
||||||
match_start_ptr equ dword ptr [esp+NbStack-56]
|
match_start_ptr equ dword ptr [esp+NbStack-56]
|
||||||
nice_match equ dword ptr [esp+NbStack-60]
|
nice_match equ dword ptr [esp+NbStack-60]
|
||||||
scanrp equ dword ptr [esp+NbStack-64]
|
scan equ dword ptr [esp+NbStack-64]
|
||||||
|
|
||||||
windowlen equ dword ptr [esp+NbStack-68]
|
windowlen equ dword ptr [esp+NbStack-68]
|
||||||
match_start equ dword ptr [esp+NbStack-72]
|
match_start equ dword ptr [esp+NbStack-72]
|
||||||
strend equ dword ptr [esp+NbStack-76]
|
strend equ dword ptr [esp+NbStack-76]
|
||||||
NbStackAdd equ (76-24)
|
NbStackAdd equ (NbStack-24)
|
||||||
|
|
||||||
.386p
|
.386p
|
||||||
|
|
||||||
@@ -50,415 +46,514 @@
|
|||||||
.MODEL FLAT
|
.MODEL FLAT
|
||||||
|
|
||||||
|
|
||||||
@lmtype TYPEDEF PROTO C :PTR , :SDWORD
|
|
||||||
longest_match_c PROTO @lmtype
|
|
||||||
|
|
||||||
dep_max_chain_length equ 70h
|
; all the +4 offsets are due to the addition of pending_buf_size (in zlib
|
||||||
dep_window equ 2ch
|
; in the deflate_state structure since the asm code was first written
|
||||||
dep_strstart equ 60h
|
; (if you compile with zlib 1.0.4 or older, remove the +4).
|
||||||
dep_prev_length equ 6ch
|
; Note : these value are good with a 8 bytes boundary pack structure
|
||||||
dep_nice_match equ 84h
|
dep_chain_length equ 70h+4
|
||||||
dep_w_size equ 20h
|
dep_window equ 2ch+4
|
||||||
dep_prev equ 34h
|
dep_strstart equ 60h+4
|
||||||
dep_w_mask equ 28h
|
dep_prev_length equ 6ch+4
|
||||||
dep_good_match equ 80h
|
dep_nice_match equ 84h+4
|
||||||
dep_match_start equ 64h
|
dep_w_size equ 20h+4
|
||||||
dep_lookahead equ 68h
|
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
|
_TEXT segment
|
||||||
public _longest_match_asm7fff
|
|
||||||
|
|
||||||
MAX_MATCH equ 258
|
IFDEF NOUNDERLINE
|
||||||
MIN_MATCH equ 3
|
public longest_match_7fff
|
||||||
MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
|
; public match_init
|
||||||
|
ELSE
|
||||||
|
public _longest_match_7fff
|
||||||
|
; 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.
|
; 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
|
||||||
; Set match_start to the longest match starting at the given string and
|
mov edx,[ebp+dep_chain_length]
|
||||||
; return its length. Matches shorter or equal to prev_length are discarded,
|
mov ebx,[ebp+dep_prev_length]
|
||||||
; in which case the result is equal to prev_length and match_start is
|
cmp [ebp+dep_good_match],ebx
|
||||||
; garbage.
|
ja noshr
|
||||||
; IN assertions: cur_match is the head of the hash chain for the current
|
shr edx,2
|
||||||
; string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
|
|
||||||
|
|
||||||
; int longest_match(cur_match)
|
|
||||||
|
|
||||||
_longest_match_asm7fff proc near
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
; return address
|
|
||||||
|
|
||||||
mov eax,[esp+4]
|
|
||||||
mov bx,[eax+dep_w_mask]
|
|
||||||
cmp bx,7fffh
|
|
||||||
jnz longest_match_c
|
|
||||||
|
|
||||||
push ebp
|
|
||||||
push edi
|
|
||||||
push esi
|
|
||||||
push ebx
|
|
||||||
|
|
||||||
sub esp,NbStackAdd
|
|
||||||
|
|
||||||
;//mov ebp,str_s
|
|
||||||
mov ebp,eax
|
|
||||||
|
|
||||||
mov eax,[ebp+dep_max_chain_length]
|
|
||||||
mov ebx,[ebp+dep_prev_length]
|
|
||||||
cmp [ebp+dep_good_match],ebx ; if prev_length>=good_match chain_length >>= 2
|
|
||||||
ja noshr
|
|
||||||
shr eax,2
|
|
||||||
noshr:
|
noshr:
|
||||||
mov edi,[ebp+dep_nice_match]
|
; we increment chain_length because in the asm, the --chain_lenght is in the beginning of the loop
|
||||||
mov chain_length,eax
|
inc edx
|
||||||
mov edx,[ebp+dep_lookahead]
|
mov edi,[ebp+dep_nice_match]
|
||||||
cmp edx,edi
|
mov chain_length,edx
|
||||||
;if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
|
mov eax,[ebp+dep_lookahead]
|
||||||
jae nolookaheadnicematch
|
cmp eax,edi
|
||||||
mov edi,edx
|
; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
|
||||||
|
jae nolookaheadnicematch
|
||||||
|
mov edi,eax
|
||||||
nolookaheadnicematch:
|
nolookaheadnicematch:
|
||||||
mov best_len,ebx
|
; 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 esi,[ebp+dep_window]
|
mov nice_match,edi
|
||||||
mov ecx,[ebp+dep_strstart]
|
; scan = window + strstart
|
||||||
mov window,esi
|
add esi,ecx
|
||||||
|
mov scan,esi
|
||||||
mov nice_match,edi
|
; dx = *window
|
||||||
add esi,ecx
|
mov dx,word ptr [esi]
|
||||||
mov scanrp,esi
|
; bx = *(window+best_len-1)
|
||||||
mov ax,word ptr [esi]
|
mov bx,word ptr [esi+ebx-1]
|
||||||
mov bx,word ptr [esi+ebx-1]
|
add esi,MAX_MATCH-1
|
||||||
add esi,MAX_MATCH-1
|
; scan_start = *scan
|
||||||
mov scan_start,ax
|
mov scan_start,dx
|
||||||
mov strend,esi
|
; strend = scan + MAX_MATCH-1
|
||||||
mov scan_end,bx
|
mov strend,esi
|
||||||
|
; bx = scan_end = *(window+best_len-1)
|
||||||
|
|
||||||
; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
|
; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
|
||||||
; s->strstart - (IPos)MAX_DIST(s) : NIL;
|
; s->strstart - (IPos)MAX_DIST(s) : NIL;
|
||||||
|
|
||||||
mov esi,[ebp+dep_w_size]
|
mov esi,[ebp+dep_w_size]
|
||||||
sub esi,MIN_LOOKAHEAD
|
sub esi,MIN_LOOKAHEAD
|
||||||
; here esi = MAX_DIST(s)
|
; here esi = MAX_DIST(s)
|
||||||
sub ecx,esi
|
sub ecx,esi
|
||||||
ja nodist
|
ja nodist
|
||||||
xor ecx,ecx
|
xor ecx,ecx
|
||||||
nodist:
|
nodist:
|
||||||
mov limit,ecx
|
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
|
||||||
|
|
||||||
mov eax,[ebp+dep_prev]
|
jmp beginloop2
|
||||||
mov prev,eax
|
align 4
|
||||||
|
|
||||||
mov ebx,dword ptr [ebp+dep_match_start]
|
|
||||||
mov bp,scan_start
|
|
||||||
mov edx,cur_match
|
|
||||||
mov match_start,ebx
|
|
||||||
|
|
||||||
mov bx,scan_end
|
|
||||||
mov eax,window
|
|
||||||
mov edi,eax
|
|
||||||
add edi,best_len
|
|
||||||
mov esi,prev
|
|
||||||
dec edi
|
|
||||||
mov windowlen,edi
|
|
||||||
|
|
||||||
jmp beginloop2
|
|
||||||
align 4
|
|
||||||
|
|
||||||
; here, in the loop
|
; here, in the loop
|
||||||
;;;; eax = chain_length
|
; eax = ax = cur_match
|
||||||
; edx = dx = cur_match
|
|
||||||
; ecx = limit
|
; ecx = limit
|
||||||
; bx = scan_end
|
; bx = scan_end
|
||||||
; bp = scan_start
|
; bp = scan_start
|
||||||
; edi = windowlen (window + best_len)
|
; edi = windowlen (window + best_len -1)
|
||||||
; esi = prev
|
; esi = prev
|
||||||
|
|
||||||
|
|
||||||
;// here; eax <=16
|
;// here; chain_length <=16
|
||||||
normalbeg0add16:
|
normalbeg0add16:
|
||||||
add chain_length,16
|
add chain_length,16
|
||||||
jz exitloop
|
jz exitloop
|
||||||
normalbeg0:
|
normalbeg0:
|
||||||
cmp word ptr[edi+edx-0],bx
|
cmp word ptr[edi+eax],bx
|
||||||
je normalbeg2
|
je normalbeg2noroll
|
||||||
and edx,7fffh
|
rcontlabnoroll:
|
||||||
mov dx,word ptr[esi+edx*2]
|
; cur_match = prev[cur_match & wmask]
|
||||||
cmp ecx,edx
|
and eax,7fffh
|
||||||
jnb exitloop
|
mov ax,word ptr[esi+eax*2]
|
||||||
dec chain_length
|
; if cur_match > limit, go to exitloop
|
||||||
jnz normalbeg0
|
cmp ecx,eax
|
||||||
;jnbexitloopshort1:
|
jnb exitloop
|
||||||
jmp 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:
|
contloop3:
|
||||||
mov edi,windowlen
|
mov edi,windowlen
|
||||||
|
|
||||||
; cur_match = prev[cur_match & wmask]
|
; cur_match = prev[cur_match & wmask]
|
||||||
and edx,7fffh
|
and eax,7fffh
|
||||||
mov dx,word ptr[esi+edx*2]
|
mov ax,word ptr[esi+eax*2]
|
||||||
; if cur_match > limit, go to exitloop
|
; if cur_match > limit, go to exitloop
|
||||||
cmp ecx,edx
|
cmp ecx,eax
|
||||||
jnbexitloopshort1:
|
jnbexitloopshort1:
|
||||||
jnb exitloop
|
jnb exitloop
|
||||||
; if --chain_length != 0, go to exitloop
|
; if --chain_length != 0, go to exitloop
|
||||||
|
|
||||||
|
|
||||||
|
; begin the main loop
|
||||||
beginloop2:
|
beginloop2:
|
||||||
sub chain_length,16+1
|
sub chain_length,16+1
|
||||||
jna normalbeg0add16
|
; if chain_length <=16, don't use the unrolled loop
|
||||||
|
jna normalbeg0add16
|
||||||
|
|
||||||
do16:
|
do16:
|
||||||
cmp word ptr[edi+edx],bx
|
cmp word ptr[edi+eax],bx
|
||||||
je normalbeg2dc0
|
je normalbeg2dc0
|
||||||
|
|
||||||
maccn MACRO lab
|
maccn MACRO lab
|
||||||
and edx,7fffh
|
and eax,7fffh
|
||||||
mov dx,word ptr[esi+edx*2]
|
mov ax,word ptr[esi+eax*2]
|
||||||
cmp ecx,edx
|
cmp ecx,eax
|
||||||
jnb exitloop
|
jnb exitloop
|
||||||
cmp word ptr[edi+edx-0],bx
|
cmp word ptr[edi+eax],bx
|
||||||
je lab
|
je lab
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
rcontloop0:
|
rcontloop0:
|
||||||
maccn normalbeg2dc1
|
maccn normalbeg2dc1
|
||||||
|
|
||||||
rcontloop1:
|
rcontloop1:
|
||||||
maccn normalbeg2dc2
|
maccn normalbeg2dc2
|
||||||
|
|
||||||
rcontloop2:
|
rcontloop2:
|
||||||
maccn normalbeg2dc3
|
maccn normalbeg2dc3
|
||||||
|
|
||||||
rcontloop3:
|
rcontloop3:
|
||||||
maccn normalbeg2dc4
|
maccn normalbeg2dc4
|
||||||
|
|
||||||
rcontloop4:
|
rcontloop4:
|
||||||
maccn normalbeg2dc5
|
maccn normalbeg2dc5
|
||||||
|
|
||||||
rcontloop5:
|
rcontloop5:
|
||||||
maccn normalbeg2dc6
|
maccn normalbeg2dc6
|
||||||
|
|
||||||
rcontloop6:
|
rcontloop6:
|
||||||
maccn normalbeg2dc7
|
maccn normalbeg2dc7
|
||||||
|
|
||||||
rcontloop7:
|
rcontloop7:
|
||||||
maccn normalbeg2dc8
|
maccn normalbeg2dc8
|
||||||
|
|
||||||
rcontloop8:
|
rcontloop8:
|
||||||
maccn normalbeg2dc9
|
maccn normalbeg2dc9
|
||||||
|
|
||||||
rcontloop9:
|
rcontloop9:
|
||||||
maccn normalbeg2dc10
|
maccn normalbeg2dc10
|
||||||
|
|
||||||
rcontloop10:
|
rcontloop10:
|
||||||
maccn normalbeg2dc11
|
maccn short normalbeg2dc11
|
||||||
|
|
||||||
rcontloop11:
|
rcontloop11:
|
||||||
maccn short normalbeg2dc12
|
maccn short normalbeg2dc12
|
||||||
|
|
||||||
rcontloop12:
|
rcontloop12:
|
||||||
maccn short normalbeg2dc13
|
maccn short normalbeg2dc13
|
||||||
|
|
||||||
rcontloop13:
|
rcontloop13:
|
||||||
maccn short normalbeg2dc14
|
maccn short normalbeg2dc14
|
||||||
|
|
||||||
rcontloop14:
|
rcontloop14:
|
||||||
maccn short normalbeg2dc15
|
maccn short normalbeg2dc15
|
||||||
|
|
||||||
rcontloop15:
|
rcontloop15:
|
||||||
and edx,7fffh
|
and eax,7fffh
|
||||||
mov dx,word ptr[esi+edx*2]
|
mov ax,word ptr[esi+eax*2]
|
||||||
cmp ecx,edx
|
cmp ecx,eax
|
||||||
jnb short exitloopshort
|
jnb exitloop
|
||||||
|
|
||||||
sub chain_length,16
|
sub chain_length,16
|
||||||
ja do16
|
ja do16
|
||||||
jmp normalbeg0add16
|
jmp normalbeg0add16
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
exitloopshort:
|
normbeg MACRO rcontlab,valsub
|
||||||
jmp exitloop
|
; 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
|
||||||
|
|
||||||
normbeg MACRO rcontlab,valsub
|
|
||||||
cmp bp,word ptr[eax+edx]
|
|
||||||
jne rcontlab
|
|
||||||
add chain_length,16-valsub
|
|
||||||
jmp iseq
|
|
||||||
ENDM
|
|
||||||
|
|
||||||
normalbeg2dc12:
|
|
||||||
normbeg rcontloop12,12
|
|
||||||
|
|
||||||
normalbeg2dc13:
|
|
||||||
normbeg rcontloop13,13
|
|
||||||
|
|
||||||
normalbeg2dc14:
|
|
||||||
normbeg rcontloop14,14
|
|
||||||
|
|
||||||
normalbeg2dc15:
|
|
||||||
normbeg rcontloop15,15
|
|
||||||
|
|
||||||
normalbeg2dc11:
|
normalbeg2dc11:
|
||||||
normbeg rcontloop11,11
|
normbeg rcontloop11,11
|
||||||
|
|
||||||
|
normalbeg2dc12:
|
||||||
|
normbeg short rcontloop12,12
|
||||||
|
|
||||||
|
normalbeg2dc13:
|
||||||
|
normbeg short rcontloop13,13
|
||||||
|
|
||||||
|
normalbeg2dc14:
|
||||||
|
normbeg short rcontloop14,14
|
||||||
|
|
||||||
|
normalbeg2dc15:
|
||||||
|
normbeg short rcontloop15,15
|
||||||
|
|
||||||
normalbeg2dc10:
|
normalbeg2dc10:
|
||||||
normbeg rcontloop10,10
|
normbeg rcontloop10,10
|
||||||
|
|
||||||
|
|
||||||
normalbeg2dc9:
|
normalbeg2dc9:
|
||||||
normbeg rcontloop9,9
|
normbeg rcontloop9,9
|
||||||
|
|
||||||
normalbeg2dc8:
|
normalbeg2dc8:
|
||||||
normbeg rcontloop8,8
|
normbeg rcontloop8,8
|
||||||
|
|
||||||
normalbeg2dc7:
|
normalbeg2dc7:
|
||||||
normbeg rcontloop7,7
|
normbeg rcontloop7,7
|
||||||
|
|
||||||
normalbeg2dc5:
|
|
||||||
normbeg rcontloop5,5
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
normalbeg2dc6:
|
normalbeg2dc6:
|
||||||
normbeg rcontloop6,6
|
normbeg rcontloop6,6
|
||||||
|
|
||||||
|
normalbeg2dc5:
|
||||||
|
normbeg rcontloop5,5
|
||||||
|
|
||||||
normalbeg2dc4:
|
normalbeg2dc4:
|
||||||
normbeg rcontloop4,4
|
normbeg rcontloop4,4
|
||||||
|
|
||||||
normalbeg2dc3:
|
normalbeg2dc3:
|
||||||
normbeg rcontloop3,3
|
normbeg rcontloop3,3
|
||||||
|
|
||||||
normalbeg2dc2:
|
normalbeg2dc2:
|
||||||
normbeg rcontloop2,2
|
normbeg rcontloop2,2
|
||||||
|
|
||||||
normalbeg2dc1:
|
normalbeg2dc1:
|
||||||
normbeg rcontloop1,1
|
normbeg rcontloop1,1
|
||||||
|
|
||||||
normalbeg2dc0:
|
normalbeg2dc0:
|
||||||
normbeg rcontloop0,0
|
normbeg rcontloop0,0
|
||||||
|
|
||||||
|
|
||||||
; we go in normalbeg2 because *(ushf*)(match+best_len-1) == scan_end
|
; we go in normalbeg2 because *(ushf*)(match+best_len-1) == scan_end
|
||||||
|
|
||||||
normalbeg2:
|
normalbeg2:
|
||||||
|
mov edi,window
|
||||||
|
|
||||||
; 10 nop here take 10% time
|
cmp bp,word ptr[edi+eax]
|
||||||
mov edi,window
|
jne contloop3 ; if *(ushf*)match != scan_start, continue
|
||||||
;mov chain_length,eax ; now, we need eax...
|
|
||||||
|
|
||||||
cmp bp,word ptr[edi+edx]
|
|
||||||
jne contloop3 ; if *(ushf*)match != scan_start, continue
|
|
||||||
|
|
||||||
iseq:
|
iseq:
|
||||||
|
; if we are here, we know that *(match+best_len-1) == scan_end
|
||||||
|
; and (match == scan_start)
|
||||||
|
|
||||||
mov edi,eax
|
mov edi,edx
|
||||||
mov esi,scanrp ; esi = scan
|
mov esi,scan ; esi = scan
|
||||||
add edi,edx ; edi = window + cur_match = match
|
add edi,eax ; edi = window + cur_match = match
|
||||||
|
|
||||||
|
mov edx,[esi+3] ; compare manually dword at match+3
|
||||||
mov eax,[esi+3] ; compare manually dword at match+3
|
xor edx,[edi+3] ; and scan +3
|
||||||
xor eax,[edi+3] ; and scan +3
|
|
||||||
|
|
||||||
jz begincompare ; if equal, go to long compare
|
jz begincompare ; if equal, go to long compare
|
||||||
|
|
||||||
; we will determine the unmatch byte and calculate len (in esi)
|
; we will determine the unmatch byte and calculate len (in esi)
|
||||||
or al,al
|
or dl,dl
|
||||||
je eq1rr
|
je eq1rr
|
||||||
mov esi,3
|
mov esi,3
|
||||||
jmp trfinval
|
jmp trfinval
|
||||||
eq1rr:
|
eq1rr:
|
||||||
or ax,ax
|
or dx,dx
|
||||||
je eq1
|
je eq1
|
||||||
|
|
||||||
mov esi,4
|
mov esi,4
|
||||||
jmp trfinval
|
jmp trfinval
|
||||||
eq1:
|
eq1:
|
||||||
shl eax,8
|
and edx,0ffffffh
|
||||||
jz eq11
|
jz eq11
|
||||||
mov esi,5
|
mov esi,5
|
||||||
jmp trfinval
|
jmp trfinval
|
||||||
eq11:
|
eq11:
|
||||||
mov esi,6
|
mov esi,6
|
||||||
jmp trfinval
|
jmp trfinval
|
||||||
|
|
||||||
begincompare:
|
begincompare:
|
||||||
; here we now scan and match begin same
|
; here we now scan and match begin same
|
||||||
add edi,6
|
add edi,6
|
||||||
add esi,6
|
add esi,6
|
||||||
mov ecx,(MAX_MATCH-(2+4))/4 ;//; scan for at most MAX_MATCH bytes
|
mov ecx,(MAX_MATCH-(2+4))/4 ; scan for at most MAX_MATCH bytes
|
||||||
repe cmpsd ;//; loop until mismatch
|
repe cmpsd ; loop until mismatch
|
||||||
|
|
||||||
je trfin ; go to trfin if not unmatch
|
je trfin ; go to trfin if not unmatch
|
||||||
; we determine the unmatch byte
|
; we determine the unmatch byte
|
||||||
sub esi,4
|
sub esi,4
|
||||||
mov eax,[edi-4]
|
mov edx,[edi-4]
|
||||||
xor eax,[esi]
|
xor edx,[esi]
|
||||||
or al,al
|
|
||||||
|
|
||||||
jnz trfin
|
or dl,dl
|
||||||
inc esi
|
jnz trfin
|
||||||
|
inc esi
|
||||||
|
|
||||||
or ax,ax
|
or dx,dx
|
||||||
jnz trfin
|
jnz trfin
|
||||||
inc esi
|
inc esi
|
||||||
|
|
||||||
shl eax,8
|
and edx,0ffffffh
|
||||||
jnz trfin
|
jnz trfin
|
||||||
inc esi
|
inc esi
|
||||||
|
|
||||||
trfin:
|
trfin:
|
||||||
sub esi,scanrp ; esi = len
|
sub esi,scan ; esi = len
|
||||||
trfinval:
|
trfinval:
|
||||||
cmp esi,best_len ; if len <= best_len, go contloop2
|
; here we have finised compare, and esi contain len of equal string
|
||||||
jbe contloop2
|
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
|
||||||
|
|
||||||
mov best_len,esi ; len become best_len
|
newbestlen:
|
||||||
|
mov best_len,esi ; len become best_len
|
||||||
|
|
||||||
mov match_start,edx
|
mov match_start,eax ; save new position as match_start
|
||||||
cmp esi,nice_match ;//; if esi >= nice_match, exit
|
cmp esi,nice_match ; if best_len >= nice_match, exit
|
||||||
mov ecx,scanrp
|
jae exitloop
|
||||||
jae exitloop
|
mov ecx,scan
|
||||||
add esi,window
|
mov edx,window ; restore edx=window
|
||||||
add ecx,best_len
|
add ecx,esi
|
||||||
dec esi
|
add esi,edx
|
||||||
mov windowlen,esi
|
|
||||||
mov bx,[ecx-1]
|
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
|
||||||
|
|
||||||
|
|
||||||
; now we restore eax, ecx and esi, for the big loop :
|
|
||||||
contloop2:
|
|
||||||
mov esi,prev
|
|
||||||
mov ecx,limit
|
|
||||||
;mov eax,chain_length
|
|
||||||
mov eax,window
|
|
||||||
jmp contloop3
|
|
||||||
|
|
||||||
exitloop:
|
IFDEF NOUNDERLINE
|
||||||
mov ebx,match_start
|
longest_match_7fff endp
|
||||||
mov ebp,str_s
|
ELSE
|
||||||
mov dword ptr [ebp+dep_match_start],ebx
|
_longest_match_7fff endp
|
||||||
mov eax,best_len
|
ENDIF
|
||||||
add esp,NbStackAdd
|
|
||||||
|
|
||||||
|
|
||||||
pop ebx
|
IFDEF NOUNDERLINE
|
||||||
pop esi
|
cpudetect32 proc near
|
||||||
pop edi
|
ELSE
|
||||||
pop ebp
|
_cpudetect32 proc near
|
||||||
ret
|
ENDIF
|
||||||
|
|
||||||
_longest_match_asm7fff endp
|
|
||||||
|
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:
|
||||||
|
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
|
||||||
|
|
||||||
_TEXT ends
|
_TEXT ends
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -7,7 +7,6 @@
|
|||||||
* (assembly code is faster with a fixed wmask)
|
* (assembly code is faster with a fixed wmask)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
//#pragma optimize("agt",on)
|
|
||||||
|
|
||||||
#include "deflate.h"
|
#include "deflate.h"
|
||||||
|
|
||||||
@@ -15,65 +14,31 @@
|
|||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
#ifdef ASMV
|
#ifdef ASMV
|
||||||
|
|
||||||
#define NIL 0
|
#define NIL 0
|
||||||
|
|
||||||
static unsigned int tot=0;
|
|
||||||
static unsigned int totl0=0;
|
|
||||||
static unsigned int totl0p0=0;
|
|
||||||
static unsigned int ba0=0;
|
|
||||||
static unsigned int ba1=0;
|
|
||||||
static unsigned int cpta=0;
|
|
||||||
static unsigned int cptb=0;
|
|
||||||
|
|
||||||
#define UNALIGNED_OK
|
#define UNALIGNED_OK
|
||||||
#define gvshow(a,b,c,d)
|
|
||||||
/*
|
|
||||||
void gvshow(int chain_length,int len,int limit,ushf* prev)
|
|
||||||
{
|
|
||||||
static int ival=0;
|
|
||||||
char sz[80];
|
|
||||||
unsigned long i;
|
|
||||||
int prev0=*prev;
|
|
||||||
ival++;
|
|
||||||
//wsprintf(sz,"call %u, len=%u, chain_length=%u\n",ival,len,chain_length);
|
|
||||||
//OutputDebugString(sz);
|
|
||||||
tot++;
|
|
||||||
if (limit==NIL)
|
|
||||||
totl0++;
|
|
||||||
if ((limit==NIL) && (prev0==0))
|
|
||||||
totl0p0++;
|
|
||||||
for (i=limit+1;i<32768;i++)
|
|
||||||
{
|
|
||||||
ush va=*(prev+i);
|
|
||||||
if (ba0>4000000000)
|
|
||||||
{
|
|
||||||
ba0+=10;
|
|
||||||
}
|
|
||||||
ba0++;
|
|
||||||
if ((va>limit) || (va==0))
|
|
||||||
continue;
|
|
||||||
ba1++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/* if your C compiler don't add underline before function name,
|
/* if your C compiler don't add underline before function name,
|
||||||
define ADD_UNDERLINE_ASMFUNC */
|
define ADD_UNDERLINE_ASMFUNC */
|
||||||
#ifdef ADD_UNDERLINE_ASMFUNC
|
#ifdef ADD_UNDERLINE_ASMFUNC
|
||||||
#define longest_match_asm7fff _longest_match_asm7fff
|
#define longest_match_7fff _longest_match_7fff
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void match_init()
|
void match_init()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned long cpudetect32();
|
||||||
|
|
||||||
uInt longest_match_c(
|
uInt longest_match_c(
|
||||||
deflate_state *s,
|
deflate_state *s,
|
||||||
IPos cur_match); /* current match */
|
IPos cur_match); /* current match */
|
||||||
|
|
||||||
|
|
||||||
uInt longest_match_asm7fff(
|
uInt longest_match_7fff(
|
||||||
deflate_state *s,
|
deflate_state *s,
|
||||||
IPos cur_match); /* current match */
|
IPos cur_match); /* current match */
|
||||||
|
|
||||||
@@ -81,9 +46,15 @@ uInt longest_match(
|
|||||||
deflate_state *s,
|
deflate_state *s,
|
||||||
IPos cur_match) /* current match */
|
IPos cur_match) /* current match */
|
||||||
{
|
{
|
||||||
if (s->w_mask == 0x7fff)
|
static uInt iIsPPro=2;
|
||||||
return longest_match_asm7fff(s,cur_match);
|
|
||||||
return longest_match_c(s,cur_match);
|
if ((s->w_mask == 0x7fff) && (iIsPPro==0))
|
||||||
|
return longest_match_7fff(s,cur_match);
|
||||||
|
|
||||||
|
if (iIsPPro==2)
|
||||||
|
iIsPPro = (((cpudetect32()/0x100)&0xf)>=6) ? 1 : 0;
|
||||||
|
|
||||||
|
return longest_match_c(s,cur_match);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -222,7 +193,7 @@ uInt longest_match_c(s, cur_match)
|
|||||||
} while ((cur_match = prev[cur_match & wmask]) > limit
|
} while ((cur_match = prev[cur_match & wmask]) > limit
|
||||||
&& --chain_length != 0);
|
&& --chain_length != 0);
|
||||||
|
|
||||||
if ((uInt)best_len <= s->lookahead) return best_len;
|
if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
|
||||||
return s->lookahead;
|
return s->lookahead;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
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
|
||||||
651
contrib/asm386/zlibvc.dsp
Normal file
651
contrib/asm386/zlibvc.dsp
Normal file
@@ -0,0 +1,651 @@
|
|||||||
|
# Microsoft Developer Studio Project File - Name="zlibvc" - Package Owner=<4>
|
||||||
|
# Microsoft Developer Studio Generated Build File, Format Version 5.00
|
||||||
|
# ** DO NOT EDIT **
|
||||||
|
|
||||||
|
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
||||||
|
# TARGTYPE "Win32 (ALPHA) Dynamic-Link Library" 0x0602
|
||||||
|
|
||||||
|
CFG=zlibvc - Win32 Release
|
||||||
|
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||||
|
!MESSAGE use the Export Makefile command and run
|
||||||
|
!MESSAGE
|
||||||
|
!MESSAGE NMAKE /f "zlibvc.mak".
|
||||||
|
!MESSAGE
|
||||||
|
!MESSAGE You can specify a configuration when running NMAKE
|
||||||
|
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||||
|
!MESSAGE
|
||||||
|
!MESSAGE NMAKE /f "zlibvc.mak" CFG="zlibvc - Win32 Release"
|
||||||
|
!MESSAGE
|
||||||
|
!MESSAGE Possible choices for configuration are:
|
||||||
|
!MESSAGE
|
||||||
|
!MESSAGE "zlibvc - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
||||||
|
!MESSAGE "zlibvc - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
||||||
|
!MESSAGE "zlibvc - Win32 ReleaseAxp" (based on\
|
||||||
|
"Win32 (ALPHA) Dynamic-Link Library")
|
||||||
|
!MESSAGE "zlibvc - Win32 ReleaseWithoutAsm" (based on\
|
||||||
|
"Win32 (x86) Dynamic-Link Library")
|
||||||
|
!MESSAGE "zlibvc - Win32 ReleaseWithoutCrtdll" (based on\
|
||||||
|
"Win32 (x86) Dynamic-Link Library")
|
||||||
|
!MESSAGE
|
||||||
|
|
||||||
|
# Begin Project
|
||||||
|
# PROP Scc_ProjName ""
|
||||||
|
# PROP Scc_LocalPath ""
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
# PROP BASE Use_MFC 0
|
||||||
|
# PROP BASE Use_Debug_Libraries 0
|
||||||
|
# PROP BASE Output_Dir ".\Release"
|
||||||
|
# PROP BASE Intermediate_Dir ".\Release"
|
||||||
|
# PROP BASE Target_Dir ""
|
||||||
|
# PROP Use_MFC 0
|
||||||
|
# PROP Use_Debug_Libraries 0
|
||||||
|
# PROP Output_Dir ".\Release"
|
||||||
|
# PROP Intermediate_Dir ".\Release"
|
||||||
|
# PROP Ignore_Export_Lib 0
|
||||||
|
# PROP Target_Dir ""
|
||||||
|
CPP=cl.exe
|
||||||
|
# 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 /FD /c
|
||||||
|
# SUBTRACT CPP /YX
|
||||||
|
MTL=midl.exe
|
||||||
|
# ADD BASE MTL /nologo /D "NDEBUG" /win32
|
||||||
|
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
RSC=rc.exe
|
||||||
|
# ADD BASE RSC /l 0x40c /d "NDEBUG"
|
||||||
|
# ADD RSC /l 0x40c /d "NDEBUG"
|
||||||
|
BSC32=bscmake.exe
|
||||||
|
# ADD BASE BSC32 /nologo
|
||||||
|
# ADD BSC32 /nologo
|
||||||
|
LINK32=link.exe
|
||||||
|
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
|
||||||
|
# ADD LINK32 gvmat32.obj kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:".\Release\zlib.dll"
|
||||||
|
# SUBTRACT LINK32 /pdb:none
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
# PROP BASE Use_MFC 0
|
||||||
|
# PROP BASE Use_Debug_Libraries 1
|
||||||
|
# PROP BASE Output_Dir ".\Debug"
|
||||||
|
# PROP BASE Intermediate_Dir ".\Debug"
|
||||||
|
# PROP BASE Target_Dir ""
|
||||||
|
# PROP Use_MFC 0
|
||||||
|
# PROP Use_Debug_Libraries 1
|
||||||
|
# PROP Output_Dir ".\Debug"
|
||||||
|
# PROP Intermediate_Dir ".\Debug"
|
||||||
|
# PROP Target_Dir ""
|
||||||
|
CPP=cl.exe
|
||||||
|
# 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" /FD /c
|
||||||
|
# SUBTRACT CPP /YX
|
||||||
|
MTL=midl.exe
|
||||||
|
# ADD BASE MTL /nologo /D "_DEBUG" /win32
|
||||||
|
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||||
|
RSC=rc.exe
|
||||||
|
# ADD BASE RSC /l 0x40c /d "_DEBUG"
|
||||||
|
# ADD RSC /l 0x40c /d "_DEBUG"
|
||||||
|
BSC32=bscmake.exe
|
||||||
|
# ADD BASE BSC32 /nologo
|
||||||
|
# ADD BSC32 /nologo
|
||||||
|
LINK32=link.exe
|
||||||
|
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386
|
||||||
|
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:".\Debug\zlib.dll"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
# PROP BASE Use_MFC 0
|
||||||
|
# PROP BASE Use_Debug_Libraries 0
|
||||||
|
# PROP BASE Output_Dir "zlibvc__"
|
||||||
|
# PROP BASE Intermediate_Dir "zlibvc__"
|
||||||
|
# PROP BASE Ignore_Export_Lib 0
|
||||||
|
# PROP BASE Target_Dir ""
|
||||||
|
# PROP Use_MFC 0
|
||||||
|
# PROP Use_Debug_Libraries 0
|
||||||
|
# PROP Output_Dir "zlibvc__"
|
||||||
|
# PROP Intermediate_Dir "zlibvc__"
|
||||||
|
# PROP Ignore_Export_Lib 0
|
||||||
|
# PROP Target_Dir ""
|
||||||
|
MTL=midl.exe
|
||||||
|
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
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 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
|
||||||
|
# ADD BASE RSC /l 0x40c /d "NDEBUG"
|
||||||
|
# ADD RSC /l 0x40c /d "NDEBUG"
|
||||||
|
BSC32=bscmake.exe
|
||||||
|
# ADD BASE BSC32 /nologo
|
||||||
|
# ADD BSC32 /nologo
|
||||||
|
LINK32=link.exe
|
||||||
|
# ADD BASE LINK32 crtdll.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /map /machine:ALPHA /nodefaultlib /out:".\Release\zlib.dll"
|
||||||
|
# SUBTRACT BASE LINK32 /pdb:none
|
||||||
|
# ADD LINK32 crtdll.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /map /machine:ALPHA /nodefaultlib /out:"zlibvc__\zlib.dll"
|
||||||
|
# SUBTRACT LINK32 /pdb:none
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
# PROP BASE Use_MFC 0
|
||||||
|
# PROP BASE Use_Debug_Libraries 0
|
||||||
|
# PROP BASE Output_Dir "zlibvc_0"
|
||||||
|
# PROP BASE Intermediate_Dir "zlibvc_0"
|
||||||
|
# PROP BASE Ignore_Export_Lib 0
|
||||||
|
# PROP BASE Target_Dir ""
|
||||||
|
# PROP Use_MFC 0
|
||||||
|
# PROP Use_Debug_Libraries 0
|
||||||
|
# PROP Output_Dir "zlibvc_0"
|
||||||
|
# PROP Intermediate_Dir "zlibvc_0"
|
||||||
|
# PROP Ignore_Export_Lib 0
|
||||||
|
# PROP Target_Dir ""
|
||||||
|
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 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
|
||||||
|
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
RSC=rc.exe
|
||||||
|
# ADD BASE RSC /l 0x40c /d "NDEBUG"
|
||||||
|
# ADD RSC /l 0x40c /d "NDEBUG"
|
||||||
|
BSC32=bscmake.exe
|
||||||
|
# ADD BASE BSC32 /nologo
|
||||||
|
# ADD BSC32 /nologo
|
||||||
|
LINK32=link.exe
|
||||||
|
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:".\Release\zlib.dll"
|
||||||
|
# SUBTRACT BASE LINK32 /pdb:none
|
||||||
|
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:".\zlibvc_0\zlib.dll"
|
||||||
|
# SUBTRACT LINK32 /pdb:none
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
# PROP BASE Use_MFC 0
|
||||||
|
# PROP BASE Use_Debug_Libraries 0
|
||||||
|
# PROP BASE Output_Dir "zlibvc_1"
|
||||||
|
# PROP BASE Intermediate_Dir "zlibvc_1"
|
||||||
|
# PROP BASE Ignore_Export_Lib 0
|
||||||
|
# PROP BASE Target_Dir ""
|
||||||
|
# PROP Use_MFC 0
|
||||||
|
# PROP Use_Debug_Libraries 0
|
||||||
|
# PROP Output_Dir "zlibvc_1"
|
||||||
|
# PROP Intermediate_Dir "zlibvc_1"
|
||||||
|
# PROP Ignore_Export_Lib 0
|
||||||
|
# PROP Target_Dir ""
|
||||||
|
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 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
|
||||||
|
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
RSC=rc.exe
|
||||||
|
# ADD BASE RSC /l 0x40c /d "NDEBUG"
|
||||||
|
# ADD RSC /l 0x40c /d "NDEBUG"
|
||||||
|
BSC32=bscmake.exe
|
||||||
|
# ADD BASE BSC32 /nologo
|
||||||
|
# ADD BSC32 /nologo
|
||||||
|
LINK32=link.exe
|
||||||
|
# ADD BASE LINK32 gvmat32.obj kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:".\Release\zlib.dll"
|
||||||
|
# SUBTRACT BASE LINK32 /pdb:none
|
||||||
|
# ADD LINK32 gvmat32.obj kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:".\zlibvc_1\zlib.dll"
|
||||||
|
# SUBTRACT LINK32 /pdb:none
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# Begin Target
|
||||||
|
|
||||||
|
# Name "zlibvc - Win32 Release"
|
||||||
|
# Name "zlibvc - Win32 Debug"
|
||||||
|
# Name "zlibvc - Win32 ReleaseAxp"
|
||||||
|
# Name "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
# Name "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
# Begin Group "Source Files"
|
||||||
|
|
||||||
|
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\adler32.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_ADLER=\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\compress.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_COMPR=\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\crc32.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_CRC32=\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\deflate.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_DEFLA=\
|
||||||
|
".\deflate.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\gvmat32c.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=.\gzio.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_GZIO_=\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infblock.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFBL=\
|
||||||
|
".\infblock.h"\
|
||||||
|
".\infcodes.h"\
|
||||||
|
".\inftrees.h"\
|
||||||
|
".\infutil.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infcodes.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFCO=\
|
||||||
|
".\infblock.h"\
|
||||||
|
".\infcodes.h"\
|
||||||
|
".\inffast.h"\
|
||||||
|
".\inftrees.h"\
|
||||||
|
".\infutil.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\inffast.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFFA=\
|
||||||
|
".\infblock.h"\
|
||||||
|
".\infcodes.h"\
|
||||||
|
".\inffast.h"\
|
||||||
|
".\inftrees.h"\
|
||||||
|
".\infutil.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\inflate.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFLA=\
|
||||||
|
".\infblock.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\inftrees.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFTR=\
|
||||||
|
".\inftrees.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infutil.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFUT=\
|
||||||
|
".\infblock.h"\
|
||||||
|
".\infcodes.h"\
|
||||||
|
".\inftrees.h"\
|
||||||
|
".\infutil.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\trees.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_TREES=\
|
||||||
|
".\deflate.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\uncompr.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_UNCOM=\
|
||||||
|
".\zconf.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 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zlib.rc
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zlibvc.def
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zutil.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_ZUTIL=\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# End Group
|
||||||
|
# Begin Group "Header Files"
|
||||||
|
|
||||||
|
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\deflate.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infblock.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infcodes.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\inffast.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\inftrees.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infutil.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zconf.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zlib.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zutil.h
|
||||||
|
# End Source File
|
||||||
|
# End Group
|
||||||
|
# Begin Group "Resource Files"
|
||||||
|
|
||||||
|
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe"
|
||||||
|
# End Group
|
||||||
|
# End Target
|
||||||
|
# End Project
|
||||||
41
contrib/asm386/zlibvc.dsw
Normal file
41
contrib/asm386/zlibvc.dsw
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
Microsoft Developer Studio Workspace File, Format Version 5.00
|
||||||
|
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Project: "zlibstat"=.\zlibstat.dsp - Package Owner=<4>
|
||||||
|
|
||||||
|
Package=<5>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
Package=<4>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Project: "zlibvc"=.\zlibvc.dsp - Package Owner=<4>
|
||||||
|
|
||||||
|
Package=<5>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
Package=<4>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Global:
|
||||||
|
|
||||||
|
Package=<5>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
Package=<3>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
@@ -1,781 +0,0 @@
|
|||||||
# Microsoft Developer Studio Generated NMAKE File, Format Version 4.20
|
|
||||||
# ** DO NOT EDIT **
|
|
||||||
|
|
||||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
|
||||||
|
|
||||||
!IF "$(CFG)" == ""
|
|
||||||
CFG=zlibvc - Win32 Debug
|
|
||||||
!MESSAGE No configuration specified. Defaulting to zlibvc - Win32 Debug.
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
!IF "$(CFG)" != "zlibvc - Win32 Release" && "$(CFG)" != "zlibvc - Win32 Debug"
|
|
||||||
!MESSAGE Invalid configuration "$(CFG)" specified.
|
|
||||||
!MESSAGE You can specify a configuration when running NMAKE on this makefile
|
|
||||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "zlibvc.mak" CFG="zlibvc - Win32 Debug"
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE Possible choices for configuration are:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE "zlibvc - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
|
||||||
!MESSAGE "zlibvc - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
|
||||||
!MESSAGE
|
|
||||||
!ERROR An invalid configuration is specified.
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
!IF "$(OS)" == "Windows_NT"
|
|
||||||
NULL=
|
|
||||||
!ELSE
|
|
||||||
NULL=nul
|
|
||||||
!ENDIF
|
|
||||||
################################################################################
|
|
||||||
# Begin Project
|
|
||||||
# PROP Target_Last_Scanned "zlibvc - Win32 Debug"
|
|
||||||
CPP=cl.exe
|
|
||||||
RSC=rc.exe
|
|
||||||
MTL=mktyplib.exe
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 0
|
|
||||||
# PROP BASE Output_Dir "Release"
|
|
||||||
# PROP BASE Intermediate_Dir "Release"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 0
|
|
||||||
# PROP Output_Dir "Release"
|
|
||||||
# PROP Intermediate_Dir "Release"
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
OUTDIR=.\Release
|
|
||||||
INTDIR=.\Release
|
|
||||||
|
|
||||||
ALL : "$(OUTDIR)\zlib.dll" "$(OUTDIR)\zlibvc.bsc"
|
|
||||||
|
|
||||||
CLEAN :
|
|
||||||
-@erase "$(INTDIR)\adler32.obj"
|
|
||||||
-@erase "$(INTDIR)\adler32.sbr"
|
|
||||||
-@erase "$(INTDIR)\compress.obj"
|
|
||||||
-@erase "$(INTDIR)\compress.sbr"
|
|
||||||
-@erase "$(INTDIR)\crc32.obj"
|
|
||||||
-@erase "$(INTDIR)\crc32.sbr"
|
|
||||||
-@erase "$(INTDIR)\deflate.obj"
|
|
||||||
-@erase "$(INTDIR)\deflate.sbr"
|
|
||||||
-@erase "$(INTDIR)\gvmat32c.obj"
|
|
||||||
-@erase "$(INTDIR)\gvmat32c.sbr"
|
|
||||||
-@erase "$(INTDIR)\gzio.obj"
|
|
||||||
-@erase "$(INTDIR)\gzio.sbr"
|
|
||||||
-@erase "$(INTDIR)\infblock.obj"
|
|
||||||
-@erase "$(INTDIR)\infblock.sbr"
|
|
||||||
-@erase "$(INTDIR)\infcodes.obj"
|
|
||||||
-@erase "$(INTDIR)\infcodes.sbr"
|
|
||||||
-@erase "$(INTDIR)\inffast.obj"
|
|
||||||
-@erase "$(INTDIR)\inffast.sbr"
|
|
||||||
-@erase "$(INTDIR)\inflate.obj"
|
|
||||||
-@erase "$(INTDIR)\inflate.sbr"
|
|
||||||
-@erase "$(INTDIR)\inftrees.obj"
|
|
||||||
-@erase "$(INTDIR)\inftrees.sbr"
|
|
||||||
-@erase "$(INTDIR)\infutil.obj"
|
|
||||||
-@erase "$(INTDIR)\infutil.sbr"
|
|
||||||
-@erase "$(INTDIR)\trees.obj"
|
|
||||||
-@erase "$(INTDIR)\trees.sbr"
|
|
||||||
-@erase "$(INTDIR)\uncompr.obj"
|
|
||||||
-@erase "$(INTDIR)\uncompr.sbr"
|
|
||||||
-@erase "$(INTDIR)\zlib.res"
|
|
||||||
-@erase "$(INTDIR)\zutil.obj"
|
|
||||||
-@erase "$(INTDIR)\zutil.sbr"
|
|
||||||
-@erase "$(OUTDIR)\zlib.dll"
|
|
||||||
-@erase "$(OUTDIR)\zlib.exp"
|
|
||||||
-@erase "$(OUTDIR)\zlib.lib"
|
|
||||||
-@erase "$(OUTDIR)\zlib.map"
|
|
||||||
-@erase "$(OUTDIR)\zlibvc.bsc"
|
|
||||||
|
|
||||||
"$(OUTDIR)" :
|
|
||||||
if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
|
|
||||||
|
|
||||||
# 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 fdopen=_fdopen /D "WIN32" /D "_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "ASMV" /FR /YX /c
|
|
||||||
CPP_PROJ=/nologo /MT /W3 /GX /O2 /D "NDEBUG" /D fdopen=_fdopen /D "WIN32" /D\
|
|
||||||
"_WINDOWS" /D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL" /D "ASMV"\
|
|
||||||
/FR"$(INTDIR)/" /Fp"$(INTDIR)/zlibvc.pch" /YX /Fo"$(INTDIR)/" /c
|
|
||||||
CPP_OBJS=.\Release/
|
|
||||||
CPP_SBRS=.\Release/
|
|
||||||
# ADD BASE MTL /nologo /D "NDEBUG" /win32
|
|
||||||
# ADD MTL /nologo /D "NDEBUG" /win32
|
|
||||||
MTL_PROJ=/nologo /D "NDEBUG" /win32
|
|
||||||
# ADD BASE RSC /l 0x40c /d "NDEBUG"
|
|
||||||
# ADD RSC /l 0x40c /d "NDEBUG"
|
|
||||||
RSC_PROJ=/l 0x40c /fo"$(INTDIR)/zlib.res" /d "NDEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
BSC32_FLAGS=/nologo /o"$(OUTDIR)/zlibvc.bsc"
|
|
||||||
BSC32_SBRS= \
|
|
||||||
"$(INTDIR)\adler32.sbr" \
|
|
||||||
"$(INTDIR)\compress.sbr" \
|
|
||||||
"$(INTDIR)\crc32.sbr" \
|
|
||||||
"$(INTDIR)\deflate.sbr" \
|
|
||||||
"$(INTDIR)\gvmat32c.sbr" \
|
|
||||||
"$(INTDIR)\gzio.sbr" \
|
|
||||||
"$(INTDIR)\infblock.sbr" \
|
|
||||||
"$(INTDIR)\infcodes.sbr" \
|
|
||||||
"$(INTDIR)\inffast.sbr" \
|
|
||||||
"$(INTDIR)\inflate.sbr" \
|
|
||||||
"$(INTDIR)\inftrees.sbr" \
|
|
||||||
"$(INTDIR)\infutil.sbr" \
|
|
||||||
"$(INTDIR)\trees.sbr" \
|
|
||||||
"$(INTDIR)\uncompr.sbr" \
|
|
||||||
"$(INTDIR)\zutil.sbr"
|
|
||||||
|
|
||||||
"$(OUTDIR)\zlibvc.bsc" : "$(OUTDIR)" $(BSC32_SBRS)
|
|
||||||
$(BSC32) @<<
|
|
||||||
$(BSC32_FLAGS) $(BSC32_SBRS)
|
|
||||||
<<
|
|
||||||
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:"Release/zlib.dll"
|
|
||||||
LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
|
|
||||||
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo\
|
|
||||||
/subsystem:windows /dll /incremental:no /pdb:"$(OUTDIR)/zlib.pdb"\
|
|
||||||
/map:"$(INTDIR)/zlib.map" /machine:I386 /nodefaultlib /def:".\zlib.def"\
|
|
||||||
/out:"$(OUTDIR)/zlib.dll" /implib:"$(OUTDIR)/zlib.lib"
|
|
||||||
DEF_FILE= \
|
|
||||||
".\zlib.def"
|
|
||||||
LINK32_OBJS= \
|
|
||||||
"$(INTDIR)\adler32.obj" \
|
|
||||||
"$(INTDIR)\compress.obj" \
|
|
||||||
"$(INTDIR)\crc32.obj" \
|
|
||||||
"$(INTDIR)\deflate.obj" \
|
|
||||||
"$(INTDIR)\gvmat32c.obj" \
|
|
||||||
"$(INTDIR)\gzio.obj" \
|
|
||||||
"$(INTDIR)\infblock.obj" \
|
|
||||||
"$(INTDIR)\infcodes.obj" \
|
|
||||||
"$(INTDIR)\inffast.obj" \
|
|
||||||
"$(INTDIR)\inflate.obj" \
|
|
||||||
"$(INTDIR)\inftrees.obj" \
|
|
||||||
"$(INTDIR)\infutil.obj" \
|
|
||||||
"$(INTDIR)\trees.obj" \
|
|
||||||
"$(INTDIR)\uncompr.obj" \
|
|
||||||
"$(INTDIR)\zlib.res" \
|
|
||||||
"$(INTDIR)\zutil.obj" \
|
|
||||||
".\GVMAT32.obj"
|
|
||||||
|
|
||||||
"$(OUTDIR)\zlib.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
|
|
||||||
$(LINK32) @<<
|
|
||||||
$(LINK32_FLAGS) $(LINK32_OBJS)
|
|
||||||
<<
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 1
|
|
||||||
# PROP BASE Output_Dir "Debug"
|
|
||||||
# PROP BASE Intermediate_Dir "Debug"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 1
|
|
||||||
# PROP Output_Dir "Debug"
|
|
||||||
# PROP Intermediate_Dir "Debug"
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
OUTDIR=.\Debug
|
|
||||||
INTDIR=.\Debug
|
|
||||||
|
|
||||||
ALL : "$(OUTDIR)\zlib.dll"
|
|
||||||
|
|
||||||
CLEAN :
|
|
||||||
-@erase "$(INTDIR)\adler32.obj"
|
|
||||||
-@erase "$(INTDIR)\compress.obj"
|
|
||||||
-@erase "$(INTDIR)\crc32.obj"
|
|
||||||
-@erase "$(INTDIR)\deflate.obj"
|
|
||||||
-@erase "$(INTDIR)\gvmat32c.obj"
|
|
||||||
-@erase "$(INTDIR)\gzio.obj"
|
|
||||||
-@erase "$(INTDIR)\infblock.obj"
|
|
||||||
-@erase "$(INTDIR)\infcodes.obj"
|
|
||||||
-@erase "$(INTDIR)\inffast.obj"
|
|
||||||
-@erase "$(INTDIR)\inflate.obj"
|
|
||||||
-@erase "$(INTDIR)\inftrees.obj"
|
|
||||||
-@erase "$(INTDIR)\infutil.obj"
|
|
||||||
-@erase "$(INTDIR)\trees.obj"
|
|
||||||
-@erase "$(INTDIR)\uncompr.obj"
|
|
||||||
-@erase "$(INTDIR)\vc40.idb"
|
|
||||||
-@erase "$(INTDIR)\vc40.pdb"
|
|
||||||
-@erase "$(INTDIR)\zlib.res"
|
|
||||||
-@erase "$(INTDIR)\zutil.obj"
|
|
||||||
-@erase "$(OUTDIR)\zlib.dll"
|
|
||||||
-@erase "$(OUTDIR)\zlib.exp"
|
|
||||||
-@erase "$(OUTDIR)\zlib.ilk"
|
|
||||||
-@erase "$(OUTDIR)\zlib.lib"
|
|
||||||
-@erase "$(OUTDIR)\zlib.pdb"
|
|
||||||
|
|
||||||
"$(OUTDIR)" :
|
|
||||||
if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
|
|
||||||
|
|
||||||
# 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 /c
|
|
||||||
CPP_PROJ=/nologo /MTd /W3 /Gm /GX /Zi /Od /D "_DEBUG" /D "WIN32" /D "_WINDOWS"\
|
|
||||||
/D "_WINDLL" /D "_WIN32" /D "BUILD_ZLIBDLL" /D "ZLIB_DLL"\
|
|
||||||
/Fp"$(INTDIR)/zlibvc.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c
|
|
||||||
CPP_OBJS=.\Debug/
|
|
||||||
CPP_SBRS=.\.
|
|
||||||
# ADD BASE MTL /nologo /D "_DEBUG" /win32
|
|
||||||
# ADD MTL /nologo /D "_DEBUG" /win32
|
|
||||||
MTL_PROJ=/nologo /D "_DEBUG" /win32
|
|
||||||
# ADD BASE RSC /l 0x40c /d "_DEBUG"
|
|
||||||
# ADD RSC /l 0x40c /d "_DEBUG"
|
|
||||||
RSC_PROJ=/l 0x40c /fo"$(INTDIR)/zlib.res" /d "_DEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
BSC32_FLAGS=/nologo /o"$(OUTDIR)/zlibvc.bsc"
|
|
||||||
BSC32_SBRS= \
|
|
||||||
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"Debug/zlib.dll"
|
|
||||||
LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
|
|
||||||
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
|
|
||||||
/subsystem:windows /dll /incremental:yes /pdb:"$(OUTDIR)/zlib.pdb" /debug\
|
|
||||||
/machine:I386 /def:".\zlib.def" /out:"$(OUTDIR)/zlib.dll"\
|
|
||||||
/implib:"$(OUTDIR)/zlib.lib"
|
|
||||||
DEF_FILE= \
|
|
||||||
".\zlib.def"
|
|
||||||
LINK32_OBJS= \
|
|
||||||
"$(INTDIR)\adler32.obj" \
|
|
||||||
"$(INTDIR)\compress.obj" \
|
|
||||||
"$(INTDIR)\crc32.obj" \
|
|
||||||
"$(INTDIR)\deflate.obj" \
|
|
||||||
"$(INTDIR)\gvmat32c.obj" \
|
|
||||||
"$(INTDIR)\gzio.obj" \
|
|
||||||
"$(INTDIR)\infblock.obj" \
|
|
||||||
"$(INTDIR)\infcodes.obj" \
|
|
||||||
"$(INTDIR)\inffast.obj" \
|
|
||||||
"$(INTDIR)\inflate.obj" \
|
|
||||||
"$(INTDIR)\inftrees.obj" \
|
|
||||||
"$(INTDIR)\infutil.obj" \
|
|
||||||
"$(INTDIR)\trees.obj" \
|
|
||||||
"$(INTDIR)\uncompr.obj" \
|
|
||||||
"$(INTDIR)\zlib.res" \
|
|
||||||
"$(INTDIR)\zutil.obj" \
|
|
||||||
".\GVMAT32.obj"
|
|
||||||
|
|
||||||
"$(OUTDIR)\zlib.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
|
|
||||||
$(LINK32) @<<
|
|
||||||
$(LINK32_FLAGS) $(LINK32_OBJS)
|
|
||||||
<<
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
.c{$(CPP_OBJS)}.obj:
|
|
||||||
$(CPP) $(CPP_PROJ) $<
|
|
||||||
|
|
||||||
.cpp{$(CPP_OBJS)}.obj:
|
|
||||||
$(CPP) $(CPP_PROJ) $<
|
|
||||||
|
|
||||||
.cxx{$(CPP_OBJS)}.obj:
|
|
||||||
$(CPP) $(CPP_PROJ) $<
|
|
||||||
|
|
||||||
.c{$(CPP_SBRS)}.sbr:
|
|
||||||
$(CPP) $(CPP_PROJ) $<
|
|
||||||
|
|
||||||
.cpp{$(CPP_SBRS)}.sbr:
|
|
||||||
$(CPP) $(CPP_PROJ) $<
|
|
||||||
|
|
||||||
.cxx{$(CPP_SBRS)}.sbr:
|
|
||||||
$(CPP) $(CPP_PROJ) $<
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Begin Target
|
|
||||||
|
|
||||||
# Name "zlibvc - Win32 Release"
|
|
||||||
# Name "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\adler32.c
|
|
||||||
DEP_CPP_ADLER=\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\adler32.obj" : $(SOURCE) $(DEP_CPP_ADLER) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\adler32.sbr" : $(SOURCE) $(DEP_CPP_ADLER) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\adler32.obj" : $(SOURCE) $(DEP_CPP_ADLER) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\compress.c
|
|
||||||
DEP_CPP_COMPR=\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\compress.obj" : $(SOURCE) $(DEP_CPP_COMPR) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\compress.sbr" : $(SOURCE) $(DEP_CPP_COMPR) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\compress.obj" : $(SOURCE) $(DEP_CPP_COMPR) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\crc32.c
|
|
||||||
DEP_CPP_CRC32=\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\crc32.obj" : $(SOURCE) $(DEP_CPP_CRC32) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\crc32.sbr" : $(SOURCE) $(DEP_CPP_CRC32) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\crc32.obj" : $(SOURCE) $(DEP_CPP_CRC32) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\deflate.c
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
DEP_CPP_DEFLA=\
|
|
||||||
".\deflate.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\deflate.obj" : $(SOURCE) $(DEP_CPP_DEFLA) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\deflate.sbr" : $(SOURCE) $(DEP_CPP_DEFLA) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
DEP_CPP_DEFLA=\
|
|
||||||
".\deflate.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
NODEP_CPP_DEFLA=\
|
|
||||||
".\local"\
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\deflate.obj" : $(SOURCE) $(DEP_CPP_DEFLA) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\gzio.c
|
|
||||||
DEP_CPP_GZIO_=\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\gzio.obj" : $(SOURCE) $(DEP_CPP_GZIO_) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\gzio.sbr" : $(SOURCE) $(DEP_CPP_GZIO_) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\gzio.obj" : $(SOURCE) $(DEP_CPP_GZIO_) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\infblock.c
|
|
||||||
DEP_CPP_INFBL=\
|
|
||||||
".\infblock.h"\
|
|
||||||
".\infcodes.h"\
|
|
||||||
".\inftrees.h"\
|
|
||||||
".\infutil.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\infblock.obj" : $(SOURCE) $(DEP_CPP_INFBL) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\infblock.sbr" : $(SOURCE) $(DEP_CPP_INFBL) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\infblock.obj" : $(SOURCE) $(DEP_CPP_INFBL) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\infcodes.c
|
|
||||||
DEP_CPP_INFCO=\
|
|
||||||
".\infblock.h"\
|
|
||||||
".\infcodes.h"\
|
|
||||||
".\inffast.h"\
|
|
||||||
".\inftrees.h"\
|
|
||||||
".\infutil.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\infcodes.obj" : $(SOURCE) $(DEP_CPP_INFCO) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\infcodes.sbr" : $(SOURCE) $(DEP_CPP_INFCO) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\infcodes.obj" : $(SOURCE) $(DEP_CPP_INFCO) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\inffast.c
|
|
||||||
DEP_CPP_INFFA=\
|
|
||||||
".\infblock.h"\
|
|
||||||
".\infcodes.h"\
|
|
||||||
".\inffast.h"\
|
|
||||||
".\inftrees.h"\
|
|
||||||
".\infutil.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\inffast.obj" : $(SOURCE) $(DEP_CPP_INFFA) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\inffast.sbr" : $(SOURCE) $(DEP_CPP_INFFA) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\inffast.obj" : $(SOURCE) $(DEP_CPP_INFFA) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\inflate.c
|
|
||||||
DEP_CPP_INFLA=\
|
|
||||||
".\infblock.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\inflate.obj" : $(SOURCE) $(DEP_CPP_INFLA) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\inflate.sbr" : $(SOURCE) $(DEP_CPP_INFLA) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\inflate.obj" : $(SOURCE) $(DEP_CPP_INFLA) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\inftrees.c
|
|
||||||
DEP_CPP_INFTR=\
|
|
||||||
".\inftrees.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\inftrees.obj" : $(SOURCE) $(DEP_CPP_INFTR) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\inftrees.sbr" : $(SOURCE) $(DEP_CPP_INFTR) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\inftrees.obj" : $(SOURCE) $(DEP_CPP_INFTR) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\infutil.c
|
|
||||||
DEP_CPP_INFUT=\
|
|
||||||
".\infblock.h"\
|
|
||||||
".\infcodes.h"\
|
|
||||||
".\inftrees.h"\
|
|
||||||
".\infutil.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\infutil.obj" : $(SOURCE) $(DEP_CPP_INFUT) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\infutil.sbr" : $(SOURCE) $(DEP_CPP_INFUT) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\infutil.obj" : $(SOURCE) $(DEP_CPP_INFUT) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\trees.c
|
|
||||||
DEP_CPP_TREES=\
|
|
||||||
".\deflate.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\trees.obj" : $(SOURCE) $(DEP_CPP_TREES) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\trees.sbr" : $(SOURCE) $(DEP_CPP_TREES) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\trees.obj" : $(SOURCE) $(DEP_CPP_TREES) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\uncompr.c
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
DEP_CPP_UNCOM=\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\uncompr.obj" : $(SOURCE) $(DEP_CPP_UNCOM) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\uncompr.sbr" : $(SOURCE) $(DEP_CPP_UNCOM) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
DEP_CPP_UNCOM=\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
|
|
||||||
NODEP_CPP_UNCOM=\
|
|
||||||
".\uncompress"\
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\uncompr.obj" : $(SOURCE) $(DEP_CPP_UNCOM) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\zutil.c
|
|
||||||
DEP_CPP_ZUTIL=\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\zutil.obj" : $(SOURCE) $(DEP_CPP_ZUTIL) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\zutil.sbr" : $(SOURCE) $(DEP_CPP_ZUTIL) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\zutil.obj" : $(SOURCE) $(DEP_CPP_ZUTIL) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\zlib.rc
|
|
||||||
|
|
||||||
"$(INTDIR)\zlib.res" : $(SOURCE) "$(INTDIR)"
|
|
||||||
$(RSC) $(RSC_PROJ) $(SOURCE)
|
|
||||||
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\zlib.def
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\GVMAT32.obj
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
################################################################################
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=.\gvmat32c.c
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
|
||||||
|
|
||||||
DEP_CPP_GVMAT=\
|
|
||||||
".\deflate.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\gvmat32c.obj" : $(SOURCE) $(DEP_CPP_GVMAT) "$(INTDIR)"
|
|
||||||
|
|
||||||
"$(INTDIR)\gvmat32c.sbr" : $(SOURCE) $(DEP_CPP_GVMAT) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
|
||||||
|
|
||||||
DEP_CPP_GVMAT=\
|
|
||||||
".\deflate.h"\
|
|
||||||
".\zconf.h"\
|
|
||||||
".\zlib.h"\
|
|
||||||
".\zutil.h"\
|
|
||||||
|
|
||||||
|
|
||||||
"$(INTDIR)\gvmat32c.obj" : $(SOURCE) $(DEP_CPP_GVMAT) "$(INTDIR)"
|
|
||||||
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# End Source File
|
|
||||||
# End Target
|
|
||||||
# End Project
|
|
||||||
################################################################################
|
|
||||||
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;
|
||||||
|
}
|
||||||
1095
contrib/inflate86/inffast.S
Normal file
1095
contrib/inflate86/inffast.S
Normal file
File diff suppressed because it is too large
Load Diff
38
contrib/minizip/ChangeLogUnzip
Normal file
38
contrib/minizip/ChangeLogUnzip
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
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 ../../libz.a
|
||||||
|
ZIP_OBJS = minizip.o zip.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
|
||||||
508
contrib/minizip/miniunz.c
Normal file
508
contrib/minizip/miniunz.c
Normal file
@@ -0,0 +1,508 @@
|
|||||||
|
#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)
|
||||||
|
|
||||||
|
/*
|
||||||
|
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 = 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://wwww.winimage/zLibDll/unzip.htm\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)
|
||||||
|
unzFile uf;
|
||||||
|
const int* popt_extract_without_path;
|
||||||
|
int* popt_overwrite;
|
||||||
|
{
|
||||||
|
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 = unzOpenCurrentFile(uf);
|
||||||
|
if (err!=UNZ_OK)
|
||||||
|
{
|
||||||
|
printf("error %d with zipfile in unzOpenCurrentFile\n",err);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (((*popt_overwrite)==0) && (err==UNZ_OK))
|
||||||
|
{
|
||||||
|
char rep;
|
||||||
|
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);
|
||||||
|
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)
|
||||||
|
unzFile uf;
|
||||||
|
int opt_extract_without_path;
|
||||||
|
int opt_overwrite;
|
||||||
|
{
|
||||||
|
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) != 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)
|
||||||
|
unzFile uf;
|
||||||
|
const char* filename;
|
||||||
|
int opt_extract_without_path;
|
||||||
|
int opt_overwrite;
|
||||||
|
{
|
||||||
|
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) == 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;
|
||||||
|
int i;
|
||||||
|
int opt_do_list=0;
|
||||||
|
int opt_do_extract=1;
|
||||||
|
int opt_do_extract_withoutpath=0;
|
||||||
|
int opt_overwrite=0;
|
||||||
|
char filename_try[512];
|
||||||
|
unzFile uf=NULL;
|
||||||
|
|
||||||
|
do_banner();
|
||||||
|
if (argc==1)
|
||||||
|
{
|
||||||
|
do_help();
|
||||||
|
exit(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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (zipfilename == NULL)
|
||||||
|
zipfilename = argv[i];
|
||||||
|
else if (filename_to_extract==NULL)
|
||||||
|
filename_to_extract = argv[i] ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (zipfilename!=NULL)
|
||||||
|
{
|
||||||
|
strcpy(filename_try,zipfilename);
|
||||||
|
uf = unzOpen(zipfilename);
|
||||||
|
if (uf==NULL)
|
||||||
|
{
|
||||||
|
strcat(filename_try,".zip");
|
||||||
|
uf = unzOpen(filename_try);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (uf==NULL)
|
||||||
|
{
|
||||||
|
printf("Cannot open %s or %s.zip\n",zipfilename,zipfilename);
|
||||||
|
exit (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);
|
||||||
|
else
|
||||||
|
return do_extract_onefile(uf,filename_to_extract,
|
||||||
|
opt_do_extract_withoutpath,opt_overwrite);
|
||||||
|
}
|
||||||
|
unzCloseCurrentFile(uf);
|
||||||
|
|
||||||
|
return 0; /* to avoid warning */
|
||||||
|
}
|
||||||
302
contrib/minizip/minizip.c
Normal file
302
contrib/minizip/minizip.c
Normal file
@@ -0,0 +1,302 @@
|
|||||||
|
#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"
|
||||||
|
|
||||||
|
|
||||||
|
#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];
|
||||||
|
int len = strlen(f);
|
||||||
|
strcpy(name, f);
|
||||||
|
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://wwww.winimage/zLibDll/unzip.htm\n\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
void do_help()
|
||||||
|
{
|
||||||
|
printf("Usage : minizip [-o] file.zip [files_to_add]\n\n") ;
|
||||||
|
}
|
||||||
|
|
||||||
|
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];
|
||||||
|
int zipok;
|
||||||
|
int err=0;
|
||||||
|
int size_buf=0;
|
||||||
|
void* buf=NULL,
|
||||||
|
|
||||||
|
|
||||||
|
do_banner();
|
||||||
|
if (argc==1)
|
||||||
|
{
|
||||||
|
do_help();
|
||||||
|
exit(0);
|
||||||
|
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>='0') && (c<='9'))
|
||||||
|
opt_compress_level = c-'0';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
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 ;
|
||||||
|
strcpy(filename_try,argv[zipfilenamearg]);
|
||||||
|
len=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==0)
|
||||||
|
if (check_exist_file(filename_try)!=0)
|
||||||
|
{
|
||||||
|
char rep;
|
||||||
|
do
|
||||||
|
{
|
||||||
|
char answer[128];
|
||||||
|
printf("The file %s exist. Overwrite ? [y]es, [n]o : ",filename_try);
|
||||||
|
scanf("%1s",answer);
|
||||||
|
rep = answer[0] ;
|
||||||
|
if ((rep>='a') && (rep<='z'))
|
||||||
|
rep -= 0x20;
|
||||||
|
}
|
||||||
|
while ((rep!='Y') && (rep!='N'));
|
||||||
|
if (rep=='N')
|
||||||
|
zipok = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (zipok==1)
|
||||||
|
{
|
||||||
|
zipFile zf;
|
||||||
|
int errclose;
|
||||||
|
zf = zipOpen(filename_try,0);
|
||||||
|
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;
|
||||||
|
|
||||||
|
zi.tmz_date.tm_sec = zi.tmz_date.tm_min = zi.tmz_date.tm_hour =
|
||||||
|
zi.tmz_date.tm_mday = zi.tmz_date.tm_min = 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 (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 = 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));
|
||||||
|
|
||||||
|
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);
|
||||||
|
exit(0);
|
||||||
|
return 0; /* to avoid warning */
|
||||||
|
}
|
||||||
37
contrib/minizip/readme.txt
Normal file
37
contrib/minizip/readme.txt
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
|
||||||
|
UnZip 0.15 additionnal library
|
||||||
|
|
||||||
|
|
||||||
|
This unzip package allow extract file from .ZIP file, compatible with
|
||||||
|
PKZip 2.04g, WinZip, InfoZip tools and compatible.
|
||||||
|
|
||||||
|
Multi volume ZipFile (span) are not supported, and old compression used by old
|
||||||
|
PKZip 1.x are not supported.
|
||||||
|
|
||||||
|
See probdesc.zip from PKWare for specification of .ZIP format.
|
||||||
|
|
||||||
|
What is Unzip
|
||||||
|
The Zlib library support the deflate compression and the creation of gzip (.gz)
|
||||||
|
file. Zlib is free and small.
|
||||||
|
The .Zip format, which can contain several compressed files (.gz can containt
|
||||||
|
only one file) is a very popular format. This is why I've written a package for reading file compressed in Zipfile.
|
||||||
|
|
||||||
|
Using Unzip package
|
||||||
|
|
||||||
|
You need source of Zlib (get zlib111.zip and read zlib.h).
|
||||||
|
Get unzlb015.zip and read unzip.h (whith documentation of unzip functions)
|
||||||
|
|
||||||
|
The Unzip package is only two file : unzip.h and unzip.c. But it use the Zlib
|
||||||
|
files.
|
||||||
|
unztst.c is a simple sample program, which list file in a zipfile and display
|
||||||
|
README.TXT or FILE_ID.DIZ (if these files are found).
|
||||||
|
miniunz.c is a mini unzip program.
|
||||||
|
|
||||||
|
I'm also currenlyt writing a zipping portion (zip.h, zip.c and test with minizip.c)
|
||||||
|
|
||||||
|
Please email me for feedback.
|
||||||
|
I hope my source is compatible with Unix system, but I need your help for be sure
|
||||||
|
|
||||||
|
Latest revision : Mar 04th, 1998
|
||||||
|
|
||||||
|
Check http://www.winimage.com/zLibDll/unzip.html for up to date info.
|
||||||
1294
contrib/minizip/unzip.c
Normal file
1294
contrib/minizip/unzip.c
Normal file
File diff suppressed because it is too large
Load Diff
15
contrib/minizip/unzip.def
Normal file
15
contrib/minizip/unzip.def
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
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
|
||||||
275
contrib/minizip/unzip.h
Normal file
275
contrib/minizip/unzip.h
Normal file
@@ -0,0 +1,275 @@
|
|||||||
|
/* unzip.h -- IO for uncompress .zip files using zlib
|
||||||
|
Version 0.15 beta, Mar 19th, 1998,
|
||||||
|
|
||||||
|
Copyright (C) 1998 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
|
||||||
|
|
||||||
|
THIS IS AN ALPHA VERSION. AT THIS STAGE OF DEVELOPPEMENT, SOMES API OR STRUCTURE
|
||||||
|
CAN CHANGE IN FUTURE VERSION !!
|
||||||
|
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
|
||||||
|
ftp://ftp.cdrom.com/pub/infozip/doc/appnote-970311-iz.zip
|
||||||
|
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
|
||||||
|
|
||||||
|
#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 NT computer "c:\\zlib\\zlib111.zip" or on an Unix computer
|
||||||
|
"zlib/zlib111.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 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
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
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 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 */
|
||||||
718
contrib/minizip/zip.c
Normal file
718
contrib/minizip/zip.c
Normal file
@@ -0,0 +1,718 @@
|
|||||||
|
/* zip.c -- IO on .zip files using zlib
|
||||||
|
Version 0.15 beta, Mar 19th, 1998,
|
||||||
|
|
||||||
|
Read zip.h for more info
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include "zlib.h"
|
||||||
|
#include "zip.h"
|
||||||
|
|
||||||
|
#ifdef STDC
|
||||||
|
# include <stddef.h>
|
||||||
|
# include <string.h>
|
||||||
|
# include <stdlib.h>
|
||||||
|
#endif
|
||||||
|
#ifdef NO_ERRNO_H
|
||||||
|
extern int errno;
|
||||||
|
#else
|
||||||
|
# include <errno.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef local
|
||||||
|
# define local static
|
||||||
|
#endif
|
||||||
|
/* compile with -Dlocal if your debugger can't find static symbols */
|
||||||
|
|
||||||
|
#ifndef VERSIONMADEBY
|
||||||
|
# define VERSIONMADEBY (0x0) /* platform depedent */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef Z_BUFSIZE
|
||||||
|
#define Z_BUFSIZE (16384)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef Z_MAXFILENAMEINZIP
|
||||||
|
#define Z_MAXFILENAMEINZIP (256)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef ALLOC
|
||||||
|
# define ALLOC(size) (malloc(size))
|
||||||
|
#endif
|
||||||
|
#ifndef TRYFREE
|
||||||
|
# define TRYFREE(p) {if (p) free(p);}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
#define SIZECENTRALDIRITEM (0x2e)
|
||||||
|
#define SIZEZIPLOCALHEADER (0x1e)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* 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
|
||||||
|
|
||||||
|
const char zip_copyright[] =
|
||||||
|
" zip 0.15 Copyright 1998 Gilles Vollant ";
|
||||||
|
|
||||||
|
|
||||||
|
#define SIZEDATA_INDATABLOCK (4096-(4*4))
|
||||||
|
|
||||||
|
#define LOCALHEADERMAGIC (0x04034b50)
|
||||||
|
#define CENTRALHEADERMAGIC (0x02014b50)
|
||||||
|
#define ENDHEADERMAGIC (0x06054b50)
|
||||||
|
|
||||||
|
#define FLAG_LOCALHEADER_OFFSET (0x06)
|
||||||
|
#define CRC_LOCALHEADER_OFFSET (0x0e)
|
||||||
|
|
||||||
|
#define SIZECENTRALHEADER (0x2e) /* 46 */
|
||||||
|
|
||||||
|
typedef struct linkedlist_datablock_internal_s
|
||||||
|
{
|
||||||
|
struct linkedlist_datablock_internal_s* next_datablock;
|
||||||
|
uLong avail_in_this_block;
|
||||||
|
uLong filled_in_this_block;
|
||||||
|
uLong unused; /* for future use and alignement */
|
||||||
|
unsigned char data[SIZEDATA_INDATABLOCK];
|
||||||
|
} linkedlist_datablock_internal;
|
||||||
|
|
||||||
|
typedef struct linkedlist_data_s
|
||||||
|
{
|
||||||
|
linkedlist_datablock_internal* first_block;
|
||||||
|
linkedlist_datablock_internal* last_block;
|
||||||
|
} linkedlist_data;
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
z_stream stream; /* zLib stream structure for inflate */
|
||||||
|
int stream_initialised; /* 1 is stream is initialised */
|
||||||
|
uInt pos_in_buffered_data; /* last written byte in buffered_data */
|
||||||
|
|
||||||
|
uLong pos_local_header; /* offset of the local header of the file
|
||||||
|
currenty writing */
|
||||||
|
char* central_header; /* central header data for the current file */
|
||||||
|
uLong size_centralheader; /* size of the central header for cur file */
|
||||||
|
uLong flag; /* flag of the file currently writing */
|
||||||
|
|
||||||
|
int method; /* compression method of file currenty wr.*/
|
||||||
|
Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/
|
||||||
|
uLong dosDate;
|
||||||
|
uLong crc32;
|
||||||
|
} curfile_info;
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
FILE * filezip;
|
||||||
|
linkedlist_data central_dir;/* datablock with central dir in construction*/
|
||||||
|
int in_opened_file_inzip; /* 1 if a file in the zip is currently writ.*/
|
||||||
|
curfile_info ci; /* info on the file curretly writing */
|
||||||
|
|
||||||
|
uLong begin_pos; /* position of the beginning of the zipfile */
|
||||||
|
uLong number_entry;
|
||||||
|
} zip_internal;
|
||||||
|
|
||||||
|
local linkedlist_datablock_internal* allocate_new_datablock()
|
||||||
|
{
|
||||||
|
linkedlist_datablock_internal* ldi;
|
||||||
|
ldi = (linkedlist_datablock_internal*)
|
||||||
|
ALLOC(sizeof(linkedlist_datablock_internal));
|
||||||
|
if (ldi!=NULL)
|
||||||
|
{
|
||||||
|
ldi->next_datablock = NULL ;
|
||||||
|
ldi->filled_in_this_block = 0 ;
|
||||||
|
ldi->avail_in_this_block = SIZEDATA_INDATABLOCK ;
|
||||||
|
}
|
||||||
|
return ldi;
|
||||||
|
}
|
||||||
|
|
||||||
|
local void free_datablock(ldi)
|
||||||
|
linkedlist_datablock_internal* ldi;
|
||||||
|
{
|
||||||
|
while (ldi!=NULL)
|
||||||
|
{
|
||||||
|
linkedlist_datablock_internal* ldinext = ldi->next_datablock;
|
||||||
|
TRYFREE(ldi);
|
||||||
|
ldi = ldinext;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
local void init_linkedlist(ll)
|
||||||
|
linkedlist_data* ll;
|
||||||
|
{
|
||||||
|
ll->first_block = ll->last_block = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
local void free_linkedlist(ll)
|
||||||
|
linkedlist_data* ll;
|
||||||
|
{
|
||||||
|
free_datablock(ll->first_block);
|
||||||
|
ll->first_block = ll->last_block = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
local int add_data_in_datablock(ll,buf,len)
|
||||||
|
linkedlist_data* ll;
|
||||||
|
const void* buf;
|
||||||
|
uLong len;
|
||||||
|
{
|
||||||
|
linkedlist_datablock_internal* ldi;
|
||||||
|
const unsigned char* from_copy;
|
||||||
|
|
||||||
|
if (ll==NULL)
|
||||||
|
return ZIP_INTERNALERROR;
|
||||||
|
|
||||||
|
if (ll->last_block == NULL)
|
||||||
|
{
|
||||||
|
ll->first_block = ll->last_block = allocate_new_datablock();
|
||||||
|
if (ll->first_block == NULL)
|
||||||
|
return ZIP_INTERNALERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
ldi = ll->last_block;
|
||||||
|
from_copy = (unsigned char*)buf;
|
||||||
|
|
||||||
|
while (len>0)
|
||||||
|
{
|
||||||
|
uInt copy_this;
|
||||||
|
uInt i;
|
||||||
|
unsigned char* to_copy;
|
||||||
|
|
||||||
|
if (ldi->avail_in_this_block==0)
|
||||||
|
{
|
||||||
|
ldi->next_datablock = allocate_new_datablock();
|
||||||
|
if (ldi->next_datablock == NULL)
|
||||||
|
return ZIP_INTERNALERROR;
|
||||||
|
ldi = ldi->next_datablock ;
|
||||||
|
ll->last_block = ldi;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ldi->avail_in_this_block < len)
|
||||||
|
copy_this = (uInt)ldi->avail_in_this_block;
|
||||||
|
else
|
||||||
|
copy_this = (uInt)len;
|
||||||
|
|
||||||
|
to_copy = &(ldi->data[ldi->filled_in_this_block]);
|
||||||
|
|
||||||
|
for (i=0;i<copy_this;i++)
|
||||||
|
*(to_copy+i)=*(from_copy+i);
|
||||||
|
|
||||||
|
ldi->filled_in_this_block += copy_this;
|
||||||
|
ldi->avail_in_this_block -= copy_this;
|
||||||
|
from_copy += copy_this ;
|
||||||
|
len -= copy_this;
|
||||||
|
}
|
||||||
|
return ZIP_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
local int write_datablock(fout,ll)
|
||||||
|
FILE * fout;
|
||||||
|
linkedlist_data* ll;
|
||||||
|
{
|
||||||
|
linkedlist_datablock_internal* ldi;
|
||||||
|
ldi = ll->first_block;
|
||||||
|
while (ldi!=NULL)
|
||||||
|
{
|
||||||
|
if (ldi->filled_in_this_block > 0)
|
||||||
|
if (fwrite(ldi->data,(uInt)ldi->filled_in_this_block,1,fout)!=1)
|
||||||
|
return ZIP_ERRNO;
|
||||||
|
ldi = ldi->next_datablock;
|
||||||
|
}
|
||||||
|
return ZIP_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/****************************************************************************/
|
||||||
|
|
||||||
|
/* ===========================================================================
|
||||||
|
Outputs a long in LSB order to the given file
|
||||||
|
nbByte == 1, 2 or 4 (byte, short or long)
|
||||||
|
*/
|
||||||
|
|
||||||
|
local int ziplocal_putValue OF((FILE *file, uLong x, int nbByte));
|
||||||
|
local int ziplocal_putValue (file, x, nbByte)
|
||||||
|
FILE *file;
|
||||||
|
uLong x;
|
||||||
|
int nbByte;
|
||||||
|
{
|
||||||
|
unsigned char buf[4];
|
||||||
|
int n;
|
||||||
|
for (n = 0; n < nbByte; n++) {
|
||||||
|
buf[n] = (unsigned char)(x & 0xff);
|
||||||
|
x >>= 8;
|
||||||
|
}
|
||||||
|
if (fwrite(buf,nbByte,1,file)!=1)
|
||||||
|
return ZIP_ERRNO;
|
||||||
|
else
|
||||||
|
return ZIP_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
local void ziplocal_putValue_inmemory OF((void* dest, uLong x, int nbByte));
|
||||||
|
local void ziplocal_putValue_inmemory (dest, x, nbByte)
|
||||||
|
void* dest;
|
||||||
|
uLong x;
|
||||||
|
int nbByte;
|
||||||
|
{
|
||||||
|
unsigned char* buf=(unsigned char*)dest;
|
||||||
|
int n;
|
||||||
|
for (n = 0; n < nbByte; n++) {
|
||||||
|
buf[n] = (unsigned char)(x & 0xff);
|
||||||
|
x >>= 8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/****************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
local uLong ziplocal_TmzDateToDosDate(ptm,dosDate)
|
||||||
|
tm_zip* ptm;
|
||||||
|
uLong dosDate;
|
||||||
|
{
|
||||||
|
uLong year = (uLong)ptm->tm_year;
|
||||||
|
if (year>1980)
|
||||||
|
year-=1980;
|
||||||
|
else if (year>80)
|
||||||
|
year-=80;
|
||||||
|
return
|
||||||
|
(uLong) (((ptm->tm_mday) + (32 * (ptm->tm_mon+1)) + (512 * year)) << 16) |
|
||||||
|
((ptm->tm_sec/2) + (32* ptm->tm_min) + (2048 * (uLong)ptm->tm_hour));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/****************************************************************************/
|
||||||
|
|
||||||
|
extern zipFile ZEXPORT zipOpen (pathname, append)
|
||||||
|
const char *pathname;
|
||||||
|
int append;
|
||||||
|
{
|
||||||
|
zip_internal ziinit;
|
||||||
|
zip_internal* zi;
|
||||||
|
|
||||||
|
ziinit.filezip = fopen(pathname,(append == 0) ? "wb" : "ab");
|
||||||
|
if (ziinit.filezip == NULL)
|
||||||
|
return NULL;
|
||||||
|
ziinit.begin_pos = ftell(ziinit.filezip);
|
||||||
|
ziinit.in_opened_file_inzip = 0;
|
||||||
|
ziinit.ci.stream_initialised = 0;
|
||||||
|
ziinit.number_entry = 0;
|
||||||
|
init_linkedlist(&(ziinit.central_dir));
|
||||||
|
|
||||||
|
|
||||||
|
zi = (zip_internal*)ALLOC(sizeof(zip_internal));
|
||||||
|
if (zi==NULL)
|
||||||
|
{
|
||||||
|
fclose(ziinit.filezip);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
*zi = ziinit;
|
||||||
|
return (zipFile)zi;
|
||||||
|
}
|
||||||
|
|
||||||
|
extern int ZEXPORT zipOpenNewFileInZip (file, filename, zipfi,
|
||||||
|
extrafield_local, size_extrafield_local,
|
||||||
|
extrafield_global, size_extrafield_global,
|
||||||
|
comment, method, level)
|
||||||
|
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;
|
||||||
|
{
|
||||||
|
zip_internal* zi;
|
||||||
|
uInt size_filename;
|
||||||
|
uInt size_comment;
|
||||||
|
uInt i;
|
||||||
|
int err = ZIP_OK;
|
||||||
|
|
||||||
|
if (file == NULL)
|
||||||
|
return ZIP_PARAMERROR;
|
||||||
|
if ((method!=0) && (method!=Z_DEFLATED))
|
||||||
|
return ZIP_PARAMERROR;
|
||||||
|
|
||||||
|
zi = (zip_internal*)file;
|
||||||
|
|
||||||
|
if (zi->in_opened_file_inzip == 1)
|
||||||
|
{
|
||||||
|
err = zipCloseFileInZip (file);
|
||||||
|
if (err != ZIP_OK)
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (filename==NULL)
|
||||||
|
filename="-";
|
||||||
|
|
||||||
|
if (comment==NULL)
|
||||||
|
size_comment = 0;
|
||||||
|
else
|
||||||
|
size_comment = strlen(comment);
|
||||||
|
|
||||||
|
size_filename = strlen(filename);
|
||||||
|
|
||||||
|
if (zipfi == NULL)
|
||||||
|
zi->ci.dosDate = 0;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (zipfi->dosDate != 0)
|
||||||
|
zi->ci.dosDate = zipfi->dosDate;
|
||||||
|
else zi->ci.dosDate = ziplocal_TmzDateToDosDate(&zipfi->tmz_date,zipfi->dosDate);
|
||||||
|
}
|
||||||
|
|
||||||
|
zi->ci.flag = 0;
|
||||||
|
if ((level==8) || (level==9))
|
||||||
|
zi->ci.flag |= 2;
|
||||||
|
if ((level==2))
|
||||||
|
zi->ci.flag |= 4;
|
||||||
|
if ((level==1))
|
||||||
|
zi->ci.flag |= 6;
|
||||||
|
|
||||||
|
zi->ci.crc32 = 0;
|
||||||
|
zi->ci.method = method;
|
||||||
|
zi->ci.stream_initialised = 0;
|
||||||
|
zi->ci.pos_in_buffered_data = 0;
|
||||||
|
zi->ci.pos_local_header = ftell(zi->filezip);
|
||||||
|
zi->ci.size_centralheader = SIZECENTRALHEADER + size_filename +
|
||||||
|
size_extrafield_global + size_comment;
|
||||||
|
zi->ci.central_header = (char*)ALLOC((uInt)zi->ci.size_centralheader);
|
||||||
|
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header,(uLong)CENTRALHEADERMAGIC,4);
|
||||||
|
/* version info */
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+4,(uLong)VERSIONMADEBY,2);
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+6,(uLong)20,2);
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+8,(uLong)zi->ci.flag,2);
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+10,(uLong)zi->ci.method,2);
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+12,(uLong)zi->ci.dosDate,4);
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+16,(uLong)0,4); /*crc*/
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+20,(uLong)0,4); /*compr size*/
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+24,(uLong)0,4); /*uncompr size*/
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+28,(uLong)size_filename,2);
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+30,(uLong)size_extrafield_global,2);
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+32,(uLong)size_comment,2);
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+34,(uLong)0,2); /*disk nm start*/
|
||||||
|
|
||||||
|
if (zipfi==NULL)
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+36,(uLong)0,2);
|
||||||
|
else
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+36,(uLong)zipfi->internal_fa,2);
|
||||||
|
|
||||||
|
if (zipfi==NULL)
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+38,(uLong)0,4);
|
||||||
|
else
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+38,(uLong)zipfi->external_fa,4);
|
||||||
|
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+42,(uLong)zi->ci.pos_local_header,4);
|
||||||
|
|
||||||
|
for (i=0;i<size_filename;i++)
|
||||||
|
*(zi->ci.central_header+SIZECENTRALHEADER+i) = *(filename+i);
|
||||||
|
|
||||||
|
for (i=0;i<size_extrafield_global;i++)
|
||||||
|
*(zi->ci.central_header+SIZECENTRALHEADER+size_filename+i) =
|
||||||
|
*(((const char*)extrafield_global)+i);
|
||||||
|
|
||||||
|
for (i=0;i<size_comment;i++)
|
||||||
|
*(zi->ci.central_header+SIZECENTRALHEADER+size_filename+
|
||||||
|
size_extrafield_global+i) = *(filename+i);
|
||||||
|
if (zi->ci.central_header == NULL)
|
||||||
|
return ZIP_INTERNALERROR;
|
||||||
|
|
||||||
|
/* write the local header */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)LOCALHEADERMAGIC,4);
|
||||||
|
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)20,2);/* version needed to extract */
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)zi->ci.flag,2);
|
||||||
|
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)zi->ci.method,2);
|
||||||
|
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)zi->ci.dosDate,4);
|
||||||
|
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)0,4); /* crc 32, unknown */
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)0,4); /* compressed size, unknown */
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)0,4); /* uncompressed size, unknown */
|
||||||
|
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)size_filename,2);
|
||||||
|
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)size_extrafield_local,2);
|
||||||
|
|
||||||
|
if ((err==ZIP_OK) && (size_filename>0))
|
||||||
|
if (fwrite(filename,(uInt)size_filename,1,zi->filezip)!=1)
|
||||||
|
err = ZIP_ERRNO;
|
||||||
|
|
||||||
|
if ((err==ZIP_OK) && (size_extrafield_local>0))
|
||||||
|
if (fwrite(extrafield_local,(uInt)size_extrafield_local,1,zi->filezip)
|
||||||
|
!=1)
|
||||||
|
err = ZIP_ERRNO;
|
||||||
|
|
||||||
|
zi->ci.stream.avail_in = (uInt)0;
|
||||||
|
zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
|
||||||
|
zi->ci.stream.next_out = zi->ci.buffered_data;
|
||||||
|
zi->ci.stream.total_in = 0;
|
||||||
|
zi->ci.stream.total_out = 0;
|
||||||
|
|
||||||
|
if ((err==ZIP_OK) && (zi->ci.method == Z_DEFLATED))
|
||||||
|
{
|
||||||
|
zi->ci.stream.zalloc = (alloc_func)0;
|
||||||
|
zi->ci.stream.zfree = (free_func)0;
|
||||||
|
zi->ci.stream.opaque = (voidpf)0;
|
||||||
|
|
||||||
|
err = deflateInit2(&zi->ci.stream, level,
|
||||||
|
Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, 0);
|
||||||
|
|
||||||
|
if (err==Z_OK)
|
||||||
|
zi->ci.stream_initialised = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (err==Z_OK)
|
||||||
|
zi->in_opened_file_inzip = 1;
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
extern int ZEXPORT zipWriteInFileInZip (file, buf, len)
|
||||||
|
zipFile file;
|
||||||
|
const voidp buf;
|
||||||
|
unsigned len;
|
||||||
|
{
|
||||||
|
zip_internal* zi;
|
||||||
|
int err=ZIP_OK;
|
||||||
|
|
||||||
|
if (file == NULL)
|
||||||
|
return ZIP_PARAMERROR;
|
||||||
|
zi = (zip_internal*)file;
|
||||||
|
|
||||||
|
if (zi->in_opened_file_inzip == 0)
|
||||||
|
return ZIP_PARAMERROR;
|
||||||
|
|
||||||
|
zi->ci.stream.next_in = buf;
|
||||||
|
zi->ci.stream.avail_in = len;
|
||||||
|
zi->ci.crc32 = crc32(zi->ci.crc32,buf,len);
|
||||||
|
|
||||||
|
while ((err==ZIP_OK) && (zi->ci.stream.avail_in>0))
|
||||||
|
{
|
||||||
|
if (zi->ci.stream.avail_out == 0)
|
||||||
|
{
|
||||||
|
if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
|
||||||
|
!=1)
|
||||||
|
err = ZIP_ERRNO;
|
||||||
|
zi->ci.pos_in_buffered_data = 0;
|
||||||
|
zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
|
||||||
|
zi->ci.stream.next_out = zi->ci.buffered_data;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (zi->ci.method == Z_DEFLATED)
|
||||||
|
{
|
||||||
|
uLong uTotalOutBefore = zi->ci.stream.total_out;
|
||||||
|
err=deflate(&zi->ci.stream, Z_NO_FLUSH);
|
||||||
|
zi->ci.pos_in_buffered_data += (uInt)(zi->ci.stream.total_out - uTotalOutBefore) ;
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
uInt copy_this,i;
|
||||||
|
if (zi->ci.stream.avail_in < zi->ci.stream.avail_out)
|
||||||
|
copy_this = zi->ci.stream.avail_in;
|
||||||
|
else
|
||||||
|
copy_this = zi->ci.stream.avail_out;
|
||||||
|
for (i=0;i<copy_this;i++)
|
||||||
|
*(((char*)zi->ci.stream.next_out)+i) =
|
||||||
|
*(((const char*)zi->ci.stream.next_in)+i);
|
||||||
|
{
|
||||||
|
zi->ci.stream.avail_in -= copy_this;
|
||||||
|
zi->ci.stream.avail_out-= copy_this;
|
||||||
|
zi->ci.stream.next_in+= copy_this;
|
||||||
|
zi->ci.stream.next_out+= copy_this;
|
||||||
|
zi->ci.stream.total_in+= copy_this;
|
||||||
|
zi->ci.stream.total_out+= copy_this;
|
||||||
|
zi->ci.pos_in_buffered_data += copy_this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
extern int ZEXPORT zipCloseFileInZip (file)
|
||||||
|
zipFile file;
|
||||||
|
{
|
||||||
|
zip_internal* zi;
|
||||||
|
int err=ZIP_OK;
|
||||||
|
|
||||||
|
if (file == NULL)
|
||||||
|
return ZIP_PARAMERROR;
|
||||||
|
zi = (zip_internal*)file;
|
||||||
|
|
||||||
|
if (zi->in_opened_file_inzip == 0)
|
||||||
|
return ZIP_PARAMERROR;
|
||||||
|
zi->ci.stream.avail_in = 0;
|
||||||
|
|
||||||
|
if (zi->ci.method == Z_DEFLATED)
|
||||||
|
while (err==ZIP_OK)
|
||||||
|
{
|
||||||
|
uLong uTotalOutBefore;
|
||||||
|
if (zi->ci.stream.avail_out == 0)
|
||||||
|
{
|
||||||
|
if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
|
||||||
|
!=1)
|
||||||
|
err = ZIP_ERRNO;
|
||||||
|
zi->ci.pos_in_buffered_data = 0;
|
||||||
|
zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
|
||||||
|
zi->ci.stream.next_out = zi->ci.buffered_data;
|
||||||
|
}
|
||||||
|
uTotalOutBefore = zi->ci.stream.total_out;
|
||||||
|
err=deflate(&zi->ci.stream, Z_FINISH);
|
||||||
|
zi->ci.pos_in_buffered_data += (uInt)(zi->ci.stream.total_out - uTotalOutBefore) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (err==Z_STREAM_END)
|
||||||
|
err=ZIP_OK; /* this is normal */
|
||||||
|
|
||||||
|
if ((zi->ci.pos_in_buffered_data>0) && (err==ZIP_OK))
|
||||||
|
if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
|
||||||
|
!=1)
|
||||||
|
err = ZIP_ERRNO;
|
||||||
|
|
||||||
|
if ((zi->ci.method == Z_DEFLATED) && (err==ZIP_OK))
|
||||||
|
{
|
||||||
|
err=deflateEnd(&zi->ci.stream);
|
||||||
|
zi->ci.stream_initialised = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+16,(uLong)zi->ci.crc32,4); /*crc*/
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+20,
|
||||||
|
(uLong)zi->ci.stream.total_out,4); /*compr size*/
|
||||||
|
ziplocal_putValue_inmemory(zi->ci.central_header+24,
|
||||||
|
(uLong)zi->ci.stream.total_in,4); /*uncompr size*/
|
||||||
|
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = add_data_in_datablock(&zi->central_dir,zi->ci.central_header,
|
||||||
|
(uLong)zi->ci.size_centralheader);
|
||||||
|
free(zi->ci.central_header);
|
||||||
|
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
{
|
||||||
|
long cur_pos_inzip = ftell(zi->filezip);
|
||||||
|
if (fseek(zi->filezip,
|
||||||
|
zi->ci.pos_local_header + 14,SEEK_SET)!=0)
|
||||||
|
err = ZIP_ERRNO;
|
||||||
|
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)zi->ci.crc32,4); /* crc 32, unknown */
|
||||||
|
|
||||||
|
if (err==ZIP_OK) /* compressed size, unknown */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)zi->ci.stream.total_out,4);
|
||||||
|
|
||||||
|
if (err==ZIP_OK) /* uncompressed size, unknown */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)zi->ci.stream.total_in,4);
|
||||||
|
|
||||||
|
if (fseek(zi->filezip,
|
||||||
|
cur_pos_inzip,SEEK_SET)!=0)
|
||||||
|
err = ZIP_ERRNO;
|
||||||
|
}
|
||||||
|
|
||||||
|
zi->number_entry ++;
|
||||||
|
zi->in_opened_file_inzip = 0;
|
||||||
|
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
extern int ZEXPORT zipClose (file, global_comment)
|
||||||
|
zipFile file;
|
||||||
|
const char* global_comment;
|
||||||
|
{
|
||||||
|
zip_internal* zi;
|
||||||
|
int err = 0;
|
||||||
|
uLong size_centraldir = 0;
|
||||||
|
uLong centraldir_pos_inzip ;
|
||||||
|
uInt size_global_comment;
|
||||||
|
if (file == NULL)
|
||||||
|
return ZIP_PARAMERROR;
|
||||||
|
zi = (zip_internal*)file;
|
||||||
|
|
||||||
|
if (zi->in_opened_file_inzip == 1)
|
||||||
|
{
|
||||||
|
err = zipCloseFileInZip (file);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (global_comment==NULL)
|
||||||
|
size_global_comment = 0;
|
||||||
|
else
|
||||||
|
size_global_comment = strlen(global_comment);
|
||||||
|
|
||||||
|
|
||||||
|
centraldir_pos_inzip = ftell(zi->filezip);
|
||||||
|
if (err==ZIP_OK)
|
||||||
|
{
|
||||||
|
linkedlist_datablock_internal* ldi = zi->central_dir.first_block ;
|
||||||
|
while (ldi!=NULL)
|
||||||
|
{
|
||||||
|
if ((err==ZIP_OK) && (ldi->filled_in_this_block>0))
|
||||||
|
if (fwrite(ldi->data,(uInt)ldi->filled_in_this_block,
|
||||||
|
1,zi->filezip) !=1 )
|
||||||
|
err = ZIP_ERRNO;
|
||||||
|
|
||||||
|
size_centraldir += ldi->filled_in_this_block;
|
||||||
|
ldi = ldi->next_datablock;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
free_datablock(zi->central_dir.first_block);
|
||||||
|
|
||||||
|
if (err==ZIP_OK) /* Magic End */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)ENDHEADERMAGIC,4);
|
||||||
|
|
||||||
|
if (err==ZIP_OK) /* number of this disk */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)0,2);
|
||||||
|
|
||||||
|
if (err==ZIP_OK) /* number of the disk with the start of the central directory */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)0,2);
|
||||||
|
|
||||||
|
if (err==ZIP_OK) /* total number of entries in the central dir on this disk */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)zi->number_entry,2);
|
||||||
|
|
||||||
|
if (err==ZIP_OK) /* total number of entries in the central dir */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)zi->number_entry,2);
|
||||||
|
|
||||||
|
if (err==ZIP_OK) /* size of the central directory */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)size_centraldir,4);
|
||||||
|
|
||||||
|
if (err==ZIP_OK) /* offset of start of central directory with respect to the
|
||||||
|
starting disk number */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)centraldir_pos_inzip ,4);
|
||||||
|
|
||||||
|
if (err==ZIP_OK) /* zipfile comment length */
|
||||||
|
err = ziplocal_putValue(zi->filezip,(uLong)size_global_comment,2);
|
||||||
|
|
||||||
|
if ((err==ZIP_OK) && (size_global_comment>0))
|
||||||
|
if (fwrite(global_comment,(uInt)size_global_comment,1,zi->filezip) !=1 )
|
||||||
|
err = ZIP_ERRNO;
|
||||||
|
fclose(zi->filezip);
|
||||||
|
TRYFREE(zi);
|
||||||
|
|
||||||
|
return err;
|
||||||
|
}
|
||||||
5
contrib/minizip/zip.def
Normal file
5
contrib/minizip/zip.def
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
zipOpen @80
|
||||||
|
zipOpenNewFileInZip @81
|
||||||
|
zipWriteInFileInZip @82
|
||||||
|
zipCloseFileInZip @83
|
||||||
|
zipClose @84
|
||||||
150
contrib/minizip/zip.h
Normal file
150
contrib/minizip/zip.h
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
/* zip.h -- IO for compress .zip files using zlib
|
||||||
|
Version 0.15 alpha, Mar 19th, 1998,
|
||||||
|
|
||||||
|
Copyright (C) 1998 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
|
||||||
|
|
||||||
|
THIS IS AN ALPHA VERSION. AT THIS STAGE OF DEVELOPPEMENT, SOMES API OR STRUCTURE
|
||||||
|
CAN CHANGE IN FUTURE VERSION !!
|
||||||
|
I WAIT FEEDBACK at mail info@winimage.com
|
||||||
|
Visit also http://www.winimage.com/zLibDll/zip.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
|
||||||
|
ftp://ftp.cdrom.com/pub/infozip/doc/appnote-970311-iz.zip
|
||||||
|
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
|
||||||
|
|
||||||
|
#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_ERRNO (Z_ERRNO)
|
||||||
|
#define ZIP_PARAMERROR (-102)
|
||||||
|
#define ZIP_INTERNALERROR (-104)
|
||||||
|
|
||||||
|
/* 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;
|
||||||
|
|
||||||
|
extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append));
|
||||||
|
/*
|
||||||
|
Create a zipfile.
|
||||||
|
pathname contain on Windows NT a filename like "c:\\zlib\\zlib111.zip" or on
|
||||||
|
an Unix computer "zlib/zlib111.zip".
|
||||||
|
if the file pathname exist and append=1, the zip will be created at the end
|
||||||
|
of the file. (useful if the file contain a self extractor code)
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
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 zipWriteInFileInZip OF((zipFile file,
|
||||||
|
const voidp 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 zipClose OF((zipFile file,
|
||||||
|
const char* global_comment));
|
||||||
|
/*
|
||||||
|
Close the zipfile
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _zip_H */
|
||||||
74
contrib/minizip/zlibvc.def
Normal file
74
contrib/minizip/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
|
||||||
651
contrib/minizip/zlibvc.dsp
Normal file
651
contrib/minizip/zlibvc.dsp
Normal file
@@ -0,0 +1,651 @@
|
|||||||
|
# Microsoft Developer Studio Project File - Name="zlibvc" - Package Owner=<4>
|
||||||
|
# Microsoft Developer Studio Generated Build File, Format Version 5.00
|
||||||
|
# ** DO NOT EDIT **
|
||||||
|
|
||||||
|
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
||||||
|
# TARGTYPE "Win32 (ALPHA) Dynamic-Link Library" 0x0602
|
||||||
|
|
||||||
|
CFG=zlibvc - Win32 Release
|
||||||
|
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||||
|
!MESSAGE use the Export Makefile command and run
|
||||||
|
!MESSAGE
|
||||||
|
!MESSAGE NMAKE /f "zlibvc.mak".
|
||||||
|
!MESSAGE
|
||||||
|
!MESSAGE You can specify a configuration when running NMAKE
|
||||||
|
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||||
|
!MESSAGE
|
||||||
|
!MESSAGE NMAKE /f "zlibvc.mak" CFG="zlibvc - Win32 Release"
|
||||||
|
!MESSAGE
|
||||||
|
!MESSAGE Possible choices for configuration are:
|
||||||
|
!MESSAGE
|
||||||
|
!MESSAGE "zlibvc - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
||||||
|
!MESSAGE "zlibvc - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
||||||
|
!MESSAGE "zlibvc - Win32 ReleaseAxp" (based on\
|
||||||
|
"Win32 (ALPHA) Dynamic-Link Library")
|
||||||
|
!MESSAGE "zlibvc - Win32 ReleaseWithoutAsm" (based on\
|
||||||
|
"Win32 (x86) Dynamic-Link Library")
|
||||||
|
!MESSAGE "zlibvc - Win32 ReleaseWithoutCrtdll" (based on\
|
||||||
|
"Win32 (x86) Dynamic-Link Library")
|
||||||
|
!MESSAGE
|
||||||
|
|
||||||
|
# Begin Project
|
||||||
|
# PROP Scc_ProjName ""
|
||||||
|
# PROP Scc_LocalPath ""
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
# PROP BASE Use_MFC 0
|
||||||
|
# PROP BASE Use_Debug_Libraries 0
|
||||||
|
# PROP BASE Output_Dir ".\Release"
|
||||||
|
# PROP BASE Intermediate_Dir ".\Release"
|
||||||
|
# PROP BASE Target_Dir ""
|
||||||
|
# PROP Use_MFC 0
|
||||||
|
# PROP Use_Debug_Libraries 0
|
||||||
|
# PROP Output_Dir ".\Release"
|
||||||
|
# PROP Intermediate_Dir ".\Release"
|
||||||
|
# PROP Ignore_Export_Lib 0
|
||||||
|
# PROP Target_Dir ""
|
||||||
|
CPP=cl.exe
|
||||||
|
# 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 /FD /c
|
||||||
|
# SUBTRACT CPP /YX
|
||||||
|
MTL=midl.exe
|
||||||
|
# ADD BASE MTL /nologo /D "NDEBUG" /win32
|
||||||
|
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
RSC=rc.exe
|
||||||
|
# ADD BASE RSC /l 0x40c /d "NDEBUG"
|
||||||
|
# ADD RSC /l 0x40c /d "NDEBUG"
|
||||||
|
BSC32=bscmake.exe
|
||||||
|
# ADD BASE BSC32 /nologo
|
||||||
|
# ADD BSC32 /nologo
|
||||||
|
LINK32=link.exe
|
||||||
|
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
|
||||||
|
# ADD LINK32 gvmat32.obj kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:".\Release\zlib.dll"
|
||||||
|
# SUBTRACT LINK32 /pdb:none
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
# PROP BASE Use_MFC 0
|
||||||
|
# PROP BASE Use_Debug_Libraries 1
|
||||||
|
# PROP BASE Output_Dir ".\Debug"
|
||||||
|
# PROP BASE Intermediate_Dir ".\Debug"
|
||||||
|
# PROP BASE Target_Dir ""
|
||||||
|
# PROP Use_MFC 0
|
||||||
|
# PROP Use_Debug_Libraries 1
|
||||||
|
# PROP Output_Dir ".\Debug"
|
||||||
|
# PROP Intermediate_Dir ".\Debug"
|
||||||
|
# PROP Target_Dir ""
|
||||||
|
CPP=cl.exe
|
||||||
|
# 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" /FD /c
|
||||||
|
# SUBTRACT CPP /YX
|
||||||
|
MTL=midl.exe
|
||||||
|
# ADD BASE MTL /nologo /D "_DEBUG" /win32
|
||||||
|
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||||
|
RSC=rc.exe
|
||||||
|
# ADD BASE RSC /l 0x40c /d "_DEBUG"
|
||||||
|
# ADD RSC /l 0x40c /d "_DEBUG"
|
||||||
|
BSC32=bscmake.exe
|
||||||
|
# ADD BASE BSC32 /nologo
|
||||||
|
# ADD BSC32 /nologo
|
||||||
|
LINK32=link.exe
|
||||||
|
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386
|
||||||
|
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:".\Debug\zlib.dll"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
# PROP BASE Use_MFC 0
|
||||||
|
# PROP BASE Use_Debug_Libraries 0
|
||||||
|
# PROP BASE Output_Dir "zlibvc__"
|
||||||
|
# PROP BASE Intermediate_Dir "zlibvc__"
|
||||||
|
# PROP BASE Ignore_Export_Lib 0
|
||||||
|
# PROP BASE Target_Dir ""
|
||||||
|
# PROP Use_MFC 0
|
||||||
|
# PROP Use_Debug_Libraries 0
|
||||||
|
# PROP Output_Dir "zlibvc__"
|
||||||
|
# PROP Intermediate_Dir "zlibvc__"
|
||||||
|
# PROP Ignore_Export_Lib 0
|
||||||
|
# PROP Target_Dir ""
|
||||||
|
MTL=midl.exe
|
||||||
|
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
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 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
|
||||||
|
# ADD BASE RSC /l 0x40c /d "NDEBUG"
|
||||||
|
# ADD RSC /l 0x40c /d "NDEBUG"
|
||||||
|
BSC32=bscmake.exe
|
||||||
|
# ADD BASE BSC32 /nologo
|
||||||
|
# ADD BSC32 /nologo
|
||||||
|
LINK32=link.exe
|
||||||
|
# ADD BASE LINK32 crtdll.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /map /machine:ALPHA /nodefaultlib /out:".\Release\zlib.dll"
|
||||||
|
# SUBTRACT BASE LINK32 /pdb:none
|
||||||
|
# ADD LINK32 crtdll.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /map /machine:ALPHA /nodefaultlib /out:"zlibvc__\zlib.dll"
|
||||||
|
# SUBTRACT LINK32 /pdb:none
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
# PROP BASE Use_MFC 0
|
||||||
|
# PROP BASE Use_Debug_Libraries 0
|
||||||
|
# PROP BASE Output_Dir "zlibvc_0"
|
||||||
|
# PROP BASE Intermediate_Dir "zlibvc_0"
|
||||||
|
# PROP BASE Ignore_Export_Lib 0
|
||||||
|
# PROP BASE Target_Dir ""
|
||||||
|
# PROP Use_MFC 0
|
||||||
|
# PROP Use_Debug_Libraries 0
|
||||||
|
# PROP Output_Dir "zlibvc_0"
|
||||||
|
# PROP Intermediate_Dir "zlibvc_0"
|
||||||
|
# PROP Ignore_Export_Lib 0
|
||||||
|
# PROP Target_Dir ""
|
||||||
|
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 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
|
||||||
|
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
RSC=rc.exe
|
||||||
|
# ADD BASE RSC /l 0x40c /d "NDEBUG"
|
||||||
|
# ADD RSC /l 0x40c /d "NDEBUG"
|
||||||
|
BSC32=bscmake.exe
|
||||||
|
# ADD BASE BSC32 /nologo
|
||||||
|
# ADD BSC32 /nologo
|
||||||
|
LINK32=link.exe
|
||||||
|
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:".\Release\zlib.dll"
|
||||||
|
# SUBTRACT BASE LINK32 /pdb:none
|
||||||
|
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:".\zlibvc_0\zlib.dll"
|
||||||
|
# SUBTRACT LINK32 /pdb:none
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
# PROP BASE Use_MFC 0
|
||||||
|
# PROP BASE Use_Debug_Libraries 0
|
||||||
|
# PROP BASE Output_Dir "zlibvc_1"
|
||||||
|
# PROP BASE Intermediate_Dir "zlibvc_1"
|
||||||
|
# PROP BASE Ignore_Export_Lib 0
|
||||||
|
# PROP BASE Target_Dir ""
|
||||||
|
# PROP Use_MFC 0
|
||||||
|
# PROP Use_Debug_Libraries 0
|
||||||
|
# PROP Output_Dir "zlibvc_1"
|
||||||
|
# PROP Intermediate_Dir "zlibvc_1"
|
||||||
|
# PROP Ignore_Export_Lib 0
|
||||||
|
# PROP Target_Dir ""
|
||||||
|
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 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
|
||||||
|
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||||
|
RSC=rc.exe
|
||||||
|
# ADD BASE RSC /l 0x40c /d "NDEBUG"
|
||||||
|
# ADD RSC /l 0x40c /d "NDEBUG"
|
||||||
|
BSC32=bscmake.exe
|
||||||
|
# ADD BASE BSC32 /nologo
|
||||||
|
# ADD BSC32 /nologo
|
||||||
|
LINK32=link.exe
|
||||||
|
# ADD BASE LINK32 gvmat32.obj kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:".\Release\zlib.dll"
|
||||||
|
# SUBTRACT BASE LINK32 /pdb:none
|
||||||
|
# ADD LINK32 gvmat32.obj kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib crtdll.lib /nologo /subsystem:windows /dll /map /machine:I386 /nodefaultlib /out:".\zlibvc_1\zlib.dll"
|
||||||
|
# SUBTRACT LINK32 /pdb:none
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# Begin Target
|
||||||
|
|
||||||
|
# Name "zlibvc - Win32 Release"
|
||||||
|
# Name "zlibvc - Win32 Debug"
|
||||||
|
# Name "zlibvc - Win32 ReleaseAxp"
|
||||||
|
# Name "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
# Name "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
# Begin Group "Source Files"
|
||||||
|
|
||||||
|
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\adler32.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_ADLER=\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\compress.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_COMPR=\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\crc32.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_CRC32=\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\deflate.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_DEFLA=\
|
||||||
|
".\deflate.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\gvmat32c.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=.\gzio.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_GZIO_=\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infblock.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFBL=\
|
||||||
|
".\infblock.h"\
|
||||||
|
".\infcodes.h"\
|
||||||
|
".\inftrees.h"\
|
||||||
|
".\infutil.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infcodes.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFCO=\
|
||||||
|
".\infblock.h"\
|
||||||
|
".\infcodes.h"\
|
||||||
|
".\inffast.h"\
|
||||||
|
".\inftrees.h"\
|
||||||
|
".\infutil.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\inffast.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFFA=\
|
||||||
|
".\infblock.h"\
|
||||||
|
".\infcodes.h"\
|
||||||
|
".\inffast.h"\
|
||||||
|
".\inftrees.h"\
|
||||||
|
".\infutil.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\inflate.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFLA=\
|
||||||
|
".\infblock.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\inftrees.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFTR=\
|
||||||
|
".\inftrees.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infutil.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_INFUT=\
|
||||||
|
".\infblock.h"\
|
||||||
|
".\infcodes.h"\
|
||||||
|
".\inftrees.h"\
|
||||||
|
".\infutil.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\trees.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_TREES=\
|
||||||
|
".\deflate.h"\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\uncompr.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_UNCOM=\
|
||||||
|
".\zconf.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 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zlib.rc
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zlibvc.def
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zutil.c
|
||||||
|
|
||||||
|
!IF "$(CFG)" == "zlibvc - Win32 Release"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 Debug"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseAxp"
|
||||||
|
|
||||||
|
DEP_CPP_ZUTIL=\
|
||||||
|
".\zconf.h"\
|
||||||
|
".\zlib.h"\
|
||||||
|
".\zutil.h"\
|
||||||
|
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutAsm"
|
||||||
|
|
||||||
|
!ELSEIF "$(CFG)" == "zlibvc - Win32 ReleaseWithoutCrtdll"
|
||||||
|
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# End Source File
|
||||||
|
# End Group
|
||||||
|
# Begin Group "Header Files"
|
||||||
|
|
||||||
|
# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\deflate.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infblock.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infcodes.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\inffast.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\inftrees.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\infutil.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zconf.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zlib.h
|
||||||
|
# End Source File
|
||||||
|
# Begin Source File
|
||||||
|
|
||||||
|
SOURCE=.\zutil.h
|
||||||
|
# End Source File
|
||||||
|
# End Group
|
||||||
|
# Begin Group "Resource Files"
|
||||||
|
|
||||||
|
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe"
|
||||||
|
# End Group
|
||||||
|
# End Target
|
||||||
|
# End Project
|
||||||
41
contrib/minizip/zlibvc.dsw
Normal file
41
contrib/minizip/zlibvc.dsw
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
Microsoft Developer Studio Workspace File, Format Version 5.00
|
||||||
|
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Project: "zlibstat"=.\zlibstat.dsp - Package Owner=<4>
|
||||||
|
|
||||||
|
Package=<5>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
Package=<4>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Project: "zlibvc"=.\zlibvc.dsp - Package Owner=<4>
|
||||||
|
|
||||||
|
Package=<5>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
Package=<4>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
Global:
|
||||||
|
|
||||||
|
Package=<5>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
Package=<3>
|
||||||
|
{{{
|
||||||
|
}}}
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
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.
@@ -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
|
||||||
|
|
||||||
|
|||||||
348
crc32.c
348
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 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) */
|
||||||
|
poly = 0UL;
|
||||||
|
for (n = 0; n < sizeof(p)/sizeof(unsigned char); 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 */
|
||||||
|
|
||||||
/* make exclusive-or pattern from polynomial (0xedb88320L) */
|
|
||||||
poly = 0L;
|
|
||||||
for (n = 0; n < sizeof(p)/sizeof(Byte); n++)
|
|
||||||
poly |= 1L << (31 - p[n]);
|
|
||||||
|
|
||||||
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 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()
|
||||||
*/
|
*/
|
||||||
uLongf * EXPORT 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 (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 EXPORT 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
|
||||||
|
}
|
||||||
|
};
|
||||||
191
deflate.c
191
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.0.7 Copyright 1995-1998 Jean-loup Gailly ";
|
" deflate 1.2.0 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
|
||||||
@@ -80,7 +80,7 @@ local block_state deflate_slow OF((deflate_state *s, int flush));
|
|||||||
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, charf *buf, unsigned size));
|
local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
|
||||||
#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));
|
||||||
@@ -160,14 +160,23 @@ struct static_tree_desc_s {int dummy;}; /* for buggy compilers */
|
|||||||
* Insert string str in the dictionary and set match_head to the previous head
|
* Insert string str in the dictionary and set match_head to the previous head
|
||||||
* of the hash chain (the most recent string with same hash key). Return
|
* of the hash chain (the most recent string with same hash key). Return
|
||||||
* the previous length of the hash chain.
|
* the previous length of the hash chain.
|
||||||
|
* If this file is compiled with -DFASTEST, the compression level is forced
|
||||||
|
* to 1, and no hash chains are maintained.
|
||||||
* IN assertion: all calls to to INSERT_STRING are made with consecutive
|
* IN assertion: all calls to to INSERT_STRING are made with consecutive
|
||||||
* input characters and the first MIN_MATCH bytes of str are valid
|
* input characters and the first MIN_MATCH bytes of str are valid
|
||||||
* (except for the last MIN_MATCH-1 bytes of the input file).
|
* (except for the last MIN_MATCH-1 bytes of the input file).
|
||||||
*/
|
*/
|
||||||
|
#ifdef FASTEST
|
||||||
|
#define INSERT_STRING(s, str, match_head) \
|
||||||
|
(UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
|
||||||
|
match_head = s->head[s->ins_h], \
|
||||||
|
s->head[s->ins_h] = (Pos)(str))
|
||||||
|
#else
|
||||||
#define INSERT_STRING(s, str, match_head) \
|
#define INSERT_STRING(s, str, match_head) \
|
||||||
(UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
|
(UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
|
||||||
s->prev[(str) & s->w_mask] = match_head = s->head[s->ins_h], \
|
s->prev[(str) & s->w_mask] = match_head = s->head[s->ins_h], \
|
||||||
s->head[s->ins_h] = (Pos)(str))
|
s->head[s->ins_h] = (Pos)(str))
|
||||||
|
#endif
|
||||||
|
|
||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
* Initialize the hash table (avoiding 64K overflow for 16 bit systems).
|
* Initialize the hash table (avoiding 64K overflow for 16 bit systems).
|
||||||
@@ -175,10 +184,10 @@ struct static_tree_desc_s {int dummy;}; /* for buggy compilers */
|
|||||||
*/
|
*/
|
||||||
#define CLEAR_HASH(s) \
|
#define CLEAR_HASH(s) \
|
||||||
s->head[s->hash_size-1] = NIL; \
|
s->head[s->hash_size-1] = NIL; \
|
||||||
zmemzero((charf *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
|
zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
|
||||||
|
|
||||||
/* ========================================================================= */
|
/* ========================================================================= */
|
||||||
int EXPORT deflateInit_(strm, level, version, stream_size)
|
int ZEXPORT deflateInit_(strm, level, version, stream_size)
|
||||||
z_streamp strm;
|
z_streamp strm;
|
||||||
int level;
|
int level;
|
||||||
const char *version;
|
const char *version;
|
||||||
@@ -190,7 +199,7 @@ int EXPORT deflateInit_(strm, level, version, stream_size)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ========================================================================= */
|
/* ========================================================================= */
|
||||||
int EXPORT 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;
|
||||||
@@ -203,7 +212,7 @@ int EXPORT 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
|
||||||
@@ -224,13 +233,16 @@ int EXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
|
|||||||
if (strm->zfree == Z_NULL) strm->zfree = zcfree;
|
if (strm->zfree == Z_NULL) strm->zfree = zcfree;
|
||||||
|
|
||||||
if (level == Z_DEFAULT_COMPRESSION) level = 6;
|
if (level == Z_DEFAULT_COMPRESSION) level = 6;
|
||||||
|
#ifdef FASTEST
|
||||||
|
level = 1;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (windowBits < 0) { /* undocumented feature: suppress zlib header */
|
if (windowBits < 0) { /* undocumented feature: suppress zlib header */
|
||||||
noheader = 1;
|
noheader = 1;
|
||||||
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_HUFFMAN_ONLY) {
|
||||||
return Z_STREAM_ERROR;
|
return Z_STREAM_ERROR;
|
||||||
}
|
}
|
||||||
@@ -261,6 +273,7 @@ int EXPORT 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;
|
||||||
@@ -276,7 +289,7 @@ int EXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ========================================================================= */
|
/* ========================================================================= */
|
||||||
int EXPORT deflateSetDictionary (strm, dictionary, dictLength)
|
int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength)
|
||||||
z_streamp strm;
|
z_streamp strm;
|
||||||
const Bytef *dictionary;
|
const Bytef *dictionary;
|
||||||
uInt dictLength;
|
uInt dictLength;
|
||||||
@@ -287,10 +300,12 @@ int EXPORT 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)) {
|
||||||
@@ -299,7 +314,7 @@ int EXPORT deflateSetDictionary (strm, dictionary, dictLength)
|
|||||||
dictionary += dictLength - length; /* use the tail of the dictionary */
|
dictionary += dictLength - length; /* use the tail of the dictionary */
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
zmemcpy((charf *)s->window, dictionary, length);
|
zmemcpy(s->window, dictionary, length);
|
||||||
s->strstart = length;
|
s->strstart = length;
|
||||||
s->block_start = (long)length;
|
s->block_start = (long)length;
|
||||||
|
|
||||||
@@ -317,7 +332,7 @@ int EXPORT deflateSetDictionary (strm, dictionary, dictLength)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ========================================================================= */
|
/* ========================================================================= */
|
||||||
int EXPORT deflateReset (strm)
|
int ZEXPORT deflateReset (strm)
|
||||||
z_streamp strm;
|
z_streamp strm;
|
||||||
{
|
{
|
||||||
deflate_state *s;
|
deflate_state *s;
|
||||||
@@ -347,7 +362,7 @@ int EXPORT deflateReset (strm)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ========================================================================= */
|
/* ========================================================================= */
|
||||||
int EXPORT deflateParams(strm, level, strategy)
|
int ZEXPORT deflateParams(strm, level, strategy)
|
||||||
z_streamp strm;
|
z_streamp strm;
|
||||||
int level;
|
int level;
|
||||||
int strategy;
|
int strategy;
|
||||||
@@ -382,6 +397,47 @@ int EXPORT deflateParams(strm, level, 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
|
||||||
@@ -421,7 +477,7 @@ local void flush_pending(strm)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ========================================================================= */
|
/* ========================================================================= */
|
||||||
int EXPORT deflate (strm, flush)
|
int ZEXPORT deflate (strm, flush)
|
||||||
z_streamp strm;
|
z_streamp strm;
|
||||||
int flush;
|
int flush;
|
||||||
{
|
{
|
||||||
@@ -555,7 +611,7 @@ int EXPORT deflate (strm, flush)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ========================================================================= */
|
/* ========================================================================= */
|
||||||
int EXPORT deflateEnd (strm)
|
int ZEXPORT deflateEnd (strm)
|
||||||
z_streamp strm;
|
z_streamp strm;
|
||||||
{
|
{
|
||||||
int status;
|
int status;
|
||||||
@@ -585,7 +641,7 @@ int EXPORT deflateEnd (strm)
|
|||||||
* To simplify the source, this is not supported for 16-bit MSDOS (which
|
* To simplify the source, this is not supported for 16-bit MSDOS (which
|
||||||
* doesn't have enough memory anyway to duplicate compression states).
|
* doesn't have enough memory anyway to duplicate compression states).
|
||||||
*/
|
*/
|
||||||
int EXPORT deflateCopy (dest, source)
|
int ZEXPORT deflateCopy (dest, source)
|
||||||
z_streamp dest;
|
z_streamp dest;
|
||||||
z_streamp source;
|
z_streamp source;
|
||||||
{
|
{
|
||||||
@@ -596,11 +652,13 @@ int EXPORT 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 +705,7 @@ int EXPORT deflateCopy (dest, source)
|
|||||||
*/
|
*/
|
||||||
local int read_buf(strm, buf, size)
|
local int read_buf(strm, buf, size)
|
||||||
z_streamp strm;
|
z_streamp strm;
|
||||||
charf *buf;
|
Bytef *buf;
|
||||||
unsigned size;
|
unsigned size;
|
||||||
{
|
{
|
||||||
unsigned len = strm->avail_in;
|
unsigned len = strm->avail_in;
|
||||||
@@ -708,6 +766,7 @@ 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 */
|
||||||
@@ -842,9 +901,67 @@ local uInt longest_match(s, cur_match)
|
|||||||
} while ((cur_match = prev[cur_match & wmask]) > limit
|
} while ((cur_match = prev[cur_match & wmask]) > limit
|
||||||
&& --chain_length != 0);
|
&& --chain_length != 0);
|
||||||
|
|
||||||
if ((uInt)best_len <= s->lookahead) return best_len;
|
if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
|
||||||
return s->lookahead;
|
return s->lookahead;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#else /* FASTEST */
|
||||||
|
/* ---------------------------------------------------------------------------
|
||||||
|
* Optimized version for level == 1 only
|
||||||
|
*/
|
||||||
|
local uInt longest_match(s, cur_match)
|
||||||
|
deflate_state *s;
|
||||||
|
IPos cur_match; /* current match */
|
||||||
|
{
|
||||||
|
register Bytef *scan = s->window + s->strstart; /* current string */
|
||||||
|
register Bytef *match; /* matched string */
|
||||||
|
register int len; /* length of current match */
|
||||||
|
register Bytef *strend = s->window + s->strstart + MAX_MATCH;
|
||||||
|
|
||||||
|
/* 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");
|
||||||
|
|
||||||
|
Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
|
||||||
|
|
||||||
|
Assert(cur_match < s->strstart, "no future");
|
||||||
|
|
||||||
|
match = s->window + cur_match;
|
||||||
|
|
||||||
|
/* Return failure if the match length is less than 2:
|
||||||
|
*/
|
||||||
|
if (match[0] != scan[0] || match[1] != scan[1]) return MIN_MATCH-1;
|
||||||
|
|
||||||
|
/* 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 += 2;
|
||||||
|
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);
|
||||||
|
|
||||||
|
if (len < MIN_MATCH) return MIN_MATCH - 1;
|
||||||
|
|
||||||
|
s->match_start = cur_match;
|
||||||
|
return len <= s->lookahead ? len : s->lookahead;
|
||||||
|
}
|
||||||
|
#endif /* FASTEST */
|
||||||
#endif /* ASMV */
|
#endif /* ASMV */
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
@@ -857,8 +974,8 @@ local void check_match(s, start, match, length)
|
|||||||
int length;
|
int length;
|
||||||
{
|
{
|
||||||
/* check that the match is indeed a match */
|
/* check that the match is indeed a match */
|
||||||
if (zmemcmp((charf *)s->window + match,
|
if (zmemcmp(s->window + match,
|
||||||
(charf *)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 {
|
||||||
@@ -911,8 +1028,7 @@ local void fill_window(s)
|
|||||||
*/
|
*/
|
||||||
} else if (s->strstart >= wsize+MAX_DIST(s)) {
|
} else if (s->strstart >= wsize+MAX_DIST(s)) {
|
||||||
|
|
||||||
zmemcpy((charf *)s->window, (charf *)s->window+wsize,
|
zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
|
||||||
(unsigned)wsize);
|
|
||||||
s->match_start -= wsize;
|
s->match_start -= wsize;
|
||||||
s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
|
s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
|
||||||
s->block_start -= (long) wsize;
|
s->block_start -= (long) wsize;
|
||||||
@@ -931,6 +1047,7 @@ local void fill_window(s)
|
|||||||
} while (--n);
|
} while (--n);
|
||||||
|
|
||||||
n = wsize;
|
n = wsize;
|
||||||
|
#ifndef FASTEST
|
||||||
p = &s->prev[n];
|
p = &s->prev[n];
|
||||||
do {
|
do {
|
||||||
m = *--p;
|
m = *--p;
|
||||||
@@ -939,6 +1056,7 @@ local void fill_window(s)
|
|||||||
* its value will never be used.
|
* its value will never be used.
|
||||||
*/
|
*/
|
||||||
} while (--n);
|
} while (--n);
|
||||||
|
#endif
|
||||||
more += wsize;
|
more += wsize;
|
||||||
}
|
}
|
||||||
if (s->strm->avail_in == 0) return;
|
if (s->strm->avail_in == 0) return;
|
||||||
@@ -956,8 +1074,7 @@ local void fill_window(s)
|
|||||||
*/
|
*/
|
||||||
Assert(more >= 2, "more < 2");
|
Assert(more >= 2, "more < 2");
|
||||||
|
|
||||||
n = read_buf(s->strm, (charf *)s->window + s->strstart + s->lookahead,
|
n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
|
||||||
more);
|
|
||||||
s->lookahead += n;
|
s->lookahead += n;
|
||||||
|
|
||||||
/* Initialize the hash value now that we have some input: */
|
/* Initialize the hash value now that we have some input: */
|
||||||
@@ -1107,14 +1224,15 @@ local block_state deflate_fast(s, flush)
|
|||||||
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);
|
||||||
|
|
||||||
bflush = _tr_tally(s, s->strstart - s->match_start,
|
_tr_tally_dist(s, s->strstart - s->match_start,
|
||||||
s->match_length - MIN_MATCH);
|
s->match_length - MIN_MATCH, bflush);
|
||||||
|
|
||||||
s->lookahead -= s->match_length;
|
s->lookahead -= s->match_length;
|
||||||
|
|
||||||
/* Insert new strings in the hash table only if the match length
|
/* Insert new strings in the hash table only if the match length
|
||||||
* is not too large. This saves time but degrades compression.
|
* is not too large. This saves time but degrades compression.
|
||||||
*/
|
*/
|
||||||
|
#ifndef FASTEST
|
||||||
if (s->match_length <= s->max_insert_length &&
|
if (s->match_length <= s->max_insert_length &&
|
||||||
s->lookahead >= MIN_MATCH) {
|
s->lookahead >= MIN_MATCH) {
|
||||||
s->match_length--; /* string at strstart already in hash table */
|
s->match_length--; /* string at strstart already in hash table */
|
||||||
@@ -1126,7 +1244,9 @@ local block_state deflate_fast(s, flush)
|
|||||||
*/
|
*/
|
||||||
} while (--s->match_length != 0);
|
} while (--s->match_length != 0);
|
||||||
s->strstart++;
|
s->strstart++;
|
||||||
} else {
|
} else
|
||||||
|
#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];
|
||||||
@@ -1141,7 +1261,7 @@ local block_state deflate_fast(s, flush)
|
|||||||
} else {
|
} else {
|
||||||
/* No match, output a literal byte */
|
/* No match, output a literal byte */
|
||||||
Tracevv((stderr,"%c", s->window[s->strstart]));
|
Tracevv((stderr,"%c", s->window[s->strstart]));
|
||||||
bflush = _tr_tally (s, 0, s->window[s->strstart]);
|
_tr_tally_lit (s, s->window[s->strstart], bflush);
|
||||||
s->lookahead--;
|
s->lookahead--;
|
||||||
s->strstart++;
|
s->strstart++;
|
||||||
}
|
}
|
||||||
@@ -1220,8 +1340,8 @@ 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);
|
||||||
|
|
||||||
bflush = _tr_tally(s, s->strstart -1 - s->prev_match,
|
_tr_tally_dist(s, s->strstart -1 - s->prev_match,
|
||||||
s->prev_length - MIN_MATCH);
|
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
|
||||||
@@ -1247,7 +1367,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]));
|
||||||
if (_tr_tally (s, 0, s->window[s->strstart-1])) {
|
_tr_tally_lit(s, s->window[s->strstart-1], bflush);
|
||||||
|
if (bflush) {
|
||||||
FLUSH_BLOCK_ONLY(s, 0);
|
FLUSH_BLOCK_ONLY(s, 0);
|
||||||
}
|
}
|
||||||
s->strstart++;
|
s->strstart++;
|
||||||
@@ -1265,7 +1386,7 @@ local block_state deflate_slow(s, flush)
|
|||||||
Assert (flush != Z_NO_FLUSH, "no flush?");
|
Assert (flush != Z_NO_FLUSH, "no flush?");
|
||||||
if (s->match_available) {
|
if (s->match_available) {
|
||||||
Tracevv((stderr,"%c", s->window[s->strstart-1]));
|
Tracevv((stderr,"%c", s->window[s->strstart-1]));
|
||||||
_tr_tally (s, 0, s->window[s->strstart-1]);
|
_tr_tally_lit(s, s->window[s->strstart-1], bflush);
|
||||||
s->match_available = 0;
|
s->match_available = 0;
|
||||||
}
|
}
|
||||||
FLUSH_BLOCK(s, flush == Z_FINISH);
|
FLUSH_BLOCK(s, flush == Z_FINISH);
|
||||||
|
|||||||
50
deflate.h
50
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,9 +268,51 @@ 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));
|
||||||
|
|
||||||
|
#define d_code(dist) \
|
||||||
|
((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
|
||||||
|
/* Mapping from a distance to a distance code. dist is the distance - 1 and
|
||||||
|
* must not have side effects. _dist_code[256] and _dist_code[257] are never
|
||||||
|
* used.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef DEBUG
|
||||||
|
/* Inline versions of _tr_tally for speed: */
|
||||||
|
|
||||||
|
#if defined(GEN_TREES_H) || !defined(STDC)
|
||||||
|
extern uch _length_code[];
|
||||||
|
extern uch _dist_code[];
|
||||||
|
#else
|
||||||
|
extern const uch _length_code[];
|
||||||
|
extern const uch _dist_code[];
|
||||||
|
#endif
|
||||||
|
|
||||||
|
# define _tr_tally_lit(s, c, flush) \
|
||||||
|
{ uch cc = (c); \
|
||||||
|
s->d_buf[s->last_lit] = 0; \
|
||||||
|
s->l_buf[s->last_lit++] = cc; \
|
||||||
|
s->dyn_ltree[cc].Freq++; \
|
||||||
|
flush = (s->last_lit == s->lit_bufsize-1); \
|
||||||
|
}
|
||||||
|
# define _tr_tally_dist(s, distance, length, flush) \
|
||||||
|
{ uch len = (length); \
|
||||||
|
ush dist = (distance); \
|
||||||
|
s->d_buf[s->last_lit] = dist; \
|
||||||
|
s->l_buf[s->last_lit++] = len; \
|
||||||
|
dist--; \
|
||||||
|
s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
|
||||||
|
s->dyn_dtree[d_code(dist)].Freq++; \
|
||||||
|
flush = (s->last_lit == s->lit_bufsize-1); \
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
# define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
|
||||||
|
# define _tr_tally_dist(s, distance, length, flush) \
|
||||||
|
flush = _tr_tally(s, distance, length)
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
86
example.c
86
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); \
|
||||||
@@ -41,7 +47,7 @@ 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));
|
||||||
@@ -69,8 +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);
|
||||||
} else {
|
} else {
|
||||||
printf("uncompress(): %s\n", uncompr);
|
printf("uncompress(): %s\n", (char *)uncompr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -78,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;
|
||||||
{
|
{
|
||||||
@@ -93,8 +100,14 @@ void test_gzio(out, in, uncompr, uncomprLen)
|
|||||||
fprintf(stderr, "gzopen error\n");
|
fprintf(stderr, "gzopen error\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
if (gzprintf(file, "%s, %s!", "hello", "hello") != len-1) {
|
gzputc(file, 'h');
|
||||||
|
if (gzputs(file, "ello") != 4) {
|
||||||
|
fprintf(stderr, "gzputs err: %s\n", gzerror(file, &err));
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
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);
|
||||||
}
|
}
|
||||||
gzseek(file, 1L, SEEK_CUR); /* add one zero byte */
|
gzseek(file, 1L, SEEK_CUR); /* add one zero byte */
|
||||||
gzclose(file);
|
gzclose(file);
|
||||||
@@ -108,26 +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);
|
||||||
}
|
}
|
||||||
if (strcmp((char*)uncompr, hello)) {
|
if (strcmp((char*)uncompr, hello)) {
|
||||||
fprintf(stderr, "bad gzread\n");
|
fprintf(stderr, "bad gzread: %s\n", (char*)uncompr);
|
||||||
|
exit(1);
|
||||||
} else {
|
} else {
|
||||||
printf("gzread(): %s\n", uncompr);
|
printf("gzread(): %s\n", (char *)uncompr);
|
||||||
}
|
}
|
||||||
|
|
||||||
pos = gzseek(file, -7L, SEEK_CUR);
|
pos = gzseek(file, -8L, SEEK_CUR);
|
||||||
if (pos != 7 || 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);
|
||||||
}
|
}
|
||||||
uncomprLen = gzread(file, uncompr, (unsigned)uncomprLen);
|
|
||||||
if (uncomprLen != 7) {
|
if (gzgetc(file) != ' ') {
|
||||||
fprintf(stderr, "gzread err after gzseek: %s\n", gzerror(file, &err));
|
fprintf(stderr, "gzgetc error\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
gzgets(file, (char*)uncompr, uncomprLen);
|
||||||
|
uncomprLen = strlen((char*)uncompr);
|
||||||
|
if (uncomprLen != 6) { /* "hello!" */
|
||||||
|
fprintf(stderr, "gzgets err after gzseek: %s\n", gzerror(file, &err));
|
||||||
|
exit(1);
|
||||||
}
|
}
|
||||||
if (strcmp((char*)uncompr, hello+7)) {
|
if (strcmp((char*)uncompr, hello+7)) {
|
||||||
fprintf(stderr, "bad gzread after gzseek\n");
|
fprintf(stderr, "bad gzgets after gzseek\n");
|
||||||
|
exit(1);
|
||||||
} else {
|
} else {
|
||||||
printf("gzread() after gzseek: %s\n", uncompr);
|
printf("gzgets() after gzseek: %s\n", (char *)uncompr);
|
||||||
}
|
}
|
||||||
|
|
||||||
gzclose(file);
|
gzclose(file);
|
||||||
@@ -206,8 +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);
|
||||||
} else {
|
} else {
|
||||||
printf("inflate(): %s\n", uncompr);
|
printf("inflate(): %s\n", (char *)uncompr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -240,6 +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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Feed in already compressed data and switch to no compression: */
|
/* Feed in already compressed data and switch to no compression: */
|
||||||
@@ -259,6 +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);
|
||||||
}
|
}
|
||||||
err = deflateEnd(&c_stream);
|
err = deflateEnd(&c_stream);
|
||||||
CHECK_ERR(err, "deflateEnd");
|
CHECK_ERR(err, "deflateEnd");
|
||||||
@@ -299,6 +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);
|
||||||
} else {
|
} else {
|
||||||
printf("large_inflate(): OK\n");
|
printf("large_inflate(): OK\n");
|
||||||
}
|
}
|
||||||
@@ -309,7 +338,7 @@ void test_large_inflate(compr, comprLen, uncompr, uncomprLen)
|
|||||||
*/
|
*/
|
||||||
void test_flush(compr, comprLen)
|
void test_flush(compr, comprLen)
|
||||||
Byte *compr;
|
Byte *compr;
|
||||||
uLong comprLen;
|
uLong *comprLen;
|
||||||
{
|
{
|
||||||
z_stream c_stream; /* compression stream */
|
z_stream c_stream; /* compression stream */
|
||||||
int err;
|
int err;
|
||||||
@@ -325,7 +354,7 @@ void test_flush(compr, comprLen)
|
|||||||
c_stream.next_in = (Bytef*)hello;
|
c_stream.next_in = (Bytef*)hello;
|
||||||
c_stream.next_out = compr;
|
c_stream.next_out = compr;
|
||||||
c_stream.avail_in = 3;
|
c_stream.avail_in = 3;
|
||||||
c_stream.avail_out = (uInt)comprLen;
|
c_stream.avail_out = (uInt)*comprLen;
|
||||||
err = deflate(&c_stream, Z_FULL_FLUSH);
|
err = deflate(&c_stream, Z_FULL_FLUSH);
|
||||||
CHECK_ERR(err, "deflate");
|
CHECK_ERR(err, "deflate");
|
||||||
|
|
||||||
@@ -338,6 +367,8 @@ void test_flush(compr, comprLen)
|
|||||||
}
|
}
|
||||||
err = deflateEnd(&c_stream);
|
err = deflateEnd(&c_stream);
|
||||||
CHECK_ERR(err, "deflateEnd");
|
CHECK_ERR(err, "deflateEnd");
|
||||||
|
|
||||||
|
*comprLen = c_stream.total_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
@@ -376,11 +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);
|
||||||
}
|
}
|
||||||
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
@@ -414,6 +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);
|
||||||
}
|
}
|
||||||
err = deflateEnd(&c_stream);
|
err = deflateEnd(&c_stream);
|
||||||
CHECK_ERR(err, "deflateEnd");
|
CHECK_ERR(err, "deflateEnd");
|
||||||
@@ -463,8 +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);
|
||||||
} else {
|
} else {
|
||||||
printf("inflate with dictionary: %s\n", uncompr);
|
printf("inflate with dictionary: %s\n", (char *)uncompr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -500,8 +534,8 @@ int main(argc, argv)
|
|||||||
}
|
}
|
||||||
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);
|
||||||
@@ -510,12 +544,16 @@ int main(argc, argv)
|
|||||||
test_large_deflate(compr, comprLen, uncompr, uncomprLen);
|
test_large_deflate(compr, comprLen, uncompr, uncomprLen);
|
||||||
test_large_inflate(compr, comprLen, uncompr, uncomprLen);
|
test_large_inflate(compr, comprLen, uncompr, uncomprLen);
|
||||||
|
|
||||||
test_flush(compr, comprLen);
|
test_flush(compr, &comprLen);
|
||||||
test_sync(compr, comprLen, uncompr, uncomprLen);
|
test_sync(compr, comprLen, uncompr, uncomprLen);
|
||||||
|
comprLen = uncomprLen;
|
||||||
|
|
||||||
test_dict_deflate(compr, comprLen);
|
test_dict_deflate(compr, comprLen);
|
||||||
test_dict_inflate(compr, comprLen, uncompr, uncomprLen);
|
test_dict_inflate(compr, comprLen, uncompr, uncomprLen);
|
||||||
|
|
||||||
|
free(compr);
|
||||||
|
free(uncompr);
|
||||||
|
|
||||||
exit(0);
|
exit(0);
|
||||||
return 0; /* to avoid warning */
|
return 0; /* to avoid warning */
|
||||||
}
|
}
|
||||||
|
|||||||
252
gzio.c
252
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,12 +13,26 @@
|
|||||||
|
|
||||||
struct internal_state {int dummy;}; /* for buggy compilers */
|
struct internal_state {int dummy;}; /* for buggy compilers */
|
||||||
|
|
||||||
#define Z_BUFSIZE 4096
|
#ifndef Z_BUFSIZE
|
||||||
|
# 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 */
|
||||||
@@ -131,8 +145,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;
|
||||||
}
|
}
|
||||||
@@ -150,7 +168,12 @@ 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 = ftell(s->file);
|
s->startpos = 10L;
|
||||||
|
/* 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
|
||||||
|
* startpos anyway in write mode, so this initialization is not
|
||||||
|
* 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);
|
||||||
@@ -162,7 +185,7 @@ local gzFile gz_open (path, mode, fd)
|
|||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
Opens a gzip (.gz) file for reading or writing.
|
Opens a gzip (.gz) file for reading or writing.
|
||||||
*/
|
*/
|
||||||
gzFile EXPORT gzopen (path, mode)
|
gzFile ZEXPORT gzopen (path, mode)
|
||||||
const char *path;
|
const char *path;
|
||||||
const char *mode;
|
const char *mode;
|
||||||
{
|
{
|
||||||
@@ -173,7 +196,7 @@ gzFile EXPORT gzopen (path, mode)
|
|||||||
Associate a gzFile with the file descriptor fd. fd is not dup'ed here
|
Associate a gzFile with the file descriptor fd. fd is not dup'ed here
|
||||||
to mimic the behavio(u)r of fdopen.
|
to mimic the behavio(u)r of fdopen.
|
||||||
*/
|
*/
|
||||||
gzFile EXPORT gzdopen (fd, mode)
|
gzFile ZEXPORT gzdopen (fd, mode)
|
||||||
int fd;
|
int fd;
|
||||||
const char *mode;
|
const char *mode;
|
||||||
{
|
{
|
||||||
@@ -188,7 +211,7 @@ gzFile EXPORT gzdopen (fd, mode)
|
|||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
* Update the compression level and strategy
|
* Update the compression level and strategy
|
||||||
*/
|
*/
|
||||||
int EXPORT gzsetparams (file, level, strategy)
|
int ZEXPORT gzsetparams (file, level, strategy)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
int level;
|
int level;
|
||||||
int strategy;
|
int strategy;
|
||||||
@@ -250,19 +273,33 @@ 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) {
|
||||||
@@ -334,7 +371,7 @@ local int destroy (s)
|
|||||||
Reads the given number of uncompressed bytes from the compressed file.
|
Reads the given number of uncompressed bytes from the compressed file.
|
||||||
gzread returns the number of bytes actually read (0 for end of file).
|
gzread returns the number of bytes actually read (0 for end of file).
|
||||||
*/
|
*/
|
||||||
int EXPORT gzread (file, buf, len)
|
int ZEXPORT gzread (file, buf, len)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
voidp buf;
|
voidp buf;
|
||||||
unsigned len;
|
unsigned len;
|
||||||
@@ -370,7 +407,11 @@ int EXPORT gzread (file, buf, len)
|
|||||||
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);
|
||||||
}
|
}
|
||||||
return (int)(len - s->stream.avail_out);
|
len -= s->stream.avail_out;
|
||||||
|
s->stream.total_in += (uLong)len;
|
||||||
|
s->stream.total_out += (uLong)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) {
|
||||||
|
|
||||||
@@ -392,10 +433,14 @@ int EXPORT gzread (file, buf, len)
|
|||||||
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);
|
||||||
|
/* The uncompressed length returned by above getlong() may
|
||||||
|
* be different from s->stream.total_out) in case of
|
||||||
|
* concatenated .gz files. Check for such files:
|
||||||
|
*/
|
||||||
check_header(s);
|
check_header(s);
|
||||||
if (s->z_err == Z_OK) {
|
if (s->z_err == Z_OK) {
|
||||||
uLong total_in = s->stream.total_in;
|
uLong total_in = s->stream.total_in;
|
||||||
@@ -420,23 +465,46 @@ int EXPORT gzread (file, buf, len)
|
|||||||
Reads one byte from the compressed file. gzgetc returns this byte
|
Reads one byte from the compressed file. gzgetc returns this byte
|
||||||
or -1 in case of end of file or error.
|
or -1 in case of end of file or error.
|
||||||
*/
|
*/
|
||||||
int EXPORT gzgetc(file)
|
int ZEXPORT gzgetc(file)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
{
|
{
|
||||||
int c;
|
unsigned char c;
|
||||||
|
|
||||||
return gzread(file, &c, 1) == 1 ? c : -1;
|
return gzread(file, &c, 1) == 1 ? c : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* ===========================================================================
|
||||||
|
Reads bytes from the compressed file until len-1 characters are
|
||||||
|
read, or a newline character is read and transferred to buf, or an
|
||||||
|
end-of-file condition is encountered. The string is then terminated
|
||||||
|
with a null character.
|
||||||
|
gzgets returns buf, or Z_NULL in case of error.
|
||||||
|
|
||||||
|
The current implementation is not optimized at all.
|
||||||
|
*/
|
||||||
|
char * ZEXPORT gzgets(file, buf, len)
|
||||||
|
gzFile file;
|
||||||
|
char *buf;
|
||||||
|
int len;
|
||||||
|
{
|
||||||
|
char *b = buf;
|
||||||
|
if (buf == Z_NULL || len <= 0) return Z_NULL;
|
||||||
|
|
||||||
|
while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ;
|
||||||
|
*buf = '\0';
|
||||||
|
return b == buf && len > 0 ? Z_NULL : b;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#ifndef NO_DEFLATE
|
#ifndef NO_DEFLATE
|
||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
Writes the given number of uncompressed bytes into the compressed file.
|
Writes the given number of uncompressed bytes into the compressed file.
|
||||||
gzwrite returns the number of bytes actually written (0 in case of error).
|
gzwrite returns the number of bytes actually written (0 in case of error).
|
||||||
*/
|
*/
|
||||||
int EXPORT 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;
|
||||||
@@ -473,44 +541,80 @@ int EXPORT gzwrite (file, buf, len)
|
|||||||
#ifdef STDC
|
#ifdef STDC
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
int EXPORTVA gzprintf (gzFile file, const char *format, /* args */ ...)
|
int ZEXPORTVA gzprintf (gzFile file, const char *format, /* args */ ...)
|
||||||
{
|
{
|
||||||
char buf[Z_BUFSIZE];
|
char buf[Z_PRINTF_BUFSIZE];
|
||||||
va_list va;
|
va_list va;
|
||||||
int len;
|
int len;
|
||||||
|
|
||||||
va_start(va, format);
|
va_start(va, format);
|
||||||
#ifdef HAS_vsnprintf
|
#ifdef NO_vsnprintf
|
||||||
len = vsnprintf(buf, sizeof(buf), format, va);
|
# ifdef HAS_vsprintf_void
|
||||||
#else
|
(void)vsprintf(buf, format, va);
|
||||||
len = vsprintf(buf, format, va);
|
|
||||||
#endif
|
|
||||||
va_end(va);
|
va_end(va);
|
||||||
|
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 EXPORTVA 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_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);
|
||||||
}
|
}
|
||||||
@@ -520,11 +624,26 @@ int EXPORTVA gzprintf (file, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
|
|||||||
Writes c, converted to an unsigned char, into the compressed file.
|
Writes c, converted to an unsigned char, into the compressed file.
|
||||||
gzputc returns the value that was written, or -1 in case of error.
|
gzputc returns the value that was written, or -1 in case of error.
|
||||||
*/
|
*/
|
||||||
int EXPORT gzputc(file, c)
|
int ZEXPORT gzputc(file, c)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
int c;
|
int c;
|
||||||
{
|
{
|
||||||
return gzwrite(file, &c, 1) == 1 ? c : -1;
|
unsigned char cc = (unsigned char) c; /* required for big endian systems */
|
||||||
|
|
||||||
|
return gzwrite(file, &cc, 1) == 1 ? (int)cc : -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* ===========================================================================
|
||||||
|
Writes the given null-terminated string to the compressed file, excluding
|
||||||
|
the terminating null character.
|
||||||
|
gzputs returns the number of characters written, or -1 in case of error.
|
||||||
|
*/
|
||||||
|
int ZEXPORT gzputs(file, s)
|
||||||
|
gzFile file;
|
||||||
|
const char *s;
|
||||||
|
{
|
||||||
|
return gzwrite(file, (char*)s, (unsigned)strlen(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -571,7 +690,7 @@ local int do_flush (file, flush)
|
|||||||
return s->z_err == Z_STREAM_END ? Z_OK : s->z_err;
|
return s->z_err == Z_STREAM_END ? Z_OK : s->z_err;
|
||||||
}
|
}
|
||||||
|
|
||||||
int EXPORT gzflush (file, flush)
|
int ZEXPORT gzflush (file, flush)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
int flush;
|
int flush;
|
||||||
{
|
{
|
||||||
@@ -592,30 +711,31 @@ int EXPORT gzflush (file, flush)
|
|||||||
SEEK_END is not implemented, returns error.
|
SEEK_END is not implemented, returns error.
|
||||||
In this version of the library, gzseek can be extremely slow.
|
In this version of the library, gzseek can be extremely slow.
|
||||||
*/
|
*/
|
||||||
z_off_t EXPORT gzseek (file, offset, whence)
|
z_off_t ZEXPORT gzseek (file, offset, whence)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
z_off_t offset;
|
z_off_t offset;
|
||||||
int whence;
|
int whence;
|
||||||
{
|
{
|
||||||
gz_stream *s = (gz_stream*)file;
|
gz_stream *s = (gz_stream*)file;
|
||||||
|
|
||||||
if (s == NULL || whence == SEEK_END || s->z_err == Z_ERRNO) return -1L;
|
if (s == NULL || whence == SEEK_END ||
|
||||||
|
s->z_err == Z_ERRNO || s->z_err == Z_DATA_ERROR) {
|
||||||
s->z_err = Z_OK;
|
return -1L;
|
||||||
s->z_eof = 0;
|
}
|
||||||
|
|
||||||
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 */
|
||||||
|
if (s->inbuf == Z_NULL) return -1L;
|
||||||
zmemzero(s->inbuf, Z_BUFSIZE);
|
zmemzero(s->inbuf, Z_BUFSIZE);
|
||||||
}
|
}
|
||||||
while (offset > 0) {
|
while (offset > 0) {
|
||||||
@@ -627,13 +747,11 @@ z_off_t EXPORT gzseek (file, offset, whence)
|
|||||||
|
|
||||||
offset -= size;
|
offset -= size;
|
||||||
}
|
}
|
||||||
return 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 */
|
||||||
|
|
||||||
if (s->z_err == Z_DATA_ERROR) return -1L;
|
|
||||||
|
|
||||||
/* compute absolute position */
|
/* compute absolute position */
|
||||||
if (whence == SEEK_CUR) {
|
if (whence == SEEK_CUR) {
|
||||||
offset += s->stream.total_out;
|
offset += s->stream.total_out;
|
||||||
@@ -644,7 +762,9 @@ z_off_t EXPORT gzseek (file, offset, whence)
|
|||||||
/* 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;
|
||||||
return offset;
|
return offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -658,6 +778,7 @@ z_off_t EXPORT gzseek (file, offset, whence)
|
|||||||
|
|
||||||
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;
|
||||||
@@ -667,13 +788,13 @@ z_off_t EXPORT gzseek (file, offset, whence)
|
|||||||
if (size <= 0) return -1L;
|
if (size <= 0) return -1L;
|
||||||
offset -= size;
|
offset -= size;
|
||||||
}
|
}
|
||||||
return s->stream.total_out;
|
return (z_off_t)s->stream.total_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
Rewinds input file.
|
Rewinds input file.
|
||||||
*/
|
*/
|
||||||
int EXPORT gzrewind (file)
|
int ZEXPORT gzrewind (file)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
{
|
{
|
||||||
gz_stream *s = (gz_stream*)file;
|
gz_stream *s = (gz_stream*)file;
|
||||||
@@ -684,6 +805,7 @@ int EXPORT 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);
|
||||||
@@ -699,7 +821,7 @@ int EXPORT gzrewind (file)
|
|||||||
given compressed file. This position represents a number of bytes in the
|
given compressed file. This position represents a number of bytes in the
|
||||||
uncompressed data stream.
|
uncompressed data stream.
|
||||||
*/
|
*/
|
||||||
z_off_t EXPORT gztell (file)
|
z_off_t ZEXPORT gztell (file)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
{
|
{
|
||||||
return gzseek(file, 0L, SEEK_CUR);
|
return gzseek(file, 0L, SEEK_CUR);
|
||||||
@@ -709,7 +831,7 @@ z_off_t EXPORT gztell (file)
|
|||||||
Returns 1 when EOF has previously been detected reading the given
|
Returns 1 when EOF has previously been detected reading the given
|
||||||
input stream, otherwise zero.
|
input stream, otherwise zero.
|
||||||
*/
|
*/
|
||||||
int EXPORT gzeof (file)
|
int ZEXPORT gzeof (file)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
{
|
{
|
||||||
gz_stream *s = (gz_stream*)file;
|
gz_stream *s = (gz_stream*)file;
|
||||||
@@ -732,7 +854,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;
|
||||||
@@ -752,7 +875,7 @@ local uLong getLong (s)
|
|||||||
Flushes all pending output if necessary, closes the compressed file
|
Flushes all pending output if necessary, closes the compressed file
|
||||||
and deallocates all the (de)compression state.
|
and deallocates all the (de)compression state.
|
||||||
*/
|
*/
|
||||||
int EXPORT gzclose (file)
|
int ZEXPORT gzclose (file)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
@@ -781,7 +904,7 @@ int EXPORT gzclose (file)
|
|||||||
errnum is set to Z_ERRNO and the application may consult errno
|
errnum is set to Z_ERRNO and the application may consult errno
|
||||||
to get the exact error code.
|
to get the exact error code.
|
||||||
*/
|
*/
|
||||||
const char* EXPORT gzerror (file, errnum)
|
const char* ZEXPORT gzerror (file, errnum)
|
||||||
gzFile file;
|
gzFile file;
|
||||||
int *errnum;
|
int *errnum;
|
||||||
{
|
{
|
||||||
@@ -795,12 +918,13 @@ const char* EXPORT 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);
|
||||||
|
|||||||
615
infback.c
Normal file
615
infback.c
Normal file
@@ -0,0 +1,615 @@
|
|||||||
|
/* 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;
|
||||||
|
{
|
||||||
|
struct inflate_state FAR *state;
|
||||||
|
|
||||||
|
if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == Z_NULL)
|
||||||
|
return Z_STREAM_ERROR;
|
||||||
|
state = (struct inflate_state FAR *)strm->state;
|
||||||
|
ZFREE(strm, strm->state);
|
||||||
|
strm->state = Z_NULL;
|
||||||
|
Tracev((stderr, "inflate: end\n"));
|
||||||
|
return Z_OK;
|
||||||
|
}
|
||||||
413
infblock.c
413
infblock.c
@@ -1,413 +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);
|
|
||||||
inflate_trees_free(s->sub.decode.td, z);
|
|
||||||
inflate_trees_free(s->sub.decode.tl, 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);
|
|
||||||
Trace((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->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
|
|
||||||
{
|
|
||||||
ZFREE(z, s);
|
|
||||||
return Z_NULL;
|
|
||||||
}
|
|
||||||
s->end = s->window + w;
|
|
||||||
s->checkfn = c;
|
|
||||||
s->mode = TYPE;
|
|
||||||
Trace((stderr, "inflate: blocks allocated\n"));
|
|
||||||
inflate_blocks_reset(s, z, Z_NULL);
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
extern uInt inflate_hufts;
|
|
||||||
#endif
|
|
||||||
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 */
|
|
||||||
Trace((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 */
|
|
||||||
Trace((stderr, "inflate: fixed codes block%s\n",
|
|
||||||
s->last ? " (last)" : ""));
|
|
||||||
{
|
|
||||||
uInt bl, bd;
|
|
||||||
inflate_huft *tl, *td;
|
|
||||||
|
|
||||||
inflate_trees_fixed(&bl, &bd, &tl, &td);
|
|
||||||
s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
|
|
||||||
if (s->sub.decode.codes == Z_NULL)
|
|
||||||
{
|
|
||||||
r = Z_MEM_ERROR;
|
|
||||||
LEAVE
|
|
||||||
}
|
|
||||||
s->sub.decode.tl = Z_NULL; /* don't try to free these */
|
|
||||||
s->sub.decode.td = Z_NULL;
|
|
||||||
}
|
|
||||||
DUMPBITS(3)
|
|
||||||
s->mode = CODES;
|
|
||||||
break;
|
|
||||||
case 2: /* dynamic */
|
|
||||||
Trace((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, 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))
|
|
||||||
{
|
|
||||||
inflate_trees_free(s->sub.trees.tb, z);
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
inflate_trees_free(s->sub.trees.tb, z);
|
|
||||||
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;
|
|
||||||
#ifdef DEBUG
|
|
||||||
inflate_hufts = 0;
|
|
||||||
#endif
|
|
||||||
t = inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f),
|
|
||||||
s->sub.trees.blens, &bl, &bd, &tl, &td, 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, %d * %d bytes used\n",
|
|
||||||
inflate_hufts, sizeof(inflate_huft)));
|
|
||||||
if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
|
|
||||||
{
|
|
||||||
inflate_trees_free(td, z);
|
|
||||||
inflate_trees_free(tl, z);
|
|
||||||
r = Z_MEM_ERROR;
|
|
||||||
LEAVE
|
|
||||||
}
|
|
||||||
s->sub.decode.codes = c;
|
|
||||||
s->sub.decode.tl = tl;
|
|
||||||
s->sub.decode.td = td;
|
|
||||||
}
|
|
||||||
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);
|
|
||||||
inflate_trees_free(s->sub.decode.td, z);
|
|
||||||
inflate_trees_free(s->sub.decode.tl, 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);
|
|
||||||
Trace((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((charf *)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 ));
|
|
||||||
|
|
||||||
432
inffast.c
432
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 += 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 += 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 */
|
||||||
|
};
|
||||||
718
inftrees.c
718
inftrees.c
@@ -1,479 +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.0.7 Copyright 1995-1998 Mark Adler ";
|
" inflate 1.2.0 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) */
|
|
||||||
z_streamp )); /* for zalloc function */
|
|
||||||
|
|
||||||
local voidpf falloc OF((
|
|
||||||
voidpf, /* opaque pointer (not used) */
|
|
||||||
uInt, /* number of items */
|
|
||||||
uInt)); /* size of item */
|
|
||||||
|
|
||||||
/* 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;
|
||||||
#define N_MAX 288 /* maximum number of codes in any set */
|
code * FAR *table;
|
||||||
|
unsigned *bits;
|
||||||
#ifdef DEBUG
|
unsigned short FAR *work;
|
||||||
uInt inflate_hufts;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
local int huft_build(b, n, s, d, e, t, m, zs)
|
|
||||||
uIntf *b; /* code lengths in bits (all assumed <= BMAX) */
|
|
||||||
uInt n; /* number of codes (assumed <= N_MAX) */
|
|
||||||
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 */
|
|
||||||
z_streamp zs; /* for zalloc function */
|
|
||||||
/* 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, 73, 194};
|
||||||
|
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
|
||||||
register uIntf *p; /* pointer into c[], b[], or v[] */
|
from their more natural integer increment ordering, and so when the
|
||||||
inflate_huft *q; /* points to current table */
|
decoding tables are built in the large loop below, the integer codes
|
||||||
struct inflate_huft_s r; /* table entry for structure assignment */
|
are incremented backwards.
|
||||||
inflate_huft *u[BMAX]; /* table stack */
|
|
||||||
uInt v[N_MAX]; /* values in order of bit length */
|
|
||||||
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* check for enough space */
|
||||||
|
used += 1U << curr;
|
||||||
|
if (type == LENS && used >= ENOUGH - MAXD)
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
/* point entry in root table to sub-table */
|
||||||
|
low = huff & mask;
|
||||||
|
(*table)[low].op = (unsigned char)curr;
|
||||||
|
(*table)[low].bits = (unsigned char)root;
|
||||||
|
(*table)[low].val = (unsigned short)(next - *table);
|
||||||
}
|
}
|
||||||
z = 1 << j; /* table entries for j-bit table */
|
}
|
||||||
|
|
||||||
/* allocate and link in new table */
|
/*
|
||||||
if ((q = (inflate_huft *)ZALLOC
|
Fill in rest of table for incomplete codes. This loop is similar to the
|
||||||
(zs,z + 1,sizeof(inflate_huft))) == Z_NULL)
|
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
|
||||||
if (h)
|
through high index bits. When the current sub-table is filled, the loop
|
||||||
inflate_trees_free(u[0], zs);
|
drops back to the root table to fill in any remaining entries there.
|
||||||
return Z_MEM_ERROR; /* not enough memory */
|
*/
|
||||||
|
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;
|
||||||
}
|
}
|
||||||
#ifdef DEBUG
|
|
||||||
inflate_hufts += z + 1;
|
|
||||||
#endif
|
|
||||||
*t = q + 1; /* link to list for huft_free() */
|
|
||||||
*(t = &(q->next)) = Z_NULL;
|
|
||||||
u[h] = ++q; /* table starts after link */
|
|
||||||
|
|
||||||
/* 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 */
|
|
||||||
while ((i & ((1 << w) - 1)) != x[h])
|
|
||||||
{
|
|
||||||
h--; /* don't need to update q */
|
|
||||||
w -= l;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
/* 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, z)
|
|
||||||
uIntf *c; /* 19 code lengths */
|
|
||||||
uIntf *bb; /* bits tree desired/actual depth */
|
|
||||||
inflate_huft * FAR *tb; /* bits tree result */
|
|
||||||
z_streamp z; /* for zfree function */
|
|
||||||
{
|
|
||||||
int r;
|
|
||||||
|
|
||||||
r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL, tb, bb, z);
|
|
||||||
if (r == Z_DATA_ERROR)
|
|
||||||
z->msg = (char*)"oversubscribed dynamic bit lengths tree";
|
|
||||||
else if (r == Z_BUF_ERROR || *bb == 0)
|
|
||||||
{
|
|
||||||
inflate_trees_free(*tb, z);
|
|
||||||
z->msg = (char*)"incomplete dynamic bit lengths tree";
|
|
||||||
r = Z_DATA_ERROR;
|
|
||||||
}
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int inflate_trees_dynamic(nl, nd, c, bl, bd, tl, td, 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 */
|
|
||||||
z_streamp z; /* for zfree function */
|
|
||||||
{
|
|
||||||
int r;
|
|
||||||
|
|
||||||
/* build literal/length tree */
|
|
||||||
r = huft_build(c, nl, 257, cplens, cplext, tl, bl, z);
|
|
||||||
if (r != Z_OK || *bl == 0)
|
|
||||||
{
|
|
||||||
if (r == Z_DATA_ERROR)
|
|
||||||
z->msg = (char*)"oversubscribed literal/length tree";
|
|
||||||
else if (r != Z_MEM_ERROR)
|
|
||||||
{
|
|
||||||
inflate_trees_free(*tl, z);
|
|
||||||
z->msg = (char*)"incomplete literal/length tree";
|
|
||||||
r = Z_DATA_ERROR;
|
|
||||||
}
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* build distance tree */
|
|
||||||
r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, z);
|
|
||||||
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
|
|
||||||
inflate_trees_free(*td, z);
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
inflate_trees_free(*tl, z);
|
|
||||||
return r;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
/* done */
|
|
||||||
return Z_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* build fixed tables only once--keep them here */
|
|
||||||
local int fixed_built = 0;
|
|
||||||
#define FIXEDH 530 /* 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;
|
|
||||||
|
|
||||||
|
|
||||||
local voidpf falloc(q, n, s)
|
|
||||||
voidpf q; /* opaque pointer */
|
|
||||||
uInt n; /* number of items */
|
|
||||||
uInt s; /* size of item */
|
|
||||||
{
|
|
||||||
Assert(s == sizeof(inflate_huft) && n <= *(intf *)q,
|
|
||||||
"inflate_trees falloc overflow");
|
|
||||||
*(intf *)q -= n+s-s; /* s-s to avoid warning */
|
|
||||||
return (voidpf)(fixed_mem + *(intf *)q);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int inflate_trees_fixed(bl, bd, tl, td)
|
|
||||||
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 */
|
|
||||||
{
|
|
||||||
/* build fixed tables if not already (multiple overlapped executions ok) */
|
|
||||||
if (!fixed_built)
|
|
||||||
{
|
|
||||||
int k; /* temporary variable */
|
|
||||||
unsigned c[288]; /* length list for huft_build */
|
|
||||||
z_stream z; /* for falloc function */
|
|
||||||
int f = FIXEDH; /* number of hufts left in fixed_mem */
|
|
||||||
|
|
||||||
/* set up fake z_stream for memory routines */
|
|
||||||
z.zalloc = falloc;
|
|
||||||
z.zfree = Z_NULL;
|
|
||||||
z.opaque = (voidpf)&f;
|
|
||||||
|
|
||||||
/* 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, &z);
|
|
||||||
|
|
||||||
/* 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, &z);
|
|
||||||
|
|
||||||
/* done */
|
|
||||||
Assert(f == 0, "invalid build of fixed tables");
|
|
||||||
fixed_built = 1;
|
|
||||||
}
|
|
||||||
*bl = fixed_bl;
|
|
||||||
*bd = fixed_bd;
|
|
||||||
*tl = fixed_tl;
|
|
||||||
*td = fixed_td;
|
|
||||||
return Z_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int inflate_trees_free(t, z)
|
|
||||||
inflate_huft *t; /* table to free */
|
|
||||||
z_streamp z; /* for zfree function */
|
|
||||||
/* Free the malloc'ed tables built by huft_build(), which makes a linked
|
|
||||||
list of the tables it made, with the links in a dummy first entry of
|
|
||||||
each table. */
|
|
||||||
{
|
|
||||||
register inflate_huft *p, *q, *r;
|
|
||||||
|
|
||||||
/* Reverse linked list */
|
|
||||||
p = Z_NULL;
|
|
||||||
q = t;
|
|
||||||
while (q != Z_NULL)
|
|
||||||
{
|
|
||||||
r = (q - 1)->next;
|
|
||||||
(q - 1)->next = p;
|
|
||||||
p = q;
|
|
||||||
q = r;
|
|
||||||
}
|
|
||||||
/* Go through linked list, freeing from the malloced (t[-1]) address. */
|
|
||||||
while (p != Z_NULL)
|
|
||||||
{
|
|
||||||
q = (--p)->next;
|
|
||||||
ZFREE(z,p);
|
|
||||||
p = q;
|
|
||||||
}
|
|
||||||
return Z_OK;
|
|
||||||
}
|
}
|
||||||
|
|||||||
90
inftrees.h
90
inftrees.h
@@ -1,6 +1,6 @@
|
|||||||
/* 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
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* WARNING: this file should *not* be used by applications. It is
|
/* WARNING: this file should *not* be used by applications. It is
|
||||||
@@ -8,52 +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
|
||||||
|
0000tttt - table link, tttt != 0 is the number of table index bits
|
||||||
|
0001eeee - length or distance, eeee is the number of extra bits
|
||||||
|
01100000 - end of block
|
||||||
|
01000000 - invalid code
|
||||||
|
*/
|
||||||
|
|
||||||
struct inflate_huft_s {
|
/* Maximum size of dynamic tree. The maximum found in a long but non-
|
||||||
union {
|
exhaustive search was 1004 code structures (850 for length/literals
|
||||||
struct {
|
and 154 for distances, the latter actually the result of an
|
||||||
Byte Exop; /* number of extra bits or operation */
|
exhaustive search). The true maximum is not known, but the value
|
||||||
Byte Bits; /* number of bits in this code or subcode */
|
below is more than safe. */
|
||||||
} what;
|
#define ENOUGH 1440
|
||||||
Bytef *pad; /* pad structure to a power of 2 (4 bytes for */
|
#define MAXD 154
|
||||||
} 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;
|
|
||||||
};
|
|
||||||
|
|
||||||
#ifdef DEBUG
|
/* Type of code to build for inftable() */
|
||||||
extern uInt inflate_hufts;
|
typedef enum {
|
||||||
#endif
|
CODES,
|
||||||
|
LENS,
|
||||||
extern int inflate_trees_bits OF((
|
DISTS
|
||||||
uIntf *, /* 19 code lengths */
|
} codetype;
|
||||||
uIntf *, /* bits tree desired/actual depth */
|
|
||||||
inflate_huft * FAR *, /* bits tree result */
|
|
||||||
z_streamp )); /* for zalloc, zfree functions */
|
|
||||||
|
|
||||||
extern int inflate_trees_dynamic OF((
|
|
||||||
uInt, /* number of literal/length codes */
|
|
||||||
uInt, /* number of distance codes */
|
|
||||||
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 */
|
|
||||||
z_streamp )); /* for zalloc, zfree functions */
|
|
||||||
|
|
||||||
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 */
|
|
||||||
|
|
||||||
extern int inflate_trees_free OF((
|
|
||||||
inflate_huft *, /* tables to free */
|
|
||||||
z_streamp )); /* for zfree function */
|
|
||||||
|
|
||||||
|
extern int inflate_table OF((codetype type, unsigned short FAR *lens,
|
||||||
|
unsigned codes, code * FAR *table, unsigned *bits,
|
||||||
|
unsigned short FAR *work));
|
||||||
|
|||||||
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;
|
|
||||||
}
|
|
||||||
99
infutil.h
99
infutil.h
@@ -1,99 +0,0 @@
|
|||||||
/* infutil.h -- types and macros common to blocks and codes
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _INFUTIL_H
|
|
||||||
#define _INFUTIL_H
|
|
||||||
|
|
||||||
typedef enum {
|
|
||||||
TYPE, /* get type bits (3, including end bit) */
|
|
||||||
LENS, /* get lengths for stored */
|
|
||||||
STORED, /* processing stored block */
|
|
||||||
TABLE, /* get table lengths */
|
|
||||||
BTREE, /* get bit lengths tree for a dynamic block */
|
|
||||||
DTREE, /* get length, distance trees for a dynamic block */
|
|
||||||
CODES, /* processing fixed or dynamic block */
|
|
||||||
DRY, /* output remaining window bytes */
|
|
||||||
DONE, /* finished last block, done */
|
|
||||||
BAD} /* got a data error--stuck here */
|
|
||||||
inflate_block_mode;
|
|
||||||
|
|
||||||
/* inflate blocks semi-private state */
|
|
||||||
struct inflate_blocks_state {
|
|
||||||
|
|
||||||
/* mode */
|
|
||||||
inflate_block_mode mode; /* current inflate_block mode */
|
|
||||||
|
|
||||||
/* mode dependent information */
|
|
||||||
union {
|
|
||||||
uInt left; /* if STORED, bytes left to copy */
|
|
||||||
struct {
|
|
||||||
uInt table; /* table lengths (14 bits) */
|
|
||||||
uInt index; /* index into blens (or border) */
|
|
||||||
uIntf *blens; /* bit lengths of codes */
|
|
||||||
uInt bb; /* bit length tree depth */
|
|
||||||
inflate_huft *tb; /* bit length decoding tree */
|
|
||||||
} trees; /* if DTREE, decoding info for trees */
|
|
||||||
struct {
|
|
||||||
inflate_huft *tl;
|
|
||||||
inflate_huft *td; /* trees to free */
|
|
||||||
inflate_codes_statef
|
|
||||||
*codes;
|
|
||||||
} decode; /* if CODES, current state */
|
|
||||||
} sub; /* submode */
|
|
||||||
uInt last; /* true if this block is the last block */
|
|
||||||
|
|
||||||
/* mode independent information */
|
|
||||||
uInt bitk; /* bits in bit buffer */
|
|
||||||
uLong bitb; /* bit buffer */
|
|
||||||
Bytef *window; /* sliding window */
|
|
||||||
Bytef *end; /* one byte after sliding window */
|
|
||||||
Bytef *read; /* window read pointer */
|
|
||||||
Bytef *write; /* window write pointer */
|
|
||||||
check_func checkfn; /* check function */
|
|
||||||
uLong check; /* check on output */
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/* defines for inflate input/output */
|
|
||||||
/* update pointers and return */
|
|
||||||
#define UPDBITS {s->bitb=b;s->bitk=k;}
|
|
||||||
#define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
|
|
||||||
#define UPDOUT {s->write=q;}
|
|
||||||
#define UPDATE {UPDBITS UPDIN UPDOUT}
|
|
||||||
#define LEAVE {UPDATE return inflate_flush(s,z,r);}
|
|
||||||
/* get bytes and bits */
|
|
||||||
#define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
|
|
||||||
#define NEEDBYTE {if(n)r=Z_OK;else LEAVE}
|
|
||||||
#define NEXTBYTE (n--,*p++)
|
|
||||||
#define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}}
|
|
||||||
#define DUMPBITS(j) {b>>=(j);k-=(j);}
|
|
||||||
/* output bytes */
|
|
||||||
#define WAVAIL (uInt)(q<s->read?s->read-q-1:s->end-q)
|
|
||||||
#define LOADOUT {q=s->write;m=(uInt)WAVAIL;}
|
|
||||||
#define WRAP {if(q==s->end&&s->read!=s->window){q=s->window;m=(uInt)WAVAIL;}}
|
|
||||||
#define FLUSH {UPDOUT r=inflate_flush(s,z,r); LOADOUT}
|
|
||||||
#define NEEDOUT {if(m==0){WRAP if(m==0){FLUSH WRAP if(m==0) LEAVE}}r=Z_OK;}
|
|
||||||
#define OUTBYTE(a) {*q++=(Byte)(a);m--;}
|
|
||||||
/* load local pointers */
|
|
||||||
#define LOAD {LOADIN LOADOUT}
|
|
||||||
|
|
||||||
/* masks for lower bits (size given to avoid silly warnings with Visual C++) */
|
|
||||||
extern uInt inflate_mask[17];
|
|
||||||
|
|
||||||
/* copy as much as possible from the sliding window to the output area */
|
|
||||||
extern int inflate_flush OF((
|
|
||||||
inflate_blocks_statef *,
|
|
||||||
z_streamp ,
|
|
||||||
int));
|
|
||||||
|
|
||||||
struct internal_state {int dummy;}; /* for buggy compilers */
|
|
||||||
|
|
||||||
#endif
|
|
||||||
84
minigzip.c
84
minigzip.c
@@ -1,5 +1,5 @@
|
|||||||
/* minigzip.c -- simulate gzip using the zlib compression library
|
/* minigzip.c -- simulate gzip using the zlib compression library
|
||||||
* 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
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -25,6 +25,11 @@
|
|||||||
extern void exit OF((int));
|
extern void exit OF((int));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef USE_MMAP
|
||||||
|
# include <sys/types.h>
|
||||||
|
# include <sys/mman.h>
|
||||||
|
# include <sys/stat.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(MSDOS) || defined(OS2) || defined(WIN32)
|
#if defined(MSDOS) || defined(OS2) || defined(WIN32)
|
||||||
# include <fcntl.h>
|
# include <fcntl.h>
|
||||||
@@ -43,15 +48,20 @@
|
|||||||
# define GZ_SUFFIX "-gz"
|
# define GZ_SUFFIX "-gz"
|
||||||
# define fileno(file) file->__file
|
# define fileno(file) file->__file
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
|
||||||
|
# include <unix.h> /* for fileno */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef WIN32 /* unlink already in stdio.h for WIN32 */
|
||||||
|
extern int unlink OF((const char *));
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef GZ_SUFFIX
|
#ifndef GZ_SUFFIX
|
||||||
# define GZ_SUFFIX ".gz"
|
# define GZ_SUFFIX ".gz"
|
||||||
#endif
|
#endif
|
||||||
#define SUFFIX_LEN (sizeof(GZ_SUFFIX)-1)
|
#define SUFFIX_LEN (sizeof(GZ_SUFFIX)-1)
|
||||||
|
|
||||||
extern int unlink OF((const char *));
|
#define BUFLEN 16384
|
||||||
|
|
||||||
#define BUFLEN 4096
|
|
||||||
#define MAX_NAME_LEN 1024
|
#define MAX_NAME_LEN 1024
|
||||||
|
|
||||||
#ifdef MAXSEG_64K
|
#ifdef MAXSEG_64K
|
||||||
@@ -63,12 +73,15 @@ extern int unlink OF((const char *));
|
|||||||
|
|
||||||
char *prog;
|
char *prog;
|
||||||
|
|
||||||
void error OF((const char *msg));
|
void error OF((const char *msg));
|
||||||
void gz_compress OF((FILE *in, gzFile out));
|
void gz_compress OF((FILE *in, gzFile out));
|
||||||
void gz_uncompress OF((gzFile in, FILE *out));
|
#ifdef USE_MMAP
|
||||||
void file_compress OF((char *file));
|
int gz_compress_mmap OF((FILE *in, gzFile out));
|
||||||
void file_uncompress OF((char *file));
|
#endif
|
||||||
int main OF((int argc, char *argv[]));
|
void gz_uncompress OF((gzFile in, FILE *out));
|
||||||
|
void file_compress OF((char *file, char *mode));
|
||||||
|
void file_uncompress OF((char *file));
|
||||||
|
int main OF((int argc, char *argv[]));
|
||||||
|
|
||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
* Display error message and exit
|
* Display error message and exit
|
||||||
@@ -83,6 +96,7 @@ void error(msg)
|
|||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
* Compress input to output then close both files.
|
* Compress input to output then close both files.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void gz_compress(in, out)
|
void gz_compress(in, out)
|
||||||
FILE *in;
|
FILE *in;
|
||||||
gzFile out;
|
gzFile out;
|
||||||
@@ -91,6 +105,12 @@ void gz_compress(in, out)
|
|||||||
int len;
|
int len;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
|
#ifdef USE_MMAP
|
||||||
|
/* Try first compressing with mmap. If mmap fails (minigzip used in a
|
||||||
|
* pipe), use the normal fread loop.
|
||||||
|
*/
|
||||||
|
if (gz_compress_mmap(in, out) == Z_OK) return;
|
||||||
|
#endif
|
||||||
for (;;) {
|
for (;;) {
|
||||||
len = fread(buf, 1, sizeof(buf), in);
|
len = fread(buf, 1, sizeof(buf), in);
|
||||||
if (ferror(in)) {
|
if (ferror(in)) {
|
||||||
@@ -105,6 +125,43 @@ void gz_compress(in, out)
|
|||||||
if (gzclose(out) != Z_OK) error("failed gzclose");
|
if (gzclose(out) != Z_OK) error("failed gzclose");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef USE_MMAP /* MMAP version, Miguel Albrecht <malbrech@eso.org> */
|
||||||
|
|
||||||
|
/* Try compressing the input file at once using mmap. Return Z_OK if
|
||||||
|
* if success, Z_ERRNO otherwise.
|
||||||
|
*/
|
||||||
|
int gz_compress_mmap(in, out)
|
||||||
|
FILE *in;
|
||||||
|
gzFile out;
|
||||||
|
{
|
||||||
|
int len;
|
||||||
|
int err;
|
||||||
|
int ifd = fileno(in);
|
||||||
|
caddr_t buf; /* mmap'ed buffer for the entire input file */
|
||||||
|
off_t buf_len; /* length of the input file */
|
||||||
|
struct stat sb;
|
||||||
|
|
||||||
|
/* Determine the size of the file, needed for mmap: */
|
||||||
|
if (fstat(ifd, &sb) < 0) return Z_ERRNO;
|
||||||
|
buf_len = sb.st_size;
|
||||||
|
if (buf_len <= 0) return Z_ERRNO;
|
||||||
|
|
||||||
|
/* Now do the actual mmap: */
|
||||||
|
buf = mmap((caddr_t) 0, buf_len, PROT_READ, MAP_SHARED, ifd, (off_t)0);
|
||||||
|
if (buf == (caddr_t)(-1)) return Z_ERRNO;
|
||||||
|
|
||||||
|
/* Compress the whole file at once: */
|
||||||
|
len = gzwrite(out, (char *)buf, (unsigned)buf_len);
|
||||||
|
|
||||||
|
if (len != (int)buf_len) error(gzerror(out, &err));
|
||||||
|
|
||||||
|
munmap(buf, buf_len);
|
||||||
|
fclose(in);
|
||||||
|
if (gzclose(out) != Z_OK) error("failed gzclose");
|
||||||
|
return Z_OK;
|
||||||
|
}
|
||||||
|
#endif /* USE_MMAP */
|
||||||
|
|
||||||
/* ===========================================================================
|
/* ===========================================================================
|
||||||
* Uncompress input to output then close both files.
|
* Uncompress input to output then close both files.
|
||||||
*/
|
*/
|
||||||
@@ -135,8 +192,9 @@ void gz_uncompress(in, out)
|
|||||||
* Compress the given file: create a corresponding .gz file and remove the
|
* Compress the given file: create a corresponding .gz file and remove the
|
||||||
* original.
|
* original.
|
||||||
*/
|
*/
|
||||||
void file_compress(file)
|
void file_compress(file, mode)
|
||||||
char *file;
|
char *file;
|
||||||
|
char *mode;
|
||||||
{
|
{
|
||||||
local char outfile[MAX_NAME_LEN];
|
local char outfile[MAX_NAME_LEN];
|
||||||
FILE *in;
|
FILE *in;
|
||||||
@@ -150,7 +208,7 @@ void file_compress(file)
|
|||||||
perror(file);
|
perror(file);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
out = gzopen(outfile, "wb"); /* use "wb9" for maximal compression */
|
out = gzopen(outfile, mode);
|
||||||
if (out == NULL) {
|
if (out == NULL) {
|
||||||
fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
|
fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
|
||||||
exit(1);
|
exit(1);
|
||||||
@@ -253,7 +311,7 @@ int main(argc, argv)
|
|||||||
if (uncompr) {
|
if (uncompr) {
|
||||||
file_uncompress(*argv);
|
file_uncompress(*argv);
|
||||||
} else {
|
} else {
|
||||||
file_compress(*argv);
|
file_compress(*argv, outmode);
|
||||||
}
|
}
|
||||||
} while (argv++, --argc);
|
} while (argv++, --argc);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,105 +0,0 @@
|
|||||||
# Makefile for zlib
|
|
||||||
# Borland C++ ************ UNTESTED ***********
|
|
||||||
|
|
||||||
# To use, do "make -fmakefile.bor"
|
|
||||||
# To compile in small model, set below: MODEL=-ms
|
|
||||||
|
|
||||||
# WARNING: the small model is supported but only for small values of
|
|
||||||
# MAX_WBITS and MAX_MEM_LEVEL. For example:
|
|
||||||
# -DMAX_WBITS=11 -DDEF_WBITS=11 -DMAX_MEM_LEVEL=3
|
|
||||||
# If you wish to reduce the memory requirements (default 256K for big
|
|
||||||
# objects plus a few K), you can add to CFLAGS below:
|
|
||||||
# -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
|
|
||||||
# See zconf.h for details about the memory requirements.
|
|
||||||
|
|
||||||
# ------------- Turbo C++, Borland C++ -------------
|
|
||||||
MODEL=-ml
|
|
||||||
CFLAGS=-O2 -Z $(MODEL)
|
|
||||||
CC=bcc
|
|
||||||
LD=bcc
|
|
||||||
LIB=tlib
|
|
||||||
# replace bcc with tcc for Turbo C++ 1.0, with bcc32 for the 32 bit version
|
|
||||||
LDFLAGS=$(MODEL)
|
|
||||||
O=.obj
|
|
||||||
|
|
||||||
# variables
|
|
||||||
OBJ1 = adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) \
|
|
||||||
trees$(O)
|
|
||||||
OBJP1 = adler32$(O)+compress$(O)+crc32$(O)+gzio$(O)+uncompr$(O)+deflate$(O)+\
|
|
||||||
trees$(O)
|
|
||||||
OBJ2 = zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) \
|
|
||||||
infutil$(O) inffast$(O)
|
|
||||||
OBJP2 = zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O)+\
|
|
||||||
infutil$(O)+inffast$(O)
|
|
||||||
|
|
||||||
all: test
|
|
||||||
|
|
||||||
adler32.obj: adler32.c zutil.h zlib.h zconf.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
compress.obj: compress.c zlib.h zconf.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
crc32.obj: crc32.c zutil.h zlib.h zconf.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
gzio.obj: gzio.c zutil.h zlib.h zconf.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
infblock.obj: infblock.c zutil.h zlib.h zconf.h infblock.h inftrees.h\
|
|
||||||
infcodes.h infutil.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
infcodes.obj: infcodes.c zutil.h zlib.h zconf.h inftrees.h infutil.h\
|
|
||||||
infcodes.h inffast.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
inflate.obj: inflate.c zutil.h zlib.h zconf.h infblock.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
infutil.obj: infutil.c zutil.h zlib.h zconf.h inftrees.h infutil.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
trees.obj: trees.c deflate.h zutil.h zlib.h zconf.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
uncompr.obj: uncompr.c zlib.h zconf.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
zutil.obj: zutil.c zutil.h zlib.h zconf.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
example.obj: example.c zlib.h zconf.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
minigzip.obj: minigzip.c zlib.h zconf.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
|
||||||
|
|
||||||
# we must cut the command line to fit in the MS/DOS 128 byte limit:
|
|
||||||
zlib.lib: $(OBJ1) $(OBJ2)
|
|
||||||
del zlib.lib
|
|
||||||
$(LIB) zlib +$(OBJP1)
|
|
||||||
$(LIB) zlib +$(OBJP2)
|
|
||||||
|
|
||||||
example.exe: example.obj zlib.lib
|
|
||||||
$(LD) $(LDFLAGS) example.obj zlib.lib
|
|
||||||
|
|
||||||
minigzip.exe: minigzip.obj zlib.lib
|
|
||||||
$(LD) $(LDFLAGS) minigzip.obj zlib.lib
|
|
||||||
|
|
||||||
test: example.exe minigzip.exe
|
|
||||||
example
|
|
||||||
echo hello world | minigzip | minigzip -d
|
|
||||||
|
|
||||||
#clean:
|
|
||||||
# del *.obj
|
|
||||||
# del *.exe
|
|
||||||
@@ -28,15 +28,15 @@ $ if f$search("SYS$SYSTEM:MMS.EXE").eqs.""
|
|||||||
$ then
|
$ then
|
||||||
$ dele example.obj;*,minigzip.obj;*
|
$ dele example.obj;*,minigzip.obj;*
|
||||||
$ CALL MAKE adler32.OBJ "CC ''CCOPT' adler32" -
|
$ CALL MAKE adler32.OBJ "CC ''CCOPT' adler32" -
|
||||||
adler32.c zutil.h zlib.h zconf.h
|
adler32.c zlib.h zconf.h
|
||||||
$ CALL MAKE compress.OBJ "CC ''CCOPT' compress" -
|
$ CALL MAKE compress.OBJ "CC ''CCOPT' compress" -
|
||||||
compress.c zlib.h zconf.h
|
compress.c zlib.h zconf.h
|
||||||
$ CALL MAKE crc32.OBJ "CC ''CCOPT' crc32" -
|
$ CALL MAKE crc32.OBJ "CC ''CCOPT' crc32" -
|
||||||
crc32.c zutil.h zlib.h zconf.h
|
crc32.c zlib.h zconf.h
|
||||||
$ CALL MAKE deflate.OBJ "CC ''CCOPT' deflate" -
|
$ CALL MAKE deflate.OBJ "CC ''CCOPT' deflate" -
|
||||||
deflatec.c deflate.h zutil.h zlib.h zconf.h
|
deflate.c deflate.h zutil.h zlib.h zconf.h
|
||||||
$ CALL MAKE gzio.OBJ "CC ''CCOPT' gzio" -
|
$ CALL MAKE gzio.OBJ "CC ''CCOPT' gzio" -
|
||||||
gsio.c zutil.h zlib.h zconf.h
|
gzio.c zutil.h zlib.h zconf.h
|
||||||
$ CALL MAKE infblock.OBJ "CC ''CCOPT' infblock" -
|
$ CALL MAKE infblock.OBJ "CC ''CCOPT' infblock" -
|
||||||
infblock.c zutil.h zlib.h zconf.h infblock.h
|
infblock.c zutil.h zlib.h zconf.h infblock.h
|
||||||
$ CALL MAKE infcodes.OBJ "CC ''CCOPT' infcodes" -
|
$ CALL MAKE infcodes.OBJ "CC ''CCOPT' infcodes" -
|
||||||
151
old/Makefile.riscos
Normal file
151
old/Makefile.riscos
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
# Project: zlib_1_03
|
||||||
|
# Patched for zlib 1.1.2 rw@shadow.org.uk 19980430
|
||||||
|
# test works out-of-the-box, installs `somewhere' on demand
|
||||||
|
|
||||||
|
# Toolflags:
|
||||||
|
CCflags = -c -depend !Depend -IC: -g -throwback -DRISCOS -fah
|
||||||
|
C++flags = -c -depend !Depend -IC: -throwback
|
||||||
|
Linkflags = -aif -c++ -o $@
|
||||||
|
ObjAsmflags = -throwback -NoCache -depend !Depend
|
||||||
|
CMHGflags =
|
||||||
|
LibFileflags = -c -l -o $@
|
||||||
|
Squeezeflags = -o $@
|
||||||
|
|
||||||
|
# change the line below to where _you_ want the library installed.
|
||||||
|
libdest = lib:zlib
|
||||||
|
|
||||||
|
# Final targets:
|
||||||
|
@.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.uncompr @.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.uncompr @.o.zutil
|
||||||
|
test: @.minigzip @.example @.lib
|
||||||
|
@copy @.lib @.libc A~C~DF~L~N~P~Q~RS~TV
|
||||||
|
@echo running tests: hang on.
|
||||||
|
@/@.minigzip -f -9 libc
|
||||||
|
@/@.minigzip -d libc-gz
|
||||||
|
@/@.minigzip -f -1 libc
|
||||||
|
@/@.minigzip -d libc-gz
|
||||||
|
@/@.minigzip -h -9 libc
|
||||||
|
@/@.minigzip -d libc-gz
|
||||||
|
@/@.minigzip -h -1 libc
|
||||||
|
@/@.minigzip -d libc-gz
|
||||||
|
@/@.minigzip -9 libc
|
||||||
|
@/@.minigzip -d libc-gz
|
||||||
|
@/@.minigzip -1 libc
|
||||||
|
@/@.minigzip -d libc-gz
|
||||||
|
@diff @.lib @.libc
|
||||||
|
@echo that should have reported '@.lib and @.libc identical' if you have diff.
|
||||||
|
@/@.example @.fred @.fred
|
||||||
|
@echo that will have given lots of hello!'s.
|
||||||
|
|
||||||
|
@.minigzip: @.o.minigzip @.lib C:o.Stubs
|
||||||
|
Link $(Linkflags) @.o.minigzip @.lib C:o.Stubs
|
||||||
|
@.example: @.o.example @.lib C:o.Stubs
|
||||||
|
Link $(Linkflags) @.o.example @.lib C:o.Stubs
|
||||||
|
|
||||||
|
install: @.lib
|
||||||
|
cdir $(libdest)
|
||||||
|
cdir $(libdest).h
|
||||||
|
@copy @.h.zlib $(libdest).h.zlib A~C~DF~L~N~P~Q~RS~TV
|
||||||
|
@copy @.h.zconf $(libdest).h.zconf A~C~DF~L~N~P~Q~RS~TV
|
||||||
|
@copy @.lib $(libdest).lib A~C~DF~L~N~P~Q~RS~TV
|
||||||
|
@echo okay, installed zlib in $(libdest)
|
||||||
|
|
||||||
|
clean:; remove @.minigzip
|
||||||
|
remove @.example
|
||||||
|
remove @.libc
|
||||||
|
-wipe @.o.* F~r~cV
|
||||||
|
remove @.fred
|
||||||
|
|
||||||
|
# User-editable dependencies:
|
||||||
|
.c.o:
|
||||||
|
cc $(ccflags) -o $@ $<
|
||||||
|
|
||||||
|
# Static dependencies:
|
||||||
|
|
||||||
|
# Dynamic dependencies:
|
||||||
|
o.example: c.example
|
||||||
|
o.example: h.zlib
|
||||||
|
o.example: h.zconf
|
||||||
|
o.minigzip: c.minigzip
|
||||||
|
o.minigzip: h.zlib
|
||||||
|
o.minigzip: h.zconf
|
||||||
|
o.adler32: c.adler32
|
||||||
|
o.adler32: h.zlib
|
||||||
|
o.adler32: h.zconf
|
||||||
|
o.compress: c.compress
|
||||||
|
o.compress: h.zlib
|
||||||
|
o.compress: h.zconf
|
||||||
|
o.crc32: c.crc32
|
||||||
|
o.crc32: h.zlib
|
||||||
|
o.crc32: h.zconf
|
||||||
|
o.deflate: c.deflate
|
||||||
|
o.deflate: h.deflate
|
||||||
|
o.deflate: h.zutil
|
||||||
|
o.deflate: h.zlib
|
||||||
|
o.deflate: h.zconf
|
||||||
|
o.gzio: c.gzio
|
||||||
|
o.gzio: h.zutil
|
||||||
|
o.gzio: h.zlib
|
||||||
|
o.gzio: h.zconf
|
||||||
|
o.infblock: c.infblock
|
||||||
|
o.infblock: h.zutil
|
||||||
|
o.infblock: h.zlib
|
||||||
|
o.infblock: h.zconf
|
||||||
|
o.infblock: h.infblock
|
||||||
|
o.infblock: h.inftrees
|
||||||
|
o.infblock: h.infcodes
|
||||||
|
o.infblock: h.infutil
|
||||||
|
o.infcodes: c.infcodes
|
||||||
|
o.infcodes: h.zutil
|
||||||
|
o.infcodes: h.zlib
|
||||||
|
o.infcodes: h.zconf
|
||||||
|
o.infcodes: h.inftrees
|
||||||
|
o.infcodes: h.infblock
|
||||||
|
o.infcodes: h.infcodes
|
||||||
|
o.infcodes: h.infutil
|
||||||
|
o.infcodes: h.inffast
|
||||||
|
o.inffast: c.inffast
|
||||||
|
o.inffast: h.zutil
|
||||||
|
o.inffast: h.zlib
|
||||||
|
o.inffast: h.zconf
|
||||||
|
o.inffast: h.inftrees
|
||||||
|
o.inffast: h.infblock
|
||||||
|
o.inffast: h.infcodes
|
||||||
|
o.inffast: h.infutil
|
||||||
|
o.inffast: h.inffast
|
||||||
|
o.inflate: c.inflate
|
||||||
|
o.inflate: h.zutil
|
||||||
|
o.inflate: h.zlib
|
||||||
|
o.inflate: h.zconf
|
||||||
|
o.inflate: h.infblock
|
||||||
|
o.inftrees: c.inftrees
|
||||||
|
o.inftrees: h.zutil
|
||||||
|
o.inftrees: h.zlib
|
||||||
|
o.inftrees: h.zconf
|
||||||
|
o.inftrees: h.inftrees
|
||||||
|
o.inftrees: h.inffixed
|
||||||
|
o.infutil: c.infutil
|
||||||
|
o.infutil: h.zutil
|
||||||
|
o.infutil: h.zlib
|
||||||
|
o.infutil: h.zconf
|
||||||
|
o.infutil: h.infblock
|
||||||
|
o.infutil: h.inftrees
|
||||||
|
o.infutil: h.infcodes
|
||||||
|
o.infutil: h.infutil
|
||||||
|
o.trees: c.trees
|
||||||
|
o.trees: h.deflate
|
||||||
|
o.trees: h.zutil
|
||||||
|
o.trees: h.zlib
|
||||||
|
o.trees: h.zconf
|
||||||
|
o.trees: h.trees
|
||||||
|
o.uncompr: c.uncompr
|
||||||
|
o.uncompr: h.zlib
|
||||||
|
o.uncompr: h.zconf
|
||||||
|
o.zutil: c.zutil
|
||||||
|
o.zutil: h.zutil
|
||||||
|
o.zutil: h.zlib
|
||||||
|
o.zutil: h.zconf
|
||||||
3
old/README
Normal file
3
old/README
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
This directory contains files that have not been updated for zlib 1.2.0.
|
||||||
|
|
||||||
|
(Volunteers are encouraged to help clean this up. Thanks.)
|
||||||
66
old/amiga/Makefile.pup
Normal file
66
old/amiga/Makefile.pup
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
# Amiga powerUP (TM) Makefile
|
||||||
|
# makefile for libpng and SAS C V6.58/7.00 PPC compiler
|
||||||
|
# Copyright (C) 1998 by Andreas R. Kleinert
|
||||||
|
|
||||||
|
CC = scppc
|
||||||
|
CFLAGS = NOSTKCHK NOSINT OPTIMIZE OPTGO OPTPEEP OPTINLOCAL OPTINL \
|
||||||
|
OPTLOOP OPTRDEP=8 OPTDEP=8 OPTCOMP=8
|
||||||
|
LIBNAME = libzip.a
|
||||||
|
AR = ppc-amigaos-ar
|
||||||
|
AR_FLAGS = cr
|
||||||
|
RANLIB = ppc-amigaos-ranlib
|
||||||
|
LDFLAGS = -r -o
|
||||||
|
LDLIBS = LIB:scppc.a
|
||||||
|
LN = ppc-amigaos-ld
|
||||||
|
RM = delete quiet
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
TEST_OBJS = example.o minigzip.o
|
||||||
|
|
||||||
|
all: example minigzip
|
||||||
|
|
||||||
|
test: all
|
||||||
|
example
|
||||||
|
echo hello world | minigzip | minigzip -d
|
||||||
|
|
||||||
|
$(LIBNAME): $(OBJS)
|
||||||
|
$(AR) $(AR_FLAGS) $@ $(OBJS)
|
||||||
|
$(RANLIB) $@
|
||||||
|
|
||||||
|
example: example.o $(LIBNAME)
|
||||||
|
$(LN) $(LDFLAGS) example LIB:c_ppc.o example.o $(LIBNAME) $(LDLIBS) LIB:end.o
|
||||||
|
|
||||||
|
minigzip: minigzip.o $(LIBNAME)
|
||||||
|
$(LN) $(LDFLAGS) minigzip LIB:c_ppc.o minigzip.o $(LIBNAME) $(LDLIBS) LIB:end.o
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) *.o example minigzip $(LIBNAME) foo.gz
|
||||||
|
|
||||||
|
zip:
|
||||||
|
zip -ul9 zlib README ChangeLog Makefile Make????.??? Makefile.?? \
|
||||||
|
descrip.mms *.[ch]
|
||||||
|
|
||||||
|
tgz:
|
||||||
|
cd ..; tar cfz zlib/zlib.tgz zlib/README zlib/ChangeLog zlib/Makefile \
|
||||||
|
zlib/Make????.??? zlib/Makefile.?? zlib/descrip.mms zlib/*.[ch]
|
||||||
|
|
||||||
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||||
|
|
||||||
|
adler32.o: zutil.h zlib.h zconf.h
|
||||||
|
compress.o: zlib.h zconf.h
|
||||||
|
crc32.o: zutil.h zlib.h zconf.h
|
||||||
|
deflate.o: deflate.h zutil.h zlib.h zconf.h
|
||||||
|
example.o: zlib.h zconf.h
|
||||||
|
gzio.o: zutil.h zlib.h zconf.h
|
||||||
|
infblock.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h
|
||||||
|
infcodes.o: zutil.h zlib.h zconf.h inftrees.h infutil.h infcodes.h inffast.h
|
||||||
|
inffast.o: zutil.h zlib.h zconf.h inftrees.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
|
||||||
|
infutil.o: zutil.h zlib.h zconf.h inftrees.h infutil.h
|
||||||
|
minigzip.o: zlib.h zconf.h
|
||||||
|
trees.o: deflate.h zutil.h zlib.h zconf.h
|
||||||
|
uncompr.o: zlib.h zconf.h
|
||||||
|
zutil.o: zutil.h zlib.h zconf.h
|
||||||
@@ -33,13 +33,13 @@ OBJP2 = zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O)+\
|
|||||||
|
|
||||||
all: test
|
all: test
|
||||||
|
|
||||||
adler32.obj: adler32.c zutil.h zlib.h zconf.h
|
adler32.obj: adler32.c zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
compress.obj: compress.c zlib.h zconf.h
|
compress.obj: compress.c zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
crc32.obj: crc32.c zutil.h zlib.h zconf.h
|
crc32.obj: crc32.c zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
|
deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
|
||||||
125
old/msdos/Makefile.bor
Normal file
125
old/msdos/Makefile.bor
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
# Makefile for zlib
|
||||||
|
# Borland C++ ************ UNTESTED ***********
|
||||||
|
|
||||||
|
# To use, do "make -fmakefile.bor"
|
||||||
|
# To compile in small model, set below: MODEL=s
|
||||||
|
|
||||||
|
# WARNING: the small model is supported but only for small values of
|
||||||
|
# MAX_WBITS and MAX_MEM_LEVEL. For example:
|
||||||
|
# -DMAX_WBITS=11 -DDEF_WBITS=11 -DMAX_MEM_LEVEL=3
|
||||||
|
# If you wish to reduce the memory requirements (default 256K for big
|
||||||
|
# objects plus a few K), you can add to the LOC macro below:
|
||||||
|
# -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
|
||||||
|
# See zconf.h for details about the memory requirements.
|
||||||
|
|
||||||
|
# ------------- Turbo C++, Borland C++ -------------
|
||||||
|
|
||||||
|
# Optional nonstandard preprocessor flags (e.g. -DMAX_MEM_LEVEL=7)
|
||||||
|
# should be added to the environment via "set LOCAL_ZLIB=-DFOO" or added
|
||||||
|
# to the declaration of LOC here:
|
||||||
|
LOC = $(LOCAL_ZLIB)
|
||||||
|
|
||||||
|
# Type for CPU required: 0: 8086, 1: 80186, 2: 80286, 3: 80386, etc.
|
||||||
|
CPU_TYP = 0
|
||||||
|
|
||||||
|
# Memory model: one of s, m, c, l (small, medium, compact, large)
|
||||||
|
MODEL=l
|
||||||
|
|
||||||
|
CC=bcc
|
||||||
|
# replace bcc with tcc for Turbo C++ 1.0, with bcc32 for the 32 bit version
|
||||||
|
LD=$(CC)
|
||||||
|
AR=tlib
|
||||||
|
|
||||||
|
# compiler flags
|
||||||
|
CFLAGS=-O2 -Z -m$(MODEL) $(LOC)
|
||||||
|
# replace "-O2" by "-O -G -a -d" for Turbo C++ 1.0
|
||||||
|
|
||||||
|
LDFLAGS=-m$(MODEL)
|
||||||
|
|
||||||
|
O=.obj
|
||||||
|
|
||||||
|
# variables
|
||||||
|
OBJ1 = adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) \
|
||||||
|
trees$(O)
|
||||||
|
OBJP1 = adler32$(O)+compress$(O)+crc32$(O)+gzio$(O)+uncompr$(O)+deflate$(O)+\
|
||||||
|
trees$(O)
|
||||||
|
OBJ2 = zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) \
|
||||||
|
infutil$(O) inffast$(O)
|
||||||
|
OBJP2 = zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O)+\
|
||||||
|
infutil$(O)+inffast$(O)
|
||||||
|
|
||||||
|
ZLIB_H = zlib.h zconf.h
|
||||||
|
ZUTIL_H = zutil.h $(ZLIB_H)
|
||||||
|
|
||||||
|
ZLIB_LIB = zlib_$(MODEL).lib
|
||||||
|
|
||||||
|
all: test
|
||||||
|
|
||||||
|
# individual dependencies and action rules:
|
||||||
|
adler32.obj: adler32.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
compress.obj: compress.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
crc32.obj: crc32.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
deflate.obj: deflate.c deflate.h $(ZUTIL_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
gzio.obj: gzio.c $(ZUTIL_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
infblock.obj: infblock.c $(ZUTIL_H) infblock.h inftrees.h infcodes.h infutil.h
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
infcodes.obj: infcodes.c $(ZUTIL_H) inftrees.h infutil.h infcodes.h inffast.h
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
inflate.obj: inflate.c $(ZUTIL_H) infblock.h
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
inftrees.obj: inftrees.c $(ZUTIL_H) inftrees.h
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
infutil.obj: infutil.c $(ZUTIL_H) inftrees.h infutil.h
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
inffast.obj: inffast.c $(ZUTIL_H) inftrees.h infutil.h inffast.h
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
trees.obj: trees.c deflate.h $(ZUTIL_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
uncompr.obj: uncompr.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
zutil.obj: zutil.c $(ZUTIL_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
example.obj: example.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
minigzip.obj: minigzip.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
# we must cut the command line to fit in the MS/DOS 128 byte limit:
|
||||||
|
$(ZLIB_LIB): $(OBJ1) $(OBJ2)
|
||||||
|
del $(ZLIB_LIB)
|
||||||
|
$(AR) $(ZLIB_LIB) +$(OBJP1)
|
||||||
|
$(AR) $(ZLIB_LIB) +$(OBJP2)
|
||||||
|
|
||||||
|
example.exe: example.obj $(ZLIB_LIB)
|
||||||
|
$(LD) $(LDFLAGS) example.obj $(ZLIB_LIB)
|
||||||
|
|
||||||
|
minigzip.exe: minigzip.obj $(ZLIB_LIB)
|
||||||
|
$(LD) $(LDFLAGS) minigzip.obj $(ZLIB_LIB)
|
||||||
|
|
||||||
|
test: example.exe minigzip.exe
|
||||||
|
example
|
||||||
|
echo hello world | minigzip | minigzip -d
|
||||||
|
|
||||||
|
#clean:
|
||||||
|
# del *.obj
|
||||||
|
# del *.exe
|
||||||
69
old/msdos/Makefile.emx
Normal file
69
old/msdos/Makefile.emx
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
# Makefile for zlib. Modified for emx 0.9c by Chr. Spieler, 6/17/98.
|
||||||
|
# Copyright (C) 1995-1998 Jean-loup Gailly.
|
||||||
|
# For conditions of distribution and use, see copyright notice in zlib.h
|
||||||
|
|
||||||
|
# To compile, or to compile and test, type:
|
||||||
|
#
|
||||||
|
# make -fmakefile.emx; make test -fmakefile.emx
|
||||||
|
#
|
||||||
|
|
||||||
|
CC=gcc
|
||||||
|
|
||||||
|
#CFLAGS=-MMD -O
|
||||||
|
#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
|
||||||
|
#CFLAGS=-MMD -g -DDEBUG
|
||||||
|
CFLAGS=-MMD -O3 $(BUTT) -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
|
||||||
|
-Wstrict-prototypes -Wmissing-prototypes
|
||||||
|
|
||||||
|
# If cp.exe is available, replace "copy /Y" with "cp -fp" .
|
||||||
|
CP=copy /Y
|
||||||
|
# If gnu install.exe is available, replace $(CP) with ginstall.
|
||||||
|
INSTALL=$(CP)
|
||||||
|
# The default value of RM is "rm -f." If "rm.exe" is found, comment out:
|
||||||
|
RM=del
|
||||||
|
LDLIBS=-L. -lzlib
|
||||||
|
LD=$(CC) -s -o
|
||||||
|
LDSHARED=$(CC)
|
||||||
|
|
||||||
|
INCL=zlib.h zconf.h
|
||||||
|
LIBS=zlib.a
|
||||||
|
|
||||||
|
AR=ar rcs
|
||||||
|
|
||||||
|
prefix=/usr/local
|
||||||
|
exec_prefix = $(prefix)
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
TEST_OBJS = example.o minigzip.o
|
||||||
|
|
||||||
|
all: example.exe minigzip.exe
|
||||||
|
|
||||||
|
test: all
|
||||||
|
./example
|
||||||
|
echo hello world | .\minigzip | .\minigzip -d
|
||||||
|
|
||||||
|
%.o : %.c
|
||||||
|
$(CC) $(CFLAGS) -c $< -o $@
|
||||||
|
|
||||||
|
zlib.a: $(OBJS)
|
||||||
|
$(AR) $@ $(OBJS)
|
||||||
|
|
||||||
|
%.exe : %.o $(LIBS)
|
||||||
|
$(LD) $@ $< $(LDLIBS)
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) *.d
|
||||||
|
$(RM) *.o
|
||||||
|
$(RM) *.exe
|
||||||
|
$(RM) zlib.a
|
||||||
|
$(RM) foo.gz
|
||||||
|
|
||||||
|
DEPS := $(wildcard *.d)
|
||||||
|
ifneq ($(DEPS),)
|
||||||
|
include $(DEPS)
|
||||||
|
endif
|
||||||
121
old/msdos/Makefile.msc
Normal file
121
old/msdos/Makefile.msc
Normal file
@@ -0,0 +1,121 @@
|
|||||||
|
# Makefile for zlib
|
||||||
|
# Microsoft C 5.1 or later
|
||||||
|
|
||||||
|
# To use, do "make makefile.msc"
|
||||||
|
# To compile in small model, set below: MODEL=S
|
||||||
|
|
||||||
|
# If you wish to reduce the memory requirements (default 256K for big
|
||||||
|
# objects plus a few K), you can add to the LOC macro below:
|
||||||
|
# -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
|
||||||
|
# See zconf.h for details about the memory requirements.
|
||||||
|
|
||||||
|
# ------------- Microsoft C 5.1 and later -------------
|
||||||
|
|
||||||
|
# Optional nonstandard preprocessor flags (e.g. -DMAX_MEM_LEVEL=7)
|
||||||
|
# should be added to the environment via "set LOCAL_ZLIB=-DFOO" or added
|
||||||
|
# to the declaration of LOC here:
|
||||||
|
LOC = $(LOCAL_ZLIB)
|
||||||
|
|
||||||
|
# Type for CPU required: 0: 8086, 1: 80186, 2: 80286, 3: 80386, etc.
|
||||||
|
CPU_TYP = 0
|
||||||
|
|
||||||
|
# Memory model: one of S, M, C, L (small, medium, compact, large)
|
||||||
|
MODEL=L
|
||||||
|
|
||||||
|
CC=cl
|
||||||
|
CFLAGS=-nologo -A$(MODEL) -G$(CPU_TYP) -W3 -Oait -Gs $(LOC)
|
||||||
|
#-Ox generates bad code with MSC 5.1
|
||||||
|
LIB_CFLAGS=-Zl $(CFLAGS)
|
||||||
|
|
||||||
|
LD=link
|
||||||
|
LDFLAGS=/noi/e/st:0x1500/noe/farcall/packcode
|
||||||
|
# "/farcall/packcode" are only useful for `large code' memory models
|
||||||
|
# but should be a "no-op" for small code models.
|
||||||
|
|
||||||
|
O=.obj
|
||||||
|
|
||||||
|
# variables
|
||||||
|
OBJ1 = adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) \
|
||||||
|
trees$(O)
|
||||||
|
OBJP1 = adler32$(O)+compress$(O)+crc32$(O)+gzio$(O)+uncompr$(O)+deflate$(O)+\
|
||||||
|
trees$(O)
|
||||||
|
OBJ2 = zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) \
|
||||||
|
infutil$(O) inffast$(O)
|
||||||
|
OBJP2 = zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O)+\
|
||||||
|
infutil$(O)+inffast$(O)
|
||||||
|
|
||||||
|
ZLIB_H = zlib.h zconf.h
|
||||||
|
ZUTIL_H = zutil.h $(ZLIB_H)
|
||||||
|
|
||||||
|
ZLIB_LIB = zlib_$(MODEL).lib
|
||||||
|
|
||||||
|
all: $(ZLIB_LIB) example.exe minigzip.exe
|
||||||
|
|
||||||
|
# individual dependencies and action rules:
|
||||||
|
adler32.obj: adler32.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
compress.obj: compress.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
crc32.obj: crc32.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
deflate.obj: deflate.c deflate.h $(ZUTIL_H)
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
gzio.obj: gzio.c $(ZUTIL_H)
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
infblock.obj: infblock.c $(ZUTIL_H) infblock.h inftrees.h infcodes.h infutil.h
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
infcodes.obj: infcodes.c $(ZUTIL_H) inftrees.h infutil.h infcodes.h inffast.h
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
inflate.obj: inflate.c $(ZUTIL_H) infblock.h
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
inftrees.obj: inftrees.c $(ZUTIL_H) inftrees.h
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
infutil.obj: infutil.c $(ZUTIL_H) inftrees.h infutil.h
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
inffast.obj: inffast.c $(ZUTIL_H) inftrees.h infutil.h inffast.h
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
trees.obj: trees.c deflate.h $(ZUTIL_H)
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
uncompr.obj: uncompr.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
zutil.obj: zutil.c $(ZUTIL_H)
|
||||||
|
$(CC) -c $(LIB_CFLAGS) $*.c
|
||||||
|
|
||||||
|
example.obj: example.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
minigzip.obj: minigzip.c $(ZLIB_H)
|
||||||
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
|
# we must cut the command line to fit in the MS/DOS 128 byte limit:
|
||||||
|
$(ZLIB_LIB): $(OBJ1) $(OBJ2)
|
||||||
|
if exist $(ZLIB_LIB) del $(ZLIB_LIB)
|
||||||
|
lib $(ZLIB_LIB) $(OBJ1);
|
||||||
|
lib $(ZLIB_LIB) $(OBJ2);
|
||||||
|
|
||||||
|
example.exe: example.obj $(ZLIB_LIB)
|
||||||
|
$(LD) $(LDFLAGS) example.obj,,,$(ZLIB_LIB);
|
||||||
|
|
||||||
|
minigzip.exe: minigzip.obj $(ZLIB_LIB)
|
||||||
|
$(LD) $(LDFLAGS) minigzip.obj,,,$(ZLIB_LIB);
|
||||||
|
|
||||||
|
test: example.exe minigzip.exe
|
||||||
|
example
|
||||||
|
echo hello world | minigzip | minigzip -d
|
||||||
|
|
||||||
|
#clean:
|
||||||
|
# del *.obj
|
||||||
|
# del *.exe
|
||||||
@@ -8,18 +8,18 @@
|
|||||||
# MAX_WBITS and MAX_MEM_LEVEL. For example:
|
# MAX_WBITS and MAX_MEM_LEVEL. For example:
|
||||||
# -DMAX_WBITS=11 -DMAX_MEM_LEVEL=3
|
# -DMAX_WBITS=11 -DMAX_MEM_LEVEL=3
|
||||||
# If you wish to reduce the memory requirements (default 256K for big
|
# If you wish to reduce the memory requirements (default 256K for big
|
||||||
# objects plus a few K), you can add to CFLAGS below:
|
# objects plus a few K), you can add to CFLAGS below:
|
||||||
# -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
|
# -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
|
||||||
# See zconf.h for details about the memory requirements.
|
# See zconf.h for details about the memory requirements.
|
||||||
|
|
||||||
# ------------- Turbo C 2.0 -------------
|
# ------------- Turbo C 2.0 -------------
|
||||||
MODEL=-ml
|
MODEL=l
|
||||||
# CFLAGS=-O2 -G -Z $(MODEL) -DMAX_WBITS=11 -DMAX_MEM_LEVEL=3
|
# CFLAGS=-O2 -G -Z -m$(MODEL) -DMAX_WBITS=11 -DMAX_MEM_LEVEL=3
|
||||||
CFLAGS=-O2 -G -Z $(MODEL)
|
CFLAGS=-O2 -G -Z -m$(MODEL)
|
||||||
CC=tcc -I\tc\include
|
CC=tcc -I\tc\include
|
||||||
LD=tcc -L\tc\lib
|
LD=tcc -L\tc\lib
|
||||||
LIB=tlib
|
AR=tlib
|
||||||
LDFLAGS=$(MODEL) -f-
|
LDFLAGS=-m$(MODEL) -f-
|
||||||
O=.obj
|
O=.obj
|
||||||
|
|
||||||
# variables
|
# variables
|
||||||
@@ -32,69 +32,72 @@ OBJ2 = zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) \
|
|||||||
OBJP2 = zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O)+\
|
OBJP2 = zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O)+\
|
||||||
infutil$(O)+inffast$(O)
|
infutil$(O)+inffast$(O)
|
||||||
|
|
||||||
|
ZLIB_H = zlib.h zconf.h
|
||||||
|
ZUTIL_H = zutil.h $(ZLIB_H)
|
||||||
|
|
||||||
|
ZLIB_LIB = zlib_$(MODEL).lib
|
||||||
|
|
||||||
all: test
|
all: test
|
||||||
|
|
||||||
adler32.obj: adler32.c zutil.h zlib.h zconf.h
|
adler32.obj: adler32.c $(ZLIB_H)
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
compress.obj: compress.c zlib.h zconf.h
|
compress.obj: compress.c $(ZLIB_H)
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
crc32.obj: crc32.c zutil.h zlib.h zconf.h
|
crc32.obj: crc32.c $(ZLIB_H)
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
|
deflate.obj: deflate.c deflate.h $(ZUTIL_H)
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
gzio.obj: gzio.c zutil.h zlib.h zconf.h
|
gzio.obj: gzio.c $(ZUTIL_H)
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
infblock.obj: infblock.c zutil.h zlib.h zconf.h infblock.h inftrees.h\
|
infblock.obj: infblock.c $(ZUTIL_H) infblock.h inftrees.h infcodes.h infutil.h
|
||||||
infcodes.h infutil.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
infcodes.obj: infcodes.c zutil.h zlib.h zconf.h inftrees.h infutil.h\
|
infcodes.obj: infcodes.c $(ZUTIL_H) inftrees.h infutil.h infcodes.h inffast.h
|
||||||
infcodes.h inffast.h
|
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
inflate.obj: inflate.c zutil.h zlib.h zconf.h infblock.h
|
inflate.obj: inflate.c $(ZUTIL_H) infblock.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h
|
inftrees.obj: inftrees.c $(ZUTIL_H) inftrees.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
infutil.obj: infutil.c zutil.h zlib.h zconf.h inftrees.h infutil.h
|
infutil.obj: infutil.c $(ZUTIL_H) inftrees.h infutil.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h
|
inffast.obj: inffast.c $(ZUTIL_H) inftrees.h infutil.h inffast.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
trees.obj: trees.c deflate.h zutil.h zlib.h zconf.h
|
trees.obj: trees.c deflate.h $(ZUTIL_H)
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
uncompr.obj: uncompr.c zlib.h zconf.h
|
uncompr.obj: uncompr.c $(ZLIB_H)
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
zutil.obj: zutil.c zutil.h zlib.h zconf.h
|
zutil.obj: zutil.c $(ZUTIL_H)
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
example.obj: example.c zlib.h zconf.h
|
example.obj: example.c $(ZLIB_H)
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
minigzip.obj: minigzip.c zlib.h zconf.h
|
minigzip.obj: minigzip.c $(ZLIB_H)
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
# we must cut the command line to fit in the MS/DOS 128 byte limit:
|
# we must cut the command line to fit in the MS/DOS 128 byte limit:
|
||||||
zlib.lib: $(OBJ1) $(OBJ2)
|
$(ZLIB_LIB): $(OBJ1) $(OBJ2)
|
||||||
del zlib.lib
|
del $(ZLIB_LIB)
|
||||||
$(LIB) zlib +$(OBJP1)
|
$(AR) $(ZLIB_LIB) +$(OBJP1)
|
||||||
$(LIB) zlib +$(OBJP2)
|
$(AR) $(ZLIB_LIB) +$(OBJP2)
|
||||||
|
|
||||||
example.exe: example.obj zlib.lib
|
example.exe: example.obj $(ZLIB_LIB)
|
||||||
$(LD) $(LDFLAGS) -eexample.exe example.obj zlib.lib
|
$(LD) $(LDFLAGS) -eexample.exe example.obj $(ZLIB_LIB)
|
||||||
|
|
||||||
minigzip.exe: minigzip.obj zlib.lib
|
minigzip.exe: minigzip.obj $(ZLIB_LIB)
|
||||||
$(LD) $(LDFLAGS) -eminigzip.exe minigzip.obj zlib.lib
|
$(LD) $(LDFLAGS) -eminigzip.exe minigzip.obj $(ZLIB_LIB)
|
||||||
|
|
||||||
test: example.exe minigzip.exe
|
test: example.exe minigzip.exe
|
||||||
example
|
example
|
||||||
@@ -1,21 +1,19 @@
|
|||||||
# Makefile for zlib
|
# Makefile for zlib
|
||||||
# Microsoft C 5.1 or later
|
# Microsoft 32-bit Visual C++ 4.0 or later (may work on earlier versions)
|
||||||
|
|
||||||
# To use, do "make makefile.msc"
|
# To use, do "nmake /f makefile.w32"
|
||||||
# To compile in small model, set below: MODEL=-AS
|
|
||||||
|
|
||||||
# If you wish to reduce the memory requirements (default 256K for big
|
# If you wish to reduce the memory requirements (default 256K for big
|
||||||
# objects plus a few K), you can add to CFLAGS below:
|
# objects plus a few K), you can add to CFLAGS below:
|
||||||
# -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
|
# -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
|
||||||
# See zconf.h for details about the memory requirements.
|
# See zconf.h for details about the memory requirements.
|
||||||
|
|
||||||
# ------------- Microsoft C 5.1 and later -------------
|
# ------------- Microsoft Visual C++ 4.0 and later -------------
|
||||||
MODEL=-AL
|
MODEL=
|
||||||
CFLAGS=-Oait -Gs -nologo -W3 $(MODEL)
|
CFLAGS=-Ox -GA3s -nologo -W3
|
||||||
#-Ox generates bad code with MSC 5.1
|
|
||||||
CC=cl
|
CC=cl
|
||||||
LD=link
|
LD=link
|
||||||
LDFLAGS=/e/st:0x1500/noe
|
LDFLAGS=
|
||||||
O=.obj
|
O=.obj
|
||||||
|
|
||||||
# variables
|
# variables
|
||||||
@@ -30,72 +28,70 @@ OBJP2 = zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O)+\
|
|||||||
|
|
||||||
all: zlib.lib example.exe minigzip.exe
|
all: zlib.lib example.exe minigzip.exe
|
||||||
|
|
||||||
adler32.obj: adler32.c zutil.h zlib.h zconf.h
|
adler32.obj: adler32.c zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
compress.obj: compress.c zlib.h zconf.h
|
compress.obj: compress.c zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
crc32.obj: crc32.c zutil.h zlib.h zconf.h
|
crc32.obj: crc32.c zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
|
deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
gzio.obj: gzio.c zutil.h zlib.h zconf.h
|
gzio.obj: gzio.c zutil.h zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
infblock.obj: infblock.c zutil.h zlib.h zconf.h infblock.h inftrees.h\
|
infblock.obj: infblock.c zutil.h zlib.h zconf.h infblock.h inftrees.h\
|
||||||
infcodes.h infutil.h
|
infcodes.h infutil.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
infcodes.obj: infcodes.c zutil.h zlib.h zconf.h inftrees.h infutil.h\
|
infcodes.obj: infcodes.c zutil.h zlib.h zconf.h inftrees.h infutil.h\
|
||||||
infcodes.h inffast.h
|
infcodes.h inffast.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
inflate.obj: inflate.c zutil.h zlib.h zconf.h infblock.h
|
inflate.obj: inflate.c zutil.h zlib.h zconf.h infblock.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h
|
inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
infutil.obj: infutil.c zutil.h zlib.h zconf.h inftrees.h infutil.h
|
infutil.obj: infutil.c zutil.h zlib.h zconf.h inftrees.h infutil.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h
|
inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
trees.obj: trees.c deflate.h zutil.h zlib.h zconf.h
|
trees.obj: trees.c deflate.h zutil.h zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
uncompr.obj: uncompr.c zlib.h zconf.h
|
uncompr.obj: uncompr.c zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
zutil.obj: zutil.c zutil.h zlib.h zconf.h
|
zutil.obj: zutil.c zutil.h zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
example.obj: example.c zlib.h zconf.h
|
example.obj: example.c zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
minigzip.obj: minigzip.c zlib.h zconf.h
|
minigzip.obj: minigzip.c zlib.h zconf.h
|
||||||
$(CC) -c $(CFLAGS) $*.c
|
$(CC) -c $(CFLAGS) $*.c
|
||||||
|
|
||||||
# we must cut the command line to fit in the MS/DOS 128 byte limit:
|
|
||||||
zlib.lib: $(OBJ1) $(OBJ2)
|
zlib.lib: $(OBJ1) $(OBJ2)
|
||||||
if exist zlib.lib del zlib.lib
|
if exist zlib.lib del zlib.lib
|
||||||
lib zlib $(OBJ1);
|
lib /OUT:zlib.lib $(OBJ1) $(OBJ2)
|
||||||
lib zlib $(OBJ2);
|
|
||||||
|
|
||||||
example.exe: example.obj zlib.lib
|
example.exe: example.obj zlib.lib
|
||||||
$(LD) $(LDFLAGS) example.obj,,,zlib.lib;
|
$(LD) $(LDFLAGS) example.obj zlib.lib /OUT:example.exe /SUBSYSTEM:CONSOLE
|
||||||
|
|
||||||
minigzip.exe: minigzip.obj zlib.lib
|
minigzip.exe: minigzip.obj zlib.lib
|
||||||
$(LD) $(LDFLAGS) minigzip.obj,,,zlib.lib;
|
$(LD) $(LDFLAGS) minigzip.obj zlib.lib /OUT:minigzip.exe /SUBSYSTEM:CONSOLE
|
||||||
|
|
||||||
test: example.exe minigzip.exe
|
test: example.exe minigzip.exe
|
||||||
example
|
example
|
||||||
echo hello world | minigzip | minigzip -d
|
echo hello world | minigzip | minigzip -d
|
||||||
|
|
||||||
#clean:
|
#clean:
|
||||||
# del *.obj
|
# del *.obj
|
||||||
# del *.exe
|
# del *.exe
|
||||||
@@ -30,13 +30,13 @@ OBJP3=infutil$(O)+inffast$(O)
|
|||||||
|
|
||||||
all: test
|
all: test
|
||||||
|
|
||||||
adler32.obj: adler32.c zutil.h zlib.h zconf.h
|
adler32.obj: adler32.c zlib.h zconf.h
|
||||||
$(CC) $(CFLAGS) $*.c
|
$(CC) $(CFLAGS) $*.c
|
||||||
|
|
||||||
compress.obj: compress.c zlib.h zconf.h
|
compress.obj: compress.c zlib.h zconf.h
|
||||||
$(CC) $(CFLAGS) $*.c
|
$(CC) $(CFLAGS) $*.c
|
||||||
|
|
||||||
crc32.obj: crc32.c zutil.h zlib.h zconf.h
|
crc32.obj: crc32.c zlib.h zconf.h
|
||||||
$(CC) $(CFLAGS) $*.c
|
$(CC) $(CFLAGS) $*.c
|
||||||
|
|
||||||
deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
|
deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user