Commit graph

27 commits

Author SHA1 Message Date
48a66800b7
chore: remove pkg alias 2025-01-06 06:08:34 +00:00
1078fd249c
feat: add method field to ZipEntry
Contains information about the compression method for the entry.
2025-01-06 06:05:43 +00:00
121869ad3d
fix: handle skipping in options correctly 2025-01-06 05:55:02 +00:00
de96193a47
refactor: add note for future optimization in crc impl 2025-01-06 05:52:00 +00:00
e7a654d530
chore(examples): update example to use test file 2025-01-06 05:51:40 +00:00
3e9b3a3d94
refactor: small improvements
* Fix return type for `ZipReader:findEntry` to return an optional
  `ZipEntry`
* Update structuring comments and read bitflags for future use
2025-01-06 05:49:09 +00:00
381e22cf39
chore(pkg): add frktest dependency and update lockfile 2025-01-06 05:47:33 +00:00
0687c87951
chore: implement testing framework pw by frktest 2025-01-06 05:46:08 +00:00
06b1f1a640
fix: deflate decompression failing for files with high compression ratio 2025-01-02 06:07:53 +00:00
6f4083f10f
chore(examples): slightly refactor tour example 2025-01-02 06:07:23 +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
efe8360ba3
refactor: remove debugging print 2024-12-31 17:42:31 +00:00
ccc7228278
fix: avoid duplicate directory entries with trailing slash
Fixed a bug in the directory tree builder where for directories there
would be two entries, where one would have a trailing slash, and the
other wouldn't.

The directory without the trailing slash would get linked to its
children in the entries lookup table, while the one with the trailing
slash would exist as a "ghost directory" with no children.

The fix involved sorting the entries to first handle directories, and
linking to the existing parent directory entries for children.
2024-12-31 12:46:45 +00:00
7724af0467
refactor: removing debugging prints lol 2024-12-31 06:12:30 +00:00
ba82ad4af3
fix: correctly check bitflag for "streaming" zips 2024-12-31 06:11:45 +00:00
3a3a0e9aed
feat: add "streaming" zip support
Adds support for ZIP files with the `0x08` bit of the general purpose
bitflags set, i.e, those which do not include file sizes and crc
checksums in the local file header
2024-12-30 18:24:00 +00:00
023fb2bfd7
chore(examples): improve contents listing with indent 2024-12-30 18:23:53 +00:00
895cd63fee
chore(examples): add FIXME note for future self 2024-12-30 11:27:09 +00:00
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
792682e46d
chore(LICENSE): change copyright field 2024-12-30 11:12:45 +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
e57b377b80
chore(pkg): remove unneeded deps 2024-12-29 05:21:05 +00:00
df134c31e0
refactor: include code comments 2024-12-28 18:01:17 +00:00
b3777ba2b1
chore: init, the basics
Implement core `ZipReader`, `ZipEntry` and basic API. Supports simple
zip format deserialization, without advanced features, or decompression.
2024-12-28 17:19:37 +00:00