Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: third_party/zlib/zlib.h

Issue 1955383002: Update Zlib to version 1.2.8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update zlib to version 1.2.8 Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* zlib.h -- interface of the 'zlib' general purpose compression library 1 /* zlib.h -- interface of the 'zlib' general purpose compression library
2 version 1.2.5, April 19th, 2010 2 version 1.2.8, April 28th, 2013
3 3
4 Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler 4 Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
5 5
6 This software is provided 'as-is', without any express or implied 6 This software is provided 'as-is', without any express or implied
7 warranty. In no event will the authors be held liable for any damages 7 warranty. In no event will the authors be held liable for any damages
8 arising from the use of this software. 8 arising from the use of this software.
9 9
10 Permission is granted to anyone to use this software for any purpose, 10 Permission is granted to anyone to use this software for any purpose,
11 including commercial applications, and to alter it and redistribute it 11 including commercial applications, and to alter it and redistribute it
12 freely, subject to the following restrictions: 12 freely, subject to the following restrictions:
13 13
14 1. The origin of this software must not be misrepresented; you must not 14 1. The origin of this software must not be misrepresented; you must not
15 claim that you wrote the original software. If you use this software 15 claim that you wrote the original software. If you use this software
16 in a product, an acknowledgment in the product documentation would be 16 in a product, an acknowledgment in the product documentation would be
17 appreciated but is not required. 17 appreciated but is not required.
18 2. Altered source versions must be plainly marked as such, and must not be 18 2. Altered source versions must be plainly marked as such, and must not be
19 misrepresented as being the original software. 19 misrepresented as being the original software.
20 3. This notice may not be removed or altered from any source distribution. 20 3. This notice may not be removed or altered from any source distribution.
21 21
22 Jean-loup Gailly Mark Adler 22 Jean-loup Gailly Mark Adler
23 jloup@gzip.org madler@alumni.caltech.edu 23 jloup@gzip.org madler@alumni.caltech.edu
24 24
25 25
26 The data format used by the zlib library is described by RFCs (Request for 26 The data format used by the zlib library is described by RFCs (Request for
27 Comments) 1950 to 1952 in the files http://www.ietf.org/rfc/rfc1950.txt 27 Comments) 1950 to 1952 in the files http://tools.ietf.org/html/rfc1950
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). 28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
29 */ 29 */
30 30
31 #ifndef ZLIB_H 31 #ifndef ZLIB_H
32 #define ZLIB_H 32 #define ZLIB_H
33 33
34 #include "zconf.h" 34 #include "zconf.h"
35 35
36 #ifdef __cplusplus 36 #ifdef __cplusplus
37 extern "C" { 37 extern "C" {
38 #endif 38 #endif
39 39
40 #define ZLIB_VERSION "1.2.5" 40 #define ZLIB_VERSION "1.2.8"
41 #define ZLIB_VERNUM 0x1250 41 #define ZLIB_VERNUM 0x1280
42 #define ZLIB_VER_MAJOR 1 42 #define ZLIB_VER_MAJOR 1
43 #define ZLIB_VER_MINOR 2 43 #define ZLIB_VER_MINOR 2
44 #define ZLIB_VER_REVISION 5 44 #define ZLIB_VER_REVISION 8
45 #define ZLIB_VER_SUBREVISION 0 45 #define ZLIB_VER_SUBREVISION 0
46 46
47 /* 47 /*
48 The 'zlib' compression library provides in-memory compression and 48 The 'zlib' compression library provides in-memory compression and
49 decompression functions, including integrity checks of the uncompressed data. 49 decompression functions, including integrity checks of the uncompressed data.
50 This version of the library supports only one compression method (deflation) 50 This version of the library supports only one compression method (deflation)
51 but other algorithms will be added later and will have the same stream 51 but other algorithms will be added later and will have the same stream
52 interface. 52 interface.
53 53
54 Compression can be done in a single step if the buffers are large enough, 54 Compression can be done in a single step if the buffers are large enough,
(...skipping 21 matching lines...) Expand all
76 the consistency of the compressed data, so the library should never crash 76 the consistency of the compressed data, so the library should never crash
77 even in case of corrupted input. 77 even in case of corrupted input.
78 */ 78 */
79 79
80 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 80 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
81 typedef void (*free_func) OF((voidpf opaque, voidpf address)); 81 typedef void (*free_func) OF((voidpf opaque, voidpf address));
82 82
83 struct internal_state; 83 struct internal_state;
84 84
85 typedef struct z_stream_s { 85 typedef struct z_stream_s {
86 Bytef *next_in; /* next input byte */ 86 z_const Bytef *next_in; /* next input byte */
87 uInt avail_in; /* number of bytes available at next_in */ 87 uInt avail_in; /* number of bytes available at next_in */
88 uLong total_in; /* total nb of input bytes read so far */ 88 uLong total_in; /* total number of input bytes read so far */
89 89
90 Bytef *next_out; /* next output byte should be put there */ 90 Bytef *next_out; /* next output byte should be put there */
91 uInt avail_out; /* remaining free space at next_out */ 91 uInt avail_out; /* remaining free space at next_out */
92 uLong total_out; /* total nb of bytes output so far */ 92 uLong total_out; /* total number of bytes output so far */
93 93
94 char *msg; /* last error message, NULL if no error */ 94 z_const char *msg; /* last error message, NULL if no error */
95 struct internal_state FAR *state; /* not visible by applications */ 95 struct internal_state FAR *state; /* not visible by applications */
96 96
97 alloc_func zalloc; /* used to allocate the internal state */ 97 alloc_func zalloc; /* used to allocate the internal state */
98 free_func zfree; /* used to free the internal state */ 98 free_func zfree; /* used to free the internal state */
99 voidpf opaque; /* private data object passed to zalloc and zfree */ 99 voidpf opaque; /* private data object passed to zalloc and zfree */
100 100
101 int data_type; /* best guess about the data type: binary or text */ 101 int data_type; /* best guess about the data type: binary or text */
102 uLong adler; /* adler32 value of the uncompressed data */ 102 uLong adler; /* adler32 value of the uncompressed data */
103 uLong reserved; /* reserved for future use */ 103 uLong reserved; /* reserved for future use */
104 int clas; 104 int clas;
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 If the parameter flush is set to Z_FINISH, pending input is processed, 325 If the parameter flush is set to Z_FINISH, pending input is processed,
326 pending output is flushed and deflate returns with Z_STREAM_END if there was 326 pending output is flushed and deflate returns with Z_STREAM_END if there was
327 enough output space; if deflate returns with Z_OK, this function must be 327 enough output space; if deflate returns with Z_OK, this function must be
328 called again with Z_FINISH and more output space (updated avail_out) but no 328 called again with Z_FINISH and more output space (updated avail_out) but no
329 more input data, until it returns with Z_STREAM_END or an error. After 329 more input data, until it returns with Z_STREAM_END or an error. After
330 deflate has returned Z_STREAM_END, the only possible operations on the stream 330 deflate has returned Z_STREAM_END, the only possible operations on the stream
331 are deflateReset or deflateEnd. 331 are deflateReset or deflateEnd.
332 332
333 Z_FINISH can be used immediately after deflateInit if all the compression 333 Z_FINISH can be used immediately after deflateInit if all the compression
334 is to be done in a single step. In this case, avail_out must be at least the 334 is to be done in a single step. In this case, avail_out must be at least the
335 value returned by deflateBound (see below). If deflate does not return 335 value returned by deflateBound (see below). Then deflate is guaranteed to
336 Z_STREAM_END, then it must be called again as described above. 336 return Z_STREAM_END. If not enough output space is provided, deflate will
337 not return Z_STREAM_END, and it must be called again as described above.
337 338
338 deflate() sets strm->adler to the adler32 checksum of all input read 339 deflate() sets strm->adler to the adler32 checksum of all input read
339 so far (that is, total_in bytes). 340 so far (that is, total_in bytes).
340 341
341 deflate() may update strm->data_type if it can make a good guess about 342 deflate() may update strm->data_type if it can make a good guess about
342 the input data type (Z_BINARY or Z_TEXT). In doubt, the data is considered 343 the input data type (Z_BINARY or Z_TEXT). In doubt, the data is considered
343 binary. This field is only for information purposes and does not affect the 344 binary. This field is only for information purposes and does not affect the
344 compression algorithm in any manner. 345 compression algorithm in any manner.
345 346
346 deflate() returns Z_OK if some progress has been made (more input 347 deflate() returns Z_OK if some progress has been made (more input
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 end of each deflate block header is reached, before any actual data in that 450 end of each deflate block header is reached, before any actual data in that
450 block is decoded. This allows the caller to determine the length of the 451 block is decoded. This allows the caller to determine the length of the
451 deflate block header for later use in random access within a deflate block. 452 deflate block header for later use in random access within a deflate block.
452 256 is added to the value of strm->data_type when inflate() returns 453 256 is added to the value of strm->data_type when inflate() returns
453 immediately after reaching the end of the deflate block header. 454 immediately after reaching the end of the deflate block header.
454 455
455 inflate() should normally be called until it returns Z_STREAM_END or an 456 inflate() should normally be called until it returns Z_STREAM_END or an
456 error. However if all decompression is to be performed in a single step (a 457 error. However if all decompression is to be performed in a single step (a
457 single call of inflate), the parameter flush should be set to Z_FINISH. In 458 single call of inflate), the parameter flush should be set to Z_FINISH. In
458 this case all pending input is processed and all pending output is flushed; 459 this case all pending input is processed and all pending output is flushed;
459 avail_out must be large enough to hold all the uncompressed data. (The size 460 avail_out must be large enough to hold all of the uncompressed data for the
460 of the uncompressed data may have been saved by the compressor for this 461 operation to complete. (The size of the uncompressed data may have been
461 purpose.) The next operation on this stream must be inflateEnd to deallocate 462 saved by the compressor for this purpose.) The use of Z_FINISH is not
462 the decompression state. The use of Z_FINISH is never required, but can be 463 required to perform an inflation in one step. However it may be used to
463 used to inform inflate that a faster approach may be used for the single 464 inform inflate that a faster approach can be used for the single inflate()
464 inflate() call. 465 call. Z_FINISH also informs inflate to not maintain a sliding window if the
466 stream completes, which reduces inflate's memory footprint. If the stream
467 does not complete, either because not all of the stream is provided or not
468 enough output space is provided, then a sliding window will be allocated and
469 inflate() can be called again to continue the operation as if Z_NO_FLUSH had
470 been used.
465 471
466 In this implementation, inflate() always flushes as much output as 472 In this implementation, inflate() always flushes as much output as
467 possible to the output buffer, and always uses the faster approach on the 473 possible to the output buffer, and always uses the faster approach on the
468 first call. So the only effect of the flush parameter in this implementation 474 first call. So the effects of the flush parameter in this implementation are
469 is on the return value of inflate(), as noted below, or when it returns early 475 on the return value of inflate() as noted below, when inflate() returns early
470 because Z_BLOCK or Z_TREES is used. 476 when Z_BLOCK or Z_TREES is used, and when inflate() avoids the allocation of
477 memory for a sliding window when Z_FINISH is used.
471 478
472 If a preset dictionary is needed after this call (see inflateSetDictionary 479 If a preset dictionary is needed after this call (see inflateSetDictionary
473 below), inflate sets strm->adler to the adler32 checksum of the dictionary 480 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
474 chosen by the compressor and returns Z_NEED_DICT; otherwise it sets 481 chosen by the compressor and returns Z_NEED_DICT; otherwise it sets
475 strm->adler to the adler32 checksum of all output produced so far (that is, 482 strm->adler to the Adler-32 checksum of all output produced so far (that is,
476 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described 483 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
477 below. At the end of the stream, inflate() checks that its computed adler32 484 below. At the end of the stream, inflate() checks that its computed adler32
478 checksum is equal to that saved by the compressor and returns Z_STREAM_END 485 checksum is equal to that saved by the compressor and returns Z_STREAM_END
479 only if the checksum is correct. 486 only if the checksum is correct.
480 487
481 inflate() can decompress and check either zlib-wrapped or gzip-wrapped 488 inflate() can decompress and check either zlib-wrapped or gzip-wrapped
482 deflate data. The header type is detected automatically, if requested when 489 deflate data. The header type is detected automatically, if requested when
483 initializing with inflateInit2(). Any information contained in the gzip 490 initializing with inflateInit2(). Any information contained in the gzip
484 header is not retained, so applications that need that information should 491 header is not retained, so applications that need that information should
485 instead use raw inflate, see inflateInit2() below, or inflateBack() and 492 instead use raw inflate, see inflateInit2() below, or inflateBack() and
486 perform their own processing of the gzip header and trailer. 493 perform their own processing of the gzip header and trailer. When processing
494 gzip-wrapped deflate data, strm->adler32 is set to the CRC-32 of the output
495 producted so far. The CRC-32 is checked against the gzip trailer.
487 496
488 inflate() returns Z_OK if some progress has been made (more input processed 497 inflate() returns Z_OK if some progress has been made (more input processed
489 or more output produced), Z_STREAM_END if the end of the compressed data has 498 or more output produced), Z_STREAM_END if the end of the compressed data has
490 been reached and all uncompressed output has been produced, Z_NEED_DICT if a 499 been reached and all uncompressed output has been produced, Z_NEED_DICT if a
491 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was 500 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
492 corrupted (input stream not conforming to the zlib format or incorrect check 501 corrupted (input stream not conforming to the zlib format or incorrect check
493 value), Z_STREAM_ERROR if the stream structure was inconsistent (for example 502 value), Z_STREAM_ERROR if the stream structure was inconsistent (for example
494 next_in or next_out was Z_NULL), Z_MEM_ERROR if there was not enough memory, 503 next_in or next_out was Z_NULL), Z_MEM_ERROR if there was not enough memory,
495 Z_BUF_ERROR if no progress is possible or if there was not enough room in the 504 Z_BUF_ERROR if no progress is possible or if there was not enough room in the
496 output buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and 505 output buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 incompatible with the version assumed by the caller (ZLIB_VERSION). msg is 587 incompatible with the version assumed by the caller (ZLIB_VERSION). msg is
579 set to null if there is no error message. deflateInit2 does not perform any 588 set to null if there is no error message. deflateInit2 does not perform any
580 compression: this will be done by deflate(). 589 compression: this will be done by deflate().
581 */ 590 */
582 591
583 ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm, 592 ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm,
584 const Bytef *dictionary, 593 const Bytef *dictionary,
585 uInt dictLength)); 594 uInt dictLength));
586 /* 595 /*
587 Initializes the compression dictionary from the given byte sequence 596 Initializes the compression dictionary from the given byte sequence
588 without producing any compressed output. This function must be called 597 without producing any compressed output. When using the zlib format, this
589 immediately after deflateInit, deflateInit2 or deflateReset, before any call 598 function must be called immediately after deflateInit, deflateInit2 or
590 of deflate. The compressor and decompressor must use exactly the same 599 deflateReset, and before any call of deflate. When doing raw deflate, this
591 dictionary (see inflateSetDictionary). 600 function must be called either before any call of deflate, or immediately
601 after the completion of a deflate block, i.e. after all input has been
602 consumed and all output has been delivered when using any of the flush
603 options Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, or Z_FULL_FLUSH. The
604 compressor and decompressor must use exactly the same dictionary (see
605 inflateSetDictionary).
592 606
593 The dictionary should consist of strings (byte sequences) that are likely 607 The dictionary should consist of strings (byte sequences) that are likely
594 to be encountered later in the data to be compressed, with the most commonly 608 to be encountered later in the data to be compressed, with the most commonly
595 used strings preferably put towards the end of the dictionary. Using a 609 used strings preferably put towards the end of the dictionary. Using a
596 dictionary is most useful when the data to be compressed is short and can be 610 dictionary is most useful when the data to be compressed is short and can be
597 predicted with good accuracy; the data can then be compressed better than 611 predicted with good accuracy; the data can then be compressed better than
598 with the default empty dictionary. 612 with the default empty dictionary.
599 613
600 Depending on the size of the compression data structures selected by 614 Depending on the size of the compression data structures selected by
601 deflateInit or deflateInit2, a part of the dictionary may in effect be 615 deflateInit or deflateInit2, a part of the dictionary may in effect be
602 discarded, for example if the dictionary is larger than the window size 616 discarded, for example if the dictionary is larger than the window size
603 provided in deflateInit or deflateInit2. Thus the strings most likely to be 617 provided in deflateInit or deflateInit2. Thus the strings most likely to be
604 useful should be put at the end of the dictionary, not at the front. In 618 useful should be put at the end of the dictionary, not at the front. In
605 addition, the current implementation of deflate will use at most the window 619 addition, the current implementation of deflate will use at most the window
606 size minus 262 bytes of the provided dictionary. 620 size minus 262 bytes of the provided dictionary.
607 621
608 Upon return of this function, strm->adler is set to the adler32 value 622 Upon return of this function, strm->adler is set to the adler32 value
609 of the dictionary; the decompressor may later use this value to determine 623 of the dictionary; the decompressor may later use this value to determine
610 which dictionary has been used by the compressor. (The adler32 value 624 which dictionary has been used by the compressor. (The adler32 value
611 applies to the whole dictionary even if only a subset of the dictionary is 625 applies to the whole dictionary even if only a subset of the dictionary is
612 actually used by the compressor.) If a raw deflate was requested, then the 626 actually used by the compressor.) If a raw deflate was requested, then the
613 adler32 value is not computed and strm->adler is not set. 627 adler32 value is not computed and strm->adler is not set.
614 628
615 deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a 629 deflateSetDictionary returns Z_OK if success, or Z_STREAM_ERROR if a
616 parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is 630 parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is
617 inconsistent (for example if deflate has already been called for this stream 631 inconsistent (for example if deflate has already been called for this stream
618 or if the compression method is bsort). deflateSetDictionary does not 632 or if not at a block boundary for raw deflate). deflateSetDictionary does
619 perform any compression: this will be done by deflate(). 633 not perform any compression: this will be done by deflate().
620 */ 634 */
621 635
622 ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest, 636 ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
623 z_streamp source)); 637 z_streamp source));
624 /* 638 /*
625 Sets the destination stream as a complete copy of the source stream. 639 Sets the destination stream as a complete copy of the source stream.
626 640
627 This function can be useful when several compression strategies will be 641 This function can be useful when several compression strategies will be
628 tried, for example when there are several ways of pre-processing the input 642 tried, for example when there are several ways of pre-processing the input
629 data with a filter. The streams that will be discarded should then be freed 643 data with a filter. The streams that will be discarded should then be freed
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 returns Z_OK on success, or Z_STREAM_ERROR for an invalid deflate stream. 700 returns Z_OK on success, or Z_STREAM_ERROR for an invalid deflate stream.
687 */ 701 */
688 702
689 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm, 703 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
690 uLong sourceLen)); 704 uLong sourceLen));
691 /* 705 /*
692 deflateBound() returns an upper bound on the compressed size after 706 deflateBound() returns an upper bound on the compressed size after
693 deflation of sourceLen bytes. It must be called after deflateInit() or 707 deflation of sourceLen bytes. It must be called after deflateInit() or
694 deflateInit2(), and after deflateSetHeader(), if used. This would be used 708 deflateInit2(), and after deflateSetHeader(), if used. This would be used
695 to allocate an output buffer for deflation in a single pass, and so would be 709 to allocate an output buffer for deflation in a single pass, and so would be
696 called before deflate(). 710 called before deflate(). If that first deflate() call is provided the
711 sourceLen input bytes, an output buffer allocated to the size returned by
712 deflateBound(), and the flush value Z_FINISH, then deflate() is guaranteed
713 to return Z_STREAM_END. Note that it is possible for the compressed size to
714 be larger than the value returned by deflateBound() if flush options other
715 than Z_FINISH or Z_NO_FLUSH are used.
697 */ 716 */
698 717
718 ZEXTERN int ZEXPORT deflatePending OF((z_streamp strm,
719 unsigned *pending,
720 int *bits));
721 /*
722 deflatePending() returns the number of bytes and bits of output that have
723 been generated, but not yet provided in the available output. The bytes not
724 provided would be due to the available output space having being consumed.
725 The number of bits of output not provided are between 0 and 7, where they
726 await more bits to join them in order to fill out a full byte. If pending
727 or bits are Z_NULL, then those values are not set.
728
729 deflatePending returns Z_OK if success, or Z_STREAM_ERROR if the source
730 stream state was inconsistent.
731 */
732
699 ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm, 733 ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm,
700 int bits, 734 int bits,
701 int value)); 735 int value));
702 /* 736 /*
703 deflatePrime() inserts bits in the deflate output stream. The intent 737 deflatePrime() inserts bits in the deflate output stream. The intent
704 is that this function is used to start off the deflate output with the bits 738 is that this function is used to start off the deflate output with the bits
705 leftover from a previous deflate stream when appending to it. As such, this 739 leftover from a previous deflate stream when appending to it. As such, this
706 function can only be used for raw deflate, and must be used before the first 740 function can only be used for raw deflate, and must be used before the first
707 deflate() call after a deflateInit2() or deflateReset(). bits must be less 741 deflate() call after a deflateInit2() or deflateReset(). bits must be less
708 than or equal to 16, and that many of the least significant bits of value 742 than or equal to 16, and that many of the least significant bits of value
709 will be inserted in the output. 743 will be inserted in the output.
710 744
711 deflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source 745 deflatePrime returns Z_OK if success, Z_BUF_ERROR if there was not enough
712 stream state was inconsistent. 746 room in the internal buffer to insert the bits, or Z_STREAM_ERROR if the
747 source stream state was inconsistent.
713 */ 748 */
714 749
715 ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm, 750 ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm,
716 gz_headerp head)); 751 gz_headerp head));
717 /* 752 /*
718 deflateSetHeader() provides gzip header information for when a gzip 753 deflateSetHeader() provides gzip header information for when a gzip
719 stream is requested by deflateInit2(). deflateSetHeader() may be called 754 stream is requested by deflateInit2(). deflateSetHeader() may be called
720 after deflateInit2() or deflateReset() and before the first call of 755 after deflateInit2() or deflateReset() and before the first call of
721 deflate(). The text, time, os, extra field, name, and comment information 756 deflate(). The text, time, os, extra field, name, and comment information
722 in the provided gz_header structure are written to the gzip header (xflag is 757 in the provided gz_header structure are written to the gzip header (xflag is
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 823
789 ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm, 824 ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm,
790 const Bytef *dictionary, 825 const Bytef *dictionary,
791 uInt dictLength)); 826 uInt dictLength));
792 /* 827 /*
793 Initializes the decompression dictionary from the given uncompressed byte 828 Initializes the decompression dictionary from the given uncompressed byte
794 sequence. This function must be called immediately after a call of inflate, 829 sequence. This function must be called immediately after a call of inflate,
795 if that call returned Z_NEED_DICT. The dictionary chosen by the compressor 830 if that call returned Z_NEED_DICT. The dictionary chosen by the compressor
796 can be determined from the adler32 value returned by that call of inflate. 831 can be determined from the adler32 value returned by that call of inflate.
797 The compressor and decompressor must use exactly the same dictionary (see 832 The compressor and decompressor must use exactly the same dictionary (see
798 deflateSetDictionary). For raw inflate, this function can be called 833 deflateSetDictionary). For raw inflate, this function can be called at any
799 immediately after inflateInit2() or inflateReset() and before any call of 834 time to set the dictionary. If the provided dictionary is smaller than the
800 inflate() to set the dictionary. The application must insure that the 835 window and there is already data in the window, then the provided dictionary
801 dictionary that was used for compression is provided. 836 will amend what's there. The application must insure that the dictionary
837 that was used for compression is provided.
802 838
803 inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a 839 inflateSetDictionary returns Z_OK if success, Z_STREAM_ERROR if a
804 parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is 840 parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is
805 inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the 841 inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the
806 expected one (incorrect adler32 value). inflateSetDictionary does not 842 expected one (incorrect adler32 value). inflateSetDictionary does not
807 perform any decompression: this will be done by subsequent calls of 843 perform any decompression: this will be done by subsequent calls of
808 inflate(). 844 inflate().
809 */ 845 */
810 846
847 ZEXTERN int ZEXPORT inflateGetDictionary OF((z_streamp strm,
848 Bytef *dictionary,
849 uInt *dictLength));
850 /*
851 Returns the sliding dictionary being maintained by inflate. dictLength is
852 set to the number of bytes in the dictionary, and that many bytes are copied
853 to dictionary. dictionary must have enough space, where 32768 bytes is
854 always enough. If inflateGetDictionary() is called with dictionary equal to
855 Z_NULL, then only the dictionary length is returned, and nothing is copied.
856 Similary, if dictLength is Z_NULL, then it is not set.
857
858 inflateGetDictionary returns Z_OK on success, or Z_STREAM_ERROR if the
859 stream state is inconsistent.
860 */
861
811 ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm)); 862 ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm));
812 /* 863 /*
813 Skips invalid compressed data until a full flush point (see above the 864 Skips invalid compressed data until a possible full flush point (see above
814 description of deflate with Z_FULL_FLUSH) can be found, or until all 865 for the description of deflate with Z_FULL_FLUSH) can be found, or until all
815 available input is skipped. No output is provided. 866 available input is skipped. No output is provided.
816 867
817 inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR 868 inflateSync searches for a 00 00 FF FF pattern in the compressed data.
818 if no more input was provided, Z_DATA_ERROR if no flush point has been 869 All full flush points have this pattern, but not all occurrences of this
819 found, or Z_STREAM_ERROR if the stream structure was inconsistent. In the 870 pattern are full flush points.
820 success case, the application may save the current current value of total_in 871
821 which indicates where valid compressed data was found. In the error case, 872 inflateSync returns Z_OK if a possible full flush point has been found,
822 the application may repeatedly call inflateSync, providing more input each 873 Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point
823 time, until success or end of the input data. 874 has been found, or Z_STREAM_ERROR if the stream structure was inconsistent.
875 In the success case, the application may save the current current value of
876 total_in which indicates where valid compressed data was found. In the
877 error case, the application may repeatedly call inflateSync, providing more
878 input each time, until success or end of the input data.
824 */ 879 */
825 880
826 ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest, 881 ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
827 z_streamp source)); 882 z_streamp source));
828 /* 883 /*
829 Sets the destination stream as a complete copy of the source stream. 884 Sets the destination stream as a complete copy of the source stream.
830 885
831 This function can be useful when randomly accessing a large stream. The 886 This function can be useful when randomly accessing a large stream. The
832 first pass through the stream can periodically record the inflate state, 887 first pass through the stream can periodically record the inflate state,
833 allowing restarting inflate at those points when randomly accessing the 888 allowing restarting inflate at those points when randomly accessing the
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 derived memory allocation routines are used. windowBits is the base two 1015 derived memory allocation routines are used. windowBits is the base two
961 logarithm of the window size, in the range 8..15. window is a caller 1016 logarithm of the window size, in the range 8..15. window is a caller
962 supplied buffer of that size. Except for special applications where it is 1017 supplied buffer of that size. Except for special applications where it is
963 assured that deflate was used with small window sizes, windowBits must be 15 1018 assured that deflate was used with small window sizes, windowBits must be 15
964 and a 32K byte window must be supplied to be able to decompress general 1019 and a 32K byte window must be supplied to be able to decompress general
965 deflate streams. 1020 deflate streams.
966 1021
967 See inflateBack() for the usage of these routines. 1022 See inflateBack() for the usage of these routines.
968 1023
969 inflateBackInit will return Z_OK on success, Z_STREAM_ERROR if any of 1024 inflateBackInit will return Z_OK on success, Z_STREAM_ERROR if any of
970 the paramaters are invalid, Z_MEM_ERROR if the internal state could not be 1025 the parameters are invalid, Z_MEM_ERROR if the internal state could not be
971 allocated, or Z_VERSION_ERROR if the version of the library does not match 1026 allocated, or Z_VERSION_ERROR if the version of the library does not match
972 the version of the header file. 1027 the version of the header file.
973 */ 1028 */
974 1029
975 typedef unsigned (*in_func) OF((void FAR *, unsigned char FAR * FAR *)); 1030 typedef unsigned (*in_func) OF((void FAR *,
1031 z_const unsigned char FAR * FAR *));
976 typedef int (*out_func) OF((void FAR *, unsigned char FAR *, unsigned)); 1032 typedef int (*out_func) OF((void FAR *, unsigned char FAR *, unsigned));
977 1033
978 ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm, 1034 ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
979 in_func in, void FAR *in_desc, 1035 in_func in, void FAR *in_desc,
980 out_func out, void FAR *out_desc)); 1036 out_func out, void FAR *out_desc));
981 /* 1037 /*
982 inflateBack() does a raw inflate with a single call using a call-back 1038 inflateBack() does a raw inflate with a single call using a call-back
983 interface for input and output. This is more efficient than inflate() for 1039 interface for input and output. This is potentially more efficient than
984 file i/o applications in that it avoids copying between the output and the 1040 inflate() for file i/o applications, in that it avoids copying between the
985 sliding window by simply making the window itself the output buffer. This 1041 output and the sliding window by simply making the window itself the output
986 function trusts the application to not change the output buffer passed by 1042 buffer. inflate() can be faster on modern CPUs when used with large
987 the output function, at least until inflateBack() returns. 1043 buffers. inflateBack() trusts the application to not change the output
1044 buffer passed by the output function, at least until inflateBack() returns.
988 1045
989 inflateBackInit() must be called first to allocate the internal state 1046 inflateBackInit() must be called first to allocate the internal state
990 and to initialize the state with the user-provided window buffer. 1047 and to initialize the state with the user-provided window buffer.
991 inflateBack() may then be used multiple times to inflate a complete, raw 1048 inflateBack() may then be used multiple times to inflate a complete, raw
992 deflate stream with each call. inflateBackEnd() is then called to free the 1049 deflate stream with each call. inflateBackEnd() is then called to free the
993 allocated state. 1050 allocated state.
994 1051
995 A raw deflate stream is one with no zlib or gzip header or trailer. 1052 A raw deflate stream is one with no zlib or gzip header or trailer.
996 This routine would normally be used in a utility that reads zip or gzip 1053 This routine would normally be used in a utility that reads zip or gzip
997 files and writes out uncompressed files. The utility would decode the 1054 files and writes out uncompressed files. The utility would decode the
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1086 1143
1087 The sprintf variant used by gzprintf (zero is best): 1144 The sprintf variant used by gzprintf (zero is best):
1088 24: 0 = vs*, 1 = s* -- 1 means limited to 20 arguments after the format 1145 24: 0 = vs*, 1 = s* -- 1 means limited to 20 arguments after the format
1089 25: 0 = *nprintf, 1 = *printf -- 1 means gzprintf() not secure! 1146 25: 0 = *nprintf, 1 = *printf -- 1 means gzprintf() not secure!
1090 26: 0 = returns value, 1 = void -- 1 means inferred string length returned 1147 26: 0 = returns value, 1 = void -- 1 means inferred string length returned
1091 1148
1092 Remainder: 1149 Remainder:
1093 27-31: 0 (reserved) 1150 27-31: 0 (reserved)
1094 */ 1151 */
1095 1152
1153 #ifndef Z_SOLO
1096 1154
1097 /* utility functions */ 1155 /* utility functions */
1098 1156
1099 /* 1157 /*
1100 The following utility functions are implemented on top of the basic 1158 The following utility functions are implemented on top of the basic
1101 stream-oriented functions. To simplify the interface, some default options 1159 stream-oriented functions. To simplify the interface, some default options
1102 are assumed (compression level and memory usage, standard memory allocation 1160 are assumed (compression level and memory usage, standard memory allocation
1103 functions). The source code of these utility functions can be modified if 1161 functions). The source code of these utility functions can be modified if
1104 you need special options. 1162 you need special options.
1105 */ 1163 */
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 Decompresses the source buffer into the destination buffer. sourceLen is 1205 Decompresses the source buffer into the destination buffer. sourceLen is
1148 the byte length of the source buffer. Upon entry, destLen is the total size 1206 the byte length of the source buffer. Upon entry, destLen is the total size
1149 of the destination buffer, which must be large enough to hold the entire 1207 of the destination buffer, which must be large enough to hold the entire
1150 uncompressed data. (The size of the uncompressed data must have been saved 1208 uncompressed data. (The size of the uncompressed data must have been saved
1151 previously by the compressor and transmitted to the decompressor by some 1209 previously by the compressor and transmitted to the decompressor by some
1152 mechanism outside the scope of this compression library.) Upon exit, destLen 1210 mechanism outside the scope of this compression library.) Upon exit, destLen
1153 is the actual size of the uncompressed buffer. 1211 is the actual size of the uncompressed buffer.
1154 1212
1155 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not 1213 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
1156 enough memory, Z_BUF_ERROR if there was not enough room in the output 1214 enough memory, Z_BUF_ERROR if there was not enough room in the output
1157 buffer, or Z_DATA_ERROR if the input data was corrupted or incomplete. 1215 buffer, or Z_DATA_ERROR if the input data was corrupted or incomplete. In
1216 the case where there is not enough room, uncompress() will fill the output
1217 buffer with the uncompressed data up to that point.
1158 */ 1218 */
1159 1219
1160 1220
1161 /* gzip file access functions */ 1221 /* gzip file access functions */
1162 1222
1163 /* 1223 /*
1164 This library supports reading and writing files in gzip (.gz) format with 1224 This library supports reading and writing files in gzip (.gz) format with
1165 an interface similar to that of stdio, using the functions that start with 1225 an interface similar to that of stdio, using the functions that start with
1166 "gz". The gzip format is different from the zlib format. gzip is a gzip 1226 "gz". The gzip format is different from the zlib format. gzip is a gzip
1167 wrapper, documented in RFC 1952, wrapped around a deflate stream. 1227 wrapper, documented in RFC 1952, wrapped around a deflate stream.
1168 */ 1228 */
1169 1229
1170 typedef voidp gzFile; /* opaque gzip file descriptor */ 1230 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */
1171 1231
1172 /* 1232 /*
1173 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode)); 1233 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1174 1234
1175 Opens a gzip (.gz) file for reading or writing. The mode parameter is as 1235 Opens a gzip (.gz) file for reading or writing. The mode parameter is as
1176 in fopen ("rb" or "wb") but can also include a compression level ("wb9") or 1236 in fopen ("rb" or "wb") but can also include a compression level ("wb9") or
1177 a strategy: 'f' for filtered data as in "wb6f", 'h' for Huffman-only 1237 a strategy: 'f' for filtered data as in "wb6f", 'h' for Huffman-only
1178 compression as in "wb1h", 'R' for run-length encoding as in "wb1R", or 'F' 1238 compression as in "wb1h", 'R' for run-length encoding as in "wb1R", or 'F'
1179 for fixed code compression as in "wb9F". (See the description of 1239 for fixed code compression as in "wb9F". (See the description of
1180 deflateInit2 for more information about the strategy parameter.) Also "a" 1240 deflateInit2 for more information about the strategy parameter.) 'T' will
1181 can be used instead of "w" to request that the gzip stream that will be 1241 request transparent writing or appending with no compression and not using
1182 written be appended to the file. "+" will result in an error, since reading 1242 the gzip format.
1183 and writing to the same gzip file is not supported. 1243
1244 "a" can be used instead of "w" to request that the gzip stream that will
1245 be written be appended to the file. "+" will result in an error, since
1246 reading and writing to the same gzip file is not supported. The addition of
1247 "x" when writing will create the file exclusively, which fails if the file
1248 already exists. On systems that support it, the addition of "e" when
1249 reading or writing will set the flag to close the file on an execve() call.
1250
1251 These functions, as well as gzip, will read and decode a sequence of gzip
1252 streams in a file. The append function of gzopen() can be used to create
1253 such a file. (Also see gzflush() for another way to do this.) When
1254 appending, gzopen does not test whether the file begins with a gzip stream,
1255 nor does it look for the end of the gzip streams to begin appending. gzopen
1256 will simply append a gzip stream to the existing file.
1184 1257
1185 gzopen can be used to read a file which is not in gzip format; in this 1258 gzopen can be used to read a file which is not in gzip format; in this
1186 case gzread will directly read from the file without decompression. 1259 case gzread will directly read from the file without decompression. When
1260 reading, this will be detected automatically by looking for the magic two-
1261 byte gzip header.
1187 1262
1188 gzopen returns NULL if the file could not be opened, if there was 1263 gzopen returns NULL if the file could not be opened, if there was
1189 insufficient memory to allocate the gzFile state, or if an invalid mode was 1264 insufficient memory to allocate the gzFile state, or if an invalid mode was
1190 specified (an 'r', 'w', or 'a' was not provided, or '+' was provided). 1265 specified (an 'r', 'w', or 'a' was not provided, or '+' was provided).
1191 errno can be checked to determine if the reason gzopen failed was that the 1266 errno can be checked to determine if the reason gzopen failed was that the
1192 file could not be opened. 1267 file could not be opened.
1193 */ 1268 */
1194 1269
1195 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode)); 1270 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1196 /* 1271 /*
1197 gzdopen associates a gzFile with the file descriptor fd. File descriptors 1272 gzdopen associates a gzFile with the file descriptor fd. File descriptors
1198 are obtained from calls like open, dup, creat, pipe or fileno (if the file 1273 are obtained from calls like open, dup, creat, pipe or fileno (if the file
1199 has been previously opened with fopen). The mode parameter is as in gzopen. 1274 has been previously opened with fopen). The mode parameter is as in gzopen.
1200 1275
1201 The next call of gzclose on the returned gzFile will also close the file 1276 The next call of gzclose on the returned gzFile will also close the file
1202 descriptor fd, just like fclose(fdopen(fd, mode)) closes the file descriptor 1277 descriptor fd, just like fclose(fdopen(fd, mode)) closes the file descriptor
1203 fd. If you want to keep fd open, use fd = dup(fd_keep); gz = gzdopen(fd, 1278 fd. If you want to keep fd open, use fd = dup(fd_keep); gz = gzdopen(fd,
1204 mode);. The duplicated descriptor should be saved to avoid a leak, since 1279 mode);. The duplicated descriptor should be saved to avoid a leak, since
1205 gzdopen does not close fd if it fails. 1280 gzdopen does not close fd if it fails. If you are using fileno() to get the
1281 file descriptor from a FILE *, then you will have to use dup() to avoid
1282 double-close()ing the file descriptor. Both gzclose() and fclose() will
1283 close the associated file descriptor, so they need to have different file
1284 descriptors.
1206 1285
1207 gzdopen returns NULL if there was insufficient memory to allocate the 1286 gzdopen returns NULL if there was insufficient memory to allocate the
1208 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not 1287 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1209 provided, or '+' was provided), or if fd is -1. The file descriptor is not 1288 provided, or '+' was provided), or if fd is -1. The file descriptor is not
1210 used until the next gz* read, write, seek, or close operation, so gzdopen 1289 used until the next gz* read, write, seek, or close operation, so gzdopen
1211 will not detect if fd is invalid (unless fd is -1). 1290 will not detect if fd is invalid (unless fd is -1).
1212 */ 1291 */
1213 1292
1214 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size)); 1293 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1215 /* 1294 /*
(...skipping 17 matching lines...) Expand all
1233 Dynamically update the compression level or strategy. See the description 1312 Dynamically update the compression level or strategy. See the description
1234 of deflateInit2 for the meaning of these parameters. 1313 of deflateInit2 for the meaning of these parameters.
1235 1314
1236 gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not 1315 gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not
1237 opened for writing. 1316 opened for writing.
1238 */ 1317 */
1239 1318
1240 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); 1319 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1241 /* 1320 /*
1242 Reads the given number of uncompressed bytes from the compressed file. If 1321 Reads the given number of uncompressed bytes from the compressed file. If
1243 the input file was not in gzip format, gzread copies the given number of 1322 the input file is not in gzip format, gzread copies the given number of
1244 bytes into the buffer. 1323 bytes into the buffer directly from the file.
1245 1324
1246 After reaching the end of a gzip stream in the input, gzread will continue 1325 After reaching the end of a gzip stream in the input, gzread will continue
1247 to read, looking for another gzip stream, or failing that, reading the rest 1326 to read, looking for another gzip stream. Any number of gzip streams may be
1248 of the input file directly without decompression. The entire input file 1327 concatenated in the input file, and will all be decompressed by gzread().
1249 will be read if gzread is called until it returns less than the requested 1328 If something other than a gzip stream is encountered after a gzip stream,
1250 len. 1329 that remaining trailing garbage is ignored (and no error is returned).
1330
1331 gzread can be used to read a gzip file that is being concurrently written.
1332 Upon reaching the end of the input, gzread will return with the available
1333 data. If the error code returned by gzerror is Z_OK or Z_BUF_ERROR, then
1334 gzclearerr can be used to clear the end of file indicator in order to permit
1335 gzread to be tried again. Z_OK indicates that a gzip stream was completed
1336 on the last gzread. Z_BUF_ERROR indicates that the input file ended in the
1337 middle of a gzip stream. Note that gzread does not return -1 in the event
1338 of an incomplete gzip stream. This error is deferred until gzclose(), which
1339 will return Z_BUF_ERROR if the last gzread ended in the middle of a gzip
1340 stream. Alternatively, gzerror can be used before gzclose to detect this
1341 case.
1251 1342
1252 gzread returns the number of uncompressed bytes actually read, less than 1343 gzread returns the number of uncompressed bytes actually read, less than
1253 len for end of file, or -1 for error. 1344 len for end of file, or -1 for error.
1254 */ 1345 */
1255 1346
1256 ZEXTERN int ZEXPORT gzwrite OF((gzFile file, 1347 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1257 voidpc buf, unsigned len)); 1348 voidpc buf, unsigned len));
1258 /* 1349 /*
1259 Writes the given number of uncompressed bytes into the compressed file. 1350 Writes the given number of uncompressed bytes into the compressed file.
1260 gzwrite returns the number of uncompressed bytes written or 0 in case of 1351 gzwrite returns the number of uncompressed bytes written or 0 in case of
1261 error. 1352 error.
1262 */ 1353 */
1263 1354
1264 ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...)); 1355 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
1265 /* 1356 /*
1266 Converts, formats, and writes the arguments to the compressed file under 1357 Converts, formats, and writes the arguments to the compressed file under
1267 control of the format string, as in fprintf. gzprintf returns the number of 1358 control of the format string, as in fprintf. gzprintf returns the number of
1268 uncompressed bytes actually written, or 0 in case of error. The number of 1359 uncompressed bytes actually written, or 0 in case of error. The number of
1269 uncompressed bytes written is limited to 8191, or one less than the buffer 1360 uncompressed bytes written is limited to 8191, or one less than the buffer
1270 size given to gzbuffer(). The caller should assure that this limit is not 1361 size given to gzbuffer(). The caller should assure that this limit is not
1271 exceeded. If it is exceeded, then gzprintf() will return an error (0) with 1362 exceeded. If it is exceeded, then gzprintf() will return an error (0) with
1272 nothing written. In this case, there may also be a buffer overflow with 1363 nothing written. In this case, there may also be a buffer overflow with
1273 unpredictable consequences, which is possible only if zlib was compiled with 1364 unpredictable consequences, which is possible only if zlib was compiled with
1274 the insecure functions sprintf() or vsprintf() because the secure snprintf() 1365 the insecure functions sprintf() or vsprintf() because the secure snprintf()
(...skipping 24 matching lines...) Expand all
1299 1390
1300 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c)); 1391 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
1301 /* 1392 /*
1302 Writes c, converted to an unsigned char, into the compressed file. gzputc 1393 Writes c, converted to an unsigned char, into the compressed file. gzputc
1303 returns the value that was written, or -1 in case of error. 1394 returns the value that was written, or -1 in case of error.
1304 */ 1395 */
1305 1396
1306 ZEXTERN int ZEXPORT gzgetc OF((gzFile file)); 1397 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1307 /* 1398 /*
1308 Reads one byte from the compressed file. gzgetc returns this byte or -1 1399 Reads one byte from the compressed file. gzgetc returns this byte or -1
1309 in case of end of file or error. 1400 in case of end of file or error. This is implemented as a macro for speed.
1401 As such, it does not do all of the checking the other functions do. I.e.
1402 it does not check to see if file is NULL, nor whether the structure file
1403 points to has been clobbered or not.
1310 */ 1404 */
1311 1405
1312 ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file)); 1406 ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
1313 /* 1407 /*
1314 Push one character back onto the stream to be read as the first character 1408 Push one character back onto the stream to be read as the first character
1315 on the next read. At least one character of push-back is allowed. 1409 on the next read. At least one character of push-back is allowed.
1316 gzungetc() returns the character pushed, or -1 on failure. gzungetc() will 1410 gzungetc() returns the character pushed, or -1 on failure. gzungetc() will
1317 fail if c is -1, and may fail if a character has been pushed but not read 1411 fail if c is -1, and may fail if a character has been pushed but not read
1318 yet. If gzungetc is used immediately after gzopen or gzdopen, at least the 1412 yet. If gzungetc is used immediately after gzopen or gzdopen, at least the
1319 output buffer size of pushed characters is allowed. (See gzbuffer above.) 1413 output buffer size of pushed characters is allowed. (See gzbuffer above.)
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
1395 is an exact multiple of the buffer size. 1489 is an exact multiple of the buffer size.
1396 1490
1397 If gzeof() returns true, then the read functions will return no more data, 1491 If gzeof() returns true, then the read functions will return no more data,
1398 unless the end-of-file indicator is reset by gzclearerr() and the input file 1492 unless the end-of-file indicator is reset by gzclearerr() and the input file
1399 has grown since the previous end of file was detected. 1493 has grown since the previous end of file was detected.
1400 */ 1494 */
1401 1495
1402 ZEXTERN int ZEXPORT gzdirect OF((gzFile file)); 1496 ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
1403 /* 1497 /*
1404 Returns true (1) if file is being copied directly while reading, or false 1498 Returns true (1) if file is being copied directly while reading, or false
1405 (0) if file is a gzip stream being decompressed. This state can change from 1499 (0) if file is a gzip stream being decompressed.
1406 false to true while reading the input file if the end of a gzip stream is
1407 reached, but is followed by data that is not another gzip stream.
1408 1500
1409 If the input file is empty, gzdirect() will return true, since the input 1501 If the input file is empty, gzdirect() will return true, since the input
1410 does not contain a gzip stream. 1502 does not contain a gzip stream.
1411 1503
1412 If gzdirect() is used immediately after gzopen() or gzdopen() it will 1504 If gzdirect() is used immediately after gzopen() or gzdopen() it will
1413 cause buffers to be allocated to allow reading the file to determine if it 1505 cause buffers to be allocated to allow reading the file to determine if it
1414 is a gzip file. Therefore if gzbuffer() is used, it should be called before 1506 is a gzip file. Therefore if gzbuffer() is used, it should be called before
1415 gzdirect(). 1507 gzdirect().
1508
1509 When writing, gzdirect() returns true (1) if transparent writing was
1510 requested ("wT" for the gzopen() mode), or false (0) otherwise. (Note:
1511 gzdirect() is not needed when writing. Transparent writing must be
1512 explicitly requested, so the application already knows the answer. When
1513 linking statically, using gzdirect() will include all of the zlib code for
1514 gzip file reading and decompression, which may not be desired.)
1416 */ 1515 */
1417 1516
1418 ZEXTERN int ZEXPORT gzclose OF((gzFile file)); 1517 ZEXTERN int ZEXPORT gzclose OF((gzFile file));
1419 /* 1518 /*
1420 Flushes all pending output if necessary, closes the compressed file and 1519 Flushes all pending output if necessary, closes the compressed file and
1421 deallocates the (de)compression state. Note that once file is closed, you 1520 deallocates the (de)compression state. Note that once file is closed, you
1422 cannot call gzerror with file, since its structures have been deallocated. 1521 cannot call gzerror with file, since its structures have been deallocated.
1423 gzclose must not be called more than once on the same file, just as free 1522 gzclose must not be called more than once on the same file, just as free
1424 must not be called more than once on the same allocation. 1523 must not be called more than once on the same allocation.
1425 1524
1426 gzclose will return Z_STREAM_ERROR if file is not valid, Z_ERRNO on a 1525 gzclose will return Z_STREAM_ERROR if file is not valid, Z_ERRNO on a
1427 file operation error, or Z_OK on success. 1526 file operation error, Z_MEM_ERROR if out of memory, Z_BUF_ERROR if the
1527 last read ended in the middle of a gzip stream, or Z_OK on success.
1428 */ 1528 */
1429 1529
1430 ZEXTERN int ZEXPORT gzclose_r OF((gzFile file)); 1530 ZEXTERN int ZEXPORT gzclose_r OF((gzFile file));
1431 ZEXTERN int ZEXPORT gzclose_w OF((gzFile file)); 1531 ZEXTERN int ZEXPORT gzclose_w OF((gzFile file));
1432 /* 1532 /*
1433 Same as gzclose(), but gzclose_r() is only for use when reading, and 1533 Same as gzclose(), but gzclose_r() is only for use when reading, and
1434 gzclose_w() is only for use when writing or appending. The advantage to 1534 gzclose_w() is only for use when writing or appending. The advantage to
1435 using these instead of gzclose() is that they avoid linking in zlib 1535 using these instead of gzclose() is that they avoid linking in zlib
1436 compression or decompression code that is not used when only reading or only 1536 compression or decompression code that is not used when only reading or only
1437 writing respectively. If gzclose() is used, then both compression and 1537 writing respectively. If gzclose() is used, then both compression and
(...skipping 17 matching lines...) Expand all
1455 functions above that do not distinguish those cases in their return values. 1555 functions above that do not distinguish those cases in their return values.
1456 */ 1556 */
1457 1557
1458 ZEXTERN void ZEXPORT gzclearerr OF((gzFile file)); 1558 ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));
1459 /* 1559 /*
1460 Clears the error and end-of-file flags for file. This is analogous to the 1560 Clears the error and end-of-file flags for file. This is analogous to the
1461 clearerr() function in stdio. This is useful for continuing to read a gzip 1561 clearerr() function in stdio. This is useful for continuing to read a gzip
1462 file that is being written concurrently. 1562 file that is being written concurrently.
1463 */ 1563 */
1464 1564
1565 #endif /* !Z_SOLO */
1465 1566
1466 /* checksum functions */ 1567 /* checksum functions */
1467 1568
1468 /* 1569 /*
1469 These functions are not related to compression but are exported 1570 These functions are not related to compression but are exported
1470 anyway because they might be useful in applications using the compression 1571 anyway because they might be useful in applications using the compression
1471 library. 1572 library.
1472 */ 1573 */
1473 1574
1474 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); 1575 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
(...skipping 15 matching lines...) Expand all
1490 if (adler != original_adler) error(); 1591 if (adler != original_adler) error();
1491 */ 1592 */
1492 1593
1493 /* 1594 /*
1494 ZEXTERN uLong ZEXPORT adler32_combine OF((uLong adler1, uLong adler2, 1595 ZEXTERN uLong ZEXPORT adler32_combine OF((uLong adler1, uLong adler2,
1495 z_off_t len2)); 1596 z_off_t len2));
1496 1597
1497 Combine two Adler-32 checksums into one. For two sequences of bytes, seq1 1598 Combine two Adler-32 checksums into one. For two sequences of bytes, seq1
1498 and seq2 with lengths len1 and len2, Adler-32 checksums were calculated for 1599 and seq2 with lengths len1 and len2, Adler-32 checksums were calculated for
1499 each, adler1 and adler2. adler32_combine() returns the Adler-32 checksum of 1600 each, adler1 and adler2. adler32_combine() returns the Adler-32 checksum of
1500 seq1 and seq2 concatenated, requiring only adler1, adler2, and len2. 1601 seq1 and seq2 concatenated, requiring only adler1, adler2, and len2. Note
1602 that the z_off_t type (like off_t) is a signed integer. If len2 is
1603 negative, the result has no meaning or utility.
1501 */ 1604 */
1502 1605
1503 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); 1606 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
1504 /* 1607 /*
1505 Update a running CRC-32 with the bytes buf[0..len-1] and return the 1608 Update a running CRC-32 with the bytes buf[0..len-1] and return the
1506 updated CRC-32. If buf is Z_NULL, this function returns the required 1609 updated CRC-32. If buf is Z_NULL, this function returns the required
1507 initial value for the for the crc. Pre- and post-conditioning (one's 1610 initial value for the crc. Pre- and post-conditioning (one's complement) is
1508 complement) is performed within this function so it shouldn't be done by the 1611 performed within this function so it shouldn't be done by the application.
1509 application.
1510 1612
1511 Usage example: 1613 Usage example:
1512 1614
1513 uLong crc = crc32(0L, Z_NULL, 0); 1615 uLong crc = crc32(0L, Z_NULL, 0);
1514 1616
1515 while (read_buffer(buffer, length) != EOF) { 1617 while (read_buffer(buffer, length) != EOF) {
1516 crc = crc32(crc, buffer, length); 1618 crc = crc32(crc, buffer, length);
1517 } 1619 }
1518 if (crc != original_crc) error(); 1620 if (crc != original_crc) error();
1519 */ 1621 */
(...skipping 22 matching lines...) Expand all
1542 int windowBits, int memLevel, 1644 int windowBits, int memLevel,
1543 int strategy, const char *version, 1645 int strategy, const char *version,
1544 int stream_size)); 1646 int stream_size));
1545 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits, 1647 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1546 const char *version, int stream_size)); 1648 const char *version, int stream_size));
1547 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, 1649 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1548 unsigned char FAR *window, 1650 unsigned char FAR *window,
1549 const char *version, 1651 const char *version,
1550 int stream_size)); 1652 int stream_size));
1551 #define deflateInit(strm, level) \ 1653 #define deflateInit(strm, level) \
1552 deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream)) 1654 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream))
1553 #define inflateInit(strm) \ 1655 #define inflateInit(strm) \
1554 inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream)) 1656 inflateInit_((strm), ZLIB_VERSION, (int)sizeof(z_stream))
1555 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ 1657 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1556 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\ 1658 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1557 (strategy), ZLIB_VERSION, sizeof(z_stream)) 1659 (strategy), ZLIB_VERSION, (int)sizeof(z_stream))
1558 #define inflateInit2(strm, windowBits) \ 1660 #define inflateInit2(strm, windowBits) \
1559 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream)) 1661 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1662 (int)sizeof(z_stream))
1560 #define inflateBackInit(strm, windowBits, window) \ 1663 #define inflateBackInit(strm, windowBits, window) \
1561 inflateBackInit_((strm), (windowBits), (window), \ 1664 inflateBackInit_((strm), (windowBits), (window), \
1562 ZLIB_VERSION, sizeof(z_stream)) 1665 ZLIB_VERSION, (int)sizeof(z_stream))
1666
1667 #ifndef Z_SOLO
1668
1669 /* gzgetc() macro and its supporting function and exposed data structure. Note
1670 * that the real internal state is much larger than the exposed structure.
1671 * This abbreviated structure exposes just enough for the gzgetc() macro. The
1672 * user should not mess with these exposed elements, since their names or
1673 * behavior could change in the future, perhaps even capriciously. They can
1674 * only be used by the gzgetc() macro. You have been warned.
1675 */
1676 struct gzFile_s {
1677 unsigned have;
1678 unsigned char *next;
1679 z_off64_t pos;
1680 };
1681 ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file)); /* backward compatibility */
1682 #ifdef Z_PREFIX_SET
1683 # undef z_gzgetc
1684 # define z_gzgetc(g) \
1685 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))
1686 #else
1687 # ifdef MOZZCONF_H
1688 # undef gzgetc
1689 # define gzgetc(g) \
1690 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : MOZ_Z_gzgetc( g))
1691 # else
1692 # define gzgetc(g) \
1693 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))
1694 # endif
1695 #endif
1563 1696
1564 /* provide 64-bit offset functions if _LARGEFILE64_SOURCE defined, and/or 1697 /* provide 64-bit offset functions if _LARGEFILE64_SOURCE defined, and/or
1565 * change the regular functions to 64 bits if _FILE_OFFSET_BITS is 64 (if 1698 * change the regular functions to 64 bits if _FILE_OFFSET_BITS is 64 (if
1566 * both are true, the application gets the *64 functions, and the regular 1699 * both are true, the application gets the *64 functions, and the regular
1567 * functions are changed to 64 bits) -- in case these are set on systems 1700 * functions are changed to 64 bits) -- in case these are set on systems
1568 * without large file support, _LFS64_LARGEFILE must also be true 1701 * without large file support, _LFS64_LARGEFILE must also be true
1569 */ 1702 */
1570 #if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0 1703 #ifdef Z_LARGE64
1571 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); 1704 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1572 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int)); 1705 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1573 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile)); 1706 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1574 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile)); 1707 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1575 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t)); 1708 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
1576 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t)); 1709 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
1577 #endif 1710 #endif
1578 1711
1579 #if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS-0 == 64 && _LFS64_LARGEFILE-0 1712 #if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS-0 == 64 && _LFS64_LARGEFILE-0
1580 # ifdef gzopen 1713 # ifdef gzopen
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
1618 # endif 1751 # endif
1619 #else 1752 #else
1620 ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *)); 1753 ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *));
1621 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int)); 1754 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int));
1622 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile)); 1755 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile));
1623 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile)); 1756 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile));
1624 ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t)); 1757 ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t));
1625 ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t)); 1758 ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t));
1626 #endif 1759 #endif
1627 1760
1761 #else /* Z_SOLO */
1762
1763 ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t));
1764 ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t));
1765
1766 #endif /* !Z_SOLO */
1767
1628 /* hack for buggy compilers */ 1768 /* hack for buggy compilers */
1629 #if !defined(ZUTIL_H) && !defined(NO_DUMMY_DECL) 1769 #if !defined(ZUTIL_H) && !defined(NO_DUMMY_DECL)
1630 struct internal_state {int dummy;}; 1770 struct internal_state {int dummy;};
1631 #endif 1771 #endif
1632 1772
1633 /* undocumented functions */ 1773 /* undocumented functions */
1634 ZEXTERN const char * ZEXPORT zError OF((int)); 1774 ZEXTERN const char * ZEXPORT zError OF((int));
1635 ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp)); 1775 ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp));
1636 ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void)); 1776 ZEXTERN const z_crc_t FAR * ZEXPORT get_crc_table OF((void));
1637 ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int)); 1777 ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int));
1778 ZEXTERN int ZEXPORT inflateResetKeep OF((z_streamp));
1779 ZEXTERN int ZEXPORT deflateResetKeep OF((z_streamp));
1780 #if defined(_WIN32) && !defined(Z_SOLO)
1781 ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
1782 const char *mode));
1783 #endif
1784 #if defined(STDC) || defined(Z_HAVE_STDARG_H)
1785 # ifndef Z_SOLO
1786 ZEXTERN int ZEXPORTVA gzvprintf Z_ARG((gzFile file,
1787 const char *format,
1788 va_list va));
1789 # endif
1790 #endif
1638 1791
1639 #ifdef __cplusplus 1792 #ifdef __cplusplus
1640 } 1793 }
1641 #endif 1794 #endif
1642 1795
1643 #endif /* ZLIB_H */ 1796 #endif /* ZLIB_H */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698