]> git.proxmox.com Git - mirror_zfs-debian.git/blame - include/sys/zio_compress.h
Imported Upstream version 0.6.2+git20140204
[mirror_zfs-debian.git] / include / sys / zio_compress.h
CommitLineData
34dc7c2f
BB
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
428870ff 23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
34dc7c2f
BB
24 * Use is subject to license terms.
25 */
26
27#ifndef _SYS_ZIO_COMPRESS_H
28#define _SYS_ZIO_COMPRESS_H
29
34dc7c2f
BB
30#include <sys/zio.h>
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
a08ee875 36/* Common signature for all zio compress functions. */
34dc7c2f
BB
37typedef size_t zio_compress_func_t(void *src, void *dst,
38 size_t s_len, size_t d_len, int);
a08ee875 39/* Common signature for all zio decompress functions. */
34dc7c2f
BB
40typedef int zio_decompress_func_t(void *src, void *dst,
41 size_t s_len, size_t d_len, int);
42
43/*
44 * Information about each compression function.
45 */
b01615d5 46typedef const struct zio_compress_info {
34dc7c2f
BB
47 zio_compress_func_t *ci_compress; /* compression function */
48 zio_decompress_func_t *ci_decompress; /* decompression function */
49 int ci_level; /* level parameter */
50 char *ci_name; /* algorithm name */
51} zio_compress_info_t;
52
53extern zio_compress_info_t zio_compress_table[ZIO_COMPRESS_FUNCTIONS];
54
9759c60f
ED
55/*
56 * lz4 compression init & free
57 */
58extern void lz4_init(void);
59extern void lz4_fini(void);
60
34dc7c2f
BB
61/*
62 * Compression routines.
63 */
64extern size_t lzjb_compress(void *src, void *dst, size_t s_len, size_t d_len,
65 int level);
66extern int lzjb_decompress(void *src, void *dst, size_t s_len, size_t d_len,
67 int level);
68extern size_t gzip_compress(void *src, void *dst, size_t s_len, size_t d_len,
69 int level);
70extern int gzip_decompress(void *src, void *dst, size_t s_len, size_t d_len,
71 int level);
428870ff
BB
72extern size_t zle_compress(void *src, void *dst, size_t s_len, size_t d_len,
73 int level);
74extern int zle_decompress(void *src, void *dst, size_t s_len, size_t d_len,
75 int level);
a08ee875 76extern size_t lz4_compress_zfs(void *src, void *dst, size_t s_len, size_t d_len,
9759c60f 77 int level);
a08ee875 78extern int lz4_decompress_zfs(void *src, void *dst, size_t s_len, size_t d_len,
9759c60f 79 int level);
34dc7c2f
BB
80
81/*
82 * Compress and decompress data if necessary.
83 */
428870ff
BB
84extern size_t zio_compress_data(enum zio_compress c, void *src, void *dst,
85 size_t s_len);
86extern int zio_decompress_data(enum zio_compress c, void *src, void *dst,
87 size_t s_len, size_t d_len);
34dc7c2f
BB
88
89#ifdef __cplusplus
90}
91#endif
92
93#endif /* _SYS_ZIO_COMPRESS_H */