zstdlib 0.13.0-x86_64-linux

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +6 -0
  3. data/CHANGES.md +107 -0
  4. data/Gemfile +3 -0
  5. data/README.md +107 -0
  6. data/Rakefile +59 -0
  7. data/ext/zstdlib_c/extconf.rb +59 -0
  8. data/ext/zstdlib_c/ruby/zlib-2.2/zstdlib.c +4675 -0
  9. data/ext/zstdlib_c/ruby/zlib-2.3/zstdlib.c +4702 -0
  10. data/ext/zstdlib_c/ruby/zlib-2.4/zstdlib.c +4859 -0
  11. data/ext/zstdlib_c/ruby/zlib-2.5/zstdlib.c +4864 -0
  12. data/ext/zstdlib_c/ruby/zlib-2.6/zstdlib.c +4906 -0
  13. data/ext/zstdlib_c/ruby/zlib-2.7/zstdlib.c +4895 -0
  14. data/ext/zstdlib_c/ruby/zlib-3.0/zstdlib.c +4994 -0
  15. data/ext/zstdlib_c/ruby/zlib-3.1/zstdlib.c +5076 -0
  16. data/ext/zstdlib_c/ruby/zlib-3.2/zstdlib.c +5090 -0
  17. data/ext/zstdlib_c/ruby/zlib-3.3/zstdlib.c +5090 -0
  18. data/ext/zstdlib_c/zlib-1.3.1/adler32.c +164 -0
  19. data/ext/zstdlib_c/zlib-1.3.1/compress.c +75 -0
  20. data/ext/zstdlib_c/zlib-1.3.1/crc32.c +1049 -0
  21. data/ext/zstdlib_c/zlib-1.3.1/crc32.h +9446 -0
  22. data/ext/zstdlib_c/zlib-1.3.1/deflate.c +2139 -0
  23. data/ext/zstdlib_c/zlib-1.3.1/deflate.h +377 -0
  24. data/ext/zstdlib_c/zlib-1.3.1/gzclose.c +23 -0
  25. data/ext/zstdlib_c/zlib-1.3.1/gzguts.h +214 -0
  26. data/ext/zstdlib_c/zlib-1.3.1/gzlib.c +582 -0
  27. data/ext/zstdlib_c/zlib-1.3.1/gzread.c +602 -0
  28. data/ext/zstdlib_c/zlib-1.3.1/gzwrite.c +631 -0
  29. data/ext/zstdlib_c/zlib-1.3.1/infback.c +628 -0
  30. data/ext/zstdlib_c/zlib-1.3.1/inffast.c +320 -0
  31. data/ext/zstdlib_c/zlib-1.3.1/inffast.h +11 -0
  32. data/ext/zstdlib_c/zlib-1.3.1/inffixed.h +94 -0
  33. data/ext/zstdlib_c/zlib-1.3.1/inflate.c +1526 -0
  34. data/ext/zstdlib_c/zlib-1.3.1/inflate.h +126 -0
  35. data/ext/zstdlib_c/zlib-1.3.1/inftrees.c +299 -0
  36. data/ext/zstdlib_c/zlib-1.3.1/inftrees.h +62 -0
  37. data/ext/zstdlib_c/zlib-1.3.1/trees.c +1117 -0
  38. data/ext/zstdlib_c/zlib-1.3.1/trees.h +128 -0
  39. data/ext/zstdlib_c/zlib-1.3.1/uncompr.c +85 -0
  40. data/ext/zstdlib_c/zlib-1.3.1/zconf.h +543 -0
  41. data/ext/zstdlib_c/zlib-1.3.1/zlib.h +1938 -0
  42. data/ext/zstdlib_c/zlib-1.3.1/zutil.c +299 -0
  43. data/ext/zstdlib_c/zlib-1.3.1/zutil.h +254 -0
  44. data/ext/zstdlib_c/zlib.mk +14 -0
  45. data/ext/zstdlib_c/zlibwrapper/zlibwrapper.c +10 -0
  46. data/ext/zstdlib_c/zlibwrapper.mk +14 -0
  47. data/ext/zstdlib_c/zstd-1.5.6/lib/common/allocations.h +55 -0
  48. data/ext/zstdlib_c/zstd-1.5.6/lib/common/bits.h +200 -0
  49. data/ext/zstdlib_c/zstd-1.5.6/lib/common/bitstream.h +457 -0
  50. data/ext/zstdlib_c/zstd-1.5.6/lib/common/compiler.h +450 -0
  51. data/ext/zstdlib_c/zstd-1.5.6/lib/common/cpu.h +249 -0
  52. data/ext/zstdlib_c/zstd-1.5.6/lib/common/debug.c +30 -0
  53. data/ext/zstdlib_c/zstd-1.5.6/lib/common/debug.h +116 -0
  54. data/ext/zstdlib_c/zstd-1.5.6/lib/common/entropy_common.c +340 -0
  55. data/ext/zstdlib_c/zstd-1.5.6/lib/common/error_private.c +63 -0
  56. data/ext/zstdlib_c/zstd-1.5.6/lib/common/error_private.h +168 -0
  57. data/ext/zstdlib_c/zstd-1.5.6/lib/common/fse.h +640 -0
  58. data/ext/zstdlib_c/zstd-1.5.6/lib/common/fse_decompress.c +313 -0
  59. data/ext/zstdlib_c/zstd-1.5.6/lib/common/huf.h +286 -0
  60. data/ext/zstdlib_c/zstd-1.5.6/lib/common/mem.h +426 -0
  61. data/ext/zstdlib_c/zstd-1.5.6/lib/common/pool.c +371 -0
  62. data/ext/zstdlib_c/zstd-1.5.6/lib/common/pool.h +90 -0
  63. data/ext/zstdlib_c/zstd-1.5.6/lib/common/portability_macros.h +158 -0
  64. data/ext/zstdlib_c/zstd-1.5.6/lib/common/threading.c +182 -0
  65. data/ext/zstdlib_c/zstd-1.5.6/lib/common/threading.h +150 -0
  66. data/ext/zstdlib_c/zstd-1.5.6/lib/common/xxhash.c +18 -0
  67. data/ext/zstdlib_c/zstd-1.5.6/lib/common/xxhash.h +7020 -0
  68. data/ext/zstdlib_c/zstd-1.5.6/lib/common/zstd_common.c +48 -0
  69. data/ext/zstdlib_c/zstd-1.5.6/lib/common/zstd_deps.h +111 -0
  70. data/ext/zstdlib_c/zstd-1.5.6/lib/common/zstd_internal.h +392 -0
  71. data/ext/zstdlib_c/zstd-1.5.6/lib/common/zstd_trace.h +163 -0
  72. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/clevels.h +134 -0
  73. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/fse_compress.c +625 -0
  74. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/hist.c +181 -0
  75. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/hist.h +75 -0
  76. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/huf_compress.c +1464 -0
  77. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_compress.c +7153 -0
  78. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_compress_internal.h +1534 -0
  79. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_compress_literals.c +235 -0
  80. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_compress_literals.h +39 -0
  81. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_compress_sequences.c +442 -0
  82. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_compress_sequences.h +54 -0
  83. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_compress_superblock.c +688 -0
  84. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_compress_superblock.h +32 -0
  85. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_cwksp.h +748 -0
  86. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_double_fast.c +770 -0
  87. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_double_fast.h +50 -0
  88. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_fast.c +968 -0
  89. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_fast.h +38 -0
  90. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_lazy.c +2199 -0
  91. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_lazy.h +202 -0
  92. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_ldm.c +730 -0
  93. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_ldm.h +117 -0
  94. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_ldm_geartab.h +106 -0
  95. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_opt.c +1576 -0
  96. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstd_opt.h +80 -0
  97. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstdmt_compress.c +1882 -0
  98. data/ext/zstdlib_c/zstd-1.5.6/lib/compress/zstdmt_compress.h +113 -0
  99. data/ext/zstdlib_c/zstd-1.5.6/lib/decompress/huf_decompress.c +1944 -0
  100. data/ext/zstdlib_c/zstd-1.5.6/lib/decompress/huf_decompress_amd64.S +595 -0
  101. data/ext/zstdlib_c/zstd-1.5.6/lib/decompress/zstd_ddict.c +244 -0
  102. data/ext/zstdlib_c/zstd-1.5.6/lib/decompress/zstd_ddict.h +44 -0
  103. data/ext/zstdlib_c/zstd-1.5.6/lib/decompress/zstd_decompress.c +2407 -0
  104. data/ext/zstdlib_c/zstd-1.5.6/lib/decompress/zstd_decompress_block.c +2215 -0
  105. data/ext/zstdlib_c/zstd-1.5.6/lib/decompress/zstd_decompress_block.h +73 -0
  106. data/ext/zstdlib_c/zstd-1.5.6/lib/decompress/zstd_decompress_internal.h +240 -0
  107. data/ext/zstdlib_c/zstd-1.5.6/lib/zdict.h +474 -0
  108. data/ext/zstdlib_c/zstd-1.5.6/lib/zstd.h +3089 -0
  109. data/ext/zstdlib_c/zstd-1.5.6/lib/zstd_errors.h +114 -0
  110. data/ext/zstdlib_c/zstd-1.5.6/zlibWrapper/gzclose.c +26 -0
  111. data/ext/zstdlib_c/zstd-1.5.6/zlibWrapper/gzcompatibility.h +68 -0
  112. data/ext/zstdlib_c/zstd-1.5.6/zlibWrapper/gzguts.h +229 -0
  113. data/ext/zstdlib_c/zstd-1.5.6/zlibWrapper/gzlib.c +587 -0
  114. data/ext/zstdlib_c/zstd-1.5.6/zlibWrapper/gzread.c +637 -0
  115. data/ext/zstdlib_c/zstd-1.5.6/zlibWrapper/gzwrite.c +631 -0
  116. data/ext/zstdlib_c/zstd-1.5.6/zlibWrapper/zstd_zlibwrapper.c +1200 -0
  117. data/ext/zstdlib_c/zstd-1.5.6/zlibWrapper/zstd_zlibwrapper.h +91 -0
  118. data/ext/zstdlib_c/zstd.mk +15 -0
  119. data/lib/2.4/zstdlib_c.so +0 -0
  120. data/lib/2.5/zstdlib_c.so +0 -0
  121. data/lib/2.6/zstdlib_c.so +0 -0
  122. data/lib/2.7/zstdlib_c.so +0 -0
  123. data/lib/3.0/zstdlib_c.so +0 -0
  124. data/lib/3.1/zstdlib_c.so +0 -0
  125. data/lib/3.2/zstdlib_c.so +0 -0
  126. data/lib/3.3/zstdlib_c.so +0 -0
  127. data/lib/zstdlib.rb +6 -0
  128. data/test/zstdlib_test.rb +21 -0
  129. metadata +243 -0
@@ -0,0 +1,126 @@
1
+ /* inflate.h -- internal inflate state definition
2
+ * Copyright (C) 1995-2019 Mark Adler
3
+ * For conditions of distribution and use, see copyright notice in zlib.h
4
+ */
5
+
6
+ /* WARNING: this file should *not* be used by applications. It is
7
+ part of the implementation of the compression library and is
8
+ subject to change. Applications should only use zlib.h.
9
+ */
10
+
11
+ /* define NO_GZIP when compiling if you want to disable gzip header and
12
+ trailer decoding by inflate(). NO_GZIP would be used to avoid linking in
13
+ the crc code when it is not needed. For shared libraries, gzip decoding
14
+ should be left enabled. */
15
+ #ifndef NO_GZIP
16
+ # define GUNZIP
17
+ #endif
18
+
19
+ /* Possible inflate modes between inflate() calls */
20
+ typedef enum {
21
+ HEAD = 16180, /* i: waiting for magic header */
22
+ FLAGS, /* i: waiting for method and flags (gzip) */
23
+ TIME, /* i: waiting for modification time (gzip) */
24
+ OS, /* i: waiting for extra flags and operating system (gzip) */
25
+ EXLEN, /* i: waiting for extra length (gzip) */
26
+ EXTRA, /* i: waiting for extra bytes (gzip) */
27
+ NAME, /* i: waiting for end of file name (gzip) */
28
+ COMMENT, /* i: waiting for end of comment (gzip) */
29
+ HCRC, /* i: waiting for header crc (gzip) */
30
+ DICTID, /* i: waiting for dictionary check value */
31
+ DICT, /* waiting for inflateSetDictionary() call */
32
+ TYPE, /* i: waiting for type bits, including last-flag bit */
33
+ TYPEDO, /* i: same, but skip check to exit inflate on new block */
34
+ STORED, /* i: waiting for stored size (length and complement) */
35
+ COPY_, /* i/o: same as COPY below, but only first time in */
36
+ COPY, /* i/o: waiting for input or output to copy stored block */
37
+ TABLE, /* i: waiting for dynamic block table lengths */
38
+ LENLENS, /* i: waiting for code length code lengths */
39
+ CODELENS, /* i: waiting for length/lit and distance code lengths */
40
+ LEN_, /* i: same as LEN below, but only first time in */
41
+ LEN, /* i: waiting for length/lit/eob code */
42
+ LENEXT, /* i: waiting for length extra bits */
43
+ DIST, /* i: waiting for distance code */
44
+ DISTEXT, /* i: waiting for distance extra bits */
45
+ MATCH, /* o: waiting for output space to copy string */
46
+ LIT, /* o: waiting for output space to write literal */
47
+ CHECK, /* i: waiting for 32-bit check value */
48
+ LENGTH, /* i: waiting for 32-bit length (gzip) */
49
+ DONE, /* finished check, done -- remain here until reset */
50
+ BAD, /* got a data error -- remain here until reset */
51
+ MEM, /* got an inflate() memory error -- remain here until reset */
52
+ SYNC /* looking for synchronization bytes to restart inflate() */
53
+ } inflate_mode;
54
+
55
+ /*
56
+ State transitions between above modes -
57
+
58
+ (most modes can go to BAD or MEM on error -- not shown for clarity)
59
+
60
+ Process header:
61
+ HEAD -> (gzip) or (zlib) or (raw)
62
+ (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->
63
+ HCRC -> TYPE
64
+ (zlib) -> DICTID or TYPE
65
+ DICTID -> DICT -> TYPE
66
+ (raw) -> TYPEDO
67
+ Read deflate blocks:
68
+ TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
69
+ STORED -> COPY_ -> COPY -> TYPE
70
+ TABLE -> LENLENS -> CODELENS -> LEN_
71
+ LEN_ -> LEN
72
+ Read deflate codes in fixed or dynamic block:
73
+ LEN -> LENEXT or LIT or TYPE
74
+ LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
75
+ LIT -> LEN
76
+ Process trailer:
77
+ CHECK -> LENGTH -> DONE
78
+ */
79
+
80
+ /* State maintained between inflate() calls -- approximately 7K bytes, not
81
+ including the allocated sliding window, which is up to 32K bytes. */
82
+ struct inflate_state {
83
+ z_streamp strm; /* pointer back to this zlib stream */
84
+ inflate_mode mode; /* current inflate mode */
85
+ int last; /* true if processing last block */
86
+ int wrap; /* bit 0 true for zlib, bit 1 true for gzip,
87
+ bit 2 true to validate check value */
88
+ int havedict; /* true if dictionary provided */
89
+ int flags; /* gzip header method and flags, 0 if zlib, or
90
+ -1 if raw or no header yet */
91
+ unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */
92
+ unsigned long check; /* protected copy of check value */
93
+ unsigned long total; /* protected copy of output count */
94
+ gz_headerp head; /* where to save gzip header information */
95
+ /* sliding window */
96
+ unsigned wbits; /* log base 2 of requested window size */
97
+ unsigned wsize; /* window size or zero if not using window */
98
+ unsigned whave; /* valid bytes in the window */
99
+ unsigned wnext; /* window write index */
100
+ unsigned char FAR *window; /* allocated sliding window, if needed */
101
+ /* bit accumulator */
102
+ unsigned long hold; /* input bit accumulator */
103
+ unsigned bits; /* number of bits in "in" */
104
+ /* for string and stored block copying */
105
+ unsigned length; /* literal or length of data to copy */
106
+ unsigned offset; /* distance back to copy string from */
107
+ /* for table and code decoding */
108
+ unsigned extra; /* extra bits needed */
109
+ /* fixed and dynamic code tables */
110
+ code const FAR *lencode; /* starting table for length/literal codes */
111
+ code const FAR *distcode; /* starting table for distance codes */
112
+ unsigned lenbits; /* index bits for lencode */
113
+ unsigned distbits; /* index bits for distcode */
114
+ /* dynamic table building */
115
+ unsigned ncode; /* number of code length code lengths */
116
+ unsigned nlen; /* number of length code lengths */
117
+ unsigned ndist; /* number of distance code lengths */
118
+ unsigned have; /* number of code lengths in lens[] */
119
+ code FAR *next; /* next available space in codes[] */
120
+ unsigned short lens[320]; /* temporary storage for code lengths */
121
+ unsigned short work[288]; /* work area for code table building */
122
+ code codes[ENOUGH]; /* space for code tables */
123
+ int sane; /* if false, allow invalid distance too far */
124
+ int back; /* bits back of last unprocessed length/lit */
125
+ unsigned was; /* initial length of match */
126
+ };
@@ -0,0 +1,299 @@
1
+ /* inftrees.c -- generate Huffman trees for efficient decoding
2
+ * Copyright (C) 1995-2024 Mark Adler
3
+ * For conditions of distribution and use, see copyright notice in zlib.h
4
+ */
5
+
6
+ #include "zutil.h"
7
+ #include "inftrees.h"
8
+
9
+ #define MAXBITS 15
10
+
11
+ const char inflate_copyright[] =
12
+ " inflate 1.3.1 Copyright 1995-2024 Mark Adler ";
13
+ /*
14
+ If you use the zlib library in a product, an acknowledgment is welcome
15
+ in the documentation of your product. If for some reason you cannot
16
+ include such an acknowledgment, I would appreciate that you keep this
17
+ copyright string in the executable of your product.
18
+ */
19
+
20
+ /*
21
+ Build a set of tables to decode the provided canonical Huffman code.
22
+ The code lengths are lens[0..codes-1]. The result starts at *table,
23
+ whose indices are 0..2^bits-1. work is a writable array of at least
24
+ lens shorts, which is used as a work area. type is the type of code
25
+ to be generated, CODES, LENS, or DISTS. On return, zero is success,
26
+ -1 is an invalid code, and +1 means that ENOUGH isn't enough. table
27
+ on return points to the next available entry's address. bits is the
28
+ requested root table index bits, and on return it is the actual root
29
+ table index bits. It will differ if the request is greater than the
30
+ longest code or if it is less than the shortest code.
31
+ */
32
+ int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens,
33
+ unsigned codes, code FAR * FAR *table,
34
+ unsigned FAR *bits, unsigned short FAR *work) {
35
+ unsigned len; /* a code's length in bits */
36
+ unsigned sym; /* index of code symbols */
37
+ unsigned min, max; /* minimum and maximum code lengths */
38
+ unsigned root; /* number of index bits for root table */
39
+ unsigned curr; /* number of index bits for current table */
40
+ unsigned drop; /* code bits to drop for sub-table */
41
+ int left; /* number of prefix codes available */
42
+ unsigned used; /* code entries in table used */
43
+ unsigned huff; /* Huffman code */
44
+ unsigned incr; /* for incrementing code, index */
45
+ unsigned fill; /* index for replicating entries */
46
+ unsigned low; /* low bits for current root entry */
47
+ unsigned mask; /* mask for low root bits */
48
+ code here; /* table entry for duplication */
49
+ code FAR *next; /* next available space in table */
50
+ const unsigned short FAR *base; /* base value table to use */
51
+ const unsigned short FAR *extra; /* extra bits table to use */
52
+ unsigned match; /* use base and extra for symbol >= match */
53
+ unsigned short count[MAXBITS+1]; /* number of codes of each length */
54
+ unsigned short offs[MAXBITS+1]; /* offsets in table for each length */
55
+ static const unsigned short lbase[31] = { /* Length codes 257..285 base */
56
+ 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
57
+ 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
58
+ static const unsigned short lext[31] = { /* Length codes 257..285 extra */
59
+ 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,
60
+ 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 203, 77};
61
+ static const unsigned short dbase[32] = { /* Distance codes 0..29 base */
62
+ 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
63
+ 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
64
+ 8193, 12289, 16385, 24577, 0, 0};
65
+ static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
66
+ 16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22,
67
+ 23, 23, 24, 24, 25, 25, 26, 26, 27, 27,
68
+ 28, 28, 29, 29, 64, 64};
69
+
70
+ /*
71
+ Process a set of code lengths to create a canonical Huffman code. The
72
+ code lengths are lens[0..codes-1]. Each length corresponds to the
73
+ symbols 0..codes-1. The Huffman code is generated by first sorting the
74
+ symbols by length from short to long, and retaining the symbol order
75
+ for codes with equal lengths. Then the code starts with all zero bits
76
+ for the first code of the shortest length, and the codes are integer
77
+ increments for the same length, and zeros are appended as the length
78
+ increases. For the deflate format, these bits are stored backwards
79
+ from their more natural integer increment ordering, and so when the
80
+ decoding tables are built in the large loop below, the integer codes
81
+ are incremented backwards.
82
+
83
+ This routine assumes, but does not check, that all of the entries in
84
+ lens[] are in the range 0..MAXBITS. The caller must assure this.
85
+ 1..MAXBITS is interpreted as that code length. zero means that that
86
+ symbol does not occur in this code.
87
+
88
+ The codes are sorted by computing a count of codes for each length,
89
+ creating from that a table of starting indices for each length in the
90
+ sorted table, and then entering the symbols in order in the sorted
91
+ table. The sorted table is work[], with that space being provided by
92
+ the caller.
93
+
94
+ The length counts are used for other purposes as well, i.e. finding
95
+ the minimum and maximum length codes, determining if there are any
96
+ codes at all, checking for a valid set of lengths, and looking ahead
97
+ at length counts to determine sub-table sizes when building the
98
+ decoding tables.
99
+ */
100
+
101
+ /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
102
+ for (len = 0; len <= MAXBITS; len++)
103
+ count[len] = 0;
104
+ for (sym = 0; sym < codes; sym++)
105
+ count[lens[sym]]++;
106
+
107
+ /* bound code lengths, force root to be within code lengths */
108
+ root = *bits;
109
+ for (max = MAXBITS; max >= 1; max--)
110
+ if (count[max] != 0) break;
111
+ if (root > max) root = max;
112
+ if (max == 0) { /* no symbols to code at all */
113
+ here.op = (unsigned char)64; /* invalid code marker */
114
+ here.bits = (unsigned char)1;
115
+ here.val = (unsigned short)0;
116
+ *(*table)++ = here; /* make a table to force an error */
117
+ *(*table)++ = here;
118
+ *bits = 1;
119
+ return 0; /* no symbols, but wait for decoding to report error */
120
+ }
121
+ for (min = 1; min < max; min++)
122
+ if (count[min] != 0) break;
123
+ if (root < min) root = min;
124
+
125
+ /* check for an over-subscribed or incomplete set of lengths */
126
+ left = 1;
127
+ for (len = 1; len <= MAXBITS; len++) {
128
+ left <<= 1;
129
+ left -= count[len];
130
+ if (left < 0) return -1; /* over-subscribed */
131
+ }
132
+ if (left > 0 && (type == CODES || max != 1))
133
+ return -1; /* incomplete set */
134
+
135
+ /* generate offsets into symbol table for each length for sorting */
136
+ offs[1] = 0;
137
+ for (len = 1; len < MAXBITS; len++)
138
+ offs[len + 1] = offs[len] + count[len];
139
+
140
+ /* sort symbols by length, by symbol order within each length */
141
+ for (sym = 0; sym < codes; sym++)
142
+ if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
143
+
144
+ /*
145
+ Create and fill in decoding tables. In this loop, the table being
146
+ filled is at next and has curr index bits. The code being used is huff
147
+ with length len. That code is converted to an index by dropping drop
148
+ bits off of the bottom. For codes where len is less than drop + curr,
149
+ those top drop + curr - len bits are incremented through all values to
150
+ fill the table with replicated entries.
151
+
152
+ root is the number of index bits for the root table. When len exceeds
153
+ root, sub-tables are created pointed to by the root entry with an index
154
+ of the low root bits of huff. This is saved in low to check for when a
155
+ new sub-table should be started. drop is zero when the root table is
156
+ being filled, and drop is root when sub-tables are being filled.
157
+
158
+ When a new sub-table is needed, it is necessary to look ahead in the
159
+ code lengths to determine what size sub-table is needed. The length
160
+ counts are used for this, and so count[] is decremented as codes are
161
+ entered in the tables.
162
+
163
+ used keeps track of how many table entries have been allocated from the
164
+ provided *table space. It is checked for LENS and DIST tables against
165
+ the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in
166
+ the initial root table size constants. See the comments in inftrees.h
167
+ for more information.
168
+
169
+ sym increments through all symbols, and the loop terminates when
170
+ all codes of length max, i.e. all codes, have been processed. This
171
+ routine permits incomplete codes, so another loop after this one fills
172
+ in the rest of the decoding tables with invalid code markers.
173
+ */
174
+
175
+ /* set up for code type */
176
+ switch (type) {
177
+ case CODES:
178
+ base = extra = work; /* dummy value--not used */
179
+ match = 20;
180
+ break;
181
+ case LENS:
182
+ base = lbase;
183
+ extra = lext;
184
+ match = 257;
185
+ break;
186
+ default: /* DISTS */
187
+ base = dbase;
188
+ extra = dext;
189
+ match = 0;
190
+ }
191
+
192
+ /* initialize state for loop */
193
+ huff = 0; /* starting code */
194
+ sym = 0; /* starting code symbol */
195
+ len = min; /* starting code length */
196
+ next = *table; /* current table to fill in */
197
+ curr = root; /* current table index bits */
198
+ drop = 0; /* current bits to drop from code for index */
199
+ low = (unsigned)(-1); /* trigger new sub-table when len > root */
200
+ used = 1U << root; /* use root table entries */
201
+ mask = used - 1; /* mask for comparing low */
202
+
203
+ /* check available table space */
204
+ if ((type == LENS && used > ENOUGH_LENS) ||
205
+ (type == DISTS && used > ENOUGH_DISTS))
206
+ return 1;
207
+
208
+ /* process all codes and make table entries */
209
+ for (;;) {
210
+ /* create table entry */
211
+ here.bits = (unsigned char)(len - drop);
212
+ if (work[sym] + 1U < match) {
213
+ here.op = (unsigned char)0;
214
+ here.val = work[sym];
215
+ }
216
+ else if (work[sym] >= match) {
217
+ here.op = (unsigned char)(extra[work[sym] - match]);
218
+ here.val = base[work[sym] - match];
219
+ }
220
+ else {
221
+ here.op = (unsigned char)(32 + 64); /* end of block */
222
+ here.val = 0;
223
+ }
224
+
225
+ /* replicate for those indices with low len bits equal to huff */
226
+ incr = 1U << (len - drop);
227
+ fill = 1U << curr;
228
+ min = fill; /* save offset to next table */
229
+ do {
230
+ fill -= incr;
231
+ next[(huff >> drop) + fill] = here;
232
+ } while (fill != 0);
233
+
234
+ /* backwards increment the len-bit code huff */
235
+ incr = 1U << (len - 1);
236
+ while (huff & incr)
237
+ incr >>= 1;
238
+ if (incr != 0) {
239
+ huff &= incr - 1;
240
+ huff += incr;
241
+ }
242
+ else
243
+ huff = 0;
244
+
245
+ /* go to next symbol, update count, len */
246
+ sym++;
247
+ if (--(count[len]) == 0) {
248
+ if (len == max) break;
249
+ len = lens[work[sym]];
250
+ }
251
+
252
+ /* create new sub-table if needed */
253
+ if (len > root && (huff & mask) != low) {
254
+ /* if first time, transition to sub-tables */
255
+ if (drop == 0)
256
+ drop = root;
257
+
258
+ /* increment past last table */
259
+ next += min; /* here min is 1 << curr */
260
+
261
+ /* determine length of next table */
262
+ curr = len - drop;
263
+ left = (int)(1 << curr);
264
+ while (curr + drop < max) {
265
+ left -= count[curr + drop];
266
+ if (left <= 0) break;
267
+ curr++;
268
+ left <<= 1;
269
+ }
270
+
271
+ /* check for enough space */
272
+ used += 1U << curr;
273
+ if ((type == LENS && used > ENOUGH_LENS) ||
274
+ (type == DISTS && used > ENOUGH_DISTS))
275
+ return 1;
276
+
277
+ /* point entry in root table to sub-table */
278
+ low = huff & mask;
279
+ (*table)[low].op = (unsigned char)curr;
280
+ (*table)[low].bits = (unsigned char)root;
281
+ (*table)[low].val = (unsigned short)(next - *table);
282
+ }
283
+ }
284
+
285
+ /* fill in remaining table entry if code is incomplete (guaranteed to have
286
+ at most one remaining entry, since if the code is incomplete, the
287
+ maximum code length that was allowed to get this far is one bit) */
288
+ if (huff != 0) {
289
+ here.op = (unsigned char)64; /* invalid code marker */
290
+ here.bits = (unsigned char)(len - drop);
291
+ here.val = (unsigned short)0;
292
+ next[huff] = here;
293
+ }
294
+
295
+ /* set return parameters */
296
+ *table += used;
297
+ *bits = root;
298
+ return 0;
299
+ }
@@ -0,0 +1,62 @@
1
+ /* inftrees.h -- header to use inftrees.c
2
+ * Copyright (C) 1995-2005, 2010 Mark Adler
3
+ * For conditions of distribution and use, see copyright notice in zlib.h
4
+ */
5
+
6
+ /* WARNING: this file should *not* be used by applications. It is
7
+ part of the implementation of the compression library and is
8
+ subject to change. Applications should only use zlib.h.
9
+ */
10
+
11
+ /* Structure for decoding tables. Each entry provides either the
12
+ information needed to do the operation requested by the code that
13
+ indexed that table entry, or it provides a pointer to another
14
+ table that indexes more bits of the code. op indicates whether
15
+ the entry is a pointer to another table, a literal, a length or
16
+ distance, an end-of-block, or an invalid code. For a table
17
+ pointer, the low four bits of op is the number of index bits of
18
+ that table. For a length or distance, the low four bits of op
19
+ is the number of extra bits to get after the code. bits is
20
+ the number of bits in this code or part of the code to drop off
21
+ of the bit buffer. val is the actual byte to output in the case
22
+ of a literal, the base length or distance, or the offset from
23
+ the current table to the next table. Each entry is four bytes. */
24
+ typedef struct {
25
+ unsigned char op; /* operation, extra bits, table bits */
26
+ unsigned char bits; /* bits in this part of the code */
27
+ unsigned short val; /* offset in table or code value */
28
+ } code;
29
+
30
+ /* op values as set by inflate_table():
31
+ 00000000 - literal
32
+ 0000tttt - table link, tttt != 0 is the number of table index bits
33
+ 0001eeee - length or distance, eeee is the number of extra bits
34
+ 01100000 - end of block
35
+ 01000000 - invalid code
36
+ */
37
+
38
+ /* Maximum size of the dynamic table. The maximum number of code structures is
39
+ 1444, which is the sum of 852 for literal/length codes and 592 for distance
40
+ codes. These values were found by exhaustive searches using the program
41
+ examples/enough.c found in the zlib distribution. The arguments to that
42
+ program are the number of symbols, the initial root table size, and the
43
+ maximum bit length of a code. "enough 286 9 15" for literal/length codes
44
+ returns 852, and "enough 30 6 15" for distance codes returns 592. The
45
+ initial root table size (9 or 6) is found in the fifth argument of the
46
+ inflate_table() calls in inflate.c and infback.c. If the root table size is
47
+ changed, then these maximum sizes would be need to be recalculated and
48
+ updated. */
49
+ #define ENOUGH_LENS 852
50
+ #define ENOUGH_DISTS 592
51
+ #define ENOUGH (ENOUGH_LENS+ENOUGH_DISTS)
52
+
53
+ /* Type of code to build for inflate_table() */
54
+ typedef enum {
55
+ CODES,
56
+ LENS,
57
+ DISTS
58
+ } codetype;
59
+
60
+ int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens,
61
+ unsigned codes, code FAR * FAR *table,
62
+ unsigned FAR *bits, unsigned short FAR *work);