286 Commits

Author SHA1 Message Date
Nathan Moinvaziri
3ad1a92279 Append slash to directories for compatibility. #257 2018-05-02 13:04:41 -07:00
Nathan Moinvaziri
4827f71a08 Fixed formatting. 2018-05-02 10:50:47 -07:00
Nathan Moinvaziri
bb3b75bc09 Fixed directory compression method.
Move zip attribute detection to mz_zip. #257
2018-05-02 10:48:51 -07:00
Viktor Szakats
0f0535fcaa fix cast warning (seen with LLVM/Clang)
```
mz_compat.c:390:62: warning: passing 'uint32_t *' (aka 'unsigned int *') to parameter of type
      'int32_t *' (aka 'int *') converts between pointers to integer types with different sign [-Wpointer-sign]
        err = mz_zip_get_disk_number_with_cd(compat->handle, &pglobal_info->number_disk_with_CD);
                                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mz_zip.h:112:70: note: passing argument to parameter 'disk_number_with_cd' here
extern int32_t mz_zip_get_disk_number_with_cd(void *handle, int32_t *disk_number_with_cd);
                                                                     ^
```
2018-05-02 13:15:58 +00:00
Nathan Moinvaziri
83bce6e82a Allow version_needed to be less than customized. #258 2018-05-01 18:10:17 -07:00
Nathan Moinvaziri
0619c3e6c4 Merge branch 'dev' of https://github.com/nmoinvaz/minizip into dev 2018-05-01 13:51:13 -07:00
Nathan Moinvaziri
e33916b608 Added support for directory entries in minizip. #257
Added support for file attributes.
2018-05-01 13:45:08 -07:00
Viktor Szakats
2884e67a1a fix to set MZ_ZIP_FLAG_LZMA_EOS_MARKER flag in raw mode
in function mz_zip_entry_write_open()

Fixes https://github.com/nmoinvaz/minizip/issues/255
2018-04-30 08:16:09 +00:00
Viktor Szakats
915b82e95b remove whitespace @ eol 2018-04-24 10:02:39 +00:00
Nathan Moinvaziri
0f09a00810 Fixed formatting. 2018-04-23 18:48:30 -07:00
Viktor Szakats
ce26dba5ba improve compatibility with original minizip
* Fix NULL pointer dereference when calling zipOpen*()
  or unzOpen2*() with NULL filefunc table.
* Rename dos_date to dosDate in zip/unzip structures to
  be compatible with original minizip.
* Add tm struct timestamps to zip/unzip structures and
  populate them with the dosDate value for unzip and
  use the value passed into it on zip, if dosDate is
  zero (mimicing original minizip behaviour.)
* Change zipWriteInFileInZip() return value to be a
  status code (ZIP_OK or ZIP_ERRNO) instead of the
  number of bytes written. This way it's minizip
  compatible.
* Add zipCloseFileInZipRaw64() compatibility wrapper.
* Add these compatibility functions:
  unzGetOffset()
  unzGetOffset64()
  unzSetOffset()
  unzSetOffset64()
* Add stub for compatibility: unzGetLocalExtrafield()
  It will always return zero for now.
* Add original minizip types for compatiblity:
  tm_unz, tm_zip, ZPOS64_T
* Add these minizip (non-compatiblity) APIs:
  mz_zip_get_entry()
  mz_zip_goto_entry()
* zipOpenNewFileInZip*() to use the default filename of
  "-" if filename parameter was NULL. For minizip
  compatibility.
* Fix mz_zip_entry_open_int() and mz_zip_entry_read_open()
  failing with MZ_PARAM_ERROR in raw mode
* Add/cleanup some date-related comments
* mz_zip_time_t_to_tm() to clear the `tm` structure in
  case localtime() call failed.
* Fix mz_zip_tm_to_dosdate() to do the date validation
  on the normalized date (the year in particular), not on
  the raw value passed by the caller. This makes it work
  correctly when year is passed as-is, such as 1990.

The reference minizip was the version that comes with
the latest zlib, currently at 1.2.11.
2018-04-23 22:38:05 +00:00
Nathan Moinvaziri
ad8e3dd4b1 Version 2.2.9. 2018-04-18 20:54:52 -07:00
Nathan Moinvaziri
bcd64ca3b8 Merge branch 'dev' 2018-03-27 20:44:10 -07:00
Nathan Moinvaziri
a43eb98099 Remove src directory. 2018-03-27 20:37:53 -07:00
Nathan Moinvaziri
24ef270bbe Move source files to src directory. 2017-10-16 19:30:24 -07:00
Nathan Moinvaziri
8430b02c25 Fixed compilation if no encryption is used. #189 2017-10-16 18:29:03 -07:00
Nathan Moinvaziri
77008c6344 Fixed problems extracting to a directory after change_dir was removed.
Consolidated all the path building to use mz_path_combine.
Fixed bug in minizip when using mz_zip_write_entry.
Created structs in minizip and miniunz for keeping all options together.
Fixed bug reading end of zip when using split stream.
Fixed large file support in win32.
2017-10-16 14:50:31 -07:00
Nathan Moinvaziri
9ab31ba129 Fixed reference to mz_error.h
Cleaned up searching for cd functions.
2017-10-16 07:51:09 -07:00
Nathan Moinvaziri
00cca9f511 Made PKWARE traditional encryption optional.
Added support for disk splitting into the minizip and miniunz sample apps.
Removed change_dir function from os helpers since it is no longer needed and changing dir causes problems when trying to find the next split archive.
Cleaned up #defines and pushed more into mz.h which was previously named mz.h
Removed NOUNCRYPT and NOCRYPT and instead implemented HAVE_CRYPT which can be configured via CMake USE_CRYPT.
Fixed issues unzipping non-split archives.
Fixed return value on mz_zip_entry_write.
2017-10-16 07:37:11 -07:00
Nathan Moinvaziri
05e99930c9 Finished work on disk spanning stream. 2017-10-10 19:18:05 -07:00
Nathan Moinvaziri
f6e81cde77 Fixed searching for central dir in zip and unzip. 2017-10-10 18:24:03 -07:00
Nathan Moinvaziri
3a0fb55091 Add compatibility with empty zip files. #179. 2017-10-10 12:47:48 -07:00
Nathan Moinvaziri
869dc30652 Fixed compiler warnings on mac.
Cleaned up includes.
2017-10-10 11:59:09 -07:00
Nathan Moinvaziri
af2daca4a1 Fixed issues with zip64 not being written in local header.
Modified split writing to stop creating disks after central dir.
Renamed method #defines.
2017-10-10 10:05:20 -07:00
Nathan Moinvaziri
016ad474e3 Fixed problems flushing zlib, lzma, and bzip2 streams.
Added generic property cb for getting/setting int values in streams.
Added support for disk splitting (write-only at the moment)
2017-10-09 23:36:30 -07:00
Nathan Moinvaziri
8db28c9afe Added back compatibility layer.
Fixed compiler warnings and errors.
2017-10-08 23:26:17 -07:00
Nathan Moinvaziri
aa323f508d Added ability for minizip cmd tool to add directories to zip files.
Split out os specific functions into their own files instead of as part of stream.
2017-10-05 23:32:57 -07:00
Nathan Moinvaziri
973457dac8 Added LZMA, BZIP2, and AES command line params to zip cmd tool.
Clean up some logic in the zip cmd tool.
Fixed zipping to non-existant directory.
Fixed passthru stream shouldn't open or close base streams.
Changed make_dir functions to succeed if dir exists.
Fixed compression method check for zip open functions.
Fixed wrong level being passed to bzip2.
Removed unused price_tablegen.c.
Updated CMakeLists.
Added travis yml.
2017-10-05 18:45:23 -07:00
Nathan Moinvaziri
c48c15314e Fixed zip64 not being written if no values used where it should be.
Fixed wrong compressed size for lzma.
2017-10-05 08:26:59 -07:00
Nathan Moinvaziri
65e6f9af1a Updated version number. 2017-10-05 07:37:47 -07:00
Antoine Cœur
0c2fceb79d Unix Line Feeds 2017-10-05 15:30:37 +08:00
Nathan Moinvaziri
32efd9bb5f Fixed compiler errors and warnings on mac.
Added liblzma project for mac.
2017-10-05 00:02:07 -07:00
Nathan Moinvaziri
3f1b363cb4 Fixed date in some headers.
Updated readme.
2017-10-04 22:50:20 -07:00
Nathan Moinvaziri
4166027081 Removed path param from open functions.
Removed mode parameter from zip open function.
Updated buffered io example in readme.
Removed compatibility layer.
2017-10-04 22:36:29 -07:00
Nathan Moinvaziri
41cfdcb45f Fixed includes. 2017-10-04 22:10:11 -07:00
Nathan Moinvaziri
8a6bc73ce3 Rename files. 2017-10-04 22:06:15 -07:00