2 * Samba compression library - LGPLv3
4 * Copyright © Catalyst IT 2022
6 * ** NOTE! The following LGPL license applies to this file.
7 * ** It does NOT imply that all of Samba is released under the LGPL
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 3 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
23 #ifndef HAVE_LZXPRESS_HUFFMAN_H
24 #define HAVE_LZXPRESS_HUFFMAN_H
28 struct huffman_node
*left
;
29 struct huffman_node
*right
;
37 * LZX_HUFF_COMP_HASH_BITS is how big to make the hash tables
38 * (12 means 4096, etc).
40 * A larger number (up to 16) will be faster on long messages (fewer
41 * collisions), but probably slower on short ones (more prep).
43 #define LZX_HUFF_COMP_HASH_BITS 14
47 * This struct just coalesces all the memory you need for LZ77 + Huffman
48 * compression together in one bundle.
50 * There are a few different things you want, you usually want them all, so
51 * this makes it easy to allocate them all at once.
54 struct lzxhuff_compressor_mem
{
55 struct huffman_node leaf_nodes
[512];
56 struct huffman_node internal_nodes
[512];
57 uint16_t symbol_values
[512];
58 uint16_t intermediate
[65536 + 6];
59 uint16_t hash_table1
[1 << LZX_HUFF_COMP_HASH_BITS
];
60 uint16_t hash_table2
[1 << LZX_HUFF_COMP_HASH_BITS
];
64 ssize_t
lzxpress_huffman_compress(struct lzxhuff_compressor_mem
*cmp
,
65 const uint8_t *input_bytes
,
68 size_t available_size
);
71 ssize_t
lzxpress_huffman_compress_talloc(TALLOC_CTX
*mem_ctx
,
72 const uint8_t *input_bytes
,
76 ssize_t
lzxpress_huffman_decompress(const uint8_t *input
,
79 size_t max_output_size
);
81 uint8_t *lzxpress_huffman_decompress_talloc(TALLOC_CTX
*mem_ctx
,
82 const uint8_t *input_bytes
,
87 * lzxpress_huffman_max_compressed_size()
89 * Return the most bytes the compression can take, to allow
92 size_t lzxpress_huffman_max_compressed_size(size_t input_size
);
95 #endif /* HAVE_LZXPRESS_HUFFMAN_H */