2011-09-10 02:26:40 -04:00
|
|
|
/* enough.c -- determine the maximum size of inflate's Huffman code tables over
|
|
|
|
* all possible valid and complete Huffman codes, subject to a length limit.
|
2018-08-01 04:49:45 -04:00
|
|
|
* Copyright (C) 2007, 2008, 2012, 2018 Mark Adler
|
|
|
|
* Version 1.5 1 August 2018 Mark Adler
|
2011-09-10 02:26:40 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Version history:
|
|
|
|
1.0 3 Jan 2007 First version (derived from codecount.c version 1.4)
|
|
|
|
1.1 4 Jan 2007 Use faster incremental table usage computation
|
|
|
|
Prune examine() search on previously visited states
|
|
|
|
1.2 5 Jan 2007 Comments clean up
|
|
|
|
As inflate does, decrease root for short codes
|
|
|
|
Refuse cases where inflate would increase root
|
|
|
|
1.3 17 Feb 2008 Add argument for initial root table size
|
|
|
|
Fix bug for initial root table size == max - 1
|
|
|
|
Use a macro to compute the history index
|
2012-08-18 20:59:50 -04:00
|
|
|
1.4 18 Aug 2012 Avoid shifts more than bits in type (caused endless loop!)
|
|
|
|
Clean up comparisons of different types
|
|
|
|
Clean up code indentation
|
2018-08-01 04:49:45 -04:00
|
|
|
1.5 1 Aug 2018 Clean up code style and formatting
|
2011-09-10 02:26:40 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Examine all possible Huffman codes for a given number of symbols and a
|
2018-08-01 04:49:45 -04:00
|
|
|
maximum code length in bits to determine the maximum table size for zlib's
|
|
|
|
inflate. Only complete Huffman codes are counted.
|
2011-09-10 02:26:40 -04:00
|
|
|
|
|
|
|
Two codes are considered distinct if the vectors of the number of codes per
|
2018-08-01 04:49:45 -04:00
|
|
|
length are not identical. So permutations of the symbol assignments result
|
2011-09-10 02:26:40 -04:00
|
|
|
in the same code for the counting, as do permutations of the assignments of
|
|
|
|
the bit values to the codes (i.e. only canonical codes are counted).
|
|
|
|
|
|
|
|
We build a code from shorter to longer lengths, determining how many symbols
|
2018-08-01 04:49:45 -04:00
|
|
|
are coded at each length. At each step, we have how many symbols remain to
|
2011-09-10 02:26:40 -04:00
|
|
|
be coded, what the last code length used was, and how many bit patterns of
|
|
|
|
that length remain unused. Then we add one to the code length and double the
|
2018-08-01 04:49:45 -04:00
|
|
|
number of unused patterns to graduate to the next code length. We then
|
2011-09-10 02:26:40 -04:00
|
|
|
assign all portions of the remaining symbols to that code length that
|
2018-08-01 04:49:45 -04:00
|
|
|
preserve the properties of a correct and eventually complete code. Those
|
2011-09-10 02:26:40 -04:00
|
|
|
properties are: we cannot use more bit patterns than are available; and when
|
|
|
|
all the symbols are used, there are exactly zero possible bit patterns
|
|
|
|
remaining.
|
|
|
|
|
|
|
|
The inflate Huffman decoding algorithm uses two-level lookup tables for
|
2018-08-01 04:49:45 -04:00
|
|
|
speed. There is a single first-level table to decode codes up to root bits
|
|
|
|
in length (root == 9 in the current inflate implementation). The table has 1
|
|
|
|
<< root entries and is indexed by the next root bits of input. Codes shorter
|
|
|
|
than root bits have replicated table entries, so that the correct entry is
|
|
|
|
pointed to regardless of the bits that follow the short code. If the code is
|
|
|
|
longer than root bits, then the table entry points to a second- level table.
|
|
|
|
The size of that table is determined by the longest code with that root-bit
|
|
|
|
prefix. If that longest code has length len, then the table has size 1 <<
|
|
|
|
(len - root), to index the remaining bits in that set of codes. Each
|
|
|
|
subsequent root-bit prefix then has its own sub-table. The total number of
|
|
|
|
table entries required by the code is calculated incrementally as the number
|
|
|
|
of codes at each bit length is populated. When all of the codes are shorter
|
|
|
|
than root bits, then root is reduced to the longest code length, resulting
|
|
|
|
in a single, smaller, one-level table.
|
2011-09-10 02:26:40 -04:00
|
|
|
|
|
|
|
The inflate algorithm also provides for small values of root (relative to
|
|
|
|
the log2 of the number of symbols), where the shortest code has more bits
|
2018-08-01 04:49:45 -04:00
|
|
|
than root. In that case, root is increased to the length of the shortest
|
|
|
|
code. This program, by design, does not handle that case, so it is verified
|
2011-09-10 02:26:40 -04:00
|
|
|
that the number of symbols is less than 2^(root + 1).
|
|
|
|
|
|
|
|
In order to speed up the examination (by about ten orders of magnitude for
|
|
|
|
the default arguments), the intermediate states in the build-up of a code
|
2018-08-01 04:49:45 -04:00
|
|
|
are remembered and previously visited branches are pruned. The memory
|
2011-09-10 02:26:40 -04:00
|
|
|
required for this will increase rapidly with the total number of symbols and
|
2018-08-01 04:49:45 -04:00
|
|
|
the maximum code length in bits. However this is a very small price to pay
|
2011-09-10 02:26:40 -04:00
|
|
|
for the vast speedup.
|
|
|
|
|
|
|
|
First, all of the possible Huffman codes are counted, and reachable
|
|
|
|
intermediate states are noted by a non-zero count in a saved-results array.
|
|
|
|
Second, the intermediate states that lead to (root + 1) bit or longer codes
|
|
|
|
are used to look at all sub-codes from those junctures for their inflate
|
2018-08-01 04:49:45 -04:00
|
|
|
memory usage. (The amount of memory used is not affected by the number of
|
2011-09-10 02:26:40 -04:00
|
|
|
codes of root bits or less in length.) Third, the visited states in the
|
|
|
|
construction of those sub-codes and the associated calculation of the table
|
|
|
|
size is recalled in order to avoid recalculating from the same juncture.
|
|
|
|
Beginning the code examination at (root + 1) bit codes, which is enabled by
|
|
|
|
identifying the reachable nodes, accounts for about six of the orders of
|
2018-08-01 04:49:45 -04:00
|
|
|
magnitude of improvement for the default arguments. About another four
|
|
|
|
orders of magnitude come from not revisiting previous states. Out of
|
2011-09-10 02:26:40 -04:00
|
|
|
approximately 2x10^16 possible Huffman codes, only about 2x10^6 sub-codes
|
|
|
|
need to be examined to cover all of the possible table memory usage cases
|
|
|
|
for the default arguments of 286 symbols limited to 15-bit codes.
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
Note that an unsigned long long type is used for counting. It is quite easy
|
2011-09-10 02:26:40 -04:00
|
|
|
to exceed the capacity of an eight-byte integer with a large number of
|
|
|
|
symbols and a large maximum code length, so multiple-precision arithmetic
|
2018-08-01 04:49:45 -04:00
|
|
|
would need to replace the unsigned long long arithmetic in that case. This
|
|
|
|
program will abort if an overflow occurs. The big_t type identifies where
|
2011-09-10 02:26:40 -04:00
|
|
|
the counting takes place.
|
|
|
|
|
|
|
|
An unsigned long long type is also used for calculating the number of
|
2018-08-01 04:49:45 -04:00
|
|
|
possible codes remaining at the maximum length. This limits the maximum code
|
|
|
|
length to the number of bits in a long long minus the number of bits needed
|
|
|
|
to represent the symbols in a flat code. The code_t type identifies where
|
|
|
|
the bit pattern counting takes place.
|
2011-09-10 02:26:40 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#define local static
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// Special data types.
|
|
|
|
typedef unsigned long long big_t; // type for code counting
|
|
|
|
#define PRIbig "llu" // printf format for big_t
|
|
|
|
typedef unsigned long long code_t; // type for bit pattern counting
|
|
|
|
struct tab { // type for been here check
|
|
|
|
size_t len; // length of bit vector in char's
|
|
|
|
char *vec; // allocated bit vector
|
2011-09-10 02:26:40 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* The array for saving results, num[], is indexed with this triplet:
|
|
|
|
|
|
|
|
syms: number of symbols remaining to code
|
|
|
|
left: number of available bit patterns at length len
|
|
|
|
len: number of bits in the codes currently being assigned
|
|
|
|
|
|
|
|
Those indices are constrained thusly when saving results:
|
|
|
|
|
|
|
|
syms: 3..totsym (totsym == total symbols to code)
|
|
|
|
left: 2..syms - 1, but only the evens (so syms == 8 -> 2, 4, 6)
|
|
|
|
len: 1..max - 1 (max == maximum code length in bits)
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
syms == 2 is not saved since that immediately leads to a single code. left
|
2011-09-10 02:26:40 -04:00
|
|
|
must be even, since it represents the number of available bit patterns at
|
2018-08-01 04:49:45 -04:00
|
|
|
the current length, which is double the number at the previous length. left
|
|
|
|
ends at syms-1 since left == syms immediately results in a single code.
|
2011-09-10 02:26:40 -04:00
|
|
|
(left > sym is not allowed since that would result in an incomplete code.)
|
|
|
|
len is less than max, since the code completes immediately when len == max.
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
The offset into the array is calculated for the three indices with the first
|
|
|
|
one (syms) being outermost, and the last one (len) being innermost. We build
|
|
|
|
the array with length max-1 lists for the len index, with syms-3 of those
|
|
|
|
for each symbol. There are totsym-2 of those, with each one varying in
|
|
|
|
length as a function of sym. See the calculation of index in map() for the
|
|
|
|
index, and the calculation of size in main() for the size of the array.
|
2011-09-10 02:26:40 -04:00
|
|
|
|
|
|
|
For the deflate example of 286 symbols limited to 15-bit codes, the array
|
2018-08-01 04:49:45 -04:00
|
|
|
has 284,284 entries, taking up 2.17 MB for an 8-byte big_t. More than half
|
|
|
|
of the space allocated for saved results is actually used -- not all
|
2011-09-10 02:27:17 -04:00
|
|
|
possible triplets are reached in the generation of valid Huffman codes.
|
2011-09-10 02:26:40 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* The array for tracking visited states, done[], is itself indexed identically
|
|
|
|
to the num[] array as described above for the (syms, left, len) triplet.
|
|
|
|
Each element in the array is further indexed by the (mem, rem) doublet,
|
|
|
|
where mem is the amount of inflate table space used so far, and rem is the
|
2018-08-01 04:49:45 -04:00
|
|
|
remaining unused entries in the current inflate sub-table. Each indexed
|
2011-09-10 02:26:40 -04:00
|
|
|
element is simply one bit indicating whether the state has been visited or
|
2018-08-01 04:49:45 -04:00
|
|
|
not. Since the ranges for mem and rem are not known a priori, each bit
|
2011-09-10 02:26:40 -04:00
|
|
|
vector is of a variable size, and grows as needed to accommodate the visited
|
2018-08-01 04:49:45 -04:00
|
|
|
states. mem and rem are used to calculate a single index in a triangular
|
|
|
|
array. Since the range of mem is expected in the default case to be about
|
2011-09-10 02:26:40 -04:00
|
|
|
ten times larger than the range of rem, the array is skewed to reduce the
|
2018-08-01 04:49:45 -04:00
|
|
|
memory usage, with eight times the range for mem than for rem. See the
|
2011-09-10 02:26:40 -04:00
|
|
|
calculations for offset and bit in beenhere() for the details.
|
|
|
|
|
|
|
|
For the deflate example of 286 symbols limited to 15-bit codes, the bit
|
|
|
|
vectors grow to total approximately 21 MB, in addition to the 4.3 MB done[]
|
|
|
|
array itself.
|
|
|
|
*/
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// Globals to avoid propagating constants or constant pointers recursively.
|
2018-08-01 04:37:03 -04:00
|
|
|
struct {
|
2018-08-01 04:49:45 -04:00
|
|
|
int max; // maximum allowed bit length for the codes
|
|
|
|
int root; // size of base code table in bits
|
|
|
|
int large; // largest code table so far
|
|
|
|
size_t size; // number of elements in num and done
|
|
|
|
int *code; // number of symbols assigned to each bit length
|
|
|
|
big_t *num; // saved results array for code counting
|
|
|
|
struct tab *done; // states already evaluated array
|
2018-08-01 04:37:03 -04:00
|
|
|
} g;
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// Index function for num[] and done[].
|
2018-08-01 04:37:03 -04:00
|
|
|
#define INDEX(i,j,k) (((size_t)((i-1)>>1)*((i-2)>>1)+(j>>1)-1)*(g.max-1)+k-1)
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// Free allocated space. Uses globals code, num, and done.
|
|
|
|
local void cleanup(void) {
|
2011-09-10 02:26:40 -04:00
|
|
|
size_t n;
|
|
|
|
|
2018-08-01 04:37:03 -04:00
|
|
|
if (g.done != NULL) {
|
|
|
|
for (n = 0; n < g.size; n++)
|
|
|
|
if (g.done[n].len)
|
|
|
|
free(g.done[n].vec);
|
|
|
|
free(g.done);
|
2011-09-10 02:26:40 -04:00
|
|
|
}
|
2018-08-01 04:37:03 -04:00
|
|
|
if (g.num != NULL)
|
|
|
|
free(g.num);
|
|
|
|
if (g.code != NULL)
|
|
|
|
free(g.code);
|
2011-09-10 02:26:40 -04:00
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// Return the number of possible Huffman codes using bit patterns of lengths
|
|
|
|
// len through max inclusive, coding syms symbols, with left bit patterns of
|
|
|
|
// length len unused -- return -1 if there is an overflow in the counting. Keep
|
|
|
|
// a record of previous results in num to prevent repeating the same
|
|
|
|
// calculation. Uses the globals max and num.
|
|
|
|
local big_t count(int syms, int len, int left) {
|
|
|
|
big_t sum; // number of possible codes from this juncture
|
|
|
|
big_t got; // value returned from count()
|
|
|
|
int least; // least number of syms to use at this juncture
|
|
|
|
int most; // most number of syms to use at this juncture
|
|
|
|
int use; // number of bit patterns to use in next call
|
|
|
|
size_t index; // index of this case in *num
|
|
|
|
|
|
|
|
// see if only one possible code
|
2011-09-10 02:26:40 -04:00
|
|
|
if (syms == left)
|
|
|
|
return 1;
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// note and verify the expected state
|
2018-08-01 04:37:03 -04:00
|
|
|
assert(syms > left && left > 0 && len < g.max);
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// see if we've done this one already
|
2011-09-10 02:26:40 -04:00
|
|
|
index = INDEX(syms, left, len);
|
2018-08-01 04:37:03 -04:00
|
|
|
got = g.num[index];
|
2011-09-10 02:26:40 -04:00
|
|
|
if (got)
|
2018-08-01 04:49:45 -04:00
|
|
|
return got; // we have -- return the saved result
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// we need to use at least this many bit patterns so that the code won't be
|
|
|
|
// incomplete at the next length (more bit patterns than symbols)
|
2011-09-10 02:26:40 -04:00
|
|
|
least = (left << 1) - syms;
|
|
|
|
if (least < 0)
|
|
|
|
least = 0;
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// we can use at most this many bit patterns, lest there not be enough
|
|
|
|
// available for the remaining symbols at the maximum length (if there were
|
|
|
|
// no limit to the code length, this would become: most = left - 1)
|
2018-08-01 04:37:03 -04:00
|
|
|
most = (((code_t)left << (g.max - len)) - syms) /
|
|
|
|
(((code_t)1 << (g.max - len)) - 1);
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// count all possible codes from this juncture and add them up
|
2011-09-10 02:26:40 -04:00
|
|
|
sum = 0;
|
|
|
|
for (use = least; use <= most; use++) {
|
|
|
|
got = count(syms - use, len + 1, (left - use) << 1);
|
|
|
|
sum += got;
|
2018-08-01 04:49:45 -04:00
|
|
|
if (got == (big_t)0 - 1 || sum < got) // overflow
|
2012-08-18 20:59:50 -04:00
|
|
|
return (big_t)0 - 1;
|
2011-09-10 02:26:40 -04:00
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// verify that all recursive calls are productive
|
2011-09-10 02:26:40 -04:00
|
|
|
assert(sum != 0);
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// save the result and return it
|
2018-08-01 04:37:03 -04:00
|
|
|
g.num[index] = sum;
|
2011-09-10 02:26:40 -04:00
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// Return true if we've been here before, set to true if not. Set a bit in a
|
|
|
|
// bit vector to indicate visiting this state. Each (syms,len,left) state has a
|
|
|
|
// variable size bit vector indexed by (mem,rem). The bit vector is lengthened
|
|
|
|
// if needed to allow setting the (mem,rem) bit.
|
|
|
|
local int beenhere(int syms, int len, int left, int mem, int rem) {
|
|
|
|
size_t index; // index for this state's bit vector
|
|
|
|
size_t offset; // offset in this state's bit vector
|
|
|
|
int bit; // mask for this state's bit
|
|
|
|
size_t length; // length of the bit vector in bytes
|
|
|
|
char *vector; // new or enlarged bit vector
|
|
|
|
|
|
|
|
// point to vector for (syms,left,len), bit in vector for (mem,rem)
|
2011-09-10 02:26:40 -04:00
|
|
|
index = INDEX(syms, left, len);
|
2018-08-01 04:37:03 -04:00
|
|
|
mem -= 1 << g.root;
|
2011-09-10 02:26:40 -04:00
|
|
|
offset = (mem >> 3) + rem;
|
|
|
|
offset = ((offset * (offset + 1)) >> 1) + rem;
|
|
|
|
bit = 1 << (mem & 7);
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// see if we've been here
|
2018-08-01 04:37:03 -04:00
|
|
|
length = g.done[index].len;
|
|
|
|
if (offset < length && (g.done[index].vec[offset] & bit) != 0)
|
2018-08-01 04:49:45 -04:00
|
|
|
return 1; // done this!
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// we haven't been here before -- set the bit to show we have now
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// see if we need to lengthen the vector in order to set the bit
|
2011-09-10 02:26:40 -04:00
|
|
|
if (length <= offset) {
|
2018-08-01 04:49:45 -04:00
|
|
|
// if we have one already, enlarge it, zero out the appended space
|
2011-09-10 02:26:40 -04:00
|
|
|
if (length) {
|
|
|
|
do {
|
|
|
|
length <<= 1;
|
|
|
|
} while (length <= offset);
|
2018-08-01 04:37:03 -04:00
|
|
|
vector = realloc(g.done[index].vec, length);
|
2011-09-10 02:26:40 -04:00
|
|
|
if (vector != NULL)
|
2018-08-01 04:37:03 -04:00
|
|
|
memset(vector + g.done[index].len, 0,
|
|
|
|
length - g.done[index].len);
|
2011-09-10 02:26:40 -04:00
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// otherwise we need to make a new vector and zero it out
|
2011-09-10 02:26:40 -04:00
|
|
|
else {
|
2018-08-01 04:37:03 -04:00
|
|
|
length = 1 << (len - g.root);
|
2011-09-10 02:26:40 -04:00
|
|
|
while (length <= offset)
|
|
|
|
length <<= 1;
|
|
|
|
vector = calloc(length, sizeof(char));
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// in either case, bail if we can't get the memory
|
2011-09-10 02:26:40 -04:00
|
|
|
if (vector == NULL) {
|
|
|
|
fputs("abort: unable to allocate enough memory\n", stderr);
|
|
|
|
cleanup();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// install the new vector
|
2018-08-01 04:37:03 -04:00
|
|
|
g.done[index].len = length;
|
|
|
|
g.done[index].vec = vector;
|
2011-09-10 02:26:40 -04:00
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// set the bit
|
2018-08-01 04:37:03 -04:00
|
|
|
g.done[index].vec[offset] |= bit;
|
2011-09-10 02:26:40 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// Examine all possible codes from the given node (syms, len, left). Compute
|
|
|
|
// the amount of memory required to build inflate's decoding tables, where the
|
|
|
|
// number of code structures used so far is mem, and the number remaining in
|
|
|
|
// the current sub-table is rem. Uses the globals max, code, root, large, and
|
|
|
|
// done.
|
|
|
|
local void examine(int syms, int len, int left, int mem, int rem) {
|
|
|
|
int least; // least number of syms to use at this juncture
|
|
|
|
int most; // most number of syms to use at this juncture
|
|
|
|
int use; // number of bit patterns to use in next call
|
|
|
|
|
|
|
|
// see if we have a complete code
|
2011-09-10 02:26:40 -04:00
|
|
|
if (syms == left) {
|
2018-08-01 04:49:45 -04:00
|
|
|
// set the last code entry
|
2018-08-01 04:37:03 -04:00
|
|
|
g.code[len] = left;
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// complete computation of memory used by this code
|
2011-09-10 02:26:40 -04:00
|
|
|
while (rem < left) {
|
|
|
|
left -= rem;
|
2018-08-01 04:37:03 -04:00
|
|
|
rem = 1 << (len - g.root);
|
2011-09-10 02:26:40 -04:00
|
|
|
mem += rem;
|
|
|
|
}
|
|
|
|
assert(rem == left);
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// if this is a new maximum, show the entries used and the sub-code
|
2018-08-01 04:37:03 -04:00
|
|
|
if (mem > g.large) {
|
|
|
|
g.large = mem;
|
2011-09-10 02:26:40 -04:00
|
|
|
printf("max %d: ", mem);
|
2018-08-01 04:37:03 -04:00
|
|
|
for (use = g.root + 1; use <= g.max; use++)
|
|
|
|
if (g.code[use])
|
|
|
|
printf("%d[%d] ", g.code[use], use);
|
2011-09-10 02:26:40 -04:00
|
|
|
putchar('\n');
|
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// remove entries as we drop back down in the recursion
|
2018-08-01 04:37:03 -04:00
|
|
|
g.code[len] = 0;
|
2011-09-10 02:26:40 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// prune the tree if we can
|
2011-09-10 02:26:40 -04:00
|
|
|
if (beenhere(syms, len, left, mem, rem))
|
|
|
|
return;
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// we need to use at least this many bit patterns so that the code won't be
|
|
|
|
// incomplete at the next length (more bit patterns than symbols)
|
2011-09-10 02:26:40 -04:00
|
|
|
least = (left << 1) - syms;
|
|
|
|
if (least < 0)
|
|
|
|
least = 0;
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// we can use at most this many bit patterns, lest there not be enough
|
|
|
|
// available for the remaining symbols at the maximum length (if there were
|
|
|
|
// no limit to the code length, this would become: most = left - 1)
|
2018-08-01 04:37:03 -04:00
|
|
|
most = (((code_t)left << (g.max - len)) - syms) /
|
|
|
|
(((code_t)1 << (g.max - len)) - 1);
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// occupy least table spaces, creating new sub-tables as needed
|
2011-09-10 02:26:40 -04:00
|
|
|
use = least;
|
|
|
|
while (rem < use) {
|
|
|
|
use -= rem;
|
2018-08-01 04:37:03 -04:00
|
|
|
rem = 1 << (len - g.root);
|
2011-09-10 02:26:40 -04:00
|
|
|
mem += rem;
|
|
|
|
}
|
|
|
|
rem -= use;
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// examine codes from here, updating table space as we go
|
2011-09-10 02:26:40 -04:00
|
|
|
for (use = least; use <= most; use++) {
|
2018-08-01 04:37:03 -04:00
|
|
|
g.code[len] = use;
|
2011-09-10 02:26:40 -04:00
|
|
|
examine(syms - use, len + 1, (left - use) << 1,
|
2018-08-01 04:37:03 -04:00
|
|
|
mem + (rem ? 1 << (len - g.root) : 0), rem << 1);
|
2011-09-10 02:26:40 -04:00
|
|
|
if (rem == 0) {
|
2018-08-01 04:37:03 -04:00
|
|
|
rem = 1 << (len - g.root);
|
2011-09-10 02:26:40 -04:00
|
|
|
mem += rem;
|
|
|
|
}
|
|
|
|
rem--;
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// remove entries as we drop back down in the recursion
|
2018-08-01 04:37:03 -04:00
|
|
|
g.code[len] = 0;
|
2011-09-10 02:26:40 -04:00
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// Look at all sub-codes starting with root + 1 bits. Look at only the valid
|
|
|
|
// intermediate code states (syms, left, len). For each completed code,
|
|
|
|
// calculate the amount of memory required by inflate to build the decoding
|
|
|
|
// tables. Find the maximum amount of memory required and show the code that
|
|
|
|
// requires that maximum. Uses the globals max, root, and num.
|
|
|
|
local void enough(int syms) {
|
|
|
|
int n; // number of remaing symbols for this node
|
|
|
|
int left; // number of unused bit patterns at this length
|
|
|
|
size_t index; // index of this case in *num
|
|
|
|
|
|
|
|
// clear code
|
2018-08-01 04:37:03 -04:00
|
|
|
for (n = 0; n <= g.max; n++)
|
|
|
|
g.code[n] = 0;
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// look at all (root + 1) bit and longer codes
|
|
|
|
g.large = 1 << g.root; // base table
|
|
|
|
if (g.root < g.max) // otherwise, there's only a base table
|
2011-09-10 02:26:40 -04:00
|
|
|
for (n = 3; n <= syms; n++)
|
2018-08-01 04:49:45 -04:00
|
|
|
for (left = 2; left < n; left += 2) {
|
|
|
|
// look at all reachable (root + 1) bit nodes, and the
|
|
|
|
// resulting codes (complete at root + 2 or more)
|
2018-08-01 04:37:03 -04:00
|
|
|
index = INDEX(n, left, g.root + 1);
|
2018-08-01 04:49:45 -04:00
|
|
|
if (g.root + 1 < g.max && g.num[index]) // reachable node
|
2018-08-01 04:37:03 -04:00
|
|
|
examine(n, g.root + 1, left, 1 << g.root, 0);
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// also look at root bit codes with completions at root + 1
|
|
|
|
// bits (not saved in num, since complete), just in case
|
2018-08-01 04:37:03 -04:00
|
|
|
if (g.num[index - 1] && n <= left << 1)
|
|
|
|
examine((n - left) << 1, g.root + 1, (n - left) << 1,
|
|
|
|
1 << g.root, 0);
|
2011-09-10 02:26:40 -04:00
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// done
|
2018-08-01 04:37:03 -04:00
|
|
|
printf("done: maximum of %d table entries\n", g.large);
|
2011-09-10 02:26:40 -04:00
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// Examine and show the total number of possible Huffman codes for a given
|
|
|
|
// maximum number of symbols, initial root table size, and maximum code length
|
|
|
|
// in bits -- those are the command arguments in that order. The default values
|
|
|
|
// are 286, 9, and 15 respectively, for the deflate literal/length code. The
|
|
|
|
// possible codes are counted for each number of coded symbols from two to the
|
|
|
|
// maximum. The counts for each of those and the total number of codes are
|
|
|
|
// shown. The maximum number of inflate table entires is then calculated across
|
|
|
|
// all possible codes. Each new maximum number of table entries and the
|
|
|
|
// associated sub-code (starting at root + 1 == 10 bits) is shown.
|
|
|
|
//
|
|
|
|
// To count and examine Huffman codes that are not length-limited, provide a
|
|
|
|
// maximum length equal to the number of symbols minus one.
|
|
|
|
//
|
|
|
|
// For the deflate literal/length code, use "enough". For the deflate distance
|
|
|
|
// code, use "enough 30 6".
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
int syms; // total number of symbols to code
|
|
|
|
int n; // number of symbols to code for this run
|
|
|
|
big_t got; // return value of count()
|
|
|
|
big_t sum; // accumulated number of codes over n
|
|
|
|
code_t word; // for counting bits in code_t
|
|
|
|
|
|
|
|
// set up globals for cleanup()
|
2018-08-01 04:37:03 -04:00
|
|
|
g.code = NULL;
|
|
|
|
g.num = NULL;
|
|
|
|
g.done = NULL;
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// get arguments -- default to the deflate literal/length code
|
2011-09-10 02:26:40 -04:00
|
|
|
syms = 286;
|
2018-08-01 04:37:03 -04:00
|
|
|
g.root = 9;
|
|
|
|
g.max = 15;
|
2011-09-10 02:26:40 -04:00
|
|
|
if (argc > 1) {
|
|
|
|
syms = atoi(argv[1]);
|
|
|
|
if (argc > 2) {
|
2018-08-01 04:37:03 -04:00
|
|
|
g.root = atoi(argv[2]);
|
2012-08-18 20:59:50 -04:00
|
|
|
if (argc > 3)
|
2018-08-01 04:37:03 -04:00
|
|
|
g.max = atoi(argv[3]);
|
2012-08-18 20:59:50 -04:00
|
|
|
}
|
2011-09-10 02:26:40 -04:00
|
|
|
}
|
2018-08-01 04:37:03 -04:00
|
|
|
if (argc > 4 || syms < 2 || g.root < 1 || g.max < 1) {
|
2011-09-10 02:26:40 -04:00
|
|
|
fputs("invalid arguments, need: [sym >= 2 [root >= 1 [max >= 1]]]\n",
|
2012-08-18 20:59:50 -04:00
|
|
|
stderr);
|
2011-09-10 02:26:40 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// if not restricting the code length, the longest is syms - 1
|
2018-08-01 04:37:03 -04:00
|
|
|
if (g.max > syms - 1)
|
|
|
|
g.max = syms - 1;
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// determine the number of bits in a code_t
|
2012-08-18 20:59:50 -04:00
|
|
|
for (n = 0, word = 1; word; n++, word <<= 1)
|
|
|
|
;
|
2011-09-10 02:26:40 -04:00
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// make sure that the calculation of most will not overflow
|
2018-08-01 04:37:03 -04:00
|
|
|
if (g.max > n || (code_t)(syms - 2) >= (((code_t)0 - 1) >> (g.max - 1))) {
|
2011-09-10 02:26:40 -04:00
|
|
|
fputs("abort: code length too long for internal types\n", stderr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// reject impossible code requests
|
2018-08-01 04:37:03 -04:00
|
|
|
if ((code_t)(syms - 1) > ((code_t)1 << g.max) - 1) {
|
2011-09-10 02:26:40 -04:00
|
|
|
fprintf(stderr, "%d symbols cannot be coded in %d bits\n",
|
2018-08-01 04:37:03 -04:00
|
|
|
syms, g.max);
|
2011-09-10 02:26:40 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// allocate code vector
|
2018-08-01 04:37:03 -04:00
|
|
|
g.code = calloc(g.max + 1, sizeof(int));
|
|
|
|
if (g.code == NULL) {
|
2011-09-10 02:26:40 -04:00
|
|
|
fputs("abort: unable to allocate enough memory\n", stderr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// determine size of saved results array, checking for overflows,
|
|
|
|
// allocate and clear the array (set all to zero with calloc())
|
|
|
|
if (syms == 2) // iff max == 1
|
|
|
|
g.num = NULL; // won't be saving any results
|
2011-09-10 02:26:40 -04:00
|
|
|
else {
|
2018-08-01 04:37:03 -04:00
|
|
|
g.size = syms >> 1;
|
|
|
|
if (g.size > ((size_t)0 - 1) / (n = (syms - 1) >> 1) ||
|
|
|
|
(g.size *= n, g.size > ((size_t)0 - 1) / (n = g.max - 1)) ||
|
|
|
|
(g.size *= n, g.size > ((size_t)0 - 1) / sizeof(big_t)) ||
|
|
|
|
(g.num = calloc(g.size, sizeof(big_t))) == NULL) {
|
2011-09-10 02:26:40 -04:00
|
|
|
fputs("abort: unable to allocate enough memory\n", stderr);
|
|
|
|
cleanup();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// count possible codes for all numbers of symbols, add up counts
|
2011-09-10 02:26:40 -04:00
|
|
|
sum = 0;
|
|
|
|
for (n = 2; n <= syms; n++) {
|
|
|
|
got = count(n, 1, 2);
|
|
|
|
sum += got;
|
2018-08-01 04:49:45 -04:00
|
|
|
if (got == (big_t)0 - 1 || sum < got) { // overflow
|
2011-09-10 02:26:40 -04:00
|
|
|
fputs("abort: can't count that high!\n", stderr);
|
|
|
|
cleanup();
|
|
|
|
return 1;
|
|
|
|
}
|
2018-08-01 04:39:47 -04:00
|
|
|
printf("%"PRIbig" %d-codes\n", got, n);
|
2011-09-10 02:26:40 -04:00
|
|
|
}
|
2018-08-01 04:39:47 -04:00
|
|
|
printf("%"PRIbig" total codes for 2 to %d symbols", sum, syms);
|
2018-08-01 04:37:03 -04:00
|
|
|
if (g.max < syms - 1)
|
|
|
|
printf(" (%d-bit length limit)\n", g.max);
|
2011-09-10 02:26:40 -04:00
|
|
|
else
|
|
|
|
puts(" (no length limit)");
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// allocate and clear done array for beenhere()
|
2011-09-10 02:26:40 -04:00
|
|
|
if (syms == 2)
|
2018-08-01 04:37:03 -04:00
|
|
|
g.done = NULL;
|
|
|
|
else if (g.size > ((size_t)0 - 1) / sizeof(struct tab) ||
|
|
|
|
(g.done = calloc(g.size, sizeof(struct tab))) == NULL) {
|
2011-09-10 02:26:40 -04:00
|
|
|
fputs("abort: unable to allocate enough memory\n", stderr);
|
|
|
|
cleanup();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// find and show maximum inflate table usage
|
|
|
|
if (g.root > g.max) // reduce root to max length
|
2018-08-01 04:37:03 -04:00
|
|
|
g.root = g.max;
|
|
|
|
if ((code_t)syms < ((code_t)1 << (g.root + 1)))
|
2011-09-10 02:26:40 -04:00
|
|
|
enough(syms);
|
|
|
|
else
|
|
|
|
puts("cannot handle minimum code lengths > root");
|
|
|
|
|
2018-08-01 04:49:45 -04:00
|
|
|
// done
|
2011-09-10 02:26:40 -04:00
|
|
|
cleanup();
|
|
|
|
return 0;
|
|
|
|
}
|