sl@0: /* zlib.h -- interface of the 'zlib' general purpose compression library sl@0: version 1.1.3, July 9th, 1998 sl@0: sl@0: Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler sl@0: sl@0: This software is provided 'as-is', without any express or implied sl@0: warranty. In no event will the authors be held liable for any damages sl@0: arising from the use of this software. sl@0: sl@0: Permission is granted to anyone to use this software for any purpose, sl@0: including commercial applications, and to alter it and redistribute it sl@0: freely, subject to the following restrictions: sl@0: sl@0: 1. The origin of this software must not be misrepresented; you must not sl@0: claim that you wrote the original software. If you use this software sl@0: in a product, an acknowledgment in the product documentation would be sl@0: appreciated but is not required. sl@0: 2. Altered source versions must be plainly marked as such, and must not be sl@0: misrepresented as being the original software. sl@0: 3. This notice may not be removed or altered from any source distribution. sl@0: sl@0: Jean-loup Gailly Mark Adler sl@0: jloup@gzip.org madler@alumni.caltech.edu sl@0: sl@0: sl@0: The data format used by the zlib library is described by RFCs (Request for sl@0: Comments) 1950 to 1952 in the files ftp://ds.internic.net/rfc/rfc1950.txt sl@0: (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). sl@0: */ sl@0: sl@0: /* sl@0: This is an altered version of the zlib library designed to run on EPOC sl@0: Symbian Markr 5/11/99 sl@0: */ sl@0: sl@0: #ifndef _ZLIB_H sl@0: #define _ZLIB_H sl@0: sl@0: #ifdef __cplusplus sl@0: extern "C" { sl@0: #endif sl@0: sl@0: #include "OldEZConf.h" sl@0: sl@0: #define ZLIB_VERSION "1.1.3" sl@0: sl@0: /* sl@0: The 'zlib' compression library provides in-memory compression and sl@0: decompression functions, including integrity checks of the uncompressed sl@0: data. This version of the library supports only one compression method sl@0: (deflation) but other algorithms will be added later and will have the same sl@0: stream interface. sl@0: sl@0: Compression can be done in a single step if the buffers are large sl@0: enough (for example if an input file is mmap'ed), or can be done by sl@0: repeated calls of the compression function. In the latter case, the sl@0: application must provide more input and/or consume the output sl@0: (providing more output space) before each call. sl@0: sl@0: The library also supports reading and writing files in gzip (.gz) format sl@0: with an interface similar to that of stdio. sl@0: sl@0: The library does not install any signal handler. The decoder checks sl@0: the consistency of the compressed data, so the library should never sl@0: crash even in case of corrupted input. sl@0: */ sl@0: sl@0: typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); sl@0: typedef void (*free_func) OF((voidpf opaque, voidpf address)); sl@0: sl@0: struct internal_state; sl@0: sl@0: /** sl@0: Encapsulates a zip stream sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: typedef struct z_stream_s { sl@0: /** next input byte */ sl@0: Bytef *next_in; sl@0: /** number of bytes available at next_in */ sl@0: uInt avail_in; sl@0: /** total nb of input bytes read so far */ sl@0: uLong total_in; sl@0: sl@0: /** next output byte should be put there */ sl@0: Bytef *next_out; sl@0: /** remaining free space at next_out */ sl@0: uInt avail_out; sl@0: /** total nb of bytes output so far */ sl@0: uLong total_out; sl@0: sl@0: /** last error message, NULL if no error */ sl@0: char *msg; sl@0: /* not visible by applications */ sl@0: struct internal_state FAR *state; sl@0: sl@0: /** used to allocate the internal state */ sl@0: alloc_func zalloc; sl@0: /** used to free the internal state */ sl@0: free_func zfree; sl@0: /** private data object passed to zalloc and zfree */ sl@0: voidpf opaque; sl@0: sl@0: /** best guess about the data type: ascii or binary */ sl@0: int data_type; sl@0: /** adler32 value of the uncompressed data */ sl@0: uLong adler; sl@0: /** reserved for future use */ sl@0: uLong reserved; sl@0: } z_stream; sl@0: sl@0: typedef z_stream FAR *z_streamp; sl@0: sl@0: /* sl@0: The application must update next_in and avail_in when avail_in has sl@0: dropped to zero. It must update next_out and avail_out when avail_out sl@0: has dropped to zero. The application must initialize zalloc, zfree and sl@0: opaque before calling the init function. All other fields are set by the sl@0: compression library and must not be updated by the application. sl@0: sl@0: The opaque value provided by the application will be passed as the first sl@0: parameter for calls of zalloc and zfree. This can be useful for custom sl@0: memory management. The compression library attaches no meaning to the sl@0: opaque value. sl@0: sl@0: zalloc must return Z_NULL if there is not enough memory for the object. sl@0: If zlib is used in a multi-threaded application, zalloc and zfree must be sl@0: thread safe. sl@0: sl@0: On 16-bit systems, the functions zalloc and zfree must be able to allocate sl@0: exactly 65536 bytes, but will not be required to allocate more than this sl@0: if the symbol MAXSEG_64K is defined (see zconf.h). WARNING: On MSDOS, sl@0: pointers returned by zalloc for objects of exactly 65536 bytes *must* sl@0: have their offset normalized to zero. The default allocation function sl@0: provided by this library ensures this (see zutil.c). To reduce memory sl@0: requirements and avoid any allocation of 64K objects, at the expense of sl@0: compression ratio, compile the library with -DMAX_WBITS=14 (see zconf.h). sl@0: sl@0: The fields total_in and total_out can be used for statistics or sl@0: progress reports. After compression, total_in holds the total size of sl@0: the uncompressed data and may be saved for use in the decompressor sl@0: (particularly if the decompressor wants to decompress everything in sl@0: a single step). sl@0: */ sl@0: sl@0: /* constants */ sl@0: sl@0: #define Z_NO_FLUSH 0 sl@0: #define Z_PARTIAL_FLUSH 1 /* will be removed, use Z_SYNC_FLUSH instead */ sl@0: #define Z_SYNC_FLUSH 2 sl@0: #define Z_FULL_FLUSH 3 sl@0: #define Z_FINISH 4 sl@0: /* Allowed flush values; see deflate() below for details */ sl@0: sl@0: #define Z_OK 0 sl@0: #define Z_STREAM_END 1 sl@0: #define Z_NEED_DICT 2 sl@0: #define Z_ERRNO (-1) sl@0: #define Z_STREAM_ERROR (-2) sl@0: #define Z_DATA_ERROR (-3) sl@0: #define Z_MEM_ERROR (-4) sl@0: #define Z_BUF_ERROR (-5) sl@0: #define Z_VERSION_ERROR (-6) sl@0: /* Return codes for the compression/decompression functions. Negative sl@0: * values are errors, positive values are used for special but normal events. sl@0: */ sl@0: sl@0: #define Z_NO_COMPRESSION 0 sl@0: #define Z_BEST_SPEED 1 sl@0: #define Z_BEST_COMPRESSION 9 sl@0: #define Z_DEFAULT_COMPRESSION (-1) sl@0: /* compression levels */ sl@0: sl@0: #define Z_FILTERED 1 sl@0: #define Z_HUFFMAN_ONLY 2 sl@0: #define Z_DEFAULT_STRATEGY 0 sl@0: /* compression strategy; see deflateInit2() below for details */ sl@0: sl@0: #define Z_BINARY 0 sl@0: #define Z_ASCII 1 sl@0: #define Z_UNKNOWN 2 sl@0: /* Possible values of the data_type field */ sl@0: sl@0: #define Z_DEFLATED 8 sl@0: /* The deflate compression method (the only one supported in this version) */ sl@0: sl@0: #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ sl@0: sl@0: #define zlib_version zlibVersion() sl@0: /* for compatibility with versions < 1.0.2 */ sl@0: sl@0: /* basic functions */ sl@0: sl@0: ZEXTERN const char * ZEXPORT zlibVersion OF((void)); sl@0: /* The application can compare zlibVersion and ZLIB_VERSION for consistency. sl@0: If the first character differs, the library code actually used is sl@0: not compatible with the zlib.h header file used by the application. sl@0: This check is automatically made by deflateInit and inflateInit. sl@0: */ sl@0: sl@0: /* sl@0: ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); sl@0: sl@0: Initializes the internal stream state for compression. The fields sl@0: zalloc, zfree and opaque must be initialized before by the caller. sl@0: If zalloc and zfree are set to Z_NULL, deflateInit updates them to sl@0: use default allocation functions. sl@0: sl@0: The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9: sl@0: 1 gives best speed, 9 gives best compression, 0 gives no compression at sl@0: all (the input data is simply copied a block at a time). sl@0: Z_DEFAULT_COMPRESSION requests a default compromise between speed and sl@0: compression (currently equivalent to level 6). sl@0: sl@0: deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not sl@0: enough memory, Z_STREAM_ERROR if level is not a valid compression level, sl@0: Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible sl@0: with the version assumed by the caller (ZLIB_VERSION). sl@0: msg is set to null if there is no error message. deflateInit does not sl@0: perform any compression: this will be done by deflate(). sl@0: */ sl@0: sl@0: sl@0: ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); sl@0: /* sl@0: deflate compresses as much data as possible, and stops when the input sl@0: buffer becomes empty or the output buffer becomes full. It may introduce some sl@0: output latency (reading input without producing any output) except when sl@0: forced to flush. sl@0: sl@0: The detailed semantics are as follows. deflate performs one or both of the sl@0: following actions: sl@0: sl@0: - Compress more input starting at next_in and update next_in and avail_in sl@0: accordingly. If not all input can be processed (because there is not sl@0: enough room in the output buffer), next_in and avail_in are updated and sl@0: processing will resume at this point for the next call of deflate(). sl@0: sl@0: - Provide more output starting at next_out and update next_out and avail_out sl@0: accordingly. This action is forced if the parameter flush is non zero. sl@0: Forcing flush frequently degrades the compression ratio, so this parameter sl@0: should be set only when necessary (in interactive applications). sl@0: Some output may be provided even if flush is not set. sl@0: sl@0: Before the call of deflate(), the application should ensure that at least sl@0: one of the actions is possible, by providing more input and/or consuming sl@0: more output, and updating avail_in or avail_out accordingly; avail_out sl@0: should never be zero before the call. The application can consume the sl@0: compressed output when it wants, for example when the output buffer is full sl@0: (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK sl@0: and with zero avail_out, it must be called again after making room in the sl@0: output buffer because there might be more output pending. sl@0: sl@0: If the parameter flush is set to Z_SYNC_FLUSH, all pending output is sl@0: flushed to the output buffer and the output is aligned on a byte boundary, so sl@0: that the decompressor can get all input data available so far. (In particular sl@0: avail_in is zero after the call if enough output space has been provided sl@0: before the call.) Flushing may degrade compression for some compression sl@0: algorithms and so it should be used only when necessary. sl@0: sl@0: If flush is set to Z_FULL_FLUSH, all output is flushed as with sl@0: Z_SYNC_FLUSH, and the compression state is reset so that decompression can sl@0: restart from this point if previous compressed data has been damaged or if sl@0: random access is desired. Using Z_FULL_FLUSH too often can seriously degrade sl@0: the compression. sl@0: sl@0: If deflate returns with avail_out == 0, this function must be called again sl@0: with the same value of the flush parameter and more output space (updated sl@0: avail_out), until the flush is complete (deflate returns with non-zero sl@0: avail_out). sl@0: sl@0: If the parameter flush is set to Z_FINISH, pending input is processed, sl@0: pending output is flushed and deflate returns with Z_STREAM_END if there sl@0: was enough output space; if deflate returns with Z_OK, this function must be sl@0: called again with Z_FINISH and more output space (updated avail_out) but no sl@0: more input data, until it returns with Z_STREAM_END or an error. After sl@0: deflate has returned Z_STREAM_END, the only possible operations on the sl@0: stream are deflateReset or deflateEnd. sl@0: sl@0: Z_FINISH can be used immediately after deflateInit if all the compression sl@0: is to be done in a single step. In this case, avail_out must be at least sl@0: 0.1% larger than avail_in plus 12 bytes. If deflate does not return sl@0: Z_STREAM_END, then it must be called again as described above. sl@0: sl@0: deflate() sets strm->adler to the adler32 checksum of all input read sl@0: so far (that is, total_in bytes). sl@0: sl@0: deflate() may update data_type if it can make a good guess about sl@0: the input data type (Z_ASCII or Z_BINARY). In doubt, the data is considered sl@0: binary. This field is only for information purposes and does not affect sl@0: the compression algorithm in any manner. sl@0: sl@0: deflate() returns Z_OK if some progress has been made (more input sl@0: processed or more output produced), Z_STREAM_END if all input has been sl@0: consumed and all output has been produced (only when flush is set to sl@0: Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example sl@0: if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible sl@0: (for example avail_in or avail_out was zero). sl@0: */ sl@0: sl@0: sl@0: ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm)); sl@0: /* sl@0: All dynamically allocated data structures for this stream are freed. sl@0: This function discards any unprocessed input and does not flush any sl@0: pending output. sl@0: sl@0: deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the sl@0: stream state was inconsistent, Z_DATA_ERROR if the stream was freed sl@0: prematurely (some input or output was discarded). In the error case, sl@0: msg may be set but then points to a static string (which must not be sl@0: deallocated). sl@0: */ sl@0: sl@0: sl@0: /* sl@0: ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm)); sl@0: sl@0: Initializes the internal stream state for decompression. The fields sl@0: next_in, avail_in, zalloc, zfree and opaque must be initialized before by sl@0: the caller. If next_in is not Z_NULL and avail_in is large enough (the exact sl@0: value depends on the compression method), inflateInit determines the sl@0: compression method from the zlib header and allocates all data structures sl@0: accordingly; otherwise the allocation will be deferred to the first call of sl@0: inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to sl@0: use default allocation functions. sl@0: sl@0: inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough sl@0: memory, Z_VERSION_ERROR if the zlib library version is incompatible with the sl@0: version assumed by the caller. msg is set to null if there is no error sl@0: message. inflateInit does not perform any decompression apart from reading sl@0: the zlib header if present: this will be done by inflate(). (So next_in and sl@0: avail_in may be modified, but next_out and avail_out are unchanged.) sl@0: */ sl@0: sl@0: sl@0: ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush)); sl@0: /* sl@0: inflate decompresses as much data as possible, and stops when the input sl@0: buffer becomes empty or the output buffer becomes full. It may some sl@0: introduce some output latency (reading input without producing any output) sl@0: except when forced to flush. sl@0: sl@0: The detailed semantics are as follows. inflate performs one or both of the sl@0: following actions: sl@0: sl@0: - Decompress more input starting at next_in and update next_in and avail_in sl@0: accordingly. If not all input can be processed (because there is not sl@0: enough room in the output buffer), next_in is updated and processing sl@0: will resume at this point for the next call of inflate(). sl@0: sl@0: - Provide more output starting at next_out and update next_out and avail_out sl@0: accordingly. inflate() provides as much output as possible, until there sl@0: is no more input data or no more space in the output buffer (see below sl@0: about the flush parameter). sl@0: sl@0: Before the call of inflate(), the application should ensure that at least sl@0: one of the actions is possible, by providing more input and/or consuming sl@0: more output, and updating the next_* and avail_* values accordingly. sl@0: The application can consume the uncompressed output when it wants, for sl@0: example when the output buffer is full (avail_out == 0), or after each sl@0: call of inflate(). If inflate returns Z_OK and with zero avail_out, it sl@0: must be called again after making room in the output buffer because there sl@0: might be more output pending. sl@0: sl@0: If the parameter flush is set to Z_SYNC_FLUSH, inflate flushes as much sl@0: output as possible to the output buffer. The flushing behavior of inflate is sl@0: not specified for values of the flush parameter other than Z_SYNC_FLUSH sl@0: and Z_FINISH, but the current implementation actually flushes as much output sl@0: as possible anyway. sl@0: sl@0: inflate() should normally be called until it returns Z_STREAM_END or an sl@0: error. However if all decompression is to be performed in a single step sl@0: (a single call of inflate), the parameter flush should be set to sl@0: Z_FINISH. In this case all pending input is processed and all pending sl@0: output is flushed; avail_out must be large enough to hold all the sl@0: uncompressed data. (The size of the uncompressed data may have been saved sl@0: by the compressor for this purpose.) The next operation on this stream must sl@0: be inflateEnd to deallocate the decompression state. The use of Z_FINISH sl@0: is never required, but can be used to inform inflate that a faster routine sl@0: may be used for the single inflate() call. sl@0: sl@0: If a preset dictionary is needed at this point (see inflateSetDictionary sl@0: below), inflate sets strm-adler to the adler32 checksum of the sl@0: dictionary chosen by the compressor and returns Z_NEED_DICT; otherwise sl@0: it sets strm->adler to the adler32 checksum of all output produced sl@0: so far (that is, total_out bytes) and returns Z_OK, Z_STREAM_END or sl@0: an error code as described below. At the end of the stream, inflate() sl@0: checks that its computed adler32 checksum is equal to that saved by the sl@0: compressor and returns Z_STREAM_END only if the checksum is correct. sl@0: sl@0: inflate() returns Z_OK if some progress has been made (more input processed sl@0: or more output produced), Z_STREAM_END if the end of the compressed data has sl@0: been reached and all uncompressed output has been produced, Z_NEED_DICT if a sl@0: preset dictionary is needed at this point, Z_DATA_ERROR if the input data was sl@0: corrupted (input stream not conforming to the zlib format or incorrect sl@0: adler32 checksum), Z_STREAM_ERROR if the stream structure was inconsistent sl@0: (for example if next_in or next_out was NULL), Z_MEM_ERROR if there was not sl@0: enough memory, Z_BUF_ERROR if no progress is possible or if there was not sl@0: enough room in the output buffer when Z_FINISH is used. In the Z_DATA_ERROR sl@0: case, the application may then call inflateSync to look for a good sl@0: compression block. sl@0: */ sl@0: sl@0: sl@0: ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm)); sl@0: /* sl@0: All dynamically allocated data structures for this stream are freed. sl@0: This function discards any unprocessed input and does not flush any sl@0: pending output. sl@0: sl@0: inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state sl@0: was inconsistent. In the error case, msg may be set but then points to a sl@0: static string (which must not be deallocated). sl@0: */ sl@0: sl@0: /* Advanced functions */ sl@0: sl@0: /* sl@0: The following functions are needed only in some special applications. sl@0: */ sl@0: sl@0: /* sl@0: ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm, sl@0: int level, sl@0: int method, sl@0: int windowBits, sl@0: int memLevel, sl@0: int strategy)); sl@0: sl@0: This is another version of deflateInit with more compression options. The sl@0: fields next_in, zalloc, zfree and opaque must be initialized before by sl@0: the caller. sl@0: sl@0: The method parameter is the compression method. It must be Z_DEFLATED in sl@0: this version of the library. sl@0: sl@0: The windowBits parameter is the base two logarithm of the window size sl@0: (the size of the history buffer). It should be in the range 8..15 for this sl@0: version of the library. Larger values of this parameter result in better sl@0: compression at the expense of memory usage. The default value is 15 if sl@0: deflateInit is used instead. sl@0: sl@0: The memLevel parameter specifies how much memory should be allocated sl@0: for the internal compression state. memLevel=1 uses minimum memory but sl@0: is slow and reduces compression ratio; memLevel=9 uses maximum memory sl@0: for optimal speed. The default value is 8. See zconf.h for total memory sl@0: usage as a function of windowBits and memLevel. sl@0: sl@0: The strategy parameter is used to tune the compression algorithm. Use the sl@0: value Z_DEFAULT_STRATEGY for normal data, Z_FILTERED for data produced by a sl@0: filter (or predictor), or Z_HUFFMAN_ONLY to force Huffman encoding only (no sl@0: string match). Filtered data consists mostly of small values with a sl@0: somewhat random distribution. In this case, the compression algorithm is sl@0: tuned to compress them better. The effect of Z_FILTERED is to force more sl@0: Huffman coding and less string matching; it is somewhat intermediate sl@0: between Z_DEFAULT and Z_HUFFMAN_ONLY. The strategy parameter only affects sl@0: the compression ratio but not the correctness of the compressed output even sl@0: if it is not set appropriately. sl@0: sl@0: deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough sl@0: memory, Z_STREAM_ERROR if a parameter is invalid (such as an invalid sl@0: method). msg is set to null if there is no error message. deflateInit2 does sl@0: not perform any compression: this will be done by deflate(). sl@0: */ sl@0: sl@0: ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm, sl@0: const Bytef *dictionary, sl@0: uInt dictLength)); sl@0: /* sl@0: Initializes the compression dictionary from the given byte sequence sl@0: without producing any compressed output. This function must be called sl@0: immediately after deflateInit, deflateInit2 or deflateReset, before any sl@0: call of deflate. The compressor and decompressor must use exactly the same sl@0: dictionary (see inflateSetDictionary). sl@0: sl@0: The dictionary should consist of strings (byte sequences) that are likely sl@0: to be encountered later in the data to be compressed, with the most commonly sl@0: used strings preferably put towards the end of the dictionary. Using a sl@0: dictionary is most useful when the data to be compressed is short and can be sl@0: predicted with good accuracy; the data can then be compressed better than sl@0: with the default empty dictionary. sl@0: sl@0: Depending on the size of the compression data structures selected by sl@0: deflateInit or deflateInit2, a part of the dictionary may in effect be sl@0: discarded, for example if the dictionary is larger than the window size in sl@0: deflate or deflate2. Thus the strings most likely to be useful should be sl@0: put at the end of the dictionary, not at the front. sl@0: sl@0: Upon return of this function, strm->adler is set to the Adler32 value sl@0: of the dictionary; the decompressor may later use this value to determine sl@0: which dictionary has been used by the compressor. (The Adler32 value sl@0: applies to the whole dictionary even if only a subset of the dictionary is sl@0: actually used by the compressor.) sl@0: sl@0: deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a sl@0: parameter is invalid (such as NULL dictionary) or the stream state is sl@0: inconsistent (for example if deflate has already been called for this stream sl@0: or if the compression method is bsort). deflateSetDictionary does not sl@0: perform any compression: this will be done by deflate(). sl@0: */ sl@0: sl@0: ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest, sl@0: z_streamp source)); sl@0: /* sl@0: Sets the destination stream as a complete copy of the source stream. sl@0: sl@0: This function can be useful when several compression strategies will be sl@0: tried, for example when there are several ways of pre-processing the input sl@0: data with a filter. The streams that will be discarded should then be freed sl@0: by calling deflateEnd. Note that deflateCopy duplicates the internal sl@0: compression state which can be quite large, so this strategy is slow and sl@0: can consume lots of memory. sl@0: sl@0: deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not sl@0: enough memory, Z_STREAM_ERROR if the source stream state was inconsistent sl@0: (such as zalloc being NULL). msg is left unchanged in both source and sl@0: destination. sl@0: */ sl@0: sl@0: ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm)); sl@0: /* sl@0: This function is equivalent to deflateEnd followed by deflateInit, sl@0: but does not free and reallocate all the internal compression state. sl@0: The stream will keep the same compression level and any other attributes sl@0: that may have been set by deflateInit2. sl@0: sl@0: deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source sl@0: stream state was inconsistent (such as zalloc or state being NULL). sl@0: */ sl@0: sl@0: ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm, sl@0: int level, sl@0: int strategy)); sl@0: /* sl@0: Dynamically update the compression level and compression strategy. The sl@0: interpretation of level and strategy is as in deflateInit2. This can be sl@0: used to switch between compression and straight copy of the input data, or sl@0: to switch to a different kind of input data requiring a different sl@0: strategy. If the compression level is changed, the input available so far sl@0: is compressed with the old level (and may be flushed); the new level will sl@0: take effect only at the next call of deflate(). sl@0: sl@0: Before the call of deflateParams, the stream state must be set as for sl@0: a call of deflate(), since the currently available input may have to sl@0: be compressed and flushed. In particular, strm->avail_out must be non-zero. sl@0: sl@0: deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source sl@0: stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR sl@0: if strm->avail_out was zero. sl@0: */ sl@0: sl@0: /* sl@0: ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm, sl@0: int windowBits)); sl@0: sl@0: This is another version of inflateInit with an extra parameter. The sl@0: fields next_in, avail_in, zalloc, zfree and opaque must be initialized sl@0: before by the caller. sl@0: sl@0: The windowBits parameter is the base two logarithm of the maximum window sl@0: size (the size of the history buffer). It should be in the range 8..15 for sl@0: this version of the library. The default value is 15 if inflateInit is used sl@0: instead. If a compressed stream with a larger window size is given as sl@0: input, inflate() will return with the error code Z_DATA_ERROR instead of sl@0: trying to allocate a larger window. sl@0: sl@0: inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough sl@0: memory, Z_STREAM_ERROR if a parameter is invalid (such as a negative sl@0: memLevel). msg is set to null if there is no error message. inflateInit2 sl@0: does not perform any decompression apart from reading the zlib header if sl@0: present: this will be done by inflate(). (So next_in and avail_in may be sl@0: modified, but next_out and avail_out are unchanged.) sl@0: */ sl@0: sl@0: ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm, sl@0: const Bytef *dictionary, sl@0: uInt dictLength)); sl@0: /* sl@0: Initializes the decompression dictionary from the given uncompressed byte sl@0: sequence. This function must be called immediately after a call of inflate sl@0: if this call returned Z_NEED_DICT. The dictionary chosen by the compressor sl@0: can be determined from the Adler32 value returned by this call of sl@0: inflate. The compressor and decompressor must use exactly the same sl@0: dictionary (see deflateSetDictionary). sl@0: sl@0: inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a sl@0: parameter is invalid (such as NULL dictionary) or the stream state is sl@0: inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the sl@0: expected one (incorrect Adler32 value). inflateSetDictionary does not sl@0: perform any decompression: this will be done by subsequent calls of sl@0: inflate(). sl@0: */ sl@0: sl@0: ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm)); sl@0: /* sl@0: Skips invalid compressed data until a full flush point (see above the sl@0: description of deflate with Z_FULL_FLUSH) can be found, or until all sl@0: available input is skipped. No output is provided. sl@0: sl@0: inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR sl@0: if no more input was provided, Z_DATA_ERROR if no flush point has been found, sl@0: or Z_STREAM_ERROR if the stream structure was inconsistent. In the success sl@0: case, the application may save the current current value of total_in which sl@0: indicates where valid compressed data was found. In the error case, the sl@0: application may repeatedly call inflateSync, providing more input each time, sl@0: until success or end of the input data. sl@0: */ sl@0: sl@0: ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm)); sl@0: /* sl@0: This function is equivalent to inflateEnd followed by inflateInit, sl@0: but does not free and reallocate all the internal decompression state. sl@0: The stream will keep attributes that may have been set by inflateInit2. sl@0: sl@0: inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source sl@0: stream state was inconsistent (such as zalloc or state being NULL). sl@0: */ sl@0: sl@0: sl@0: /* utility functions */ sl@0: sl@0: /* sl@0: The following utility functions are implemented on top of the sl@0: basic stream-oriented functions. To simplify the interface, some sl@0: default options are assumed (compression level and memory usage, sl@0: standard memory allocation functions). The source code of these sl@0: utility functions can easily be modified if you need special options. sl@0: */ sl@0: sl@0: ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen, sl@0: const Bytef *source, uLong sourceLen)); sl@0: /* sl@0: Compresses the source buffer into the destination buffer. sourceLen is sl@0: the byte length of the source buffer. Upon entry, destLen is the total sl@0: size of the destination buffer, which must be at least 0.1% larger than sl@0: sourceLen plus 12 bytes. Upon exit, destLen is the actual size of the sl@0: compressed buffer. sl@0: This function can be used to compress a whole file at once if the sl@0: input file is mmap'ed. sl@0: compress returns Z_OK if success, Z_MEM_ERROR if there was not sl@0: enough memory, Z_BUF_ERROR if there was not enough room in the output sl@0: buffer. sl@0: */ sl@0: sl@0: ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen, sl@0: const Bytef *source, uLong sourceLen, sl@0: int level)); sl@0: /* sl@0: Compresses the source buffer into the destination buffer. The level sl@0: parameter has the same meaning as in deflateInit. sourceLen is the byte sl@0: length of the source buffer. Upon entry, destLen is the total size of the sl@0: destination buffer, which must be at least 0.1% larger than sourceLen plus sl@0: 12 bytes. Upon exit, destLen is the actual size of the compressed buffer. sl@0: sl@0: compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough sl@0: memory, Z_BUF_ERROR if there was not enough room in the output buffer, sl@0: Z_STREAM_ERROR if the level parameter is invalid. sl@0: */ sl@0: sl@0: ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen, sl@0: const Bytef *source, uLong sourceLen)); sl@0: /* sl@0: Decompresses the source buffer into the destination buffer. sourceLen is sl@0: the byte length of the source buffer. Upon entry, destLen is the total sl@0: size of the destination buffer, which must be large enough to hold the sl@0: entire uncompressed data. (The size of the uncompressed data must have sl@0: been saved previously by the compressor and transmitted to the decompressor sl@0: by some mechanism outside the scope of this compression library.) sl@0: Upon exit, destLen is the actual size of the compressed buffer. sl@0: This function can be used to decompress a whole file at once if the sl@0: input file is mmap'ed. sl@0: sl@0: uncompress returns Z_OK if success, Z_MEM_ERROR if there was not sl@0: enough memory, Z_BUF_ERROR if there was not enough room in the output sl@0: buffer, or Z_DATA_ERROR if the input data was corrupted. sl@0: */ sl@0: sl@0: /* sl@0: typedef voidp gzFile; sl@0: sl@0: ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode)); sl@0: */ sl@0: /* sl@0: Opens a gzip (.gz) file for reading or writing. The mode parameter sl@0: is as in fopen ("rb" or "wb") but can also include a compression level sl@0: ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for sl@0: Huffman only compression as in "wb1h". (See the description sl@0: of deflateInit2 for more information about the strategy parameter.) sl@0: sl@0: gzopen can be used to read a file which is not in gzip format; in this sl@0: case gzread will directly read from the file without decompression. sl@0: sl@0: gzopen returns NULL if the file could not be opened or if there was sl@0: insufficient memory to allocate the (de)compression state; errno sl@0: can be checked to distinguish the two cases (if errno is zero, the sl@0: zlib error is Z_MEM_ERROR). */ sl@0: sl@0: //ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode)); sl@0: sl@0: /* sl@0: gzdopen() associates a gzFile with the file descriptor fd. File sl@0: descriptors are obtained from calls like open, dup, creat, pipe or sl@0: fileno (in the file has been previously opened with fopen). sl@0: The mode parameter is as in gzopen. sl@0: The next call of gzclose on the returned gzFile will also close the sl@0: file descriptor fd, just like fclose(fdopen(fd), mode) closes the file sl@0: descriptor fd. If you want to keep fd open, use gzdopen(dup(fd), mode). sl@0: gzdopen returns NULL if there was insufficient memory to allocate sl@0: the (de)compression state. sl@0: */ sl@0: sl@0: //ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy)); sl@0: /* sl@0: Dynamically update the compression level or strategy. See the description sl@0: of deflateInit2 for the meaning of these parameters. sl@0: gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not sl@0: opened for writing. sl@0: */ sl@0: sl@0: //ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); sl@0: /* sl@0: Reads the given number of uncompressed bytes from the compressed file. sl@0: If the input file was not in gzip format, gzread copies the given number sl@0: of bytes into the buffer. sl@0: gzread returns the number of uncompressed bytes actually read (0 for sl@0: end of file, -1 for error). */ sl@0: sl@0: //ZEXTERN int ZEXPORT gzwrite OF((gzFile file, sl@0: // const voidp buf, unsigned len)); sl@0: /* sl@0: Writes the given number of uncompressed bytes into the compressed file. sl@0: gzwrite returns the number of uncompressed bytes actually written sl@0: (0 in case of error). sl@0: */ sl@0: sl@0: //ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...)); sl@0: /* sl@0: Converts, formats, and writes the args to the compressed file under sl@0: control of the format string, as in fprintf. gzprintf returns the number of sl@0: uncompressed bytes actually written (0 in case of error). sl@0: */ sl@0: sl@0: //ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s)); sl@0: /* sl@0: Writes the given null-terminated string to the compressed file, excluding sl@0: the terminating null character. sl@0: gzputs returns the number of characters written, or -1 in case of error. sl@0: */ sl@0: sl@0: //ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len)); sl@0: /* sl@0: Reads bytes from the compressed file until len-1 characters are read, or sl@0: a newline character is read and transferred to buf, or an end-of-file sl@0: condition is encountered. The string is then terminated with a null sl@0: character. sl@0: gzgets returns buf, or Z_NULL in case of error. sl@0: */ sl@0: sl@0: //ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); sl@0: /* sl@0: Writes c, converted to an unsigned char, into the compressed file. sl@0: gzputc returns the value that was written, or -1 in case of error. sl@0: */ sl@0: sl@0: //ZEXTERN int ZEXPORT gzgetc OF((gzFile file)); sl@0: /* sl@0: Reads one byte from the compressed file. gzgetc returns this byte sl@0: or -1 in case of end of file or error. sl@0: */ sl@0: sl@0: //ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush)); sl@0: /* sl@0: Flushes all pending output into the compressed file. The parameter sl@0: flush is as in the deflate() function. The return value is the zlib sl@0: error number (see function gzerror below). gzflush returns Z_OK if sl@0: the flush parameter is Z_FINISH and all output could be flushed. sl@0: gzflush should be called only when strictly necessary because it can sl@0: degrade compression. sl@0: */ sl@0: sl@0: //ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file, sl@0: // z_off_t offset, int whence)); sl@0: /* sl@0: Sets the starting position for the next gzread or gzwrite on the sl@0: given compressed file. The offset represents a number of bytes in the sl@0: uncompressed data stream. The whence parameter is defined as in lseek(2); sl@0: the value SEEK_END is not supported. sl@0: If the file is opened for reading, this function is emulated but can be sl@0: extremely slow. If the file is opened for writing, only forward seeks are sl@0: supported; gzseek then compresses a sequence of zeroes up to the new sl@0: starting position. sl@0: sl@0: gzseek returns the resulting offset location as measured in bytes from sl@0: the beginning of the uncompressed stream, or -1 in case of error, in sl@0: particular if the file is opened for writing and the new starting position sl@0: would be before the current position. sl@0: */ sl@0: sl@0: //ZEXTERN int ZEXPORT gzrewind OF((gzFile file)); sl@0: /* sl@0: Rewinds the given file. This function is supported only for reading. sl@0: sl@0: gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET) sl@0: */ sl@0: sl@0: //ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file)); sl@0: /* sl@0: Returns the starting position for the next gzread or gzwrite on the sl@0: given compressed file. This position represents a number of bytes in the sl@0: uncompressed data stream. sl@0: sl@0: gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR) sl@0: */ sl@0: sl@0: //ZEXTERN int ZEXPORT gzeof OF((gzFile file)); sl@0: /* sl@0: Returns 1 when EOF has previously been detected reading the given sl@0: input stream, otherwise zero. sl@0: */ sl@0: sl@0: //ZEXTERN int ZEXPORT gzclose OF((gzFile file)); sl@0: /* sl@0: Flushes all pending output if necessary, closes the compressed file sl@0: and deallocates all the (de)compression state. The return value is the zlib sl@0: error number (see function gzerror below). sl@0: */ sl@0: sl@0: //ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum)); sl@0: /* sl@0: Returns the error message for the last error which occurred on the sl@0: given compressed file. errnum is set to zlib error number. If an sl@0: error occurred in the file system and not in the compression library, sl@0: errnum is set to Z_ERRNO and the application may consult errno sl@0: to get the exact error code. sl@0: */ sl@0: sl@0: /* checksum functions */ sl@0: sl@0: /* sl@0: These functions are not related to compression but are exported sl@0: anyway because they might be useful in applications using the sl@0: compression library. sl@0: */ sl@0: sl@0: ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); sl@0: sl@0: /* sl@0: Update a running Adler-32 checksum with the bytes buf[0..len-1] and sl@0: return the updated checksum. If buf is NULL, this function returns sl@0: the required initial value for the checksum. sl@0: An Adler-32 checksum is almost as reliable as a CRC32 but can be computed sl@0: much faster. Usage example: sl@0: sl@0: uLong adler = adler32(0L, Z_NULL, 0); sl@0: sl@0: while (read_buffer(buffer, length) != EOF) { sl@0: adler = adler32(adler, buffer, length); sl@0: } sl@0: if (adler != original_adler) error(); sl@0: */ sl@0: sl@0: ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); sl@0: /* sl@0: Update a running crc with the bytes buf[0..len-1] and return the updated sl@0: crc. If buf is NULL, this function returns the required initial value sl@0: for the crc. Pre- and post-conditioning (one's complement) is performed sl@0: within this function so it shouldn't be done by the application. sl@0: Usage example: sl@0: sl@0: uLong crc = crc32(0L, Z_NULL, 0); sl@0: sl@0: while (read_buffer(buffer, length) != EOF) { sl@0: crc = crc32(crc, buffer, length); sl@0: } sl@0: if (crc != original_crc) error(); sl@0: */ sl@0: sl@0: sl@0: /* various hacks, don't look :) */ sl@0: sl@0: /* deflateInit and inflateInit are macros to allow checking the zlib version sl@0: * and the compiler's view of z_stream: sl@0: */ sl@0: ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level, sl@0: const char *version, int stream_size)); sl@0: ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm, sl@0: const char *version, int stream_size)); sl@0: ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method, sl@0: int windowBits, int memLevel, sl@0: int strategy, const char *version, sl@0: int stream_size)); sl@0: ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, sl@0: const char *version, int stream_size)); sl@0: #define deflateInit(strm, level) \ sl@0: deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream)) sl@0: #define inflateInit(strm) \ sl@0: inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream)) sl@0: #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ sl@0: deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ sl@0: (strategy), ZLIB_VERSION, sizeof(z_stream)) sl@0: #define inflateInit2(strm, windowBits) \ sl@0: inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) sl@0: sl@0: sl@0: #if !defined(_Z_UTIL_H) && !defined(NO_DUMMY_DECL) sl@0: /** sl@0: * @publishedAll sl@0: * @released sl@0: */ sl@0: struct internal_state {int dummy;}; /* hack for buggy compilers */ sl@0: #endif sl@0: sl@0: ZEXTERN const char * ZEXPORT zError OF((int err)); sl@0: ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp z)); sl@0: ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void)); sl@0: sl@0: #ifdef __cplusplus sl@0: } sl@0: #endif sl@0: #endif /* _ZLIB_H */