base: move lz4.ts to c

This commit is contained in:
luboslenco
2026-03-01 19:41:35 +01:00
parent 619de08f0d
commit 5c305bf240
5 changed files with 219 additions and 223 deletions
+1
View File
@@ -18,6 +18,7 @@
#include "iron_string.h"
#include "iron_system.h"
#include "iron_thread.h"
#include "iron_lz4.h"
#include "iron_ui.h"
#include "iron_ui_nodes.h"
#include "iron_vec2.h"
+209
View File
@@ -0,0 +1,209 @@
// Based on https://github.com/gorhill/lz4-wasm by Raymond Hill
// armortools/base/assets/licenses/license_lz4-wasm.md
#include "iron_lz4.h"
#include "iron_gc.h"
#include "iron_system.h"
#include <stdint.h>
#include <stdlib.h>
static i32_array_t *_lz4_hash_table = NULL;
uint32_t lz4_encode_bound(uint32_t size) {
uint32_t i = size / 255;
return size > 0x7e000000 ? 0 : size + (i | 0) + 16;
}
buffer_t *lz4_encode(buffer_t *b) {
u8_array_t *ibuf = (u8_array_t *)b;
uint32_t ilen = ibuf->length;
if (ilen >= 0x7e000000) {
iron_log("LZ4 range error");
return NULL;
}
uint32_t last_match_pos = ilen - 12;
uint32_t last_literal_pos = ilen - 5;
if (_lz4_hash_table == NULL) {
_lz4_hash_table = i32_array_create(65536);
gc_root(_lz4_hash_table);
}
for (uint32_t i = 0; i < _lz4_hash_table->length; ++i) {
_lz4_hash_table->buffer[i] = -65536;
}
uint32_t olen = lz4_encode_bound(ilen);
u8_array_t *obuf = u8_array_create(olen);
uint32_t ipos = 0;
uint32_t opos = 0;
uint32_t anchor_pos = 0;
// Sequence-finding loop
while (true) {
uint32_t ref_pos = 0;
uint32_t moffset = 0;
uint32_t sequence = ((uint32_t)ibuf->buffer[ipos] << 8) | ((uint32_t)ibuf->buffer[ipos + 1] << 16) | ((uint32_t)ibuf->buffer[ipos + 2] << 24);
// Match-finding loop
while (ipos <= last_match_pos) {
sequence = (sequence >> 8) | ((uint32_t)ibuf->buffer[ipos + 3] << 24);
uint32_t hash = ((sequence * 0x9e37) & 0xffff) + ((sequence * 0x79b1) >> 16) & 0xffff;
ref_pos = _lz4_hash_table->buffer[hash];
_lz4_hash_table->buffer[hash] = ipos;
moffset = ipos - ref_pos;
if (moffset < 65536 && ibuf->buffer[ref_pos + 0] == ((sequence) & 0xff) && ibuf->buffer[ref_pos + 1] == ((sequence >> 8) & 0xff) &&
ibuf->buffer[ref_pos + 2] == ((sequence >> 16) & 0xff) && ibuf->buffer[ref_pos + 3] == ((sequence >> 24) & 0xff)) {
break;
}
ipos += 1;
}
// No match found
if (ipos > last_match_pos) {
break;
}
// Match found
uint32_t llen = ipos - anchor_pos;
uint32_t mlen = ipos;
ipos += 4;
ref_pos += 4;
while (ipos < last_literal_pos && ibuf->buffer[ipos] == ibuf->buffer[ref_pos]) {
ipos += 1;
ref_pos += 1;
}
mlen = ipos - mlen;
uint32_t token = mlen < 19 ? mlen - 4 : 15;
// Write token, length of literals if needed
if (llen >= 15) {
obuf->buffer[opos++] = 0xf0 | token;
uint32_t l = llen - 15;
while (l >= 255) {
obuf->buffer[opos++] = 255;
l -= 255;
}
obuf->buffer[opos++] = l;
}
else {
obuf->buffer[opos++] = (llen << 4) | token;
}
// Write literals
while (llen-- > 0) {
obuf->buffer[opos++] = ibuf->buffer[anchor_pos++];
}
if (mlen == 0) {
break;
}
// Write offset of match
obuf->buffer[opos + 0] = moffset;
obuf->buffer[opos + 1] = moffset >> 8;
opos += 2;
// Write length of match if needed
if (mlen >= 19) {
uint32_t l = mlen - 19;
while (l >= 255) {
obuf->buffer[opos++] = 255;
l -= 255;
}
obuf->buffer[opos++] = l;
}
anchor_pos = ipos;
}
// Last sequence is literals only
uint32_t llen = ilen - anchor_pos;
if (llen >= 15) {
obuf->buffer[opos++] = 0xf0;
uint32_t l = llen - 15;
while (l >= 255) {
obuf->buffer[opos++] = 255;
l -= 255;
}
obuf->buffer[opos++] = l;
}
else {
obuf->buffer[opos++] = llen << 4;
}
while (llen-- > 0) {
obuf->buffer[opos++] = ibuf->buffer[anchor_pos++];
}
return buffer_slice(obuf, 0, opos);
}
buffer_t *lz4_decode(buffer_t *b, uint32_t olen) {
u8_array_t *ibuf = (u8_array_t *)b;
uint32_t ilen = ibuf->length;
u8_array_t *obuf = u8_array_create(olen);
uint32_t ipos = 0;
uint32_t opos = 0;
while (ipos < ilen) {
uint32_t token = ibuf->buffer[ipos++];
// Literals
uint32_t clen = token >> 4;
// Length of literals
if (clen != 0) {
if (clen == 15) {
uint32_t l = 0;
while (1) {
l = ibuf->buffer[ipos++];
if (l != 255) {
break;
}
clen += 255;
}
clen += l;
}
// Copy literals
uint32_t end = ipos + clen;
while (ipos < end) {
obuf->buffer[opos++] = ibuf->buffer[ipos++];
}
if (ipos == ilen) {
break;
}
}
// Match
uint32_t moffset = ibuf->buffer[ipos + 0] | (ibuf->buffer[ipos + 1] << 8);
if (moffset == 0 || moffset > opos) {
return NULL;
}
ipos += 2;
// Length of match
clen = (token & 0x0f) + 4;
if (clen == 19) {
uint32_t l = 0;
while (1) {
l = ibuf->buffer[ipos++];
if (l != 255) {
break;
}
clen += 255;
}
clen += l;
}
// Copy match
uint32_t mpos = opos - moffset;
uint32_t end = opos + clen;
while (opos < end) {
obuf->buffer[opos++] = obuf->buffer[mpos++];
}
}
return obuf;
}
+6
View File
@@ -0,0 +1,6 @@
#pragma once
#include "iron_array.h"
buffer_t *lz4_encode(buffer_t *b);
buffer_t *lz4_decode(buffer_t *b, uint32_t olen);
+3
View File
@@ -1025,3 +1025,6 @@ declare function path_is_displacement_tex(p: string): bool;
declare function path_is_folder(p: string): bool;
declare function path_is_protected(): bool;
declare function path_join(a: string, b: string): string;
declare function lz4_encode(b: buffer_t): buffer_t;
declare function lz4_decode(b: buffer_t, olen: u32): buffer_t;
-223
View File
@@ -1,223 +0,0 @@
// Based on https://github.com/gorhill/lz4-wasm
// BSD 2-Clause License
// Copyright (c) 2018, Raymond Hill
// All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright notice, this
// list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
let _lz4_hash_table: i32_array_t = null;
function lz4_encode_bound(size: u32): u32 {
let i: u32 = size / 255;
return size > 0x7e000000 ? 0 : size + (i | 0) + 16;
}
function lz4_encode(b: buffer_t): buffer_t {
let ibuf: u8_array_t = b;
let ilen: u32 = ibuf.length;
if (ilen >= 0x7e000000) {
iron_log("LZ4 range error");
return null;
}
// "The last match must start at least 12 bytes before end of block"
let last_match_pos: u32 = ilen - 12;
// "The last 5 bytes are always literals"
let last_literal_pos: u32 = ilen - 5;
if (_lz4_hash_table == null) {
_lz4_hash_table = i32_array_create(65536);
}
for (let i: u32 = 0; i < _lz4_hash_table.length; ++i) {
_lz4_hash_table[i] = -65536;
}
let olen: u32 = lz4_encode_bound(ilen);
let obuf: u8_array_t = u8_array_create(olen);
let ipos: u32 = 0;
let opos: u32 = 0;
let anchor_pos: u32 = 0;
// Sequence-finding loop
while (true) {
let ref_pos: u32 = 0;
let moffset: u32 = 0;
let sequence: u32 = ibuf[ipos] << 8 | ibuf[ipos + 1] << 16 | ibuf[ipos + 2] << 24;
// Match-finding loop
while (ipos <= last_match_pos) {
sequence = sequence >> 8 | ibuf[ipos + 3] << 24;
let hash: u32 = (sequence * 0x9e37 & 0xffff) + (sequence * 0x79b1 >> 16) & 0xffff;
ref_pos = _lz4_hash_table[hash];
_lz4_hash_table[hash] = ipos;
moffset = ipos - ref_pos;
if (moffset < 65536 && ibuf[ref_pos + 0] == ((sequence) & 0xff) && ibuf[ref_pos + 1] == ((sequence >> 8) & 0xff) &&
ibuf[ref_pos + 2] == ((sequence >> 16) & 0xff) && ibuf[ref_pos + 3] == ((sequence >> 24) & 0xff)) {
break;
}
ipos += 1;
}
// No match found
if (ipos > last_match_pos) {
break;
}
// Match found
let llen: u32 = ipos - anchor_pos;
let mlen: u32 = ipos;
ipos += 4;
ref_pos += 4;
while (ipos < last_literal_pos && ibuf[ipos] == ibuf[ref_pos]) {
ipos += 1;
ref_pos += 1;
}
mlen = ipos - mlen;
let token: u32 = mlen < 19 ? mlen - 4 : 15;
// Write token, length of literals if needed
if (llen >= 15) {
obuf[opos++] = 0xf0 | token;
let l: u32 = llen - 15;
while (l >= 255) {
obuf[opos++] = 255;
l -= 255;
}
obuf[opos++] = l;
}
else {
obuf[opos++] = (llen << 4) | token;
}
// Write literals
while (llen-- > 0) {
obuf[opos++] = ibuf[anchor_pos++];
}
if (mlen == 0) {
break;
}
// Write offset of match
obuf[opos + 0] = moffset;
obuf[opos + 1] = moffset >> 8;
opos += 2;
// Write length of match if needed
if (mlen >= 19) {
let l: u32 = mlen - 19;
while (l >= 255) {
obuf[opos++] = 255;
l -= 255;
}
obuf[opos++] = l;
}
anchor_pos = ipos;
}
// Last sequence is literals only
let llen: u32 = ilen - anchor_pos;
if (llen >= 15) {
obuf[opos++] = 0xf0;
let l: u32 = llen - 15;
while (l >= 255) {
obuf[opos++] = 255;
l -= 255;
}
obuf[opos++] = l;
}
else {
obuf[opos++] = llen << 4;
}
while (llen-- > 0) {
obuf[opos++] = ibuf[anchor_pos++];
}
return buffer_slice(obuf, 0, opos);
}
function lz4_decode(b: buffer_t, olen: u32): buffer_t {
let ibuf: u8_array_t = b;
let ilen: u32 = ibuf.length;
let obuf: u8_array_t = u8_array_create(olen);
let ipos: u32 = 0;
let opos: u32 = 0;
while (ipos < ilen) {
let token: u32 = ibuf[ipos++];
// Literals
let clen: u32 = token >> 4;
// Length of literals
if (clen != 0) {
if (clen == 15) {
let l: u32 = 0;
while (true) {
l = ibuf[ipos++];
if (l != 255) {
break;
}
clen += 255;
}
clen += l;
}
// Copy literals
let end: u32 = ipos + clen;
while (ipos < end) {
obuf[opos++] = ibuf[ipos++];
}
if (ipos == ilen) {
break;
}
}
// Match
let moffset: u32 = ibuf[ipos + 0] | (ibuf[ipos + 1] << 8);
if (moffset == 0 || moffset > opos) {
return null;
}
ipos += 2;
// Length of match
clen = (token & 0x0f) + 4;
if (clen == 19) {
let l: u32 = 0;
while (true) {
l = ibuf[ipos++];
if (l != 255) {
break;
}
clen += 255;
}
clen += l;
}
// Copy match
let mpos: u32 = opos - moffset;
let end: u32 = opos + clen;
while (opos < end) {
obuf[opos++] = obuf[mpos++];
}
}
return obuf;
}