-
Notifications
You must be signed in to change notification settings - Fork 44
/
lzo1x.js
589 lines (489 loc) · 18.8 KB
/
lzo1x.js
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
/*
* minilzo-js
* JavaScript port of minilzo by Alistair Braidwood
*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* You should have received a copy of the GNU General Public License
* along with the minilzo-js library; see the file COPYING.
* If not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*
* original minilzo.c by:
*
* Markus F.X.J. Oberhumer
* http://www.oberhumer.com/opensource/lzo/
*/
/*
* NOTE:
* the full LZO package can be found at
* http://www.oberhumer.com/opensource/lzo/
*/
var lzo1x = (function () {
function _lzo1x() {}
_lzo1x.prototype = {
blockSize: 4096,
OK: 0,
INPUT_OVERRUN: -4,
OUTPUT_OVERRUN: -5,
LOOKBEHIND_OVERRUN: -6,
EOF_FOUND: -999,
buf: null,
buf32: null,
out: null,
out32: null,
cbl: 0,
ip_end: 0,
op_end: 0,
t: 0,
ip: 0,
op: 0,
m_pos: 0,
skipToFirstLiteralFun: false,
ctzl: function(v) {
// this might be needed for _compressCore (it isn't in my current test files)
/*
* https://graphics.stanford.edu/~seander/bithacks.html#ZerosOnRightBinSearch
* Matt Whitlock suggested this on January 25, 2006. Andrew Shapira shaved a couple operations off on Sept. 5, 2007 (by setting c=1 and unconditionally subtracting at the end).
*/
var c; // c will be the number of zero bits on the right,
// so if v is 1101000 (base 2), then c will be 3
// NOTE: if 0 == v, then c = 31.
if (v & 0x1) {
// special case for odd v (assumed to happen half of the time)
c = 0;
} else {
c = 1;
if ((v & 0xffff) === 0) {
v >>= 16;
c += 16;
}
if ((v & 0xff) === 0) {
v >>= 8;
c += 8;
}
if ((v & 0xf) === 0) {
v >>= 4;
c += 4;
}
if ((v & 0x3) === 0) {
v >>= 2;
c += 2;
}
c -= v & 0x1;
}
return c;
},
extendBuffer: function() {
var newBuffer = new Uint8Array(this.cbl + this.blockSize);
newBuffer.set(this.out);
this.out = newBuffer;
this.out32 = new Uint32Array(this.out.buffer);
this.state.outputBuffer = this.out;
this.cbl = this.out.length;
},
eof_found: function() {
// *out_len = ((lzo_uint) ((op)-(out)));
return (this.ip === this.ip_end ? 0 : (this.ip < this.ip_end ? -8 : -4));
},
match_next: function() {
// if (op_end - op < t) return OUTPUT_OVERRUN;
// if (ip_end - ip < t+3) return INPUT_OVERRUN;
while(this.op + 3 > this.cbl) {this.extendBuffer();}
this.out[this.op++] = this.buf[this.ip++];
if (this.t > 1) {
this.out[this.op++] = this.buf[this.ip++];
if (this.t > 2) {
this.out[this.op++] = this.buf[this.ip++];
}
}
this.t = this.buf[this.ip++];
},
match_done: function() {
this.t = this.buf[this.ip-2] & 3;
return this.t;
},
copy_match: function() {
this.t += 2;
while(this.op + this.t > this.cbl) {this.extendBuffer();}
if(this.t > 4 && this.op % 4 === this.m_pos % 4) {
while (this.op % 4 > 0) {
this.out[this.op++] = this.out[this.m_pos++];
this.t--;
}
while(this.t > 4) {
this.out32[0|(this.op/4)] = this.out32[0|(this.m_pos/4)];
this.op += 4; this.m_pos += 4;
this.t -= 4;
}
}
do {
this.out[this.op++] = this.out[this.m_pos++];
} while(--this.t > 0);
},
copy_from_buf: function() {
while(this.op + this.t > this.cbl) {this.extendBuffer();}
if(this.t > 4 && this.op % 4 === this.ip % 4) {
while (this.op % 4 > 0) {
this.out[this.op++] = this.buf[this.ip++];
this.t--;
}
while(this.t > 4) {
this.out32[0|(this.op/4)] = this.buf32[0|(this.ip/4)];
this.op += 4; this.ip += 4;
this.t -= 4;
}
}
do {
this.out[this.op++] = this.buf[this.ip++];
} while (--this.t > 0);
},
match: function() {
for (;;) {
if (this.t >= 64) {
this.m_pos = this.op - 1;
this.m_pos -= (this.t >> 2) & 7;
this.m_pos -= this.buf[this.ip++] << 3;
this.t = (this.t >> 5) - 1;
// if ( m_pos < out || m_pos >= op) return LOOKBEHIND_OVERRUN;
// if (op_end - op < t+3-1) return OUTPUT_OVERRUN;
this.copy_match();
if(this.match_done() === 0) {
break;
} else {
this.match_next();
continue;
}
} else if (this.t >= 32) {
this.t &= 31;
if (this.t === 0) {
while (this.buf[this.ip] === 0) {
this.t += 255;
this.ip++;
// if (t > -511) return OUTPUT_OVERRUN;
// if (ip_end - ip < 1) return INPUT_OVERRUN;
}
this.t += 31 + this.buf[this.ip++];
// if (ip_end - ip < 2) return INPUT_OVERRUN;
}
this.m_pos = this.op - 1;
this.m_pos -= (this.buf[this.ip] >> 2) + (this.buf[this.ip + 1] << 6);
this.ip += 2;
} else if (this.t >= 16) {
this.m_pos = this.op;
this.m_pos -= (this.t & 8) << 11;
this.t &= 7;
if (this.t === 0) {
while (this.buf[this.ip] === 0) {
this.t += 255;
this.ip++;
// if (t > -511) return OUTPUT_OVERRUN;
// if (ip_end - ip < 1) return INPUT_OVERRUN;
}
this.t += 7 + this.buf[this.ip++];
// if (ip_end - ip < 2) return INPUT_OVERRUN;
}
this.m_pos -= (this.buf[this.ip] >> 2) + (this.buf[this.ip + 1] << 6);
this.ip += 2;
if (this.m_pos === this.op) {
this.state.outputBuffer = this.state.outputBuffer.subarray(0, this.op);
return this.EOF_FOUND;
}
this.m_pos -= 0x4000;
} else {
this.m_pos = this.op - 1;
this.m_pos -= this.t >> 2;
this.m_pos -= this.buf[this.ip++] << 2;
// if (m_pos < out || m_pos >= op) return LOOKBEHIND_OVERRUN;
// if (op_end - op < 2) return OUTPUT_OVERRUN;
while(this.op + 2 > this.cbl) {this.extendBuffer();}
this.out[this.op++] = this.out[this.m_pos++];
this.out[this.op++] = this.out[this.m_pos];
if(this.match_done() === 0) {
break;
} else {
this.match_next();
continue;
}
}
// if (m_pos < out || m_pos >= op) return LOOKBEHIND_OVERRUN;
// if (op_end - op < t+3-1) return OUTPUT_OVERRUN;
this.copy_match();
if(this.match_done() === 0) {
break;
}
this.match_next();
}
return this.OK;
},
decompress: function(state) {
this.state = state;
this.buf = this.state.inputBuffer;
var buf_4b = new Uint8Array(this.buf.length + (4 - this.buf.length % 4));
buf_4b.set(this.buf);
this.buf32 = new Uint32Array(buf_4b.buffer);
this.out = new Uint8Array(this.buf.length + (this.blockSize - this.buf.length % this.blockSize));
this.out32 = new Uint32Array(this.out.buffer);
this.cbl = this.out.length;
this.state.outputBuffer = this.out;
this.ip_end = this.buf.length;
this.op_end = this.out.length;
this.t = 0;
this.ip = 0;
this.op = 0;
this.m_pos = 0;
this.skipToFirstLiteralFun = false;
// if (ip_end - ip < 1) return INPUT_OVERRUN;
if (this.buf[this.ip] > 17) {
this.t = this.buf[this.ip++] - 17;
if (this.t < 4) {
this.match_next();
ret = this.match();
if(ret !== this.OK) {
return ret === this.EOF_FOUND ? this.OK : ret;
}
} else {
// if (op_end - op < t) return OUTPUT_OVERRUN;
// if (ip_end - ip < t+3) return INPUT_OVERRUN;
this.copy_from_buf();
this.skipToFirstLiteralFun = true;
}
}
for (;;) {
if(!this.skipToFirstLiteralFun) {
// if (ip_end - ip < 3) return INPUT_OVERRUN;
this.t = this.buf[this.ip++];
if (this.t >= 16) {
ret = this.match();
if(ret !== this.OK) {
return ret === this.EOF_FOUND ? this.OK : ret;
}
continue;
}
if (this.t === 0) {
while (this.buf[this.ip] === 0) {
this.t += 255;
this.ip++;
// if (t > 511) return INPUT_OVERRUN;
// if (ip_end - ip < 1) return INPUT_OVERRUN;
}
this.t += 15 + this.buf[this.ip++];
}
// if (op_end - op < t+3) return OUTPUT_OVERRUN;
// if (ip_end - ip < t+6) return INPUT_OVERRUN;
this.t += 3;
this.copy_from_buf();
} else {
this.skipToFirstLiteralFun = false;
}
this.t = this.buf[this.ip++];
if (this.t < 16) {
this.m_pos = this.op - (1 + 0x0800);
this.m_pos -= this.t >> 2;
this.m_pos -= this.buf[this.ip++] << 2;
// if ( m_pos < out || m_pos >= op) return LOOKBEHIND_OVERRUN;
// if (op_end - op < 3) return OUTPUT_OVERRUN;
while(this.op + 3 > this.cbl) {this.extendBuffer();}
this.out[this.op++] = this.out[this.m_pos++];
this.out[this.op++] = this.out[this.m_pos++];
this.out[this.op++] = this.out[this.m_pos];
if(this.match_done() === 0) {
continue;
} else {
this.match_next();
}
}
ret = this.match();
if(ret !== this.OK) {
return ret === this.EOF_FOUND ? this.OK : ret;
}
}
return this.OK;
},
_compressCore: function(in_len, ti) {
var ip_start = this.ip;
var ip_end = this.ip + in_len - 20;
var ii = this.ip;
this.ip += ti < 4 ? 4 - ti : 0;
var m_pos = 0;
var m_off = 0;
var m_len = 0;
var dv_hi = 0;
var dv_lo = 0;
var dindex = 0;
this.ip += 1 + ((this.ip - ii) >> 5);
for (;;) {
if(this.ip >= ip_end) {
break;
}
// dv = this.buf[this.ip] | (this.buf[this.ip + 1] << 8) | (this.buf[this.ip + 2] << 16) | (this.buf[this.ip + 3] << 24);
// dindex = ((0x1824429d * dv) >> 18) & 16383;
// The above code doesn't work in JavaScript due to a lack of 64 bit bitwise operations
// Instead, use (optimised two's complement integer arithmetic)
// Optimization is based on us only needing the high 16 bits of the lower 32 bit integer.
dv_lo = this.buf[this.ip] | (this.buf[this.ip + 1] << 8);
dv_hi = this.buf[this.ip + 2] | (this.buf[this.ip + 3] << 8);
dindex = (((dv_lo * 0x429d) >>> 16) + (dv_hi * 0x429d) + (dv_lo * 0x1824) & 0xFFFF) >>> 2;
m_pos = ip_start + this.dict[dindex];
this.dict[dindex] = this.ip - ip_start;
if ((dv_hi<<16) + dv_lo != (this.buf[m_pos] | (this.buf[m_pos + 1] << 8) | (this.buf[m_pos + 2] << 16) | (this.buf[m_pos + 3] << 24))) {
this.ip += 1 + ((this.ip - ii) >> 5);
continue;
}
ii -= ti;
ti = 0;
var t = this.ip - ii;
if (t !== 0) {
if (t <= 3) {
this.out[this.op - 2] |= t;
do {
this.out[this.op++] = this.buf[ii++];
} while (--t > 0);
} else {
if (t <= 18) {
this.out[this.op++] = t - 3;
} else {
var tt = t - 18;
this.out[this.op++] = 0;
while (tt > 255) {
tt -= 255;
this.out[this.op++] = 0;
}
this.out[this.op++] = tt;
}
do {
this.out[this.op++] = this.buf[ii++];
} while (--t > 0);
}
}
m_len = 4;
// var skipTo_m_len_done = false;
if (this.buf[this.ip + m_len] === this.buf[m_pos + m_len]) {
do {
m_len += 1; if(this.buf[this.ip + m_len] !== this.buf[m_pos + m_len]) {break;}
m_len += 1; if(this.buf[this.ip + m_len] !== this.buf[m_pos + m_len]) {break;}
m_len += 1; if(this.buf[this.ip + m_len] !== this.buf[m_pos + m_len]) {break;}
m_len += 1; if(this.buf[this.ip + m_len] !== this.buf[m_pos + m_len]) {break;}
m_len += 1; if(this.buf[this.ip + m_len] !== this.buf[m_pos + m_len]) {break;}
m_len += 1; if(this.buf[this.ip + m_len] !== this.buf[m_pos + m_len]) {break;}
m_len += 1; if(this.buf[this.ip + m_len] !== this.buf[m_pos + m_len]) {break;}
m_len += 1; if(this.buf[this.ip + m_len] !== this.buf[m_pos + m_len]) {break;}
if(this.ip + m_len >= ip_end) {
// skipTo_m_len_done = true;
break;
}
} while (this.buf[this.ip + m_len] === this.buf[m_pos + m_len]);
}
// if (!skipTo_m_len_done) {
// var inc = this.ctzl(this.buf[this.ip + m_len] ^ this.buf[m_pos + m_len]) >> 3;
// m_len += inc;
// }
m_off = this.ip - m_pos;
this.ip += m_len;
ii = this.ip;
if (m_len <= 8 && m_off <= 0x0800) {
m_off -= 1;
this.out[this.op++] = ((m_len - 1) << 5) | ((m_off & 7) << 2);
this.out[this.op++] = m_off >> 3;
} else if (m_off <= 0x4000) {
m_off -= 1;
if (m_len <= 33) {
this.out[this.op++] = 32 | (m_len - 2);
} else {
m_len -= 33;
this.out[this.op++] = 32;
while (m_len > 255) {
m_len -= 255;
this.out[this.op++] = 0;
}
this.out[this.op++] = m_len;
}
this.out[this.op++] = m_off << 2;
this.out[this.op++] = m_off >> 6;
} else {
m_off -= 0x4000;
if (m_len <= 9) {
this.out[this.op++] = 16 | ((m_off >> 11) & 8) | (m_len - 2);
} else {
m_len -= 9;
this.out[this.op++] = 16 | ((m_off >> 11) & 8);
while (m_len > 255) {
m_len -= 255;
this.out[this.op++] = 0;
}
this.out[this.op++] = m_len;
}
this.out[this.op++] = m_off << 2;
this.out[this.op++] = m_off >> 6;
}
}
return in_len - ((ii - ip_start) - ti);
},
compress: function (state) {
this.state = state;
this.ip = 0;
this.buf = this.state.inputBuffer;
var in_len = this.buf.length;
var max_len = in_len + Math.ceil(in_len / 16) + 64 + 3;
this.state.outputBuffer = new Uint8Array(max_len);
this.out = this.state.outputBuffer;
this.op = 0;
this.dict = new Uint32Array(16384);
var l = in_len;
var t = 0;
while (l > 20) {
var ll = (l <= 49152) ? l : 49152;
if ((t + ll) >> 5 <= 0) {
break;
}
this.dict = new Uint32Array(16384);
var prev_ip = this.ip;
t = this._compressCore(ll,t);
this.ip = prev_ip + ll;
l -= ll;
}
t += l;
if (t > 0) {
var ii = in_len - t;
if (this.op === 0 && t <= 238) {
this.out[this.op++] = 17 + t;
} else if (t <= 3) {
this.out[this.op-2] |= t;
} else if (t <= 18) {
this.out[this.op++] = t - 3;
} else {
tt = t - 18;
this.out[this.op++] = 0;
while (tt > 255) {
tt -= 255;
this.out[this.op++] = 0;
}
this.out[this.op++] = tt;
}
do {
this.out[this.op++] = this.buf[ii++];
} while (--t > 0);
}
this.out[this.op++] = 17;
this.out[this.op++] = 0;
this.out[this.op++] = 0;
this.state.outputBuffer = this.out.subarray(0, this.op);
return this.OK;
}
};
var instance = new _lzo1x();
return {
compress: function(state) {
return instance.compress(state);
},
decompress: function(state) {
return instance.decompress(state);
}
};
})();