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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
|
/*
* BriefLZ - small fast Lempel-Ziv
*
* C depacker
*
* Copyright (c) 2002-2018 Joergen Ibsen
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must
* not claim that you wrote the original software. If you use this
* software in a product, an acknowledgment in the product
* documentation would be appreciated but is not required.
*
* 2. Altered source versions must be plainly marked as such, and must
* not be misrepresented as being the original software.
*
* 3. This notice may not be removed or altered from any source
* distribution.
*/
#include "brieflz.h"
/* Internal data structure */
struct blz_state {
const unsigned char *src;
unsigned char *dst;
unsigned int tag;
int bits_left;
};
#if !defined(BLZ_NO_LUT)
static const unsigned char blz_gamma_lookup[256][2] = {
/* 00xxxxxx = 2 */
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
{ 2, 2},
/* 0100xxxx = 4 */
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
{ 4, 4},
/* 010100xx = 8 */
{ 8, 6},
{ 8, 6},
{ 8, 6},
{ 8, 6},
/* 01010100 = 16 01010101 = 16+ 01010110 = 17 01010111 = 17+ */
{16, 8},
{16, 0},
{17, 8},
{17, 0},
/* 010110xx = 9 */
{ 9, 6},
{ 9, 6},
{ 9, 6},
{ 9, 6},
/* 01011100 = 18 01011101 = 18+ 01011110 = 19 01011111 = 19+ */
{18, 8},
{18, 0},
{19, 8},
{19, 0},
/* 0110xxxx = 5 */
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
{ 5, 4},
/* 011100xx = 10 */
{10, 6},
{10, 6},
{10, 6},
{10, 6},
/* 01110100 = 20 01110101 = 20+ 01110110 = 21 01110111 = 21+ */
{20, 8},
{20, 0},
{21, 8},
{21, 0},
/* 011110xx = 11 */
{11, 6},
{11, 6},
{11, 6},
{11, 6},
/* 01111100 = 22 01111101 = 22+ 01111110 = 23 01111111 = 23+ */
{22, 8},
{22, 0},
{23, 8},
{23, 0},
/* 10xxxxxx = 3 */
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
{ 3, 2},
/* 1100xxxx = 6 */
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
{ 6, 4},
/* 110100xx = 12 */
{12, 6},
{12, 6},
{12, 6},
{12, 6},
/* 11010100 = 24 11010101 = 24+ 11010110 = 25 11010111 = 25+ */
{24, 8},
{24, 0},
{25, 8},
{25, 0},
/* 110110xx = 13 */
{13, 6},
{13, 6},
{13, 6},
{13, 6},
/* 11011100 = 26 11011101 = 26+ 11011110 = 27 11011111 = 27+ */
{26, 8},
{26, 0},
{27, 8},
{27, 0},
/* 1110xxxx = 7 */
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
{ 7, 4},
/* 111100xx = 14 */
{14, 6},
{14, 6},
{14, 6},
{14, 6},
/* 11110100 = 28 11110101 = 28+ 11110110 = 29 11110111 = 29+ */
{28, 8},
{28, 0},
{29, 8},
{29, 0},
/* 111110xx = 15 */
{15, 6},
{15, 6},
{15, 6},
{15, 6},
/* 11111100 = 30 11111101 = 30+ 11111110 = 31 11111111 = 31+ */
{30, 8},
{30, 0},
{31, 8},
{31, 0}
};
#endif
static unsigned int blz_getbit(struct blz_state *bs) {
unsigned int bit;
/* Check if tag is empty */
if (!bs->bits_left--) {
/* Load next tag */
bs->tag = (unsigned int)bs->src[0] | ((unsigned int)bs->src[1] << 8);
bs->src += 2;
bs->bits_left = 15;
}
/* Shift bit out of tag */
bit = (bs->tag & 0x8000) ? 1 : 0;
bs->tag <<= 1;
return bit;
}
static unsigned long blz_getgamma(struct blz_state *bs) {
unsigned long result = 1;
#if !defined(BLZ_NO_LUT)
/* Decode up to 8 bits of gamma2 code using lookup if possible */
if (bs->bits_left >= 8) {
unsigned int top8 = (bs->tag >> 8) & 0x00FF;
int shift;
result = blz_gamma_lookup[top8][0];
shift = (int)blz_gamma_lookup[top8][1];
if (shift) {
bs->tag <<= shift;
bs->bits_left -= shift;
return result;
}
bs->tag <<= 8;
bs->bits_left -= 8;
}
#endif
/* Input gamma2-encoded bits */
do {
result = (result << 1) + blz_getbit(bs);
} while (blz_getbit(bs));
return result;
}
unsigned long blz_depack(const void *src, void *dst, unsigned long depacked_size) {
struct blz_state bs;
unsigned long dst_size = 0;
bs.src = (const unsigned char *)src;
bs.dst = (unsigned char *)dst;
/* Initialise to one bit left in tag; that bit is zero (a literal) */
bs.bits_left = 1;
bs.tag = 0x4000;
/* Main decompression loop */
while (dst_size < depacked_size) {
if (blz_getbit(&bs)) {
/* Input match length and offset */
unsigned long len = blz_getgamma(&bs) + 2;
unsigned long off = blz_getgamma(&bs) - 2;
off = (off << 8) + (unsigned long)*bs.src++ + 1;
/* Copy match */
{
const unsigned char *p = bs.dst - off;
unsigned long i;
for (i = len; i > 0; --i) {
*bs.dst++ = *p++;
}
}
dst_size += len;
} else {
/* Copy literal */
*bs.dst++ = *bs.src++;
dst_size++;
}
}
/* Return decompressed size */
return dst_size;
}
unsigned long blz_depack_srcsize(const void *src, void *dst, unsigned long src_size) {
struct blz_state bs;
unsigned long dst_size = 0;
const unsigned char *src_end = src + src_size;
bs.src = (const unsigned char *)src;
bs.dst = (unsigned char *)dst;
/* Initialise to one bit left in tag; that bit is zero (a literal) */
bs.bits_left = 1;
bs.tag = 0x4000;
/* Main decompression loop */
while (bs.src < src_end) {
if (blz_getbit(&bs)) {
/* Input match length and offset */
unsigned long len = blz_getgamma(&bs) + 2;
unsigned long off = blz_getgamma(&bs) - 2;
off = (off << 8) + (unsigned long)*bs.src++ + 1;
/* Copy match */
{
const unsigned char *p = bs.dst - off;
unsigned long i;
for (i = len; i > 0; --i) {
*bs.dst++ = *p++;
}
}
dst_size += len;
} else {
/* Copy literal */
*bs.dst++ = *bs.src++;
dst_size++;
}
}
/* Return decompressed size */
return dst_size;
}
|