minizip-ng/zip.h

184 lines
8.3 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 _ZIP_H
#define _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
#ifdef HAVE_BZIP2
2014-01-07 19:13:14 -07:00
# include "bzlib.h"
2012-01-21 14:53:44 -07:00
#endif
#define Z_BZIP2ED 12
#if defined(STRICTZIP) || defined(STRICTZIPUNZIP)
/* like the STRICT of WIN32, we define a pointer that cannot be converted
from (void*) without cast */
typedef struct TagzipFile__ { int unused; } zip_file__;
2016-10-09 20:16:34 -07:00
typedef zip_file__ *zipFile;
2012-01-21 14:53:44 -07:00
#else
2016-10-09 20:16:34 -07:00
typedef voidp zipFile;
2012-01-21 14:53:44 -07:00
#endif
#define ZIP_OK (0)
#define ZIP_EOF (0)
#define ZIP_ERRNO (Z_ERRNO)
#define ZIP_PARAMERROR (-102)
#define ZIP_BADZIPFILE (-103)
#define ZIP_INTERNALERROR (-104)
2017-09-17 17:11:26 -07:00
#ifdef __GNUC__
# define ZIP_UNUSED __attribute__((__unused__))
#else
# define ZIP_UNUSED
#endif
2012-01-21 14:53:44 -07:00
typedef struct
{
uint32_t dos_date;
uint16_t internal_fa; /* internal file attributes 2 bytes */
uint32_t external_fa; /* external file attributes 4 bytes */
2012-01-21 14:53:44 -07:00
} zip_fileinfo;
#define APPEND_STATUS_CREATE (0)
#define APPEND_STATUS_CREATEAFTER (1)
#define APPEND_STATUS_ADDINZIP (2)
2012-07-14 16:55:17 -07:00
/***************************************************************************/
/* Writing a zip file */
2017-09-29 21:02:09 -07:00
extern zipFile ZEXPORT zipOpen(const char *path, int append, voidpf stream);
2012-07-14 16:55:17 -07:00
/* Create a zipfile.
path should contain the full path (by example, on a Windows XP computer
2012-07-14 16:55:17 -07:00
"c:\\zlib\\zlib113.zip" or on an Unix computer "zlib/zlib113.zip".
return NULL if zipfile cannot be opened
return zipFile handle if no error
If the file path exist and append == APPEND_STATUS_CREATEAFTER, the zip
2012-07-14 16:55:17 -07:00
will be created at the end of the file. (useful if the file contain a self extractor code)
If the file path exist and append == APPEND_STATUS_ADDINZIP, we will add files in existing
2012-07-14 16:55:17 -07:00
zip (be sure you don't add file that doesn't exist)
NOTE: There is no delete function into a zipfile. If you want delete file into a zipfile,
you must open a zipfile, and create another. Of course, you can use RAW reading and writing to copy
the file you did not want delete. */
2016-10-09 20:16:34 -07:00
extern zipFile ZEXPORT zipOpen2(const char *path, int append, const char **globalcomment,
2017-09-29 21:02:09 -07:00
voidpf stream);
2012-07-14 16:55:17 -07:00
2016-10-09 20:16:34 -07:00
extern zipFile ZEXPORT zipOpen3(const char *path, int append, uint64_t disk_size,
2017-09-29 21:02:09 -07:00
const char **globalcomment, voidpf stream);
2012-07-14 16:55:17 -07:00
/* Same as zipOpen2 but allows specification of spanned zip size */
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipOpenNewFileInZip(zipFile file, const char *filename, const zip_fileinfo *zipfi,
const void *extrafield_local, uint16_t size_extrafield_local, const void *extrafield_global,
uint16_t size_extrafield_global, const char *comment, uint16_t method, int level);
2012-07-14 16:55:17 -07:00
/* Open a file in the ZIP for writing.
filename : the filename in zip (if NULL, '-' without quote will be used
*zipfi contain supplemental information
extrafield_local buffer to store the local header extra field data, can be NULL
size_extrafield_local size of extrafield_local buffer
extrafield_global buffer to store the global header extra field data, can be NULL
size_extrafield_global size of extrafield_local buffer
comment buffer for comment string
method contain the compression method (0 for store, Z_DEFLATED for deflate)
level contain the level of compression (can be Z_DEFAULT_COMPRESSION)
zip64 is set to 1 if a zip64 extended information block should be added to the local file header.
this MUST be '1' if the uncompressed size is >= 0xffffffff. */
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipOpenNewFileInZip64(zipFile file, const char *filename, const zip_fileinfo *zipfi,
const void *extrafield_local, uint16_t size_extrafield_local, const void *extrafield_global,
uint16_t size_extrafield_global, const char *comment, uint16_t method, int level, int zip64);
2012-07-14 16:55:17 -07:00
/* Same as zipOpenNewFileInZip with zip64 support */
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipOpenNewFileInZip2(zipFile file, const char *filename, const zip_fileinfo *zipfi,
const void *extrafield_local, uint16_t size_extrafield_local, const void *extrafield_global,
uint16_t size_extrafield_global, const char *comment, uint16_t method, int level, int raw);
2012-07-14 16:55:17 -07:00
/* Same as zipOpenNewFileInZip, except if raw=1, we write raw file */
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipOpenNewFileInZip2_64(zipFile file, const char *filename, const zip_fileinfo *zipfi,
const void *extrafield_local, uint16_t size_extrafield_local, const void *extrafield_global,
uint16_t size_extrafield_global, const char *comment, uint16_t method, int level, int raw, int zip64);
2012-07-14 16:55:17 -07:00
/* Same as zipOpenNewFileInZip3 with zip64 support */
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipOpenNewFileInZip3(zipFile file, const char *filename, const zip_fileinfo *zipfi,
const void *extrafield_local, uint16_t size_extrafield_local, const void *extrafield_global,
uint16_t size_extrafield_global, const char *comment, uint16_t method, int level, int raw, int windowBits, int memLevel,
int strategy, const char *password, ZIP_UNUSED uint32_t crc_for_crypting);
2012-07-14 16:55:17 -07:00
/* Same as zipOpenNewFileInZip2, except
windowBits, memLevel, strategy : see parameter strategy in deflateInit2
2012-01-21 14:53:44 -07:00
password : crypting password (NULL for no crypting)
crc_for_crypting : crc of file to compress (needed for crypting) */
2012-01-21 14:53:44 -07:00
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipOpenNewFileInZip3_64(zipFile file, const char *filename, const zip_fileinfo *zipfi,
const void *extrafield_local, uint16_t size_extrafield_local, const void *extrafield_global,
uint16_t size_extrafield_global, const char *comment, uint16_t method, int level, int raw, int windowBits, int memLevel,
int strategy, const char *password, ZIP_UNUSED uint32_t crc_for_crypting, int zip64);
2012-07-14 16:55:17 -07:00
/* Same as zipOpenNewFileInZip3 with zip64 support */
2012-01-21 14:53:44 -07:00
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipOpenNewFileInZip4(zipFile file, const char *filename, const zip_fileinfo *zipfi,
const void *extrafield_local, uint16_t size_extrafield_local, const void *extrafield_global,
uint16_t size_extrafield_global, const char *comment, uint16_t method, int level, int raw, int windowBits, int memLevel,
int strategy, const char *password, ZIP_UNUSED uint32_t crc_for_crypting, uint16_t version_madeby, uint16_t flag_base);
2012-07-14 16:55:17 -07:00
/* Same as zipOpenNewFileInZip3 except versionMadeBy & flag fields */
2012-01-21 14:53:44 -07:00
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipOpenNewFileInZip4_64(zipFile file, const char *filename, const zip_fileinfo *zipfi,
const void *extrafield_local, uint16_t size_extrafield_local, const void *extrafield_global,
uint16_t size_extrafield_global, const char *comment, uint16_t method, int level, int raw, int windowBits, int memLevel,
int strategy, const char *password, ZIP_UNUSED uint32_t crc_for_crypting, uint16_t version_madeby, uint16_t flag_base, int zip64);
2012-07-14 16:55:17 -07:00
/* Same as zipOpenNewFileInZip4 with zip64 support */
2012-01-21 14:53:44 -07:00
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipWriteInFileInZip(zipFile file, const void *buf, uint32_t len);
2012-07-14 16:55:17 -07:00
/* Write data in the zipfile */
2012-01-21 14:53:44 -07:00
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipCloseFileInZip(zipFile file);
2012-07-14 16:55:17 -07:00
/* Close the current file in the zipfile */
2012-01-21 14:53:44 -07:00
extern int ZEXPORT zipCloseFileInZipRaw(zipFile file, uint32_t uncompressed_size, uint32_t crc32);
extern int ZEXPORT zipCloseFileInZipRaw64(zipFile file, uint64_t uncompressed_size, uint32_t crc32);
/* Close the current file in the zipfile, for file opened with parameter raw=1 in zipOpenNewFileInZip2
where raw is compressed data. Parameters uncompressed_size and crc32 are value for the uncompressed data. */
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipClose(zipFile file, const char *global_comment);
2012-07-14 16:55:17 -07:00
/* Close the zipfile */
2012-01-21 14:53:44 -07:00
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipClose_64(zipFile file, const char *global_comment);
2016-10-09 20:16:34 -07:00
extern int ZEXPORT zipClose2_64(zipFile file, const char *global_comment, uint16_t version_madeby);
/* Same as zipClose_64 except version_madeby field */
2012-07-14 16:55:17 -07:00
/***************************************************************************/
2012-01-21 14:53:44 -07:00
#ifdef __cplusplus
}
#endif
#endif /* _ZIP_H */