-
Notifications
You must be signed in to change notification settings - Fork 17
/
fastlzlib.h
303 lines (264 loc) · 10.2 KB
/
fastlzlib.h
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/*
zlib-like interface to fast block compression (LZ4 or FastLZ) libraries
Copyright (C) 2010-2013 Exalead SA. (http://www.exalead.com/)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Remarks/Bugs:
LZ4 compression library by Yann Collet ([email protected])
FastLZ compression library by Ariya Hidayat ([email protected])
Library encapsulation by Xavier Roche ([email protected])
*/
#ifndef FASTLZ_FASTLZLIB_H
#define FASTLZ_FASTLZLIB_H
/* optional conf.h file if build with -DFASTLZ_INCLUDE_CONF_H */
#ifdef FASTLZ_INCLUDE_CONF_H
#include "conf.h"
#endif
#ifndef ZFASTEXTERN
#ifdef _WIN32
#ifdef FASTLZ_DLL
#define ZFASTEXTERN __declspec(dllexport)
#else
#define ZFASTEXTERN __declspec(dllimport)
#endif
#else
#define ZFASTEXTERN extern
#endif
#endif
#ifndef ZFASTINLINE
#define ZFASTINLINE
#endif
/* we are using only zlib types and defines, including z_stream_s */
#define NO_DUMMY_DECL
#include "zlib.h"
#if defined (__cplusplus)
extern "C" {
#endif
/**
* The zfast structure is identical to zlib one, except for the "state" opaque
* member.
* Do not use a stream initialized by fastlzlibDecompressInit() or
* fastlzlibCompressInit() with zlib functions, or you will experience very
* annoying crashes.
**/
typedef z_stream zfast_stream;
/**
* Backend compressor type.
**/
typedef enum zfast_stream_compressor {
COMPRESSOR_FASTLZ,
COMPRESSOR_LZ4,
COMPRESSOR_LZFSE,
COMPRESSOR_DEFAULT = COMPRESSOR_FASTLZ
} zfast_stream_compressor;
/**
* Return the fastlz library version.
* (zlib equivalent: zlibVersion)
**/
ZFASTEXTERN const char * fastlzlibVersion(void);
/**
* Initialize a compressing stream.
* Returns Z_OK upon success, Z_MEM_ERROR upon memory allocation error.
* (zlib equivalent: deflateInit)
**/
ZFASTEXTERN int fastlzlibCompressInit(zfast_stream *s, int level);
/**
* Initialize a compressing stream, and set the block size to "block_size".
* The block size MUST be a power of two, and be within the
* [1024 .. 33554432] interval
* Returns Z_OK upon success, Z_MEM_ERROR upon memory allocation error.
**/
ZFASTEXTERN int fastlzlibCompressInit2(zfast_stream *s, int level,
int block_size);
/**
* Initialize a decompressing stream.
* Returns Z_OK upon success, Z_MEM_ERROR upon memory allocation error.
* (zlib equivalent: inflateInit)
**/
ZFASTEXTERN int fastlzlibDecompressInit(zfast_stream *s);
/**
* Initialize a decompressing stream, and set the block size to "block_size".
* The block size MUST be a power of two, and be within the
* [1024 .. 33554432] interval
* Returns Z_OK upon success, Z_MEM_ERROR upon memory allocation error, and
* Z_DATA_ERROR if the block size is invalid.
* (zlib equivalent: inflateInit)
**/
ZFASTEXTERN int fastlzlibDecompressInit2(zfast_stream *s, int block_size);
/**
* Set the block compressor type.
* Returns Z_OK upon success, Z_VERSION_ERROR upon if the compressor is not
* supported.
**/
ZFASTEXTERN int fastlzlibSetCompressor(zfast_stream *s,
zfast_stream_compressor compressor);
/**
* Set the block compressor function.
* The corresponding decompressor should be set using fastlzlibSetDecompress()
**/
ZFASTEXTERN void fastlzlibSetCompress(zfast_stream *s,
int (*compress)(int level,
const void* input,
int length,
void* output,
int maxout));
/**
* Set the block decompressor function.
* The corresponding compressor should be set using fastlzlibSetCompress()
**/
ZFASTEXTERN void fastlzlibSetDecompress(zfast_stream *s,
int (*decompress)(const void* input,
int length,
void* output,
int maxout));
/**
* Free allocated data.
* Returns Z_OK upon success.
* (zlib equivalent: deflateEnd)
**/
ZFASTEXTERN int fastlzlibCompressEnd(zfast_stream *s);
/**
* Free allocated data.
* Returns Z_OK upon success.
* (zlib equivalent: inflateEnd)
**/
ZFASTEXTERN int fastlzlibDecompressEnd(zfast_stream *s);
/**
* Free allocated data by a compressing or decompressing stream.
* Returns Z_OK upon success.
**/
#define fastlzlibEnd fastlzlibCompressEnd
/**
* Reset.
* Returns Z_OK upon success.
* (zlib equivalent: deflateReset)
**/
ZFASTEXTERN int fastlzlibCompressReset(zfast_stream *s);
/**
* Reset.
* Returns Z_OK upon success.
* (zlib equivalent: inflateReset)
**/
ZFASTEXTERN int fastlzlibDecompressReset(zfast_stream *s);
/**
* Reset a compressing or decompressing stream.
* Returns Z_OK upon success.
**/
#define fastlzlibReset fastlzlibCompressReset
/**
* Decompress.
* (zlib equivalent: inflate)
**/
ZFASTEXTERN int fastlzlibDecompress(zfast_stream *s);
/**
* Compress.
* (zlib equivalent: deflate)
**/
ZFASTEXTERN int fastlzlibCompress(zfast_stream *s, int flush);
/**
* Decompress.
* @arg may_buffer if non zero, accept to process partially a stream by using
* internal buffers. if zero, input data shortage or output buffer room shortage
* will return Z_BUF_ERROR. in this case, the client should ensure that the
* input data provided and the output buffer are large enough before calling
* again the function. (the output buffer should be validated before getting
* this code, to ensure that Z_BUF_ERROR implies a need to read
* additional input data)
* @arg flush if set to Z_SYNC_FLUSH, process until the next block is reached,
* and, if reached, return Z_NEED_DICT (a code currently unused outside this
* function). this flag can be used to synchronize an input compressed stream
* to a block, and seek to a desired position without the need of decompressing
* or reading the stream, by skipping each compressed block.
* see also s->total_out to get the current stream position, and
* fastlzlibGetStreamInfo() to get information on compressed blocks
**/
ZFASTEXTERN int fastlzlibDecompress2(zfast_stream *s, int flush,
const int may_buffer);
/**
* Compress.
* @arg may_buffer if non zero, accept to process partially a stream by using
* internal buffers. if zero, input data shortage or output buffer room shortage
* will return Z_BUF_ERROR. in this case, the client should ensure that the
* input data provided and the output buffer are large enough before calling
* again the function. (the output buffer should be validated before getting
* this code, to ensure that Z_BUF_ERROR implies a need to read additional
* input data)
**/
ZFASTEXTERN int fastlzlibCompress2(zfast_stream *s, int flush,
const int may_buffer);
/**
* Skip invalid data until a valid marker is found in the stream. All skipped
* data will be lost, and associated uncompressed data too.
* Call this function after fastlzlibDecompress() returned Z_DATA_ERROR to
* locate the next valid compressed block.
* Returns Z_OK upon success.
* (zlib equivalent: inflateSync)
**/
ZFASTEXTERN int fastlzlibDecompressSync(zfast_stream *s);
/**
* Return the header size, that is, the fixed size of data at the begining of
* a stream which contains details on the compression type..
**/
ZFASTEXTERN int fastlzlibGetHeaderSize(void);
/**
* Return the block size, that is, a size hint which can be used as a lower
* bound for output buffer allocation and input buffer reads.
**/
ZFASTEXTERN int fastlzlibGetBlockSize(zfast_stream *s);
/**
* Return the block size of a compressed stream begining with "input".
* Returns 0 if the stream is invalid or too short.
* You may use fastlzlibGetHeaderSize() to know how many bytes needs to be
* read for identifying a stream.
**/
ZFASTEXTERN int fastlzlibGetStreamBlockSize(const void* input, int length);
/**
* Return the last error message, if any.
* Returns NULL if no specific error message was stored.
**/
ZFASTEXTERN const char* fastlzlibGetLastErrorMessage(zfast_stream *s);
/**
* Return the block size of a compressed stream begining with "input".
* Returns Z_OK if the two members were successfully filles, Z_DATA_ERROR if
* the stream is not a valid start of block, Z_BUF_ERROR if the buffer is too
* small, and Z_STREAM_ERROR if arguments are invalid (NULL pointer).
* You may use fastlzlibGetHeaderSize() to know how many bytes needs to be
* read for identifying a stream.
**/
ZFASTEXTERN int fastlzlibGetStreamInfo(const void* input, int length,
uInt *compressed_size,
uInt *uncompressed_size);
/**
* Check if the given data is a fastlz compressed stream.
* Returns Z_OK is the stream is a fastlz compressed stream, Z_BUF_ERROR is the
* input data size is too small, and Z_DATA_ERROR is the stream is not a
* fastlz stream.
**/
ZFASTEXTERN int fastlzlibIsCompressedStream(const void* input, int length);
/**
* Return the internal memory buffers size.
* Returns -1 upon error.
**/
ZFASTEXTERN int fastlzlibCompressMemory(zfast_stream *s);
/**
* Return the internal memory buffers size.
* Returns -1 upon error.
**/
ZFASTEXTERN int fastlzlibDecompressMemory(zfast_stream *s);
#if defined (__cplusplus)
}
#endif
#endif