2017-10-05 23:32:57 -07:00
|
|
|
/* mz_zip.h -- Zip manipulation
|
2014-01-12 14:04:54 -07:00
|
|
|
part of the MiniZip project
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2020-02-12 08:25:33 -08:00
|
|
|
Copyright (C) 2010-2020 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
|
2014-01-12 14:04:54 -07:00
|
|
|
Copyright (C) 1998-2010 Gilles Vollant
|
2018-10-17 22:39:01 +00:00
|
|
|
https://www.winimage.com/zLibDll/minizip.html
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2014-01-12 14:04:54 -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
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2020-06-14 15:19:14 -07:00
|
|
|
typedef struct mz_zip_file_s {
|
2018-11-20 16:56:21 -08:00
|
|
|
uint16_t version_madeby; /* version made by */
|
|
|
|
uint16_t version_needed; /* version needed to extract */
|
|
|
|
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 */
|
|
|
|
int64_t compressed_size; /* compressed size */
|
|
|
|
int64_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 */
|
|
|
|
uint32_t disk_number; /* disk number start */
|
|
|
|
int64_t disk_offset; /* relative offset of local header */
|
|
|
|
uint16_t internal_fa; /* internal file attributes */
|
|
|
|
uint32_t external_fa; /* external file attributes */
|
2017-10-22 14:32:37 -07:00
|
|
|
|
2018-11-20 16:56:21 -08:00
|
|
|
const char *filename; /* filename utf8 null-terminated string */
|
|
|
|
const uint8_t *extrafield; /* extrafield data */
|
|
|
|
const char *comment; /* comment utf8 null-terminated string */
|
2019-05-05 20:13:58 -07:00
|
|
|
const char *linkname; /* sym-link filename utf8 null-terminated string */
|
2017-10-17 23:22:29 -07:00
|
|
|
|
2018-11-27 09:45:09 -08:00
|
|
|
uint16_t zip64; /* zip64 extension mode */
|
|
|
|
uint16_t aes_version; /* winzip aes extension if not 0 */
|
|
|
|
uint8_t aes_encryption_mode; /* winzip aes encryption mode */
|
2020-11-30 21:30:10 -08:00
|
|
|
uint16_t pk_verify; /* pkware encryption verifier */
|
2018-11-27 09:45:09 -08:00
|
|
|
|
2018-08-13 23:07:42 -07:00
|
|
|
} mz_zip_file, mz_zip_entry;
|
2017-10-02 22:11:03 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2018-08-13 23:07:42 -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);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Create zip instance for opening */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
void mz_zip_delete(void **handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Delete zip object */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_open(void *handle, void *stream, int32_t mode);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Create a zip file, no delete file in zip functionality */
|
2017-10-19 09:57:54 -07:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_close(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Close the zip file */
|
2017-10-19 09:57:54 -07:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_get_comment(void *handle, const char **comment);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Get a pointer to the global comment */
|
2017-10-20 07:59:39 -07:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_set_comment(void *handle, const char *comment);
|
2020-07-30 10:20:21 -07:00
|
|
|
/* Sets 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);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Get the version made by */
|
2017-10-17 23:22:29 -07:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_set_version_madeby(void *handle, uint16_t version_madeby);
|
2020-07-30 10:20:21 -07:00
|
|
|
/* Sets the version made by used for writing zip file */
|
2017-10-20 07:59:39 -07:00
|
|
|
|
2018-11-13 14:50:32 -08:00
|
|
|
int32_t mz_zip_set_recover(void *handle, uint8_t recover);
|
2020-07-30 10:20:21 -07:00
|
|
|
/* Sets the ability to recover the central dir by reading local file headers */
|
2018-11-13 14:50:32 -08:00
|
|
|
|
2020-01-03 16:58:16 -08:00
|
|
|
int32_t mz_zip_set_data_descriptor(void *handle, uint8_t data_descriptor);
|
2020-07-30 10:20:21 -07:00
|
|
|
/* Sets the use of data descriptor flag when writing zip entries */
|
2020-01-03 16:58:16 -08:00
|
|
|
|
2018-08-20 16:01:08 -07:00
|
|
|
int32_t mz_zip_get_stream(void *handle, void **stream);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Get a pointer to the stream used to open */
|
2018-08-20 16:01:08 -07:00
|
|
|
|
2018-11-19 20:24:26 -08:00
|
|
|
int32_t mz_zip_set_cd_stream(void *handle, int64_t cd_start_pos, void *cd_stream);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets the stream to use for reading the central dir */
|
2018-10-19 08:48:33 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_get_cd_mem_stream(void *handle, void **cd_mem_stream);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Get a pointer to the stream used to store the central dir in memory */
|
2018-10-19 08:48:33 -07:00
|
|
|
|
2020-02-08 21:28:23 -08:00
|
|
|
int32_t mz_zip_set_number_entry(void *handle, uint64_t number_entry);
|
|
|
|
/* Sets the total number of entries */
|
|
|
|
|
|
|
|
int32_t mz_zip_get_number_entry(void *handle, uint64_t *number_entry);
|
|
|
|
/* Get the total number of entries */
|
|
|
|
|
|
|
|
int32_t mz_zip_set_disk_number_with_cd(void *handle, uint32_t disk_number_with_cd);
|
|
|
|
/* Sets the disk number containing the central directory record */
|
|
|
|
|
|
|
|
int32_t mz_zip_get_disk_number_with_cd(void *handle, uint32_t *disk_number_with_cd);
|
|
|
|
/* Get the disk number containing the central directory record */
|
|
|
|
|
2018-08-13 23:07:42 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-11-23 10:07:35 -08:00
|
|
|
int32_t mz_zip_entry_is_open(void *handle);
|
|
|
|
/* Check to see if entry is open for read/write */
|
|
|
|
|
|
|
|
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 */
|
|
|
|
|
|
|
|
int32_t mz_zip_entry_read(void *handle, void *buf, int32_t len);
|
|
|
|
/* Read bytes from the current file in the zip file */
|
|
|
|
|
2019-07-04 10:32:02 -07:00
|
|
|
int32_t mz_zip_entry_read_close(void *handle, uint32_t *crc32, int64_t *compressed_size,
|
2018-11-23 10:07:35 -08:00
|
|
|
int64_t *uncompressed_size);
|
|
|
|
/* Close the current file for reading and get data descriptor values */
|
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_entry_write_open(void *handle, const mz_zip_file *file_info,
|
2018-08-08 09:43:14 -07:00
|
|
|
int16_t compress_level, uint8_t raw, const char *password);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Open for writing the current file in the zip file */
|
2017-10-02 22:11:03 -07:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_entry_write(void *handle, const void *buf, int32_t len);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Write bytes from the current file in the zip file */
|
2017-10-02 22:11:03 -07:00
|
|
|
|
2019-07-04 10:32:02 -07:00
|
|
|
int32_t mz_zip_entry_write_close(void *handle, uint32_t crc32, int64_t compressed_size,
|
2018-11-23 10:07:35 -08:00
|
|
|
int64_t uncompressed_size);
|
|
|
|
/* Close the current file for writing and set data descriptor values */
|
2018-08-09 16:29:26 -07:00
|
|
|
|
2020-12-21 19:31:07 -08:00
|
|
|
int32_t mz_zip_entry_seek_local_header(void *handle);
|
|
|
|
/* Seeks to the local header for the entry */
|
|
|
|
|
2020-02-08 21:28:23 -08:00
|
|
|
int32_t mz_zip_entry_close_raw(void *handle, int64_t uncompressed_size, uint32_t crc32);
|
|
|
|
/* Close the current file in the zip file where raw is compressed data */
|
|
|
|
|
|
|
|
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_entry_is_dir(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Checks to see if the entry is a directory */
|
2018-08-14 14:00:16 -07:00
|
|
|
|
2019-05-02 21:07:39 -07:00
|
|
|
int32_t mz_zip_entry_is_symlink(void *handle);
|
|
|
|
/* Checks to see if the entry is a symbolic link */
|
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_entry_get_info(void *handle, mz_zip_file **file_info);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Get info about the current file, only valid while current entry is open */
|
2017-10-18 16:51:10 -07:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_entry_get_local_info(void *handle, mz_zip_file **local_file_info);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Get local info about the current file, only valid while current entry is being read */
|
2017-10-18 16:51:10 -07:00
|
|
|
|
2018-10-26 20:00:52 -07:00
|
|
|
int32_t mz_zip_entry_set_extrafield(void *handle, const uint8_t *extrafield, uint16_t extrafield_size);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Sets or updates the extra field for the entry to be used before writing cd */
|
2018-10-26 20:00:52 -07:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int64_t mz_zip_get_entry(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Return offset of the current entry in the zip file */
|
2018-04-22 19:30:34 +00:00
|
|
|
|
2018-10-08 23:31:21 -07:00
|
|
|
int32_t mz_zip_goto_entry(void *handle, int64_t cd_pos);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Go to specified entry in the zip file */
|
2018-04-22 19:30:34 +00:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_goto_first_entry(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Go to the first entry in the zip file */
|
2017-10-17 23:22:29 -07:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_goto_next_entry(void *handle);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Go to the next entry in the zip file or MZ_END_OF_LIST if reaching the end */
|
2015-09-10 18:21:24 -03:00
|
|
|
|
2018-08-17 11:10:35 -07:00
|
|
|
int32_t mz_zip_locate_entry(void *handle, const char *filename, uint8_t ignore_case);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Locate the file with the specified name in the zip file or MZ_END_LIST if not found */
|
2017-10-19 09:57:54 -07:00
|
|
|
|
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);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Locate the first matching entry based on a match callback */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
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);
|
2020-02-08 21:13:55 -08:00
|
|
|
/* Locate the next matching entry based on a match callback */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2017-10-22 14:32:37 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-08 21:47:15 -07:00
|
|
|
int32_t mz_zip_attrib_is_dir(uint32_t attrib, int32_t version_madeby);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Checks to see if the attribute is a directory based on platform */
|
2018-05-02 10:48:51 -07:00
|
|
|
|
2019-05-07 09:46:25 -07:00
|
|
|
int32_t mz_zip_attrib_is_symlink(uint32_t attrib, int32_t version_madeby);
|
|
|
|
/* Checks to see if the attribute is a symbolic link based on platform */
|
|
|
|
|
2019-07-04 10:32:02 -07:00
|
|
|
int32_t mz_zip_attrib_convert(uint8_t src_sys, uint32_t src_attrib, uint8_t target_sys,
|
2018-11-23 10:07:35 -08:00
|
|
|
uint32_t *target_attrib);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Converts file attributes from one host system to another */
|
2018-08-20 09:06:23 -07:00
|
|
|
|
2018-10-08 21:47:15 -07:00
|
|
|
int32_t mz_zip_attrib_posix_to_win32(uint32_t posix_attrib, uint32_t *win32_attrib);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Converts posix file attributes to win32 file attributes */
|
2018-08-20 09:06:23 -07:00
|
|
|
|
2018-10-08 21:47:15 -07:00
|
|
|
int32_t mz_zip_attrib_win32_to_posix(uint32_t win32_attrib, uint32_t *posix_attrib);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Converts win32 file attributes to posix file attributes */
|
2018-08-20 09:06:23 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-23 09:04:04 -07:00
|
|
|
int32_t mz_zip_extrafield_find(void *stream, uint16_t type, uint16_t *length);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Seeks to extra field by its type and returns its length */
|
2018-10-23 09:04:04 -07:00
|
|
|
|
2018-11-23 10:07:35 -08:00
|
|
|
int32_t mz_zip_extrafield_contains(const uint8_t *extrafield, int32_t extrafield_size,
|
|
|
|
uint16_t type, uint16_t *length);
|
|
|
|
/* Gets whether an extrafield exists and its size */
|
|
|
|
|
2018-10-23 09:04:04 -07:00
|
|
|
int32_t mz_zip_extrafield_read(void *stream, uint16_t *type, uint16_t *length);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Reads an extrafield header from a stream */
|
2018-10-23 09:04:04 -07:00
|
|
|
|
2018-11-10 09:03:55 -08:00
|
|
|
int32_t mz_zip_extrafield_write(void *stream, uint16_t type, uint16_t length);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Writes an extrafield header to a stream */
|
2018-10-23 09:04:04 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-22 14:32:37 -07:00
|
|
|
int32_t mz_zip_dosdate_to_tm(uint64_t dos_date, struct tm *ptm);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Convert dos date/time format to struct tm */
|
2017-10-22 14:32:37 -07:00
|
|
|
|
|
|
|
time_t mz_zip_dosdate_to_time_t(uint64_t dos_date);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Convert dos date/time format to time_t */
|
2017-10-22 14:32:37 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_time_t_to_tm(time_t unix_time, struct tm *ptm);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Convert time_t to time struct */
|
2017-10-22 14:32:37 -07:00
|
|
|
|
|
|
|
uint32_t mz_zip_time_t_to_dos_date(time_t unix_time);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Convert time_t to dos date/time format */
|
2017-10-22 14:32:37 -07:00
|
|
|
|
|
|
|
uint32_t mz_zip_tm_to_dosdate(const struct tm *ptm);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Convert struct tm to dos date/time format */
|
2017-10-22 14:32:37 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_ntfs_to_unix_time(uint64_t ntfs_time, time_t *unix_time);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Convert ntfs time to unix time */
|
2017-10-22 14:32:37 -07:00
|
|
|
|
|
|
|
int32_t mz_zip_unix_to_ntfs_time(time_t unix_time, uint64_t *ntfs_time);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Convert unix time to ntfs time */
|
2017-10-19 09:57:54 -07:00
|
|
|
|
2018-08-20 09:06:23 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-08-13 23:07:42 -07:00
|
|
|
int32_t mz_zip_path_compare(const char *path1, const char *path2, uint8_t ignore_case);
|
2018-11-20 16:56:21 -08:00
|
|
|
/* Compare two paths without regard to slashes */
|
2018-08-13 23:07:42 -07:00
|
|
|
|
2012-07-14 16:55:17 -07:00
|
|
|
/***************************************************************************/
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2020-10-25 11:56:19 -07:00
|
|
|
const
|
|
|
|
char* mz_zip_get_compression_method_string(int32_t compression_method);
|
|
|
|
/* Gets a string representing the compression method */
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2012-01-21 14:53:44 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-12 14:04:54 -07:00
|
|
|
#endif /* _ZIP_H */
|