summaryrefslogtreecommitdiffstats
path: root/src/gzip.h
blob: 437b8557340db72990ede14c257649405426f179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
 * Copyright (C) 2023  Patrick McDermott
 *
 * This file is part of opkg-opk.
 *
 * opkg-opk is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * opkg-opk is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with opkg-opk.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef OPKG_OPK_GZIP_H_
#define OPKG_OPK_GZIP_H_

struct opkg_opk_gzip;

typedef int (opkg_opk_gzip_read_func)(void *, char **, size_t *);
typedef int (opkg_opk_gzip_write_func)(void *, size_t);

/*
 * Allocates and initializes a decompression structure.
 * Parameters:
 * - read:      Function to read compressed data.  Parameter 1 is user_data,
 *              parameter 2 is an address in which the read function should
 *              store an address to compressed data, and parameter 3 is an
 *              address in which the read function should store the size of read
 *              compressed data.  Should return OPKG_OPK_OK if data is read,
 *              OPKG_OPK_END if no more data is available (end of file or
 *              archive), or OPKG_OPK_ERROR on error.
 * - user_data: Passed to read function.
 * Returns:
 * - Allocated decompression structure on success.  Free with
 *   opkg_opk_gzip_free().
 * - NULL on memory exhaustion.
 */
struct opkg_opk_gzip *
opkg_opk_gzip_init_read(opkg_opk_gzip_read_func *read, void *user_data);

struct opkg_opk_gzip *
opkg_opk_gzip_init_write(opkg_opk_gzip_write_func *write, void *user_data);

int
opkg_opk_gzip_set_write_buffer(struct opkg_opk_gzip *gzip, char *buffer,
		size_t size);

/*
 * Reads and decompresses data to output the next record (512 octets).
 * Parameters:
 * - gzip:   Decompression structure.
 * - record: Address in which to store decompressed record.
 * Returns:
 * - OPKG_OPK_OK if a record is read and decompressed.
 * - OPKG_OPK_END if the end of the gzip stream is reached.
 * - OPKG_OPK_ERROR if the read function returned an error, the compressed input
 *   data or gzip stream end prematurely, or zlib returns an error.
 */
int
opkg_opk_gzip_read(struct opkg_opk_gzip *gzip, void *record);

int
opkg_opk_gzip_write(struct opkg_opk_gzip *gzip, void *record, size_t size,
		int last);

/*
 * Frees a decompression structure.
 * Parameters:
 * - gzip: Decompression structure.
 */
int
opkg_opk_gzip_free(struct opkg_opk_gzip *gzip);

#endif  /* OPKG_OPK_GZIP_H_ */