blob: 9a0cc789719fab5947f8c2cb11654b72fe19f6f3 [file] [log] [blame]
William Lallemand82fe75c2012-10-23 10:25:10 +02001/*
2 * include/types/compression.h
3 * This file defines everything related to compression.
4 *
5 * Copyright 2012 Exceliance, David Du Colombier <dducolombier@exceliance.fr>
6 William Lallemand <wlallemand@exceliance.fr>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation, version 2.1
11 * exclusively.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#ifndef _TYPES_COMP_H
24#define _TYPES_COMP_H
25
Willy Tarreau418b8c02015-03-29 03:32:06 +020026#if defined(USE_SLZ)
Willy Tarreaua5c51ac2015-10-13 16:45:21 +020027#ifdef USE_ZLIB
28#error "Cannot build with both USE_SLZ and USE_ZLIB at the same time."
29#endif
Willy Tarreau418b8c02015-03-29 03:32:06 +020030#include <slz.h>
31#elif defined(USE_ZLIB)
William Lallemand82fe75c2012-10-23 10:25:10 +020032#include <zlib.h>
Willy Tarreau418b8c02015-03-29 03:32:06 +020033#endif
William Lallemand08289f12012-10-31 11:19:18 +010034
Christopher Faulet92d36382015-11-05 13:35:03 +010035#include <common/buffer.h>
36
William Lallemand82fe75c2012-10-23 10:25:10 +020037struct comp {
38 struct comp_algo *algos;
39 struct comp_type *types;
Willy Tarreau70737d12012-10-27 00:34:28 +020040 unsigned int offload;
William Lallemand82fe75c2012-10-23 10:25:10 +020041};
42
William Lallemand1c2d6222012-10-30 15:52:53 +010043struct comp_ctx {
Willy Tarreau418b8c02015-03-29 03:32:06 +020044#if defined(USE_SLZ)
45 struct slz_stream strm;
46 const void *direct_ptr; /* NULL or pointer to beginning of data */
47 int direct_len; /* length of direct_ptr if not NULL */
48 struct buffer *queued; /* if not NULL, data already queued */
49#elif defined(USE_ZLIB)
William Lallemand1c2d6222012-10-30 15:52:53 +010050 z_stream strm; /* zlib stream */
William Lallemand2b502472012-10-30 14:30:39 +010051 void *zlib_deflate_state;
52 void *zlib_window;
53 void *zlib_prev;
54 void *zlib_pending_buf;
55 void *zlib_head;
Willy Tarreau418b8c02015-03-29 03:32:06 +020056#endif
William Lallemandf3747832012-11-09 12:33:10 +010057 int cur_lvl;
William Lallemand1c2d6222012-10-30 15:52:53 +010058};
59
Willy Tarreau615105e2015-03-28 16:40:46 +010060/* Thanks to MSIE/IIS, the "deflate" name is ambigous, as according to the RFC
61 * it's a zlib-wrapped deflate stream, but MSIE only understands a raw deflate
62 * stream. For this reason some people prefer to emit a raw deflate stream on
63 * "deflate" and we'll need two algos for the same name, they are distinguished
64 * with the config name.
65 */
William Lallemand82fe75c2012-10-23 10:25:10 +020066struct comp_algo {
Willy Tarreau615105e2015-03-28 16:40:46 +010067 char *cfg_name; /* config name */
68 int cfg_name_len;
69
70 char *ua_name; /* name for the user-agent */
71 int ua_name_len;
72
William Lallemand8b52bb32012-11-16 18:06:41 +010073 int (*init)(struct comp_ctx **comp_ctx, int level);
William Lallemandbf3ae612012-11-19 12:35:37 +010074 int (*add_data)(struct comp_ctx *comp_ctx, const char *in_data, int in_len, struct buffer *out);
Willy Tarreau9787efa2015-03-28 19:17:31 +010075 int (*flush)(struct comp_ctx *comp_ctx, struct buffer *out);
76 int (*finish)(struct comp_ctx *comp_ctx, struct buffer *out);
William Lallemand8b52bb32012-11-16 18:06:41 +010077 int (*end)(struct comp_ctx **comp_ctx);
William Lallemand82fe75c2012-10-23 10:25:10 +020078 struct comp_algo *next;
79};
80
William Lallemand82fe75c2012-10-23 10:25:10 +020081struct comp_type {
82 char *name;
83 int name_len;
84 struct comp_type *next;
85};
86
87
88#endif /* _TYPES_COMP_H */
89
90/*
91 * Local variables:
92 * c-indent-level: 8
93 * c-basic-offset: 8
94 * End:
95 */
96