mudgangster

Tiny, scriptable MUD client
Log | Files | Refs | README

tracy_lz4.hpp (35053B)


      1 /*
      2  *  LZ4 - Fast LZ compression algorithm
      3  *  Header File
      4  *  Copyright (C) 2011-present, Yann Collet.
      5 
      6    BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
      7 
      8    Redistribution and use in source and binary forms, with or without
      9    modification, are permitted provided that the following conditions are
     10    met:
     11 
     12        * Redistributions of source code must retain the above copyright
     13    notice, this list of conditions and the following disclaimer.
     14        * Redistributions in binary form must reproduce the above
     15    copyright notice, this list of conditions and the following disclaimer
     16    in the documentation and/or other materials provided with the
     17    distribution.
     18 
     19    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     20    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     21    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     22    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     23    OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     24    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     25    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     29    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30 
     31    You can contact the author at :
     32     - LZ4 homepage : http://www.lz4.org
     33     - LZ4 source repository : https://github.com/lz4/lz4
     34 */
     35 
     36 
     37 #ifndef TRACY_LZ4_H_2983827168210
     38 #define TRACY_LZ4_H_2983827168210
     39 
     40 /* --- Dependency --- */
     41 #include <stddef.h>   /* size_t */
     42 #include <stdint.h>
     43 
     44 namespace tracy
     45 {
     46 
     47 /**
     48   Introduction
     49 
     50   LZ4 is lossless compression algorithm, providing compression speed at 500 MB/s per core,
     51   scalable with multi-cores CPU. It features an extremely fast decoder, with speed in
     52   multiple GB/s per core, typically reaching RAM speed limits on multi-core systems.
     53 
     54   The LZ4 compression library provides in-memory compression and decompression functions.
     55   It gives full buffer control to user.
     56   Compression can be done in:
     57     - a single step (described as Simple Functions)
     58     - a single step, reusing a context (described in Advanced Functions)
     59     - unbounded multiple steps (described as Streaming compression)
     60 
     61   lz4.h generates and decodes LZ4-compressed blocks (doc/lz4_Block_format.md).
     62   Decompressing a block requires additional metadata, such as its compressed size.
     63   Each application is free to encode and pass such metadata in whichever way it wants.
     64 
     65   lz4.h only handle blocks, it can not generate Frames.
     66 
     67   Blocks are different from Frames (doc/lz4_Frame_format.md).
     68   Frames bundle both blocks and metadata in a specified manner.
     69   This are required for compressed data to be self-contained and portable.
     70   Frame format is delivered through a companion API, declared in lz4frame.h.
     71   Note that the `lz4` CLI can only manage frames.
     72 */
     73 
     74 /*^***************************************************************
     75 *  Export parameters
     76 *****************************************************************/
     77 /*
     78 *  LZ4_DLL_EXPORT :
     79 *  Enable exporting of functions when building a Windows DLL
     80 *  LZ4LIB_VISIBILITY :
     81 *  Control library symbols visibility.
     82 */
     83 #ifndef LZ4LIB_VISIBILITY
     84 #  if defined(__GNUC__) && (__GNUC__ >= 4)
     85 #    define LZ4LIB_VISIBILITY __attribute__ ((visibility ("default")))
     86 #  else
     87 #    define LZ4LIB_VISIBILITY
     88 #  endif
     89 #endif
     90 #if defined(LZ4_DLL_EXPORT) && (LZ4_DLL_EXPORT==1)
     91 #  define LZ4LIB_API __declspec(dllexport) LZ4LIB_VISIBILITY
     92 #elif defined(LZ4_DLL_IMPORT) && (LZ4_DLL_IMPORT==1)
     93 #  define LZ4LIB_API __declspec(dllimport) LZ4LIB_VISIBILITY /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/
     94 #else
     95 #  define LZ4LIB_API LZ4LIB_VISIBILITY
     96 #endif
     97 
     98 /*------   Version   ------*/
     99 #define LZ4_VERSION_MAJOR    1    /* for breaking interface changes  */
    100 #define LZ4_VERSION_MINOR    9    /* for new (non-breaking) interface capabilities */
    101 #define LZ4_VERSION_RELEASE  1    /* for tweaks, bug-fixes, or development */
    102 
    103 #define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE)
    104 
    105 #define LZ4_LIB_VERSION LZ4_VERSION_MAJOR.LZ4_VERSION_MINOR.LZ4_VERSION_RELEASE
    106 #define LZ4_QUOTE(str) #str
    107 #define LZ4_EXPAND_AND_QUOTE(str) LZ4_QUOTE(str)
    108 #define LZ4_VERSION_STRING LZ4_EXPAND_AND_QUOTE(LZ4_LIB_VERSION)
    109 
    110 LZ4LIB_API int LZ4_versionNumber (void);  /**< library version number; useful to check dll version */
    111 LZ4LIB_API const char* LZ4_versionString (void);   /**< library version string; useful to check dll version */
    112 
    113 
    114 /*-************************************
    115 *  Tuning parameter
    116 **************************************/
    117 /*!
    118  * LZ4_MEMORY_USAGE :
    119  * Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; etc.)
    120  * Increasing memory usage improves compression ratio.
    121  * Reduced memory usage may improve speed, thanks to better cache locality.
    122  * Default value is 14, for 16KB, which nicely fits into Intel x86 L1 cache
    123  */
    124 #ifndef LZ4_MEMORY_USAGE
    125 # define LZ4_MEMORY_USAGE 12
    126 #endif
    127 
    128 
    129 /*-************************************
    130 *  Simple Functions
    131 **************************************/
    132 /*! LZ4_compress_default() :
    133     Compresses 'srcSize' bytes from buffer 'src'
    134     into already allocated 'dst' buffer of size 'dstCapacity'.
    135     Compression is guaranteed to succeed if 'dstCapacity' >= LZ4_compressBound(srcSize).
    136     It also runs faster, so it's a recommended setting.
    137     If the function cannot compress 'src' into a more limited 'dst' budget,
    138     compression stops *immediately*, and the function result is zero.
    139     In which case, 'dst' content is undefined (invalid).
    140         srcSize : max supported value is LZ4_MAX_INPUT_SIZE.
    141         dstCapacity : size of buffer 'dst' (which must be already allocated)
    142        @return  : the number of bytes written into buffer 'dst' (necessarily <= dstCapacity)
    143                   or 0 if compression fails
    144     Note : This function is protected against buffer overflow scenarios (never writes outside 'dst' buffer, nor read outside 'source' buffer).
    145 */
    146 LZ4LIB_API int LZ4_compress_default(const char* src, char* dst, int srcSize, int dstCapacity);
    147 
    148 /*! LZ4_decompress_safe() :
    149     compressedSize : is the exact complete size of the compressed block.
    150     dstCapacity : is the size of destination buffer, which must be already allocated.
    151    @return : the number of bytes decompressed into destination buffer (necessarily <= dstCapacity)
    152              If destination buffer is not large enough, decoding will stop and output an error code (negative value).
    153              If the source stream is detected malformed, the function will stop decoding and return a negative result.
    154     Note : This function is protected against malicious data packets (never writes outside 'dst' buffer, nor read outside 'source' buffer).
    155 */
    156 LZ4LIB_API int LZ4_decompress_safe (const char* src, char* dst, int compressedSize, int dstCapacity);
    157 
    158 
    159 /*-************************************
    160 *  Advanced Functions
    161 **************************************/
    162 #define LZ4_MAX_INPUT_SIZE        0x7E000000   /* 2 113 929 216 bytes */
    163 #define LZ4_COMPRESSBOUND(isize)  ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) + ((isize)/255) + 16)
    164 
    165 /*! LZ4_compressBound() :
    166     Provides the maximum size that LZ4 compression may output in a "worst case" scenario (input data not compressible)
    167     This function is primarily useful for memory allocation purposes (destination buffer size).
    168     Macro LZ4_COMPRESSBOUND() is also provided for compilation-time evaluation (stack memory allocation for example).
    169     Note that LZ4_compress_default() compresses faster when dstCapacity is >= LZ4_compressBound(srcSize)
    170         inputSize  : max supported value is LZ4_MAX_INPUT_SIZE
    171         return : maximum output size in a "worst case" scenario
    172               or 0, if input size is incorrect (too large or negative)
    173 */
    174 LZ4LIB_API int LZ4_compressBound(int inputSize);
    175 
    176 /*! LZ4_compress_fast() :
    177     Same as LZ4_compress_default(), but allows selection of "acceleration" factor.
    178     The larger the acceleration value, the faster the algorithm, but also the lesser the compression.
    179     It's a trade-off. It can be fine tuned, with each successive value providing roughly +~3% to speed.
    180     An acceleration value of "1" is the same as regular LZ4_compress_default()
    181     Values <= 0 will be replaced by ACCELERATION_DEFAULT (currently == 1, see lz4.c).
    182 */
    183 LZ4LIB_API int LZ4_compress_fast (const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
    184 
    185 
    186 /*! LZ4_compress_fast_extState() :
    187  *  Same as LZ4_compress_fast(), using an externally allocated memory space for its state.
    188  *  Use LZ4_sizeofState() to know how much memory must be allocated,
    189  *  and allocate it on 8-bytes boundaries (using `malloc()` typically).
    190  *  Then, provide this buffer as `void* state` to compression function.
    191  */
    192 LZ4LIB_API int LZ4_sizeofState(void);
    193 LZ4LIB_API int LZ4_compress_fast_extState (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
    194 
    195 
    196 /*! LZ4_compress_destSize() :
    197  *  Reverse the logic : compresses as much data as possible from 'src' buffer
    198  *  into already allocated buffer 'dst', of size >= 'targetDestSize'.
    199  *  This function either compresses the entire 'src' content into 'dst' if it's large enough,
    200  *  or fill 'dst' buffer completely with as much data as possible from 'src'.
    201  *  note: acceleration parameter is fixed to "default".
    202  *
    203  * *srcSizePtr : will be modified to indicate how many bytes where read from 'src' to fill 'dst'.
    204  *               New value is necessarily <= input value.
    205  * @return : Nb bytes written into 'dst' (necessarily <= targetDestSize)
    206  *           or 0 if compression fails.
    207 */
    208 LZ4LIB_API int LZ4_compress_destSize (const char* src, char* dst, int* srcSizePtr, int targetDstSize);
    209 
    210 
    211 /*! LZ4_decompress_safe_partial() :
    212  *  Decompress an LZ4 compressed block, of size 'srcSize' at position 'src',
    213  *  into destination buffer 'dst' of size 'dstCapacity'.
    214  *  Up to 'targetOutputSize' bytes will be decoded.
    215  *  The function stops decoding on reaching this objective,
    216  *  which can boost performance when only the beginning of a block is required.
    217  *
    218  * @return : the number of bytes decoded in `dst` (necessarily <= dstCapacity)
    219  *           If source stream is detected malformed, function returns a negative result.
    220  *
    221  *  Note : @return can be < targetOutputSize, if compressed block contains less data.
    222  *
    223  *  Note 2 : this function features 2 parameters, targetOutputSize and dstCapacity,
    224  *           and expects targetOutputSize <= dstCapacity.
    225  *           It effectively stops decoding on reaching targetOutputSize,
    226  *           so dstCapacity is kind of redundant.
    227  *           This is because in a previous version of this function,
    228  *           decoding operation would not "break" a sequence in the middle.
    229  *           As a consequence, there was no guarantee that decoding would stop at exactly targetOutputSize,
    230  *           it could write more bytes, though only up to dstCapacity.
    231  *           Some "margin" used to be required for this operation to work properly.
    232  *           This is no longer necessary.
    233  *           The function nonetheless keeps its signature, in an effort to not break API.
    234  */
    235 LZ4LIB_API int LZ4_decompress_safe_partial (const char* src, char* dst, int srcSize, int targetOutputSize, int dstCapacity);
    236 
    237 
    238 /*-*********************************************
    239 *  Streaming Compression Functions
    240 ***********************************************/
    241 typedef union LZ4_stream_u LZ4_stream_t;  /* incomplete type (defined later) */
    242 
    243 LZ4LIB_API LZ4_stream_t* LZ4_createStream(void);
    244 LZ4LIB_API int           LZ4_freeStream (LZ4_stream_t* streamPtr);
    245 
    246 /*! LZ4_resetStream_fast() : v1.9.0+
    247  *  Use this to prepare an LZ4_stream_t for a new chain of dependent blocks
    248  *  (e.g., LZ4_compress_fast_continue()).
    249  *
    250  *  An LZ4_stream_t must be initialized once before usage.
    251  *  This is automatically done when created by LZ4_createStream().
    252  *  However, should the LZ4_stream_t be simply declared on stack (for example),
    253  *  it's necessary to initialize it first, using LZ4_initStream().
    254  *
    255  *  After init, start any new stream with LZ4_resetStream_fast().
    256  *  A same LZ4_stream_t can be re-used multiple times consecutively
    257  *  and compress multiple streams,
    258  *  provided that it starts each new stream with LZ4_resetStream_fast().
    259  *
    260  *  LZ4_resetStream_fast() is much faster than LZ4_initStream(),
    261  *  but is not compatible with memory regions containing garbage data.
    262  *
    263  *  Note: it's only useful to call LZ4_resetStream_fast()
    264  *        in the context of streaming compression.
    265  *        The *extState* functions perform their own resets.
    266  *        Invoking LZ4_resetStream_fast() before is redundant, and even counterproductive.
    267  */
    268 LZ4LIB_API void LZ4_resetStream_fast (LZ4_stream_t* streamPtr);
    269 
    270 /*! LZ4_loadDict() :
    271  *  Use this function to reference a static dictionary into LZ4_stream_t.
    272  *  The dictionary must remain available during compression.
    273  *  LZ4_loadDict() triggers a reset, so any previous data will be forgotten.
    274  *  The same dictionary will have to be loaded on decompression side for successful decoding.
    275  *  Dictionary are useful for better compression of small data (KB range).
    276  *  While LZ4 accept any input as dictionary,
    277  *  results are generally better when using Zstandard's Dictionary Builder.
    278  *  Loading a size of 0 is allowed, and is the same as reset.
    279  * @return : loaded dictionary size, in bytes (necessarily <= 64 KB)
    280  */
    281 LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, int dictSize);
    282 
    283 /*! LZ4_compress_fast_continue() :
    284  *  Compress 'src' content using data from previously compressed blocks, for better compression ratio.
    285  * 'dst' buffer must be already allocated.
    286  *  If dstCapacity >= LZ4_compressBound(srcSize), compression is guaranteed to succeed, and runs faster.
    287  *
    288  * @return : size of compressed block
    289  *           or 0 if there is an error (typically, cannot fit into 'dst').
    290  *
    291  *  Note 1 : Each invocation to LZ4_compress_fast_continue() generates a new block.
    292  *           Each block has precise boundaries.
    293  *           Each block must be decompressed separately, calling LZ4_decompress_*() with relevant metadata.
    294  *           It's not possible to append blocks together and expect a single invocation of LZ4_decompress_*() to decompress them together.
    295  *
    296  *  Note 2 : The previous 64KB of source data is __assumed__ to remain present, unmodified, at same address in memory !
    297  *
    298  *  Note 3 : When input is structured as a double-buffer, each buffer can have any size, including < 64 KB.
    299  *           Make sure that buffers are separated, by at least one byte.
    300  *           This construction ensures that each block only depends on previous block.
    301  *
    302  *  Note 4 : If input buffer is a ring-buffer, it can have any size, including < 64 KB.
    303  *
    304  *  Note 5 : After an error, the stream status is undefined (invalid), it can only be reset or freed.
    305  */
    306 LZ4LIB_API int LZ4_compress_fast_continue (LZ4_stream_t* streamPtr, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
    307 
    308 /*! LZ4_saveDict() :
    309  *  If last 64KB data cannot be guaranteed to remain available at its current memory location,
    310  *  save it into a safer place (char* safeBuffer).
    311  *  This is schematically equivalent to a memcpy() followed by LZ4_loadDict(),
    312  *  but is much faster, because LZ4_saveDict() doesn't need to rebuild tables.
    313  * @return : saved dictionary size in bytes (necessarily <= maxDictSize), or 0 if error.
    314  */
    315 LZ4LIB_API int LZ4_saveDict (LZ4_stream_t* streamPtr, char* safeBuffer, int maxDictSize);
    316 
    317 
    318 /*-**********************************************
    319 *  Streaming Decompression Functions
    320 *  Bufferless synchronous API
    321 ************************************************/
    322 typedef union LZ4_streamDecode_u LZ4_streamDecode_t;   /* tracking context */
    323 
    324 /*! LZ4_createStreamDecode() and LZ4_freeStreamDecode() :
    325  *  creation / destruction of streaming decompression tracking context.
    326  *  A tracking context can be re-used multiple times.
    327  */
    328 LZ4LIB_API LZ4_streamDecode_t* LZ4_createStreamDecode(void);
    329 LZ4LIB_API int                 LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream);
    330 
    331 /*! LZ4_setStreamDecode() :
    332  *  An LZ4_streamDecode_t context can be allocated once and re-used multiple times.
    333  *  Use this function to start decompression of a new stream of blocks.
    334  *  A dictionary can optionally be set. Use NULL or size 0 for a reset order.
    335  *  Dictionary is presumed stable : it must remain accessible and unmodified during next decompression.
    336  * @return : 1 if OK, 0 if error
    337  */
    338 LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize);
    339 
    340 /*! LZ4_decoderRingBufferSize() : v1.8.2+
    341  *  Note : in a ring buffer scenario (optional),
    342  *  blocks are presumed decompressed next to each other
    343  *  up to the moment there is not enough remaining space for next block (remainingSize < maxBlockSize),
    344  *  at which stage it resumes from beginning of ring buffer.
    345  *  When setting such a ring buffer for streaming decompression,
    346  *  provides the minimum size of this ring buffer
    347  *  to be compatible with any source respecting maxBlockSize condition.
    348  * @return : minimum ring buffer size,
    349  *           or 0 if there is an error (invalid maxBlockSize).
    350  */
    351 LZ4LIB_API int LZ4_decoderRingBufferSize(int maxBlockSize);
    352 #define LZ4_DECODER_RING_BUFFER_SIZE(maxBlockSize) (65536 + 14 + (maxBlockSize))  /* for static allocation; maxBlockSize presumed valid */
    353 
    354 /*! LZ4_decompress_*_continue() :
    355  *  These decoding functions allow decompression of consecutive blocks in "streaming" mode.
    356  *  A block is an unsplittable entity, it must be presented entirely to a decompression function.
    357  *  Decompression functions only accepts one block at a time.
    358  *  The last 64KB of previously decoded data *must* remain available and unmodified at the memory position where they were decoded.
    359  *  If less than 64KB of data has been decoded, all the data must be present.
    360  *
    361  *  Special : if decompression side sets a ring buffer, it must respect one of the following conditions :
    362  *  - Decompression buffer size is _at least_ LZ4_decoderRingBufferSize(maxBlockSize).
    363  *    maxBlockSize is the maximum size of any single block. It can have any value > 16 bytes.
    364  *    In which case, encoding and decoding buffers do not need to be synchronized.
    365  *    Actually, data can be produced by any source compliant with LZ4 format specification, and respecting maxBlockSize.
    366  *  - Synchronized mode :
    367  *    Decompression buffer size is _exactly_ the same as compression buffer size,
    368  *    and follows exactly same update rule (block boundaries at same positions),
    369  *    and decoding function is provided with exact decompressed size of each block (exception for last block of the stream),
    370  *    _then_ decoding & encoding ring buffer can have any size, including small ones ( < 64 KB).
    371  *  - Decompression buffer is larger than encoding buffer, by a minimum of maxBlockSize more bytes.
    372  *    In which case, encoding and decoding buffers do not need to be synchronized,
    373  *    and encoding ring buffer can have any size, including small ones ( < 64 KB).
    374  *
    375  *  Whenever these conditions are not possible,
    376  *  save the last 64KB of decoded data into a safe buffer where it can't be modified during decompression,
    377  *  then indicate where this data is saved using LZ4_setStreamDecode(), before decompressing next block.
    378 */
    379 LZ4LIB_API int LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src, char* dst, int srcSize, int dstCapacity);
    380 
    381 
    382 /*! LZ4_decompress_*_usingDict() :
    383  *  These decoding functions work the same as
    384  *  a combination of LZ4_setStreamDecode() followed by LZ4_decompress_*_continue()
    385  *  They are stand-alone, and don't need an LZ4_streamDecode_t structure.
    386  *  Dictionary is presumed stable : it must remain accessible and unmodified during decompression.
    387  *  Performance tip : Decompression speed can be substantially increased
    388  *                    when dst == dictStart + dictSize.
    389  */
    390 LZ4LIB_API int LZ4_decompress_safe_usingDict (const char* src, char* dst, int srcSize, int dstCapcity, const char* dictStart, int dictSize);
    391 
    392 
    393 /*^*************************************
    394  * !!!!!!   STATIC LINKING ONLY   !!!!!!
    395  ***************************************/
    396 
    397 /*-****************************************************************************
    398  * Experimental section
    399  *
    400  * Symbols declared in this section must be considered unstable. Their
    401  * signatures or semantics may change, or they may be removed altogether in the
    402  * future. They are therefore only safe to depend on when the caller is
    403  * statically linked against the library.
    404  *
    405  * To protect against unsafe usage, not only are the declarations guarded,
    406  * the definitions are hidden by default
    407  * when building LZ4 as a shared/dynamic library.
    408  *
    409  * In order to access these declarations,
    410  * define LZ4_STATIC_LINKING_ONLY in your application
    411  * before including LZ4's headers.
    412  *
    413  * In order to make their implementations accessible dynamically, you must
    414  * define LZ4_PUBLISH_STATIC_FUNCTIONS when building the LZ4 library.
    415  ******************************************************************************/
    416 
    417 #ifdef LZ4_PUBLISH_STATIC_FUNCTIONS
    418 #define LZ4LIB_STATIC_API LZ4LIB_API
    419 #else
    420 #define LZ4LIB_STATIC_API
    421 #endif
    422 
    423 #ifdef LZ4_STATIC_LINKING_ONLY
    424 
    425 
    426 /*! LZ4_compress_fast_extState_fastReset() :
    427  *  A variant of LZ4_compress_fast_extState().
    428  *
    429  *  Using this variant avoids an expensive initialization step.
    430  *  It is only safe to call if the state buffer is known to be correctly initialized already
    431  *  (see above comment on LZ4_resetStream_fast() for a definition of "correctly initialized").
    432  *  From a high level, the difference is that
    433  *  this function initializes the provided state with a call to something like LZ4_resetStream_fast()
    434  *  while LZ4_compress_fast_extState() starts with a call to LZ4_resetStream().
    435  */
    436 LZ4LIB_STATIC_API int LZ4_compress_fast_extState_fastReset (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int acceleration);
    437 
    438 /*! LZ4_attach_dictionary() :
    439  *  This is an experimental API that allows
    440  *  efficient use of a static dictionary many times.
    441  *
    442  *  Rather than re-loading the dictionary buffer into a working context before
    443  *  each compression, or copying a pre-loaded dictionary's LZ4_stream_t into a
    444  *  working LZ4_stream_t, this function introduces a no-copy setup mechanism,
    445  *  in which the working stream references the dictionary stream in-place.
    446  *
    447  *  Several assumptions are made about the state of the dictionary stream.
    448  *  Currently, only streams which have been prepared by LZ4_loadDict() should
    449  *  be expected to work.
    450  *
    451  *  Alternatively, the provided dictionaryStream may be NULL,
    452  *  in which case any existing dictionary stream is unset.
    453  *
    454  *  If a dictionary is provided, it replaces any pre-existing stream history.
    455  *  The dictionary contents are the only history that can be referenced and
    456  *  logically immediately precede the data compressed in the first subsequent
    457  *  compression call.
    458  *
    459  *  The dictionary will only remain attached to the working stream through the
    460  *  first compression call, at the end of which it is cleared. The dictionary
    461  *  stream (and source buffer) must remain in-place / accessible / unchanged
    462  *  through the completion of the first compression call on the stream.
    463  */
    464 LZ4LIB_STATIC_API void LZ4_attach_dictionary(LZ4_stream_t* workingStream, const LZ4_stream_t* dictionaryStream);
    465 
    466 #endif
    467 
    468 
    469 /*-************************************************************
    470  *  PRIVATE DEFINITIONS
    471  **************************************************************
    472  * Do not use these definitions directly.
    473  * They are only exposed to allow static allocation of `LZ4_stream_t` and `LZ4_streamDecode_t`.
    474  * Accessing members will expose code to API and/or ABI break in future versions of the library.
    475  **************************************************************/
    476 #define LZ4_HASHLOG   (LZ4_MEMORY_USAGE-2)
    477 #define LZ4_HASHTABLESIZE (1 << LZ4_MEMORY_USAGE)
    478 #define LZ4_HASH_SIZE_U32 (1 << LZ4_HASHLOG)       /* required as macro for static allocation */
    479 
    480 #if defined(__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */)
    481 #include <stdint.h>
    482 
    483 typedef struct LZ4_stream_t_internal LZ4_stream_t_internal;
    484 struct LZ4_stream_t_internal {
    485     uint32_t hashTable[LZ4_HASH_SIZE_U32];
    486     uint32_t currentOffset;
    487     uint16_t dirty;
    488     uint16_t tableType;
    489     const uint8_t* dictionary;
    490     const LZ4_stream_t_internal* dictCtx;
    491     uint32_t dictSize;
    492 };
    493 
    494 typedef struct {
    495     const uint8_t* externalDict;
    496     size_t extDictSize;
    497     const uint8_t* prefixEnd;
    498     size_t prefixSize;
    499 } LZ4_streamDecode_t_internal;
    500 
    501 #else
    502 
    503 typedef struct LZ4_stream_t_internal LZ4_stream_t_internal;
    504 struct LZ4_stream_t_internal {
    505     unsigned int hashTable[LZ4_HASH_SIZE_U32];
    506     unsigned int currentOffset;
    507     unsigned short dirty;
    508     unsigned short tableType;
    509     const unsigned char* dictionary;
    510     const LZ4_stream_t_internal* dictCtx;
    511     unsigned int dictSize;
    512 };
    513 
    514 typedef struct {
    515     const unsigned char* externalDict;
    516     const unsigned char* prefixEnd;
    517     size_t extDictSize;
    518     size_t prefixSize;
    519 } LZ4_streamDecode_t_internal;
    520 
    521 #endif
    522 
    523 /*! LZ4_stream_t :
    524  *  information structure to track an LZ4 stream.
    525  *  LZ4_stream_t can also be created using LZ4_createStream(), which is recommended.
    526  *  The structure definition can be convenient for static allocation
    527  *  (on stack, or as part of larger structure).
    528  *  Init this structure with LZ4_initStream() before first use.
    529  *  note : only use this definition in association with static linking !
    530  *    this definition is not API/ABI safe, and may change in a future version.
    531  */
    532 #define LZ4_STREAMSIZE_U64 ((1 << (LZ4_MEMORY_USAGE-3)) + 4 + ((sizeof(void*)==16) ? 4 : 0) /*AS-400*/ )
    533 #define LZ4_STREAMSIZE     (LZ4_STREAMSIZE_U64 * sizeof(unsigned long long))
    534 union LZ4_stream_u {
    535     unsigned long long table[LZ4_STREAMSIZE_U64];
    536     LZ4_stream_t_internal internal_donotuse;
    537 } ;  /* previously typedef'd to LZ4_stream_t */
    538 
    539 /*! LZ4_initStream() : v1.9.0+
    540  *  An LZ4_stream_t structure must be initialized at least once.
    541  *  This is automatically done when invoking LZ4_createStream(),
    542  *  but it's not when the structure is simply declared on stack (for example).
    543  *
    544  *  Use LZ4_initStream() to properly initialize a newly declared LZ4_stream_t.
    545  *  It can also initialize any arbitrary buffer of sufficient size,
    546  *  and will @return a pointer of proper type upon initialization.
    547  *
    548  *  Note : initialization fails if size and alignment conditions are not respected.
    549  *         In which case, the function will @return NULL.
    550  *  Note2: An LZ4_stream_t structure guarantees correct alignment and size.
    551  *  Note3: Before v1.9.0, use LZ4_resetStream() instead
    552  */
    553 LZ4LIB_API LZ4_stream_t* LZ4_initStream (void* buffer, size_t size);
    554 
    555 
    556 /*! LZ4_streamDecode_t :
    557  *  information structure to track an LZ4 stream during decompression.
    558  *  init this structure  using LZ4_setStreamDecode() before first use.
    559  *  note : only use in association with static linking !
    560  *         this definition is not API/ABI safe,
    561  *         and may change in a future version !
    562  */
    563 #define LZ4_STREAMDECODESIZE_U64 (4 + ((sizeof(void*)==16) ? 2 : 0) /*AS-400*/ )
    564 #define LZ4_STREAMDECODESIZE     (LZ4_STREAMDECODESIZE_U64 * sizeof(unsigned long long))
    565 union LZ4_streamDecode_u {
    566     unsigned long long table[LZ4_STREAMDECODESIZE_U64];
    567     LZ4_streamDecode_t_internal internal_donotuse;
    568 } ;   /* previously typedef'd to LZ4_streamDecode_t */
    569 
    570 
    571 /*-************************************
    572 *  Obsolete Functions
    573 **************************************/
    574 
    575 /*! Deprecation warnings
    576  *
    577  *  Deprecated functions make the compiler generate a warning when invoked.
    578  *  This is meant to invite users to update their source code.
    579  *  Should deprecation warnings be a problem, it is generally possible to disable them,
    580  *  typically with -Wno-deprecated-declarations for gcc
    581  *  or _CRT_SECURE_NO_WARNINGS in Visual.
    582  *
    583  *  Another method is to define LZ4_DISABLE_DEPRECATE_WARNINGS
    584  *  before including the header file.
    585  */
    586 #ifdef LZ4_DISABLE_DEPRECATE_WARNINGS
    587 #  define LZ4_DEPRECATED(message)   /* disable deprecation warnings */
    588 #else
    589 #  define LZ4_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
    590 #  if defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */
    591 #    define LZ4_DEPRECATED(message) [[deprecated(message)]]
    592 #  elif (LZ4_GCC_VERSION >= 405) || defined(__clang__)
    593 #    define LZ4_DEPRECATED(message) __attribute__((deprecated(message)))
    594 #  elif (LZ4_GCC_VERSION >= 301)
    595 #    define LZ4_DEPRECATED(message) __attribute__((deprecated))
    596 #  elif defined(_MSC_VER)
    597 #    define LZ4_DEPRECATED(message) __declspec(deprecated(message))
    598 #  else
    599 #    pragma message("WARNING: You need to implement LZ4_DEPRECATED for this compiler")
    600 #    define LZ4_DEPRECATED(message)
    601 #  endif
    602 #endif /* LZ4_DISABLE_DEPRECATE_WARNINGS */
    603 
    604 /* Obsolete compression functions */
    605 LZ4_DEPRECATED("use LZ4_compress_default() instead")       LZ4LIB_API int LZ4_compress               (const char* source, char* dest, int sourceSize);
    606 LZ4_DEPRECATED("use LZ4_compress_default() instead")       LZ4LIB_API int LZ4_compress_limitedOutput (const char* source, char* dest, int sourceSize, int maxOutputSize);
    607 LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") LZ4LIB_API int LZ4_compress_withState               (void* state, const char* source, char* dest, int inputSize);
    608 LZ4_DEPRECATED("use LZ4_compress_fast_extState() instead") LZ4LIB_API int LZ4_compress_limitedOutput_withState (void* state, const char* source, char* dest, int inputSize, int maxOutputSize);
    609 LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") LZ4LIB_API int LZ4_compress_continue                (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize);
    610 LZ4_DEPRECATED("use LZ4_compress_fast_continue() instead") LZ4LIB_API int LZ4_compress_limitedOutput_continue  (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize, int maxOutputSize);
    611 
    612 /* Obsolete decompression functions */
    613 LZ4_DEPRECATED("use LZ4_decompress_fast() instead") LZ4LIB_API int LZ4_uncompress (const char* source, char* dest, int outputSize);
    614 LZ4_DEPRECATED("use LZ4_decompress_safe() instead") LZ4LIB_API int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize);
    615 
    616 /* Obsolete streaming functions; degraded functionality; do not use!
    617  *
    618  * In order to perform streaming compression, these functions depended on data
    619  * that is no longer tracked in the state. They have been preserved as well as
    620  * possible: using them will still produce a correct output. However, they don't
    621  * actually retain any history between compression calls. The compression ratio
    622  * achieved will therefore be no better than compressing each chunk
    623  * independently.
    624  */
    625 LZ4_DEPRECATED("Use LZ4_createStream() instead") LZ4LIB_API void* LZ4_create (char* inputBuffer);
    626 LZ4_DEPRECATED("Use LZ4_createStream() instead") LZ4LIB_API int   LZ4_sizeofStreamState(void);
    627 LZ4_DEPRECATED("Use LZ4_resetStream() instead")  LZ4LIB_API int   LZ4_resetStreamState(void* state, char* inputBuffer);
    628 LZ4_DEPRECATED("Use LZ4_saveDict() instead")     LZ4LIB_API char* LZ4_slideInputBuffer (void* state);
    629 
    630 /* Obsolete streaming decoding functions */
    631 LZ4_DEPRECATED("use LZ4_decompress_safe_usingDict() instead") LZ4LIB_API int LZ4_decompress_safe_withPrefix64k (const char* src, char* dst, int compressedSize, int maxDstSize);
    632 LZ4_DEPRECATED("use LZ4_decompress_fast_usingDict() instead") LZ4LIB_API int LZ4_decompress_fast_withPrefix64k (const char* src, char* dst, int originalSize);
    633 
    634 /*! LZ4_decompress_fast() : **unsafe!**
    635  *  These functions used to be faster than LZ4_decompress_safe(),
    636  *  but it has changed, and they are now slower than LZ4_decompress_safe().
    637  *  This is because LZ4_decompress_fast() doesn't know the input size,
    638  *  and therefore must progress more cautiously in the input buffer to not read beyond the end of block.
    639  *  On top of that `LZ4_decompress_fast()` is not protected vs malformed or malicious inputs, making it a security liability.
    640  *  As a consequence, LZ4_decompress_fast() is strongly discouraged, and deprecated.
    641  *
    642  *  The last remaining LZ4_decompress_fast() specificity is that
    643  *  it can decompress a block without knowing its compressed size.
    644  *  Such functionality could be achieved in a more secure manner,
    645  *  by also providing the maximum size of input buffer,
    646  *  but it would require new prototypes, and adaptation of the implementation to this new use case.
    647  *
    648  *  Parameters:
    649  *  originalSize : is the uncompressed size to regenerate.
    650  *                 `dst` must be already allocated, its size must be >= 'originalSize' bytes.
    651  * @return : number of bytes read from source buffer (== compressed size).
    652  *           The function expects to finish at block's end exactly.
    653  *           If the source stream is detected malformed, the function stops decoding and returns a negative result.
    654  *  note : LZ4_decompress_fast*() requires originalSize. Thanks to this information, it never writes past the output buffer.
    655  *         However, since it doesn't know its 'src' size, it may read an unknown amount of input, past input buffer bounds.
    656  *         Also, since match offsets are not validated, match reads from 'src' may underflow too.
    657  *         These issues never happen if input (compressed) data is correct.
    658  *         But they may happen if input data is invalid (error or intentional tampering).
    659  *         As a consequence, use these functions in trusted environments with trusted data **only**.
    660  */
    661 
    662 LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe() instead")
    663 LZ4LIB_API int LZ4_decompress_fast (const char* src, char* dst, int originalSize);
    664 LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe_continue() instead")
    665 LZ4LIB_API int LZ4_decompress_fast_continue (LZ4_streamDecode_t* LZ4_streamDecode, const char* src, char* dst, int originalSize);
    666 LZ4_DEPRECATED("This function is deprecated and unsafe. Consider using LZ4_decompress_safe_usingDict() instead")
    667 LZ4LIB_API int LZ4_decompress_fast_usingDict (const char* src, char* dst, int originalSize, const char* dictStart, int dictSize);
    668 
    669 /*! LZ4_resetStream() :
    670  *  An LZ4_stream_t structure must be initialized at least once.
    671  *  This is done with LZ4_initStream(), or LZ4_resetStream().
    672  *  Consider switching to LZ4_initStream(),
    673  *  invoking LZ4_resetStream() will trigger deprecation warnings in the future.
    674  */
    675 LZ4LIB_API void LZ4_resetStream (LZ4_stream_t* streamPtr);
    676 
    677 }
    678 
    679 #endif /* LZ4_H_2983827168210 */