2015-01-23 16:58:16 -08:00
|
|
|
/*
|
|
|
|
zstd - standard compression library
|
|
|
|
Header File
|
|
|
|
Copyright (C) 2014-2015, Yann Collet.
|
|
|
|
|
|
|
|
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are
|
|
|
|
met:
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the following disclaimer
|
|
|
|
in the documentation and/or other materials provided with the
|
|
|
|
distribution.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
You can contact the author at :
|
|
|
|
- zstd source repository : https://github.com/Cyan4973/zstd
|
|
|
|
- ztsd public forum : https://groups.google.com/forum/#!forum/lz4c
|
|
|
|
*/
|
2015-10-30 03:21:50 -07:00
|
|
|
#ifndef ZSTD_H
|
|
|
|
#define ZSTD_H
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
#if defined (__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-10-21 01:07:25 -07:00
|
|
|
/* *************************************
|
2015-01-23 16:58:16 -08:00
|
|
|
* Includes
|
2015-10-21 01:07:25 -07:00
|
|
|
***************************************/
|
2015-01-23 16:58:16 -08:00
|
|
|
#include <stddef.h> /* size_t */
|
|
|
|
|
|
|
|
|
2015-12-07 08:44:09 -08:00
|
|
|
/* ***************************************************************
|
|
|
|
* Tuning parameters
|
|
|
|
*****************************************************************/
|
|
|
|
/*!
|
|
|
|
* ZSTD_DLL_EXPORT :
|
2015-12-09 06:48:22 -08:00
|
|
|
* Enable exporting of functions when building a Windows DLL
|
2015-12-07 08:44:09 -08:00
|
|
|
*/
|
2015-12-09 06:48:22 -08:00
|
|
|
#if defined(_WIN32) && defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1)
|
|
|
|
# define ZSTDLIB_API __declspec(dllexport)
|
2015-12-07 08:44:09 -08:00
|
|
|
#else
|
|
|
|
# define ZSTDLIB_API
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-10-21 01:07:25 -07:00
|
|
|
/* *************************************
|
2015-01-23 16:58:16 -08:00
|
|
|
* Version
|
2015-10-21 01:07:25 -07:00
|
|
|
***************************************/
|
2015-01-23 16:58:16 -08:00
|
|
|
#define ZSTD_VERSION_MAJOR 0 /* for breaking interface changes */
|
2015-11-11 05:39:50 -08:00
|
|
|
#define ZSTD_VERSION_MINOR 4 /* for new (non-breaking) interface capabilities */
|
2015-12-17 11:30:14 -08:00
|
|
|
#define ZSTD_VERSION_RELEASE 5 /* for tweaks, bug-fixes, or development */
|
2015-06-18 08:43:16 -07:00
|
|
|
#define ZSTD_VERSION_NUMBER (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE)
|
2015-12-07 08:44:09 -08:00
|
|
|
ZSTDLIB_API unsigned ZSTD_versionNumber (void);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
|
2015-10-21 01:07:25 -07:00
|
|
|
/* *************************************
|
2015-10-18 14:18:32 -07:00
|
|
|
* Simple functions
|
2015-10-21 01:07:25 -07:00
|
|
|
***************************************/
|
2015-12-07 08:44:09 -08:00
|
|
|
ZSTDLIB_API size_t ZSTD_compress( void* dst, size_t maxDstSize,
|
|
|
|
const void* src, size_t srcSize,
|
|
|
|
int compressionLevel);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-12-07 08:44:09 -08:00
|
|
|
ZSTDLIB_API size_t ZSTD_decompress( void* dst, size_t maxOriginalSize,
|
|
|
|
const void* src, size_t compressedSize);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-10-21 01:07:25 -07:00
|
|
|
/**
|
2015-01-23 16:58:16 -08:00
|
|
|
ZSTD_compress() :
|
|
|
|
Compresses 'srcSize' bytes from buffer 'src' into buffer 'dst', of maximum size 'dstSize'.
|
2015-08-07 07:50:42 -07:00
|
|
|
Destination buffer must be already allocated.
|
|
|
|
Compression runs faster if maxDstSize >= ZSTD_compressBound(srcSize).
|
2015-01-23 16:58:16 -08:00
|
|
|
return : the number of bytes written into buffer 'dst'
|
|
|
|
or an error code if it fails (which can be tested using ZSTD_isError())
|
|
|
|
|
|
|
|
ZSTD_decompress() :
|
2015-06-18 08:43:16 -07:00
|
|
|
compressedSize : is the exact source size
|
2015-01-23 16:58:16 -08:00
|
|
|
maxOriginalSize : is the size of the 'dst' buffer, which must be already allocated.
|
|
|
|
It must be equal or larger than originalSize, otherwise decompression will fail.
|
2015-10-21 01:07:25 -07:00
|
|
|
return : the number of bytes decompressed into destination buffer (<= maxOriginalSize)
|
2015-01-23 16:58:16 -08:00
|
|
|
or an errorCode if it fails (which can be tested using ZSTD_isError())
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-10-21 01:07:25 -07:00
|
|
|
/* *************************************
|
2015-01-23 16:58:16 -08:00
|
|
|
* Tool functions
|
2015-10-21 01:07:25 -07:00
|
|
|
***************************************/
|
2015-12-07 08:44:09 -08:00
|
|
|
ZSTDLIB_API size_t ZSTD_compressBound(size_t srcSize); /** maximum compressed size (worst case scenario) */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
/* Error Management */
|
2015-12-07 08:44:09 -08:00
|
|
|
ZSTDLIB_API unsigned ZSTD_isError(size_t code); /** tells if a return value is an error code */
|
|
|
|
ZSTDLIB_API const char* ZSTD_getErrorName(size_t code); /** provides error code string */
|
2015-10-21 01:07:25 -07:00
|
|
|
|
|
|
|
|
|
|
|
/* *************************************
|
|
|
|
* Advanced functions
|
|
|
|
***************************************/
|
2015-10-21 06:39:26 -07:00
|
|
|
typedef struct ZSTD_CCtx_s ZSTD_CCtx; /* incomplete type */
|
2015-12-07 08:44:09 -08:00
|
|
|
ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx(void);
|
|
|
|
ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx);
|
2015-10-21 01:07:25 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
ZSTD_compressCCtx() :
|
2015-10-21 06:39:26 -07:00
|
|
|
Same as ZSTD_compress(), but requires a ZSTD_CCtx working space already allocated
|
2015-10-21 01:07:25 -07:00
|
|
|
*/
|
2015-12-07 08:44:09 -08:00
|
|
|
ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize, int compressionLevel);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
|
|
|
|
#if defined (__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2015-10-30 03:21:50 -07:00
|
|
|
|
|
|
|
#endif /* ZSTD_H */
|