minizip-ng/zip.h

125 lines
4.5 KiB
C
Raw Normal View History

2012-01-21 14:53:44 -07:00
/* zip.h -- IO on .zip files using zlib
2017-09-16 13:25:02 +08:00
Version 1.2.0, September 16th, 2017
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
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
*/
#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
#ifndef _ZLIBIOAPI_H
# include "mzstrm.h"
2012-01-21 14:53:44 -07:00
#endif
#define Z_BZIP2ED 12
/***************************************************************************/
2012-01-21 14:53:44 -07:00
2017-10-03 21:56:07 -07:00
#ifndef MZ_RETURN
# define MZ_OK (0)
# define MZ_EOF (MZ_OK)
# define MZ_STREAM_ERROR (-1)
# define MZ_END_OF_LIST (-100)
# define MZ_PARAM_ERROR (-102)
# define MZ_FORMAT_ERROR (-103)
# define MZ_INTERNAL_ERROR (-104)
# define MZ_CRC_ERROR (-105)
# define MZ_CRYPT_ERROR (-106)
#endif
/***************************************************************************/
2012-01-21 14:53:44 -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-03 21:56:07 -07:00
uint16_t method; // compression method ie Z_DEFLATE, 0 for raw
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
uint32_t crc_for_crypting; // crc to use for traditional encryption
#if defined(HAVE_AES)
uint8_t aes; // enable winzip aes encryption if 1
2017-09-17 17:11:26 -07:00
#endif
} mz_zip_crypt;
2017-09-17 17:11:26 -07:00
/***************************************************************************/
2012-01-21 14:53:44 -07:00
#define MZ_APPEND_STATUS_CREATE (0) // create new zip
#define MZ_APPEND_STATUS_CREATEAFTER (1) // create zip after file
#define MZ_APPEND_STATUS_ADDINZIP (2) // add existing files to zip
2012-01-21 14:53:44 -07:00
2012-07-14 16:55:17 -07:00
/***************************************************************************/
2017-10-03 21:56:07 -07:00
extern void* ZEXPORT mz_zip_open(const char *path, int append, uint64_t disk_size, void *stream);
// Create a zipfile
2017-10-03 21:56:07 -07:00
//
// NOTE: There is no delete function into a zipfile. If you want delete file in a zip file,
// 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
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
extern int ZEXPORT mz_zip_entry_write(void *handle, const void *buf, uint32_t len);
2017-10-03 21:56:07 -07:00
// Write data in the zipfile
extern int ZEXPORT mz_zip_entry_close(void *handle);
2017-10-03 21:56:07 -07:00
// Close the current file in the zipfile
extern int ZEXPORT mz_zip_entry_close_raw(void *handle, uint64_t uncompressed_size, uint32_t crc32);
2017-10-03 21:56:07 -07:00
// Close the current file in the zipfile where raw is compressed data
extern int ZEXPORT mz_zip_close(void *handle, const char *global_comment, uint16_t version_madeby);
2017-10-03 21:56:07 -07:00
// Close the zipfile
2012-07-14 16:55:17 -07:00
/***************************************************************************/
2012-01-21 14:53:44 -07:00
#ifdef __cplusplus
}
#endif
#endif /* _ZIP_H */