]> git.ipfire.org Git - people/ms/pakfire.git/blob - src/libpakfire/include/pakfire/compress.h
compress: Add flag to disable the progress bar
[people/ms/pakfire.git] / src / libpakfire / include / pakfire / compress.h
1 /*#############################################################################
2 # #
3 # Pakfire - The IPFire package management system #
4 # Copyright (C) 2021 Pakfire development team #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 #############################################################################*/
20
21 #ifndef PAKFIRE_COMPRESS_H
22 #define PAKFIRE_COMPRESS_H
23
24 #ifdef PAKFIRE_PRIVATE
25
26 #include <archive.h>
27
28 #include <pakfire/pakfire.h>
29
30 // Automatically detect
31 FILE* pakfire_xfopen(FILE* f, const char* mode);
32
33 // XZ
34 FILE* pakfire_xzfopen(FILE* f, const char* mode);
35
36 // ZSTD
37 FILE* pakfire_zstdfopen(FILE* f, const char* mode);
38
39 // Extract
40 enum pakfire_extract_flags {
41 PAKFIRE_EXTRACT_DRY_RUN = (1 << 0),
42 PAKFIRE_EXTRACT_NO_PROGRESS = (1 << 1),
43 PAKFIRE_EXTRACT_SHOW_THROUGHPUT = (1 << 2),
44 };
45
46 int pakfire_extract(struct pakfire* pakfire, struct archive* archive,
47 size_t size, struct pakfire_filelist* filelist, const char* prefix,
48 const char* message, int flags);
49
50 #endif
51
52 #endif /* PAKFIRE_COMPRESS_H */