zstd/lib/zstd_internal.h

137 lines
4.1 KiB
C
Raw Normal View History

/*
zstd_internal - common functions to include
Header File for include
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
*/
#ifndef ZSTD_CCOMMON_H_MODULE
#define ZSTD_CCOMMON_H_MODULE
#if defined (__cplusplus)
extern "C" {
#endif
/* *************************************
* Includes
***************************************/
#include "mem.h"
#include "error_private.h"
2016-01-23 18:28:41 +00:00
#include "zstd_static.h"
2015-11-11 20:38:21 +00:00
/* *************************************
* Common macros
***************************************/
2015-10-31 11:57:14 +00:00
#define MIN(a,b) ((a)<(b) ? (a) : (b))
2015-11-11 20:38:21 +00:00
#define MAX(a,b) ((a)>(b) ? (a) : (b))
2015-10-31 11:57:14 +00:00
2015-11-11 20:38:21 +00:00
/* *************************************
* Common constants
***************************************/
2016-01-26 02:14:20 +00:00
#define ZSTD_MAGICNUMBER 0xFD2FB525 /* v0.5 */
#define ZSTD_DICT_MAGIC 0xEC30A435
2015-11-25 13:42:45 +00:00
2015-11-11 20:38:21 +00:00
#define KB *(1 <<10)
#define MB *(1 <<20)
#define GB *(1U<<30)
2015-11-11 20:38:21 +00:00
#define BLOCKSIZE (128 KB) /* define, for static allocation */
2015-11-11 20:38:21 +00:00
static const size_t ZSTD_blockHeaderSize = 3;
2015-11-25 13:42:45 +00:00
static const size_t ZSTD_frameHeaderSize_min = 5;
#define ZSTD_frameHeaderSize_max 5 /* define, for static allocation */
2015-11-11 20:38:21 +00:00
#define BIT7 128
#define BIT6 64
#define BIT5 32
#define BIT4 16
#define BIT1 2
#define BIT0 1
2016-01-23 18:28:41 +00:00
#define IS_HUF 0
#define IS_PCH 1
#define IS_RAW 2
#define IS_RLE 3
2015-11-05 16:32:18 +00:00
2015-11-11 20:38:21 +00:00
#define MINMATCH 4
2016-01-31 01:04:15 +00:00
#define REPCODE_STARTVALUE 1
2015-11-11 20:38:21 +00:00
#define MLbits 7
#define LLbits 6
#define Offbits 5
#define MaxML ((1<<MLbits) - 1)
#define MaxLL ((1<<LLbits) - 1)
2015-11-11 20:38:21 +00:00
#define MaxOff ((1<<Offbits)- 1)
#define MLFSELog 10
#define LLFSELog 10
#define OffFSELog 9
#define MaxSeq MAX(MaxLL, MaxML)
2016-01-27 23:18:06 +00:00
#define FSE_ENCODING_RAW 0
#define FSE_ENCODING_RLE 1
#define FSE_ENCODING_STATIC 2
#define FSE_ENCODING_DYNAMIC 3
2016-01-26 02:14:20 +00:00
#define HufLog 12
2016-02-03 11:39:34 +00:00
#define MIN_SEQUENCES_SIZE 1 /* nbSeq==0 */
#define MIN_CBLOCK_SIZE (1 /*litCSize*/ + 1 /* RLE or RAW */ + MIN_SEQUENCES_SIZE /* nbSeq==0 */) /* for a non-null block */
2016-01-25 16:26:01 +00:00
#define WILDCOPY_OVERLENGTH 8
2015-11-04 22:36:36 +00:00
2015-11-11 20:38:21 +00:00
typedef enum { bt_compressed, bt_raw, bt_rle, bt_end } blockType_t;
2015-11-09 15:38:17 +00:00
2016-01-27 23:18:06 +00:00
/*-*******************************************
2015-11-11 20:38:21 +00:00
* Shared functions to include for inlining
2016-01-27 23:18:06 +00:00
*********************************************/
2015-11-11 20:38:21 +00:00
static void ZSTD_copy8(void* dst, const void* src) { memcpy(dst, src, 8); }
2015-11-11 20:38:21 +00:00
#define COPY8(d,s) { ZSTD_copy8(d,s); d+=8; s+=8; }
2016-01-25 16:26:01 +00:00
/*! ZSTD_wildcopy : custom version of memcpy(), can copy up to 7 bytes too many (8 bytes if length==0) */
2016-01-23 18:28:41 +00:00
MEM_STATIC void ZSTD_wildcopy(void* dst, const void* src, size_t length)
2015-11-11 20:38:21 +00:00
{
const BYTE* ip = (const BYTE*)src;
BYTE* op = (BYTE*)dst;
BYTE* const oend = op + length;
do
COPY8(op, ip)
while (op < oend);
}
#if defined (__cplusplus)
}
#endif
#endif /* ZSTD_CCOMMON_H_MODULE */