Commit graph

8 commits

Author SHA1 Message Date
6daf378492
fix(inflate): byte boundary aligning underflow 2025-01-07 15:53:26 +00:00
06b1f1a640
fix: deflate decompression failing for files with high compression ratio 2025-01-02 06:07:53 +00:00
1f4dd5715b
fix: add temporary fix for high compression ratio files
Currently, we have a hardcoded buffer size of compressed * 4 for the
decompressed data, since deflate does not give the true decompressed
size (although zip metadata does). So, on files with a very high
compression ratio, a buffer overflow is triggered as our destination
buffer is not large enough for the entire decompressed data.

This temporary fix involves increasing the factor from 4 to 7 for the
size estimation. A future fix would involve using the true decompressed
size.
2025-01-01 19:33:51 +00:00
b1818de2f2
refactor: add more comments to inflate implementation 2025-01-01 17:18:34 +00:00
67139503df
refactor: add the joke in comments back 2025-01-01 13:02:47 +05:30
10a399c91f
refactor: minor sylistic changes
Swaps places with the pattern:
```luau
x = x + 1
```

to use:
```luau
x += 1
```
2024-12-30 11:26:22 +00:00
c2e638cbec
style: apply stylua formatter 2024-12-30 11:13:57 +00:00
681b9ce1bf
feat: implement decompression and extraction
* Implements a decompression step for extraction, currently supporting
  `DEFLATE` and `STORED`
* Moved testing file to `examples/`
* Added validation step to `ZipReader:extract` with options to
  optionally skip it (matches checksum and uncompressed size)
2024-12-30 11:09:48 +00:00