minizip-ng/mz_zip.h

190 lines
7.0 KiB
C
Raw Normal View History

/* mz_zip.h -- Zip manipulation
2018-08-18 08:14:27 -07:00
Version 2.5.1, August 18, 2018
part of the MiniZip project
2012-01-21 14:53:44 -07:00
2018-01-06 08:49:03 -08:00
Copyright (C) 2010-2018 Nathan Moinvaziri
2017-09-16 13:25:02 +08:00
https://github.com/nmoinvaz/minizip
Copyright (C) 2009-2010 Mathias Svensson
Modifications for Zip64 support
http://result42.com
Copyright (C) 1998-2010 Gilles Vollant
http://www.winimage.com/zLibDll/minizip.html
2012-01-21 14:53:44 -07:00
This program is distributed under the terms of the same license as zlib.
See the accompanying LICENSE file for the full text of the license.
2012-01-21 14:53:44 -07:00
*/
2018-05-09 09:42:31 -07:00
#ifndef MZ_ZIP_H
#define MZ_ZIP_H
2012-01-21 14:53:44 -07:00
2017-10-23 18:38:43 -07:00
#include <stdint.h>
#include <time.h>
2012-01-21 14:53:44 -07:00
2017-10-06 23:40:32 +08:00
#include "mz_strm.h"
2012-01-21 14:53:44 -07:00
2017-10-23 18:38:43 -07:00
#ifdef __cplusplus
extern "C" {
#endif
/***************************************************************************/
2012-01-21 14:53:44 -07:00
typedef struct mz_zip_file_s
{
2018-04-24 10:02:39 +00:00
uint16_t version_madeby; // version made by
uint16_t version_needed; // version needed to extract
2018-04-24 10:02:39 +00:00
uint16_t flag; // general purpose bit flag
uint16_t compression_method; // compression method
time_t modified_date; // last modified date in unix time
time_t accessed_date; // last accessed date in unix time
time_t creation_date; // creation date in unix time
uint32_t crc; // crc-32
uint64_t compressed_size; // compressed size
uint64_t uncompressed_size; // uncompressed size
uint16_t filename_size; // filename length
uint16_t extrafield_size; // extra field length
uint16_t comment_size; // file comment length
2017-10-22 14:40:39 -07:00
uint32_t disk_number; // disk number start
uint64_t disk_offset; // relative offset of local header
uint16_t internal_fa; // internal file attributes
uint32_t external_fa; // external file attributes
uint16_t zip64; // zip64 extension mode
2018-05-06 16:59:31 -07:00
const char *filename; // filename string
const uint8_t *extrafield; // extrafield data
const char *comment; // comment string
#ifdef HAVE_AES
uint16_t aes_version; // winzip aes extension if not 0
uint8_t aes_encryption_mode; // winzip aes encryption mode
#endif
} mz_zip_file, mz_zip_entry;
/***************************************************************************/
2012-01-21 14:53:44 -07:00
typedef int32_t (*mz_zip_locate_entry_cb)(void *handle, void *userdata, mz_zip_file *file_info);
/***************************************************************************/
2018-08-17 11:10:35 -07:00
void * mz_zip_create(void **handle);
// Create zip instance for opening
2018-08-17 11:10:35 -07:00
void mz_zip_delete(void **handle);
// Delete zip object
2018-08-17 11:10:35 -07:00
int32_t mz_zip_open(void *handle, void *stream, int32_t mode);
// Create a zip file, no delete file in zip functionality
2018-08-17 11:10:35 -07:00
int32_t mz_zip_close(void *handle);
// Close the zip file
2018-08-17 11:10:35 -07:00
int32_t mz_zip_get_comment(void *handle, const char **comment);
// Get a pointer to the global comment
2018-08-17 11:10:35 -07:00
int32_t mz_zip_set_comment(void *handle, const char *comment);
// Set the global comment used for writing zip file
2017-10-03 21:56:07 -07:00
2018-08-17 11:10:35 -07:00
int32_t mz_zip_get_version_madeby(void *handle, uint16_t *version_madeby);
// Get the version made by
2018-08-17 11:10:35 -07:00
int32_t mz_zip_set_version_madeby(void *handle, uint16_t version_madeby);
// Set the version made by used for writing zip file
/***************************************************************************/
2018-08-17 11:10:35 -07:00
int32_t mz_zip_entry_write_open(void *handle, const mz_zip_file *file_info,
int16_t compress_level, uint8_t raw, const char *password);
// Open for writing the current file in the zip file
2018-08-17 11:10:35 -07:00
int32_t mz_zip_entry_write(void *handle, const void *buf, int32_t len);
// Write bytes from the current file in the zip file
2018-08-17 11:10:35 -07:00
int32_t mz_zip_entry_is_open(void *handle);
// Check to see if entry is open for read/write
2018-08-17 11:10:35 -07:00
int32_t mz_zip_entry_is_dir(void *handle);
// Checks to see if the entry is a directory
2018-08-17 11:10:35 -07:00
int32_t mz_zip_entry_read_open(void *handle, uint8_t raw, const char *password);
// Open for reading the current file in the zip file
2018-08-17 11:10:35 -07:00
int32_t mz_zip_entry_read(void *handle, void *buf, int32_t len);
// Read bytes from the current file in the zip file
2018-08-17 11:10:35 -07:00
int32_t mz_zip_entry_get_info(void *handle, mz_zip_file **file_info);
// Get info about the current file, only valid while current entry is open
2018-08-17 11:10:35 -07:00
int32_t mz_zip_entry_get_local_info(void *handle, mz_zip_file **local_file_info);
// Get local info about the current file, only valid while current entry is being read
2018-08-17 11:10:35 -07:00
int32_t mz_zip_entry_close_raw(void *handle, uint64_t uncompressed_size, uint32_t crc32);
// Close the current file in the zip file where raw is compressed data
2018-08-17 11:10:35 -07:00
int32_t mz_zip_entry_close(void *handle);
// Close the current file in the zip file
/***************************************************************************/
2018-08-17 11:10:35 -07:00
int32_t mz_zip_get_number_entry(void *handle, int64_t *number_entry);
// Get the total number of entries
2018-08-17 11:10:35 -07:00
int32_t mz_zip_get_disk_number_with_cd(void *handle, uint32_t *disk_number_with_cd);
// Get the the disk number containing the central directory record
2018-08-17 11:10:35 -07:00
int64_t mz_zip_get_entry(void *handle);
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-22 19:30:34 +00:00
// Return offset of the current entry in the zip file
2018-08-17 11:10:35 -07:00
int32_t mz_zip_goto_entry(void *handle, uint64_t cd_pos);
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-22 19:30:34 +00:00
// Go to specified entry in the zip file
2018-08-17 11:10:35 -07:00
int32_t mz_zip_goto_first_entry(void *handle);
2018-04-24 10:02:39 +00:00
// Go to the first entry in the zip file
2018-08-17 11:10:35 -07:00
int32_t mz_zip_goto_next_entry(void *handle);
// Go to the next entry in the zip file or MZ_END_OF_LIST if reaching the end
2018-08-17 11:10:35 -07:00
int32_t mz_zip_locate_entry(void *handle, const char *filename, uint8_t ignore_case);
// Locate the file with the specified name in the zip file or MZ_END_LIST if not found
2018-08-17 11:10:35 -07:00
int32_t mz_zip_locate_first_entry(void *handle, void *userdata, mz_zip_locate_entry_cb cb);
// Locate the first matching entry based on a match callback
2018-08-17 11:10:35 -07:00
int32_t mz_zip_locate_next_entry(void *handle, void *userdata, mz_zip_locate_entry_cb cb);
// LOcate the next matching entry based on a match callback
/***************************************************************************/
int32_t mz_zip_attrib_is_dir(int32_t attributes, int32_t version_madeby);
// Checks to see if the attribute is a directory based on platform
int32_t mz_zip_dosdate_to_tm(uint64_t dos_date, struct tm *ptm);
// Convert dos date/time format to struct tm
time_t mz_zip_dosdate_to_time_t(uint64_t dos_date);
// Convert dos date/time format to time_t
int32_t mz_zip_time_t_to_tm(time_t unix_time, struct tm *ptm);
2018-04-24 10:02:39 +00:00
// Convert time_t to time struct
uint32_t mz_zip_time_t_to_dos_date(time_t unix_time);
// Convert time_t to dos date/time format
uint32_t mz_zip_tm_to_dosdate(const struct tm *ptm);
// Convert struct tm to dos date/time format
int32_t mz_zip_ntfs_to_unix_time(uint64_t ntfs_time, time_t *unix_time);
// Convert ntfs time to unix time
int32_t mz_zip_unix_to_ntfs_time(time_t unix_time, uint64_t *ntfs_time);
// Convert unix time to ntfs time
int32_t mz_zip_path_compare(const char *path1, const char *path2, uint8_t ignore_case);
// Compare two paths without regard to slashes
2012-07-14 16:55:17 -07:00
/***************************************************************************/
2012-01-21 14:53:44 -07:00
#ifdef __cplusplus
}
#endif
#endif /* _ZIP_H */