ReactOS 0.4.15-dev-7846-g8ba6c66
deflate.c File Reference
#include "deflate.h"
Include dependency graph for deflate.c:

Go to the source code of this file.

Classes

struct  config_s
 

Macros

#define NIL   0
 
#define TOO_FAR   4096
 
#define RANK(f)   (((f) * 2) - ((f) > 4 ? 9 : 0))
 
#define UPDATE_HASH(s, h, c)   (h = (((h) << s->hash_shift) ^ (c)) & s->hash_mask)
 
#define INSERT_STRING(s, str, match_head)
 
#define CLEAR_HASH(s)
 
#define HCRC_UPDATE(beg)
 
#define check_match(s, start, match, length)
 
#define FLUSH_BLOCK_ONLY(s, last)
 
#define FLUSH_BLOCK(s, last)
 
#define MAX_STORED   65535
 
#define MIN(a, b)   ((a) > (b) ? (b) : (a))
 

Typedefs

typedef block_state compress_func OF((deflate_state *s, int flush))
 
typedef struct config_s config
 

Enumerations

enum  block_state { need_more , block_done , finish_started , finish_done }
 

Functions

int deflateStateCheck OF ((z_streamp strm))
 
void slide_hash OF ((deflate_state *s))
 
void putShortMSB OF ((deflate_state *s, uInt b))
 
unsigned read_buf OF ((z_streamp strm, Bytef *buf, unsigned size))
 
uInt longest_match OF ((deflate_state *s, IPos cur_match))
 
void slide_hash (deflate_state *s)
 
int ZEXPORT deflateInit_ (z_streamp strm, int level, const char *version, int stream_size)
 
int ZEXPORT deflateInit2_ (z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size)
 
int deflateStateCheck (z_streamp strm)
 
int ZEXPORT deflateSetDictionary (z_streamp strm, const Bytef *dictionary, uInt dictLength)
 
int ZEXPORT deflateGetDictionary (z_streamp strm, Bytef *dictionary, uInt *dictLength)
 
int ZEXPORT deflateResetKeep (z_streamp strm)
 
int ZEXPORT deflateReset (z_streamp strm)
 
int ZEXPORT deflateSetHeader (z_streamp strm, gz_headerp head)
 
int ZEXPORT deflatePending (z_streamp strm, unsigned *pending, int *bits)
 
int ZEXPORT deflatePrime (z_streamp strm, int bits, int value)
 
int ZEXPORT deflateParams (z_streamp strm, int level, int strategy)
 
int ZEXPORT deflateTune (z_streamp strm, int good_length, int max_lazy, int nice_length, int max_chain)
 
uLong ZEXPORT deflateBound (z_streamp strm, uLong sourceLen)
 
void putShortMSB (deflate_state *s, uInt b)
 
void flush_pending (z_streamp strm)
 
int ZEXPORT deflate (z_streamp strm, int flush)
 
int ZEXPORT deflateEnd (z_streamp strm)
 
int ZEXPORT deflateCopy (z_streamp dest, z_streamp source)
 
unsigned read_buf (z_streamp strm, Bytef *buf, unsigned size)
 
void lm_init (deflate_state *s)
 
uInt longest_match (deflate_state *s, IPos cur_match)
 
void fill_window (deflate_state *s)
 
block_state deflate_stored (deflate_state *s, int flush)
 
block_state deflate_fast (deflate_state *s, int flush)
 
block_state deflate_slow (deflate_state *s, int flush)
 
block_state deflate_rle (deflate_state *s, int flush)
 
block_state deflate_huff (deflate_state *s, int flush)
 

Variables

const char deflate_copyright []
 
const config configuration_table [10]
 

Macro Definition Documentation

◆ check_match

#define check_match (   s,
  start,
  match,
  length 
)

Definition at line 1514 of file deflate.c.

◆ CLEAR_HASH

#define CLEAR_HASH (   s)
Value:
do { \
s->head[s->hash_size - 1] = NIL; \
zmemzero((Bytef *)s->head, \
(unsigned)(s->hash_size - 1)*sizeof(*s->head)); \
} while (0)
#define NIL
Definition: deflate.c:101
Byte FAR Bytef
Definition: zlib.h:41
GLdouble s
Definition: gl.h:2039

Definition at line 186 of file deflate.c.

◆ FLUSH_BLOCK

#define FLUSH_BLOCK (   s,
  last 
)
Value:
{ \
FLUSH_BLOCK_ONLY(s, last); \
if (s->strm->avail_out == 0) return (last) ? finish_started : need_more; \
}
return
Definition: dirsup.c:529
@ finish_started
Definition: deflate.c:69
@ need_more
Definition: deflate.c:67
static UINT UINT last
Definition: font.c:45

Definition at line 1664 of file deflate.c.

◆ FLUSH_BLOCK_ONLY

#define FLUSH_BLOCK_ONLY (   s,
  last 
)
Value:
{ \
_tr_flush_block(s, (s->block_start >= 0L ? \
(charf *)&s->window[(unsigned)s->block_start] : \
(charf *)Z_NULL), \
(ulg)((long)s->strstart - s->block_start), \
(last)); \
s->block_start = s->strstart; \
flush_pending(s->strm); \
Tracev((stderr,"[FLUSH]")); \
}
char FAR charf
Definition: zlib.h:44
unsigned long ulg
Definition: zlib.h:51
#define Z_NULL
Definition: zlib.h:149
#define stderr
Definition: stdio.h:100
#define L(x)
Definition: ntvdm.h:50

Definition at line 1652 of file deflate.c.

◆ HCRC_UPDATE

#define HCRC_UPDATE (   beg)
Value:
do { \
if (s->gzhead->hcrc && s->pending > (beg)) \
strm->adler = crc32(strm->adler, s->pending_buf + (beg), \
s->pending - (beg)); \
} while (0)
#define crc32(crc, buf, len)
Definition: inflate.c:1081

Definition at line 807 of file deflate.c.

◆ INSERT_STRING

#define INSERT_STRING (   s,
  str,
  match_head 
)
Value:
(UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \
s->head[s->ins_h] = (Pos)(str))
#define UPDATE_HASH(s, h, c)
Definition: deflate.c:157
ush Pos
Definition: deflate.h:92
#define MIN_MATCH
Definition: zutil.h:64
const WCHAR * str

Definition at line 176 of file deflate.c.

◆ MAX_STORED

#define MAX_STORED   65535

Definition at line 1670 of file deflate.c.

◆ MIN

#define MIN (   a,
  b 
)    ((a) > (b) ? (b) : (a))

Definition at line 1673 of file deflate.c.

◆ NIL

#define NIL   0

Definition at line 101 of file deflate.c.

◆ RANK

#define RANK (   f)    (((f) * 2) - ((f) > 4 ? 9 : 0))

Definition at line 149 of file deflate.c.

◆ TOO_FAR

#define TOO_FAR   4096

Definition at line 105 of file deflate.c.

◆ UPDATE_HASH

#define UPDATE_HASH (   s,
  h,
  c 
)    (h = (((h) << s->hash_shift) ^ (c)) & s->hash_mask)

Definition at line 157 of file deflate.c.

Typedef Documentation

◆ config

◆ OF

typedef block_state compress_func OF((deflate_state *s, int flush))

Definition at line 73 of file deflate.c.

Enumeration Type Documentation

◆ block_state

Enumerator
need_more 
block_done 
finish_started 
finish_done 

Definition at line 66 of file deflate.c.

66 {
67 need_more, /* block not completed, need more input or more output */
68 block_done, /* block flush performed */
69 finish_started, /* finish started, need only more output at next deflate */
70 finish_done /* finish done, accept no more input or output */
block_state
Definition: deflate.c:66
@ block_done
Definition: deflate.c:68
@ finish_done
Definition: deflate.c:70

Function Documentation

◆ deflate()

int ZEXPORT deflate ( z_streamp  strm,
int  flush 
)

Definition at line 815 of file deflate.c.

818{
819 int old_flush; /* value of flush param for previous deflate call */
821
822 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) {
823 return Z_STREAM_ERROR;
824 }
825 s = strm->state;
826
827 if (strm->next_out == Z_NULL ||
828 (strm->avail_in != 0 && strm->next_in == Z_NULL) ||
829 (s->status == FINISH_STATE && flush != Z_FINISH)) {
831 }
832 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
833
834 old_flush = s->last_flush;
835 s->last_flush = flush;
836
837 /* Flush as much pending output as possible */
838 if (s->pending != 0) {
839 flush_pending(strm);
840 if (strm->avail_out == 0) {
841 /* Since avail_out is 0, deflate will be called again with
842 * more output space, but possibly with both pending and
843 * avail_in equal to zero. There won't be anything to do,
844 * but this is not an error situation so make sure we
845 * return OK instead of BUF_ERROR at next call of deflate:
846 */
847 s->last_flush = -1;
848 return Z_OK;
849 }
850
851 /* Make sure there is something to do and avoid duplicate consecutive
852 * flushes. For repeated and useless calls with Z_FINISH, we keep
853 * returning Z_STREAM_END instead of Z_BUF_ERROR.
854 */
855 } else if (strm->avail_in == 0 && RANK(flush) <= RANK(old_flush) &&
856 flush != Z_FINISH) {
857 ERR_RETURN(strm, Z_BUF_ERROR);
858 }
859
860 /* User must not provide more input after the first FINISH: */
861 if (s->status == FINISH_STATE && strm->avail_in != 0) {
862 ERR_RETURN(strm, Z_BUF_ERROR);
863 }
864
865 /* Write the header */
866 if (s->status == INIT_STATE && s->wrap == 0)
867 s->status = BUSY_STATE;
868 if (s->status == INIT_STATE) {
869 /* zlib header */
870 uInt header = (Z_DEFLATED + ((s->w_bits - 8) << 4)) << 8;
871 uInt level_flags;
872
873 if (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2)
874 level_flags = 0;
875 else if (s->level < 6)
876 level_flags = 1;
877 else if (s->level == 6)
878 level_flags = 2;
879 else
880 level_flags = 3;
881 header |= (level_flags << 6);
882 if (s->strstart != 0) header |= PRESET_DICT;
883 header += 31 - (header % 31);
884
886
887 /* Save the adler32 of the preset dictionary: */
888 if (s->strstart != 0) {
889 putShortMSB(s, (uInt)(strm->adler >> 16));
890 putShortMSB(s, (uInt)(strm->adler & 0xffff));
891 }
892 strm->adler = adler32(0L, Z_NULL, 0);
893 s->status = BUSY_STATE;
894
895 /* Compression must start with an empty pending buffer */
896 flush_pending(strm);
897 if (s->pending != 0) {
898 s->last_flush = -1;
899 return Z_OK;
900 }
901 }
902#ifdef GZIP
903 if (s->status == GZIP_STATE) {
904 /* gzip header */
905 strm->adler = crc32(0L, Z_NULL, 0);
906 put_byte(s, 31);
907 put_byte(s, 139);
908 put_byte(s, 8);
909 if (s->gzhead == Z_NULL) {
910 put_byte(s, 0);
911 put_byte(s, 0);
912 put_byte(s, 0);
913 put_byte(s, 0);
914 put_byte(s, 0);
915 put_byte(s, s->level == 9 ? 2 :
916 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
917 4 : 0));
919 s->status = BUSY_STATE;
920
921 /* Compression must start with an empty pending buffer */
922 flush_pending(strm);
923 if (s->pending != 0) {
924 s->last_flush = -1;
925 return Z_OK;
926 }
927 }
928 else {
929 put_byte(s, (s->gzhead->text ? 1 : 0) +
930 (s->gzhead->hcrc ? 2 : 0) +
931 (s->gzhead->extra == Z_NULL ? 0 : 4) +
932 (s->gzhead->name == Z_NULL ? 0 : 8) +
933 (s->gzhead->comment == Z_NULL ? 0 : 16)
934 );
935 put_byte(s, (Byte)(s->gzhead->time & 0xff));
936 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
937 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
938 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
939 put_byte(s, s->level == 9 ? 2 :
940 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
941 4 : 0));
942 put_byte(s, s->gzhead->os & 0xff);
943 if (s->gzhead->extra != Z_NULL) {
944 put_byte(s, s->gzhead->extra_len & 0xff);
945 put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
946 }
947 if (s->gzhead->hcrc)
948 strm->adler = crc32(strm->adler, s->pending_buf,
949 s->pending);
950 s->gzindex = 0;
951 s->status = EXTRA_STATE;
952 }
953 }
954 if (s->status == EXTRA_STATE) {
955 if (s->gzhead->extra != Z_NULL) {
956 ulg beg = s->pending; /* start of bytes to update crc */
957 uInt left = (s->gzhead->extra_len & 0xffff) - s->gzindex;
958 while (s->pending + left > s->pending_buf_size) {
959 uInt copy = s->pending_buf_size - s->pending;
960 zmemcpy(s->pending_buf + s->pending,
961 s->gzhead->extra + s->gzindex, copy);
962 s->pending = s->pending_buf_size;
963 HCRC_UPDATE(beg);
964 s->gzindex += copy;
965 flush_pending(strm);
966 if (s->pending != 0) {
967 s->last_flush = -1;
968 return Z_OK;
969 }
970 beg = 0;
971 left -= copy;
972 }
973 zmemcpy(s->pending_buf + s->pending,
974 s->gzhead->extra + s->gzindex, left);
975 s->pending += left;
976 HCRC_UPDATE(beg);
977 s->gzindex = 0;
978 }
979 s->status = NAME_STATE;
980 }
981 if (s->status == NAME_STATE) {
982 if (s->gzhead->name != Z_NULL) {
983 ulg beg = s->pending; /* start of bytes to update crc */
984 int val;
985 do {
986 if (s->pending == s->pending_buf_size) {
987 HCRC_UPDATE(beg);
988 flush_pending(strm);
989 if (s->pending != 0) {
990 s->last_flush = -1;
991 return Z_OK;
992 }
993 beg = 0;
994 }
995 val = s->gzhead->name[s->gzindex++];
996 put_byte(s, val);
997 } while (val != 0);
998 HCRC_UPDATE(beg);
999 s->gzindex = 0;
1000 }
1001 s->status = COMMENT_STATE;
1002 }
1003 if (s->status == COMMENT_STATE) {
1004 if (s->gzhead->comment != Z_NULL) {
1005 ulg beg = s->pending; /* start of bytes to update crc */
1006 int val;
1007 do {
1008 if (s->pending == s->pending_buf_size) {
1009 HCRC_UPDATE(beg);
1010 flush_pending(strm);
1011 if (s->pending != 0) {
1012 s->last_flush = -1;
1013 return Z_OK;
1014 }
1015 beg = 0;
1016 }
1017 val = s->gzhead->comment[s->gzindex++];
1018 put_byte(s, val);
1019 } while (val != 0);
1020 HCRC_UPDATE(beg);
1021 }
1022 s->status = HCRC_STATE;
1023 }
1024 if (s->status == HCRC_STATE) {
1025 if (s->gzhead->hcrc) {
1026 if (s->pending + 2 > s->pending_buf_size) {
1027 flush_pending(strm);
1028 if (s->pending != 0) {
1029 s->last_flush = -1;
1030 return Z_OK;
1031 }
1032 }
1033 put_byte(s, (Byte)(strm->adler & 0xff));
1034 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1035 strm->adler = crc32(0L, Z_NULL, 0);
1036 }
1037 s->status = BUSY_STATE;
1038
1039 /* Compression must start with an empty pending buffer */
1040 flush_pending(strm);
1041 if (s->pending != 0) {
1042 s->last_flush = -1;
1043 return Z_OK;
1044 }
1045 }
1046#endif
1047
1048 /* Start a new block or continue the current one.
1049 */
1050 if (strm->avail_in != 0 || s->lookahead != 0 ||
1051 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
1052 block_state bstate;
1053
1054 bstate = s->level == 0 ? deflate_stored(s, flush) :
1055 s->strategy == Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :
1056 s->strategy == Z_RLE ? deflate_rle(s, flush) :
1058
1059 if (bstate == finish_started || bstate == finish_done) {
1060 s->status = FINISH_STATE;
1061 }
1062 if (bstate == need_more || bstate == finish_started) {
1063 if (strm->avail_out == 0) {
1064 s->last_flush = -1; /* avoid BUF_ERROR next call, see above */
1065 }
1066 return Z_OK;
1067 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
1068 * of deflate should use the same flush parameter to make sure
1069 * that the flush is complete. So we don't have to output an
1070 * empty block here, this will be done at next call. This also
1071 * ensures that for a very small output buffer, we emit at most
1072 * one empty block.
1073 */
1074 }
1075 if (bstate == block_done) {
1076 if (flush == Z_PARTIAL_FLUSH) {
1077 _tr_align(s);
1078 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
1079 _tr_stored_block(s, (char*)0, 0L, 0);
1080 /* For a full flush, this empty block will be recognized
1081 * as a special marker by inflate_sync().
1082 */
1083 if (flush == Z_FULL_FLUSH) {
1084 CLEAR_HASH(s); /* forget history */
1085 if (s->lookahead == 0) {
1086 s->strstart = 0;
1087 s->block_start = 0L;
1088 s->insert = 0;
1089 }
1090 }
1091 }
1092 flush_pending(strm);
1093 if (strm->avail_out == 0) {
1094 s->last_flush = -1; /* avoid BUF_ERROR at next call, see above */
1095 return Z_OK;
1096 }
1097 }
1098 }
1099
1100 if (flush != Z_FINISH) return Z_OK;
1101 if (s->wrap <= 0) return Z_STREAM_END;
1102
1103 /* Write the trailer */
1104#ifdef GZIP
1105 if (s->wrap == 2) {
1106 put_byte(s, (Byte)(strm->adler & 0xff));
1107 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1108 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
1109 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
1110 put_byte(s, (Byte)(strm->total_in & 0xff));
1111 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
1112 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
1113 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1114 }
1115 else
1116#endif
1117 {
1118 putShortMSB(s, (uInt)(strm->adler >> 16));
1119 putShortMSB(s, (uInt)(strm->adler & 0xffff));
1120 }
1121 flush_pending(strm);
1122 /* If avail_out is zero, the application will call deflate again
1123 * to flush the rest.
1124 */
1125 if (s->wrap > 0) s->wrap = -s->wrap; /* write the trailer only once! */
1126 return s->pending != 0 ? Z_OK : Z_STREAM_END;
1127}
INT copy(TCHAR source[MAX_PATH], TCHAR dest[MAX_PATH], INT append, DWORD lpdwFlags, BOOL bTouch)
Definition: copy.c:51
while(CdLookupNextInitialFileDirent(IrpContext, Fcb, FileContext))
const config configuration_table[10]
Definition: deflate.c:128
#define HCRC_UPDATE(beg)
Definition: deflate.c:807
block_state deflate_stored(deflate_state *s, int flush)
Definition: deflate.c:1690
void putShortMSB(deflate_state *s, uInt b)
Definition: deflate.c:768
void flush_pending(z_streamp strm)
Definition: deflate.c:782
block_state deflate_huff(deflate_state *s, int flush)
Definition: deflate.c:2184
int deflateStateCheck(z_streamp strm)
Definition: deflate.c:389
#define RANK(f)
Definition: deflate.c:149
#define CLEAR_HASH(s)
Definition: deflate.c:186
block_state deflate_rle(deflate_state *s, int flush)
Definition: deflate.c:2110
#define FINISH_STATE
Definition: deflate.h:63
#define COMMENT_STATE
Definition: deflate.h:60
#define HCRC_STATE
Definition: deflate.h:61
#define GZIP_STATE
Definition: deflate.h:56
#define BUSY_STATE
Definition: deflate.h:62
#define put_byte(s, c)
Definition: deflate.h:276
#define INIT_STATE
Definition: deflate.h:54
#define NAME_STATE
Definition: deflate.h:59
#define EXTRA_STATE
Definition: deflate.h:58
#define zmemcpy
Definition: inflate.c:38
static uLong adler32(uLong adler, const Bytef *buf, uInt len)
Definition: inflate.c:72
#define Z_HUFFMAN_ONLY
Definition: zlib.h:134
#define Z_DEFLATED
Definition: zlib.h:146
#define Z_BUF_ERROR
Definition: zlib.h:121
#define Z_BLOCK
Definition: zlib.h:110
#define Z_STREAM_END
Definition: zlib.h:115
#define Z_FINISH
Definition: zlib.h:109
unsigned int uInt
Definition: zlib.h:38
#define Z_OK
Definition: zlib.h:114
#define Z_STREAM_ERROR
Definition: zlib.h:118
#define Z_NO_FLUSH
Definition: zlib.h:105
#define Z_PARTIAL_FLUSH
Definition: zlib.h:106
unsigned char Byte
Definition: zlib.h:37
#define Z_FULL_FLUSH
Definition: zlib.h:108
#define Z_RLE
Definition: zlib.h:135
#define ERR_RETURN(strm, err)
Definition: zutil.h:41
#define PRESET_DICT
Definition: zutil.h:68
#define OS_CODE
Definition: zutil.h:139
GLint level
Definition: gl.h:1546
GLenum func
Definition: glext.h:6028
GLint left
Definition: glext.h:7726
GLuint GLfloat * val
Definition: glext.h:7180
int flush
Definition: zlib.h:309
char * name
Definition: compiler.c:66
void ZLIB_INTERNAL _tr_stored_block(deflate_state *s, charf *buf, ulg stored_len, int last)
Definition: trees.c:863
void ZLIB_INTERNAL _tr_align(deflate_state *s)
Definition: trees.c:897

Referenced by CMSZipCodec::Compress(), compress2(), deflateParams(), gz_comp(), zipCloseFileInZipRaw64(), zipWriteInFileInZip(), and zlib_compress().

◆ deflate_fast()

block_state deflate_fast ( deflate_state s,
int  flush 
)

Definition at line 1877 of file deflate.c.

1880{
1881 IPos hash_head; /* head of the hash chain */
1882 int bflush; /* set if current block must be flushed */
1883
1884 for (;;) {
1885 /* Make sure that we always have enough lookahead, except
1886 * at the end of the input file. We need MAX_MATCH bytes
1887 * for the next match, plus MIN_MATCH bytes to insert the
1888 * string following the next match.
1889 */
1890 if (s->lookahead < MIN_LOOKAHEAD) {
1891 fill_window(s);
1892 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1893 return need_more;
1894 }
1895 if (s->lookahead == 0) break; /* flush the current block */
1896 }
1897
1898 /* Insert the string window[strstart .. strstart + 2] in the
1899 * dictionary, and set hash_head to the head of the hash chain:
1900 */
1901 hash_head = NIL;
1902 if (s->lookahead >= MIN_MATCH) {
1903 INSERT_STRING(s, s->strstart, hash_head);
1904 }
1905
1906 /* Find the longest match, discarding those <= prev_length.
1907 * At this point we have always match_length < MIN_MATCH
1908 */
1909 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
1910 /* To simplify the code, we prevent matches with the string
1911 * of window index 0 (in particular we have to avoid a match
1912 * of the string with itself at the start of the input file).
1913 */
1914 s->match_length = longest_match (s, hash_head);
1915 /* longest_match() sets match_start */
1916 }
1917 if (s->match_length >= MIN_MATCH) {
1918 check_match(s, s->strstart, s->match_start, s->match_length);
1919
1920 _tr_tally_dist(s, s->strstart - s->match_start,
1921 s->match_length - MIN_MATCH, bflush);
1922
1923 s->lookahead -= s->match_length;
1924
1925 /* Insert new strings in the hash table only if the match length
1926 * is not too large. This saves time but degrades compression.
1927 */
1928#ifndef FASTEST
1929 if (s->match_length <= s->max_insert_length &&
1930 s->lookahead >= MIN_MATCH) {
1931 s->match_length--; /* string at strstart already in table */
1932 do {
1933 s->strstart++;
1934 INSERT_STRING(s, s->strstart, hash_head);
1935 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1936 * always MIN_MATCH bytes ahead.
1937 */
1938 } while (--s->match_length != 0);
1939 s->strstart++;
1940 } else
1941#endif
1942 {
1943 s->strstart += s->match_length;
1944 s->match_length = 0;
1945 s->ins_h = s->window[s->strstart];
1946 UPDATE_HASH(s, s->ins_h, s->window[s->strstart + 1]);
1947#if MIN_MATCH != 3
1948 Call UPDATE_HASH() MIN_MATCH-3 more times
1949#endif
1950 /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
1951 * matter since it will be recomputed at next deflate call.
1952 */
1953 }
1954 } else {
1955 /* No match, output a literal byte */
1956 Tracevv((stderr,"%c", s->window[s->strstart]));
1957 _tr_tally_lit(s, s->window[s->strstart], bflush);
1958 s->lookahead--;
1959 s->strstart++;
1960 }
1961 if (bflush) FLUSH_BLOCK(s, 0);
1962 }
1963 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
1964 if (flush == Z_FINISH) {
1965 FLUSH_BLOCK(s, 1);
1966 return finish_done;
1967 }
1968 if (s->sym_next)
1969 FLUSH_BLOCK(s, 0);
1970 return block_done;
1971}
#define check_match(s, start, match, length)
Definition: deflate.c:1514
#define INSERT_STRING(s, str, match_head)
Definition: deflate.c:176
#define FLUSH_BLOCK(s, last)
Definition: deflate.c:1664
uInt longest_match(deflate_state *s, IPos cur_match)
Definition: deflate.c:1278
void fill_window(deflate_state *s)
Definition: deflate.c:1527
#define MAX_DIST(s)
Definition: deflate.h:284
#define _tr_tally_dist(s, distance, length, flush)
Definition: deflate.h:329
#define MIN_LOOKAHEAD
Definition: deflate.h:279
unsigned IPos
Definition: deflate.h:94
#define _tr_tally_lit(s, c, flush)
Definition: deflate.h:321
#define Tracevv(x)
Definition: inflate.c:44
static const struct encodedFiletime times[]
Definition: encode.c:556

◆ deflate_huff()

block_state deflate_huff ( deflate_state s,
int  flush 
)

Definition at line 2184 of file deflate.c.

2187{
2188 int bflush; /* set if current block must be flushed */
2189
2190 for (;;) {
2191 /* Make sure that we have a literal to write. */
2192 if (s->lookahead == 0) {
2193 fill_window(s);
2194 if (s->lookahead == 0) {
2195 if (flush == Z_NO_FLUSH)
2196 return need_more;
2197 break; /* flush the current block */
2198 }
2199 }
2200
2201 /* Output a literal byte */
2202 s->match_length = 0;
2203 Tracevv((stderr,"%c", s->window[s->strstart]));
2204 _tr_tally_lit(s, s->window[s->strstart], bflush);
2205 s->lookahead--;
2206 s->strstart++;
2207 if (bflush) FLUSH_BLOCK(s, 0);
2208 }
2209 s->insert = 0;
2210 if (flush == Z_FINISH) {
2211 FLUSH_BLOCK(s, 1);
2212 return finish_done;
2213 }
2214 if (s->sym_next)
2215 FLUSH_BLOCK(s, 0);
2216 return block_done;
2217}

Referenced by deflate().

◆ deflate_rle()

block_state deflate_rle ( deflate_state s,
int  flush 
)

Definition at line 2110 of file deflate.c.

2113{
2114 int bflush; /* set if current block must be flushed */
2115 uInt prev; /* byte at distance one to match */
2116 Bytef *scan, *strend; /* scan goes up to strend for length of run */
2117
2118 for (;;) {
2119 /* Make sure that we always have enough lookahead, except
2120 * at the end of the input file. We need MAX_MATCH bytes
2121 * for the longest run, plus one for the unrolled loop.
2122 */
2123 if (s->lookahead <= MAX_MATCH) {
2124 fill_window(s);
2125 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) {
2126 return need_more;
2127 }
2128 if (s->lookahead == 0) break; /* flush the current block */
2129 }
2130
2131 /* See how many times the previous byte repeats */
2132 s->match_length = 0;
2133 if (s->lookahead >= MIN_MATCH && s->strstart > 0) {
2134 scan = s->window + s->strstart - 1;
2135 prev = *scan;
2136 if (prev == *++scan && prev == *++scan && prev == *++scan) {
2137 strend = s->window + s->strstart + MAX_MATCH;
2138 do {
2139 } while (prev == *++scan && prev == *++scan &&
2140 prev == *++scan && prev == *++scan &&
2141 prev == *++scan && prev == *++scan &&
2142 prev == *++scan && prev == *++scan &&
2143 scan < strend);
2144 s->match_length = MAX_MATCH - (uInt)(strend - scan);
2145 if (s->match_length > s->lookahead)
2146 s->match_length = s->lookahead;
2147 }
2148 Assert(scan <= s->window + (uInt)(s->window_size - 1),
2149 "wild scan");
2150 }
2151
2152 /* Emit match if have run of MIN_MATCH or longer, else emit literal */
2153 if (s->match_length >= MIN_MATCH) {
2154 check_match(s, s->strstart, s->strstart - 1, s->match_length);
2155
2156 _tr_tally_dist(s, 1, s->match_length - MIN_MATCH, bflush);
2157
2158 s->lookahead -= s->match_length;
2159 s->strstart += s->match_length;
2160 s->match_length = 0;
2161 } else {
2162 /* No match, output a literal byte */
2163 Tracevv((stderr,"%c", s->window[s->strstart]));
2164 _tr_tally_lit(s, s->window[s->strstart], bflush);
2165 s->lookahead--;
2166 s->strstart++;
2167 }
2168 if (bflush) FLUSH_BLOCK(s, 0);
2169 }
2170 s->insert = 0;
2171 if (flush == Z_FINISH) {
2172 FLUSH_BLOCK(s, 1);
2173 return finish_done;
2174 }
2175 if (s->sym_next)
2176 FLUSH_BLOCK(s, 0);
2177 return block_done;
2178}
#define Assert(cond, msg)
Definition: inflate.c:41
#define MAX_MATCH
Definition: zutil.h:65
static IHTMLWindow2 * window
Definition: events.c:77

Referenced by deflate().

◆ deflate_slow()

block_state deflate_slow ( deflate_state s,
int  flush 
)

Definition at line 1979 of file deflate.c.

1982{
1983 IPos hash_head; /* head of hash chain */
1984 int bflush; /* set if current block must be flushed */
1985
1986 /* Process the input block. */
1987 for (;;) {
1988 /* Make sure that we always have enough lookahead, except
1989 * at the end of the input file. We need MAX_MATCH bytes
1990 * for the next match, plus MIN_MATCH bytes to insert the
1991 * string following the next match.
1992 */
1993 if (s->lookahead < MIN_LOOKAHEAD) {
1994 fill_window(s);
1995 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
1996 return need_more;
1997 }
1998 if (s->lookahead == 0) break; /* flush the current block */
1999 }
2000
2001 /* Insert the string window[strstart .. strstart + 2] in the
2002 * dictionary, and set hash_head to the head of the hash chain:
2003 */
2004 hash_head = NIL;
2005 if (s->lookahead >= MIN_MATCH) {
2006 INSERT_STRING(s, s->strstart, hash_head);
2007 }
2008
2009 /* Find the longest match, discarding those <= prev_length.
2010 */
2011 s->prev_length = s->match_length, s->prev_match = s->match_start;
2012 s->match_length = MIN_MATCH-1;
2013
2014 if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
2015 s->strstart - hash_head <= MAX_DIST(s)) {
2016 /* To simplify the code, we prevent matches with the string
2017 * of window index 0 (in particular we have to avoid a match
2018 * of the string with itself at the start of the input file).
2019 */
2020 s->match_length = longest_match (s, hash_head);
2021 /* longest_match() sets match_start */
2022
2023 if (s->match_length <= 5 && (s->strategy == Z_FILTERED
2024#if TOO_FAR <= 32767
2025 || (s->match_length == MIN_MATCH &&
2026 s->strstart - s->match_start > TOO_FAR)
2027#endif
2028 )) {
2029
2030 /* If prev_match is also MIN_MATCH, match_start is garbage
2031 * but we will ignore the current match anyway.
2032 */
2033 s->match_length = MIN_MATCH-1;
2034 }
2035 }
2036 /* If there was a match at the previous step and the current
2037 * match is not better, output the previous match:
2038 */
2039 if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) {
2040 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
2041 /* Do not insert strings in hash table beyond this. */
2042
2043 check_match(s, s->strstart - 1, s->prev_match, s->prev_length);
2044
2045 _tr_tally_dist(s, s->strstart - 1 - s->prev_match,
2046 s->prev_length - MIN_MATCH, bflush);
2047
2048 /* Insert in hash table all strings up to the end of the match.
2049 * strstart - 1 and strstart are already inserted. If there is not
2050 * enough lookahead, the last two strings are not inserted in
2051 * the hash table.
2052 */
2053 s->lookahead -= s->prev_length - 1;
2054 s->prev_length -= 2;
2055 do {
2056 if (++s->strstart <= max_insert) {
2057 INSERT_STRING(s, s->strstart, hash_head);
2058 }
2059 } while (--s->prev_length != 0);
2060 s->match_available = 0;
2061 s->match_length = MIN_MATCH-1;
2062 s->strstart++;
2063
2064 if (bflush) FLUSH_BLOCK(s, 0);
2065
2066 } else if (s->match_available) {
2067 /* If there was no match at the previous position, output a
2068 * single literal. If there was a match but the current match
2069 * is longer, truncate the previous match to a single literal.
2070 */
2071 Tracevv((stderr,"%c", s->window[s->strstart - 1]));
2072 _tr_tally_lit(s, s->window[s->strstart - 1], bflush);
2073 if (bflush) {
2074 FLUSH_BLOCK_ONLY(s, 0);
2075 }
2076 s->strstart++;
2077 s->lookahead--;
2078 if (s->strm->avail_out == 0) return need_more;
2079 } else {
2080 /* There is no previous match to compare with, wait for
2081 * the next step to decide.
2082 */
2083 s->match_available = 1;
2084 s->strstart++;
2085 s->lookahead--;
2086 }
2087 }
2088 Assert (flush != Z_NO_FLUSH, "no flush?");
2089 if (s->match_available) {
2090 Tracevv((stderr,"%c", s->window[s->strstart - 1]));
2091 _tr_tally_lit(s, s->window[s->strstart - 1], bflush);
2092 s->match_available = 0;
2093 }
2094 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
2095 if (flush == Z_FINISH) {
2096 FLUSH_BLOCK(s, 1);
2097 return finish_done;
2098 }
2099 if (s->sym_next)
2100 FLUSH_BLOCK(s, 0);
2101 return block_done;
2102}
#define FLUSH_BLOCK_ONLY(s, last)
Definition: deflate.c:1652
#define TOO_FAR
Definition: deflate.c:105
#define Z_FILTERED
Definition: zlib.h:133

◆ deflate_stored()

block_state deflate_stored ( deflate_state s,
int  flush 
)

Definition at line 1690 of file deflate.c.

1693{
1694 /* Smallest worthy block size when not flushing or finishing. By default
1695 * this is 32K. This can be as small as 507 bytes for memLevel == 1. For
1696 * large input and output buffers, the stored block size will be larger.
1697 */
1698 unsigned min_block = MIN(s->pending_buf_size - 5, s->w_size);
1699
1700 /* Copy as many min_block or larger stored blocks directly to next_out as
1701 * possible. If flushing, copy the remaining available input to next_out as
1702 * stored blocks, if there is enough space.
1703 */
1704 unsigned len, left, have, last = 0;
1705 unsigned used = s->strm->avail_in;
1706 do {
1707 /* Set len to the maximum size block that we can copy directly with the
1708 * available input data and output space. Set left to how much of that
1709 * would be copied from what's left in the window.
1710 */
1711 len = MAX_STORED; /* maximum deflate stored block length */
1712 have = (s->bi_valid + 42) >> 3; /* number of header bytes */
1713 if (s->strm->avail_out < have) /* need room for header */
1714 break;
1715 /* maximum stored block length that will fit in avail_out: */
1716 have = s->strm->avail_out - have;
1717 left = s->strstart - s->block_start; /* bytes left in window */
1718 if (len > (ulg)left + s->strm->avail_in)
1719 len = left + s->strm->avail_in; /* limit len to the input */
1720 if (len > have)
1721 len = have; /* limit len to the output */
1722
1723 /* If the stored block would be less than min_block in length, or if
1724 * unable to copy all of the available input when flushing, then try
1725 * copying to the window and the pending buffer instead. Also don't
1726 * write an empty block when flushing -- deflate() does that.
1727 */
1728 if (len < min_block && ((len == 0 && flush != Z_FINISH) ||
1729 flush == Z_NO_FLUSH ||
1730 len != left + s->strm->avail_in))
1731 break;
1732
1733 /* Make a dummy stored block in pending to get the header bytes,
1734 * including any pending bits. This also updates the debugging counts.
1735 */
1736 last = flush == Z_FINISH && len == left + s->strm->avail_in ? 1 : 0;
1737 _tr_stored_block(s, (char *)0, 0L, last);
1738
1739 /* Replace the lengths in the dummy stored block with len. */
1740 s->pending_buf[s->pending - 4] = len;
1741 s->pending_buf[s->pending - 3] = len >> 8;
1742 s->pending_buf[s->pending - 2] = ~len;
1743 s->pending_buf[s->pending - 1] = ~len >> 8;
1744
1745 /* Write the stored block header bytes. */
1746 flush_pending(s->strm);
1747
1748#ifdef ZLIB_DEBUG
1749 /* Update debugging counts for the data about to be copied. */
1750 s->compressed_len += len << 3;
1751 s->bits_sent += len << 3;
1752#endif
1753
1754 /* Copy uncompressed bytes from the window to next_out. */
1755 if (left) {
1756 if (left > len)
1757 left = len;
1758 zmemcpy(s->strm->next_out, s->window + s->block_start, left);
1759 s->strm->next_out += left;
1760 s->strm->avail_out -= left;
1761 s->strm->total_out += left;
1762 s->block_start += left;
1763 len -= left;
1764 }
1765
1766 /* Copy uncompressed bytes directly from next_in to next_out, updating
1767 * the check value.
1768 */
1769 if (len) {
1770 read_buf(s->strm, s->strm->next_out, len);
1771 s->strm->next_out += len;
1772 s->strm->avail_out -= len;
1773 s->strm->total_out += len;
1774 }
1775 } while (last == 0);
1776
1777 /* Update the sliding window with the last s->w_size bytes of the copied
1778 * data, or append all of the copied data to the existing window if less
1779 * than s->w_size bytes were copied. Also update the number of bytes to
1780 * insert in the hash tables, in the event that deflateParams() switches to
1781 * a non-zero compression level.
1782 */
1783 used -= s->strm->avail_in; /* number of input bytes directly copied */
1784 if (used) {
1785 /* If any input was used, then no unused input remains in the window,
1786 * therefore s->block_start == s->strstart.
1787 */
1788 if (used >= s->w_size) { /* supplant the previous history */
1789 s->matches = 2; /* clear hash */
1790 zmemcpy(s->window, s->strm->next_in - s->w_size, s->w_size);
1791 s->strstart = s->w_size;
1792 s->insert = s->strstart;
1793 }
1794 else {
1795 if (s->window_size - s->strstart <= used) {
1796 /* Slide the window down. */
1797 s->strstart -= s->w_size;
1798 zmemcpy(s->window, s->window + s->w_size, s->strstart);
1799 if (s->matches < 2)
1800 s->matches++; /* add a pending slide_hash() */
1801 if (s->insert > s->strstart)
1802 s->insert = s->strstart;
1803 }
1804 zmemcpy(s->window + s->strstart, s->strm->next_in - used, used);
1805 s->strstart += used;
1806 s->insert += MIN(used, s->w_size - s->insert);
1807 }
1808 s->block_start = s->strstart;
1809 }
1810 if (s->high_water < s->strstart)
1811 s->high_water = s->strstart;
1812
1813 /* If the last block was written to next_out, then done. */
1814 if (last)
1815 return finish_done;
1816
1817 /* If flushing and all input has been consumed, then done. */
1818 if (flush != Z_NO_FLUSH && flush != Z_FINISH &&
1819 s->strm->avail_in == 0 && (long)s->strstart == s->block_start)
1820 return block_done;
1821
1822 /* Fill the window with any remaining input. */
1823 have = s->window_size - s->strstart;
1824 if (s->strm->avail_in > have && s->block_start >= (long)s->w_size) {
1825 /* Slide the window down. */
1826 s->block_start -= s->w_size;
1827 s->strstart -= s->w_size;
1828 zmemcpy(s->window, s->window + s->w_size, s->strstart);
1829 if (s->matches < 2)
1830 s->matches++; /* add a pending slide_hash() */
1831 have += s->w_size; /* more space now */
1832 if (s->insert > s->strstart)
1833 s->insert = s->strstart;
1834 }
1835 if (have > s->strm->avail_in)
1836 have = s->strm->avail_in;
1837 if (have) {
1838 read_buf(s->strm, s->window + s->strstart, have);
1839 s->strstart += have;
1840 s->insert += MIN(have, s->w_size - s->insert);
1841 }
1842 if (s->high_water < s->strstart)
1843 s->high_water = s->strstart;
1844
1845 /* There was not enough avail_out to write a complete worthy or flushed
1846 * stored block to next_out. Write a stored block to pending instead, if we
1847 * have enough input for a worthy block, or if flushing and there is enough
1848 * room for the remaining input as a stored block in the pending buffer.
1849 */
1850 have = (s->bi_valid + 42) >> 3; /* number of header bytes */
1851 /* maximum stored block length that will fit in pending: */
1852 have = MIN(s->pending_buf_size - have, MAX_STORED);
1853 min_block = MIN(have, s->w_size);
1854 left = s->strstart - s->block_start;
1855 if (left >= min_block ||
1856 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH &&
1857 s->strm->avail_in == 0 && left <= have)) {
1858 len = MIN(left, have);
1859 last = flush == Z_FINISH && s->strm->avail_in == 0 &&
1860 len == left ? 1 : 0;
1861 _tr_stored_block(s, (charf *)s->window + s->block_start, len, last);
1862 s->block_start += len;
1863 flush_pending(s->strm);
1864 }
1865
1866 /* We've done all we can with the available input and output. */
1867 return last ? finish_started : need_more;
1868}
static int used
Definition: adh-main.c:39
#define MIN(a, b)
Definition: deflate.c:1673
#define MAX_STORED
Definition: deflate.c:1670
GLenum GLsizei len
Definition: glext.h:6722
#define read_buf
Definition: intsym.h:279
if(dx< 0)
Definition: linetemp.h:194

Referenced by deflate().

◆ deflateBound()

uLong ZEXPORT deflateBound ( z_streamp  strm,
uLong  sourceLen 
)

Definition at line 696 of file deflate.c.

699{
701 uLong fixedlen, storelen, wraplen;
702
703 /* upper bound for fixed blocks with 9-bit literals and length 255
704 (memLevel == 2, which is the lowest that may not use stored blocks) --
705 ~13% overhead plus a small constant */
706 fixedlen = sourceLen + (sourceLen >> 3) + (sourceLen >> 8) +
707 (sourceLen >> 9) + 4;
708
709 /* upper bound for stored blocks with length 127 (memLevel == 1) --
710 ~4% overhead plus a small constant */
711 storelen = sourceLen + (sourceLen >> 5) + (sourceLen >> 7) +
712 (sourceLen >> 11) + 7;
713
714 /* if can't get parameters, return larger bound plus a zlib wrapper */
715 if (deflateStateCheck(strm))
716 return (fixedlen > storelen ? fixedlen : storelen) + 6;
717
718 /* compute wrapper length */
719 s = strm->state;
720 switch (s->wrap) {
721 case 0: /* raw deflate */
722 wraplen = 0;
723 break;
724 case 1: /* zlib wrapper */
725 wraplen = 6 + (s->strstart ? 4 : 0);
726 break;
727#ifdef GZIP
728 case 2: /* gzip wrapper */
729 wraplen = 18;
730 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */
731 Bytef *str;
732 if (s->gzhead->extra != Z_NULL)
733 wraplen += 2 + s->gzhead->extra_len;
734 str = s->gzhead->name;
735 if (str != Z_NULL)
736 do {
737 wraplen++;
738 } while (*str++);
739 str = s->gzhead->comment;
740 if (str != Z_NULL)
741 do {
742 wraplen++;
743 } while (*str++);
744 if (s->gzhead->hcrc)
745 wraplen += 2;
746 }
747 break;
748#endif
749 default: /* for compiler happiness */
750 wraplen = 6;
751 }
752
753 /* if not default parameters, return one of the conservative bounds */
754 if (s->w_bits != 15 || s->hash_bits != 8 + 7)
755 return (s->w_bits <= s->hash_bits ? fixedlen : storelen) + wraplen;
756
757 /* default settings: return tight bound for that case -- ~0.03% overhead
758 plus a small constant */
759 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
760 (sourceLen >> 25) + 13 - 6 + wraplen;
761}
unsigned long uLong
Definition: zlib.h:39

◆ deflateCopy()

int ZEXPORT deflateCopy ( z_streamp  dest,
z_streamp  source 
)

Definition at line 1156 of file deflate.c.

1159{
1160#ifdef MAXSEG_64K
1161 return Z_STREAM_ERROR;
1162#else
1165
1166
1167 if (deflateStateCheck(source) || dest == Z_NULL) {
1168 return Z_STREAM_ERROR;
1169 }
1170
1171 ss = source->state;
1172
1173 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream));
1174
1175 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1176 if (ds == Z_NULL) return Z_MEM_ERROR;
1177 dest->state = (struct internal_state FAR *) ds;
1178 zmemcpy((voidpf)ds, (voidpf)ss, sizeof(deflate_state));
1179 ds->strm = dest;
1180
1181 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1182 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1183 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
1184 ds->pending_buf = (uchf *) ZALLOC(dest, ds->lit_bufsize, 4);
1185
1186 if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
1187 ds->pending_buf == Z_NULL) {
1188 deflateEnd (dest);
1189 return Z_MEM_ERROR;
1190 }
1191 /* following zmemcpy do not work for 16-bit MSDOS */
1192 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
1193 zmemcpy((voidpf)ds->prev, (voidpf)ss->prev, ds->w_size * sizeof(Pos));
1194 zmemcpy((voidpf)ds->head, (voidpf)ss->head, ds->hash_size * sizeof(Pos));
1195 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
1196
1197 ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
1198 ds->sym_buf = ds->pending_buf + ds->lit_bufsize;
1199
1200 ds->l_desc.dyn_tree = ds->dyn_ltree;
1201 ds->d_desc.dyn_tree = ds->dyn_dtree;
1202 ds->bl_desc.dyn_tree = ds->bl_tree;
1203
1204 return Z_OK;
1205#endif /* MAXSEG_64K */
1206}
int ZEXPORT deflateEnd(z_streamp strm)
Definition: deflate.c:1130
Pos FAR Posf
Definition: deflate.h:93
#define ZALLOC(strm, items, size)
Definition: inflate.c:49
void FAR * voidpf
Definition: zlib.h:42
uch FAR uchf
Definition: zlib.h:48
#define Z_MEM_ERROR
Definition: zlib.h:120
#define FAR
Definition: zlib.h:34
#define ss
Definition: i386-dis.c:441
#define ds
Definition: i386-dis.c:443
static char * dest
Definition: rtl.c:135

◆ deflateEnd()

int ZEXPORT deflateEnd ( z_streamp  strm)

Definition at line 1130 of file deflate.c.

1132{
1133 int status;
1134
1135 if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
1136
1137 status = strm->state->status;
1138
1139 /* Deallocate in reverse order of allocations: */
1140 TRY_FREE(strm, strm->state->pending_buf);
1141 TRY_FREE(strm, strm->state->head);
1142 TRY_FREE(strm, strm->state->prev);
1143 TRY_FREE(strm, strm->state->window);
1144
1145 ZFREE(strm, strm->state);
1146 strm->state = Z_NULL;
1147
1148 return status == BUSY_STATE ? Z_DATA_ERROR : Z_OK;
1149}
#define ZFREE(strm, addr)
Definition: inflate.c:51
#define TRY_FREE(s, p)
Definition: inflate.c:52
#define Z_DATA_ERROR
Definition: zlib.h:119
Definition: ps.c:97
DWORD state
Definition: ps.c:98

Referenced by CMSZipCodec::Compress(), compress2(), deflateCopy(), deflateInit2_(), gzclose_w(), zipCloseFileInZipRaw64(), and zlib_compress().

◆ deflateGetDictionary()

int ZEXPORT deflateGetDictionary ( z_streamp  strm,
Bytef dictionary,
uInt dictLength 
)

Definition at line 481 of file deflate.c.

485{
487 uInt len;
488
489 if (deflateStateCheck(strm))
490 return Z_STREAM_ERROR;
491 s = strm->state;
492 len = s->strstart + s->lookahead;
493 if (len > s->w_size)
494 len = s->w_size;
495 if (dictionary != Z_NULL && len)
496 zmemcpy(dictionary, s->window + s->strstart + s->lookahead - len, len);
497 if (dictLength != Z_NULL)
498 *dictLength = len;
499 return Z_OK;
500}

◆ deflateInit2_()

int ZEXPORT deflateInit2_ ( z_streamp  strm,
int  level,
int  method,
int  windowBits,
int  memLevel,
int  strategy,
const char version,
int  stream_size 
)

Definition at line 237 of file deflate.c.

247{
249 int wrap = 1;
250 static const char my_version[] = ZLIB_VERSION;
251
252 if (version == Z_NULL || version[0] != my_version[0] ||
253 stream_size != sizeof(z_stream)) {
254 return Z_VERSION_ERROR;
255 }
256 if (strm == Z_NULL) return Z_STREAM_ERROR;
257
258 strm->msg = Z_NULL;
259 if (strm->zalloc == (alloc_func)0) {
260#ifdef Z_SOLO
261 return Z_STREAM_ERROR;
262#else
263 strm->zalloc = zcalloc;
264 strm->opaque = (voidpf)0;
265#endif
266 }
267 if (strm->zfree == (free_func)0)
268#ifdef Z_SOLO
269 return Z_STREAM_ERROR;
270#else
271 strm->zfree = zcfree;
272#endif
273
274#ifdef FASTEST
275 if (level != 0) level = 1;
276#else
278#endif
279
280 if (windowBits < 0) { /* suppress zlib wrapper */
281 wrap = 0;
282 if (windowBits < -15)
283 return Z_STREAM_ERROR;
285 }
286#ifdef GZIP
287 else if (windowBits > 15) {
288 wrap = 2; /* write gzip wrapper instead */
289 windowBits -= 16;
290 }
291#endif
292 if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
293 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
294 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
295 return Z_STREAM_ERROR;
296 }
297 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
298 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
299 if (s == Z_NULL) return Z_MEM_ERROR;
300 strm->state = (struct internal_state FAR *)s;
301 s->strm = strm;
302 s->status = INIT_STATE; /* to pass state test in deflateReset() */
303
304 s->wrap = wrap;
305 s->gzhead = Z_NULL;
306 s->w_bits = (uInt)windowBits;
307 s->w_size = 1 << s->w_bits;
308 s->w_mask = s->w_size - 1;
309
310 s->hash_bits = (uInt)memLevel + 7;
311 s->hash_size = 1 << s->hash_bits;
312 s->hash_mask = s->hash_size - 1;
313 s->hash_shift = ((s->hash_bits + MIN_MATCH-1) / MIN_MATCH);
314
315 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
316 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
317 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
318
319 s->high_water = 0; /* nothing written to s->window yet */
320
321 s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
322
323 /* We overlay pending_buf and sym_buf. This works since the average size
324 * for length/distance pairs over any compressed block is assured to be 31
325 * bits or less.
326 *
327 * Analysis: The longest fixed codes are a length code of 8 bits plus 5
328 * extra bits, for lengths 131 to 257. The longest fixed distance codes are
329 * 5 bits plus 13 extra bits, for distances 16385 to 32768. The longest
330 * possible fixed-codes length/distance pair is then 31 bits total.
331 *
332 * sym_buf starts one-fourth of the way into pending_buf. So there are
333 * three bytes in sym_buf for every four bytes in pending_buf. Each symbol
334 * in sym_buf is three bytes -- two for the distance and one for the
335 * literal/length. As each symbol is consumed, the pointer to the next
336 * sym_buf value to read moves forward three bytes. From that symbol, up to
337 * 31 bits are written to pending_buf. The closest the written pending_buf
338 * bits gets to the next sym_buf symbol to read is just before the last
339 * code is written. At that time, 31*(n - 2) bits have been written, just
340 * after 24*(n - 2) bits have been consumed from sym_buf. sym_buf starts at
341 * 8*n bits into pending_buf. (Note that the symbol buffer fills when n - 1
342 * symbols are written.) The closest the writing gets to what is unread is
343 * then n + 14 bits. Here n is lit_bufsize, which is 16384 by default, and
344 * can range from 128 to 32768.
345 *
346 * Therefore, at a minimum, there are 142 bits of space between what is
347 * written and what is read in the overlain buffers, so the symbols cannot
348 * be overwritten by the compressed data. That space is actually 139 bits,
349 * due to the three-bit fixed-code block header.
350 *
351 * That covers the case where either Z_FIXED is specified, forcing fixed
352 * codes, or when the use of fixed codes is chosen, because that choice
353 * results in a smaller compressed block than dynamic codes. That latter
354 * condition then assures that the above analysis also covers all dynamic
355 * blocks. A dynamic-code block will only be chosen to be emitted if it has
356 * fewer bits than a fixed-code block would for the same set of symbols.
357 * Therefore its average symbol length is assured to be less than 31. So
358 * the compressed data for a dynamic block also cannot overwrite the
359 * symbols from which it is being constructed.
360 */
361
362 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
363 s->pending_buf_size = (ulg)s->lit_bufsize * 4;
364
365 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
366 s->pending_buf == Z_NULL) {
367 s->status = FINISH_STATE;
368 strm->msg = ERR_MSG(Z_MEM_ERROR);
370 return Z_MEM_ERROR;
371 }
372 s->sym_buf = s->pending_buf + s->lit_bufsize;
373 s->sym_end = (s->lit_bufsize - 1) * 3;
374 /* We avoid equality with lit_bufsize*3 because of wraparound at 64K
375 * on 16 bit machines and because stored blocks are restricted to
376 * 64K-1 bytes.
377 */
378
379 s->level = level;
380 s->strategy = strategy;
381 s->method = (Byte)method;
382
383 return deflateReset(strm);
384}
#define Z_SOLO
Definition: cabinet.c:15
int ZEXPORT deflateReset(z_streamp strm)
Definition: deflate.c:541
void(* free_func)(voidpf opaque, voidpf address)
Definition: zlib.h:54
voidpf(* alloc_func)(voidpf opaque, uInt items, uInt size)
Definition: zlib.h:53
#define Z_VERSION_ERROR
Definition: zlib.h:122
#define MAX_MEM_LEVEL
Definition: zlib.h:152
#define Z_FIXED
Definition: zlib.h:136
#define Z_DEFAULT_COMPRESSION
Definition: zlib.h:130
static const WCHAR version[]
Definition: asmname.c:66
method
Definition: dragdrop.c:54
#define wrap(journal, var)
Definition: recovery.c:207
void zcfree(voidpf opaque, voidpf ptr)
Definition: zutil.c:173
voidpf zcalloc(voidpf opaque, unsigned items, unsigned size)
Definition: zutil.c:164
#define ZLIB_VERSION
Definition: zlib.h:40
int const char int stream_size
Definition: zlib.h:814
int windowBits
Definition: zlib.h:813
z_streamp strm
Definition: deflate.h:101
#define ERR_MSG(err)
Definition: zutil.h:59

Referenced by deflateInit_().

◆ deflateInit_()

int ZEXPORT deflateInit_ ( z_streamp  strm,
int  level,
const char version,
int  stream_size 
)

Definition at line 225 of file deflate.c.

230{
233 /* To do: ignore strm->next_in if we use it as window */
234}
int ZEXPORT deflateInit2_(z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size)
Definition: deflate.c:237
#define Z_DEFAULT_STRATEGY
Definition: zlib.h:137
#define MAX_WBITS
Definition: zlib.h:151
#define DEF_MEM_LEVEL
Definition: zutil.h:53

◆ deflateParams()

int ZEXPORT deflateParams ( z_streamp  strm,
int  level,
int  strategy 
)

Definition at line 605 of file deflate.c.

609{
611 compress_func func;
612
613 if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
614 s = strm->state;
615
616#ifdef FASTEST
617 if (level != 0) level = 1;
618#else
620#endif
621 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) {
622 return Z_STREAM_ERROR;
623 }
624 func = configuration_table[s->level].func;
625
626 if ((strategy != s->strategy || func != configuration_table[level].func) &&
627 s->last_flush != -2) {
628 /* Flush the last buffer: */
629 int err = deflate(strm, Z_BLOCK);
630 if (err == Z_STREAM_ERROR)
631 return err;
632 if (strm->avail_in || (s->strstart - s->block_start) + s->lookahead)
633 return Z_BUF_ERROR;
634 }
635 if (s->level != level) {
636 if (s->level == 0 && s->matches != 0) {
637 if (s->matches == 1)
638 slide_hash(s);
639 else
640 CLEAR_HASH(s);
641 s->matches = 0;
642 }
643 s->level = level;
644 s->max_lazy_match = configuration_table[level].max_lazy;
645 s->good_match = configuration_table[level].good_length;
646 s->nice_match = configuration_table[level].nice_length;
647 s->max_chain_length = configuration_table[level].max_chain;
648 }
649 s->strategy = strategy;
650 return Z_OK;
651}
int ZEXPORT deflate(z_streamp strm, int flush)
Definition: deflate.c:815
void slide_hash(deflate_state *s)
Definition: deflate.c:198
#define err(...)
ush good_length
Definition: deflate.c:115
ush max_chain
Definition: deflate.c:118
compress_func func
Definition: deflate.c:119
ush nice_length
Definition: deflate.c:117
ush max_lazy
Definition: deflate.c:116

Referenced by gzsetparams().

◆ deflatePending()

int ZEXPORT deflatePending ( z_streamp  strm,
unsigned pending,
int bits 
)

Definition at line 564 of file deflate.c.

568{
569 if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
570 if (pending != Z_NULL)
571 *pending = strm->state->pending;
572 if (bits != Z_NULL)
573 *bits = strm->state->bi_valid;
574 return Z_OK;
575}
GLenum GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * bits
Definition: glext.h:10929

◆ deflatePrime()

int ZEXPORT deflatePrime ( z_streamp  strm,
int  bits,
int  value 
)

Definition at line 578 of file deflate.c.

582{
584 int put;
585
586 if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
587 s = strm->state;
588 if (bits < 0 || bits > 16 ||
589 s->sym_buf < s->pending_out + ((Buf_size + 7) >> 3))
590 return Z_BUF_ERROR;
591 do {
592 put = Buf_size - s->bi_valid;
593 if (put > bits)
594 put = bits;
595 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
596 s->bi_valid += put;
598 value >>= put;
599 bits -= put;
600 } while (bits);
601 return Z_OK;
602}
#define Buf_size
Definition: deflate.h:51
unsigned short ush
Definition: zlib.h:49
#define bits
Definition: infblock.c:15
#define put(ret, state, sp, n)
Definition: match.c:105
void ZLIB_INTERNAL _tr_flush_bits(deflate_state *s)
Definition: trees.c:887
Definition: pdh_main.c:94

◆ deflateReset()

int ZEXPORT deflateReset ( z_streamp  strm)

Definition at line 541 of file deflate.c.

543{
544 int ret;
545
546 ret = deflateResetKeep(strm);
547 if (ret == Z_OK)
548 lm_init(strm->state);
549 return ret;
550}
int ZEXPORT deflateResetKeep(z_streamp strm)
Definition: deflate.c:503
void lm_init(deflate_state *s)
Definition: deflate.c:1245
int ret

Referenced by deflateInit2_(), and gz_comp().

◆ deflateResetKeep()

int ZEXPORT deflateResetKeep ( z_streamp  strm)

Definition at line 503 of file deflate.c.

505{
507
508 if (deflateStateCheck(strm)) {
509 return Z_STREAM_ERROR;
510 }
511
512 strm->total_in = strm->total_out = 0;
513 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
514 strm->data_type = Z_UNKNOWN;
515
516 s = (deflate_state *)strm->state;
517 s->pending = 0;
518 s->pending_out = s->pending_buf;
519
520 if (s->wrap < 0) {
521 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
522 }
523 s->status =
524#ifdef GZIP
525 s->wrap == 2 ? GZIP_STATE :
526#endif
528 strm->adler =
529#ifdef GZIP
530 s->wrap == 2 ? crc32(0L, Z_NULL, 0) :
531#endif
532 adler32(0L, Z_NULL, 0);
533 s->last_flush = -2;
534
535 _tr_init(s);
536
537 return Z_OK;
538}
#define Z_UNKNOWN
Definition: zlib.h:143
void ZLIB_INTERNAL _tr_init(deflate_state *s)
Definition: trees.c:379

Referenced by deflateReset().

◆ deflateSetDictionary()

int ZEXPORT deflateSetDictionary ( z_streamp  strm,
const Bytef dictionary,
uInt  dictLength 
)

Definition at line 412 of file deflate.c.

416{
418 uInt str, n;
419 int wrap;
420 unsigned avail;
421 z_const unsigned char *next;
422
423 if (deflateStateCheck(strm) || dictionary == Z_NULL)
424 return Z_STREAM_ERROR;
425 s = strm->state;
426 wrap = s->wrap;
427 if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead)
428 return Z_STREAM_ERROR;
429
430 /* when using zlib wrappers, compute Adler-32 for provided dictionary */
431 if (wrap == 1)
432 strm->adler = adler32(strm->adler, dictionary, dictLength);
433 s->wrap = 0; /* avoid computing Adler-32 in read_buf */
434
435 /* if dictionary would fill window, just replace the history */
436 if (dictLength >= s->w_size) {
437 if (wrap == 0) { /* already empty otherwise */
438 CLEAR_HASH(s);
439 s->strstart = 0;
440 s->block_start = 0L;
441 s->insert = 0;
442 }
443 dictionary += dictLength - s->w_size; /* use the tail */
444 dictLength = s->w_size;
445 }
446
447 /* insert dictionary into window and hash */
448 avail = strm->avail_in;
449 next = strm->next_in;
450 strm->avail_in = dictLength;
451 strm->next_in = (z_const Bytef *)dictionary;
452 fill_window(s);
453 while (s->lookahead >= MIN_MATCH) {
454 str = s->strstart;
455 n = s->lookahead - (MIN_MATCH-1);
456 do {
457 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
458#ifndef FASTEST
459 s->prev[str & s->w_mask] = s->head[s->ins_h];
460#endif
461 s->head[s->ins_h] = (Pos)str;
462 str++;
463 } while (--n);
464 s->strstart = str;
465 s->lookahead = MIN_MATCH-1;
466 fill_window(s);
467 }
468 s->strstart += s->lookahead;
469 s->block_start = (long)s->strstart;
470 s->insert = s->lookahead;
471 s->lookahead = 0;
472 s->match_length = s->prev_length = MIN_MATCH-1;
473 s->match_available = 0;
474 strm->next_in = next;
475 strm->avail_in = avail;
476 s->wrap = wrap;
477 return Z_OK;
478}
static int avail
Definition: adh-main.c:39
#define z_const
Definition: zlib.h:35
GLdouble n
Definition: glext.h:7729
#define long
Definition: qsort.c:33
static unsigned __int64 next
Definition: rand_nt.c:6

◆ deflateSetHeader()

int ZEXPORT deflateSetHeader ( z_streamp  strm,
gz_headerp  head 
)

Definition at line 553 of file deflate.c.

556{
557 if (deflateStateCheck(strm) || strm->state->wrap != 2)
558 return Z_STREAM_ERROR;
559 strm->state->gzhead = head;
560 return Z_OK;
561}
struct outqueuenode * head
Definition: adnsresfilter.c:66

◆ deflateStateCheck()

int deflateStateCheck ( z_streamp  strm)

Definition at line 389 of file deflate.c.

391{
393 if (strm == Z_NULL ||
394 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0)
395 return 1;
396 s = strm->state;
397 if (s == Z_NULL || s->strm != strm || (s->status != INIT_STATE &&
398#ifdef GZIP
399 s->status != GZIP_STATE &&
400#endif
401 s->status != EXTRA_STATE &&
402 s->status != NAME_STATE &&
403 s->status != COMMENT_STATE &&
404 s->status != HCRC_STATE &&
405 s->status != BUSY_STATE &&
406 s->status != FINISH_STATE))
407 return 1;
408 return 0;
409}
#define GZIP
Definition: deflate.h:23

Referenced by deflate(), deflateBound(), deflateCopy(), deflateEnd(), deflateGetDictionary(), deflateParams(), deflatePending(), deflatePrime(), deflateResetKeep(), deflateSetDictionary(), deflateSetHeader(), and deflateTune().

◆ deflateTune()

int ZEXPORT deflateTune ( z_streamp  strm,
int  good_length,
int  max_lazy,
int  nice_length,
int  max_chain 
)

Definition at line 654 of file deflate.c.

660{
662
663 if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
664 s = strm->state;
665 s->good_match = (uInt)good_length;
666 s->max_lazy_match = (uInt)max_lazy;
667 s->nice_match = nice_length;
668 s->max_chain_length = (uInt)max_chain;
669 return Z_OK;
670}

◆ fill_window()

void fill_window ( deflate_state s)

Definition at line 1527 of file deflate.c.

1529{
1530 unsigned n;
1531 unsigned more; /* Amount of free space at the end of the window. */
1532 uInt wsize = s->w_size;
1533
1534 Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
1535
1536 do {
1537 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1538
1539 /* Deal with !@#$% 64K limit: */
1540 if (sizeof(int) <= 2) {
1541 if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
1542 more = wsize;
1543
1544 } else if (more == (unsigned)(-1)) {
1545 /* Very unlikely, but possible on 16 bit machine if
1546 * strstart == 0 && lookahead == 1 (input done a byte at time)
1547 */
1548 more--;
1549 }
1550 }
1551
1552 /* If the window is almost full and there is insufficient lookahead,
1553 * move the upper half to the lower one to make room in the upper half.
1554 */
1555 if (s->strstart >= wsize + MAX_DIST(s)) {
1556
1557 zmemcpy(s->window, s->window + wsize, (unsigned)wsize - more);
1558 s->match_start -= wsize;
1559 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
1560 s->block_start -= (long) wsize;
1561 if (s->insert > s->strstart)
1562 s->insert = s->strstart;
1563 slide_hash(s);
1564 more += wsize;
1565 }
1566 if (s->strm->avail_in == 0) break;
1567
1568 /* If there was no sliding:
1569 * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
1570 * more == window_size - lookahead - strstart
1571 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
1572 * => more >= window_size - 2*WSIZE + 2
1573 * In the BIG_MEM or MMAP case (not yet supported),
1574 * window_size == input_size + MIN_LOOKAHEAD &&
1575 * strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
1576 * Otherwise, window_size == 2*WSIZE so more >= 2.
1577 * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
1578 */
1579 Assert(more >= 2, "more < 2");
1580
1581 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
1582 s->lookahead += n;
1583
1584 /* Initialize the hash value now that we have some input: */
1585 if (s->lookahead + s->insert >= MIN_MATCH) {
1586 uInt str = s->strstart - s->insert;
1587 s->ins_h = s->window[str];
1588 UPDATE_HASH(s, s->ins_h, s->window[str + 1]);
1589#if MIN_MATCH != 3
1590 Call UPDATE_HASH() MIN_MATCH-3 more times
1591#endif
1592 while (s->insert) {
1593 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
1594#ifndef FASTEST
1595 s->prev[str & s->w_mask] = s->head[s->ins_h];
1596#endif
1597 s->head[s->ins_h] = (Pos)str;
1598 str++;
1599 s->insert--;
1600 if (s->lookahead + s->insert < MIN_MATCH)
1601 break;
1602 }
1603 }
1604 /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
1605 * but this is not important since only literal bytes will be emitted.
1606 */
1607
1608 } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0);
1609
1610 /* If the WIN_INIT bytes after the end of the current data have never been
1611 * written, then zero those bytes in order to avoid memory check reports of
1612 * the use of uninitialized (or uninitialised as Julian writes) bytes by
1613 * the longest match routines. Update the high water mark for the next
1614 * time through here. WIN_INIT is set to MAX_MATCH since the longest match
1615 * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.
1616 */
1617 if (s->high_water < s->window_size) {
1618 ulg curr = s->strstart + (ulg)(s->lookahead);
1619 ulg init;
1620
1621 if (s->high_water < curr) {
1622 /* Previous high water mark below current data -- zero WIN_INIT
1623 * bytes or up to end of window, whichever is less.
1624 */
1625 init = s->window_size - curr;
1626 if (init > WIN_INIT)
1627 init = WIN_INIT;
1628 zmemzero(s->window + curr, (unsigned)init);
1629 s->high_water = curr + init;
1630 }
1631 else if (s->high_water < (ulg)curr + WIN_INIT) {
1632 /* High water mark at or above current data, but below current data
1633 * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
1634 * to end of window, whichever is less.
1635 */
1636 init = (ulg)curr + WIN_INIT - s->high_water;
1637 if (init > s->window_size - s->high_water)
1638 init = s->window_size - s->high_water;
1639 zmemzero(s->window + s->high_water, (unsigned)init);
1640 s->high_water += init;
1641 }
1642 }
1643
1644 Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
1645 "not enough room for search");
1646}
#define WIN_INIT
Definition: deflate.h:289
#define zmemzero(dest, len)
Definition: inflate.c:39
static unsigned(__cdecl *hash_bstr)(bstr_t s)
static int init
Definition: wintirpc.c:33

Referenced by deflate_fast(), deflate_huff(), deflate_rle(), deflate_slow(), and deflateSetDictionary().

◆ flush_pending()

void flush_pending ( z_streamp  strm)

Definition at line 782 of file deflate.c.

784{
785 unsigned len;
786 deflate_state *s = strm->state;
787
789 len = s->pending;
790 if (len > strm->avail_out) len = strm->avail_out;
791 if (len == 0) return;
792
793 zmemcpy(strm->next_out, s->pending_out, len);
794 strm->next_out += len;
795 s->pending_out += len;
796 strm->total_out += len;
797 strm->avail_out -= len;
798 s->pending -= len;
799 if (s->pending == 0) {
800 s->pending_out = s->pending_buf;
801 }
802}

Referenced by deflate(), and deflate_stored().

◆ lm_init()

void lm_init ( deflate_state s)

Definition at line 1245 of file deflate.c.

1247{
1248 s->window_size = (ulg)2L*s->w_size;
1249
1250 CLEAR_HASH(s);
1251
1252 /* Set the default configuration parameters:
1253 */
1254 s->max_lazy_match = configuration_table[s->level].max_lazy;
1255 s->good_match = configuration_table[s->level].good_length;
1256 s->nice_match = configuration_table[s->level].nice_length;
1257 s->max_chain_length = configuration_table[s->level].max_chain;
1258
1259 s->strstart = 0;
1260 s->block_start = 0L;
1261 s->lookahead = 0;
1262 s->insert = 0;
1263 s->match_length = s->prev_length = MIN_MATCH-1;
1264 s->match_available = 0;
1265 s->ins_h = 0;
1266}

Referenced by deflateReset().

◆ longest_match()

uInt longest_match ( deflate_state s,
IPos  cur_match 
)

Definition at line 1278 of file deflate.c.

1281{
1282 unsigned chain_length = s->max_chain_length;/* max hash chain length */
1283 register Bytef *scan = s->window + s->strstart; /* current string */
1284 register Bytef *match; /* matched string */
1285 register int len; /* length of current match */
1286 int best_len = (int)s->prev_length; /* best match length so far */
1287 int nice_match = s->nice_match; /* stop if match long enough */
1288 IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
1289 s->strstart - (IPos)MAX_DIST(s) : NIL;
1290 /* Stop when cur_match becomes <= limit. To simplify the code,
1291 * we prevent matches with the string of window index 0.
1292 */
1293 Posf *prev = s->prev;
1294 uInt wmask = s->w_mask;
1295
1296#ifdef UNALIGNED_OK
1297 /* Compare two bytes at a time. Note: this is not always beneficial.
1298 * Try with and without -DUNALIGNED_OK to check.
1299 */
1300 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1301 register ush scan_start = *(ushf*)scan;
1302 register ush scan_end = *(ushf*)(scan + best_len - 1);
1303#else
1304 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1305 register Byte scan_end1 = scan[best_len - 1];
1306 register Byte scan_end = scan[best_len];
1307#endif
1308
1309 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1310 * It is easy to get rid of this optimization if necessary.
1311 */
1312 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
1313
1314 /* Do not waste too much time if we already have a good match: */
1315 if (s->prev_length >= s->good_match) {
1316 chain_length >>= 2;
1317 }
1318 /* Do not look for matches beyond the end of the input. This is necessary
1319 * to make deflate deterministic.
1320 */
1321 if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
1322
1323 Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
1324 "need lookahead");
1325
1326 do {
1327 Assert(cur_match < s->strstart, "no future");
1328 match = s->window + cur_match;
1329
1330 /* Skip to next match if the match length cannot increase
1331 * or if the match length is less than 2. Note that the checks below
1332 * for insufficient lookahead only occur occasionally for performance
1333 * reasons. Therefore uninitialized memory will be accessed, and
1334 * conditional jumps will be made that depend on those values.
1335 * However the length of the match is limited to the lookahead, so
1336 * the output of deflate is not affected by the uninitialized values.
1337 */
1338#if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
1339 /* This code assumes sizeof(unsigned short) == 2. Do not use
1340 * UNALIGNED_OK if your compiler uses a different size.
1341 */
1342 if (*(ushf*)(match + best_len - 1) != scan_end ||
1343 *(ushf*)match != scan_start) continue;
1344
1345 /* It is not necessary to compare scan[2] and match[2] since they are
1346 * always equal when the other bytes match, given that the hash keys
1347 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1348 * strstart + 3, + 5, up to strstart + 257. We check for insufficient
1349 * lookahead only every 4th comparison; the 128th check will be made
1350 * at strstart + 257. If MAX_MATCH-2 is not a multiple of 8, it is
1351 * necessary to put more guard bytes at the end of the window, or
1352 * to check more often for insufficient lookahead.
1353 */
1354 Assert(scan[2] == match[2], "scan[2]?");
1355 scan++, match++;
1356 do {
1357 } while (*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
1358 *(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
1359 *(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
1360 *(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
1361 scan < strend);
1362 /* The funny "do {}" generates better code on most compilers */
1363
1364 /* Here, scan <= window + strstart + 257 */
1365 Assert(scan <= s->window + (unsigned)(s->window_size - 1),
1366 "wild scan");
1367 if (*scan == *match) scan++;
1368
1369 len = (MAX_MATCH - 1) - (int)(strend - scan);
1370 scan = strend - (MAX_MATCH-1);
1371
1372#else /* UNALIGNED_OK */
1373
1374 if (match[best_len] != scan_end ||
1375 match[best_len - 1] != scan_end1 ||
1376 *match != *scan ||
1377 *++match != scan[1]) continue;
1378
1379 /* The check at best_len - 1 can be removed because it will be made
1380 * again later. (This heuristic is not always a win.)
1381 * It is not necessary to compare scan[2] and match[2] since they
1382 * are always equal when the other bytes match, given that
1383 * the hash keys are equal and that HASH_BITS >= 8.
1384 */
1385 scan += 2, match++;
1386 Assert(*scan == *match, "match[2]?");
1387
1388 /* We check for insufficient lookahead only every 8th comparison;
1389 * the 256th check will be made at strstart + 258.
1390 */
1391 do {
1392 } while (*++scan == *++match && *++scan == *++match &&
1393 *++scan == *++match && *++scan == *++match &&
1394 *++scan == *++match && *++scan == *++match &&
1395 *++scan == *++match && *++scan == *++match &&
1396 scan < strend);
1397
1398 Assert(scan <= s->window + (unsigned)(s->window_size - 1),
1399 "wild scan");
1400
1401 len = MAX_MATCH - (int)(strend - scan);
1402 scan = strend - MAX_MATCH;
1403
1404#endif /* UNALIGNED_OK */
1405
1406 if (len > best_len) {
1407 s->match_start = cur_match;
1408 best_len = len;
1409 if (len >= nice_match) break;
1410#ifdef UNALIGNED_OK
1411 scan_end = *(ushf*)(scan + best_len - 1);
1412#else
1413 scan_end1 = scan[best_len - 1];
1414 scan_end = scan[best_len];
1415#endif
1416 }
1417 } while ((cur_match = prev[cur_match & wmask]) > limit
1418 && --chain_length != 0);
1419
1420 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1421 return s->lookahead;
1422}
ush FAR ushf
Definition: zlib.h:50
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
Definition: typeof.h:31
GLint limit
Definition: glext.h:10326
Definition: match.c:28

Referenced by deflate_fast(), and deflate_slow().

◆ OF() [1/5]

◆ OF() [2/5]

uInt longest_match OF ( (deflate_state *s, IPos cur_match)  )

◆ OF() [3/5]

◆ OF() [4/5]

int deflateStateCheck OF ( (z_streamp strm)  )

◆ OF() [5/5]

◆ putShortMSB()

void putShortMSB ( deflate_state s,
uInt  b 
)

Definition at line 768 of file deflate.c.

771{
772 put_byte(s, (Byte)(b >> 8));
773 put_byte(s, (Byte)(b & 0xff));
774}
GLboolean GLboolean GLboolean b
Definition: glext.h:6204

Referenced by deflate().

◆ read_buf()

unsigned read_buf ( z_streamp  strm,
Bytef buf,
unsigned  size 
)

Definition at line 1215 of file deflate.c.

1219{
1220 unsigned len = strm->avail_in;
1221
1222 if (len > size) len = size;
1223 if (len == 0) return 0;
1224
1225 strm->avail_in -= len;
1226
1227 zmemcpy(buf, strm->next_in, len);
1228 if (strm->state->wrap == 1) {
1229 strm->adler = adler32(strm->adler, buf, len);
1230 }
1231#ifdef GZIP
1232 else if (strm->state->wrap == 2) {
1233 strm->adler = crc32(strm->adler, buf, len);
1234 }
1235#endif
1236 strm->next_in += len;
1237 strm->total_in += len;
1238
1239 return len;
1240}
GLsizeiptr size
Definition: glext.h:5919
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751

◆ slide_hash()

void slide_hash ( deflate_state s)

Definition at line 198 of file deflate.c.

200{
201 unsigned n, m;
202 Posf *p;
203 uInt wsize = s->w_size;
204
205 n = s->hash_size;
206 p = &s->head[n];
207 do {
208 m = *--p;
209 *p = (Pos)(m >= wsize ? m - wsize : NIL);
210 } while (--n);
211 n = wsize;
212#ifndef FASTEST
213 p = &s->prev[n];
214 do {
215 m = *--p;
216 *p = (Pos)(m >= wsize ? m - wsize : NIL);
217 /* If n is not on any hash chain, prev[n] is garbage but
218 * its value will never be used.
219 */
220 } while (--n);
221#endif
222}
GLfloat GLfloat p
Definition: glext.h:8902
const GLfloat * m
Definition: glext.h:10848

Referenced by deflateParams(), and fill_window().

Variable Documentation

◆ configuration_table

const config configuration_table[10]
Initial value:
= {
{0, 0, 0, 0, deflate_stored},
{4, 4, 8, 4, deflate_fast},
{4, 5, 16, 8, deflate_fast},
{4, 6, 32, 32, deflate_fast},
{4, 4, 16, 16, deflate_slow},
{8, 16, 32, 32, deflate_slow},
{8, 16, 128, 128, deflate_slow},
{8, 32, 128, 256, deflate_slow},
{32, 128, 258, 1024, deflate_slow},
{32, 258, 258, 4096, deflate_slow}}
block_state deflate_fast(deflate_state *s, int flush)
Definition: deflate.c:1877
block_state deflate_slow(deflate_state *s, int flush)
Definition: deflate.c:1979

Definition at line 128 of file deflate.c.

Referenced by deflate(), deflateParams(), and lm_init().

◆ deflate_copyright

const char deflate_copyright[]
Initial value:
=
" deflate 1.2.13 Copyright 1995-2022 Jean-loup Gailly and Mark Adler "

Definition at line 54 of file deflate.c.