Commit graph

159 commits

Author SHA1 Message Date
2d8d301481
chore(CHANGELOG): fix bad links 2025-01-08 16:06:51 +00:00
57e4c3430c
chore(pkg): prepare for v0.0.1 2025-01-08 16:05:55 +00:00
0c4ee0fffa
refactor: add another TODO comment for future note 2025-01-08 16:01:49 +00:00
eb7aa1d010
chore(tests): add test for utf8 encoded filenames 2025-01-08 14:40:51 +00:00
ecdae4155e
chore(tests): add case for garbage after comment 2025-01-08 14:22:46 +00:00
8db960d064
refactor: add TODO comment for future note 2025-01-08 14:18:46 +00:00
ec352feef5
chore(CHANGELOG): fix unreleased commits link 2025-01-08 19:47:55 +05:30
9e712aa7bb
chore(CHANGELOG): include missed added entry 2025-01-08 14:16:44 +00:00
03320fe090
style: apply stylua formatter 2025-01-08 14:14:30 +00:00
9d3c815fbb
refactor: small restructure and move utils outside main 2025-01-08 14:13:46 +00:00
e7f7c569b6
chore(pkg): correctly exclude test files from package 2025-01-08 07:54:20 +00:00
4858621e01
chore(README): ease supported MSLV version 2025-01-08 07:46:07 +00:00
34173f0a1b
chore(examples): display prettier trees 2025-01-08 07:36:51 +00:00
5a8d318e29
chore(CHANGELOG): update entries 2025-01-07 19:11:58 +00:00
f8303dbd29
chore(pkg): bump version to v0.0.1-rc.2 2025-01-07 19:11:26 +00:00
cf193f8fb4
chore(CHANGELOG): fix unreleased commits link 2025-01-08 00:30:38 +05:30
89dbcb0a10
chore(pkg): update lockfile 2025-01-07 18:56:15 +00:00
26ce364f1f
chore(tests): remove old FIXME comment 2025-01-07 18:55:57 +00:00
9b6216c0a7
fix: entry metadata not including method
Also updates metadata tests to test for correct method detection.
2025-01-07 18:55:50 +00:00
d5595135cd
chore(examples): add attributes to dir structure print 2025-01-07 18:48:23 +00:00
b1fa805363
chore(tests): add TODO comment for extended datetime support 2025-01-07 18:46:09 +00:00
d329a3f273
feat: support following symlinks
* Added new extraction option: `followSymlinks`
* Added method for querying whether an entry is a symlink using
  `ZipEntry:isSymlink`
* Include tests for symlinks
2025-01-07 18:45:06 +00:00
89ee51874b
chore(tests): fix filtering in test runner 2025-01-07 18:42:41 +00:00
6daf378492
fix(inflate): byte boundary aligning underflow 2025-01-07 15:53:26 +00:00
77d1a75996
chore(gitignore): include zip test data 2025-01-07 13:43:15 +00:00
2f06690667
chore(tests): rename misaligned_comment test suite 2025-01-07 13:31:21 +00:00
98c23ece3e
fix: correctly parse EoCD for misaligned comment sizes
Also adds a test case for the same.
2025-01-07 13:29:39 +00:00
0f5a6d035c
chore: include CHANGELOG 2025-01-06 10:35:03 +00:00
9ca5b06b52
chore(pkg): remove unused result dependency 2025-01-06 10:33:15 +00:00
4fc0fb59ec
chore(pkg): prepare for v0.0.1-rc.1 2025-01-06 10:32:34 +00:00
31b6aa5f4b
chore: include basic README 2025-01-06 15:55:40 +05:30
ecb63a0e2d
style: apply stylua formatter 2025-01-06 06:19:29 +00:00
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