Path: blob/master/dependencies/all/miniz/miniz.h
774 views
#define MINIZ_EXPORT1/* miniz.c 2.2.0 - public domain deflate/inflate, zlib-subset, ZIP reading/writing/appending, PNG writing2See "unlicense" statement at the end of this file.3Rich Geldreich <[email protected]>, last updated Oct. 13, 20134Implements RFC 1950: http://www.ietf.org/rfc/rfc1950.txt and RFC 1951: http://www.ietf.org/rfc/rfc1951.txt56Most API's defined in miniz.c are optional. For example, to disable the archive related functions just define7MINIZ_NO_ARCHIVE_APIS, or to get rid of all stdio usage define MINIZ_NO_STDIO (see the list below for more macros).89* Low-level Deflate/Inflate implementation notes:1011Compression: Use the "tdefl" API's. The compressor supports raw, static, and dynamic blocks, lazy or12greedy parsing, match length filtering, RLE-only, and Huffman-only streams. It performs and compresses13approximately as well as zlib.1415Decompression: Use the "tinfl" API's. The entire decompressor is implemented as a single function16coroutine: see tinfl_decompress(). It supports decompression into a 32KB (or larger power of 2) wrapping buffer, or into a memory17block large enough to hold the entire file.1819The low-level tdefl/tinfl API's do not make any use of dynamic memory allocation.2021* zlib-style API notes:2223miniz.c implements a fairly large subset of zlib. There's enough functionality present for it to be a drop-in24zlib replacement in many apps:25The z_stream struct, optional memory allocation callbacks26deflateInit/deflateInit2/deflate/deflateReset/deflateEnd/deflateBound27inflateInit/inflateInit2/inflate/inflateReset/inflateEnd28compress, compress2, compressBound, uncompress29CRC-32, Adler-32 - Using modern, minimal code size, CPU cache friendly routines.30Supports raw deflate streams or standard zlib streams with adler-32 checking.3132Limitations:33The callback API's are not implemented yet. No support for gzip headers or zlib static dictionaries.34I've tried to closely emulate zlib's various flavors of stream flushing and return status codes, but35there are no guarantees that miniz.c pulls this off perfectly.3637* PNG writing: See the tdefl_write_image_to_png_file_in_memory() function, originally written by38Alex Evans. Supports 1-4 bytes/pixel images.3940* ZIP archive API notes:4142The ZIP archive API's where designed with simplicity and efficiency in mind, with just enough abstraction to43get the job done with minimal fuss. There are simple API's to retrieve file information, read files from44existing archives, create new archives, append new files to existing archives, or clone archive data from45one archive to another. It supports archives located in memory or the heap, on disk (using stdio.h),46or you can specify custom file read/write callbacks.4748- Archive reading: Just call this function to read a single file from a disk archive:4950void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name,51size_t *pSize, mz_uint zip_flags);5253For more complex cases, use the "mz_zip_reader" functions. Upon opening an archive, the entire central54directory is located and read as-is into memory, and subsequent file access only occurs when reading individual files.5556- Archives file scanning: The simple way is to use this function to scan a loaded archive for a specific file:5758int mz_zip_reader_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags);5960The locate operation can optionally check file comments too, which (as one example) can be used to identify61multiple versions of the same file in an archive. This function uses a simple linear search through the central62directory, so it's not very fast.6364Alternately, you can iterate through all the files in an archive (using mz_zip_reader_get_num_files()) and65retrieve detailed info on each file by calling mz_zip_reader_file_stat().6667- Archive creation: Use the "mz_zip_writer" functions. The ZIP writer immediately writes compressed file data68to disk and builds an exact image of the central directory in memory. The central directory image is written69all at once at the end of the archive file when the archive is finalized.7071The archive writer can optionally align each file's local header and file data to any power of 2 alignment,72which can be useful when the archive will be read from optical media. Also, the writer supports placing73arbitrary data blobs at the very beginning of ZIP archives. Archives written using either feature are still74readable by any ZIP tool.7576- Archive appending: The simple way to add a single file to an archive is to call this function:7778mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name,79const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags);8081The archive will be created if it doesn't already exist, otherwise it'll be appended to.82Note the appending is done in-place and is not an atomic operation, so if something goes wrong83during the operation it's possible the archive could be left without a central directory (although the local84file headers and file data will be fine, so the archive will be recoverable).8586For more complex archive modification scenarios:871. The safest way is to use a mz_zip_reader to read the existing archive, cloning only those bits you want to88preserve into a new archive using using the mz_zip_writer_add_from_zip_reader() function (which compiles the89compressed file data as-is). When you're done, delete the old archive and rename the newly written archive, and90you're done. This is safe but requires a bunch of temporary disk space or heap memory.91922. Or, you can convert an mz_zip_reader in-place to an mz_zip_writer using mz_zip_writer_init_from_reader(),93append new files as needed, then finalize the archive which will write an updated central directory to the94original archive. (This is basically what mz_zip_add_mem_to_archive_file_in_place() does.) There's a95possibility that the archive's central directory could be lost with this method if anything goes wrong, though.9697- ZIP archive support limitations:98No spanning support. Extraction functions can only handle unencrypted, stored or deflated files.99Requires streams capable of seeking.100101* This is a header file library, like stb_image.c. To get only a header file, either cut and paste the102below header, or create miniz.h, #define MINIZ_HEADER_FILE_ONLY, and then include miniz.c from it.103104* Important: For best perf. be sure to customize the below macros for your target platform:105#define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 1106#define MINIZ_LITTLE_ENDIAN 1107#define MINIZ_HAS_64BIT_REGISTERS 1108109* On platforms using glibc, Be sure to "#define _LARGEFILE64_SOURCE 1" before including miniz.c to ensure miniz110uses the 64-bit variants: fopen64(), stat64(), etc. Otherwise you won't be able to process large files111(i.e. 32-bit stat() fails for me on files > 0x7FFFFFFF bytes).112*/113#pragma once114115116117/* Defines to completely disable specific portions of miniz.c:118If all macros here are defined the only functionality remaining will be CRC-32, adler-32, tinfl, and tdefl. */119120/* Define MINIZ_NO_STDIO to disable all usage and any functions which rely on stdio for file I/O. */121/*#define MINIZ_NO_STDIO */122123/* If MINIZ_NO_TIME is specified then the ZIP archive functions will not be able to get the current time, or */124/* get/set file times, and the C run-time funcs that get/set times won't be called. */125/* The current downside is the times written to your archives will be from 1979. */126/*#define MINIZ_NO_TIME */127128/* Define MINIZ_NO_ARCHIVE_APIS to disable all ZIP archive API's. */129/*#define MINIZ_NO_ARCHIVE_APIS */130131/* Define MINIZ_NO_ARCHIVE_WRITING_APIS to disable all writing related ZIP archive API's. */132/*#define MINIZ_NO_ARCHIVE_WRITING_APIS */133134/* Define MINIZ_NO_ZLIB_APIS to remove all ZLIB-style compression/decompression API's. */135/*#define MINIZ_NO_ZLIB_APIS */136137/* Define MINIZ_NO_ZLIB_COMPATIBLE_NAME to disable zlib names, to prevent conflicts against stock zlib. */138/*#define MINIZ_NO_ZLIB_COMPATIBLE_NAMES */139140/* Define MINIZ_NO_MALLOC to disable all calls to malloc, free, and realloc.141Note if MINIZ_NO_MALLOC is defined then the user must always provide custom user alloc/free/realloc142callbacks to the zlib and archive API's, and a few stand-alone helper API's which don't provide custom user143functions (such as tdefl_compress_mem_to_heap() and tinfl_decompress_mem_to_heap()) won't work. */144/*#define MINIZ_NO_MALLOC */145146#if defined(__TINYC__) && (defined(__linux) || defined(__linux__))147/* TODO: Work around "error: include file 'sys\utime.h' when compiling with tcc on Linux */148#define MINIZ_NO_TIME149#endif150151#include <stddef.h>152153#if !defined(MINIZ_NO_TIME) && !defined(MINIZ_NO_ARCHIVE_APIS)154#include <time.h>155#endif156157#if defined(_M_IX86) || defined(_M_X64) || defined(__i386__) || defined(__i386) || defined(__i486__) || defined(__i486) || defined(i386) || defined(__ia64__) || defined(__x86_64__)158/* MINIZ_X86_OR_X64_CPU is only used to help set the below macros. */159#define MINIZ_X86_OR_X64_CPU 1160#else161#define MINIZ_X86_OR_X64_CPU 0162#endif163164#if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) || MINIZ_X86_OR_X64_CPU165/* Set MINIZ_LITTLE_ENDIAN to 1 if the processor is little endian. */166#define MINIZ_LITTLE_ENDIAN 1167#else168#define MINIZ_LITTLE_ENDIAN 0169#endif170171/* Set MINIZ_USE_UNALIGNED_LOADS_AND_STORES only if not set */172#if !defined(MINIZ_USE_UNALIGNED_LOADS_AND_STORES)173#if MINIZ_X86_OR_X64_CPU174/* Set MINIZ_USE_UNALIGNED_LOADS_AND_STORES to 1 on CPU's that permit efficient integer loads and stores from unaligned addresses. */175#define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 1176#define MINIZ_UNALIGNED_USE_MEMCPY177#else178#define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 0179#endif180#endif181182#if defined(_M_X64) || defined(_WIN64) || defined(__MINGW64__) || defined(_LP64) || defined(__LP64__) || defined(__ia64__) || defined(__x86_64__)183/* Set MINIZ_HAS_64BIT_REGISTERS to 1 if operations on 64-bit integers are reasonably fast (and don't involve compiler generated calls to helper functions). */184#define MINIZ_HAS_64BIT_REGISTERS 1185#else186#define MINIZ_HAS_64BIT_REGISTERS 0187#endif188189#ifdef __cplusplus190extern "C" {191#endif192193/* ------------------- zlib-style API Definitions. */194195/* For more compatibility with zlib, miniz.c uses unsigned long for some parameters/struct members. Beware: mz_ulong can be either 32 or 64-bits! */196typedef unsigned long mz_ulong;197198/* mz_free() internally uses the MZ_FREE() macro (which by default calls free() unless you've modified the MZ_MALLOC macro) to release a block allocated from the heap. */199MINIZ_EXPORT void mz_free(void *p);200201#define MZ_ADLER32_INIT (1)202/* mz_adler32() returns the initial adler-32 value to use when called with ptr==NULL. */203MINIZ_EXPORT mz_ulong mz_adler32(mz_ulong adler, const unsigned char *ptr, size_t buf_len);204205#define MZ_CRC32_INIT (0)206/* mz_crc32() returns the initial CRC-32 value to use when called with ptr==NULL. */207MINIZ_EXPORT mz_ulong mz_crc32(mz_ulong crc, const unsigned char *ptr, size_t buf_len);208209/* Compression strategies. */210enum211{212MZ_DEFAULT_STRATEGY = 0,213MZ_FILTERED = 1,214MZ_HUFFMAN_ONLY = 2,215MZ_RLE = 3,216MZ_FIXED = 4217};218219/* Method */220#define MZ_DEFLATED 8221222/* Heap allocation callbacks.223Note that mz_alloc_func parameter types purposely differ from zlib's: items/size is size_t, not unsigned long. */224typedef void *(*mz_alloc_func)(void *opaque, size_t items, size_t size);225typedef void (*mz_free_func)(void *opaque, void *address);226typedef void *(*mz_realloc_func)(void *opaque, void *address, size_t items, size_t size);227228/* Compression levels: 0-9 are the standard zlib-style levels, 10 is best possible compression (not zlib compatible, and may be very slow), MZ_DEFAULT_COMPRESSION=MZ_DEFAULT_LEVEL. */229enum230{231MZ_NO_COMPRESSION = 0,232MZ_BEST_SPEED = 1,233MZ_BEST_COMPRESSION = 9,234MZ_UBER_COMPRESSION = 10,235MZ_DEFAULT_LEVEL = 6,236MZ_DEFAULT_COMPRESSION = -1237};238239#define MZ_VERSION "10.2.0"240#define MZ_VERNUM 0xA100241#define MZ_VER_MAJOR 10242#define MZ_VER_MINOR 2243#define MZ_VER_REVISION 0244#define MZ_VER_SUBREVISION 0245246#ifndef MINIZ_NO_ZLIB_APIS247248/* Flush values. For typical usage you only need MZ_NO_FLUSH and MZ_FINISH. The other values are for advanced use (refer to the zlib docs). */249enum250{251MZ_NO_FLUSH = 0,252MZ_PARTIAL_FLUSH = 1,253MZ_SYNC_FLUSH = 2,254MZ_FULL_FLUSH = 3,255MZ_FINISH = 4,256MZ_BLOCK = 5257};258259/* Return status codes. MZ_PARAM_ERROR is non-standard. */260enum261{262MZ_OK = 0,263MZ_STREAM_END = 1,264MZ_NEED_DICT = 2,265MZ_ERRNO = -1,266MZ_STREAM_ERROR = -2,267MZ_DATA_ERROR = -3,268MZ_MEM_ERROR = -4,269MZ_BUF_ERROR = -5,270MZ_VERSION_ERROR = -6,271MZ_PARAM_ERROR = -10000272};273274/* Window bits */275#define MZ_DEFAULT_WINDOW_BITS 15276277struct mz_internal_state;278279/* Compression/decompression stream struct. */280typedef struct mz_stream_s281{282const unsigned char *next_in; /* pointer to next byte to read */283unsigned int avail_in; /* number of bytes available at next_in */284mz_ulong total_in; /* total number of bytes consumed so far */285286unsigned char *next_out; /* pointer to next byte to write */287unsigned int avail_out; /* number of bytes that can be written to next_out */288mz_ulong total_out; /* total number of bytes produced so far */289290char *msg; /* error msg (unused) */291struct mz_internal_state *state; /* internal state, allocated by zalloc/zfree */292293mz_alloc_func zalloc; /* optional heap allocation function (defaults to malloc) */294mz_free_func zfree; /* optional heap free function (defaults to free) */295void *opaque; /* heap alloc function user pointer */296297int data_type; /* data_type (unused) */298mz_ulong adler; /* adler32 of the source or uncompressed data */299mz_ulong reserved; /* not used */300} mz_stream;301302typedef mz_stream *mz_streamp;303304/* Returns the version string of miniz.c. */305MINIZ_EXPORT const char *mz_version(void);306307/* mz_deflateInit() initializes a compressor with default options: */308/* Parameters: */309/* pStream must point to an initialized mz_stream struct. */310/* level must be between [MZ_NO_COMPRESSION, MZ_BEST_COMPRESSION]. */311/* level 1 enables a specially optimized compression function that's been optimized purely for performance, not ratio. */312/* (This special func. is currently only enabled when MINIZ_USE_UNALIGNED_LOADS_AND_STORES and MINIZ_LITTLE_ENDIAN are defined.) */313/* Return values: */314/* MZ_OK on success. */315/* MZ_STREAM_ERROR if the stream is bogus. */316/* MZ_PARAM_ERROR if the input parameters are bogus. */317/* MZ_MEM_ERROR on out of memory. */318MINIZ_EXPORT int mz_deflateInit(mz_streamp pStream, int level);319320/* mz_deflateInit2() is like mz_deflate(), except with more control: */321/* Additional parameters: */322/* method must be MZ_DEFLATED */323/* window_bits must be MZ_DEFAULT_WINDOW_BITS (to wrap the deflate stream with zlib header/adler-32 footer) or -MZ_DEFAULT_WINDOW_BITS (raw deflate/no header or footer) */324/* mem_level must be between [1, 9] (it's checked but ignored by miniz.c) */325MINIZ_EXPORT int mz_deflateInit2(mz_streamp pStream, int level, int method, int window_bits, int mem_level, int strategy);326327/* Quickly resets a compressor without having to reallocate anything. Same as calling mz_deflateEnd() followed by mz_deflateInit()/mz_deflateInit2(). */328MINIZ_EXPORT int mz_deflateReset(mz_streamp pStream);329330/* mz_deflate() compresses the input to output, consuming as much of the input and producing as much output as possible. */331/* Parameters: */332/* pStream is the stream to read from and write to. You must initialize/update the next_in, avail_in, next_out, and avail_out members. */333/* flush may be MZ_NO_FLUSH, MZ_PARTIAL_FLUSH/MZ_SYNC_FLUSH, MZ_FULL_FLUSH, or MZ_FINISH. */334/* Return values: */335/* MZ_OK on success (when flushing, or if more input is needed but not available, and/or there's more output to be written but the output buffer is full). */336/* MZ_STREAM_END if all input has been consumed and all output bytes have been written. Don't call mz_deflate() on the stream anymore. */337/* MZ_STREAM_ERROR if the stream is bogus. */338/* MZ_PARAM_ERROR if one of the parameters is invalid. */339/* MZ_BUF_ERROR if no forward progress is possible because the input and/or output buffers are empty. (Fill up the input buffer or free up some output space and try again.) */340MINIZ_EXPORT int mz_deflate(mz_streamp pStream, int flush);341342/* mz_deflateEnd() deinitializes a compressor: */343/* Return values: */344/* MZ_OK on success. */345/* MZ_STREAM_ERROR if the stream is bogus. */346MINIZ_EXPORT int mz_deflateEnd(mz_streamp pStream);347348/* mz_deflateBound() returns a (very) conservative upper bound on the amount of data that could be generated by deflate(), assuming flush is set to only MZ_NO_FLUSH or MZ_FINISH. */349MINIZ_EXPORT mz_ulong mz_deflateBound(mz_streamp pStream, mz_ulong source_len);350351/* Single-call compression functions mz_compress() and mz_compress2(): */352/* Returns MZ_OK on success, or one of the error codes from mz_deflate() on failure. */353MINIZ_EXPORT int mz_compress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len);354MINIZ_EXPORT int mz_compress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len, int level);355356/* mz_compressBound() returns a (very) conservative upper bound on the amount of data that could be generated by calling mz_compress(). */357MINIZ_EXPORT mz_ulong mz_compressBound(mz_ulong source_len);358359/* Initializes a decompressor. */360MINIZ_EXPORT int mz_inflateInit(mz_streamp pStream);361362/* mz_inflateInit2() is like mz_inflateInit() with an additional option that controls the window size and whether or not the stream has been wrapped with a zlib header/footer: */363/* window_bits must be MZ_DEFAULT_WINDOW_BITS (to parse zlib header/footer) or -MZ_DEFAULT_WINDOW_BITS (raw deflate). */364MINIZ_EXPORT int mz_inflateInit2(mz_streamp pStream, int window_bits);365366/* Quickly resets a compressor without having to reallocate anything. Same as calling mz_inflateEnd() followed by mz_inflateInit()/mz_inflateInit2(). */367MINIZ_EXPORT int mz_inflateReset(mz_streamp pStream);368369/* Decompresses the input stream to the output, consuming only as much of the input as needed, and writing as much to the output as possible. */370/* Parameters: */371/* pStream is the stream to read from and write to. You must initialize/update the next_in, avail_in, next_out, and avail_out members. */372/* flush may be MZ_NO_FLUSH, MZ_SYNC_FLUSH, or MZ_FINISH. */373/* On the first call, if flush is MZ_FINISH it's assumed the input and output buffers are both sized large enough to decompress the entire stream in a single call (this is slightly faster). */374/* MZ_FINISH implies that there are no more source bytes available beside what's already in the input buffer, and that the output buffer is large enough to hold the rest of the decompressed data. */375/* Return values: */376/* MZ_OK on success. Either more input is needed but not available, and/or there's more output to be written but the output buffer is full. */377/* MZ_STREAM_END if all needed input has been consumed and all output bytes have been written. For zlib streams, the adler-32 of the decompressed data has also been verified. */378/* MZ_STREAM_ERROR if the stream is bogus. */379/* MZ_DATA_ERROR if the deflate stream is invalid. */380/* MZ_PARAM_ERROR if one of the parameters is invalid. */381/* MZ_BUF_ERROR if no forward progress is possible because the input buffer is empty but the inflater needs more input to continue, or if the output buffer is not large enough. Call mz_inflate() again */382/* with more input data, or with more room in the output buffer (except when using single call decompression, described above). */383MINIZ_EXPORT int mz_inflate(mz_streamp pStream, int flush);384385/* Deinitializes a decompressor. */386MINIZ_EXPORT int mz_inflateEnd(mz_streamp pStream);387388/* Single-call decompression. */389/* Returns MZ_OK on success, or one of the error codes from mz_inflate() on failure. */390MINIZ_EXPORT int mz_uncompress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len);391MINIZ_EXPORT int mz_uncompress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong *pSource_len);392393/* Returns a string description of the specified error code, or NULL if the error code is invalid. */394MINIZ_EXPORT const char *mz_error(int err);395396/* Redefine zlib-compatible names to miniz equivalents, so miniz.c can be used as a drop-in replacement for the subset of zlib that miniz.c supports. */397/* Define MINIZ_NO_ZLIB_COMPATIBLE_NAMES to disable zlib-compatibility if you use zlib in the same project. */398#ifndef MINIZ_NO_ZLIB_COMPATIBLE_NAMES399typedef unsigned char Byte;400typedef unsigned int uInt;401typedef mz_ulong uLong;402typedef Byte Bytef;403typedef uInt uIntf;404typedef char charf;405typedef int intf;406typedef void *voidpf;407typedef uLong uLongf;408typedef void *voidp;409typedef void *const voidpc;410#define Z_NULL 0411#define Z_NO_FLUSH MZ_NO_FLUSH412#define Z_PARTIAL_FLUSH MZ_PARTIAL_FLUSH413#define Z_SYNC_FLUSH MZ_SYNC_FLUSH414#define Z_FULL_FLUSH MZ_FULL_FLUSH415#define Z_FINISH MZ_FINISH416#define Z_BLOCK MZ_BLOCK417#define Z_OK MZ_OK418#define Z_STREAM_END MZ_STREAM_END419#define Z_NEED_DICT MZ_NEED_DICT420#define Z_ERRNO MZ_ERRNO421#define Z_STREAM_ERROR MZ_STREAM_ERROR422#define Z_DATA_ERROR MZ_DATA_ERROR423#define Z_MEM_ERROR MZ_MEM_ERROR424#define Z_BUF_ERROR MZ_BUF_ERROR425#define Z_VERSION_ERROR MZ_VERSION_ERROR426#define Z_PARAM_ERROR MZ_PARAM_ERROR427#define Z_NO_COMPRESSION MZ_NO_COMPRESSION428#define Z_BEST_SPEED MZ_BEST_SPEED429#define Z_BEST_COMPRESSION MZ_BEST_COMPRESSION430#define Z_DEFAULT_COMPRESSION MZ_DEFAULT_COMPRESSION431#define Z_DEFAULT_STRATEGY MZ_DEFAULT_STRATEGY432#define Z_FILTERED MZ_FILTERED433#define Z_HUFFMAN_ONLY MZ_HUFFMAN_ONLY434#define Z_RLE MZ_RLE435#define Z_FIXED MZ_FIXED436#define Z_DEFLATED MZ_DEFLATED437#define Z_DEFAULT_WINDOW_BITS MZ_DEFAULT_WINDOW_BITS438#define alloc_func mz_alloc_func439#define free_func mz_free_func440#define internal_state mz_internal_state441#define z_stream mz_stream442#define deflateInit mz_deflateInit443#define deflateInit2 mz_deflateInit2444#define deflateReset mz_deflateReset445#define deflate mz_deflate446#define deflateEnd mz_deflateEnd447#define deflateBound mz_deflateBound448#define compress mz_compress449#define compress2 mz_compress2450#define compressBound mz_compressBound451#define inflateInit mz_inflateInit452#define inflateInit2 mz_inflateInit2453#define inflateReset mz_inflateReset454#define inflate mz_inflate455#define inflateEnd mz_inflateEnd456#define uncompress mz_uncompress457#define uncompress2 mz_uncompress2458#define crc32 mz_crc32459#define adler32 mz_adler32460#define MAX_WBITS 15461#define MAX_MEM_LEVEL 9462#define zError mz_error463#define ZLIB_VERSION MZ_VERSION464#define ZLIB_VERNUM MZ_VERNUM465#define ZLIB_VER_MAJOR MZ_VER_MAJOR466#define ZLIB_VER_MINOR MZ_VER_MINOR467#define ZLIB_VER_REVISION MZ_VER_REVISION468#define ZLIB_VER_SUBREVISION MZ_VER_SUBREVISION469#define zlibVersion mz_version470#define zlib_version mz_version()471#endif /* #ifndef MINIZ_NO_ZLIB_COMPATIBLE_NAMES */472473#endif /* MINIZ_NO_ZLIB_APIS */474475#ifdef __cplusplus476}477#endif478479480481482483#pragma once484#include <assert.h>485#include <stdint.h>486#include <stdlib.h>487#include <string.h>488489490491/* ------------------- Types and macros */492typedef unsigned char mz_uint8;493typedef signed short mz_int16;494typedef unsigned short mz_uint16;495typedef unsigned int mz_uint32;496typedef unsigned int mz_uint;497typedef int64_t mz_int64;498typedef uint64_t mz_uint64;499typedef int mz_bool;500501#define MZ_FALSE (0)502#define MZ_TRUE (1)503504/* Works around MSVC's spammy "warning C4127: conditional expression is constant" message. */505#ifdef _MSC_VER506#define MZ_MACRO_END while (0, 0)507#else508#define MZ_MACRO_END while (0)509#endif510511#ifdef MINIZ_NO_STDIO512#define MZ_FILE void *513#else514#include <stdio.h>515#define MZ_FILE FILE516#endif /* #ifdef MINIZ_NO_STDIO */517518#ifdef MINIZ_NO_TIME519typedef struct mz_dummy_time_t_tag520{521int m_dummy;522} mz_dummy_time_t;523#define MZ_TIME_T mz_dummy_time_t524#else525#define MZ_TIME_T time_t526#endif527528#define MZ_ASSERT(x) assert(x)529530#ifdef MINIZ_NO_MALLOC531#define MZ_MALLOC(x) NULL532#define MZ_FREE(x) (void)x, ((void)0)533#define MZ_REALLOC(p, x) NULL534#else535#define MZ_MALLOC(x) malloc(x)536#define MZ_FREE(x) free(x)537#define MZ_REALLOC(p, x) realloc(p, x)538#endif539540#define MZ_MAX(a, b) (((a) > (b)) ? (a) : (b))541#define MZ_MIN(a, b) (((a) < (b)) ? (a) : (b))542#define MZ_CLEAR_OBJ(obj) memset(&(obj), 0, sizeof(obj))543544#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN545#define MZ_READ_LE16(p) *((const mz_uint16 *)(p))546#define MZ_READ_LE32(p) *((const mz_uint32 *)(p))547#else548#define MZ_READ_LE16(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U))549#define MZ_READ_LE32(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U) | ((mz_uint32)(((const mz_uint8 *)(p))[2]) << 16U) | ((mz_uint32)(((const mz_uint8 *)(p))[3]) << 24U))550#endif551552#define MZ_READ_LE64(p) (((mz_uint64)MZ_READ_LE32(p)) | (((mz_uint64)MZ_READ_LE32((const mz_uint8 *)(p) + sizeof(mz_uint32))) << 32U))553554#ifdef _MSC_VER555#define MZ_FORCEINLINE __forceinline556#elif defined(__GNUC__)557#define MZ_FORCEINLINE __inline__ __attribute__((__always_inline__))558#else559#define MZ_FORCEINLINE inline560#endif561562#ifdef __cplusplus563extern "C" {564#endif565566extern MINIZ_EXPORT void *miniz_def_alloc_func(void *opaque, size_t items, size_t size);567extern MINIZ_EXPORT void miniz_def_free_func(void *opaque, void *address);568extern MINIZ_EXPORT void *miniz_def_realloc_func(void *opaque, void *address, size_t items, size_t size);569570#define MZ_UINT16_MAX (0xFFFFU)571#define MZ_UINT32_MAX (0xFFFFFFFFU)572573#ifdef __cplusplus574}575#endif576#pragma once577578579#ifdef __cplusplus580extern "C" {581#endif582/* ------------------- Low-level Compression API Definitions */583584/* Set TDEFL_LESS_MEMORY to 1 to use less memory (compression will be slightly slower, and raw/dynamic blocks will be output more frequently). */585#define TDEFL_LESS_MEMORY 0586587/* tdefl_init() compression flags logically OR'd together (low 12 bits contain the max. number of probes per dictionary search): */588/* TDEFL_DEFAULT_MAX_PROBES: The compressor defaults to 128 dictionary probes per dictionary search. 0=Huffman only, 1=Huffman+LZ (fastest/crap compression), 4095=Huffman+LZ (slowest/best compression). */589enum590{591TDEFL_HUFFMAN_ONLY = 0,592TDEFL_DEFAULT_MAX_PROBES = 128,593TDEFL_MAX_PROBES_MASK = 0xFFF594};595596/* TDEFL_WRITE_ZLIB_HEADER: If set, the compressor outputs a zlib header before the deflate data, and the Adler-32 of the source data at the end. Otherwise, you'll get raw deflate data. */597/* TDEFL_COMPUTE_ADLER32: Always compute the adler-32 of the input data (even when not writing zlib headers). */598/* TDEFL_GREEDY_PARSING_FLAG: Set to use faster greedy parsing, instead of more efficient lazy parsing. */599/* TDEFL_NONDETERMINISTIC_PARSING_FLAG: Enable to decrease the compressor's initialization time to the minimum, but the output may vary from run to run given the same input (depending on the contents of memory). */600/* TDEFL_RLE_MATCHES: Only look for RLE matches (matches with a distance of 1) */601/* TDEFL_FILTER_MATCHES: Discards matches <= 5 chars if enabled. */602/* TDEFL_FORCE_ALL_STATIC_BLOCKS: Disable usage of optimized Huffman tables. */603/* TDEFL_FORCE_ALL_RAW_BLOCKS: Only use raw (uncompressed) deflate blocks. */604/* The low 12 bits are reserved to control the max # of hash probes per dictionary lookup (see TDEFL_MAX_PROBES_MASK). */605enum606{607TDEFL_WRITE_ZLIB_HEADER = 0x01000,608TDEFL_COMPUTE_ADLER32 = 0x02000,609TDEFL_GREEDY_PARSING_FLAG = 0x04000,610TDEFL_NONDETERMINISTIC_PARSING_FLAG = 0x08000,611TDEFL_RLE_MATCHES = 0x10000,612TDEFL_FILTER_MATCHES = 0x20000,613TDEFL_FORCE_ALL_STATIC_BLOCKS = 0x40000,614TDEFL_FORCE_ALL_RAW_BLOCKS = 0x80000615};616617/* High level compression functions: */618/* tdefl_compress_mem_to_heap() compresses a block in memory to a heap block allocated via malloc(). */619/* On entry: */620/* pSrc_buf, src_buf_len: Pointer and size of source block to compress. */621/* flags: The max match finder probes (default is 128) logically OR'd against the above flags. Higher probes are slower but improve compression. */622/* On return: */623/* Function returns a pointer to the compressed data, or NULL on failure. */624/* *pOut_len will be set to the compressed data's size, which could be larger than src_buf_len on uncompressible data. */625/* The caller must free() the returned block when it's no longer needed. */626MINIZ_EXPORT void *tdefl_compress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags);627628/* tdefl_compress_mem_to_mem() compresses a block in memory to another block in memory. */629/* Returns 0 on failure. */630MINIZ_EXPORT size_t tdefl_compress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags);631632/* Compresses an image to a compressed PNG file in memory. */633/* On entry: */634/* pImage, w, h, and num_chans describe the image to compress. num_chans may be 1, 2, 3, or 4. */635/* The image pitch in bytes per scanline will be w*num_chans. The leftmost pixel on the top scanline is stored first in memory. */636/* level may range from [0,10], use MZ_NO_COMPRESSION, MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc. or a decent default is MZ_DEFAULT_LEVEL */637/* If flip is true, the image will be flipped on the Y axis (useful for OpenGL apps). */638/* On return: */639/* Function returns a pointer to the compressed data, or NULL on failure. */640/* *pLen_out will be set to the size of the PNG image file. */641/* The caller must mz_free() the returned heap block (which will typically be larger than *pLen_out) when it's no longer needed. */642MINIZ_EXPORT void *tdefl_write_image_to_png_file_in_memory_ex(const void *pImage, int w, int h, int num_chans, size_t *pLen_out, mz_uint level, mz_bool flip);643MINIZ_EXPORT void *tdefl_write_image_to_png_file_in_memory(const void *pImage, int w, int h, int num_chans, size_t *pLen_out);644645/* Output stream interface. The compressor uses this interface to write compressed data. It'll typically be called TDEFL_OUT_BUF_SIZE at a time. */646typedef mz_bool (*tdefl_put_buf_func_ptr)(const void *pBuf, int len, void *pUser);647648/* tdefl_compress_mem_to_output() compresses a block to an output stream. The above helpers use this function internally. */649MINIZ_EXPORT mz_bool tdefl_compress_mem_to_output(const void *pBuf, size_t buf_len, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);650651enum652{653TDEFL_MAX_HUFF_TABLES = 3,654TDEFL_MAX_HUFF_SYMBOLS_0 = 288,655TDEFL_MAX_HUFF_SYMBOLS_1 = 32,656TDEFL_MAX_HUFF_SYMBOLS_2 = 19,657TDEFL_LZ_DICT_SIZE = 32768,658TDEFL_LZ_DICT_SIZE_MASK = TDEFL_LZ_DICT_SIZE - 1,659TDEFL_MIN_MATCH_LEN = 3,660TDEFL_MAX_MATCH_LEN = 258661};662663/* TDEFL_OUT_BUF_SIZE MUST be large enough to hold a single entire compressed output block (using static/fixed Huffman codes). */664#if TDEFL_LESS_MEMORY665enum666{667TDEFL_LZ_CODE_BUF_SIZE = 24 * 1024,668TDEFL_OUT_BUF_SIZE = (TDEFL_LZ_CODE_BUF_SIZE * 13) / 10,669TDEFL_MAX_HUFF_SYMBOLS = 288,670TDEFL_LZ_HASH_BITS = 12,671TDEFL_LEVEL1_HASH_SIZE_MASK = 4095,672TDEFL_LZ_HASH_SHIFT = (TDEFL_LZ_HASH_BITS + 2) / 3,673TDEFL_LZ_HASH_SIZE = 1 << TDEFL_LZ_HASH_BITS674};675#else676enum677{678TDEFL_LZ_CODE_BUF_SIZE = 64 * 1024,679TDEFL_OUT_BUF_SIZE = (TDEFL_LZ_CODE_BUF_SIZE * 13) / 10,680TDEFL_MAX_HUFF_SYMBOLS = 288,681TDEFL_LZ_HASH_BITS = 15,682TDEFL_LEVEL1_HASH_SIZE_MASK = 4095,683TDEFL_LZ_HASH_SHIFT = (TDEFL_LZ_HASH_BITS + 2) / 3,684TDEFL_LZ_HASH_SIZE = 1 << TDEFL_LZ_HASH_BITS685};686#endif687688/* The low-level tdefl functions below may be used directly if the above helper functions aren't flexible enough. The low-level functions don't make any heap allocations, unlike the above helper functions. */689typedef enum {690TDEFL_STATUS_BAD_PARAM = -2,691TDEFL_STATUS_PUT_BUF_FAILED = -1,692TDEFL_STATUS_OKAY = 0,693TDEFL_STATUS_DONE = 1694} tdefl_status;695696/* Must map to MZ_NO_FLUSH, MZ_SYNC_FLUSH, etc. enums */697typedef enum {698TDEFL_NO_FLUSH = 0,699TDEFL_SYNC_FLUSH = 2,700TDEFL_FULL_FLUSH = 3,701TDEFL_FINISH = 4702} tdefl_flush;703704/* tdefl's compression state structure. */705typedef struct706{707tdefl_put_buf_func_ptr m_pPut_buf_func;708void *m_pPut_buf_user;709mz_uint m_flags, m_max_probes[2];710int m_greedy_parsing;711mz_uint m_adler32, m_lookahead_pos, m_lookahead_size, m_dict_size;712mz_uint8 *m_pLZ_code_buf, *m_pLZ_flags, *m_pOutput_buf, *m_pOutput_buf_end;713mz_uint m_num_flags_left, m_total_lz_bytes, m_lz_code_buf_dict_pos, m_bits_in, m_bit_buffer;714mz_uint m_saved_match_dist, m_saved_match_len, m_saved_lit, m_output_flush_ofs, m_output_flush_remaining, m_finished, m_block_index, m_wants_to_finish;715tdefl_status m_prev_return_status;716const void *m_pIn_buf;717void *m_pOut_buf;718size_t *m_pIn_buf_size, *m_pOut_buf_size;719tdefl_flush m_flush;720const mz_uint8 *m_pSrc;721size_t m_src_buf_left, m_out_buf_ofs;722mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1];723mz_uint16 m_huff_count[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS];724mz_uint16 m_huff_codes[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS];725mz_uint8 m_huff_code_sizes[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS];726mz_uint8 m_lz_code_buf[TDEFL_LZ_CODE_BUF_SIZE];727mz_uint16 m_next[TDEFL_LZ_DICT_SIZE];728mz_uint16 m_hash[TDEFL_LZ_HASH_SIZE];729mz_uint8 m_output_buf[TDEFL_OUT_BUF_SIZE];730} tdefl_compressor;731732/* Initializes the compressor. */733/* There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory. */734/* pBut_buf_func: If NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression. */735/* If pBut_buf_func is NULL the user should always call the tdefl_compress() API. */736/* flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.) */737MINIZ_EXPORT tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);738739/* Compresses a block of data, consuming as much of the specified input buffer as possible, and writing as much compressed data to the specified output buffer as possible. */740MINIZ_EXPORT tdefl_status tdefl_compress(tdefl_compressor *d, const void *pIn_buf, size_t *pIn_buf_size, void *pOut_buf, size_t *pOut_buf_size, tdefl_flush flush);741742/* tdefl_compress_buffer() is only usable when the tdefl_init() is called with a non-NULL tdefl_put_buf_func_ptr. */743/* tdefl_compress_buffer() always consumes the entire input buffer. */744MINIZ_EXPORT tdefl_status tdefl_compress_buffer(tdefl_compressor *d, const void *pIn_buf, size_t in_buf_size, tdefl_flush flush);745746MINIZ_EXPORT tdefl_status tdefl_get_prev_return_status(tdefl_compressor *d);747MINIZ_EXPORT mz_uint32 tdefl_get_adler32(tdefl_compressor *d);748749/* Create tdefl_compress() flags given zlib-style compression parameters. */750/* level may range from [0,10] (where 10 is absolute max compression, but may be much slower on some files) */751/* window_bits may be -15 (raw deflate) or 15 (zlib) */752/* strategy may be either MZ_DEFAULT_STRATEGY, MZ_FILTERED, MZ_HUFFMAN_ONLY, MZ_RLE, or MZ_FIXED */753MINIZ_EXPORT mz_uint tdefl_create_comp_flags_from_zip_params(int level, int window_bits, int strategy);754755#ifndef MINIZ_NO_MALLOC756/* Allocate the tdefl_compressor structure in C so that */757/* non-C language bindings to tdefl_ API don't need to worry about */758/* structure size and allocation mechanism. */759MINIZ_EXPORT tdefl_compressor *tdefl_compressor_alloc(void);760MINIZ_EXPORT void tdefl_compressor_free(tdefl_compressor *pComp);761#endif762763#ifdef __cplusplus764}765#endif766#pragma once767768/* ------------------- Low-level Decompression API Definitions */769770#ifdef __cplusplus771extern "C" {772#endif773/* Decompression flags used by tinfl_decompress(). */774/* TINFL_FLAG_PARSE_ZLIB_HEADER: If set, the input has a valid zlib header and ends with an adler32 checksum (it's a valid zlib stream). Otherwise, the input is a raw deflate stream. */775/* TINFL_FLAG_HAS_MORE_INPUT: If set, there are more input bytes available beyond the end of the supplied input buffer. If clear, the input buffer contains all remaining input. */776/* TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF: If set, the output buffer is large enough to hold the entire decompressed stream. If clear, the output buffer is at least the size of the dictionary (typically 32KB). */777/* TINFL_FLAG_COMPUTE_ADLER32: Force adler-32 checksum computation of the decompressed bytes. */778enum779{780TINFL_FLAG_PARSE_ZLIB_HEADER = 1,781TINFL_FLAG_HAS_MORE_INPUT = 2,782TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF = 4,783TINFL_FLAG_COMPUTE_ADLER32 = 8784};785786/* High level decompression functions: */787/* tinfl_decompress_mem_to_heap() decompresses a block in memory to a heap block allocated via malloc(). */788/* On entry: */789/* pSrc_buf, src_buf_len: Pointer and size of the Deflate or zlib source data to decompress. */790/* On return: */791/* Function returns a pointer to the decompressed data, or NULL on failure. */792/* *pOut_len will be set to the decompressed data's size, which could be larger than src_buf_len on uncompressible data. */793/* The caller must call mz_free() on the returned block when it's no longer needed. */794MINIZ_EXPORT void *tinfl_decompress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags);795796/* tinfl_decompress_mem_to_mem() decompresses a block in memory to another block in memory. */797/* Returns TINFL_DECOMPRESS_MEM_TO_MEM_FAILED on failure, or the number of bytes written on success. */798#define TINFL_DECOMPRESS_MEM_TO_MEM_FAILED ((size_t)(-1))799MINIZ_EXPORT size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags);800801/* tinfl_decompress_mem_to_callback() decompresses a block in memory to an internal 32KB buffer, and a user provided callback function will be called to flush the buffer. */802/* Returns 1 on success or 0 on failure. */803typedef int (*tinfl_put_buf_func_ptr)(const void *pBuf, int len, void *pUser);804MINIZ_EXPORT int tinfl_decompress_mem_to_callback(const void *pIn_buf, size_t *pIn_buf_size, tinfl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags);805806struct tinfl_decompressor_tag;807typedef struct tinfl_decompressor_tag tinfl_decompressor;808809#ifndef MINIZ_NO_MALLOC810/* Allocate the tinfl_decompressor structure in C so that */811/* non-C language bindings to tinfl_ API don't need to worry about */812/* structure size and allocation mechanism. */813MINIZ_EXPORT tinfl_decompressor *tinfl_decompressor_alloc(void);814MINIZ_EXPORT void tinfl_decompressor_free(tinfl_decompressor *pDecomp);815#endif816817/* Max size of LZ dictionary. */818#define TINFL_LZ_DICT_SIZE 32768819820/* Return status. */821typedef enum {822/* This flags indicates the inflator needs 1 or more input bytes to make forward progress, but the caller is indicating that no more are available. The compressed data */823/* is probably corrupted. If you call the inflator again with more bytes it'll try to continue processing the input but this is a BAD sign (either the data is corrupted or you called it incorrectly). */824/* If you call it again with no input you'll just get TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS again. */825TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS = -4,826827/* This flag indicates that one or more of the input parameters was obviously bogus. (You can try calling it again, but if you get this error the calling code is wrong.) */828TINFL_STATUS_BAD_PARAM = -3,829830/* This flags indicate the inflator is finished but the adler32 check of the uncompressed data didn't match. If you call it again it'll return TINFL_STATUS_DONE. */831TINFL_STATUS_ADLER32_MISMATCH = -2,832833/* This flags indicate the inflator has somehow failed (bad code, corrupted input, etc.). If you call it again without resetting via tinfl_init() it it'll just keep on returning the same status failure code. */834TINFL_STATUS_FAILED = -1,835836/* Any status code less than TINFL_STATUS_DONE must indicate a failure. */837838/* This flag indicates the inflator has returned every byte of uncompressed data that it can, has consumed every byte that it needed, has successfully reached the end of the deflate stream, and */839/* if zlib headers and adler32 checking enabled that it has successfully checked the uncompressed data's adler32. If you call it again you'll just get TINFL_STATUS_DONE over and over again. */840TINFL_STATUS_DONE = 0,841842/* This flag indicates the inflator MUST have more input data (even 1 byte) before it can make any more forward progress, or you need to clear the TINFL_FLAG_HAS_MORE_INPUT */843/* flag on the next call if you don't have any more source data. If the source data was somehow corrupted it's also possible (but unlikely) for the inflator to keep on demanding input to */844/* proceed, so be sure to properly set the TINFL_FLAG_HAS_MORE_INPUT flag. */845TINFL_STATUS_NEEDS_MORE_INPUT = 1,846847/* This flag indicates the inflator definitely has 1 or more bytes of uncompressed data available, but it cannot write this data into the output buffer. */848/* Note if the source compressed data was corrupted it's possible for the inflator to return a lot of uncompressed data to the caller. I've been assuming you know how much uncompressed data to expect */849/* (either exact or worst case) and will stop calling the inflator and fail after receiving too much. In pure streaming scenarios where you have no idea how many bytes to expect this may not be possible */850/* so I may need to add some code to address this. */851TINFL_STATUS_HAS_MORE_OUTPUT = 2852} tinfl_status;853854/* Initializes the decompressor to its initial state. */855#define tinfl_init(r) \856do \857{ \858(r)->m_state = 0; \859} \860MZ_MACRO_END861#define tinfl_get_adler32(r) (r)->m_check_adler32862863/* Main low-level decompressor coroutine function. This is the only function actually needed for decompression. All the other functions are just high-level helpers for improved usability. */864/* This is a universal API, i.e. it can be used as a building block to build any desired higher level decompression API. In the limit case, it can be called once per every byte input or output. */865MINIZ_EXPORT tinfl_status tinfl_decompress(tinfl_decompressor *r, const mz_uint8 *pIn_buf_next, size_t *pIn_buf_size, mz_uint8 *pOut_buf_start, mz_uint8 *pOut_buf_next, size_t *pOut_buf_size, const mz_uint32 decomp_flags);866867/* Internal/private bits follow. */868enum869{870TINFL_MAX_HUFF_TABLES = 3,871TINFL_MAX_HUFF_SYMBOLS_0 = 288,872TINFL_MAX_HUFF_SYMBOLS_1 = 32,873TINFL_MAX_HUFF_SYMBOLS_2 = 19,874TINFL_FAST_LOOKUP_BITS = 10,875TINFL_FAST_LOOKUP_SIZE = 1 << TINFL_FAST_LOOKUP_BITS876};877878typedef struct879{880mz_uint8 m_code_size[TINFL_MAX_HUFF_SYMBOLS_0];881mz_int16 m_look_up[TINFL_FAST_LOOKUP_SIZE], m_tree[TINFL_MAX_HUFF_SYMBOLS_0 * 2];882} tinfl_huff_table;883884#if MINIZ_HAS_64BIT_REGISTERS885#define TINFL_USE_64BIT_BITBUF 1886#else887#define TINFL_USE_64BIT_BITBUF 0888#endif889890#if TINFL_USE_64BIT_BITBUF891typedef mz_uint64 tinfl_bit_buf_t;892#define TINFL_BITBUF_SIZE (64)893#else894typedef mz_uint32 tinfl_bit_buf_t;895#define TINFL_BITBUF_SIZE (32)896#endif897898struct tinfl_decompressor_tag899{900mz_uint32 m_state, m_num_bits, m_zhdr0, m_zhdr1, m_z_adler32, m_final, m_type, m_check_adler32, m_dist, m_counter, m_num_extra, m_table_sizes[TINFL_MAX_HUFF_TABLES];901tinfl_bit_buf_t m_bit_buf;902size_t m_dist_from_out_buf_start;903tinfl_huff_table m_tables[TINFL_MAX_HUFF_TABLES];904mz_uint8 m_raw_header[4], m_len_codes[TINFL_MAX_HUFF_SYMBOLS_0 + TINFL_MAX_HUFF_SYMBOLS_1 + 137];905};906907#ifdef __cplusplus908}909#endif910911#pragma once912913914/* ------------------- ZIP archive reading/writing */915916#ifndef MINIZ_NO_ARCHIVE_APIS917918#ifdef __cplusplus919extern "C" {920#endif921922enum923{924/* Note: These enums can be reduced as needed to save memory or stack space - they are pretty conservative. */925MZ_ZIP_MAX_IO_BUF_SIZE = 64 * 1024,926MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE = 512,927MZ_ZIP_MAX_ARCHIVE_FILE_COMMENT_SIZE = 512928};929930typedef struct931{932/* Central directory file index. */933mz_uint32 m_file_index;934935/* Byte offset of this entry in the archive's central directory. Note we currently only support up to UINT_MAX or less bytes in the central dir. */936mz_uint64 m_central_dir_ofs;937938/* These fields are copied directly from the zip's central dir. */939mz_uint16 m_version_made_by;940mz_uint16 m_version_needed;941mz_uint16 m_bit_flag;942mz_uint16 m_method;943944#ifndef MINIZ_NO_TIME945MZ_TIME_T m_time;946#endif947948/* CRC-32 of uncompressed data. */949mz_uint32 m_crc32;950951/* File's compressed size. */952mz_uint64 m_comp_size;953954/* File's uncompressed size. Note, I've seen some old archives where directory entries had 512 bytes for their uncompressed sizes, but when you try to unpack them you actually get 0 bytes. */955mz_uint64 m_uncomp_size;956957/* Zip internal and external file attributes. */958mz_uint16 m_internal_attr;959mz_uint32 m_external_attr;960961/* Entry's local header file offset in bytes. */962mz_uint64 m_local_header_ofs;963964/* Size of comment in bytes. */965mz_uint32 m_comment_size;966967/* MZ_TRUE if the entry appears to be a directory. */968mz_bool m_is_directory;969970/* MZ_TRUE if the entry uses encryption/strong encryption (which miniz_zip doesn't support) */971mz_bool m_is_encrypted;972973/* MZ_TRUE if the file is not encrypted, a patch file, and if it uses a compression method we support. */974mz_bool m_is_supported;975976/* Filename. If string ends in '/' it's a subdirectory entry. */977/* Guaranteed to be zero terminated, may be truncated to fit. */978char m_filename[MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE];979980/* Comment field. */981/* Guaranteed to be zero terminated, may be truncated to fit. */982char m_comment[MZ_ZIP_MAX_ARCHIVE_FILE_COMMENT_SIZE];983984} mz_zip_archive_file_stat;985986typedef size_t (*mz_file_read_func)(void *pOpaque, mz_uint64 file_ofs, void *pBuf, size_t n);987typedef size_t (*mz_file_write_func)(void *pOpaque, mz_uint64 file_ofs, const void *pBuf, size_t n);988typedef mz_bool (*mz_file_needs_keepalive)(void *pOpaque);989990struct mz_zip_internal_state_tag;991typedef struct mz_zip_internal_state_tag mz_zip_internal_state;992993typedef enum {994MZ_ZIP_MODE_INVALID = 0,995MZ_ZIP_MODE_READING = 1,996MZ_ZIP_MODE_WRITING = 2,997MZ_ZIP_MODE_WRITING_HAS_BEEN_FINALIZED = 3998} mz_zip_mode;9991000typedef enum {1001MZ_ZIP_FLAG_CASE_SENSITIVE = 0x0100,1002MZ_ZIP_FLAG_IGNORE_PATH = 0x0200,1003MZ_ZIP_FLAG_COMPRESSED_DATA = 0x0400,1004MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY = 0x0800,1005MZ_ZIP_FLAG_VALIDATE_LOCATE_FILE_FLAG = 0x1000, /* if enabled, mz_zip_reader_locate_file() will be called on each file as its validated to ensure the func finds the file in the central dir (intended for testing) */1006MZ_ZIP_FLAG_VALIDATE_HEADERS_ONLY = 0x2000, /* validate the local headers, but don't decompress the entire file and check the crc32 */1007MZ_ZIP_FLAG_WRITE_ZIP64 = 0x4000, /* always use the zip64 file format, instead of the original zip file format with automatic switch to zip64. Use as flags parameter with mz_zip_writer_init*_v2 */1008MZ_ZIP_FLAG_WRITE_ALLOW_READING = 0x8000,1009MZ_ZIP_FLAG_ASCII_FILENAME = 0x10000,1010/*After adding a compressed file, seek back1011to local file header and set the correct sizes*/1012MZ_ZIP_FLAG_WRITE_HEADER_SET_SIZE = 0x200001013} mz_zip_flags;10141015typedef enum {1016MZ_ZIP_TYPE_INVALID = 0,1017MZ_ZIP_TYPE_USER,1018MZ_ZIP_TYPE_MEMORY,1019MZ_ZIP_TYPE_HEAP,1020MZ_ZIP_TYPE_FILE,1021MZ_ZIP_TYPE_CFILE,1022MZ_ZIP_TOTAL_TYPES1023} mz_zip_type;10241025/* miniz error codes. Be sure to update mz_zip_get_error_string() if you add or modify this enum. */1026typedef enum {1027MZ_ZIP_NO_ERROR = 0,1028MZ_ZIP_UNDEFINED_ERROR,1029MZ_ZIP_TOO_MANY_FILES,1030MZ_ZIP_FILE_TOO_LARGE,1031MZ_ZIP_UNSUPPORTED_METHOD,1032MZ_ZIP_UNSUPPORTED_ENCRYPTION,1033MZ_ZIP_UNSUPPORTED_FEATURE,1034MZ_ZIP_FAILED_FINDING_CENTRAL_DIR,1035MZ_ZIP_NOT_AN_ARCHIVE,1036MZ_ZIP_INVALID_HEADER_OR_CORRUPTED,1037MZ_ZIP_UNSUPPORTED_MULTIDISK,1038MZ_ZIP_DECOMPRESSION_FAILED,1039MZ_ZIP_COMPRESSION_FAILED,1040MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE,1041MZ_ZIP_CRC_CHECK_FAILED,1042MZ_ZIP_UNSUPPORTED_CDIR_SIZE,1043MZ_ZIP_ALLOC_FAILED,1044MZ_ZIP_FILE_OPEN_FAILED,1045MZ_ZIP_FILE_CREATE_FAILED,1046MZ_ZIP_FILE_WRITE_FAILED,1047MZ_ZIP_FILE_READ_FAILED,1048MZ_ZIP_FILE_CLOSE_FAILED,1049MZ_ZIP_FILE_SEEK_FAILED,1050MZ_ZIP_FILE_STAT_FAILED,1051MZ_ZIP_INVALID_PARAMETER,1052MZ_ZIP_INVALID_FILENAME,1053MZ_ZIP_BUF_TOO_SMALL,1054MZ_ZIP_INTERNAL_ERROR,1055MZ_ZIP_FILE_NOT_FOUND,1056MZ_ZIP_ARCHIVE_TOO_LARGE,1057MZ_ZIP_VALIDATION_FAILED,1058MZ_ZIP_WRITE_CALLBACK_FAILED,1059MZ_ZIP_TOTAL_ERRORS1060} mz_zip_error;10611062typedef struct1063{1064mz_uint64 m_archive_size;1065mz_uint64 m_central_directory_file_ofs;10661067/* We only support up to UINT32_MAX files in zip64 mode. */1068mz_uint32 m_total_files;1069mz_zip_mode m_zip_mode;1070mz_zip_type m_zip_type;1071mz_zip_error m_last_error;10721073mz_uint64 m_file_offset_alignment;10741075mz_alloc_func m_pAlloc;1076mz_free_func m_pFree;1077mz_realloc_func m_pRealloc;1078void *m_pAlloc_opaque;10791080mz_file_read_func m_pRead;1081mz_file_write_func m_pWrite;1082mz_file_needs_keepalive m_pNeeds_keepalive;1083void *m_pIO_opaque;10841085mz_zip_internal_state *m_pState;10861087} mz_zip_archive;10881089typedef struct1090{1091mz_zip_archive *pZip;1092mz_uint flags;10931094int status;1095#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS1096mz_uint file_crc32;1097#endif1098mz_uint64 read_buf_size, read_buf_ofs, read_buf_avail, comp_remaining, out_buf_ofs, cur_file_ofs;1099mz_zip_archive_file_stat file_stat;1100void *pRead_buf;1101void *pWrite_buf;11021103size_t out_blk_remain;11041105tinfl_decompressor inflator;11061107} mz_zip_reader_extract_iter_state;11081109/* -------- ZIP reading */11101111/* Inits a ZIP archive reader. */1112/* These functions read and validate the archive's central directory. */1113MINIZ_EXPORT mz_bool mz_zip_reader_init(mz_zip_archive *pZip, mz_uint64 size, mz_uint flags);11141115MINIZ_EXPORT mz_bool mz_zip_reader_init_mem(mz_zip_archive *pZip, const void *pMem, size_t size, mz_uint flags);11161117#ifndef MINIZ_NO_STDIO1118/* Read a archive from a disk file. */1119/* file_start_ofs is the file offset where the archive actually begins, or 0. */1120/* actual_archive_size is the true total size of the archive, which may be smaller than the file's actual size on disk. If zero the entire file is treated as the archive. */1121MINIZ_EXPORT mz_bool mz_zip_reader_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint32 flags);1122MINIZ_EXPORT mz_bool mz_zip_reader_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags, mz_uint64 file_start_ofs, mz_uint64 archive_size);11231124/* Read an archive from an already opened FILE, beginning at the current file position. */1125/* The archive is assumed to be archive_size bytes long. If archive_size is 0, then the entire rest of the file is assumed to contain the archive. */1126/* The FILE will NOT be closed when mz_zip_reader_end() is called. */1127MINIZ_EXPORT mz_bool mz_zip_reader_init_cfile(mz_zip_archive *pZip, MZ_FILE *pFile, mz_uint64 archive_size, mz_uint flags);1128#endif11291130/* Ends archive reading, freeing all allocations, and closing the input archive file if mz_zip_reader_init_file() was used. */1131MINIZ_EXPORT mz_bool mz_zip_reader_end(mz_zip_archive *pZip);11321133/* -------- ZIP reading or writing */11341135/* Clears a mz_zip_archive struct to all zeros. */1136/* Important: This must be done before passing the struct to any mz_zip functions. */1137MINIZ_EXPORT void mz_zip_zero_struct(mz_zip_archive *pZip);11381139MINIZ_EXPORT mz_zip_mode mz_zip_get_mode(mz_zip_archive *pZip);1140MINIZ_EXPORT mz_zip_type mz_zip_get_type(mz_zip_archive *pZip);11411142/* Returns the total number of files in the archive. */1143MINIZ_EXPORT mz_uint mz_zip_reader_get_num_files(mz_zip_archive *pZip);11441145MINIZ_EXPORT mz_uint64 mz_zip_get_archive_size(mz_zip_archive *pZip);1146MINIZ_EXPORT mz_uint64 mz_zip_get_archive_file_start_offset(mz_zip_archive *pZip);1147MINIZ_EXPORT MZ_FILE *mz_zip_get_cfile(mz_zip_archive *pZip);11481149/* Reads n bytes of raw archive data, starting at file offset file_ofs, to pBuf. */1150MINIZ_EXPORT size_t mz_zip_read_archive_data(mz_zip_archive *pZip, mz_uint64 file_ofs, void *pBuf, size_t n);11511152/* All mz_zip funcs set the m_last_error field in the mz_zip_archive struct. These functions retrieve/manipulate this field. */1153/* Note that the m_last_error functionality is not thread safe. */1154MINIZ_EXPORT mz_zip_error mz_zip_set_last_error(mz_zip_archive *pZip, mz_zip_error err_num);1155MINIZ_EXPORT mz_zip_error mz_zip_peek_last_error(mz_zip_archive *pZip);1156MINIZ_EXPORT mz_zip_error mz_zip_clear_last_error(mz_zip_archive *pZip);1157MINIZ_EXPORT mz_zip_error mz_zip_get_last_error(mz_zip_archive *pZip);1158MINIZ_EXPORT const char *mz_zip_get_error_string(mz_zip_error mz_err);11591160/* MZ_TRUE if the archive file entry is a directory entry. */1161MINIZ_EXPORT mz_bool mz_zip_reader_is_file_a_directory(mz_zip_archive *pZip, mz_uint file_index);11621163/* MZ_TRUE if the file is encrypted/strong encrypted. */1164MINIZ_EXPORT mz_bool mz_zip_reader_is_file_encrypted(mz_zip_archive *pZip, mz_uint file_index);11651166/* MZ_TRUE if the compression method is supported, and the file is not encrypted, and the file is not a compressed patch file. */1167MINIZ_EXPORT mz_bool mz_zip_reader_is_file_supported(mz_zip_archive *pZip, mz_uint file_index);11681169/* Retrieves the filename of an archive file entry. */1170/* Returns the number of bytes written to pFilename, or if filename_buf_size is 0 this function returns the number of bytes needed to fully store the filename. */1171MINIZ_EXPORT mz_uint mz_zip_reader_get_filename(mz_zip_archive *pZip, mz_uint file_index, char *pFilename, mz_uint filename_buf_size);11721173/* Attempts to locates a file in the archive's central directory. */1174/* Valid flags: MZ_ZIP_FLAG_CASE_SENSITIVE, MZ_ZIP_FLAG_IGNORE_PATH */1175/* Returns -1 if the file cannot be found. */1176MINIZ_EXPORT int mz_zip_reader_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags);1177MINIZ_EXPORT mz_bool mz_zip_reader_locate_file_v2(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags, mz_uint32 *file_index);11781179/* Returns detailed information about an archive file entry. */1180MINIZ_EXPORT mz_bool mz_zip_reader_file_stat(mz_zip_archive *pZip, mz_uint file_index, mz_zip_archive_file_stat *pStat);11811182/* MZ_TRUE if the file is in zip64 format. */1183/* A file is considered zip64 if it contained a zip64 end of central directory marker, or if it contained any zip64 extended file information fields in the central directory. */1184MINIZ_EXPORT mz_bool mz_zip_is_zip64(mz_zip_archive *pZip);11851186/* Returns the total central directory size in bytes. */1187/* The current max supported size is <= MZ_UINT32_MAX. */1188MINIZ_EXPORT size_t mz_zip_get_central_dir_size(mz_zip_archive *pZip);11891190/* Extracts a archive file to a memory buffer using no memory allocation. */1191/* There must be at least enough room on the stack to store the inflator's state (~34KB or so). */1192MINIZ_EXPORT mz_bool mz_zip_reader_extract_to_mem_no_alloc(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size);1193MINIZ_EXPORT mz_bool mz_zip_reader_extract_file_to_mem_no_alloc(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size);11941195/* Extracts a archive file to a memory buffer. */1196MINIZ_EXPORT mz_bool mz_zip_reader_extract_to_mem(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags);1197MINIZ_EXPORT mz_bool mz_zip_reader_extract_file_to_mem(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags);11981199/* Extracts a archive file to a dynamically allocated heap buffer. */1200/* The memory will be allocated via the mz_zip_archive's alloc/realloc functions. */1201/* Returns NULL and sets the last error on failure. */1202MINIZ_EXPORT void *mz_zip_reader_extract_to_heap(mz_zip_archive *pZip, mz_uint file_index, size_t *pSize, mz_uint flags);1203MINIZ_EXPORT void *mz_zip_reader_extract_file_to_heap(mz_zip_archive *pZip, const char *pFilename, size_t *pSize, mz_uint flags);12041205/* Extracts a archive file using a callback function to output the file's data. */1206MINIZ_EXPORT mz_bool mz_zip_reader_extract_to_callback(mz_zip_archive *pZip, mz_uint file_index, mz_file_write_func pCallback, void *pOpaque, mz_uint flags);1207MINIZ_EXPORT mz_bool mz_zip_reader_extract_file_to_callback(mz_zip_archive *pZip, const char *pFilename, mz_file_write_func pCallback, void *pOpaque, mz_uint flags);12081209/* Extract a file iteratively */1210MINIZ_EXPORT mz_zip_reader_extract_iter_state* mz_zip_reader_extract_iter_new(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags);1211MINIZ_EXPORT mz_zip_reader_extract_iter_state* mz_zip_reader_extract_file_iter_new(mz_zip_archive *pZip, const char *pFilename, mz_uint flags);1212MINIZ_EXPORT size_t mz_zip_reader_extract_iter_read(mz_zip_reader_extract_iter_state* pState, void* pvBuf, size_t buf_size);1213MINIZ_EXPORT mz_bool mz_zip_reader_extract_iter_free(mz_zip_reader_extract_iter_state* pState);12141215#ifndef MINIZ_NO_STDIO1216/* Extracts a archive file to a disk file and sets its last accessed and modified times. */1217/* This function only extracts files, not archive directory records. */1218MINIZ_EXPORT mz_bool mz_zip_reader_extract_to_file(mz_zip_archive *pZip, mz_uint file_index, const char *pDst_filename, mz_uint flags);1219MINIZ_EXPORT mz_bool mz_zip_reader_extract_file_to_file(mz_zip_archive *pZip, const char *pArchive_filename, const char *pDst_filename, mz_uint flags);12201221/* Extracts a archive file starting at the current position in the destination FILE stream. */1222MINIZ_EXPORT mz_bool mz_zip_reader_extract_to_cfile(mz_zip_archive *pZip, mz_uint file_index, MZ_FILE *File, mz_uint flags);1223MINIZ_EXPORT mz_bool mz_zip_reader_extract_file_to_cfile(mz_zip_archive *pZip, const char *pArchive_filename, MZ_FILE *pFile, mz_uint flags);1224#endif12251226#if 01227/* TODO */1228typedef void *mz_zip_streaming_extract_state_ptr;1229mz_zip_streaming_extract_state_ptr mz_zip_streaming_extract_begin(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags);1230uint64_t mz_zip_streaming_extract_get_size(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState);1231uint64_t mz_zip_streaming_extract_get_cur_ofs(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState);1232mz_bool mz_zip_streaming_extract_seek(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState, uint64_t new_ofs);1233size_t mz_zip_streaming_extract_read(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState, void *pBuf, size_t buf_size);1234mz_bool mz_zip_streaming_extract_end(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState);1235#endif12361237/* This function compares the archive's local headers, the optional local zip64 extended information block, and the optional descriptor following the compressed data vs. the data in the central directory. */1238/* It also validates that each file can be successfully uncompressed unless the MZ_ZIP_FLAG_VALIDATE_HEADERS_ONLY is specified. */1239MINIZ_EXPORT mz_bool mz_zip_validate_file(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags);12401241/* Validates an entire archive by calling mz_zip_validate_file() on each file. */1242MINIZ_EXPORT mz_bool mz_zip_validate_archive(mz_zip_archive *pZip, mz_uint flags);12431244/* Misc utils/helpers, valid for ZIP reading or writing */1245MINIZ_EXPORT mz_bool mz_zip_validate_mem_archive(const void *pMem, size_t size, mz_uint flags, mz_zip_error *pErr);1246MINIZ_EXPORT mz_bool mz_zip_validate_file_archive(const char *pFilename, mz_uint flags, mz_zip_error *pErr);12471248/* Universal end function - calls either mz_zip_reader_end() or mz_zip_writer_end(). */1249MINIZ_EXPORT mz_bool mz_zip_end(mz_zip_archive *pZip);12501251/* -------- ZIP writing */12521253#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS12541255/* Inits a ZIP archive writer. */1256/*Set pZip->m_pWrite (and pZip->m_pIO_opaque) before calling mz_zip_writer_init or mz_zip_writer_init_v2*/1257/*The output is streamable, i.e. file_ofs in mz_file_write_func always increases only by n*/1258MINIZ_EXPORT mz_bool mz_zip_writer_init(mz_zip_archive *pZip, mz_uint64 existing_size);1259MINIZ_EXPORT mz_bool mz_zip_writer_init_v2(mz_zip_archive *pZip, mz_uint64 existing_size, mz_uint flags);12601261MINIZ_EXPORT mz_bool mz_zip_writer_init_heap(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size);1262MINIZ_EXPORT mz_bool mz_zip_writer_init_heap_v2(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size, mz_uint flags);12631264#ifndef MINIZ_NO_STDIO1265MINIZ_EXPORT mz_bool mz_zip_writer_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning);1266MINIZ_EXPORT mz_bool mz_zip_writer_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning, mz_uint flags);1267MINIZ_EXPORT mz_bool mz_zip_writer_init_cfile(mz_zip_archive *pZip, MZ_FILE *pFile, mz_uint flags);1268#endif12691270/* Converts a ZIP archive reader object into a writer object, to allow efficient in-place file appends to occur on an existing archive. */1271/* For archives opened using mz_zip_reader_init_file, pFilename must be the archive's filename so it can be reopened for writing. If the file can't be reopened, mz_zip_reader_end() will be called. */1272/* For archives opened using mz_zip_reader_init_mem, the memory block must be growable using the realloc callback (which defaults to realloc unless you've overridden it). */1273/* Finally, for archives opened using mz_zip_reader_init, the mz_zip_archive's user provided m_pWrite function cannot be NULL. */1274/* Note: In-place archive modification is not recommended unless you know what you're doing, because if execution stops or something goes wrong before */1275/* the archive is finalized the file's central directory will be hosed. */1276MINIZ_EXPORT mz_bool mz_zip_writer_init_from_reader(mz_zip_archive *pZip, const char *pFilename);1277MINIZ_EXPORT mz_bool mz_zip_writer_init_from_reader_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags);12781279/* Adds the contents of a memory buffer to an archive. These functions record the current local time into the archive. */1280/* To add a directory entry, call this method with an archive name ending in a forwardslash with an empty buffer. */1281/* level_and_flags - compression level (0-10, see MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc.) logically OR'd with zero or more mz_zip_flags, or just set to MZ_DEFAULT_COMPRESSION. */1282MINIZ_EXPORT mz_bool mz_zip_writer_add_mem(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, mz_uint level_and_flags);12831284/* Like mz_zip_writer_add_mem(), except you can specify a file comment field, and optionally supply the function with already compressed data. */1285/* uncomp_size/uncomp_crc32 are only used if the MZ_ZIP_FLAG_COMPRESSED_DATA flag is specified. */1286MINIZ_EXPORT mz_bool mz_zip_writer_add_mem_ex(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags,1287mz_uint64 uncomp_size, mz_uint32 uncomp_crc32);12881289MINIZ_EXPORT mz_bool mz_zip_writer_add_mem_ex_v2(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags,1290mz_uint64 uncomp_size, mz_uint32 uncomp_crc32, MZ_TIME_T *last_modified, const char *user_extra_data_local, mz_uint user_extra_data_local_len,1291const char *user_extra_data_central, mz_uint user_extra_data_central_len);12921293/* Adds the contents of a file to an archive. This function also records the disk file's modified time into the archive. */1294/* File data is supplied via a read callback function. User mz_zip_writer_add_(c)file to add a file directly.*/1295MINIZ_EXPORT mz_bool mz_zip_writer_add_read_buf_callback(mz_zip_archive *pZip, const char *pArchive_name, mz_file_read_func read_callback, void* callback_opaque, mz_uint64 max_size,1296const MZ_TIME_T *pFile_time, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, const char *user_extra_data_local, mz_uint user_extra_data_local_len,1297const char *user_extra_data_central, mz_uint user_extra_data_central_len);129812991300#ifndef MINIZ_NO_STDIO1301/* Adds the contents of a disk file to an archive. This function also records the disk file's modified time into the archive. */1302/* level_and_flags - compression level (0-10, see MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc.) logically OR'd with zero or more mz_zip_flags, or just set to MZ_DEFAULT_COMPRESSION. */1303MINIZ_EXPORT mz_bool mz_zip_writer_add_file(mz_zip_archive *pZip, const char *pArchive_name, const char *pSrc_filename, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags);13041305/* Like mz_zip_writer_add_file(), except the file data is read from the specified FILE stream. */1306MINIZ_EXPORT mz_bool mz_zip_writer_add_cfile(mz_zip_archive *pZip, const char *pArchive_name, MZ_FILE *pSrc_file, mz_uint64 max_size,1307const MZ_TIME_T *pFile_time, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, const char *user_extra_data_local, mz_uint user_extra_data_local_len,1308const char *user_extra_data_central, mz_uint user_extra_data_central_len);1309#endif13101311/* Adds a file to an archive by fully cloning the data from another archive. */1312/* This function fully clones the source file's compressed data (no recompression), along with its full filename, extra data (it may add or modify the zip64 local header extra data field), and the optional descriptor following the compressed data. */1313MINIZ_EXPORT mz_bool mz_zip_writer_add_from_zip_reader(mz_zip_archive *pZip, mz_zip_archive *pSource_zip, mz_uint src_file_index);13141315/* Finalizes the archive by writing the central directory records followed by the end of central directory record. */1316/* After an archive is finalized, the only valid call on the mz_zip_archive struct is mz_zip_writer_end(). */1317/* An archive must be manually finalized by calling this function for it to be valid. */1318MINIZ_EXPORT mz_bool mz_zip_writer_finalize_archive(mz_zip_archive *pZip);13191320/* Finalizes a heap archive, returning a poiner to the heap block and its size. */1321/* The heap block will be allocated using the mz_zip_archive's alloc/realloc callbacks. */1322MINIZ_EXPORT mz_bool mz_zip_writer_finalize_heap_archive(mz_zip_archive *pZip, void **ppBuf, size_t *pSize);13231324/* Ends archive writing, freeing all allocations, and closing the output file if mz_zip_writer_init_file() was used. */1325/* Note for the archive to be valid, it *must* have been finalized before ending (this function will not do it for you). */1326MINIZ_EXPORT mz_bool mz_zip_writer_end(mz_zip_archive *pZip);13271328/* -------- Misc. high-level helper functions: */13291330/* mz_zip_add_mem_to_archive_file_in_place() efficiently (but not atomically) appends a memory blob to a ZIP archive. */1331/* Note this is NOT a fully safe operation. If it crashes or dies in some way your archive can be left in a screwed up state (without a central directory). */1332/* level_and_flags - compression level (0-10, see MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc.) logically OR'd with zero or more mz_zip_flags, or just set to MZ_DEFAULT_COMPRESSION. */1333/* TODO: Perhaps add an option to leave the existing central dir in place in case the add dies? We could then truncate the file (so the old central dir would be at the end) if something goes wrong. */1334MINIZ_EXPORT mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags);1335MINIZ_EXPORT mz_bool mz_zip_add_mem_to_archive_file_in_place_v2(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_zip_error *pErr);13361337/* Reads a single file from an archive into a heap block. */1338/* If pComment is not NULL, only the file with the specified comment will be extracted. */1339/* Returns NULL on failure. */1340MINIZ_EXPORT void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, size_t *pSize, mz_uint flags);1341MINIZ_EXPORT void *mz_zip_extract_archive_file_to_heap_v2(const char *pZip_filename, const char *pArchive_name, const char *pComment, size_t *pSize, mz_uint flags, mz_zip_error *pErr);13421343#endif /* #ifndef MINIZ_NO_ARCHIVE_WRITING_APIS */13441345#ifdef __cplusplus1346}1347#endif13481349#endif /* MINIZ_NO_ARCHIVE_APIS */135013511352