Broken LZ4 algorithm! The decompression seems to work now (needs improvement?) but the conversion tools emit 64K block sizes which is unhelpfull for us

This commit is contained in:
2022-12-29 23:18:37 +01:00
parent 3554394e11
commit 3d56532a3b
7 changed files with 250 additions and 15 deletions

View File

@@ -12,6 +12,25 @@ namespace JabyEngine {
constexpr ArrayRange(T* start, size_t size) : start(start), size(size) {
}
constexpr void skip(size_t elements) {
this->start += elements;
this->size -= elements;
}
T& pop() {
T& value = *this->start;
ArrayRange::skip(1);
return value;
}
constexpr operator bool() const {
return this->size > 0;
}
constexpr bool operator>=(size_t elements) const {
return this->size >= elements;
}
constexpr T& operator[](size_t idx) {
return this->start[idx];
}

View File

@@ -1,6 +1,7 @@
#ifndef __JABYENGINE_LZ4_DECOMPRESSOR_HPP__
#define __JABYENGINE_LZ4_DECOMPRESSOR_HPP__
#include "../../stddef.h"
#include "array_range.hpp"
#include "types.hpp"
namespace JabyEngine {
@@ -24,12 +25,37 @@ namespace JabyEngine {
};
private:
struct State {};
struct State {
enum struct Step {
ReadToken,
ObtainLiteralLength,
CopyLiterals,
ObtainMatchOffset,
ObtainMatchLength,
CopyMatch,
};
Step step = Step::ReadToken;
size_t literal_length = 0;
size_t match_length = 0;
uint16_t match_offset = 0xFFFF;
State() = default;
};
private:
uint8_t* dst_adr = nullptr;
State state;
static bool obtain_any_length(ArrayRange<const uint8_t>& data, uint32_t &dst_length);
pair<bool, Result> read_token(ArrayRange<const uint8_t>& data);
pair<bool, Result> obtain_literal_length(ArrayRange<const uint8_t>& data);
pair<bool, Result> copy_literals(ArrayRange<const uint8_t>& data);
pair<bool, Result> obtain_match_offset(ArrayRange<const uint8_t>& data);
pair<bool, Result> obtain_match_length(ArrayRange<const uint8_t>& data);
pair<bool, Result> copy_match(ArrayRange<const uint8_t>& data);
public:
LZ4Decompressor() = default;
LZ4Decompressor(uint8_t* dst_adr) : LZ4Decompressor() {
@@ -39,7 +65,7 @@ namespace JabyEngine {
void setup(uint8_t* dst_adr);
void reset();
Result process(const uint8_t* data, size_t size);
Result process(ArrayRange<const uint8_t> data);
};
}

View File

@@ -2,6 +2,12 @@
#define __JABYENGINE_TYPES_HPP__
namespace JabyEngine {
template<typename T, typename S>
struct pair {
T first;
S second;
};
enum struct Progress {
InProgress = 0,
Done,