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 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
|
/*
* JFFS3 -- Journalling Flash File System, Version 3.
*
* Copyright (C) 2004 Patrik Kluba,
* University of Szeged, Hungary
*
* For licensing information, see the file 'LICENCE' in the
* jffs3 directory.
*
* JFFS2 Id: compr_lzari.c,v 1.3 2004/06/23 16:34:39 havasi Exp
* $Id: compr_lzari.c,v 3.3 2005/01/05 16:18:59 dedekind Exp $
*
*/
/*
Lempel-Ziv-Arithmetic coding compression module for jffs3
Based on the LZARI source included in LDS (lossless datacompression sources)
*/
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
Original copyright follows:
**************************************************************
LZARI.C -- A Data Compression Program
(tab = 4 spaces)
**************************************************************
4/7/1989 Haruhiko Okumura
Use, distribute, and modify this program freely.
Please send me your improved versions.
PC-VAN SCIENCE
NIFTY-Serve PAF01022
CompuServe 74050,1022
**************************************************************
LZARI.C (c)1989 by Haruyasu Yoshizaki, Haruhiko Okumura, and Kenji Rikitake.
All rights reserved. Permission granted for non-commercial use.
*/
/*
2004-02-18 pajko <pajko(AT)halom(DOT)u-szeged(DOT)hu>
Removed unused variables and fixed no return value
2004-02-16 pajko <pajko(AT)halom(DOT)u-szeged(DOT)hu>
Initial release
*/
/* lzari.c */
#define N 4096 /* size of ring buffer */
#define F 60 /* upper limit for match_length */
#define THRESHOLD 2 /* encode string into position and length
if match_length is greater than this */
#define NIL N /* index for root of binary search trees */
static unsigned char
text_buf[N + F - 1]; /* ring buffer of size N,
with extra F-1 bytes to facilitate string comparison */
static unsigned long match_position, match_length, /* of longest match. These are
set by the InsertNode() procedure. */
lson[N + 1], rson[N + 257], dad[N + 1]; /* left & right children &
parents -- These constitute binary search trees. */
static void InitTree(void) /* Initialize trees */
{
unsigned long i;
/* For i = 0 to N - 1, rson[i] and lson[i] will be the right and
left children of node i. These nodes need not be initialized.
Also, dad[i] is the parent of node i. These are initialized to
NIL (= N), which stands for 'not used.'
For i = 0 to 255, rson[N + i + 1] is the root of the tree
for strings that begin with character i. These are initialized
to NIL. Note there are 256 trees. */
for (i = N + 1; i <= N + 256; i++) rson[i] = NIL; /* root */
for (i = 0; i < N; i++) dad[i] = NIL; /* node */
}
static void InsertNode(unsigned long r)
/* Inserts string of length F, text_buf[r..r+F-1], into one of the
trees (text_buf[r]'th tree) and returns the longest-match position
and length via the global variables match_position and match_length.
If match_length = F, then removes the old node in favor of the new
one, because the old one will be deleted sooner.
Note r plays double role, as tree node and position in buffer. */
{
unsigned long i, p, temp;
unsigned char *key;
signed long cmp;
cmp = 1; key = &text_buf[r]; p = N + 1 + key[0];
rson[r] = lson[r] = NIL; match_length = 0;
for ( ; ; ) {
if (cmp >= 0) {
if (rson[p] != NIL) p = rson[p];
else { rson[p] = r; dad[r] = p; return; }
} else {
if (lson[p] != NIL) p = lson[p];
else { lson[p] = r; dad[r] = p; return; }
}
for (i = 1; i < F; i++)
if ((cmp = key[i] - text_buf[p + i]) != 0) break;
if (i > THRESHOLD) {
if (i > match_length) {
match_position = (r - p) & (N - 1);
if ((match_length = i) >= F) break;
} else if (i == match_length) {
if ((temp = (r - p) & (N - 1)) < match_position)
match_position = temp;
}
}
}
dad[r] = dad[p]; lson[r] = lson[p]; rson[r] = rson[p];
dad[lson[p]] = r; dad[rson[p]] = r;
if (rson[dad[p]] == p) rson[dad[p]] = r;
else lson[dad[p]] = r;
dad[p] = NIL; /* remove p */
}
static void DeleteNode(unsigned long p) /* Delete node p from tree */
{
unsigned long q;
if (dad[p] == NIL) return; /* not in tree */
if (rson[p] == NIL) q = lson[p];
else if (lson[p] == NIL) q = rson[p];
else {
q = lson[p];
if (rson[q] != NIL) {
do { q = rson[q]; } while (rson[q] != NIL);
rson[dad[q]] = lson[q]; dad[lson[q]] = dad[q];
lson[q] = lson[p]; dad[lson[p]] = q;
}
rson[q] = rson[p]; dad[rson[p]] = q;
}
dad[q] = dad[p];
if (rson[dad[p]] == p) rson[dad[p]] = q;
else lson[dad[p]] = q;
dad[p] = NIL;
}
/********** Arithmetic Compression **********/
/* If you are not familiar with arithmetic compression, you should read
I. E. Witten, R. M. Neal, and J. G. Cleary,
Communications of the ACM, Vol. 30, pp. 520-540 (1987),
from which much have been borrowed. */
#define M 15
/* Q1 (= 2 to the M) must be sufficiently large, but not so
large as the unsigned long 4 * Q1 * (Q1 - 1) overflows. */
#define Q1 (1UL << M)
#define Q2 (2 * Q1)
#define Q3 (3 * Q1)
#define Q4 (4 * Q1)
#define MAX_CUM (Q1 - 1)
#define N_CHAR (256 - THRESHOLD + F)
/* character code = 0, 1, ..., N_CHAR - 1 */
static unsigned long char_to_sym[N_CHAR], sym_to_char[N_CHAR + 1];
static unsigned long
sym_freq[N_CHAR + 1], /* frequency for symbols */
sym_cum[N_CHAR + 1], /* cumulative freq for symbols */
position_cum[N + 1]; /* cumulative freq for positions */
static void StartModel(void) /* Initialize model */
{
unsigned long ch, sym, i;
sym_cum[N_CHAR] = 0;
for (sym = N_CHAR; sym >= 1; sym--) {
ch = sym - 1;
char_to_sym[ch] = sym; sym_to_char[sym] = ch;
sym_freq[sym] = 1;
sym_cum[sym - 1] = sym_cum[sym] + sym_freq[sym];
}
sym_freq[0] = 0; /* sentinel (!= sym_freq[1]) */
position_cum[N] = 0;
for (i = N; i >= 1; i--)
position_cum[i - 1] = position_cum[i] + 10000 / (i + 200);
/* empirical distribution function (quite tentative) */
/* Please devise a better mechanism! */
}
static void UpdateModel(unsigned long sym)
{
unsigned long c, ch_i, ch_sym;
unsigned long i;
if (sym_cum[0] >= MAX_CUM) {
c = 0;
for (i = N_CHAR; i > 0; i--) {
sym_cum[i] = c;
c += (sym_freq[i] = (sym_freq[i] + 1) >> 1);
}
sym_cum[0] = c;
}
for (i = sym; sym_freq[i] == sym_freq[i - 1]; i--) ;
if (i < sym) {
ch_i = sym_to_char[i]; ch_sym = sym_to_char[sym];
sym_to_char[i] = ch_sym; sym_to_char[sym] = ch_i;
char_to_sym[ch_i] = sym; char_to_sym[ch_sym] = i;
}
sym_freq[i]++;
while (--i > 0) sym_cum[i]++;
sym_cum[0]++;
}
static unsigned long BinarySearchSym(unsigned long x)
/* 1 if x >= sym_cum[1],
N_CHAR if sym_cum[N_CHAR] > x,
i such that sym_cum[i - 1] > x >= sym_cum[i] otherwise */
{
unsigned long i, j, k;
i = 1; j = N_CHAR;
while (i < j) {
k = (i + j) / 2;
if (sym_cum[k] > x) i = k + 1; else j = k;
}
return i;
}
unsigned long BinarySearchPos(unsigned long x)
/* 0 if x >= position_cum[1],
N - 1 if position_cum[N] > x,
i such that position_cum[i] > x >= position_cum[i + 1] otherwise */
{
unsigned long i, j, k;
i = 1; j = N;
while (i < j) {
k = (i + j) / 2;
if (position_cum[k] > x) i = k + 1; else j = k;
}
return i - 1;
}
/* modified for block compression */
/* on return, srclen will contain the number of successfully compressed bytes
and dstlen will contain completed compressed bytes */
static int Encode(unsigned char *srcbuf, unsigned char *dstbuf, unsigned long *srclen,
unsigned long *dstlen)
{
unsigned long c, i, len, r, s, last_match_length, sym, range;
unsigned long low = 0;
unsigned long high = Q4;
unsigned long shifts = 0; /* counts for magnifying low and high around Q2 */
unsigned char *ip, *op;
unsigned long written = 0;
unsigned long read = 0;
unsigned char buffer = 0;
unsigned char mask = 128;
unsigned char *srcend = srcbuf + *srclen;
unsigned char *dstend = dstbuf + *dstlen;
ip = srcbuf;
op = dstbuf;
StartModel();
InitTree(); /* initialize trees */
s = 0; r = N - F;
for (i = s; i < r; i++) text_buf[i] = ' '; /* Clear the buffer with
any character that will appear often. */
for (len = 0; (len < F) && (ip < srcend); len++)
text_buf[r + len] = *(ip++); /* Read F bytes into the last F bytes of
the buffer */
read = len;
for (i = 1; i <= F; i++) InsertNode(r - i); /* Insert the F strings,
each of which begins with one or more 'space' characters. Note
the order in which these strings are inserted. This way,
degenerate trees will be less likely to occur. */
InsertNode(r); /* Finally, insert the whole string just read. The
global variables match_length and match_position are set. */
do {
if (match_length > len) match_length = len; /* match_length
may be spuriously long near the end of text. */
if (match_length <= THRESHOLD) {
match_length = 1; /* Not long enough match. Send one byte. */
sym = char_to_sym[text_buf[r]];
range = high - low;
high = low + (range * sym_cum[sym - 1]) / sym_cum[0];
low += (range * sym_cum[sym ]) / sym_cum[0];
for ( ; ; ) {
if (high <= Q2) {
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
for ( ; shifts > 0; shifts--) {
buffer |= mask;
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
}
} else if (low >= Q2) {
buffer |= mask;
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
for ( ; shifts > 0; shifts--) {
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
}
low -= Q2;
high -= Q2;
} else if (low >= Q1 && high <= Q3) {
shifts++;
low -= Q1;
high -= Q1;
} else break;
low += low; high += high;
}
UpdateModel(sym);
} else {
sym = char_to_sym[255 - THRESHOLD + match_length];
range = high - low;
high = low + (range * sym_cum[sym - 1]) / sym_cum[0];
low += (range * sym_cum[sym ]) / sym_cum[0];
for ( ; ; ) {
if (high <= Q2) {
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
for ( ; shifts > 0; shifts--) {
buffer |= mask;
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
}
} else if (low >= Q2) {
buffer |= mask;
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
for ( ; shifts > 0; shifts--) {
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
}
low -= Q2;
high -= Q2;
} else if (low >= Q1 && high <= Q3) {
shifts++;
low -= Q1;
high -= Q1;
} else break;
low += low; high += high;
}
UpdateModel(sym);
range = high - low;
high = low + (range * position_cum[match_position - 1]) / position_cum[0];
low += (range * position_cum[match_position ]) / position_cum[0];
for ( ; ; ) {
if (high <= Q2) {
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
for ( ; shifts > 0; shifts--) {
buffer |= mask;
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
}
} else {
if (low >= Q2) {
buffer |= mask;
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
for ( ; shifts > 0; shifts--) {
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
}
low -= Q2;
high -= Q2;
} else {
if ((low >= Q1) && (high <= Q3)) {
shifts++;
low -= Q1;
high -= Q1;
} else {
break;
}
}
}
low += low;
high += high;
}
}
last_match_length = match_length;
for (i = 0; (i < last_match_length) && (ip < srcend); i++) {
c = *(ip++);
DeleteNode(s);
text_buf[s] = c;
if (s < F - 1)
text_buf[s + N] = c;
s = (s + 1) & (N - 1);
r = (r + 1) & (N - 1);
InsertNode(r);
}
read += i;
while (i++ < last_match_length) {
DeleteNode(s);
s = (s + 1) & (N - 1);
r = (r + 1) & (N - 1);
if (--len) InsertNode(r);
}
} while (len > 0);
shifts++;
if (low < Q1) {
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
for ( ; shifts > 0; shifts--) {
buffer |= mask;
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
}
} else {
buffer |= mask;
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
for ( ; shifts > 0; shifts--) {
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
}
}
for (i = 0; i < 7; i++) {
if ((mask >>= 1) == 0) {
if (op >= dstend) {
*dstlen = written;
return -1;
}
*(op++) = buffer;
buffer = 0;
mask = 128;
written++;
*srclen = read;
}
}
*dstlen = written;
return 0;
}
static int Decode(unsigned char *srcbuf, unsigned char *dstbuf, unsigned long srclen,
unsigned long dstlen) /* Just the reverse of Encode(). */
{
unsigned long i, r, j, k, c, range, sym;
unsigned char *ip, *op;
unsigned char *srcend = srcbuf + srclen;
unsigned char *dstend = dstbuf + dstlen;
unsigned char buffer = 0;
unsigned char mask = 0;
unsigned long low = 0;
unsigned long high = Q4;
unsigned long value = 0;
ip = srcbuf;
op = dstbuf;
for (i = 0; i < M + 2; i++) {
value *= 2;
if ((mask >>= 1) == 0) {
buffer = (ip >= srcend) ? 0 : *(ip++);
mask = 128;
}
value += ((buffer & mask) != 0);
}
StartModel();
for (i = 0; i < N - F; i++) text_buf[i] = ' ';
r = N - F;
while (op < dstend) {
range = high - low;
sym = BinarySearchSym((unsigned long)
(((value - low + 1) * sym_cum[0] - 1) / range));
high = low + (range * sym_cum[sym - 1]) / sym_cum[0];
low += (range * sym_cum[sym ]) / sym_cum[0];
for ( ; ; ) {
if (low >= Q2) {
value -= Q2; low -= Q2; high -= Q2;
} else if (low >= Q1 && high <= Q3) {
value -= Q1; low -= Q1; high -= Q1;
} else if (high > Q2) break;
low += low; high += high;
value *= 2;
if ((mask >>= 1) == 0) {
buffer = (ip >= srcend) ? 0 : *(ip++);
mask = 128;
}
value += ((buffer & mask) != 0);
}
c = sym_to_char[sym];
UpdateModel(sym);
if (c < 256) {
if (op >= dstend) return -1;
*(op++) = c;
text_buf[r++] = c;
r &= (N - 1);
} else {
j = c - 255 + THRESHOLD;
range = high - low;
i = BinarySearchPos((unsigned long)
(((value - low + 1) * position_cum[0] - 1) / range));
high = low + (range * position_cum[i ]) / position_cum[0];
low += (range * position_cum[i + 1]) / position_cum[0];
for ( ; ; ) {
if (low >= Q2) {
value -= Q2; low -= Q2; high -= Q2;
} else if (low >= Q1 && high <= Q3) {
value -= Q1; low -= Q1; high -= Q1;
} else if (high > Q2) break;
low += low; high += high;
value *= 2;
if ((mask >>= 1) == 0) {
buffer = (ip >= srcend) ? 0 : *(ip++);
mask = 128;
}
value += ((buffer & mask) != 0);
}
i = (r - i - 1) & (N - 1);
for (k = 0; k < j; k++) {
c = text_buf[(i + k) & (N - 1)];
if (op >= dstend) return -1;
*(op++) = c;
text_buf[r++] = c;
r &= (N - 1);
}
}
}
return 0;
}
/* interface to jffs3 follows */
#include "compr.h"
#include "jffs3.h"
int jffs3_lzari_compress (unsigned char *input,
unsigned char *output, uint32_t *sourcelen,
uint32_t *dstlen, void *model);
int jffs3_lzari_decompress (unsigned char *input,
unsigned char *output, uint32_t sourcelen,
uint32_t dstlen, void *model);
struct jffs3_compressor jffs3_lzari_comp = {
.priority = JFFS3_LZARI_PRIORITY,
.name = "lzari",
.compr = JFFS3_COMPR_LZARI,
.compress = &jffs3_lzari_compress,
.decompress = &jffs3_lzari_decompress,
#ifdef JFFS3_LZARI_DISABLED
.disabled = 1,
#else
.disabled = 0,
#endif
};
int jffs3_lzari_compress (unsigned char *input,
unsigned char *output, uint32_t *sourcelen,
uint32_t *dstlen, void *model)
{
return Encode(input, output, (unsigned long *)sourcelen, (unsigned long *)dstlen);
}
int jffs3_lzari_decompress (unsigned char *input,
unsigned char *output, uint32_t sourcelen,
uint32_t dstlen, void *model)
{
return Decode(input, output, sourcelen, dstlen);
}
int jffs3_lzari_init (void)
{
return jffs3_register_compressor(&jffs3_lzari_comp);
}
void jffs3_lzari_exit (void)
{
jffs3_unregister_compressor (&jffs3_lzari_comp);
}
|