2017-10-05 23:32:57 -07:00
|
|
|
/* mz_zip.h -- Zip manipulation
|
2017-10-16 20:15:35 -07:00
|
|
|
Version 2.0.1, October 16th, 2017
|
2014-01-12 14:04:54 -07:00
|
|
|
part of the MiniZip project
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-09-16 13:25:02 +08:00
|
|
|
Copyright (C) 2012-2017 Nathan Moinvaziri
|
|
|
|
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
|
|
|
|
http://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
|
|
|
*/
|
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
#ifndef _MZ_ZIP_H
|
|
|
|
#define _MZ_ZIP_H
|
2012-01-21 14:53:44 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _ZLIB_H
|
2014-01-07 19:13:14 -07:00
|
|
|
# include "zlib.h"
|
2012-01-21 14:53:44 -07:00
|
|
|
#endif
|
|
|
|
|
2017-10-06 23:40:32 +08:00
|
|
|
#include "mz_strm.h"
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
typedef struct mz_zip_file_s
|
|
|
|
{
|
|
|
|
uint32_t dos_date; // ms-dos date and time
|
|
|
|
uint16_t internal_fa; // internal file attributes
|
|
|
|
uint32_t external_fa; // external file attributes
|
|
|
|
const uint8_t *extrafield_local; // extra fields in local header
|
|
|
|
uint16_t extrafield_local_size; // size of additional extra fields in local header
|
|
|
|
const uint8_t *extrafield_global; // extra fields in global header
|
|
|
|
uint16_t extrafield_global_size; // size of extra fields in global header
|
|
|
|
uint16_t version_madeby; // version made by
|
|
|
|
const char *comment; // file comment
|
|
|
|
const char *filename; // filename
|
|
|
|
uint8_t zip64; // enable zip64 extensions if 1
|
|
|
|
uint16_t flag; // base flag value
|
|
|
|
} mz_zip_file;
|
|
|
|
|
|
|
|
typedef struct mz_zip_compress_s
|
|
|
|
{
|
2017-10-05 18:45:23 -07:00
|
|
|
uint16_t method; // compression method
|
2017-10-02 22:11:03 -07:00
|
|
|
int level; // compression level
|
|
|
|
int window_bits; // deflate window bits
|
|
|
|
int mem_level; // deflate memory level
|
|
|
|
int strategy; // deflate strategy
|
|
|
|
} mz_zip_compress;
|
|
|
|
|
|
|
|
typedef struct mz_zip_crypt_s
|
|
|
|
{
|
2017-10-03 21:56:07 -07:00
|
|
|
const char *password; // encryption password
|
2017-10-02 22:11:03 -07:00
|
|
|
#if defined(HAVE_AES)
|
|
|
|
uint8_t aes; // enable winzip aes encryption if 1
|
2017-09-17 17:11:26 -07:00
|
|
|
#endif
|
2017-10-02 22:11:03 -07:00
|
|
|
} mz_zip_crypt;
|
2017-09-17 17:11:26 -07:00
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
/***************************************************************************/
|
2012-01-21 14:53:44 -07:00
|
|
|
|
2017-10-08 23:26:17 -07:00
|
|
|
extern void* ZEXPORT mz_zip_open(uint8_t open_existing, void *stream);
|
2017-10-03 23:19:37 -07:00
|
|
|
// Create a zip file
|
2017-10-03 21:56:07 -07:00
|
|
|
//
|
2017-10-03 23:19:37 -07:00
|
|
|
// NOTE: There is no delete function into a zip file. If you want delete file in a zip file,
|
2017-10-03 21:56:07 -07:00
|
|
|
// you must open a zip file, and create another. You can use RAW reading and writing to copy
|
|
|
|
// the file you did not want delete.
|
|
|
|
|
|
|
|
extern int ZEXPORT mz_zip_get_global_comment(void *handle, const char **global_comment);
|
|
|
|
// Gets the global comments if opening an existing zip
|
2017-10-02 22:11:03 -07:00
|
|
|
|
|
|
|
extern int ZEXPORT mz_zip_entry_open(void *handle, const mz_zip_file *file_info,
|
|
|
|
const mz_zip_compress *compress_info, const mz_zip_crypt *crypt_info);
|
2017-10-03 21:56:07 -07:00
|
|
|
// Open a file in the ZIP for writing
|
2017-10-02 22:11:03 -07:00
|
|
|
|
|
|
|
extern int ZEXPORT mz_zip_entry_write(void *handle, const void *buf, uint32_t len);
|
2017-10-03 23:19:37 -07:00
|
|
|
// Write data in the zip file
|
2017-10-02 22:11:03 -07:00
|
|
|
|
|
|
|
extern int ZEXPORT mz_zip_entry_close(void *handle);
|
2017-10-03 23:19:37 -07:00
|
|
|
// Close the current file in the zip file
|
2017-10-02 22:11:03 -07:00
|
|
|
|
|
|
|
extern int ZEXPORT mz_zip_entry_close_raw(void *handle, uint64_t uncompressed_size, uint32_t crc32);
|
2017-10-03 23:19:37 -07:00
|
|
|
// Close the current file in the zip file where raw is compressed data
|
2017-10-02 22:11:03 -07:00
|
|
|
|
|
|
|
extern int ZEXPORT mz_zip_close(void *handle, const char *global_comment, uint16_t version_madeby);
|
2017-10-03 23:19:37 -07:00
|
|
|
// Close the zip file
|
2015-09-10 18:21:24 -03:00
|
|
|
|
2012-07-14 16:55:17 -07:00
|
|
|
/***************************************************************************/
|
2012-01-21 14:53:44 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-12 14:04:54 -07:00
|
|
|
#endif /* _ZIP_H */
|