aboutsummaryrefslogtreecommitdiff
path: root/include/io/xfrm.h
blob: 21ffa57dda0396061901ea38776cb3a1130e65d0 (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
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
 * xfrm.h
 *
 * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
 */
#ifndef IO_XFRM_H
#define IO_XFRM_H

#include "sqfs/predef.h"
#include "xfrm/stream.h"

#ifdef __cplusplus
extern "C" {
#endif

/**
 * @brief Create an input stream that transparently decodes data.
 *
 * @memberof sqfs_istream_t
 *
 * This function creates an input stream that wraps an underlying input stream
 * that is encoded/compressed and transparently decodes the data when reading
 * from it.
 *
 * @param strm A pointer to another stream that should be wrapped.
 * @param xfrm The transformation stream to use.
 *
 * @return A pointer to an input stream on success, NULL on failure.
 */
SQFS_INTERNAL sqfs_istream_t *istream_xfrm_create(sqfs_istream_t *strm,
						  xfrm_stream_t *xfrm);

/**
 * @brief Create an output stream that transparently encodes data.
 *
 * @memberof sqfs_ostream_t
 *
 * This function creates an output stream that transparently encodes
 * (e.g. compresses) all data appended to it and writes it to an
 * underlying, wrapped output stream.
 *
 * @param strm A pointer to another stream that should be wrapped.
 * @param xfrm The transformation stream to use.
 *
 * @return A pointer to an output stream on success, NULL on failure.
 */
SQFS_INTERNAL sqfs_ostream_t *ostream_xfrm_create(sqfs_ostream_t *strm,
						  xfrm_stream_t *xfrm);

#ifdef __cplusplus
}
#endif

#endif /* IO_XFRM_H */