Mackenzie Clark
9e849ef089
revert the code order changes
2018-11-09 16:20:23 -08:00
Mackenzie Clark
c05b6c2317
add libflate feature
2018-11-04 10:12:21 -08:00
Mathijs van de Nes
27c79de0f8
Fix copy paste error in zip64_large
2018-10-17 14:46:22 +02:00
Mathijs van de Nes
475d655a75
Add test for large zip64 files
...
This test uses a dynamically generated zipfile to avoid having to store
very large objects in the git tree. The zipfile itself was produced
using the default linux zip utility.
2018-10-17 14:43:50 +02:00
Mathijs van de Nes
b716547a93
Fix travis for rust 1.20.0
2018-10-17 11:55:35 +02:00
Mathijs van de Nes
bb38674a14
Add archive_offset after processing extra fields
...
This ensures that the value will still be 0xFFFFFFFF before parsing a
zip64 extra field, and that the correction will also apply after the
parsing.
2018-10-17 11:45:41 +02:00
Mathijs van de Nes
9065122b93
Skip another test for 1.20.0
...
flate2/rust_backend now also needs a more recent version of rustc
2018-10-17 11:41:13 +02:00
Mathijs van de Nes
c286a8ba16
Zip64: also support a large header_start
2018-10-17 11:39:15 +02:00
Mathijs van de Nes
87dbf02e77
Add new example file_info
...
Like stdin_info, only displays the data of a file, but does not extract
the contents.
2018-10-17 11:38:44 +02:00
Mathijs van de Nes
a1d579b146
Silence warnings about AsciiExt
...
Some supported rust versions still require this import
2018-10-16 17:47:48 +02:00
Mathijs van de Nes
dbb871245b
Fix parse_extra_field for zip64
...
The specification states that fields are only present when their
corresponding entry in the central directory is set to 0xFFFFFFFF.
2018-10-16 17:44:53 +02:00
Mathijs van de Nes
74639e46d7
Merge pull request #83 from camchenry/master
...
Add end-to-end test
2018-10-15 19:31:24 +02:00
camchenry
59075de36a
Revert to Vec<u8> owned by cursor
2018-10-15 12:06:54 -04:00
camchenry
19250df9e9
Change end-to-end test to use &[u8] instead of Vec<u8>
2018-10-13 18:40:06 -04:00
camchenry
a8b5210487
Add end-to-end test
2018-10-13 18:16:12 -04:00
Mathijs van de Nes
52594745f3
Merge branch 'replace-try-macro-usage' of https://github.com/bfrascher/zip-rs into bfrascher-replace-try-macro-usage
2018-10-09 13:13:53 +02:00
Mathijs van de Nes
60a4426798
Fix travis script
2018-10-09 12:46:39 +02:00
Mathijs van de Nes
74446dd59b
Do not test deflate-zlib on version 1.20.0 for now
2018-10-09 12:38:28 +02:00
Benedikt Rascher-Friesenhausen
804cfea51c
Replace try!
macros with ?
operator calls
...
The `?` operator exists since Rust version 1.13.0 and has since become the
standard and recommended variant over the `try!` macro (see
https://doc.rust-lang.org/std/macro.try.html where it is explicitly mentioned to
use the `?` operator instead of the `try!` macro).
I think it is especially useful to replace the `try!` usages throughout the
examples (since new users might not be familiar with the `try!` macro at all).
2018-10-02 23:12:35 +02:00
Mathijs van de Nes
b23200d4a1
Append a slash to directory names
...
If a directory name does not end with a slash, append it to it when
writing a zip file. This way we can ensure it is distuinguishable from
an empty file.
2018-08-15 21:54:24 +02:00
Mathijs van de Nes
1c2024c554
Derivce Clone for ZipArchive
2018-06-22 15:47:29 +02:00
Mathijs van de Nes
3e532d8ef3
Update readme and bump version
2018-06-22 15:28:18 +02:00
Mathijs van de Nes
2fa4111042
Fix an issue parsing zip64 files
...
Offset to the start of central directory may be 0xFFFFFFFF if it is a
Zip64 file. Previously, that value was used when calculating the archive
offset. The value will now be ignored if the Zip64 central directory
could be located.
2018-06-22 15:16:04 +02:00
Mathijs van de Nes
9b0a6930d4
Update example and bump version to 0.4.1
2018-06-20 22:19:03 +02:00
Mathijs van de Nes
ae18b244ef
Merge pull request #75 from repi/seperator-fix
...
Fix file name sanitization for zips with OS incompatible path separators
2018-06-20 21:40:50 +02:00
Johan Andersson
0b222aa958
Remove redundant type specification
2018-06-20 01:38:43 +02:00
Johan Andersson
d51a4fc1d0
Fix file name sanitization for incompatible path separators.
...
Zip files can contain both / and \ as separators regardless of the OS and as we want to return a sanitized PathBuf that only supports the OS separator on the let's convert incompatible separators to compatible ones.
If one doesn't do this then PathBufs will be returned that can have entire paths in the file name such as "src\\lib.rs" on Linux/Mac, instead of srv / lib.rs as 3 separate components.
2018-06-20 01:31:46 +02:00
Mathijs van de Nes
86d9d20884
Calculate data_start after parse_extra_field
...
Some extra fields may alter offsets, e.g. Zip64.
2018-06-17 15:23:19 +02:00
Mathijs van de Nes
d2ccfc16f7
Speed up Drop of ZipFileReader
...
Skip CRC and decompression when dropping an owned ZipFileReader
2018-06-17 15:16:14 +02:00
Mathijs van de Nes
38d1699853
Improve reading from non-seekable streams
...
You can now repeatedly call a function to iterate over all files in a
zip. This may give some suboptimal results, but is useful when dealing
with an incoming data stream.
2018-06-16 14:14:34 +02:00
Mathijs van de Nes
5b17e07086
Merge branch 'sequential-read' of https://github.com/FauxFaux/zip-rs into FauxFaux-sequential-read
2018-06-15 16:59:09 +02:00
Mathijs van de Nes
f502a7acf3
Update README for new version
2018-05-27 10:36:30 +02:00
Mathijs van de Nes
2212ca1476
New point release 0.4.0
...
The feature flags have been changed to allow better control over the
deflate implementation.
2018-05-27 10:34:21 +02:00
Mathijs van de Nes
39ccaab76c
Merge branch 'flate2-backends' of https://github.com/alexbool/zip-rs
2018-05-27 10:33:52 +02:00
Mathijs van de Nes
1cb79a0b91
Fix memory issues on corrupt zip files
...
Do not pre-allocate the number of files, as this might be an invalid
number.
Also give a more helpfull error message when the start of the central
directory could not be found.
Resolves #68
2018-05-23 19:43:46 +02:00
Mathijs van de Nes
00310c44d8
Expose zip file comment in ZipArchive
...
Resolves #71
2018-05-23 19:17:06 +02:00
Mathijs van de Nes
362f12dc9b
Bump version
2018-05-22 23:37:19 +02:00
Mathijs van de Nes
602952750e
Update DEFAULT_VERSION
...
Use a more sane 'version made by' as we can write Bzip2 files
2018-05-22 23:36:56 +02:00
Mathijs van de Nes
ab9667aa5c
Properly write 'version needed' in local file header
...
'version made by' was used instead of version needed by accident.
Resolves #72
2018-05-22 23:36:56 +02:00
Alexander Bulaev
fee626ba59
Control backend choice of flate2
2018-05-19 20:03:23 +03:00
Mathijs van de Nes
806147ac9e
Fix sanitized_name test for Windows
2018-04-20 13:53:07 +02:00
Mathijs van de Nes
140021173a
Bump version
2018-04-20 13:42:05 +02:00
Mathijs van de Nes
5e8c95e6ed
Make santized_name part of the library
...
It is a common pitfall to use the name as-is during extraction. Adding
this function may prevent some of the issues.
Resolves #65
2018-04-20 13:35:20 +02:00
Mathijs van de Nes
ce4104d682
Merge pull request #63 from Songbird0/fix_walkdir_broken_link
...
Fix `walkdir` broken link.
2018-03-01 21:58:31 +01:00
Songbird0
44ec82e746
Fix walkdir
broken link.
...
You used a relative path to reference `walkdir` repository, but github starts at your repository URL.
- Old broken link: `https://github.com/mvdnes/zip-rs/blob/master/BurntSushi/walkdir `;
- New link: `https://github.com/BurntSushi/walkdir `.
2018-02-28 20:24:48 +01:00
Mathijs van de Nes
34b7502a7d
Bump version and update README
2018-02-17 20:11:59 +01:00
Mathijs van de Nes
fce3836059
Better handling of zips with invalid datetimes
...
The msdos datetime 0x00000000 is invalid. The Windows API would
(rightfully) return an ERROR_INVALID_PARAMETER for this when converting
it. If it is indeed an invalid error, we now return the zip datetime
'epoch' of 1980-01-01 00:00:00.
Resolves issue #61
2018-02-17 20:05:09 +01:00
Mathijs van de Nes
e8c6a07790
Merge pull request #59 from gilescope/master
...
Improvements to zip dir example
2018-01-27 13:24:23 +01:00
Giles Cope
da68a33c80
Updated readme to indicate existence of examples dir. Generalised zip dir example so people could use it also to write to an memory buffer rather than a file. Ideally I'd have the zip dir functionaility in the crate but I can see the need to minimise dependencies.
2018-01-27 06:21:57 +00:00
Mathijs van de Nes
02b80d2040
Publish 0.3.0 due to breaking changes
...
The change of default features may brake some projects.
2018-01-15 18:51:03 +01:00