blob: 207d80138db557712529c54253e74185cb7ddac5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Alain Knaffbc22c172009-01-04 22:46:16 +01002#ifndef DECOMPRESS_GENERIC_H
3#define DECOMPRESS_GENERIC_H
4
Yinghai Lud97b07c2014-08-08 14:23:14 -07005typedef int (*decompress_fn) (unsigned char *inbuf, long len,
6 long (*fill)(void*, unsigned long),
7 long (*flush)(void*, unsigned long),
Phillip Lougherdaeb6b62009-08-06 15:09:30 -07008 unsigned char *outbuf,
Yinghai Lud97b07c2014-08-08 14:23:14 -07009 long *posp,
Alain Knaffbc22c172009-01-04 22:46:16 +010010 void(*error)(char *x));
11
12/* inbuf - input buffer
13 *len - len of pre-read data in inbuf
Phillip Lougherdaeb6b62009-08-06 15:09:30 -070014 *fill - function to fill inbuf when empty
15 *flush - function to write out outbuf
16 *outbuf - output buffer
Alain Knaffbc22c172009-01-04 22:46:16 +010017 *posp - if non-null, input position (number of bytes read) will be
18 * returned here
19 *
Phillip Lougherdaeb6b62009-08-06 15:09:30 -070020 *If len != 0, inbuf should contain all the necessary input data, and fill
21 *should be NULL
22 *If len = 0, inbuf can be NULL, in which case the decompressor will allocate
23 *the input buffer. If inbuf != NULL it must be at least XXX_IOBUF_SIZE bytes.
24 *fill will be called (repeatedly...) to read data, at most XXX_IOBUF_SIZE
25 *bytes should be read per call. Replace XXX with the appropriate decompressor
26 *name, i.e. LZMA_IOBUF_SIZE.
27 *
28 *If flush = NULL, outbuf must be large enough to buffer all the expected
29 *output. If flush != NULL, the output buffer will be allocated by the
30 *decompressor (outbuf = NULL), and the flush function will be called to
31 *flush the output buffer at the appropriate time (decompressor and stream
32 *dependent).
Alain Knaffbc22c172009-01-04 22:46:16 +010033 */
34
Phillip Lougherdaeb6b62009-08-06 15:09:30 -070035
H. Peter Anvin889c92d2009-01-08 15:14:17 -080036/* Utility routine to detect the decompression method */
Yinghai Lud97b07c2014-08-08 14:23:14 -070037decompress_fn decompress_method(const unsigned char *inbuf, long len,
H. Peter Anvin889c92d2009-01-08 15:14:17 -080038 const char **name);
Alain Knaffbc22c172009-01-04 22:46:16 +010039
40#endif