]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/import/import-compress.h
tree-wide: drop 'This file is part of systemd' blurb
[thirdparty/systemd.git] / src / import / import-compress.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
3e2cda69
LP
2#pragma once
3
4/***
3e2cda69 5 Copyright 2015 Lennart Poettering
3e2cda69
LP
6***/
7
71d35b6b 8#include <bzlib.h>
3e2cda69 9#include <lzma.h>
71d35b6b 10#include <sys/types.h>
3e2cda69 11#include <zlib.h>
3e2cda69
LP
12
13#include "macro.h"
14
15typedef enum ImportCompressType {
16 IMPORT_COMPRESS_UNKNOWN,
17 IMPORT_COMPRESS_UNCOMPRESSED,
18 IMPORT_COMPRESS_XZ,
19 IMPORT_COMPRESS_GZIP,
20 IMPORT_COMPRESS_BZIP2,
21 _IMPORT_COMPRESS_TYPE_MAX,
22 _IMPORT_COMPRESS_TYPE_INVALID = -1,
23} ImportCompressType;
24
25typedef struct ImportCompress {
26 ImportCompressType type;
587fec42 27 bool encoding;
3e2cda69
LP
28 union {
29 lzma_stream xz;
30 z_stream gzip;
31 bz_stream bzip2;
32 };
33} ImportCompress;
34
35typedef int (*ImportCompressCallback)(const void *data, size_t size, void *userdata);
36
37void import_compress_free(ImportCompress *c);
38
39int import_uncompress_detect(ImportCompress *c, const void *data, size_t size);
3e2cda69
LP
40int import_uncompress(ImportCompress *c, const void *data, size_t size, ImportCompressCallback callback, void *userdata);
41
587fec42
LP
42int import_compress_init(ImportCompress *c, ImportCompressType t);
43int import_compress(ImportCompress *c, const void *data, size_t size, void **buffer, size_t *buffer_size, size_t *buffer_allocated);
44int import_compress_finish(ImportCompress *c, void **buffer, size_t *buffer_size, size_t *buffer_allocated);
45
3e2cda69
LP
46const char* import_compress_type_to_string(ImportCompressType t) _const_;
47ImportCompressType import_compress_type_from_string(const char *s) _pure_;