2017-08-18 23:52:05 +00:00
/*
2016-08-30 17:04:33 +00:00
* Copyright ( c ) 2016 - present , Yann Collet , Facebook , Inc .
* All rights reserved .
*
2017-08-18 23:52:05 +00:00
* This source code is licensed under both the BSD - style license ( found in the
* LICENSE file in the root directory of this source tree ) and the GPLv2 ( found
* in the COPYING file in the root directory of this source tree ) .
2017-09-08 07:09:23 +00:00
* You may select , at your option , one of the above - listed licenses .
2016-08-30 17:04:33 +00:00
*/
2015-10-22 14:31:46 +00:00
2016-02-11 23:07:30 +00:00
/*-*************************************
2016-02-03 01:46:46 +00:00
* Dependencies
2015-10-22 14:31:46 +00:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2018-12-13 20:14:36 +00:00
# include <limits.h> /* INT_MAX */
2016-06-04 17:47:02 +00:00
# include <string.h> /* memset */
2018-02-15 03:20:32 +00:00
# include "cpu.h"
2015-11-11 20:38:21 +00:00
# include "mem.h"
2018-06-13 23:49:31 +00:00
# include "hist.h" /* HIST_countFast_wksp */
2016-08-11 23:20:36 +00:00
# define FSE_STATIC_LINKING_ONLY /* FSE_encodeSymbol */
2016-06-04 22:58:01 +00:00
# include "fse.h"
2016-06-04 22:42:28 +00:00
# define HUF_STATIC_LINKING_ONLY
# include "huf.h"
2017-11-08 00:15:23 +00:00
# include "zstd_compress_internal.h"
2019-07-03 20:40:37 +00:00
# include "zstd_compress_sequences.h"
# include "zstd_compress_literals.h"
2017-09-02 01:28:35 +00:00
# include "zstd_fast.h"
# include "zstd_double_fast.h"
# include "zstd_lazy.h"
# include "zstd_opt.h"
2017-09-07 00:56:01 +00:00
# include "zstd_ldm.h"
2017-04-27 07:29:04 +00:00
2015-10-22 14:31:46 +00:00
2016-02-11 23:07:30 +00:00
/*-*************************************
2016-01-23 18:28:41 +00:00
* Helper functions
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2017-04-01 00:11:38 +00:00
size_t ZSTD_compressBound ( size_t srcSize ) {
2017-09-30 06:17:41 +00:00
return ZSTD_COMPRESSBOUND ( srcSize ) ;
2017-04-01 00:11:38 +00:00
}
2016-01-23 18:28:41 +00:00
2016-02-11 23:07:30 +00:00
/*-*************************************
2015-11-11 20:38:21 +00:00
* Context memory management
2015-10-22 14:31:46 +00:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2017-05-23 01:21:51 +00:00
struct ZSTD_CDict_s {
const void * dictContent ;
size_t dictContentSize ;
2019-07-15 19:08:49 +00:00
U32 * entropyWorkspace ; /* entropy workspace of HUF_WORKSPACE_SIZE bytes */
2019-08-15 16:51:24 +00:00
ZSTD_cwksp workspace ;
2018-01-16 23:23:39 +00:00
ZSTD_matchState_t matchState ;
ZSTD_compressedBlockState_t cBlockState ;
ZSTD_customMem customMem ;
U32 dictID ;
2019-10-16 19:05:29 +00:00
int compressionLevel ; /* 0 indicates that advanced API was used to select CDict params */
2017-06-03 08:15:02 +00:00
} ; /* typedef'd to ZSTD_CDict within "zstd.h" */
2017-05-08 23:08:01 +00:00
2015-11-11 12:43:58 +00:00
ZSTD_CCtx * ZSTD_createCCtx ( void )
2015-10-22 14:31:46 +00:00
{
2017-05-31 00:11:39 +00:00
return ZSTD_createCCtx_advanced ( ZSTD_defaultCMem ) ;
2016-05-23 13:49:09 +00:00
}
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
static void ZSTD_initCCtx ( ZSTD_CCtx * cctx , ZSTD_customMem memManager )
{
assert ( cctx ! = NULL ) ;
memset ( cctx , 0 , sizeof ( * cctx ) ) ;
cctx - > customMem = memManager ;
cctx - > bmi2 = ZSTD_cpuid_bmi2 ( ZSTD_cpuid ( ) ) ;
2018-11-16 00:12:39 +00:00
{ size_t const err = ZSTD_CCtx_reset ( cctx , ZSTD_reset_parameters ) ;
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
assert ( ! ZSTD_isError ( err ) ) ;
( void ) err ;
}
}
2016-05-23 13:49:09 +00:00
ZSTD_CCtx * ZSTD_createCCtx_advanced ( ZSTD_customMem customMem )
{
2017-06-16 20:29:17 +00:00
ZSTD_STATIC_ASSERT ( zcss_init = = 0 ) ;
2017-06-16 23:51:33 +00:00
ZSTD_STATIC_ASSERT ( ZSTD_CONTENTSIZE_UNKNOWN = = ( 0ULL - 1 ) ) ;
2017-12-29 13:40:33 +00:00
if ( ! customMem . customAlloc ^ ! customMem . customFree ) return NULL ;
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
{ ZSTD_CCtx * const cctx = ( ZSTD_CCtx * ) ZSTD_malloc ( sizeof ( ZSTD_CCtx ) , customMem ) ;
2017-12-29 13:40:33 +00:00
if ( ! cctx ) return NULL ;
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
ZSTD_initCCtx ( cctx , customMem ) ;
2017-12-29 13:40:33 +00:00
return cctx ;
}
2015-10-22 14:31:46 +00:00
}
2017-05-23 20:16:00 +00:00
ZSTD_CCtx * ZSTD_initStaticCCtx ( void * workspace , size_t workspaceSize )
{
2019-08-15 16:51:24 +00:00
ZSTD_cwksp ws ;
2019-08-14 18:44:17 +00:00
ZSTD_CCtx * cctx ;
2017-05-23 20:16:00 +00:00
if ( workspaceSize < = sizeof ( ZSTD_CCtx ) ) return NULL ; /* minimum size */
if ( ( size_t ) workspace & 7 ) return NULL ; /* must be 8-aligned */
2019-08-15 16:51:24 +00:00
ZSTD_cwksp_init ( & ws , workspace , workspaceSize ) ;
2019-08-14 18:44:17 +00:00
2019-08-15 16:51:24 +00:00
cctx = ( ZSTD_CCtx * ) ZSTD_cwksp_reserve_object ( & ws , sizeof ( ZSTD_CCtx ) ) ;
2019-08-14 18:44:17 +00:00
if ( cctx = = NULL ) {
return NULL ;
}
2019-08-14 15:35:53 +00:00
memset ( cctx , 0 , sizeof ( ZSTD_CCtx ) ) ;
2019-09-03 16:48:45 +00:00
ZSTD_cwksp_move ( & cctx - > workspace , & ws ) ;
2017-05-23 20:16:00 +00:00
cctx - > staticSize = workspaceSize ;
2017-12-13 00:51:00 +00:00
/* statically sized space. entropyWorkspace never moves (but prev/next block swap places) */
2019-08-15 16:51:24 +00:00
if ( ! ZSTD_cwksp_check_available ( & cctx - > workspace , HUF_WORKSPACE_SIZE + 2 * sizeof ( ZSTD_compressedBlockState_t ) ) ) return NULL ;
cctx - > blockState . prevCBlock = ( ZSTD_compressedBlockState_t * ) ZSTD_cwksp_reserve_object ( & cctx - > workspace , sizeof ( ZSTD_compressedBlockState_t ) ) ;
cctx - > blockState . nextCBlock = ( ZSTD_compressedBlockState_t * ) ZSTD_cwksp_reserve_object ( & cctx - > workspace , sizeof ( ZSTD_compressedBlockState_t ) ) ;
cctx - > entropyWorkspace = ( U32 * ) ZSTD_cwksp_reserve_object (
2019-07-15 19:08:49 +00:00
& cctx - > workspace , HUF_WORKSPACE_SIZE ) ;
2018-02-15 03:20:32 +00:00
cctx - > bmi2 = ZSTD_cpuid_bmi2 ( ZSTD_cpuid ( ) ) ;
2016-07-14 14:52:45 +00:00
return cctx ;
2015-10-22 14:31:46 +00:00
}
2019-03-21 22:17:41 +00:00
/**
* Clears and frees all of the dictionaries in the CCtx .
*/
static void ZSTD_clearAllDicts ( ZSTD_CCtx * cctx )
{
ZSTD_free ( cctx - > localDict . dictBuffer , cctx - > customMem ) ;
ZSTD_freeCDict ( cctx - > localDict . cdict ) ;
memset ( & cctx - > localDict , 0 , sizeof ( cctx - > localDict ) ) ;
memset ( & cctx - > prefixDict , 0 , sizeof ( cctx - > prefixDict ) ) ;
cctx - > cdict = NULL ;
}
static size_t ZSTD_sizeof_localDict ( ZSTD_localDict dict )
{
size_t const bufferSize = dict . dictBuffer ! = NULL ? dict . dictSize : 0 ;
size_t const cdictSize = ZSTD_sizeof_CDict ( dict . cdict ) ;
return bufferSize + cdictSize ;
}
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
static void ZSTD_freeCCtxContent ( ZSTD_CCtx * cctx )
2015-10-25 13:06:35 +00:00
{
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
assert ( cctx ! = NULL ) ;
assert ( cctx - > staticSize = = 0 ) ;
2019-08-14 20:48:01 +00:00
/* Only free workspace if cctx not in workspace, otherwise the workspace
* will be freed when the cctx itself is freed . */
if ( ( void * ) cctx - > workspace . workspace ! = ( void * ) cctx ) {
2019-08-15 16:51:24 +00:00
ZSTD_cwksp_free ( & cctx - > workspace , cctx - > customMem ) ;
2019-08-14 20:48:01 +00:00
}
2019-03-21 22:17:41 +00:00
ZSTD_clearAllDicts ( cctx ) ;
2017-09-11 21:09:34 +00:00
# ifdef ZSTD_MULTITHREAD
2017-12-29 13:40:33 +00:00
ZSTDMT_freeCCtx ( cctx - > mtctx ) ; cctx - > mtctx = NULL ;
2017-09-11 21:09:34 +00:00
# endif
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
}
size_t ZSTD_freeCCtx ( ZSTD_CCtx * cctx )
{
if ( cctx = = NULL ) return 0 ; /* support free on NULL */
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > staticSize , memory_allocation ,
" not compatible with static CCtx " ) ;
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
ZSTD_freeCCtxContent ( cctx ) ;
2016-08-29 04:05:43 +00:00
ZSTD_free ( cctx , cctx - > customMem ) ;
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
return 0 ;
2015-10-25 13:06:35 +00:00
}
2015-10-22 14:31:46 +00:00
2017-09-11 21:09:34 +00:00
static size_t ZSTD_sizeof_mtctx ( const ZSTD_CCtx * cctx )
{
# ifdef ZSTD_MULTITHREAD
return ZSTDMT_sizeof_CCtx ( cctx - > mtctx ) ;
# else
2018-12-04 23:35:37 +00:00
( void ) cctx ;
2017-09-11 21:09:34 +00:00
return 0 ;
# endif
}
2016-08-22 23:18:06 +00:00
size_t ZSTD_sizeof_CCtx ( const ZSTD_CCtx * cctx )
2016-07-11 01:12:17 +00:00
{
2016-09-15 00:50:27 +00:00
if ( cctx = = NULL ) return 0 ; /* support sizeof on NULL */
2019-09-09 20:45:17 +00:00
/* cctx may be in the workspace */
return ( cctx - > workspace . workspace = = cctx ? 0 : sizeof ( * cctx ) )
+ ZSTD_cwksp_sizeof ( & cctx - > workspace )
2019-03-21 22:17:41 +00:00
+ ZSTD_sizeof_localDict ( cctx - > localDict )
2017-09-11 21:09:34 +00:00
+ ZSTD_sizeof_mtctx ( cctx ) ;
2016-07-11 01:12:17 +00:00
}
2017-05-19 17:17:59 +00:00
size_t ZSTD_sizeof_CStream ( const ZSTD_CStream * zcs )
{
return ZSTD_sizeof_CCtx ( zcs ) ; /* same object */
}
2017-05-12 22:31:53 +00:00
/* private API call, for dictBuilder only */
const seqStore_t * ZSTD_getSeqStore ( const ZSTD_CCtx * ctx ) { return & ( ctx - > seqStore ) ; }
2017-08-21 17:09:06 +00:00
static ZSTD_CCtx_params ZSTD_makeCCtxParamsFromCParams (
ZSTD_compressionParameters cParams )
{
ZSTD_CCtx_params cctxParams ;
2017-08-30 21:36:54 +00:00
memset ( & cctxParams , 0 , sizeof ( cctxParams ) ) ;
2017-08-21 17:09:06 +00:00
cctxParams . cParams = cParams ;
2018-03-19 21:41:23 +00:00
cctxParams . compressionLevel = ZSTD_CLEVEL_DEFAULT ; /* should not matter, as all cParams are presumed properly defined */
assert ( ! ZSTD_checkCParams ( cParams ) ) ;
cctxParams . fParams . contentSizeFlag = 1 ;
2017-08-21 17:09:06 +00:00
return cctxParams ;
}
2017-08-23 19:03:30 +00:00
static ZSTD_CCtx_params * ZSTD_createCCtxParams_advanced (
ZSTD_customMem customMem )
2017-08-18 01:45:04 +00:00
{
2017-08-23 19:03:30 +00:00
ZSTD_CCtx_params * params ;
if ( ! customMem . customAlloc ^ ! customMem . customFree ) return NULL ;
params = ( ZSTD_CCtx_params * ) ZSTD_calloc (
sizeof ( ZSTD_CCtx_params ) , customMem ) ;
2017-08-18 01:45:04 +00:00
if ( ! params ) { return NULL ; }
2017-08-23 19:03:30 +00:00
params - > customMem = customMem ;
2017-08-18 02:30:22 +00:00
params - > compressionLevel = ZSTD_CLEVEL_DEFAULT ;
2018-03-19 21:41:23 +00:00
params - > fParams . contentSizeFlag = 1 ;
2017-08-18 01:45:04 +00:00
return params ;
}
2017-08-23 19:03:30 +00:00
ZSTD_CCtx_params * ZSTD_createCCtxParams ( void )
{
return ZSTD_createCCtxParams_advanced ( ZSTD_defaultCMem ) ;
}
size_t ZSTD_freeCCtxParams ( ZSTD_CCtx_params * params )
{
if ( params = = NULL ) { return 0 ; }
ZSTD_free ( params , params - > customMem ) ;
return 0 ;
}
2018-03-19 22:07:26 +00:00
size_t ZSTD_CCtxParams_reset ( ZSTD_CCtx_params * params )
2017-08-21 05:55:07 +00:00
{
2018-03-19 22:07:26 +00:00
return ZSTD_CCtxParams_init ( params , ZSTD_CLEVEL_DEFAULT ) ;
2017-08-21 05:55:07 +00:00
}
2018-03-19 22:07:26 +00:00
size_t ZSTD_CCtxParams_init ( ZSTD_CCtx_params * cctxParams , int compressionLevel ) {
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( ! cctxParams , GENERIC ) ;
2017-08-30 21:36:54 +00:00
memset ( cctxParams , 0 , sizeof ( * cctxParams ) ) ;
2017-08-29 02:25:17 +00:00
cctxParams - > compressionLevel = compressionLevel ;
2018-03-19 21:41:23 +00:00
cctxParams - > fParams . contentSizeFlag = 1 ;
2017-08-29 02:25:17 +00:00
return 0 ;
2017-08-25 20:23:16 +00:00
}
2018-03-19 22:07:26 +00:00
size_t ZSTD_CCtxParams_init_advanced ( ZSTD_CCtx_params * cctxParams , ZSTD_parameters params )
2017-08-18 01:45:04 +00:00
{
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( ! cctxParams , GENERIC ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_checkCParams ( params . cParams ) ) ;
2017-08-30 21:36:54 +00:00
memset ( cctxParams , 0 , sizeof ( * cctxParams ) ) ;
2017-08-21 08:59:08 +00:00
cctxParams - > cParams = params . cParams ;
cctxParams - > fParams = params . fParams ;
2018-03-19 21:41:23 +00:00
cctxParams - > compressionLevel = ZSTD_CLEVEL_DEFAULT ; /* should not matter, as all cParams are presumed properly defined */
assert ( ! ZSTD_checkCParams ( params . cParams ) ) ;
2017-08-18 01:45:04 +00:00
return 0 ;
}
2018-03-19 21:41:23 +00:00
/* ZSTD_assignParamsToCCtxParams() :
* params is presumed valid at this stage */
2017-08-22 21:53:13 +00:00
static ZSTD_CCtx_params ZSTD_assignParamsToCCtxParams (
2019-09-05 09:58:30 +00:00
const ZSTD_CCtx_params * cctxParams , ZSTD_parameters params )
2017-08-22 21:53:13 +00:00
{
2019-09-05 09:58:30 +00:00
ZSTD_CCtx_params ret = * cctxParams ;
2017-08-22 21:53:13 +00:00
ret . cParams = params . cParams ;
ret . fParams = params . fParams ;
2018-03-19 21:41:23 +00:00
ret . compressionLevel = ZSTD_CLEVEL_DEFAULT ; /* should not matter, as all cParams are presumed properly defined */
assert ( ! ZSTD_checkCParams ( params . cParams ) ) ;
2017-08-22 21:53:13 +00:00
return ret ;
2017-05-12 22:59:48 +00:00
}
2018-11-20 22:56:07 +00:00
ZSTD_bounds ZSTD_cParam_getBounds ( ZSTD_cParameter param )
{
ZSTD_bounds bounds = { 0 , 0 , 0 } ;
switch ( param )
{
2018-12-06 01:26:02 +00:00
case ZSTD_c_compressionLevel :
2018-11-20 22:56:07 +00:00
bounds . lowerBound = ZSTD_minCLevel ( ) ;
bounds . upperBound = ZSTD_maxCLevel ( ) ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_windowLog :
2018-11-20 22:56:07 +00:00
bounds . lowerBound = ZSTD_WINDOWLOG_MIN ;
bounds . upperBound = ZSTD_WINDOWLOG_MAX ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_hashLog :
2018-11-20 22:56:07 +00:00
bounds . lowerBound = ZSTD_HASHLOG_MIN ;
bounds . upperBound = ZSTD_HASHLOG_MAX ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_chainLog :
2018-11-20 22:56:07 +00:00
bounds . lowerBound = ZSTD_CHAINLOG_MIN ;
bounds . upperBound = ZSTD_CHAINLOG_MAX ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_searchLog :
2018-11-20 22:56:07 +00:00
bounds . lowerBound = ZSTD_SEARCHLOG_MIN ;
bounds . upperBound = ZSTD_SEARCHLOG_MAX ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_minMatch :
2018-11-20 22:56:07 +00:00
bounds . lowerBound = ZSTD_MINMATCH_MIN ;
bounds . upperBound = ZSTD_MINMATCH_MAX ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_targetLength :
2018-11-20 23:13:27 +00:00
bounds . lowerBound = ZSTD_TARGETLENGTH_MIN ;
bounds . upperBound = ZSTD_TARGETLENGTH_MAX ;
return bounds ;
2018-12-06 23:00:52 +00:00
case ZSTD_c_strategy :
2018-12-07 00:51:17 +00:00
bounds . lowerBound = ZSTD_STRATEGY_MIN ;
bounds . upperBound = ZSTD_STRATEGY_MAX ;
2018-11-20 23:13:27 +00:00
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_contentSizeFlag :
2018-11-20 23:13:27 +00:00
bounds . lowerBound = 0 ;
bounds . upperBound = 1 ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_checksumFlag :
2018-11-20 23:13:27 +00:00
bounds . lowerBound = 0 ;
bounds . upperBound = 1 ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_dictIDFlag :
2018-11-20 23:13:27 +00:00
bounds . lowerBound = 0 ;
bounds . upperBound = 1 ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_nbWorkers :
2018-11-20 23:13:27 +00:00
bounds . lowerBound = 0 ;
# ifdef ZSTD_MULTITHREAD
bounds . upperBound = ZSTDMT_NBWORKERS_MAX ;
# else
bounds . upperBound = 0 ;
# endif
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_jobSize :
2018-11-21 00:06:00 +00:00
bounds . lowerBound = 0 ;
# ifdef ZSTD_MULTITHREAD
bounds . upperBound = ZSTDMT_JOBSIZE_MAX ;
# else
bounds . upperBound = 0 ;
# endif
2018-11-21 00:09:33 +00:00
return bounds ;
2018-11-21 00:06:00 +00:00
2018-12-12 00:55:33 +00:00
case ZSTD_c_overlapLog :
2018-11-21 00:06:00 +00:00
bounds . lowerBound = ZSTD_OVERLAPLOG_MIN ;
bounds . upperBound = ZSTD_OVERLAPLOG_MAX ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_enableLongDistanceMatching :
2018-11-21 00:06:00 +00:00
bounds . lowerBound = 0 ;
bounds . upperBound = 1 ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmHashLog :
2018-11-21 00:06:00 +00:00
bounds . lowerBound = ZSTD_LDM_HASHLOG_MIN ;
bounds . upperBound = ZSTD_LDM_HASHLOG_MAX ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmMinMatch :
2018-11-21 00:06:00 +00:00
bounds . lowerBound = ZSTD_LDM_MINMATCH_MIN ;
bounds . upperBound = ZSTD_LDM_MINMATCH_MAX ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmBucketSizeLog :
2018-11-21 00:06:00 +00:00
bounds . lowerBound = ZSTD_LDM_BUCKETSIZELOG_MIN ;
bounds . upperBound = ZSTD_LDM_BUCKETSIZELOG_MAX ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmHashRateLog :
2018-11-21 22:36:57 +00:00
bounds . lowerBound = ZSTD_LDM_HASHRATELOG_MIN ;
bounds . upperBound = ZSTD_LDM_HASHRATELOG_MAX ;
2018-11-21 00:06:00 +00:00
return bounds ;
2018-11-20 23:13:27 +00:00
/* experimental parameters */
2018-12-06 01:26:02 +00:00
case ZSTD_c_rsyncable :
2018-11-21 00:06:00 +00:00
bounds . lowerBound = 0 ;
bounds . upperBound = 1 ;
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_forceMaxWindow :
2018-11-20 23:13:27 +00:00
bounds . lowerBound = 0 ;
bounds . upperBound = 1 ;
return bounds ;
2018-11-21 00:06:00 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_format :
2018-12-07 00:51:17 +00:00
ZSTD_STATIC_ASSERT ( ZSTD_f_zstd1 < ZSTD_f_zstd1_magicless ) ;
bounds . lowerBound = ZSTD_f_zstd1 ;
bounds . upperBound = ZSTD_f_zstd1_magicless ; /* note : how to ensure at compile time that this is the highest value enum ? */
2018-11-21 00:06:00 +00:00
return bounds ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_forceAttachDict :
2018-12-07 00:51:17 +00:00
ZSTD_STATIC_ASSERT ( ZSTD_dictDefaultAttach < ZSTD_dictForceCopy ) ;
2018-12-06 23:00:52 +00:00
bounds . lowerBound = ZSTD_dictDefaultAttach ;
2018-12-07 00:51:17 +00:00
bounds . upperBound = ZSTD_dictForceCopy ; /* note : how to ensure at compile time that this is the highest value enum ? */
2018-11-21 00:06:00 +00:00
return bounds ;
2019-02-13 22:59:22 +00:00
case ZSTD_c_literalCompressionMode :
ZSTD_STATIC_ASSERT ( ZSTD_lcm_auto < ZSTD_lcm_huffman & & ZSTD_lcm_huffman < ZSTD_lcm_uncompressed ) ;
bounds . lowerBound = ZSTD_lcm_auto ;
bounds . upperBound = ZSTD_lcm_uncompressed ;
return bounds ;
2019-06-24 20:40:52 +00:00
case ZSTD_c_targetCBlockSize :
bounds . lowerBound = ZSTD_TARGETCBLOCKSIZE_MIN ;
bounds . upperBound = ZSTD_TARGETCBLOCKSIZE_MAX ;
return bounds ;
2019-08-19 15:52:08 +00:00
case ZSTD_c_srcSizeHint :
2019-08-20 20:06:15 +00:00
bounds . lowerBound = ZSTD_SRCSIZEHINT_MIN ;
2019-08-19 15:52:08 +00:00
bounds . upperBound = ZSTD_SRCSIZEHINT_MAX ;
return bounds ;
2018-11-20 22:56:07 +00:00
default :
{ ZSTD_bounds const boundError = { ERROR ( parameter_unsupported ) , 0 , 0 } ;
return boundError ;
}
}
}
2019-02-16 00:15:20 +00:00
/* ZSTD_cParam_clampBounds:
* Clamps the value into the bounded range .
*/
static size_t ZSTD_cParam_clampBounds ( ZSTD_cParameter cParam , int * value )
{
ZSTD_bounds const bounds = ZSTD_cParam_getBounds ( cParam ) ;
if ( ZSTD_isError ( bounds . error ) ) return bounds . error ;
if ( * value < bounds . lowerBound ) * value = bounds . lowerBound ;
if ( * value > bounds . upperBound ) * value = bounds . upperBound ;
return 0 ;
}
2019-01-28 22:05:18 +00:00
# define BOUNDCHECK(cParam, val) { \
RETURN_ERROR_IF ( ! ZSTD_cParam_withinBounds ( cParam , val ) , \
parameter_outOfBound ) ; \
}
2017-06-20 23:09:11 +00:00
2018-02-02 22:24:56 +00:00
static int ZSTD_isUpdateAuthorized ( ZSTD_cParameter param )
{
switch ( param )
{
2018-12-06 01:26:02 +00:00
case ZSTD_c_compressionLevel :
case ZSTD_c_hashLog :
case ZSTD_c_chainLog :
case ZSTD_c_searchLog :
case ZSTD_c_minMatch :
case ZSTD_c_targetLength :
2018-12-06 23:00:52 +00:00
case ZSTD_c_strategy :
2018-02-02 22:24:56 +00:00
return 1 ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_format :
case ZSTD_c_windowLog :
case ZSTD_c_contentSizeFlag :
case ZSTD_c_checksumFlag :
case ZSTD_c_dictIDFlag :
case ZSTD_c_forceMaxWindow :
case ZSTD_c_nbWorkers :
case ZSTD_c_jobSize :
2018-12-12 00:55:33 +00:00
case ZSTD_c_overlapLog :
2018-12-06 01:26:02 +00:00
case ZSTD_c_rsyncable :
case ZSTD_c_enableLongDistanceMatching :
case ZSTD_c_ldmHashLog :
case ZSTD_c_ldmMinMatch :
case ZSTD_c_ldmBucketSizeLog :
case ZSTD_c_ldmHashRateLog :
case ZSTD_c_forceAttachDict :
2019-02-15 18:29:03 +00:00
case ZSTD_c_literalCompressionMode :
2019-06-24 20:40:52 +00:00
case ZSTD_c_targetCBlockSize :
2019-08-19 15:52:08 +00:00
case ZSTD_c_srcSizeHint :
2018-02-02 22:24:56 +00:00
default :
return 0 ;
}
}
2018-11-20 19:53:01 +00:00
size_t ZSTD_CCtx_setParameter ( ZSTD_CCtx * cctx , ZSTD_cParameter param , int value )
2017-05-12 22:31:53 +00:00
{
2018-11-20 19:53:01 +00:00
DEBUGLOG ( 4 , " ZSTD_CCtx_setParameter (%i, %i) " , ( int ) param , value ) ;
2018-02-02 22:24:56 +00:00
if ( cctx - > streamStage ! = zcss_init ) {
if ( ZSTD_isUpdateAuthorized ( param ) ) {
cctx - > cParamsChanged = 1 ;
} else {
2019-01-28 22:05:18 +00:00
RETURN_ERROR ( stage_wrong ) ;
2018-02-02 22:24:56 +00:00
} }
2017-05-12 22:31:53 +00:00
switch ( param )
{
2019-03-13 22:23:24 +00:00
case ZSTD_c_nbWorkers :
RETURN_ERROR_IF ( ( value ! = 0 ) & & cctx - > staticSize , parameter_unsupported ,
" MT not compatible with static alloc " ) ;
2019-02-16 00:15:20 +00:00
break ;
2017-08-21 08:59:08 +00:00
2019-03-13 22:23:24 +00:00
case ZSTD_c_compressionLevel :
2018-12-06 01:26:02 +00:00
case ZSTD_c_windowLog :
case ZSTD_c_hashLog :
case ZSTD_c_chainLog :
case ZSTD_c_searchLog :
case ZSTD_c_minMatch :
case ZSTD_c_targetLength :
2018-12-06 23:00:52 +00:00
case ZSTD_c_strategy :
2019-02-16 00:15:20 +00:00
case ZSTD_c_ldmHashRateLog :
case ZSTD_c_format :
2018-12-06 01:26:02 +00:00
case ZSTD_c_contentSizeFlag :
case ZSTD_c_checksumFlag :
case ZSTD_c_dictIDFlag :
2019-02-16 00:15:20 +00:00
case ZSTD_c_forceMaxWindow :
2018-12-06 01:26:02 +00:00
case ZSTD_c_forceAttachDict :
2019-02-13 22:59:22 +00:00
case ZSTD_c_literalCompressionMode :
2018-12-06 01:26:02 +00:00
case ZSTD_c_jobSize :
2018-12-12 00:55:33 +00:00
case ZSTD_c_overlapLog :
2018-12-06 01:26:02 +00:00
case ZSTD_c_rsyncable :
case ZSTD_c_enableLongDistanceMatching :
case ZSTD_c_ldmHashLog :
case ZSTD_c_ldmMinMatch :
case ZSTD_c_ldmBucketSizeLog :
2019-06-24 20:40:52 +00:00
case ZSTD_c_targetCBlockSize :
2019-08-19 15:52:08 +00:00
case ZSTD_c_srcSizeHint :
2019-02-16 00:15:20 +00:00
break ;
2017-09-01 21:52:51 +00:00
2019-01-28 22:05:18 +00:00
default : RETURN_ERROR ( parameter_unsupported ) ;
2017-01-26 00:25:38 +00:00
}
2019-02-20 01:41:56 +00:00
return ZSTD_CCtxParams_setParameter ( & cctx - > requestedParams , param , value ) ;
2017-01-26 00:25:38 +00:00
}
2019-02-20 01:41:56 +00:00
size_t ZSTD_CCtxParams_setParameter ( ZSTD_CCtx_params * CCtxParams ,
ZSTD_cParameter param , int value )
2017-08-18 02:30:22 +00:00
{
2019-02-20 01:41:56 +00:00
DEBUGLOG ( 4 , " ZSTD_CCtxParams_setParameter (%i, %i) " , ( int ) param , value ) ;
2017-08-18 02:30:22 +00:00
switch ( param )
{
2018-12-06 01:26:02 +00:00
case ZSTD_c_format :
2018-12-07 00:51:17 +00:00
BOUNDCHECK ( ZSTD_c_format , value ) ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
CCtxParams - > format = ( ZSTD_format_e ) value ;
return ( size_t ) CCtxParams - > format ;
2017-09-24 22:57:29 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_compressionLevel : {
2019-02-16 00:15:20 +00:00
FORWARD_IF_ERROR ( ZSTD_cParam_clampBounds ( param , & value ) ) ;
if ( value ) { /* 0 : does not change current level */
CCtxParams - > compressionLevel = value ;
2018-03-12 02:56:48 +00:00
}
if ( CCtxParams - > compressionLevel > = 0 ) return CCtxParams - > compressionLevel ;
return 0 ; /* return type (size_t) cannot represent negative values */
}
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_windowLog :
2018-11-21 00:06:00 +00:00
if ( value ! = 0 ) /* 0 => use default */
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_windowLog , value ) ;
2018-03-19 21:41:23 +00:00
CCtxParams - > cParams . windowLog = value ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return CCtxParams - > cParams . windowLog ;
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_hashLog :
2018-11-21 00:06:00 +00:00
if ( value ! = 0 ) /* 0 => use default */
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_hashLog , value ) ;
2018-03-19 21:41:23 +00:00
CCtxParams - > cParams . hashLog = value ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return CCtxParams - > cParams . hashLog ;
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_chainLog :
2018-11-21 00:06:00 +00:00
if ( value ! = 0 ) /* 0 => use default */
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_chainLog , value ) ;
2018-03-19 21:41:23 +00:00
CCtxParams - > cParams . chainLog = value ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return CCtxParams - > cParams . chainLog ;
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_searchLog :
2018-11-21 00:06:00 +00:00
if ( value ! = 0 ) /* 0 => use default */
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_searchLog , value ) ;
2018-03-19 21:41:23 +00:00
CCtxParams - > cParams . searchLog = value ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return value ;
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_minMatch :
2018-11-21 00:06:00 +00:00
if ( value ! = 0 ) /* 0 => use default */
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_minMatch , value ) ;
2018-11-20 22:56:07 +00:00
CCtxParams - > cParams . minMatch = value ;
return CCtxParams - > cParams . minMatch ;
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_targetLength :
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_targetLength , value ) ;
2018-03-19 21:41:23 +00:00
CCtxParams - > cParams . targetLength = value ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return CCtxParams - > cParams . targetLength ;
2017-05-12 22:31:53 +00:00
2018-12-06 23:00:52 +00:00
case ZSTD_c_strategy :
2018-11-21 00:06:00 +00:00
if ( value ! = 0 ) /* 0 => use default */
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_strategy , value ) ;
2018-03-19 21:41:23 +00:00
CCtxParams - > cParams . strategy = ( ZSTD_strategy ) value ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return ( size_t ) CCtxParams - > cParams . strategy ;
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_contentSizeFlag :
2017-06-01 16:44:54 +00:00
/* Content size written in frame header _when known_ (default:1) */
2018-11-21 00:06:00 +00:00
DEBUGLOG ( 4 , " set content size flag = %u " , ( value ! = 0 ) ) ;
CCtxParams - > fParams . contentSizeFlag = value ! = 0 ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return CCtxParams - > fParams . contentSizeFlag ;
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_checksumFlag :
2017-06-01 16:44:54 +00:00
/* A 32-bits content checksum will be calculated and written at end of frame (default:0) */
2018-11-21 00:06:00 +00:00
CCtxParams - > fParams . checksumFlag = value ! = 0 ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return CCtxParams - > fParams . checksumFlag ;
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_dictIDFlag : /* When applicable, dictionary's dictID is provided in frame header (default:1) */
2018-11-21 00:06:00 +00:00
DEBUGLOG ( 4 , " set dictIDFlag = %u " , ( value ! = 0 ) ) ;
2018-03-19 21:41:23 +00:00
CCtxParams - > fParams . noDictIDFlag = ! value ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return ! CCtxParams - > fParams . noDictIDFlag ;
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_forceMaxWindow :
2018-11-21 00:06:00 +00:00
CCtxParams - > forceWindow = ( value ! = 0 ) ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return CCtxParams - > forceWindow ;
2017-06-21 18:50:33 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_forceAttachDict : {
2018-11-12 22:48:42 +00:00
const ZSTD_dictAttachPref_e pref = ( ZSTD_dictAttachPref_e ) value ;
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_forceAttachDict , pref ) ;
2018-11-12 20:52:31 +00:00
CCtxParams - > attachDictPref = pref ;
2018-06-21 21:02:50 +00:00
return CCtxParams - > attachDictPref ;
2018-11-12 20:07:57 +00:00
}
2018-06-21 21:02:50 +00:00
2019-02-13 22:59:22 +00:00
case ZSTD_c_literalCompressionMode : {
const ZSTD_literalCompressionMode_e lcm = ( ZSTD_literalCompressionMode_e ) value ;
BOUNDCHECK ( ZSTD_c_literalCompressionMode , lcm ) ;
CCtxParams - > literalCompressionMode = lcm ;
return CCtxParams - > literalCompressionMode ;
}
2018-12-06 01:26:02 +00:00
case ZSTD_c_nbWorkers :
2017-06-02 01:44:06 +00:00
# ifndef ZSTD_MULTITHREAD
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( value ! = 0 , parameter_unsupported , " not compiled with multithreading " ) ;
2018-02-02 03:29:30 +00:00
return 0 ;
2018-01-17 00:15:47 +00:00
# else
2019-02-16 00:15:20 +00:00
FORWARD_IF_ERROR ( ZSTD_cParam_clampBounds ( param , & value ) ) ;
CCtxParams - > nbWorkers = value ;
return CCtxParams - > nbWorkers ;
2018-01-17 00:15:47 +00:00
# endif
2018-12-06 01:26:02 +00:00
case ZSTD_c_jobSize :
2017-09-11 21:09:34 +00:00
# ifndef ZSTD_MULTITHREAD
2019-02-16 00:15:20 +00:00
RETURN_ERROR_IF ( value ! = 0 , parameter_unsupported , " not compiled with multithreading " ) ;
return 0 ;
2017-09-11 21:09:34 +00:00
# else
2019-02-16 00:15:20 +00:00
/* Adjust to the minimum non-default value. */
if ( value ! = 0 & & value < ZSTDMT_JOBSIZE_MIN )
value = ZSTDMT_JOBSIZE_MIN ;
FORWARD_IF_ERROR ( ZSTD_cParam_clampBounds ( param , & value ) ) ;
assert ( value > = 0 ) ;
CCtxParams - > jobSize = value ;
return CCtxParams - > jobSize ;
2017-09-11 21:09:34 +00:00
# endif
2017-06-02 01:44:06 +00:00
2018-12-12 00:55:33 +00:00
case ZSTD_c_overlapLog :
2017-09-11 21:09:34 +00:00
# ifndef ZSTD_MULTITHREAD
2019-02-16 00:15:20 +00:00
RETURN_ERROR_IF ( value ! = 0 , parameter_unsupported , " not compiled with multithreading " ) ;
return 0 ;
2017-09-11 21:09:34 +00:00
# else
2019-02-16 00:15:20 +00:00
FORWARD_IF_ERROR ( ZSTD_cParam_clampBounds ( ZSTD_c_overlapLog , & value ) ) ;
CCtxParams - > overlapLog = value ;
return CCtxParams - > overlapLog ;
2017-09-11 21:09:34 +00:00
# endif
2017-05-12 22:31:53 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_rsyncable :
2018-11-14 20:15:20 +00:00
# ifndef ZSTD_MULTITHREAD
2019-02-16 00:15:20 +00:00
RETURN_ERROR_IF ( value ! = 0 , parameter_unsupported , " not compiled with multithreading " ) ;
return 0 ;
2018-11-14 20:15:20 +00:00
# else
2019-02-16 00:15:20 +00:00
FORWARD_IF_ERROR ( ZSTD_cParam_clampBounds ( ZSTD_c_overlapLog , & value ) ) ;
CCtxParams - > rsyncable = value ;
return CCtxParams - > rsyncable ;
2018-11-14 20:15:20 +00:00
# endif
2018-12-06 01:26:02 +00:00
case ZSTD_c_enableLongDistanceMatching :
2018-11-21 00:06:00 +00:00
CCtxParams - > ldmParams . enableLdm = ( value ! = 0 ) ;
2018-03-19 21:41:23 +00:00
return CCtxParams - > ldmParams . enableLdm ;
2017-09-01 19:24:59 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmHashLog :
2018-11-21 00:06:00 +00:00
if ( value ! = 0 ) /* 0 ==> auto */
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_ldmHashLog , value ) ;
2018-03-19 18:07:04 +00:00
CCtxParams - > ldmParams . hashLog = value ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return CCtxParams - > ldmParams . hashLog ;
2017-09-01 19:24:59 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmMinMatch :
2018-11-21 00:06:00 +00:00
if ( value ! = 0 ) /* 0 ==> default */
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_ldmMinMatch , value ) ;
2018-03-19 18:07:04 +00:00
CCtxParams - > ldmParams . minMatchLength = value ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
return CCtxParams - > ldmParams . minMatchLength ;
2017-07-28 22:51:33 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmBucketSizeLog :
2018-11-21 00:06:00 +00:00
if ( value ! = 0 ) /* 0 ==> default */
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_ldmBucketSizeLog , value ) ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
CCtxParams - > ldmParams . bucketSizeLog = value ;
2018-03-19 21:41:23 +00:00
return CCtxParams - > ldmParams . bucketSizeLog ;
2017-09-03 04:10:36 +00:00
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmHashRateLog :
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( value > ZSTD_WINDOWLOG_MAX - ZSTD_HASHLOG_MIN ,
parameter_outOfBound ) ;
2018-11-21 22:36:57 +00:00
CCtxParams - > ldmParams . hashRateLog = value ;
return CCtxParams - > ldmParams . hashRateLog ;
2017-09-01 21:52:51 +00:00
2019-06-24 20:40:52 +00:00
case ZSTD_c_targetCBlockSize :
if ( value ! = 0 ) /* 0 ==> default */
BOUNDCHECK ( ZSTD_c_targetCBlockSize , value ) ;
CCtxParams - > targetCBlockSize = value ;
return CCtxParams - > targetCBlockSize ;
2019-08-19 15:52:08 +00:00
case ZSTD_c_srcSizeHint :
if ( value ! = 0 ) /* 0 ==> default */
BOUNDCHECK ( ZSTD_c_srcSizeHint , value ) ;
CCtxParams - > srcSizeHint = value ;
return CCtxParams - > srcSizeHint ;
2019-01-28 22:05:18 +00:00
default : RETURN_ERROR ( parameter_unsupported , " unknown parameter " ) ;
2017-01-26 00:25:38 +00:00
}
}
2018-11-21 23:37:26 +00:00
size_t ZSTD_CCtx_getParameter ( ZSTD_CCtx * cctx , ZSTD_cParameter param , int * value )
2018-04-12 18:50:12 +00:00
{
2019-02-20 01:41:56 +00:00
return ZSTD_CCtxParams_getParameter ( & cctx - > requestedParams , param , value ) ;
2018-04-12 18:50:12 +00:00
}
2019-02-20 01:41:56 +00:00
size_t ZSTD_CCtxParams_getParameter (
2018-11-21 23:37:26 +00:00
ZSTD_CCtx_params * CCtxParams , ZSTD_cParameter param , int * value )
2018-04-12 18:50:12 +00:00
{
switch ( param )
{
2018-12-06 01:26:02 +00:00
case ZSTD_c_format :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > format ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_compressionLevel :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > compressionLevel ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_windowLog :
2019-06-21 23:19:21 +00:00
* value = ( int ) CCtxParams - > cParams . windowLog ;
2018-04-12 18:50:12 +00:00
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_hashLog :
2019-06-21 23:19:21 +00:00
* value = ( int ) CCtxParams - > cParams . hashLog ;
2018-04-12 18:50:12 +00:00
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_chainLog :
2019-06-21 23:19:21 +00:00
* value = ( int ) CCtxParams - > cParams . chainLog ;
2018-04-12 18:50:12 +00:00
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_searchLog :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > cParams . searchLog ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_minMatch :
2018-11-20 22:56:07 +00:00
* value = CCtxParams - > cParams . minMatch ;
2018-04-12 18:50:12 +00:00
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_targetLength :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > cParams . targetLength ;
break ;
2018-12-06 23:00:52 +00:00
case ZSTD_c_strategy :
2018-04-12 18:50:12 +00:00
* value = ( unsigned ) CCtxParams - > cParams . strategy ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_contentSizeFlag :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > fParams . contentSizeFlag ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_checksumFlag :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > fParams . checksumFlag ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_dictIDFlag :
2018-04-12 18:50:12 +00:00
* value = ! CCtxParams - > fParams . noDictIDFlag ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_forceMaxWindow :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > forceWindow ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_forceAttachDict :
2018-06-21 21:02:50 +00:00
* value = CCtxParams - > attachDictPref ;
break ;
2019-02-13 22:59:22 +00:00
case ZSTD_c_literalCompressionMode :
* value = CCtxParams - > literalCompressionMode ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_nbWorkers :
2018-04-12 18:50:12 +00:00
# ifndef ZSTD_MULTITHREAD
assert ( CCtxParams - > nbWorkers = = 0 ) ;
# endif
* value = CCtxParams - > nbWorkers ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_jobSize :
2018-04-12 18:50:12 +00:00
# ifndef ZSTD_MULTITHREAD
2019-01-28 22:05:18 +00:00
RETURN_ERROR ( parameter_unsupported , " not compiled with multithreading " ) ;
2018-04-12 18:50:12 +00:00
# else
2018-12-13 20:14:36 +00:00
assert ( CCtxParams - > jobSize < = INT_MAX ) ;
* value = ( int ) CCtxParams - > jobSize ;
2018-04-12 18:50:12 +00:00
break ;
# endif
2018-12-12 00:55:33 +00:00
case ZSTD_c_overlapLog :
2018-04-12 18:50:12 +00:00
# ifndef ZSTD_MULTITHREAD
2019-01-28 22:05:18 +00:00
RETURN_ERROR ( parameter_unsupported , " not compiled with multithreading " ) ;
2018-04-12 18:50:12 +00:00
# else
2018-12-12 01:41:42 +00:00
* value = CCtxParams - > overlapLog ;
2018-04-12 18:50:12 +00:00
break ;
2018-11-14 20:15:20 +00:00
# endif
2018-12-06 01:26:02 +00:00
case ZSTD_c_rsyncable :
2018-11-14 20:15:20 +00:00
# ifndef ZSTD_MULTITHREAD
2019-01-28 22:05:18 +00:00
RETURN_ERROR ( parameter_unsupported , " not compiled with multithreading " ) ;
2018-11-14 20:15:20 +00:00
# else
* value = CCtxParams - > rsyncable ;
break ;
2018-04-12 18:50:12 +00:00
# endif
2018-12-06 01:26:02 +00:00
case ZSTD_c_enableLongDistanceMatching :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > ldmParams . enableLdm ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmHashLog :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > ldmParams . hashLog ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmMinMatch :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > ldmParams . minMatchLength ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmBucketSizeLog :
2018-04-12 18:50:12 +00:00
* value = CCtxParams - > ldmParams . bucketSizeLog ;
break ;
2018-12-06 01:26:02 +00:00
case ZSTD_c_ldmHashRateLog :
2018-11-21 22:36:57 +00:00
* value = CCtxParams - > ldmParams . hashRateLog ;
2018-04-12 18:50:12 +00:00
break ;
2019-06-24 20:40:52 +00:00
case ZSTD_c_targetCBlockSize :
* value = ( int ) CCtxParams - > targetCBlockSize ;
break ;
2019-08-19 15:52:08 +00:00
case ZSTD_c_srcSizeHint :
* value = ( int ) CCtxParams - > srcSizeHint ;
2019-08-19 19:32:43 +00:00
break ;
2019-01-28 22:05:18 +00:00
default : RETURN_ERROR ( parameter_unsupported , " unknown parameter " ) ;
2018-04-12 18:50:12 +00:00
}
return 0 ;
}
2017-12-02 05:17:09 +00:00
/** ZSTD_CCtx_setParametersUsingCCtxParams() :
* just applies ` params ` into ` cctx `
* no action is performed , parameters are merely stored .
2018-02-02 00:13:31 +00:00
* If ZSTDMT is enabled , parameters are pushed to cctx - > mtctx .
* This is possible even if a compression is ongoing .
* In which case , new parameters will be applied on the fly , starting with next compression job .
2017-08-21 08:59:08 +00:00
*/
2017-08-30 01:03:06 +00:00
size_t ZSTD_CCtx_setParametersUsingCCtxParams (
2017-11-30 01:01:14 +00:00
ZSTD_CCtx * cctx , const ZSTD_CCtx_params * params )
2017-08-18 18:20:08 +00:00
{
2018-06-01 22:18:32 +00:00
DEBUGLOG ( 4 , " ZSTD_CCtx_setParametersUsingCCtxParams " ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > streamStage ! = zcss_init , stage_wrong ) ;
RETURN_ERROR_IF ( cctx - > cdict , stage_wrong ) ;
2017-08-18 20:01:55 +00:00
2017-11-30 00:13:05 +00:00
cctx - > requestedParams = * params ;
2017-08-18 18:20:08 +00:00
return 0 ;
}
2017-05-12 22:31:53 +00:00
ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize ( ZSTD_CCtx * cctx , unsigned long long pledgedSrcSize )
{
2017-12-12 22:01:54 +00:00
DEBUGLOG ( 4 , " ZSTD_CCtx_setPledgedSrcSize to %u bytes " , ( U32 ) pledgedSrcSize ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > streamStage ! = zcss_init , stage_wrong ) ;
2017-06-16 20:29:17 +00:00
cctx - > pledgedSrcSizePlusOne = pledgedSrcSize + 1 ;
2017-05-12 22:31:53 +00:00
return 0 ;
}
2019-03-21 22:17:41 +00:00
/**
* Initializes the local dict using the requested parameters .
* NOTE : This does not use the pledged src size , because it may be used for more
* than one compression .
*/
static size_t ZSTD_initLocalDict ( ZSTD_CCtx * cctx )
{
ZSTD_localDict * const dl = & cctx - > localDict ;
ZSTD_compressionParameters const cParams = ZSTD_getCParamsFromCCtxParams (
& cctx - > requestedParams , 0 , dl - > dictSize ) ;
if ( dl - > dict = = NULL ) {
/* No local dictionary. */
assert ( dl - > dictBuffer = = NULL ) ;
assert ( dl - > cdict = = NULL ) ;
assert ( dl - > dictSize = = 0 ) ;
return 0 ;
}
if ( dl - > cdict ! = NULL ) {
assert ( cctx - > cdict = = dl - > cdict ) ;
/* Local dictionary already initialized. */
return 0 ;
}
assert ( dl - > dictSize > 0 ) ;
assert ( cctx - > cdict = = NULL ) ;
assert ( cctx - > prefixDict . dict = = NULL ) ;
dl - > cdict = ZSTD_createCDict_advanced (
dl - > dict ,
dl - > dictSize ,
ZSTD_dlm_byRef ,
dl - > dictContentType ,
cParams ,
cctx - > customMem ) ;
RETURN_ERROR_IF ( ! dl - > cdict , memory_allocation ) ;
cctx - > cdict = dl - > cdict ;
return 0 ;
}
2017-08-29 22:10:42 +00:00
size_t ZSTD_CCtx_loadDictionary_advanced (
ZSTD_CCtx * cctx , const void * dict , size_t dictSize ,
2018-03-20 22:13:14 +00:00
ZSTD_dictLoadMethod_e dictLoadMethod , ZSTD_dictContentType_e dictContentType )
2017-05-18 01:36:15 +00:00
{
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > streamStage ! = zcss_init , stage_wrong ) ;
RETURN_ERROR_IF ( cctx - > staticSize , memory_allocation ,
" no malloc for static CCtx " ) ;
2017-12-12 22:01:54 +00:00
DEBUGLOG ( 4 , " ZSTD_CCtx_loadDictionary_advanced (size: %u) " , ( U32 ) dictSize ) ;
2019-03-21 22:17:41 +00:00
ZSTD_clearAllDicts ( cctx ) ; /* in case one already exists */
if ( dict = = NULL | | dictSize = = 0 ) /* no dictionary mode */
return 0 ;
if ( dictLoadMethod = = ZSTD_dlm_byRef ) {
cctx - > localDict . dict = dict ;
2017-05-18 01:36:15 +00:00
} else {
2019-03-21 22:17:41 +00:00
void * dictBuffer = ZSTD_malloc ( dictSize , cctx - > customMem ) ;
RETURN_ERROR_IF ( ! dictBuffer , memory_allocation ) ;
memcpy ( dictBuffer , dict , dictSize ) ;
cctx - > localDict . dictBuffer = dictBuffer ;
cctx - > localDict . dict = dictBuffer ;
2017-05-18 01:36:15 +00:00
}
2019-03-21 22:17:41 +00:00
cctx - > localDict . dictSize = dictSize ;
cctx - > localDict . dictContentType = dictContentType ;
2017-05-18 01:36:15 +00:00
return 0 ;
}
2017-08-25 17:48:07 +00:00
ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary_byReference (
ZSTD_CCtx * cctx , const void * dict , size_t dictSize )
{
2017-08-29 22:10:42 +00:00
return ZSTD_CCtx_loadDictionary_advanced (
2018-03-20 22:13:14 +00:00
cctx , dict , dictSize , ZSTD_dlm_byRef , ZSTD_dct_auto ) ;
2017-08-25 17:48:07 +00:00
}
ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary ( ZSTD_CCtx * cctx , const void * dict , size_t dictSize )
{
2017-08-29 22:10:42 +00:00
return ZSTD_CCtx_loadDictionary_advanced (
2018-03-20 22:13:14 +00:00
cctx , dict , dictSize , ZSTD_dlm_byCopy , ZSTD_dct_auto ) ;
2017-08-25 17:48:07 +00:00
}
2017-06-27 22:49:12 +00:00
size_t ZSTD_CCtx_refCDict ( ZSTD_CCtx * cctx , const ZSTD_CDict * cdict )
2016-02-11 23:07:30 +00:00
{
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > streamStage ! = zcss_init , stage_wrong ) ;
2019-03-13 21:54:31 +00:00
/* Free the existing local cdict (if any) to save memory. */
2019-03-21 22:17:41 +00:00
ZSTD_clearAllDicts ( cctx ) ;
2017-06-27 22:49:12 +00:00
cctx - > cdict = cdict ;
return 0 ;
2016-02-11 23:07:30 +00:00
}
2017-06-27 22:49:12 +00:00
size_t ZSTD_CCtx_refPrefix ( ZSTD_CCtx * cctx , const void * prefix , size_t prefixSize )
2017-08-29 22:10:42 +00:00
{
2018-03-20 22:13:14 +00:00
return ZSTD_CCtx_refPrefix_advanced ( cctx , prefix , prefixSize , ZSTD_dct_rawContent ) ;
2017-08-29 22:10:42 +00:00
}
size_t ZSTD_CCtx_refPrefix_advanced (
2018-03-20 22:13:14 +00:00
ZSTD_CCtx * cctx , const void * prefix , size_t prefixSize , ZSTD_dictContentType_e dictContentType )
2016-02-11 23:07:30 +00:00
{
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > streamStage ! = zcss_init , stage_wrong ) ;
2019-03-21 22:17:41 +00:00
ZSTD_clearAllDicts ( cctx ) ;
2017-08-29 22:10:42 +00:00
cctx - > prefixDict . dict = prefix ;
cctx - > prefixDict . dictSize = prefixSize ;
2018-03-20 22:13:14 +00:00
cctx - > prefixDict . dictContentType = dictContentType ;
2017-06-27 22:49:12 +00:00
return 0 ;
2016-02-11 23:07:30 +00:00
}
2017-06-16 21:00:46 +00:00
/*! ZSTD_CCtx_reset() :
* Also dumps dictionary */
2018-11-20 20:00:20 +00:00
size_t ZSTD_CCtx_reset ( ZSTD_CCtx * cctx , ZSTD_ResetDirective reset )
2017-06-16 21:00:46 +00:00
{
2018-11-16 00:12:39 +00:00
if ( ( reset = = ZSTD_reset_session_only )
| | ( reset = = ZSTD_reset_session_and_parameters ) ) {
2018-11-14 20:33:57 +00:00
cctx - > streamStage = zcss_init ;
cctx - > pledgedSrcSizePlusOne = 0 ;
}
2018-11-16 00:12:39 +00:00
if ( ( reset = = ZSTD_reset_parameters )
| | ( reset = = ZSTD_reset_session_and_parameters ) ) {
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > streamStage ! = zcss_init , stage_wrong ) ;
2019-03-21 22:17:41 +00:00
ZSTD_clearAllDicts ( cctx ) ;
2018-11-14 20:33:57 +00:00
return ZSTD_CCtxParams_reset ( & cctx - > requestedParams ) ;
}
return 0 ;
2017-06-16 17:17:50 +00:00
}
2015-11-04 11:05:27 +00:00
2018-04-12 23:54:07 +00:00
2017-06-17 00:29:35 +00:00
/** ZSTD_checkCParams() :
control CParam values remain within authorized range .
2016-03-30 14:50:44 +00:00
@ return : 0 , or an error code if one value is beyond authorized range */
2016-03-30 17:48:05 +00:00
size_t ZSTD_checkCParams ( ZSTD_compressionParameters cParams )
2016-03-30 14:50:44 +00:00
{
2019-05-29 22:26:06 +00:00
BOUNDCHECK ( ZSTD_c_windowLog , ( int ) cParams . windowLog ) ;
BOUNDCHECK ( ZSTD_c_chainLog , ( int ) cParams . chainLog ) ;
BOUNDCHECK ( ZSTD_c_hashLog , ( int ) cParams . hashLog ) ;
BOUNDCHECK ( ZSTD_c_searchLog , ( int ) cParams . searchLog ) ;
BOUNDCHECK ( ZSTD_c_minMatch , ( int ) cParams . minMatch ) ;
BOUNDCHECK ( ZSTD_c_targetLength , ( int ) cParams . targetLength ) ;
2018-12-06 23:57:55 +00:00
BOUNDCHECK ( ZSTD_c_strategy , cParams . strategy ) ;
2016-03-30 14:50:44 +00:00
return 0 ;
}
2017-06-17 00:29:35 +00:00
/** ZSTD_clampCParams() :
* make CParam values within valid range .
* @ return : valid CParams */
2018-06-05 18:23:18 +00:00
static ZSTD_compressionParameters
ZSTD_clampCParams ( ZSTD_compressionParameters cParams )
2017-06-17 00:29:35 +00:00
{
2018-12-06 23:57:55 +00:00
# define CLAMP_TYPE(cParam, val, type) { \
ZSTD_bounds const bounds = ZSTD_cParam_getBounds ( cParam ) ; \
if ( ( int ) val < bounds . lowerBound ) val = ( type ) bounds . lowerBound ; \
else if ( ( int ) val > bounds . upperBound ) val = ( type ) bounds . upperBound ; \
2017-06-17 00:29:35 +00:00
}
2019-05-29 22:26:06 +00:00
# define CLAMP(cParam, val) CLAMP_TYPE(cParam, val, unsigned)
2018-12-06 21:38:09 +00:00
CLAMP ( ZSTD_c_windowLog , cParams . windowLog ) ;
CLAMP ( ZSTD_c_chainLog , cParams . chainLog ) ;
CLAMP ( ZSTD_c_hashLog , cParams . hashLog ) ;
CLAMP ( ZSTD_c_searchLog , cParams . searchLog ) ;
CLAMP ( ZSTD_c_minMatch , cParams . minMatch ) ;
2018-12-06 23:00:52 +00:00
CLAMP ( ZSTD_c_targetLength , cParams . targetLength ) ;
2018-12-12 01:41:42 +00:00
CLAMP_TYPE ( ZSTD_c_strategy , cParams . strategy , ZSTD_strategy ) ;
2017-06-17 00:29:35 +00:00
return cParams ;
}
2016-02-10 12:37:52 +00:00
2016-12-11 23:47:30 +00:00
/** ZSTD_cycleLog() :
* condition for correct operation : hashLog > 1 */
static U32 ZSTD_cycleLog ( U32 hashLog , ZSTD_strategy strat )
{
U32 const btScale = ( ( U32 ) strat > = ( U32 ) ZSTD_btlazy2 ) ;
return hashLog - btScale ;
}
2017-06-17 00:29:35 +00:00
/** ZSTD_adjustCParams_internal() :
2019-01-02 20:14:36 +00:00
* optimize ` cPar ` for a specified input ( ` srcSize ` and ` dictSize ` ) .
* mostly downsize to reduce memory consumption and initialization latency .
* ` srcSize ` can be ZSTD_CONTENTSIZE_UNKNOWN when not known .
* note : for the time being , ` srcSize = = 0 ` means " unknown " too , for compatibility with older convention .
* condition : cPar is presumed validated ( can be checked using ZSTD_checkCParams ( ) ) . */
2018-06-05 18:23:18 +00:00
static ZSTD_compressionParameters
ZSTD_adjustCParams_internal ( ZSTD_compressionParameters cPar ,
unsigned long long srcSize ,
size_t dictSize )
2016-03-30 14:50:44 +00:00
{
2017-09-29 01:14:28 +00:00
static const U64 minSrcSize = 513 ; /* (1<<9) + 1 */
static const U64 maxWindowResize = 1ULL < < ( ZSTD_WINDOWLOG_MAX - 1 ) ;
2017-06-17 00:29:35 +00:00
assert ( ZSTD_checkCParams ( cPar ) = = 0 ) ;
2015-11-04 11:05:27 +00:00
2019-01-02 20:14:36 +00:00
if ( dictSize & & ( srcSize + 1 < 2 ) /* ZSTD_CONTENTSIZE_UNKNOWN and 0 mean "unknown" */ )
2017-09-29 01:14:28 +00:00
srcSize = minSrcSize ; /* presumed small when there is a dictionary */
2017-09-30 21:17:32 +00:00
else if ( srcSize = = 0 )
2017-09-30 22:02:40 +00:00
srcSize = ZSTD_CONTENTSIZE_UNKNOWN ; /* 0 == unknown : presumed large */
2017-09-29 01:14:28 +00:00
/* resize windowLog if input is small enough, to use less memory */
if ( ( srcSize < maxWindowResize )
& & ( dictSize < maxWindowResize ) ) {
U32 const tSize = ( U32 ) ( srcSize + dictSize ) ;
static U32 const hashSizeMin = 1 < < ZSTD_HASHLOG_MIN ;
U32 const srcLog = ( tSize < hashSizeMin ) ? ZSTD_HASHLOG_MIN :
ZSTD_highbit32 ( tSize - 1 ) + 1 ;
if ( cPar . windowLog > srcLog ) cPar . windowLog = srcLog ;
}
2018-05-16 23:13:37 +00:00
if ( cPar . hashLog > cPar . windowLog + 1 ) cPar . hashLog = cPar . windowLog + 1 ;
2016-12-11 23:47:30 +00:00
{ U32 const cycleLog = ZSTD_cycleLog ( cPar . chainLog , cPar . strategy ) ;
2017-09-28 08:25:40 +00:00
if ( cycleLog > cPar . windowLog )
cPar . chainLog - = ( cycleLog - cPar . windowLog ) ;
2016-12-11 23:47:30 +00:00
}
2016-03-19 16:18:00 +00:00
2017-09-28 08:25:40 +00:00
if ( cPar . windowLog < ZSTD_WINDOWLOG_ABSOLUTEMIN )
2019-01-02 20:14:36 +00:00
cPar . windowLog = ZSTD_WINDOWLOG_ABSOLUTEMIN ; /* minimum wlog required for valid frame header */
2016-06-01 16:45:34 +00:00
return cPar ;
2015-11-04 11:05:27 +00:00
}
2018-06-05 18:23:18 +00:00
ZSTD_compressionParameters
ZSTD_adjustCParams ( ZSTD_compressionParameters cPar ,
unsigned long long srcSize ,
size_t dictSize )
2017-06-17 00:29:35 +00:00
{
2019-01-02 20:14:36 +00:00
cPar = ZSTD_clampCParams ( cPar ) ; /* resulting cPar is necessarily valid (all parameters within range) */
2017-06-17 00:29:35 +00:00
return ZSTD_adjustCParams_internal ( cPar , srcSize , dictSize ) ;
}
2018-06-14 23:24:18 +00:00
ZSTD_compressionParameters ZSTD_getCParamsFromCCtxParams (
const ZSTD_CCtx_params * CCtxParams , U64 srcSizeHint , size_t dictSize )
{
2019-08-19 15:52:08 +00:00
ZSTD_compressionParameters cParams ;
if ( srcSizeHint = = ZSTD_CONTENTSIZE_UNKNOWN & & CCtxParams - > srcSizeHint > 0 ) {
srcSizeHint = CCtxParams - > srcSizeHint ;
}
cParams = ZSTD_getCParams ( CCtxParams - > compressionLevel , srcSizeHint , dictSize ) ;
2018-06-14 23:24:18 +00:00
if ( CCtxParams - > ldmParams . enableLdm ) cParams . windowLog = ZSTD_LDM_DEFAULT_WINDOW_LOG ;
if ( CCtxParams - > cParams . windowLog ) cParams . windowLog = CCtxParams - > cParams . windowLog ;
if ( CCtxParams - > cParams . hashLog ) cParams . hashLog = CCtxParams - > cParams . hashLog ;
if ( CCtxParams - > cParams . chainLog ) cParams . chainLog = CCtxParams - > cParams . chainLog ;
if ( CCtxParams - > cParams . searchLog ) cParams . searchLog = CCtxParams - > cParams . searchLog ;
2018-11-20 22:56:07 +00:00
if ( CCtxParams - > cParams . minMatch ) cParams . minMatch = CCtxParams - > cParams . minMatch ;
2018-06-14 23:24:18 +00:00
if ( CCtxParams - > cParams . targetLength ) cParams . targetLength = CCtxParams - > cParams . targetLength ;
if ( CCtxParams - > cParams . strategy ) cParams . strategy = CCtxParams - > cParams . strategy ;
assert ( ! ZSTD_checkCParams ( cParams ) ) ;
return ZSTD_adjustCParams_internal ( cParams , srcSizeHint , dictSize ) ;
}
2018-06-05 18:23:18 +00:00
static size_t
ZSTD_sizeof_matchState ( const ZSTD_compressionParameters * const cParams ,
const U32 forCCtx )
2018-01-30 21:30:30 +00:00
{
size_t const chainSize = ( cParams - > strategy = = ZSTD_fast ) ? 0 : ( ( size_t ) 1 < < cParams - > chainLog ) ;
size_t const hSize = ( ( size_t ) 1 ) < < cParams - > hashLog ;
2018-11-20 22:56:07 +00:00
U32 const hashLog3 = ( forCCtx & & cParams - > minMatch = = 3 ) ? MIN ( ZSTD_HASHLOG3_MAX , cParams - > windowLog ) : 0 ;
2018-01-30 21:30:30 +00:00
size_t const h3Size = ( ( size_t ) 1 ) < < hashLog3 ;
size_t const tableSpace = ( chainSize + hSize + h3Size ) * sizeof ( U32 ) ;
size_t const optPotentialSpace = ( ( MaxML + 1 ) + ( MaxLL + 1 ) + ( MaxOff + 1 ) + ( 1 < < Litbits ) ) * sizeof ( U32 )
+ ( ZSTD_OPT_NUM + 1 ) * ( sizeof ( ZSTD_match_t ) + sizeof ( ZSTD_optimal_t ) ) ;
2018-12-06 21:38:09 +00:00
size_t const optSpace = ( forCCtx & & ( cParams - > strategy > = ZSTD_btopt ) )
2018-01-30 21:30:30 +00:00
? optPotentialSpace
: 0 ;
DEBUGLOG ( 4 , " chainSize: %u - hSize: %u - h3Size: %u " ,
( U32 ) chainSize , ( U32 ) hSize , ( U32 ) h3Size ) ;
return tableSpace + optSpace ;
}
2017-09-24 23:47:02 +00:00
size_t ZSTD_estimateCCtxSize_usingCCtxParams ( const ZSTD_CCtx_params * params )
2016-03-19 15:09:09 +00:00
{
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( params - > nbWorkers > 0 , GENERIC , " Estimate CCtx size is supported for single-threaded compression only. " ) ;
2017-08-29 02:25:17 +00:00
{ ZSTD_compressionParameters const cParams =
2018-03-19 21:41:23 +00:00
ZSTD_getCParamsFromCCtxParams ( params , 0 , 0 ) ;
2017-08-24 23:28:49 +00:00
size_t const blockSize = MIN ( ZSTD_BLOCKSIZE_MAX , ( size_t ) 1 < < cParams . windowLog ) ;
2018-11-20 22:56:07 +00:00
U32 const divider = ( cParams . minMatch = = 3 ) ? 3 : 4 ;
2017-08-24 23:28:49 +00:00
size_t const maxNbSeq = blockSize / divider ;
2018-08-28 20:24:44 +00:00
size_t const tokenSpace = WILDCOPY_OVERLENGTH + blockSize + 11 * maxNbSeq ;
2017-12-13 00:51:00 +00:00
size_t const entropySpace = HUF_WORKSPACE_SIZE ;
2018-01-12 20:06:10 +00:00
size_t const blockStateSpace = 2 * sizeof ( ZSTD_compressedBlockState_t ) ;
2018-03-19 21:41:23 +00:00
size_t const matchStateSize = ZSTD_sizeof_matchState ( & cParams , /* forCCtx */ 1 ) ;
2017-07-28 22:51:33 +00:00
2018-02-21 03:34:43 +00:00
size_t const ldmSpace = ZSTD_ldm_getTableSize ( params - > ldmParams ) ;
size_t const ldmSeqSpace = ZSTD_ldm_getMaxNbSeq ( params - > ldmParams , blockSize ) * sizeof ( rawSeq ) ;
2017-08-31 22:40:16 +00:00
2018-01-30 21:30:30 +00:00
size_t const neededSpace = entropySpace + blockStateSpace + tokenSpace +
2018-02-21 03:34:43 +00:00
matchStateSize + ldmSpace + ldmSeqSpace ;
2016-07-11 01:12:17 +00:00
2017-08-24 23:28:49 +00:00
DEBUGLOG ( 5 , " sizeof(ZSTD_CCtx) : %u " , ( U32 ) sizeof ( ZSTD_CCtx ) ) ;
2019-07-15 19:10:33 +00:00
DEBUGLOG ( 5 , " estimate workspace : %u " , ( U32 ) neededSpace ) ;
2017-08-24 23:28:49 +00:00
return sizeof ( ZSTD_CCtx ) + neededSpace ;
}
2017-08-18 01:13:08 +00:00
}
2016-07-11 01:12:17 +00:00
2017-09-24 23:47:02 +00:00
size_t ZSTD_estimateCCtxSize_usingCParams ( ZSTD_compressionParameters cParams )
2017-08-18 01:13:08 +00:00
{
2017-08-21 19:57:18 +00:00
ZSTD_CCtx_params const params = ZSTD_makeCCtxParamsFromCParams ( cParams ) ;
2017-09-24 23:47:02 +00:00
return ZSTD_estimateCCtxSize_usingCCtxParams ( & params ) ;
2016-03-08 11:22:11 +00:00
}
2017-12-30 10:37:18 +00:00
static size_t ZSTD_estimateCCtxSize_internal ( int compressionLevel )
2017-06-26 22:52:39 +00:00
{
ZSTD_compressionParameters const cParams = ZSTD_getCParams ( compressionLevel , 0 , 0 ) ;
2017-09-24 23:47:02 +00:00
return ZSTD_estimateCCtxSize_usingCParams ( cParams ) ;
2017-06-26 22:52:39 +00:00
}
2017-12-30 10:37:18 +00:00
size_t ZSTD_estimateCCtxSize ( int compressionLevel )
{
int level ;
size_t memBudget = 0 ;
2018-12-18 22:24:49 +00:00
for ( level = MIN ( compressionLevel , 1 ) ; level < = compressionLevel ; level + + ) {
2017-12-30 10:37:18 +00:00
size_t const newMB = ZSTD_estimateCCtxSize_internal ( level ) ;
if ( newMB > memBudget ) memBudget = newMB ;
}
return memBudget ;
}
2017-09-24 23:47:02 +00:00
size_t ZSTD_estimateCStreamSize_usingCCtxParams ( const ZSTD_CCtx_params * params )
2017-05-23 20:16:00 +00:00
{
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( params - > nbWorkers > 0 , GENERIC , " Estimate CCtx size is supported for single-threaded compression only. " ) ;
2019-04-02 00:51:28 +00:00
{ ZSTD_compressionParameters const cParams =
ZSTD_getCParamsFromCCtxParams ( params , 0 , 0 ) ;
size_t const CCtxSize = ZSTD_estimateCCtxSize_usingCCtxParams ( params ) ;
size_t const blockSize = MIN ( ZSTD_BLOCKSIZE_MAX , ( size_t ) 1 < < cParams . windowLog ) ;
size_t const inBuffSize = ( ( size_t ) 1 < < cParams . windowLog ) + blockSize ;
2017-08-24 23:28:49 +00:00
size_t const outBuffSize = ZSTD_compressBound ( blockSize ) + 1 ;
size_t const streamingSize = inBuffSize + outBuffSize ;
2016-09-06 07:44:59 +00:00
2017-08-24 23:28:49 +00:00
return CCtxSize + streamingSize ;
}
2017-08-18 01:13:08 +00:00
}
2016-09-06 07:44:59 +00:00
2017-09-24 23:47:02 +00:00
size_t ZSTD_estimateCStreamSize_usingCParams ( ZSTD_compressionParameters cParams )
2017-08-18 01:13:08 +00:00
{
2017-08-21 19:57:18 +00:00
ZSTD_CCtx_params const params = ZSTD_makeCCtxParamsFromCParams ( cParams ) ;
2017-09-24 23:47:02 +00:00
return ZSTD_estimateCStreamSize_usingCCtxParams ( & params ) ;
2017-05-23 20:16:00 +00:00
}
2018-06-05 18:23:18 +00:00
static size_t ZSTD_estimateCStreamSize_internal ( int compressionLevel )
{
2017-06-26 23:02:25 +00:00
ZSTD_compressionParameters const cParams = ZSTD_getCParams ( compressionLevel , 0 , 0 ) ;
2017-09-24 23:47:02 +00:00
return ZSTD_estimateCStreamSize_usingCParams ( cParams ) ;
2017-06-26 23:02:25 +00:00
}
2018-06-05 18:23:18 +00:00
size_t ZSTD_estimateCStreamSize ( int compressionLevel )
{
2017-12-30 10:37:18 +00:00
int level ;
size_t memBudget = 0 ;
2018-12-18 22:24:49 +00:00
for ( level = MIN ( compressionLevel , 1 ) ; level < = compressionLevel ; level + + ) {
2017-12-30 10:37:18 +00:00
size_t const newMB = ZSTD_estimateCStreamSize_internal ( level ) ;
if ( newMB > memBudget ) memBudget = newMB ;
}
return memBudget ;
}
2018-01-18 00:39:02 +00:00
/* ZSTD_getFrameProgression():
* tells how much data has been consumed ( input ) and produced ( output ) for current frame .
* able to count progression inside worker threads ( non - blocking mode ) .
*/
ZSTD_frameProgression ZSTD_getFrameProgression ( const ZSTD_CCtx * cctx )
{
# ifdef ZSTD_MULTITHREAD
2018-02-02 03:29:30 +00:00
if ( cctx - > appliedParams . nbWorkers > 0 ) {
2018-01-18 00:39:02 +00:00
return ZSTDMT_getFrameProgression ( cctx - > mtctx ) ;
}
# endif
{ ZSTD_frameProgression fp ;
size_t const buffered = ( cctx - > inBuff = = NULL ) ? 0 :
cctx - > inBuffPos - cctx - > inToCompress ;
if ( buffered ) assert ( cctx - > inBuffPos > = cctx - > inToCompress ) ;
assert ( buffered < = ZSTD_BLOCKSIZE_MAX ) ;
fp . ingested = cctx - > consumedSrcSize + buffered ;
fp . consumed = cctx - > consumedSrcSize ;
fp . produced = cctx - > producedCSize ;
2018-08-14 18:49:25 +00:00
fp . flushed = cctx - > producedCSize ; /* simplified; some data might still be left within streaming output buffer */
2018-08-09 22:51:30 +00:00
fp . currentJobID = 0 ;
2018-08-14 18:49:25 +00:00
fp . nbActiveWorkers = 0 ;
2018-01-18 00:39:02 +00:00
return fp ;
} }
2018-08-18 01:11:54 +00:00
/*! ZSTD_toFlushNow()
* Only useful for multithreading scenarios currently ( nbWorkers > = 1 ) .
*/
size_t ZSTD_toFlushNow ( ZSTD_CCtx * cctx )
{
# ifdef ZSTD_MULTITHREAD
if ( cctx - > appliedParams . nbWorkers > 0 ) {
return ZSTDMT_toFlushNow ( cctx - > mtctx ) ;
}
# endif
2018-08-20 18:40:10 +00:00
( void ) cctx ;
2018-08-18 01:11:54 +00:00
return 0 ; /* over-simplification; could also check if context is currently running in streaming mode, and in which case, report how many bytes are left to be flushed within output buffer */
}
2018-08-23 21:09:18 +00:00
static void ZSTD_assertEqualCParams ( ZSTD_compressionParameters cParams1 ,
ZSTD_compressionParameters cParams2 )
2018-08-23 19:35:03 +00:00
{
2018-08-23 21:36:51 +00:00
( void ) cParams1 ;
( void ) cParams2 ;
2018-08-23 21:09:18 +00:00
assert ( cParams1 . windowLog = = cParams2 . windowLog ) ;
assert ( cParams1 . chainLog = = cParams2 . chainLog ) ;
assert ( cParams1 . hashLog = = cParams2 . hashLog ) ;
assert ( cParams1 . searchLog = = cParams2 . searchLog ) ;
2018-11-20 22:56:07 +00:00
assert ( cParams1 . minMatch = = cParams2 . minMatch ) ;
2018-08-23 21:09:18 +00:00
assert ( cParams1 . targetLength = = cParams2 . targetLength ) ;
assert ( cParams1 . strategy = = cParams2 . strategy ) ;
2018-08-23 19:35:03 +00:00
}
2018-01-16 23:23:39 +00:00
static void ZSTD_reset_compressedBlockState ( ZSTD_compressedBlockState_t * bs )
2017-12-13 00:51:00 +00:00
{
int i ;
for ( i = 0 ; i < ZSTD_REP_NUM ; + + i )
bs - > rep [ i ] = repStartValue [ i ] ;
2018-05-22 23:06:33 +00:00
bs - > entropy . huf . repeatMode = HUF_repeat_none ;
bs - > entropy . fse . offcode_repeatMode = FSE_repeat_none ;
bs - > entropy . fse . matchlength_repeatMode = FSE_repeat_none ;
bs - > entropy . fse . litlength_repeatMode = FSE_repeat_none ;
2017-12-13 00:51:00 +00:00
}
/*! ZSTD_invalidateMatchState()
2019-05-28 20:15:48 +00:00
* Invalidate all the matches in the match finder tables .
* Requires nextSrc and base to be set ( can be NULL ) .
2017-12-13 00:51:00 +00:00
*/
static void ZSTD_invalidateMatchState ( ZSTD_matchState_t * ms )
{
2018-02-24 00:48:18 +00:00
ZSTD_window_clear ( & ms - > window ) ;
2017-12-13 00:51:00 +00:00
2018-12-19 18:11:06 +00:00
ms - > nextToUpdate = ms - > window . dictLimit ;
2017-12-13 00:51:00 +00:00
ms - > loadedDictEnd = 0 ;
ms - > opt . litLengthSum = 0 ; /* force reset of btopt stats */
2018-04-27 22:46:59 +00:00
ms - > dictMatchState = NULL ;
2017-12-13 00:51:00 +00:00
}
2019-09-10 21:59:45 +00:00
/**
* Indicates whether this compression proceeds directly from user - provided
* source buffer to user - provided destination buffer ( ZSTDb_not_buffered ) , or
* whether the context needs to buffer the input / output ( ZSTDb_buffered ) .
*/
typedef enum {
ZSTDb_not_buffered ,
ZSTDb_buffered
} ZSTD_buffered_policy_e ;
fix a subtle issue in continue mode
The deep fuzzer tests caught a subtle bug that was probably there for a long time.
The impact of the bug is not a crash, or any other clear error signal,
rather, it reduces performance, by cutting data into smaller blocks.
Eventually, the following test would fail because it produces too many 1-byte blocks,
requiring more space than buffer can provide :
`./zstreamtest_asan --mt -s3514 -t1678312 -i1678314`
The root scenario is as follows :
- Create context, initialize it using explicit parameters or a `cdict` to pin them down, set `pledgedSrcSize=1`
- The compression parameters will not be adapted, but `windowSize` and `blockSize` will be automatically set to `1`.
`windowSize` and `blockSize` are dynamic values, set within `ZSTD_resetCCtx_internal()`.
The automatic adaptation makes it possible to generate smaller contexts for smaller input sizes.
- Complete compression
- New compression with same context, using same parameters, but `pledgedSrcSize=ZSTD_CONTENTSIZE_UNKNOWN`
trigger "continue mode"
- Continue mode doesn't modify blockSize, because it used to depend on `windowLog` only,
but in fact, it also depends on `pledgedSrcSize`.
- The "old" blocksize (1) is still there,
next compression will use this value to cut input into blocks,
resulting in more blocks and worse performance than necessary performance.
Given the scenario, and its possible variants, I'm surprised it did not show up before.
But I suspect it did show up, it's just that it never triggered an error, because "worse performance" is not a trigger.
The above test is a special corner case, where performance is so impacted that it reaches an error case.
The fix works, but I'm not completely pleased.
I think the current code relies too much on implied relations between variables.
This will likely break again in the future when some related part of the code change.
Unfortunately, no time to make larger changes if we want to keep the release target for zstd v1.3.3.
So a longer term fix will have to be considered after the release.
To do : create a reliable test case which triggers this scenario for CI tests.
2017-12-19 08:43:03 +00:00
2019-09-10 21:38:32 +00:00
/**
* Controls , for this matchState reset , whether the tables need to be cleared /
* prepared for the coming compression ( ZSTDcrp_makeClean ) , or whether the
* tables can be left unclean ( ZSTDcrp_leaveDirty ) , because we know that a
* subsequent operation will overwrite the table space anyways ( e . g . , copying
* the matchState contents in from a CDict ) .
*/
2019-09-10 21:24:02 +00:00
typedef enum {
2019-09-10 21:38:32 +00:00
ZSTDcrp_makeClean ,
ZSTDcrp_leaveDirty
2019-09-10 21:24:02 +00:00
} ZSTD_compResetPolicy_e ;
2016-09-06 07:44:59 +00:00
2019-09-10 21:24:02 +00:00
/**
* Controls , for this matchState reset , whether indexing can continue where it
* left off ( ZSTDirp_continue ) , or whether it needs to be restarted from zero
* ( ZSTDirp_reset ) .
*/
typedef enum {
ZSTDirp_continue ,
ZSTDirp_reset
} ZSTD_indexResetPolicy_e ;
2016-09-06 07:44:59 +00:00
2019-09-10 21:24:02 +00:00
typedef enum {
ZSTD_resetTarget_CDict ,
ZSTD_resetTarget_CCtx
} ZSTD_resetTarget_e ;
2019-06-24 21:39:29 +00:00
2019-07-15 19:08:49 +00:00
static size_t
2018-05-08 19:32:16 +00:00
ZSTD_reset_matchState ( ZSTD_matchState_t * ms ,
2019-08-15 16:51:24 +00:00
ZSTD_cwksp * ws ,
2018-05-08 19:32:16 +00:00
const ZSTD_compressionParameters * cParams ,
2019-09-10 21:24:02 +00:00
const ZSTD_compResetPolicy_e crp ,
2019-09-10 21:28:52 +00:00
const ZSTD_indexResetPolicy_e forceResetIndex ,
2019-09-10 21:24:02 +00:00
const ZSTD_resetTarget_e forWho )
2018-01-16 23:23:39 +00:00
{
size_t const chainSize = ( cParams - > strategy = = ZSTD_fast ) ? 0 : ( ( size_t ) 1 < < cParams - > chainLog ) ;
size_t const hSize = ( ( size_t ) 1 ) < < cParams - > hashLog ;
2019-06-24 21:39:29 +00:00
U32 const hashLog3 = ( ( forWho = = ZSTD_resetTarget_CCtx ) & & cParams - > minMatch = = 3 ) ? MIN ( ZSTD_HASHLOG3_MAX , cParams - > windowLog ) : 0 ;
2019-09-11 17:14:26 +00:00
size_t const h3Size = hashLog3 ? ( ( size_t ) 1 ) < < hashLog3 : 0 ;
2018-01-16 23:23:39 +00:00
2019-09-11 15:21:00 +00:00
DEBUGLOG ( 4 , " reset indices : %u " , forceResetIndex = = ZSTDirp_reset ) ;
2019-09-10 21:43:35 +00:00
if ( forceResetIndex = = ZSTDirp_reset ) {
memset ( & ms - > window , 0 , sizeof ( ms - > window ) ) ;
ms - > window . dictLimit = 1 ; /* start from 1, so that 1st position is valid */
ms - > window . lowLimit = 1 ; /* it ensures first and later CCtx usages compress the same */
ms - > window . nextSrc = ms - > window . base + 1 ; /* see issue #1241 */
ZSTD_cwksp_mark_tables_dirty ( ws ) ;
}
2018-01-16 23:23:39 +00:00
ms - > hashLog3 = hashLog3 ;
2019-09-10 21:43:35 +00:00
2018-01-16 23:23:39 +00:00
ZSTD_invalidateMatchState ( ms ) ;
2019-08-15 16:51:24 +00:00
assert ( ! ZSTD_cwksp_reserve_failed ( ws ) ) ; /* check that allocation hasn't already failed */
2019-07-15 19:08:49 +00:00
2019-08-15 16:51:24 +00:00
ZSTD_cwksp_clear_tables ( ws ) ;
2019-08-12 22:36:48 +00:00
DEBUGLOG ( 5 , " reserving table space " ) ;
/* table Space */
2019-08-15 16:51:24 +00:00
ms - > hashTable = ( U32 * ) ZSTD_cwksp_reserve_table ( ws , hSize * sizeof ( U32 ) ) ;
ms - > chainTable = ( U32 * ) ZSTD_cwksp_reserve_table ( ws , chainSize * sizeof ( U32 ) ) ;
ms - > hashTable3 = ( U32 * ) ZSTD_cwksp_reserve_table ( ws , h3Size * sizeof ( U32 ) ) ;
RETURN_ERROR_IF ( ZSTD_cwksp_reserve_failed ( ws ) , memory_allocation ,
2019-08-12 22:36:48 +00:00
" failed a workspace allocation in ZSTD_reset_matchState " ) ;
2019-09-10 21:38:32 +00:00
DEBUGLOG ( 4 , " reset table : %u " , crp ! = ZSTDcrp_leaveDirty ) ;
if ( crp ! = ZSTDcrp_leaveDirty ) {
2019-08-12 22:36:48 +00:00
/* reset tables only */
2019-09-10 21:43:35 +00:00
ZSTD_cwksp_clean_tables ( ws ) ;
2019-07-15 19:08:49 +00:00
}
2018-01-16 23:23:39 +00:00
/* opt parser space */
2019-06-24 21:39:29 +00:00
if ( ( forWho = = ZSTD_resetTarget_CCtx ) & & ( cParams - > strategy > = ZSTD_btopt ) ) {
2018-01-16 23:23:39 +00:00
DEBUGLOG ( 4 , " reserving optimal parser space " ) ;
2019-08-15 16:51:24 +00:00
ms - > opt . litFreq = ( unsigned * ) ZSTD_cwksp_reserve_aligned ( ws , ( 1 < < Litbits ) * sizeof ( unsigned ) ) ;
ms - > opt . litLengthFreq = ( unsigned * ) ZSTD_cwksp_reserve_aligned ( ws , ( MaxLL + 1 ) * sizeof ( unsigned ) ) ;
ms - > opt . matchLengthFreq = ( unsigned * ) ZSTD_cwksp_reserve_aligned ( ws , ( MaxML + 1 ) * sizeof ( unsigned ) ) ;
ms - > opt . offCodeFreq = ( unsigned * ) ZSTD_cwksp_reserve_aligned ( ws , ( MaxOff + 1 ) * sizeof ( unsigned ) ) ;
ms - > opt . matchTable = ( ZSTD_match_t * ) ZSTD_cwksp_reserve_aligned ( ws , ( ZSTD_OPT_NUM + 1 ) * sizeof ( ZSTD_match_t ) ) ;
ms - > opt . priceTable = ( ZSTD_optimal_t * ) ZSTD_cwksp_reserve_aligned ( ws , ( ZSTD_OPT_NUM + 1 ) * sizeof ( ZSTD_optimal_t ) ) ;
2018-01-16 23:23:39 +00:00
}
2018-08-23 18:32:32 +00:00
ms - > cParams = * cParams ;
2019-08-15 16:51:24 +00:00
RETURN_ERROR_IF ( ZSTD_cwksp_reserve_failed ( ws ) , memory_allocation ,
2019-07-15 19:08:49 +00:00
" failed a workspace allocation in ZSTD_reset_matchState " ) ;
return 0 ;
2018-01-16 23:23:39 +00:00
}
2019-06-24 21:39:29 +00:00
/* ZSTD_indexTooCloseToMax() :
* minor optimization : prefer memset ( ) rather than reduceIndex ( )
* which is measurably slow in some circumstances ( reported for Visual Studio ) .
2019-06-21 23:19:21 +00:00
* Works when re - using a context for a lot of smallish inputs :
* if all inputs are smaller than ZSTD_INDEXOVERFLOW_MARGIN ,
* memset ( ) will be triggered before reduceIndex ( ) .
*/
# define ZSTD_INDEXOVERFLOW_MARGIN (16 MB)
2019-06-24 21:39:29 +00:00
static int ZSTD_indexTooCloseToMax ( ZSTD_window_t w )
2019-06-21 23:19:21 +00:00
{
2019-06-24 21:39:29 +00:00
return ( size_t ) ( w . nextSrc - w . base ) > ( ZSTD_CURRENT_MAX - ZSTD_INDEXOVERFLOW_MARGIN ) ;
2019-06-21 23:19:21 +00:00
}
2017-04-18 21:08:50 +00:00
/*! ZSTD_resetCCtx_internal() :
2017-05-23 18:18:24 +00:00
note : ` params ` are assumed fully validated at this stage */
static size_t ZSTD_resetCCtx_internal ( ZSTD_CCtx * zc ,
2018-06-05 18:23:18 +00:00
ZSTD_CCtx_params params ,
2019-05-31 22:55:12 +00:00
U64 const pledgedSrcSize ,
2017-05-23 18:18:24 +00:00
ZSTD_compResetPolicy_e const crp ,
ZSTD_buffered_policy_e const zbuff )
2016-09-06 07:44:59 +00:00
{
2019-09-09 18:59:09 +00:00
ZSTD_cwksp * const ws = & zc - > workspace ;
2017-12-19 20:49:04 +00:00
DEBUGLOG ( 4 , " ZSTD_resetCCtx_internal: pledgedSrcSize=%u, wlog=%u " ,
( U32 ) pledgedSrcSize , params . cParams . windowLog ) ;
2017-05-23 18:18:24 +00:00
assert ( ! ZSTD_isError ( ZSTD_checkCParams ( params . cParams ) ) ) ;
2017-05-08 23:08:01 +00:00
2019-08-26 22:30:41 +00:00
zc - > isFirstBlock = 1 ;
2016-09-06 07:44:59 +00:00
2017-09-01 19:24:59 +00:00
if ( params . ldmParams . enableLdm ) {
2017-09-03 04:10:36 +00:00
/* Adjust long distance matching parameters */
2018-02-21 03:34:43 +00:00
ZSTD_ldm_adjustParameters ( & params . ldmParams , & params . cParams ) ;
2017-09-07 00:56:01 +00:00
assert ( params . ldmParams . hashLog > = params . ldmParams . bucketSizeLog ) ;
2018-11-21 22:36:57 +00:00
assert ( params . ldmParams . hashRateLog < 32 ) ;
2018-11-14 20:15:20 +00:00
zc - > ldmState . hashPower = ZSTD_rollingHash_primePower ( params . ldmParams . minMatchLength ) ;
2017-07-28 22:51:33 +00:00
}
2017-11-16 23:02:28 +00:00
{ size_t const windowSize = MAX ( 1 , ( size_t ) MIN ( ( ( U64 ) 1 < < params . cParams . windowLog ) , pledgedSrcSize ) ) ;
size_t const blockSize = MIN ( ZSTD_BLOCKSIZE_MAX , windowSize ) ;
2018-11-20 22:56:07 +00:00
U32 const divider = ( params . cParams . minMatch = = 3 ) ? 3 : 4 ;
2016-09-06 07:44:59 +00:00
size_t const maxNbSeq = blockSize / divider ;
2018-08-28 20:24:44 +00:00
size_t const tokenSpace = WILDCOPY_OVERLENGTH + blockSize + 11 * maxNbSeq ;
2017-06-21 18:50:33 +00:00
size_t const buffOutSize = ( zbuff = = ZSTDb_buffered ) ? ZSTD_compressBound ( blockSize ) + 1 : 0 ;
2017-11-16 23:02:28 +00:00
size_t const buffInSize = ( zbuff = = ZSTDb_buffered ) ? windowSize + blockSize : 0 ;
2018-01-30 21:30:30 +00:00
size_t const matchStateSize = ZSTD_sizeof_matchState ( & params . cParams , /* forCCtx */ 1 ) ;
2018-02-21 03:34:43 +00:00
size_t const maxNbLdmSeq = ZSTD_ldm_getMaxNbSeq ( params . ldmParams , blockSize ) ;
2016-09-06 07:44:59 +00:00
2019-09-10 21:55:41 +00:00
ZSTD_indexResetPolicy_e needsIndexReset = ZSTDirp_continue ;
if ( ZSTD_indexTooCloseToMax ( zc - > blockState . matchState . window ) ) {
needsIndexReset = ZSTDirp_reset ;
}
ZSTD_cwksp_bump_oversized_duration ( ws , 0 ) ;
2019-07-15 19:10:33 +00:00
/* Check if workspace is large enough, alloc a new one if needed */
2019-09-09 19:12:14 +00:00
{ size_t const cctxSpace = zc - > staticSize ? sizeof ( ZSTD_CCtx ) : 0 ;
size_t const entropySpace = HUF_WORKSPACE_SIZE ;
2018-01-12 20:06:10 +00:00
size_t const blockStateSpace = 2 * sizeof ( ZSTD_compressedBlockState_t ) ;
2017-06-21 18:50:33 +00:00
size_t const bufferSpace = buffInSize + buffOutSize ;
2018-02-21 03:34:43 +00:00
size_t const ldmSpace = ZSTD_ldm_getTableSize ( params . ldmParams ) ;
size_t const ldmSeqSpace = maxNbLdmSeq * sizeof ( rawSeq ) ;
2019-07-15 19:08:49 +00:00
size_t const neededSpace =
2019-09-09 19:12:14 +00:00
cctxSpace +
2019-07-15 19:08:49 +00:00
entropySpace +
blockStateSpace +
ldmSpace +
ldmSeqSpace +
matchStateSize +
tokenSpace +
bufferSpace ;
2018-06-05 18:23:18 +00:00
2019-09-09 19:12:14 +00:00
int const workspaceTooSmall = ZSTD_cwksp_sizeof ( ws ) < neededSpace ;
2019-09-09 18:59:09 +00:00
int const workspaceWasteful = ZSTD_cwksp_check_wasteful ( ws , neededSpace ) ;
2018-06-05 21:53:28 +00:00
2018-06-05 18:23:18 +00:00
DEBUGLOG ( 4 , " Need %zuKB workspace, including %zuKB for match state, and %zuKB for buffers " ,
neededSpace > > 10 , matchStateSize > > 10 , bufferSpace > > 10 ) ;
DEBUGLOG ( 4 , " windowSize: %zu - blockSize: %zu " , windowSize , blockSize ) ;
2019-07-15 19:10:33 +00:00
if ( workspaceTooSmall | | workspaceWasteful ) {
DEBUGLOG ( 4 , " Resize workspaceSize from %zuKB to %zuKB " ,
2019-09-09 18:59:09 +00:00
ZSTD_cwksp_sizeof ( ws ) > > 10 ,
2018-06-05 18:23:18 +00:00
neededSpace > > 10 ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( zc - > staticSize , memory_allocation , " static cctx : no resize " ) ;
2017-05-23 20:16:00 +00:00
2019-09-10 21:55:41 +00:00
needsIndexReset = ZSTDirp_reset ;
2019-09-09 18:59:09 +00:00
ZSTD_cwksp_free ( ws , zc - > customMem ) ;
FORWARD_IF_ERROR ( ZSTD_cwksp_create ( ws , neededSpace , zc - > customMem ) ) ;
2017-04-21 00:38:56 +00:00
2019-07-15 19:08:49 +00:00
DEBUGLOG ( 5 , " reserving object space " ) ;
2018-06-05 18:23:18 +00:00
/* Statically sized space.
* entropyWorkspace never moves ,
* though prev / next block swap places */
2019-09-09 18:59:09 +00:00
assert ( ZSTD_cwksp_check_available ( ws , 2 * sizeof ( ZSTD_compressedBlockState_t ) ) ) ;
zc - > blockState . prevCBlock = ( ZSTD_compressedBlockState_t * ) ZSTD_cwksp_reserve_object ( ws , sizeof ( ZSTD_compressedBlockState_t ) ) ;
2019-07-15 19:08:49 +00:00
RETURN_ERROR_IF ( zc - > blockState . prevCBlock = = NULL , memory_allocation , " couldn't allocate prevCBlock " ) ;
2019-09-09 18:59:09 +00:00
zc - > blockState . nextCBlock = ( ZSTD_compressedBlockState_t * ) ZSTD_cwksp_reserve_object ( ws , sizeof ( ZSTD_compressedBlockState_t ) ) ;
2019-07-15 19:08:49 +00:00
RETURN_ERROR_IF ( zc - > blockState . nextCBlock = = NULL , memory_allocation , " couldn't allocate nextCBlock " ) ;
2019-09-09 18:59:09 +00:00
zc - > entropyWorkspace = ( U32 * ) ZSTD_cwksp_reserve_object ( ws , HUF_WORKSPACE_SIZE ) ;
2019-07-15 19:08:49 +00:00
RETURN_ERROR_IF ( zc - > blockState . nextCBlock = = NULL , memory_allocation , " couldn't allocate entropyWorkspace " ) ;
2016-09-06 07:44:59 +00:00
} }
2016-03-19 15:09:09 +00:00
2019-09-09 18:59:09 +00:00
ZSTD_cwksp_clear ( ws ) ;
2019-07-15 19:08:49 +00:00
2017-04-21 00:28:31 +00:00
/* init params */
2017-05-23 00:06:04 +00:00
zc - > appliedParams = params ;
2018-08-23 19:53:16 +00:00
zc - > blockState . matchState . cParams = params . cParams ;
2017-06-16 20:29:17 +00:00
zc - > pledgedSrcSizePlusOne = pledgedSrcSize + 1 ;
2017-04-21 00:28:31 +00:00
zc - > consumedSrcSize = 0 ;
2018-01-18 00:39:02 +00:00
zc - > producedCSize = 0 ;
2017-06-16 20:29:17 +00:00
if ( pledgedSrcSize = = ZSTD_CONTENTSIZE_UNKNOWN )
2017-06-16 01:17:10 +00:00
zc - > appliedParams . fParams . contentSizeFlag = 0 ;
2017-11-16 23:02:28 +00:00
DEBUGLOG ( 4 , " pledged content size : %u ; flag : %u " ,
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
( unsigned ) pledgedSrcSize , zc - > appliedParams . fParams . contentSizeFlag ) ;
2017-06-16 01:17:10 +00:00
zc - > blockSize = blockSize ;
2016-09-06 07:44:59 +00:00
XXH64_reset ( & zc - > xxhState , 0 ) ;
2017-04-21 00:28:31 +00:00
zc - > stage = ZSTDcs_init ;
zc - > dictID = 0 ;
2017-12-13 00:51:00 +00:00
2018-01-16 23:23:39 +00:00
ZSTD_reset_compressedBlockState ( zc - > blockState . prevCBlock ) ;
2017-12-13 00:51:00 +00:00
2018-08-28 20:24:44 +00:00
/* ZSTD_wildcopy() is used to copy into the literals buffer,
* so we have to oversize the buffer by WILDCOPY_OVERLENGTH bytes .
*/
2019-09-09 18:59:09 +00:00
zc - > seqStore . litStart = ZSTD_cwksp_reserve_buffer ( ws , blockSize + WILDCOPY_OVERLENGTH ) ;
2018-08-28 20:24:44 +00:00
zc - > seqStore . maxNbLit = blockSize ;
2019-08-12 18:22:54 +00:00
/* buffers */
zc - > inBuffSize = buffInSize ;
2019-09-09 18:59:09 +00:00
zc - > inBuff = ( char * ) ZSTD_cwksp_reserve_buffer ( ws , buffInSize ) ;
2019-08-12 18:22:54 +00:00
zc - > outBuffSize = buffOutSize ;
2019-09-09 18:59:09 +00:00
zc - > outBuff = ( char * ) ZSTD_cwksp_reserve_buffer ( ws , buffOutSize ) ;
2017-05-23 18:18:24 +00:00
2017-09-06 15:39:46 +00:00
/* ldm bucketOffsets table */
if ( params . ldmParams . enableLdm ) {
2019-09-10 22:02:22 +00:00
/* TODO: avoid memset? */
2017-09-06 15:39:46 +00:00
size_t const ldmBucketSize =
( ( size_t ) 1 ) < < ( params . ldmParams . hashLog -
params . ldmParams . bucketSizeLog ) ;
2019-09-09 18:59:09 +00:00
zc - > ldmState . bucketOffsets = ZSTD_cwksp_reserve_buffer ( ws , ldmBucketSize ) ;
2019-08-12 18:22:54 +00:00
memset ( zc - > ldmState . bucketOffsets , 0 , ldmBucketSize ) ;
2017-09-06 15:39:46 +00:00
}
2019-08-12 18:22:54 +00:00
/* sequences storage */
2018-03-20 21:31:43 +00:00
ZSTD_referenceExternalSequences ( zc , NULL , 0 ) ;
2019-08-12 18:22:54 +00:00
zc - > seqStore . maxNbSeq = maxNbSeq ;
2019-09-09 18:59:09 +00:00
zc - > seqStore . llCode = ZSTD_cwksp_reserve_buffer ( ws , maxNbSeq * sizeof ( BYTE ) ) ;
zc - > seqStore . mlCode = ZSTD_cwksp_reserve_buffer ( ws , maxNbSeq * sizeof ( BYTE ) ) ;
zc - > seqStore . ofCode = ZSTD_cwksp_reserve_buffer ( ws , maxNbSeq * sizeof ( BYTE ) ) ;
zc - > seqStore . sequencesStart = ( seqDef * ) ZSTD_cwksp_reserve_aligned ( ws , maxNbSeq * sizeof ( seqDef ) ) ;
2017-09-06 15:39:46 +00:00
2019-07-15 19:08:49 +00:00
FORWARD_IF_ERROR ( ZSTD_reset_matchState (
& zc - > blockState . matchState ,
2019-09-09 18:59:09 +00:00
ws ,
2019-07-15 19:08:49 +00:00
& params . cParams ,
2019-09-10 21:28:52 +00:00
crp ,
2019-09-10 21:55:41 +00:00
needsIndexReset ,
2019-09-10 21:28:52 +00:00
ZSTD_resetTarget_CCtx ) ) ;
2017-09-06 15:39:46 +00:00
/* ldm hash table */
2017-09-01 19:24:59 +00:00
if ( params . ldmParams . enableLdm ) {
2019-09-10 22:02:22 +00:00
/* TODO: avoid memset? */
2017-09-01 19:24:59 +00:00
size_t const ldmHSize = ( ( size_t ) 1 ) < < params . ldmParams . hashLog ;
2019-09-09 18:59:09 +00:00
zc - > ldmState . hashTable = ( ldmEntry_t * ) ZSTD_cwksp_reserve_aligned ( ws , ldmHSize * sizeof ( ldmEntry_t ) ) ;
2019-07-15 19:08:49 +00:00
memset ( zc - > ldmState . hashTable , 0 , ldmHSize * sizeof ( ldmEntry_t ) ) ;
2019-09-09 18:59:09 +00:00
zc - > ldmSequences = ( rawSeq * ) ZSTD_cwksp_reserve_aligned ( ws , maxNbLdmSeq * sizeof ( rawSeq ) ) ;
2018-03-07 03:50:50 +00:00
zc - > maxNbLdmSequences = maxNbLdmSeq ;
2018-02-24 02:17:44 +00:00
memset ( & zc - > ldmState . window , 0 , sizeof ( zc - > ldmState . window ) ) ;
2018-03-07 03:50:50 +00:00
ZSTD_window_clear ( & zc - > ldmState . window ) ;
2017-09-06 15:39:46 +00:00
}
2016-09-06 07:44:59 +00:00
2019-09-09 18:59:09 +00:00
DEBUGLOG ( 3 , " wksp: finished allocating, %zd bytes remain available " , ZSTD_cwksp_available_space ( ws ) ) ;
2016-09-06 07:44:59 +00:00
return 0 ;
2016-03-04 18:17:31 +00:00
}
2015-10-22 14:31:46 +00:00
}
2017-01-19 18:32:55 +00:00
/* ZSTD_invalidateRepCodes() :
* ensures next compression will not use repcodes from previous block .
* Note : only works with regular variant ;
* do not use with extDict variant ! */
void ZSTD_invalidateRepCodes ( ZSTD_CCtx * cctx ) {
int i ;
2018-01-12 20:06:10 +00:00
for ( i = 0 ; i < ZSTD_REP_NUM ; i + + ) cctx - > blockState . prevCBlock - > rep [ i ] = 0 ;
2018-02-24 00:48:18 +00:00
assert ( ! ZSTD_window_hasExtDict ( cctx - > blockState . matchState . window ) ) ;
2017-01-19 18:32:55 +00:00
}
2015-10-25 13:06:35 +00:00
2018-08-24 20:13:48 +00:00
/* These are the approximate sizes for each strategy past which copying the
* dictionary tables into the working context is faster than using them
* in - place .
*/
2018-12-07 00:16:16 +00:00
static const size_t attachDictSizeCutoffs [ ZSTD_STRATEGY_MAX + 1 ] = {
2018-12-06 21:38:09 +00:00
8 KB , /* unused */
8 KB , /* ZSTD_fast */
2018-08-24 20:13:48 +00:00
16 KB , /* ZSTD_dfast */
32 KB , /* ZSTD_greedy */
32 KB , /* ZSTD_lazy */
32 KB , /* ZSTD_lazy2 */
32 KB , /* ZSTD_btlazy2 */
32 KB , /* ZSTD_btopt */
2018-12-06 21:38:09 +00:00
8 KB , /* ZSTD_btultra */
8 KB /* ZSTD_btultra2 */
2018-08-24 20:13:48 +00:00
} ;
2018-06-01 22:18:32 +00:00
2018-09-12 19:04:04 +00:00
static int ZSTD_shouldAttachDict ( const ZSTD_CDict * cdict ,
2019-09-05 09:58:30 +00:00
const ZSTD_CCtx_params * params ,
2018-09-12 19:04:04 +00:00
U64 pledgedSrcSize )
2018-08-24 20:13:48 +00:00
{
size_t cutoff = attachDictSizeCutoffs [ cdict - > matchState . cParams . strategy ] ;
return ( pledgedSrcSize < = cutoff
| | pledgedSrcSize = = ZSTD_CONTENTSIZE_UNKNOWN
2019-09-05 09:58:30 +00:00
| | params - > attachDictPref = = ZSTD_dictForceAttach )
& & params - > attachDictPref ! = ZSTD_dictForceCopy
& & ! params - > forceWindow ; /* dictMatchState isn't correctly
2018-09-12 19:04:04 +00:00
* handled in _enforceMaxDist */
2018-08-24 20:13:48 +00:00
}
2018-04-27 22:46:59 +00:00
2019-05-28 20:15:48 +00:00
static size_t
ZSTD_resetCCtx_byAttachingCDict ( ZSTD_CCtx * cctx ,
const ZSTD_CDict * cdict ,
ZSTD_CCtx_params params ,
U64 pledgedSrcSize ,
ZSTD_buffered_policy_e zbuff )
2018-01-16 23:23:39 +00:00
{
2019-05-28 20:15:48 +00:00
{ const ZSTD_compressionParameters * const cdict_cParams = & cdict - > matchState . cParams ;
2018-08-24 22:54:58 +00:00
unsigned const windowLog = params . cParams . windowLog ;
2018-04-25 23:32:29 +00:00
assert ( windowLog ! = 0 ) ;
2018-09-12 19:29:53 +00:00
/* Resize working context table params for input only, since the dict
* has its own tables . */
params . cParams = ZSTD_adjustCParams_internal ( * cdict_cParams , pledgedSrcSize , 0 ) ;
2018-04-25 23:32:29 +00:00
params . cParams . windowLog = windowLog ;
2019-09-03 17:13:16 +00:00
FORWARD_IF_ERROR ( ZSTD_resetCCtx_internal ( cctx , params , pledgedSrcSize ,
2019-09-10 21:38:32 +00:00
ZSTDcrp_makeClean , zbuff ) ) ;
2018-08-23 18:33:08 +00:00
assert ( cctx - > appliedParams . cParams . strategy = = cdict_cParams - > strategy ) ;
2018-01-16 23:23:39 +00:00
}
2019-05-28 20:15:48 +00:00
{ const U32 cdictEnd = ( U32 ) ( cdict - > matchState . window . nextSrc
2018-05-21 22:27:08 +00:00
- cdict - > matchState . window . base ) ;
2018-08-08 00:05:05 +00:00
const U32 cdictLen = cdictEnd - cdict - > matchState . window . dictLimit ;
2018-05-21 22:27:08 +00:00
if ( cdictLen = = 0 ) {
2018-05-15 21:23:16 +00:00
/* don't even attach dictionaries with no contents */
DEBUGLOG ( 4 , " skipping attaching empty dictionary " ) ;
} else {
DEBUGLOG ( 4 , " attaching dictionary into context " ) ;
cctx - > blockState . matchState . dictMatchState = & cdict - > matchState ;
/* prep working match state so dict matches never have negative indices
* when they are translated to the working context ' s index space . */
2018-08-08 00:05:05 +00:00
if ( cctx - > blockState . matchState . window . dictLimit < cdictEnd ) {
2018-05-15 21:23:16 +00:00
cctx - > blockState . matchState . window . nextSrc =
2018-08-08 00:05:05 +00:00
cctx - > blockState . matchState . window . base + cdictEnd ;
2018-05-15 21:23:16 +00:00
ZSTD_window_clear ( & cctx - > blockState . matchState . window ) ;
}
2019-05-28 20:15:48 +00:00
/* loadedDictEnd is expressed within the referential of the active context */
2018-05-22 00:12:11 +00:00
cctx - > blockState . matchState . loadedDictEnd = cctx - > blockState . matchState . window . dictLimit ;
2019-05-28 20:15:48 +00:00
} }
2018-01-16 23:23:39 +00:00
2018-08-24 22:54:58 +00:00
cctx - > dictID = cdict - > dictID ;
2018-04-27 22:46:59 +00:00
2018-08-24 22:54:58 +00:00
/* copy block state */
memcpy ( cctx - > blockState . prevCBlock , & cdict - > cBlockState , sizeof ( cdict - > cBlockState ) ) ;
return 0 ;
}
static size_t ZSTD_resetCCtx_byCopyingCDict ( ZSTD_CCtx * cctx ,
const ZSTD_CDict * cdict ,
ZSTD_CCtx_params params ,
U64 pledgedSrcSize ,
ZSTD_buffered_policy_e zbuff )
{
const ZSTD_compressionParameters * cdict_cParams = & cdict - > matchState . cParams ;
DEBUGLOG ( 4 , " copying dictionary into context " ) ;
{ unsigned const windowLog = params . cParams . windowLog ;
assert ( windowLog ! = 0 ) ;
/* Copy only compression parameters related to tables. */
params . cParams = * cdict_cParams ;
params . cParams . windowLog = windowLog ;
2019-09-03 17:13:16 +00:00
FORWARD_IF_ERROR ( ZSTD_resetCCtx_internal ( cctx , params , pledgedSrcSize ,
2019-09-10 21:38:32 +00:00
ZSTDcrp_leaveDirty , zbuff ) ) ;
2018-08-24 22:54:58 +00:00
assert ( cctx - > appliedParams . cParams . strategy = = cdict_cParams - > strategy ) ;
assert ( cctx - > appliedParams . cParams . hashLog = = cdict_cParams - > hashLog ) ;
assert ( cctx - > appliedParams . cParams . chainLog = = cdict_cParams - > chainLog ) ;
}
2019-09-11 15:18:45 +00:00
ZSTD_cwksp_mark_tables_dirty ( & cctx - > workspace ) ;
2018-08-24 22:54:58 +00:00
/* copy tables */
{ size_t const chainSize = ( cdict_cParams - > strategy = = ZSTD_fast ) ? 0 : ( ( size_t ) 1 < < cdict_cParams - > chainLog ) ;
size_t const hSize = ( size_t ) 1 < < cdict_cParams - > hashLog ;
size_t const tableSpace = ( chainSize + hSize ) * sizeof ( U32 ) ;
assert ( ( U32 * ) cctx - > blockState . matchState . chainTable = = ( U32 * ) cctx - > blockState . matchState . hashTable + hSize ) ; /* chainTable must follow hashTable */
assert ( ( U32 * ) cctx - > blockState . matchState . hashTable3 = = ( U32 * ) cctx - > blockState . matchState . chainTable + chainSize ) ;
assert ( ( U32 * ) cdict - > matchState . chainTable = = ( U32 * ) cdict - > matchState . hashTable + hSize ) ; /* chainTable must follow hashTable */
assert ( ( U32 * ) cdict - > matchState . hashTable3 = = ( U32 * ) cdict - > matchState . chainTable + chainSize ) ;
memcpy ( cctx - > blockState . matchState . hashTable , cdict - > matchState . hashTable , tableSpace ) ; /* presumes all tables follow each other */
}
/* Zero the hashTable3, since the cdict never fills it */
2019-09-11 17:14:26 +00:00
{ int const h3log = cctx - > blockState . matchState . hashLog3 ;
size_t const h3Size = h3log ? ( ( size_t ) 1 < < h3log ) : 0 ;
2018-08-24 22:54:58 +00:00
assert ( cdict - > matchState . hashLog3 = = 0 ) ;
memset ( cctx - > blockState . matchState . hashTable3 , 0 , h3Size * sizeof ( U32 ) ) ;
}
2019-09-11 15:18:45 +00:00
ZSTD_cwksp_mark_tables_clean ( & cctx - > workspace ) ;
2018-08-24 22:54:58 +00:00
/* copy dictionary offsets */
{ ZSTD_matchState_t const * srcMatchState = & cdict - > matchState ;
ZSTD_matchState_t * dstMatchState = & cctx - > blockState . matchState ;
dstMatchState - > window = srcMatchState - > window ;
dstMatchState - > nextToUpdate = srcMatchState - > nextToUpdate ;
dstMatchState - > loadedDictEnd = srcMatchState - > loadedDictEnd ;
2018-01-16 23:23:39 +00:00
}
2018-04-27 22:46:59 +00:00
2018-01-16 23:23:39 +00:00
cctx - > dictID = cdict - > dictID ;
/* copy block state */
memcpy ( cctx - > blockState . prevCBlock , & cdict - > cBlockState , sizeof ( cdict - > cBlockState ) ) ;
return 0 ;
}
2017-04-18 21:54:54 +00:00
2018-08-24 22:54:58 +00:00
/* We have a choice between copying the dictionary context into the working
* context , or referencing the dictionary context from the working context
* in - place . We decide here which strategy to use . */
static size_t ZSTD_resetCCtx_usingCDict ( ZSTD_CCtx * cctx ,
const ZSTD_CDict * cdict ,
2019-09-05 09:58:30 +00:00
const ZSTD_CCtx_params * params ,
2018-08-24 22:54:58 +00:00
U64 pledgedSrcSize ,
ZSTD_buffered_policy_e zbuff )
{
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 4 , " ZSTD_resetCCtx_usingCDict (pledgedSrcSize=%u) " ,
( unsigned ) pledgedSrcSize ) ;
2018-08-24 22:54:58 +00:00
2018-09-12 19:04:04 +00:00
if ( ZSTD_shouldAttachDict ( cdict , params , pledgedSrcSize ) ) {
2018-08-24 22:54:58 +00:00
return ZSTD_resetCCtx_byAttachingCDict (
2019-09-05 09:58:30 +00:00
cctx , cdict , * params , pledgedSrcSize , zbuff ) ;
2018-08-24 22:54:58 +00:00
} else {
return ZSTD_resetCCtx_byCopyingCDict (
2019-09-05 09:58:30 +00:00
cctx , cdict , * params , pledgedSrcSize , zbuff ) ;
2018-08-24 22:54:58 +00:00
}
}
2017-04-18 21:54:54 +00:00
/*! ZSTD_copyCCtx_internal() :
* Duplicate an existing context ` srcCCtx ` into another one ` dstCCtx ` .
* Only works during stage ZSTDcs_init ( i . e . after creation , but before first call to ZSTD_compressContinue ( ) ) .
2017-12-13 00:20:51 +00:00
* The " context " , in this case , refers to the hash and chain tables ,
* entropy tables , and dictionary references .
* ` windowLog ` value is enforced if ! = 0 , otherwise value is copied from srcCCtx .
* @ return : 0 , or an error code */
2017-05-23 00:06:04 +00:00
static size_t ZSTD_copyCCtx_internal ( ZSTD_CCtx * dstCCtx ,
const ZSTD_CCtx * srcCCtx ,
ZSTD_frameParameters fParams ,
2017-12-13 00:20:51 +00:00
U64 pledgedSrcSize ,
2017-06-21 22:13:00 +00:00
ZSTD_buffered_policy_e zbuff )
2016-01-26 14:58:49 +00:00
{
2017-05-19 17:17:59 +00:00
DEBUGLOG ( 5 , " ZSTD_copyCCtx_internal " ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( srcCCtx - > stage ! = ZSTDcs_init , stage_wrong ) ;
2016-01-26 14:58:49 +00:00
2016-06-02 11:04:18 +00:00
memcpy ( & dstCCtx - > customMem , & srcCCtx - > customMem , sizeof ( ZSTD_customMem ) ) ;
2017-09-05 22:34:17 +00:00
{ ZSTD_CCtx_params params = dstCCtx - > requestedParams ;
/* Copy only compression parameters related to tables. */
params . cParams = srcCCtx - > appliedParams . cParams ;
2017-04-18 21:54:54 +00:00
params . fParams = fParams ;
2017-05-23 18:18:24 +00:00
ZSTD_resetCCtx_internal ( dstCCtx , params , pledgedSrcSize ,
2019-09-10 21:38:32 +00:00
ZSTDcrp_leaveDirty , zbuff ) ;
2018-01-30 21:30:30 +00:00
assert ( dstCCtx - > appliedParams . cParams . windowLog = = srcCCtx - > appliedParams . cParams . windowLog ) ;
assert ( dstCCtx - > appliedParams . cParams . strategy = = srcCCtx - > appliedParams . cParams . strategy ) ;
assert ( dstCCtx - > appliedParams . cParams . hashLog = = srcCCtx - > appliedParams . cParams . hashLog ) ;
assert ( dstCCtx - > appliedParams . cParams . chainLog = = srcCCtx - > appliedParams . cParams . chainLog ) ;
assert ( dstCCtx - > blockState . matchState . hashLog3 = = srcCCtx - > blockState . matchState . hashLog3 ) ;
2017-02-09 18:50:43 +00:00
}
2016-01-26 14:58:49 +00:00
2019-09-11 15:18:45 +00:00
ZSTD_cwksp_mark_tables_dirty ( & dstCCtx - > workspace ) ;
2016-01-26 14:58:49 +00:00
/* copy tables */
2017-09-21 23:18:34 +00:00
{ size_t const chainSize = ( srcCCtx - > appliedParams . cParams . strategy = = ZSTD_fast ) ? 0 : ( ( size_t ) 1 < < srcCCtx - > appliedParams . cParams . chainLog ) ;
2017-05-23 00:06:04 +00:00
size_t const hSize = ( size_t ) 1 < < srcCCtx - > appliedParams . cParams . hashLog ;
2019-09-11 17:14:26 +00:00
int const h3log = srcCCtx - > blockState . matchState . hashLog3 ;
size_t const h3Size = h3log ? ( ( size_t ) 1 < < h3log ) : 0 ;
2016-07-27 19:05:12 +00:00
size_t const tableSpace = ( chainSize + hSize + h3Size ) * sizeof ( U32 ) ;
2018-01-12 20:06:10 +00:00
assert ( ( U32 * ) dstCCtx - > blockState . matchState . chainTable = = ( U32 * ) dstCCtx - > blockState . matchState . hashTable + hSize ) ; /* chainTable must follow hashTable */
assert ( ( U32 * ) dstCCtx - > blockState . matchState . hashTable3 = = ( U32 * ) dstCCtx - > blockState . matchState . chainTable + chainSize ) ;
memcpy ( dstCCtx - > blockState . matchState . hashTable , srcCCtx - > blockState . matchState . hashTable , tableSpace ) ; /* presumes all tables follow each other */
2016-03-19 16:18:00 +00:00
}
2016-01-26 14:58:49 +00:00
2019-09-11 15:18:45 +00:00
ZSTD_cwksp_mark_tables_clean ( & dstCCtx - > workspace ) ;
2016-05-29 03:01:04 +00:00
/* copy dictionary offsets */
2017-12-13 01:37:06 +00:00
{
2018-05-08 19:32:16 +00:00
const ZSTD_matchState_t * srcMatchState = & srcCCtx - > blockState . matchState ;
2018-01-12 20:06:10 +00:00
ZSTD_matchState_t * dstMatchState = & dstCCtx - > blockState . matchState ;
2018-02-24 00:48:18 +00:00
dstMatchState - > window = srcMatchState - > window ;
2017-12-13 00:51:00 +00:00
dstMatchState - > nextToUpdate = srcMatchState - > nextToUpdate ;
dstMatchState - > loadedDictEnd = srcMatchState - > loadedDictEnd ;
2017-12-13 01:37:06 +00:00
}
2017-12-13 00:51:00 +00:00
dstCCtx - > dictID = srcCCtx - > dictID ;
/* copy block state */
2018-01-12 20:06:10 +00:00
memcpy ( dstCCtx - > blockState . prevCBlock , srcCCtx - > blockState . prevCBlock , sizeof ( * srcCCtx - > blockState . prevCBlock ) ) ;
2016-01-26 14:58:49 +00:00
return 0 ;
}
2017-04-18 21:54:54 +00:00
/*! ZSTD_copyCCtx() :
* Duplicate an existing context ` srcCCtx ` into another one ` dstCCtx ` .
* Only works during stage ZSTDcs_init ( i . e . after creation , but before first call to ZSTD_compressContinue ( ) ) .
* pledgedSrcSize = = 0 means " unknown " .
* @ return : 0 , or an error code */
size_t ZSTD_copyCCtx ( ZSTD_CCtx * dstCCtx , const ZSTD_CCtx * srcCCtx , unsigned long long pledgedSrcSize )
{
ZSTD_frameParameters fParams = { 1 /*content*/ , 0 /*checksum*/ , 0 /*noDictID*/ } ;
2017-06-21 22:13:00 +00:00
ZSTD_buffered_policy_e const zbuff = ( ZSTD_buffered_policy_e ) ( srcCCtx - > inBuffSize > 0 ) ;
ZSTD_STATIC_ASSERT ( ( U32 ) ZSTDb_buffered = = 1 ) ;
2017-10-14 00:39:13 +00:00
if ( pledgedSrcSize = = 0 ) pledgedSrcSize = ZSTD_CONTENTSIZE_UNKNOWN ;
fParams . contentSizeFlag = ( pledgedSrcSize ! = ZSTD_CONTENTSIZE_UNKNOWN ) ;
2017-04-18 21:54:54 +00:00
2017-12-13 00:20:51 +00:00
return ZSTD_copyCCtx_internal ( dstCCtx , srcCCtx ,
2018-01-30 21:30:30 +00:00
fParams , pledgedSrcSize ,
2017-12-13 00:20:51 +00:00
zbuff ) ;
2017-04-18 21:54:54 +00:00
}
2016-01-26 14:58:49 +00:00
2017-12-29 13:40:33 +00:00
# define ZSTD_ROWSIZE 16
2018-02-07 22:22:35 +00:00
/*! ZSTD_reduceTable() :
* reduce table indexes by ` reducerValue ` , or squash to zero .
* PreserveMark preserves " unsorted mark " for btlazy2 strategy .
* It must be set to a clear 0 / 1 value , to remove branch during inlining .
* Presume table size is a multiple of ZSTD_ROWSIZE
* to help auto - vectorization */
FORCE_INLINE_TEMPLATE void
ZSTD_reduceTable_internal ( U32 * const table , U32 const size , U32 const reducerValue , int const preserveMark )
2017-12-29 13:40:33 +00:00
{
2018-02-07 22:22:35 +00:00
int const nbRows = ( int ) size / ZSTD_ROWSIZE ;
2017-12-29 13:40:33 +00:00
int cellNb = 0 ;
int rowNb ;
2018-02-07 22:22:35 +00:00
assert ( ( size & ( ZSTD_ROWSIZE - 1 ) ) = = 0 ) ; /* multiple of ZSTD_ROWSIZE */
assert ( size < ( 1U < < 31 ) ) ; /* can be casted to int */
2019-09-11 20:40:29 +00:00
# if defined (MEMORY_SANITIZER) && !defined (ZSTD_MSAN_DONT_POISON_WORKSPACE)
/* To validate that the table re-use logic is sound, and that we don't
* access table space that we haven ' t cleaned , we re - " poison " the table
* space every time we mark it dirty .
*
* This function however is intended to operate on those dirty tables and
* re - clean them . So when this function is used correctly , we can unpoison
* the memory it operated on . This introduces a blind spot though , since
* if we now try to operate on __actually__ poisoned memory , we will not
* detect that . */
__msan_unpoison ( table , size * sizeof ( U32 ) ) ;
# endif
2017-12-29 13:40:33 +00:00
for ( rowNb = 0 ; rowNb < nbRows ; rowNb + + ) {
int column ;
for ( column = 0 ; column < ZSTD_ROWSIZE ; column + + ) {
2018-02-07 22:22:35 +00:00
if ( preserveMark ) {
U32 const adder = ( table [ cellNb ] = = ZSTD_DUBT_UNSORTED_MARK ) ? reducerValue : 0 ;
table [ cellNb ] + = adder ;
}
2017-12-29 13:40:33 +00:00
if ( table [ cellNb ] < reducerValue ) table [ cellNb ] = 0 ;
else table [ cellNb ] - = reducerValue ;
cellNb + + ;
} }
}
2018-02-07 22:22:35 +00:00
static void ZSTD_reduceTable ( U32 * const table , U32 const size , U32 const reducerValue )
2015-11-13 10:27:46 +00:00
{
2018-02-07 22:22:35 +00:00
ZSTD_reduceTable_internal ( table , size , reducerValue , 0 ) ;
2015-11-13 10:27:46 +00:00
}
2018-02-07 22:22:35 +00:00
static void ZSTD_reduceTable_btlazy2 ( U32 * const table , U32 const size , U32 const reducerValue )
{
ZSTD_reduceTable_internal ( table , size , reducerValue , 1 ) ;
}
2016-03-20 15:20:06 +00:00
/*! ZSTD_reduceIndex() :
* rescale all indexes to avoid future overflow ( indexes are U32 ) */
2019-06-21 22:39:43 +00:00
static void ZSTD_reduceIndex ( ZSTD_matchState_t * ms , ZSTD_CCtx_params const * params , const U32 reducerValue )
2016-03-20 15:20:06 +00:00
{
2019-06-21 22:39:43 +00:00
{ U32 const hSize = ( U32 ) 1 < < params - > cParams . hashLog ;
2017-12-13 00:51:00 +00:00
ZSTD_reduceTable ( ms - > hashTable , hSize , reducerValue ) ;
2017-12-29 13:40:33 +00:00
}
2016-03-20 15:20:06 +00:00
2019-06-21 22:39:43 +00:00
if ( params - > cParams . strategy ! = ZSTD_fast ) {
U32 const chainSize = ( U32 ) 1 < < params - > cParams . chainLog ;
if ( params - > cParams . strategy = = ZSTD_btlazy2 )
2018-02-07 22:22:35 +00:00
ZSTD_reduceTable_btlazy2 ( ms - > chainTable , chainSize , reducerValue ) ;
else
ZSTD_reduceTable ( ms - > chainTable , chainSize , reducerValue ) ;
2017-12-29 13:40:33 +00:00
}
2016-03-20 15:20:06 +00:00
2017-12-13 00:51:00 +00:00
if ( ms - > hashLog3 ) {
U32 const h3Size = ( U32 ) 1 < < ms - > hashLog3 ;
ZSTD_reduceTable ( ms - > hashTable3 , h3Size , reducerValue ) ;
2017-12-29 13:40:33 +00:00
}
2016-03-20 15:20:06 +00:00
}
2015-11-13 10:27:46 +00:00
2016-01-28 16:56:33 +00:00
/*-*******************************************************
2015-11-11 20:38:21 +00:00
* Block entropic compression
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2016-10-24 13:58:07 +00:00
/* See doc/zstd_compression_format.md for detailed format description */
2015-11-11 20:38:21 +00:00
2018-09-27 23:06:02 +00:00
static size_t ZSTD_noCompressBlock ( void * dst , size_t dstCapacity , const void * src , size_t srcSize , U32 lastBlock )
{
U32 const cBlockHeader24 = lastBlock + ( ( ( U32 ) bt_raw ) < < 1 ) + ( U32 ) ( srcSize < < 3 ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( srcSize + ZSTD_blockHeaderSize > dstCapacity ,
dstSize_tooSmall ) ;
2018-09-27 23:06:02 +00:00
MEM_writeLE24 ( dst , cBlockHeader24 ) ;
memcpy ( ( BYTE * ) dst + ZSTD_blockHeaderSize , src , srcSize ) ;
return ZSTD_blockHeaderSize + srcSize ;
}
2016-07-29 19:22:17 +00:00
void ZSTD_seqToCodes ( const seqStore_t * seqStorePtr )
2016-03-26 19:52:14 +00:00
{
2016-07-29 22:55:13 +00:00
const seqDef * const sequences = seqStorePtr - > sequencesStart ;
2016-07-29 19:22:17 +00:00
BYTE * const llCodeTable = seqStorePtr - > llCode ;
BYTE * const ofCodeTable = seqStorePtr - > ofCode ;
BYTE * const mlCodeTable = seqStorePtr - > mlCode ;
2016-07-29 22:55:13 +00:00
U32 const nbSeq = ( U32 ) ( seqStorePtr - > sequences - seqStorePtr - > sequencesStart ) ;
2016-07-29 19:22:17 +00:00
U32 u ;
2018-08-21 21:20:02 +00:00
assert ( nbSeq < = seqStorePtr - > maxNbSeq ) ;
2016-07-29 19:22:17 +00:00
for ( u = 0 ; u < nbSeq ; u + + ) {
U32 const llv = sequences [ u ] . litLength ;
U32 const mlv = sequences [ u ] . matchLength ;
2017-11-08 20:33:06 +00:00
llCodeTable [ u ] = ( BYTE ) ZSTD_LLcode ( llv ) ;
2016-07-29 19:22:17 +00:00
ofCodeTable [ u ] = ( BYTE ) ZSTD_highbit32 ( sequences [ u ] . offset ) ;
2017-11-08 20:33:06 +00:00
mlCodeTable [ u ] = ( BYTE ) ZSTD_MLcode ( mlv ) ;
2016-04-07 15:19:00 +00:00
}
2016-07-29 19:22:17 +00:00
if ( seqStorePtr - > longLengthID = = 1 )
llCodeTable [ seqStorePtr - > longLengthPos ] = MaxLL ;
if ( seqStorePtr - > longLengthID = = 2 )
mlCodeTable [ seqStorePtr - > longLengthPos ] = MaxML ;
2016-03-26 19:52:14 +00:00
}
2019-02-13 22:59:22 +00:00
static int ZSTD_disableLiteralsCompression ( const ZSTD_CCtx_params * cctxParams )
{
switch ( cctxParams - > literalCompressionMode ) {
case ZSTD_lcm_huffman :
return 0 ;
case ZSTD_lcm_uncompressed :
return 1 ;
default :
assert ( 0 /* impossible: pre-validated */ ) ;
/* fall-through */
case ZSTD_lcm_auto :
return ( cctxParams - > cParams . strategy = = ZSTD_fast ) & & ( cctxParams - > cParams . targetLength > 0 ) ;
}
}
2018-12-19 18:11:06 +00:00
/* ZSTD_compressSequences_internal():
* actually compresses both literals and sequences */
2018-10-26 20:21:37 +00:00
MEM_STATIC size_t
ZSTD_compressSequences_internal ( seqStore_t * seqStorePtr ,
2018-12-19 18:11:06 +00:00
const ZSTD_entropyCTables_t * prevEntropy ,
ZSTD_entropyCTables_t * nextEntropy ,
const ZSTD_CCtx_params * cctxParams ,
void * dst , size_t dstCapacity ,
2019-07-15 21:14:51 +00:00
void * entropyWorkspace , size_t entropyWkspSize ,
2018-12-19 18:11:06 +00:00
const int bmi2 )
2015-11-11 20:38:21 +00:00
{
2018-03-11 12:21:53 +00:00
const int longOffsets = cctxParams - > cParams . windowLog > STREAM_ACCUMULATOR_MIN ;
2018-04-16 22:37:27 +00:00
ZSTD_strategy const strategy = cctxParams - > cParams . strategy ;
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
unsigned count [ MaxSeq + 1 ] ;
2018-05-22 23:06:33 +00:00
FSE_CTable * CTable_LitLength = nextEntropy - > fse . litlengthCTable ;
FSE_CTable * CTable_OffsetBits = nextEntropy - > fse . offcodeCTable ;
FSE_CTable * CTable_MatchLength = nextEntropy - > fse . matchlengthCTable ;
2015-11-11 20:38:21 +00:00
U32 LLtype , Offtype , MLtype ; /* compressed, raw or rle */
2016-07-29 22:55:13 +00:00
const seqDef * const sequences = seqStorePtr - > sequencesStart ;
2016-07-29 19:22:17 +00:00
const BYTE * const ofCodeTable = seqStorePtr - > ofCode ;
const BYTE * const llCodeTable = seqStorePtr - > llCode ;
const BYTE * const mlCodeTable = seqStorePtr - > mlCode ;
2015-11-23 12:34:21 +00:00
BYTE * const ostart = ( BYTE * ) dst ;
2016-03-15 00:24:33 +00:00
BYTE * const oend = ostart + dstCapacity ;
2016-03-18 11:37:45 +00:00
BYTE * op = ostart ;
2019-08-03 14:43:34 +00:00
size_t const nbSeq = ( size_t ) ( seqStorePtr - > sequences - seqStorePtr - > sequencesStart ) ;
2015-11-11 20:38:21 +00:00
BYTE * seqHead ;
2018-05-24 01:02:30 +00:00
BYTE * lastNCount = NULL ;
2017-07-15 02:11:58 +00:00
2019-07-03 20:40:37 +00:00
DEBUGLOG ( 5 , " ZSTD_compressSequences_internal (nbSeq=%zu) " , nbSeq ) ;
2017-12-13 00:51:00 +00:00
ZSTD_STATIC_ASSERT ( HUF_WORKSPACE_SIZE > = ( 1 < < MAX ( MLFSELog , LLFSELog ) ) ) ;
2015-11-11 20:38:21 +00:00
/* Compress literals */
2016-03-20 00:09:18 +00:00
{ const BYTE * const literals = seqStorePtr - > litStart ;
2019-08-03 14:43:34 +00:00
size_t const litSize = ( size_t ) ( seqStorePtr - > lit - literals ) ;
2018-03-11 12:21:53 +00:00
size_t const cSize = ZSTD_compressLiterals (
2018-05-22 23:06:33 +00:00
& prevEntropy - > huf , & nextEntropy - > huf ,
2019-02-13 22:59:22 +00:00
cctxParams - > cParams . strategy ,
ZSTD_disableLiteralsCompression ( cctxParams ) ,
2018-03-11 12:21:53 +00:00
op , dstCapacity ,
literals , litSize ,
2019-07-15 21:14:51 +00:00
entropyWorkspace , entropyWkspSize ,
2018-10-26 20:21:37 +00:00
bmi2 ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( cSize ) ;
2017-11-01 23:57:48 +00:00
assert ( cSize < = dstCapacity ) ;
2015-11-11 20:38:21 +00:00
op + = cSize ;
}
/* Sequences Header */
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( ( oend - op ) < 3 /*max nbSeq Size*/ + 1 /*seqHead*/ ,
dstSize_tooSmall ) ;
2019-08-15 14:41:34 +00:00
if ( nbSeq < 128 ) {
2017-11-01 23:57:48 +00:00
* op + + = ( BYTE ) nbSeq ;
2019-08-15 14:41:34 +00:00
} else if ( nbSeq < LONGNBSEQ ) {
op [ 0 ] = ( BYTE ) ( ( nbSeq > > 8 ) + 0x80 ) ;
op [ 1 ] = ( BYTE ) nbSeq ;
op + = 2 ;
} else {
op [ 0 ] = 0xFF ;
MEM_writeLE16 ( op + 1 , ( U16 ) ( nbSeq - LONGNBSEQ ) ) ;
op + = 3 ;
}
2019-07-02 22:45:47 +00:00
assert ( op < = oend ) ;
2017-12-13 00:51:00 +00:00
if ( nbSeq = = 0 ) {
2018-05-22 23:06:33 +00:00
/* Copy the old tables over as if we repeated them */
memcpy ( & nextEntropy - > fse , & prevEntropy - > fse , sizeof ( prevEntropy - > fse ) ) ;
2019-08-03 14:43:34 +00:00
return ( size_t ) ( op - ostart ) ;
2017-12-13 00:51:00 +00:00
}
2015-11-11 20:38:21 +00:00
2016-03-22 22:19:28 +00:00
/* seqHead : flags for FSE encoding type */
seqHead = op + + ;
2019-07-02 22:45:47 +00:00
assert ( op < = oend ) ;
2015-11-11 20:38:21 +00:00
2016-03-26 19:52:14 +00:00
/* convert length/distances into codes */
2016-07-29 19:22:17 +00:00
ZSTD_seqToCodes ( seqStorePtr ) ;
2017-10-13 09:36:16 +00:00
/* build CTable for Literal Lengths */
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
{ unsigned max = MaxLL ;
2019-07-15 21:14:51 +00:00
size_t const mostFrequent = HIST_countFast_wksp ( count , & max , llCodeTable , nbSeq , entropyWorkspace , entropyWkspSize ) ; /* can't fail */
2017-10-13 21:09:17 +00:00
DEBUGLOG ( 5 , " Building LL table " ) ;
2018-05-22 23:06:33 +00:00
nextEntropy - > fse . litlength_repeatMode = prevEntropy - > fse . litlength_repeatMode ;
2018-12-08 04:12:43 +00:00
LLtype = ZSTD_selectEncodingType ( & nextEntropy - > fse . litlength_repeatMode ,
count , max , mostFrequent , nbSeq ,
LLFSELog , prevEntropy - > fse . litlengthCTable ,
LL_defaultNorm , LL_defaultNormLog ,
ZSTD_defaultAllowed , strategy ) ;
2018-04-16 22:37:27 +00:00
assert ( set_basic < set_compressed & & set_rle < set_compressed ) ;
2018-05-22 23:06:33 +00:00
assert ( ! ( LLtype < set_compressed & & nextEntropy - > fse . litlength_repeatMode ! = FSE_repeat_none ) ) ; /* We don't copy tables */
2019-07-15 21:14:51 +00:00
{ size_t const countSize = ZSTD_buildCTable (
op , ( size_t ) ( oend - op ) ,
CTable_LitLength , LLFSELog , ( symbolEncodingType_e ) LLtype ,
count , max , llCodeTable , nbSeq ,
LL_defaultNorm , LL_defaultNormLog , MaxLL ,
prevEntropy - > fse . litlengthCTable ,
sizeof ( prevEntropy - > fse . litlengthCTable ) ,
entropyWorkspace , entropyWkspSize ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( countSize ) ;
2018-05-24 01:02:30 +00:00
if ( LLtype = = set_compressed )
lastNCount = op ;
2017-07-15 02:11:58 +00:00
op + = countSize ;
2019-07-02 22:45:47 +00:00
assert ( op < = oend ) ;
2016-03-22 11:14:26 +00:00
} }
2017-10-13 09:36:16 +00:00
/* build CTable for Offsets */
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
{ unsigned max = MaxOff ;
2019-07-15 21:14:51 +00:00
size_t const mostFrequent = HIST_countFast_wksp (
count , & max , ofCodeTable , nbSeq , entropyWorkspace , entropyWkspSize ) ; /* can't fail */
2017-09-18 23:54:53 +00:00
/* We can only use the basic table if max <= DefaultMaxOff, otherwise the offsets are too large */
2017-10-13 09:36:16 +00:00
ZSTD_defaultPolicy_e const defaultPolicy = ( max < = DefaultMaxOff ) ? ZSTD_defaultAllowed : ZSTD_defaultDisallowed ;
2017-10-13 21:09:17 +00:00
DEBUGLOG ( 5 , " Building OF table " ) ;
2018-05-22 23:06:33 +00:00
nextEntropy - > fse . offcode_repeatMode = prevEntropy - > fse . offcode_repeatMode ;
2018-12-08 04:12:43 +00:00
Offtype = ZSTD_selectEncodingType ( & nextEntropy - > fse . offcode_repeatMode ,
count , max , mostFrequent , nbSeq ,
OffFSELog , prevEntropy - > fse . offcodeCTable ,
OF_defaultNorm , OF_defaultNormLog ,
defaultPolicy , strategy ) ;
2018-05-22 23:06:33 +00:00
assert ( ! ( Offtype < set_compressed & & nextEntropy - > fse . offcode_repeatMode ! = FSE_repeat_none ) ) ; /* We don't copy tables */
2019-07-15 21:14:51 +00:00
{ size_t const countSize = ZSTD_buildCTable (
op , ( size_t ) ( oend - op ) ,
CTable_OffsetBits , OffFSELog , ( symbolEncodingType_e ) Offtype ,
count , max , ofCodeTable , nbSeq ,
OF_defaultNorm , OF_defaultNormLog , DefaultMaxOff ,
prevEntropy - > fse . offcodeCTable ,
sizeof ( prevEntropy - > fse . offcodeCTable ) ,
entropyWorkspace , entropyWkspSize ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( countSize ) ;
2018-05-24 01:02:30 +00:00
if ( Offtype = = set_compressed )
lastNCount = op ;
2017-07-15 02:11:58 +00:00
op + = countSize ;
2019-07-02 22:45:47 +00:00
assert ( op < = oend ) ;
2016-03-22 11:14:26 +00:00
} }
2017-10-13 09:36:16 +00:00
/* build CTable for MatchLengths */
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
{ unsigned max = MaxML ;
2019-07-15 21:14:51 +00:00
size_t const mostFrequent = HIST_countFast_wksp (
count , & max , mlCodeTable , nbSeq , entropyWorkspace , entropyWkspSize ) ; /* can't fail */
2018-11-06 01:50:30 +00:00
DEBUGLOG ( 5 , " Building ML table (remaining space : %i) " , ( int ) ( oend - op ) ) ;
2018-05-22 23:06:33 +00:00
nextEntropy - > fse . matchlength_repeatMode = prevEntropy - > fse . matchlength_repeatMode ;
2018-12-08 04:12:43 +00:00
MLtype = ZSTD_selectEncodingType ( & nextEntropy - > fse . matchlength_repeatMode ,
count , max , mostFrequent , nbSeq ,
MLFSELog , prevEntropy - > fse . matchlengthCTable ,
ML_defaultNorm , ML_defaultNormLog ,
ZSTD_defaultAllowed , strategy ) ;
2018-05-22 23:06:33 +00:00
assert ( ! ( MLtype < set_compressed & & nextEntropy - > fse . matchlength_repeatMode ! = FSE_repeat_none ) ) ; /* We don't copy tables */
2019-07-15 21:14:51 +00:00
{ size_t const countSize = ZSTD_buildCTable (
op , ( size_t ) ( oend - op ) ,
CTable_MatchLength , MLFSELog , ( symbolEncodingType_e ) MLtype ,
count , max , mlCodeTable , nbSeq ,
ML_defaultNorm , ML_defaultNormLog , MaxML ,
prevEntropy - > fse . matchlengthCTable ,
sizeof ( prevEntropy - > fse . matchlengthCTable ) ,
entropyWorkspace , entropyWkspSize ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( countSize ) ;
2018-05-24 01:02:30 +00:00
if ( MLtype = = set_compressed )
lastNCount = op ;
2017-07-15 02:11:58 +00:00
op + = countSize ;
2019-07-02 22:45:47 +00:00
assert ( op < = oend ) ;
2016-03-22 11:14:26 +00:00
} }
2015-11-11 20:38:21 +00:00
2016-03-22 22:19:28 +00:00
* seqHead = ( BYTE ) ( ( LLtype < < 6 ) + ( Offtype < < 4 ) + ( MLtype < < 2 ) ) ;
2015-11-11 20:38:21 +00:00
2017-10-13 09:36:16 +00:00
{ size_t const bitstreamSize = ZSTD_encodeSequences (
2019-08-03 14:43:34 +00:00
op , ( size_t ) ( oend - op ) ,
2017-10-13 09:36:16 +00:00
CTable_MatchLength , mlCodeTable ,
CTable_OffsetBits , ofCodeTable ,
CTable_LitLength , llCodeTable ,
sequences , nbSeq ,
2018-02-15 03:20:32 +00:00
longOffsets , bmi2 ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( bitstreamSize ) ;
2017-10-13 09:36:16 +00:00
op + = bitstreamSize ;
2019-07-02 22:45:47 +00:00
assert ( op < = oend ) ;
2018-05-24 01:02:30 +00:00
/* zstd versions <= 1.3.4 mistakenly report corruption when
2019-04-12 18:18:11 +00:00
* FSE_readNCount ( ) receives a buffer < 4 bytes .
2018-05-24 01:02:30 +00:00
* Fixed by https : //github.com/facebook/zstd/pull/1146.
* This can happen when the last set_compressed table present is 2
* bytes and the bitstream is only one byte .
* In this exceedingly rare case , we will simply emit an uncompressed
* block , since it isn ' t worth optimizing .
*/
if ( lastNCount & & ( op - lastNCount ) < 4 ) {
/* NCountSize >= 2 && bitstreamSize > 0 ==> lastCountSize == 3 */
assert ( op - lastNCount = = 3 ) ;
DEBUGLOG ( 5 , " Avoiding bug in zstd decoder in versions <= 1.3.4 by "
" emitting an uncompressed block. " ) ;
return 0 ;
}
2017-07-15 02:11:58 +00:00
}
2015-11-11 20:38:21 +00:00
2018-12-19 18:11:06 +00:00
DEBUGLOG ( 5 , " compressed block size : %u " , ( unsigned ) ( op - ostart ) ) ;
2019-08-03 14:43:34 +00:00
return ( size_t ) ( op - ostart ) ;
2017-08-03 21:05:01 +00:00
}
2015-11-11 20:38:21 +00:00
2018-10-26 20:21:37 +00:00
MEM_STATIC size_t
ZSTD_compressSequences ( seqStore_t * seqStorePtr ,
const ZSTD_entropyCTables_t * prevEntropy ,
ZSTD_entropyCTables_t * nextEntropy ,
const ZSTD_CCtx_params * cctxParams ,
void * dst , size_t dstCapacity ,
size_t srcSize ,
2019-07-15 21:14:51 +00:00
void * entropyWorkspace , size_t entropyWkspSize ,
2018-10-26 20:21:37 +00:00
int bmi2 )
2017-08-03 21:05:01 +00:00
{
2017-12-13 00:51:00 +00:00
size_t const cSize = ZSTD_compressSequences_internal (
2018-10-26 20:21:37 +00:00
seqStorePtr , prevEntropy , nextEntropy , cctxParams ,
dst , dstCapacity ,
2019-07-15 21:14:51 +00:00
entropyWorkspace , entropyWkspSize , bmi2 ) ;
2018-05-24 01:02:30 +00:00
if ( cSize = = 0 ) return 0 ;
2018-03-11 12:21:53 +00:00
/* When srcSize <= dstCapacity, there is enough space to write a raw uncompressed block.
* Since we ran out of space , block must be not compressible , so fall back to raw uncompressed block .
2017-08-03 21:05:01 +00:00
*/
2018-03-11 12:21:53 +00:00
if ( ( cSize = = ERROR ( dstSize_tooSmall ) ) & ( srcSize < = dstCapacity ) )
return 0 ; /* block not compressed */
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( cSize ) ;
2017-10-13 09:36:16 +00:00
2017-08-03 21:05:01 +00:00
/* Check compressibility */
2018-05-25 22:19:52 +00:00
{ size_t const maxCSize = srcSize - ZSTD_minGain ( srcSize , cctxParams - > cParams . strategy ) ;
2018-03-11 12:21:53 +00:00
if ( cSize > = maxCSize ) return 0 ; /* block not compressed */
}
2015-11-11 20:38:21 +00:00
2017-08-03 21:05:01 +00:00
return cSize ;
2015-11-11 20:38:21 +00:00
}
2017-06-20 21:11:49 +00:00
/* ZSTD_selectBlockCompressor() :
2017-09-07 00:56:01 +00:00
* Not static , but internal use only ( used by long distance matcher )
2017-06-20 21:11:49 +00:00
* assumption : strat is a valid strategy */
2018-05-02 21:34:34 +00:00
ZSTD_blockCompressor ZSTD_selectBlockCompressor ( ZSTD_strategy strat , ZSTD_dictMode_e dictMode )
2015-10-31 11:57:14 +00:00
{
2018-12-07 00:16:16 +00:00
static const ZSTD_blockCompressor blockCompressor [ 3 ] [ ZSTD_STRATEGY_MAX + 1 ] = {
2017-06-20 21:11:49 +00:00
{ ZSTD_compressBlock_fast /* default for 0 */ ,
2018-05-16 06:30:20 +00:00
ZSTD_compressBlock_fast ,
ZSTD_compressBlock_doubleFast ,
ZSTD_compressBlock_greedy ,
ZSTD_compressBlock_lazy ,
ZSTD_compressBlock_lazy2 ,
ZSTD_compressBlock_btlazy2 ,
ZSTD_compressBlock_btopt ,
2018-12-06 21:38:09 +00:00
ZSTD_compressBlock_btultra ,
2018-12-07 03:27:37 +00:00
ZSTD_compressBlock_btultra2 } ,
2017-06-20 21:11:49 +00:00
{ ZSTD_compressBlock_fast_extDict /* default for 0 */ ,
2018-05-16 06:30:20 +00:00
ZSTD_compressBlock_fast_extDict ,
ZSTD_compressBlock_doubleFast_extDict ,
ZSTD_compressBlock_greedy_extDict ,
ZSTD_compressBlock_lazy_extDict ,
ZSTD_compressBlock_lazy2_extDict ,
ZSTD_compressBlock_btlazy2_extDict ,
ZSTD_compressBlock_btopt_extDict ,
2018-12-06 21:38:09 +00:00
ZSTD_compressBlock_btultra_extDict ,
2018-05-16 06:30:20 +00:00
ZSTD_compressBlock_btultra_extDict } ,
2018-05-02 21:34:34 +00:00
{ ZSTD_compressBlock_fast_dictMatchState /* default for 0 */ ,
ZSTD_compressBlock_fast_dictMatchState ,
2018-05-04 19:59:27 +00:00
ZSTD_compressBlock_doubleFast_dictMatchState ,
2018-05-16 06:30:20 +00:00
ZSTD_compressBlock_greedy_dictMatchState ,
ZSTD_compressBlock_lazy_dictMatchState ,
ZSTD_compressBlock_lazy2_dictMatchState ,
ZSTD_compressBlock_btlazy2_dictMatchState ,
2018-06-13 21:10:37 +00:00
ZSTD_compressBlock_btopt_dictMatchState ,
2018-12-06 21:38:09 +00:00
ZSTD_compressBlock_btultra_dictMatchState ,
2018-06-13 21:10:37 +00:00
ZSTD_compressBlock_btultra_dictMatchState }
2015-11-29 01:38:09 +00:00
} ;
2018-05-09 17:14:20 +00:00
ZSTD_blockCompressor selectedCompressor ;
2017-05-12 23:29:19 +00:00
ZSTD_STATIC_ASSERT ( ( unsigned ) ZSTD_fast = = 1 ) ;
2017-10-13 09:36:16 +00:00
2018-12-06 23:00:52 +00:00
assert ( ZSTD_cParam_withinBounds ( ZSTD_c_strategy , strat ) ) ;
2018-12-06 21:38:09 +00:00
selectedCompressor = blockCompressor [ ( int ) dictMode ] [ ( int ) strat ] ;
2018-05-09 17:14:20 +00:00
assert ( selectedCompressor ! = NULL ) ;
return selectedCompressor ;
2015-10-31 11:57:14 +00:00
}
2017-07-28 22:51:33 +00:00
static void ZSTD_storeLastLiterals ( seqStore_t * seqStorePtr ,
const BYTE * anchor , size_t lastLLSize )
{
memcpy ( seqStorePtr - > lit , anchor , lastLLSize ) ;
seqStorePtr - > lit + = lastLLSize ;
}
2015-10-31 11:57:14 +00:00
2018-05-17 18:19:05 +00:00
void ZSTD_resetSeqStore ( seqStore_t * ssPtr )
2017-11-13 10:19:36 +00:00
{
ssPtr - > lit = ssPtr - > litStart ;
ssPtr - > sequences = ssPtr - > sequencesStart ;
ssPtr - > longLengthID = 0 ;
}
2019-06-24 22:26:07 +00:00
typedef enum { ZSTDbss_compress , ZSTDbss_noCompress } ZSTD_buildSeqStore_e ;
static size_t ZSTD_buildSeqStore ( ZSTD_CCtx * zc , const void * src , size_t srcSize )
2015-11-04 11:05:27 +00:00
{
2018-02-21 03:34:43 +00:00
ZSTD_matchState_t * const ms = & zc - > blockState . matchState ;
2019-06-24 22:26:07 +00:00
DEBUGLOG ( 5 , " ZSTD_buildSeqStore (srcSize=%zu) " , srcSize ) ;
2018-09-26 22:35:38 +00:00
assert ( srcSize < = ZSTD_BLOCKSIZE_MAX ) ;
2018-08-23 18:38:35 +00:00
/* Assert that we have correctly flushed the ctx params into the ms's copy */
2018-08-23 21:09:18 +00:00
ZSTD_assertEqualCParams ( zc - > appliedParams . cParams , ms - > cParams ) ;
2018-03-20 21:31:43 +00:00
if ( srcSize < MIN_CBLOCK_SIZE + ZSTD_blockHeaderSize + 1 ) {
2018-11-20 22:56:07 +00:00
ZSTD_ldm_skipSequences ( & zc - > externSeqStore , srcSize , zc - > appliedParams . cParams . minMatch ) ;
2019-06-24 22:26:07 +00:00
return ZSTDbss_noCompress ; /* don't even attempt compression below a certain srcSize */
2018-03-20 21:31:43 +00:00
}
2016-06-17 10:54:52 +00:00
ZSTD_resetSeqStore ( & ( zc - > seqStore ) ) ;
2019-02-15 18:29:03 +00:00
/* required for optimal parser to read stats from dictionary */
ms - > opt . symbolCosts = & zc - > blockState . prevCBlock - > entropy ;
/* tell the optimal parser how we expect to compress literals */
ms - > opt . literalCompressionMode = zc - > appliedParams . literalCompressionMode ;
2018-05-23 20:00:17 +00:00
/* a gap between an attached dict and the current window is not safe,
2018-12-19 18:11:06 +00:00
* they must remain adjacent ,
* and when that stops being the case , the dict must be unset */
2018-05-23 20:00:17 +00:00
assert ( ms - > dictMatchState = = NULL | | ms - > loadedDictEnd = = ms - > window . dictLimit ) ;
2017-10-13 09:36:16 +00:00
/* limited update after a very long match */
2018-02-24 00:48:18 +00:00
{ const BYTE * const base = ms - > window . base ;
2017-10-13 09:36:16 +00:00
const BYTE * const istart = ( const BYTE * ) src ;
const U32 current = ( U32 ) ( istart - base ) ;
2018-05-08 19:32:16 +00:00
if ( sizeof ( ptrdiff_t ) = = 8 ) assert ( istart - base < ( ptrdiff_t ) ( U32 ) ( - 1 ) ) ; /* ensure no overflow */
2018-02-21 03:34:43 +00:00
if ( current > ms - > nextToUpdate + 384 )
ms - > nextToUpdate = current - MIN ( 192 , ( U32 ) ( current - ms - > nextToUpdate - 384 ) ) ;
2017-10-13 09:36:16 +00:00
}
2018-01-26 01:35:49 +00:00
/* select and store sequences */
2018-05-02 21:34:34 +00:00
{ ZSTD_dictMode_e const dictMode = ZSTD_matchState_dictMode ( ms ) ;
2017-12-13 00:51:00 +00:00
size_t lastLLSize ;
2018-03-11 12:21:53 +00:00
{ int i ;
for ( i = 0 ; i < ZSTD_REP_NUM ; + + i )
zc - > blockState . nextCBlock - > rep [ i ] = zc - > blockState . prevCBlock - > rep [ i ] ;
}
2018-03-07 03:50:50 +00:00
if ( zc - > externSeqStore . pos < zc - > externSeqStore . size ) {
assert ( ! zc - > appliedParams . ldmParams . enableLdm ) ;
/* Updates ldmSeqStore.pos */
2018-02-21 03:34:43 +00:00
lastLLSize =
2018-03-07 03:50:50 +00:00
ZSTD_ldm_blockCompress ( & zc - > externSeqStore ,
2018-02-21 03:34:43 +00:00
ms , & zc - > seqStore ,
zc - > blockState . nextCBlock - > rep ,
2018-05-02 21:34:34 +00:00
src , srcSize ) ;
2018-03-07 03:50:50 +00:00
assert ( zc - > externSeqStore . pos < = zc - > externSeqStore . size ) ;
} else if ( zc - > appliedParams . ldmParams . enableLdm ) {
rawSeqStore_t ldmSeqStore = { NULL , 0 , 0 , 0 } ;
ldmSeqStore . seq = zc - > ldmSequences ;
ldmSeqStore . capacity = zc - > maxNbLdmSequences ;
/* Updates ldmSeqStore.size */
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_ldm_generateSequences ( & zc - > ldmState , & ldmSeqStore ,
2018-03-07 03:50:50 +00:00
& zc - > appliedParams . ldmParams ,
src , srcSize ) ) ;
/* Updates ldmSeqStore.pos */
lastLLSize =
ZSTD_ldm_blockCompress ( & ldmSeqStore ,
ms , & zc - > seqStore ,
zc - > blockState . nextCBlock - > rep ,
2018-05-02 21:34:34 +00:00
src , srcSize ) ;
2018-03-07 03:50:50 +00:00
assert ( ldmSeqStore . pos = = ldmSeqStore . size ) ;
2018-01-26 01:35:49 +00:00
} else { /* not long range mode */
2018-05-02 21:34:34 +00:00
ZSTD_blockCompressor const blockCompressor = ZSTD_selectBlockCompressor ( zc - > appliedParams . cParams . strategy , dictMode ) ;
2018-08-23 18:53:34 +00:00
lastLLSize = blockCompressor ( ms , & zc - > seqStore , zc - > blockState . nextCBlock - > rep , src , srcSize ) ;
2017-12-13 00:51:00 +00:00
}
2018-01-26 01:35:49 +00:00
{ const BYTE * const lastLiterals = ( const BYTE * ) src + srcSize - lastLLSize ;
ZSTD_storeLastLiterals ( & zc - > seqStore , lastLiterals , lastLLSize ) ;
} }
2019-06-24 22:26:07 +00:00
return ZSTDbss_compress ;
}
2019-09-10 03:04:46 +00:00
static void ZSTD_copyBlockSequences ( ZSTD_CCtx * zc )
{
const seqStore_t * seqStore = ZSTD_getSeqStore ( zc ) ;
const seqDef * seqs = seqStore - > sequencesStart ;
size_t seqsSize = seqStore - > sequences - seqs ;
ZSTD_Sequence * outSeqs = & zc - > seqCollector . seqStart [ zc - > seqCollector . seqIndex ] ;
2019-10-03 16:26:51 +00:00
size_t i ; size_t position ; int repIdx ;
2019-09-10 03:04:46 +00:00
assert ( zc - > seqCollector . seqIndex + 1 < zc - > seqCollector . maxSequences ) ;
2019-10-03 16:26:51 +00:00
for ( i = 0 , position = 0 ; i < seqsSize ; + + i ) {
outSeqs [ i ] . offset = seqs [ i ] . offset ;
2019-09-10 03:04:46 +00:00
outSeqs [ i ] . litLength = seqs [ i ] . litLength ;
2019-10-03 16:26:51 +00:00
outSeqs [ i ] . matchLength = seqs [ i ] . matchLength + MINMATCH ;
if ( i = = seqStore - > longLengthPos ) {
if ( seqStore - > longLengthID = = 1 ) {
outSeqs [ i ] . litLength + = 0x10000 ;
} else if ( seqStore - > longLengthID = = 2 ) {
outSeqs [ i ] . matchLength + = 0x10000 ;
}
}
if ( outSeqs [ i ] . offset < = ZSTD_REP_NUM ) {
outSeqs [ i ] . rep = outSeqs [ i ] . offset ;
repIdx = ( unsigned int ) i - outSeqs [ i ] . offset ;
if ( outSeqs [ i ] . litLength = = 0 ) {
if ( outSeqs [ i ] . offset < 3 ) {
- - repIdx ;
} else {
repIdx = ( unsigned int ) i - 1 ;
2019-09-10 17:06:02 +00:00
}
2019-10-03 16:26:51 +00:00
+ + outSeqs [ i ] . rep ;
2019-09-10 03:04:46 +00:00
}
2019-10-03 16:26:51 +00:00
assert ( repIdx > = - 3 ) ;
outSeqs [ i ] . offset = repIdx > = 0 ? outSeqs [ repIdx ] . offset : repStartValue [ - repIdx - 1 ] ;
if ( outSeqs [ i ] . rep = = 4 ) {
- - outSeqs [ i ] . offset ;
}
} else {
outSeqs [ i ] . offset - = ZSTD_REP_NUM ;
2019-09-10 03:04:46 +00:00
}
2019-10-03 16:26:51 +00:00
position + = outSeqs [ i ] . litLength ;
outSeqs [ i ] . matchPos = ( unsigned int ) position ;
position + = outSeqs [ i ] . matchLength ;
2019-09-10 03:04:46 +00:00
}
zc - > seqCollector . seqIndex + = seqsSize ;
}
size_t ZSTD_getSequences ( ZSTD_CCtx * zc , ZSTD_Sequence * outSeqs ,
size_t outSeqsSize , const void * src , size_t srcSize )
{
2019-09-20 22:50:58 +00:00
const size_t dstCapacity = ZSTD_compressBound ( srcSize ) ;
void * dst = ZSTD_malloc ( dstCapacity , ZSTD_defaultCMem ) ;
2019-09-10 03:04:46 +00:00
SeqCollector seqCollector ;
2019-09-23 22:08:18 +00:00
2019-09-23 22:42:16 +00:00
RETURN_ERROR_IF ( dst = = NULL , memory_allocation ) ;
2019-09-23 22:08:18 +00:00
2019-09-10 03:04:46 +00:00
seqCollector . collectSequences = 1 ;
seqCollector . seqStart = outSeqs ;
seqCollector . seqIndex = 0 ;
seqCollector . maxSequences = outSeqsSize ;
zc - > seqCollector = seqCollector ;
2019-09-20 22:50:58 +00:00
ZSTD_compress2 ( zc , dst , dstCapacity , src , srcSize ) ;
ZSTD_free ( dst , ZSTD_defaultCMem ) ;
2019-09-10 03:04:46 +00:00
return zc - > seqCollector . seqIndex ;
}
2019-08-22 19:12:44 +00:00
/* Returns true if the given block is a RLE block */
static int ZSTD_isRLE ( const BYTE * ip , size_t length ) {
size_t i ;
if ( length < 2 ) return 1 ;
for ( i = 1 ; i < length ; + + i ) {
if ( ip [ 0 ] ! = ip [ i ] ) return 0 ;
}
return 1 ;
}
2019-06-24 22:26:07 +00:00
static size_t ZSTD_compressBlock_internal ( ZSTD_CCtx * zc ,
void * dst , size_t dstCapacity ,
2019-08-26 21:54:29 +00:00
const void * src , size_t srcSize , U32 frame )
2019-06-24 22:26:07 +00:00
{
2019-08-26 22:30:41 +00:00
/* This the upper bound for the length of an rle block.
* This isn ' t the actual upper bound . Finding the real threshold
* needs further investigation .
2019-08-28 15:32:34 +00:00
*/
2019-08-26 16:00:22 +00:00
const U32 rleMaxLength = 25 ;
2019-06-24 22:26:07 +00:00
size_t cSize ;
2019-08-22 20:46:15 +00:00
const BYTE * ip = ( const BYTE * ) src ;
BYTE * op = ( BYTE * ) dst ;
2019-06-24 22:26:07 +00:00
DEBUGLOG ( 5 , " ZSTD_compressBlock_internal (dstCapacity=%u, dictLimit=%u, nextToUpdate=%u) " ,
2019-08-01 13:58:17 +00:00
( unsigned ) dstCapacity , ( unsigned ) zc - > blockState . matchState . window . dictLimit ,
( unsigned ) zc - > blockState . matchState . nextToUpdate ) ;
2019-06-24 22:26:07 +00:00
{ const size_t bss = ZSTD_buildSeqStore ( zc , src , srcSize ) ;
FORWARD_IF_ERROR ( bss ) ;
if ( bss = = ZSTDbss_noCompress ) { cSize = 0 ; goto out ; }
}
2018-01-26 01:35:49 +00:00
2019-09-16 15:26:21 +00:00
if ( zc - > seqCollector . collectSequences ) {
ZSTD_copyBlockSequences ( zc ) ;
return 0 ;
}
2018-01-26 01:35:49 +00:00
/* encode sequences and literals */
2018-09-28 19:09:28 +00:00
cSize = ZSTD_compressSequences ( & zc - > seqStore ,
& zc - > blockState . prevCBlock - > entropy , & zc - > blockState . nextCBlock - > entropy ,
& zc - > appliedParams ,
dst , dstCapacity ,
2018-10-26 20:21:37 +00:00
srcSize ,
zc - > entropyWorkspace , HUF_WORKSPACE_SIZE /* statically allocated in resetCCtx */ ,
zc - > bmi2 ) ;
2018-09-28 19:09:28 +00:00
2019-08-26 21:54:29 +00:00
if ( frame & &
2019-08-26 22:30:41 +00:00
/* We don't want to emit our first block as a RLE even if it qualifies because
2019-09-06 21:48:41 +00:00
* doing so will cause the decoder ( cli only ) to throw a " should consume all input error. "
2019-09-06 20:44:25 +00:00
* This is only an issue for zstd < = v1 .4 .3
2019-08-28 15:32:34 +00:00
*/
2019-08-26 22:30:41 +00:00
! zc - > isFirstBlock & &
2019-08-26 21:54:29 +00:00
cSize < rleMaxLength & &
ZSTD_isRLE ( ip , srcSize ) )
{
2019-08-22 19:12:44 +00:00
cSize = 1 ;
2019-08-22 20:46:15 +00:00
op [ 0 ] = ip [ 0 ] ;
2019-08-22 19:12:44 +00:00
}
2018-09-28 19:09:28 +00:00
out :
2019-08-22 19:12:44 +00:00
if ( ! ZSTD_isError ( cSize ) & & cSize > 1 ) {
2018-09-28 19:09:28 +00:00
/* confirm repcodes and entropy tables when emitting a compressed block */
ZSTD_compressedBlockState_t * const tmp = zc - > blockState . prevCBlock ;
zc - > blockState . prevCBlock = zc - > blockState . nextCBlock ;
zc - > blockState . nextCBlock = tmp ;
2017-12-13 00:51:00 +00:00
}
2018-09-28 19:09:28 +00:00
/* We check that dictionaries have offset codes available for the first
* block . After the first block , the offcode table might not have large
* enough codes to represent the offsets in the data .
*/
if ( zc - > blockState . prevCBlock - > entropy . fse . offcode_repeatMode = = FSE_repeat_valid )
zc - > blockState . prevCBlock - > entropy . fse . offcode_repeatMode = FSE_repeat_check ;
return cSize ;
2015-11-04 11:05:27 +00:00
}
2019-09-11 15:40:57 +00:00
static void ZSTD_overflowCorrectIfNeeded ( ZSTD_matchState_t * ms ,
ZSTD_cwksp * ws ,
ZSTD_CCtx_params const * params ,
void const * ip ,
void const * iend )
2019-06-21 22:39:43 +00:00
{
if ( ZSTD_window_needOverflowCorrection ( ms - > window , iend ) ) {
U32 const maxDist = ( U32 ) 1 < < params - > cParams . windowLog ;
U32 const cycleLog = ZSTD_cycleLog ( params - > cParams . chainLog , params - > cParams . strategy ) ;
U32 const correction = ZSTD_window_correctOverflow ( & ms - > window , cycleLog , maxDist , ip ) ;
ZSTD_STATIC_ASSERT ( ZSTD_CHAINLOG_MAX < = 30 ) ;
ZSTD_STATIC_ASSERT ( ZSTD_WINDOWLOG_MAX_32 < = 30 ) ;
ZSTD_STATIC_ASSERT ( ZSTD_WINDOWLOG_MAX < = 31 ) ;
2019-09-11 15:40:57 +00:00
ZSTD_cwksp_mark_tables_dirty ( ws ) ;
2019-06-21 22:39:43 +00:00
ZSTD_reduceIndex ( ms , params , correction ) ;
2019-09-11 15:40:57 +00:00
ZSTD_cwksp_mark_tables_clean ( ws ) ;
2019-06-21 22:39:43 +00:00
if ( ms - > nextToUpdate < correction ) ms - > nextToUpdate = 0 ;
else ms - > nextToUpdate - = correction ;
/* invalidate dictionaries on overflow correction */
ms - > loadedDictEnd = 0 ;
ms - > dictMatchState = NULL ;
}
}
2017-05-12 20:46:49 +00:00
/*! ZSTD_compress_frameChunk() :
2016-07-27 22:55:43 +00:00
* Compress a chunk of data into one or multiple blocks .
* All blocks will be terminated , all input will be consumed .
* Function will issue an error if there is not enough ` dstCapacity ` to hold the compressed content .
* Frame is supposed already started ( header already produced )
* @ return : compressed size , or an error code
*/
2017-05-12 20:46:49 +00:00
static size_t ZSTD_compress_frameChunk ( ZSTD_CCtx * cctx ,
2016-05-31 16:13:56 +00:00
void * dst , size_t dstCapacity ,
2016-07-27 22:55:43 +00:00
const void * src , size_t srcSize ,
U32 lastFrameChunk )
2015-10-22 14:31:46 +00:00
{
2016-05-31 16:13:56 +00:00
size_t blockSize = cctx - > blockSize ;
2015-10-22 14:31:46 +00:00
size_t remaining = srcSize ;
const BYTE * ip = ( const BYTE * ) src ;
BYTE * const ostart = ( BYTE * ) dst ;
BYTE * op = ostart ;
2017-09-22 21:04:39 +00:00
U32 const maxDist = ( U32 ) 1 < < cctx - > appliedParams . cParams . windowLog ;
2019-05-28 20:15:48 +00:00
assert ( cctx - > appliedParams . cParams . windowLog < = ZSTD_WINDOWLOG_MAX ) ;
2015-11-01 11:40:22 +00:00
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 5 , " ZSTD_compress_frameChunk (blockSize=%u) " , ( unsigned ) blockSize ) ;
2017-05-23 00:06:04 +00:00
if ( cctx - > appliedParams . fParams . checksumFlag & & srcSize )
2016-05-31 16:13:56 +00:00
XXH64_update ( & cctx - > xxhState , src , srcSize ) ;
2016-02-02 13:36:49 +00:00
while ( remaining ) {
2018-01-12 20:06:10 +00:00
ZSTD_matchState_t * const ms = & cctx - > blockState . matchState ;
2016-07-27 22:55:43 +00:00
U32 const lastBlock = lastFrameChunk & ( blockSize > = remaining ) ;
2015-10-22 14:31:46 +00:00
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( dstCapacity < ZSTD_blockHeaderSize + MIN_CBLOCK_SIZE ,
dstSize_tooSmall ,
" not enough space to store compressed block " ) ;
2015-11-04 17:19:39 +00:00
if ( remaining < blockSize ) blockSize = remaining ;
2015-11-13 10:27:46 +00:00
2019-09-11 15:40:57 +00:00
ZSTD_overflowCorrectIfNeeded (
ms , & cctx - > workspace , & cctx - > appliedParams , ip , ip + blockSize ) ;
2019-05-31 22:55:12 +00:00
ZSTD_checkDictValidity ( & ms - > window , ip + blockSize , maxDist , & ms - > loadedDictEnd , & ms - > dictMatchState ) ;
2019-05-31 23:52:37 +00:00
2019-05-28 21:12:16 +00:00
/* Ensure hash/chain table insertion resumes no sooner than lowlimit */
2018-02-24 00:48:18 +00:00
if ( ms - > nextToUpdate < ms - > window . lowLimit ) ms - > nextToUpdate = ms - > window . lowLimit ;
2015-11-13 10:27:46 +00:00
2017-10-13 09:36:16 +00:00
{ size_t cSize = ZSTD_compressBlock_internal ( cctx ,
op + ZSTD_blockHeaderSize , dstCapacity - ZSTD_blockHeaderSize ,
2019-08-26 21:54:29 +00:00
ip , blockSize , 1 /* frame */ ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( cSize ) ;
2017-10-13 09:36:16 +00:00
if ( cSize = = 0 ) { /* block is not compressible */
2018-09-27 23:06:02 +00:00
cSize = ZSTD_noCompressBlock ( op , dstCapacity , ip , blockSize , lastBlock ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( cSize ) ;
2017-10-13 09:36:16 +00:00
} else {
2019-08-22 19:12:44 +00:00
const U32 cBlockHeader = cSize = = 1 ?
lastBlock + ( ( ( U32 ) bt_rle ) < < 1 ) + ( U32 ) ( blockSize < < 3 ) :
lastBlock + ( ( ( U32 ) bt_compressed ) < < 1 ) + ( U32 ) ( cSize < < 3 ) ;
2019-08-22 20:46:15 +00:00
MEM_writeLE24 ( op , cBlockHeader ) ;
2017-10-13 09:36:16 +00:00
cSize + = ZSTD_blockHeaderSize ;
}
2015-10-22 14:31:46 +00:00
2017-10-13 09:36:16 +00:00
ip + = blockSize ;
assert ( remaining > = blockSize ) ;
remaining - = blockSize ;
op + = cSize ;
assert ( dstCapacity > = cSize ) ;
dstCapacity - = cSize ;
2019-08-26 22:30:41 +00:00
cctx - > isFirstBlock = 0 ;
2017-12-14 02:50:05 +00:00
DEBUGLOG ( 5 , " ZSTD_compress_frameChunk: adding a block of size %u " ,
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
( unsigned ) cSize ) ;
2017-10-13 09:36:16 +00:00
} }
2015-10-22 14:31:46 +00:00
2016-07-28 13:29:08 +00:00
if ( lastFrameChunk & & ( op > ostart ) ) cctx - > stage = ZSTDcs_ending ;
2019-05-28 20:15:48 +00:00
return ( size_t ) ( op - ostart ) ;
2015-10-22 14:31:46 +00:00
}
2016-04-12 13:52:33 +00:00
static size_t ZSTD_writeFrameHeader ( void * dst , size_t dstCapacity ,
2019-09-05 09:58:30 +00:00
const ZSTD_CCtx_params * params , U64 pledgedSrcSize , U32 dictID )
2016-04-12 13:52:33 +00:00
{ BYTE * const op = ( BYTE * ) dst ;
2017-04-27 07:29:04 +00:00
U32 const dictIDSizeCodeLength = ( dictID > 0 ) + ( dictID > = 256 ) + ( dictID > = 65536 ) ; /* 0-3 */
2019-09-05 09:58:30 +00:00
U32 const dictIDSizeCode = params - > fParams . noDictIDFlag ? 0 : dictIDSizeCodeLength ; /* 0-3 */
U32 const checksumFlag = params - > fParams . checksumFlag > 0 ;
U32 const windowSize = ( U32 ) 1 < < params - > cParams . windowLog ;
U32 const singleSegment = params - > fParams . contentSizeFlag & & ( windowSize > = pledgedSrcSize ) ;
BYTE const windowLogByte = ( BYTE ) ( ( params - > cParams . windowLog - ZSTD_WINDOWLOG_ABSOLUTEMIN ) < < 3 ) ;
U32 const fcsCode = params - > fParams . contentSizeFlag ?
2017-05-24 20:50:10 +00:00
( pledgedSrcSize > = 256 ) + ( pledgedSrcSize > = 65536 + 256 ) + ( pledgedSrcSize > = 0xFFFFFFFFU ) : 0 ; /* 0-3 */
2019-04-12 18:18:11 +00:00
BYTE const frameHeaderDescriptionByte = ( BYTE ) ( dictIDSizeCode + ( checksumFlag < < 2 ) + ( singleSegment < < 5 ) + ( fcsCode < < 6 ) ) ;
2017-09-25 21:26:26 +00:00
size_t pos = 0 ;
2016-05-29 03:01:04 +00:00
2019-09-05 09:58:30 +00:00
assert ( ! ( params - > fParams . contentSizeFlag & & pledgedSrcSize = = ZSTD_CONTENTSIZE_UNKNOWN ) ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( dstCapacity < ZSTD_FRAMEHEADERSIZE_MAX , dstSize_tooSmall ) ;
2017-09-25 21:26:26 +00:00
DEBUGLOG ( 4 , " ZSTD_writeFrameHeader : dictIDFlag : %u ; dictID : %u ; dictIDSizeCode : %u " ,
2019-09-05 10:17:17 +00:00
! params - > fParams . noDictIDFlag , ( unsigned ) dictID , ( unsigned ) dictIDSizeCode ) ;
2016-04-12 13:52:33 +00:00
2019-09-05 09:58:30 +00:00
if ( params - > format = = ZSTD_f_zstd1 ) {
2017-09-25 21:26:26 +00:00
MEM_writeLE32 ( dst , ZSTD_MAGICNUMBER ) ;
pos = 4 ;
}
2019-04-12 18:18:11 +00:00
op [ pos + + ] = frameHeaderDescriptionByte ;
2016-07-26 17:42:19 +00:00
if ( ! singleSegment ) op [ pos + + ] = windowLogByte ;
2016-05-29 03:01:04 +00:00
switch ( dictIDSizeCode )
{
2017-06-01 16:44:54 +00:00
default : assert ( 0 ) ; /* impossible */
2016-05-29 03:01:04 +00:00
case 0 : break ;
case 1 : op [ pos ] = ( BYTE ) ( dictID ) ; pos + + ; break ;
2016-07-27 19:21:36 +00:00
case 2 : MEM_writeLE16 ( op + pos , ( U16 ) dictID ) ; pos + = 2 ; break ;
2016-05-29 03:01:04 +00:00
case 3 : MEM_writeLE32 ( op + pos , dictID ) ; pos + = 4 ; break ;
}
2016-06-05 22:26:38 +00:00
switch ( fcsCode )
2016-04-12 13:52:33 +00:00
{
2017-06-01 16:44:54 +00:00
default : assert ( 0 ) ; /* impossible */
2016-07-26 17:42:19 +00:00
case 0 : if ( singleSegment ) op [ pos + + ] = ( BYTE ) ( pledgedSrcSize ) ; break ;
2016-06-05 22:26:38 +00:00
case 1 : MEM_writeLE16 ( op + pos , ( U16 ) ( pledgedSrcSize - 256 ) ) ; pos + = 2 ; break ;
case 2 : MEM_writeLE32 ( op + pos , ( U32 ) ( pledgedSrcSize ) ) ; pos + = 4 ; break ;
2016-05-29 03:01:04 +00:00
case 3 : MEM_writeLE64 ( op + pos , ( U64 ) ( pledgedSrcSize ) ) ; pos + = 8 ; break ;
2016-04-12 13:52:33 +00:00
}
2016-05-29 03:01:04 +00:00
return pos ;
2016-04-12 13:52:33 +00:00
}
2018-01-26 01:35:49 +00:00
/* ZSTD_writeLastEmptyBlock() :
* output an empty Block with end - of - frame mark to complete a frame
* @ return : size of data written into ` dst ` ( = = ZSTD_blockHeaderSize ( defined in zstd_internal . h ) )
2019-04-12 18:18:11 +00:00
* or an error code if ` dstCapacity ` is too small ( < ZSTD_blockHeaderSize )
2018-01-26 01:35:49 +00:00
*/
size_t ZSTD_writeLastEmptyBlock ( void * dst , size_t dstCapacity )
{
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( dstCapacity < ZSTD_blockHeaderSize , dstSize_tooSmall ) ;
2018-01-26 01:45:18 +00:00
{ U32 const cBlockHeader24 = 1 /*lastBlock*/ + ( ( ( U32 ) bt_raw ) < < 1 ) ; /* 0 size */
MEM_writeLE24 ( dst , cBlockHeader24 ) ;
return ZSTD_blockHeaderSize ;
}
2018-01-26 01:35:49 +00:00
}
2018-03-07 03:50:50 +00:00
size_t ZSTD_referenceExternalSequences ( ZSTD_CCtx * cctx , rawSeq * seq , size_t nbSeq )
{
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > stage ! = ZSTDcs_init , stage_wrong ) ;
RETURN_ERROR_IF ( cctx - > appliedParams . ldmParams . enableLdm ,
parameter_unsupported ) ;
2018-03-07 03:50:50 +00:00
cctx - > externSeqStore . seq = seq ;
cctx - > externSeqStore . size = nbSeq ;
cctx - > externSeqStore . capacity = nbSeq ;
cctx - > externSeqStore . pos = 0 ;
return 0 ;
}
2016-04-12 13:52:33 +00:00
2016-08-02 12:26:00 +00:00
static size_t ZSTD_compressContinue_internal ( ZSTD_CCtx * cctx ,
2016-03-23 21:31:57 +00:00
void * dst , size_t dstCapacity ,
2016-01-09 00:08:23 +00:00
const void * src , size_t srcSize ,
2016-07-27 22:55:43 +00:00
U32 frame , U32 lastFrameChunk )
2015-10-22 14:31:46 +00:00
{
2018-09-26 22:35:38 +00:00
ZSTD_matchState_t * const ms = & cctx - > blockState . matchState ;
2016-04-12 13:52:33 +00:00
size_t fhSize = 0 ;
2016-01-07 14:35:18 +00:00
2018-01-16 23:28:43 +00:00
DEBUGLOG ( 5 , " ZSTD_compressContinue_internal, stage: %u, srcSize: %u " ,
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
cctx - > stage , ( unsigned ) srcSize ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > stage = = ZSTDcs_created , stage_wrong ,
" missing init (ZSTD_compressBegin) " ) ;
2016-07-27 19:21:36 +00:00
2016-08-02 12:26:00 +00:00
if ( frame & & ( cctx - > stage = = ZSTDcs_init ) ) {
2019-09-05 09:58:30 +00:00
fhSize = ZSTD_writeFrameHeader ( dst , dstCapacity , & cctx - > appliedParams ,
2017-08-23 17:24:19 +00:00
cctx - > pledgedSrcSizePlusOne - 1 , cctx - > dictID ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( fhSize ) ;
2019-05-28 20:15:48 +00:00
assert ( fhSize < = dstCapacity ) ;
2016-04-12 13:52:33 +00:00
dstCapacity - = fhSize ;
dst = ( char * ) dst + fhSize ;
2016-08-02 12:26:00 +00:00
cctx - > stage = ZSTDcs_ongoing ;
2016-01-07 14:35:18 +00:00
}
2015-10-22 14:31:46 +00:00
2017-11-17 20:55:37 +00:00
if ( ! srcSize ) return fhSize ; /* do not generate an empty block if no input */
2018-02-24 00:48:18 +00:00
if ( ! ZSTD_window_update ( & ms - > window , src , srcSize ) ) {
ms - > nextToUpdate = ms - > window . dictLimit ;
}
2018-09-27 01:06:53 +00:00
if ( cctx - > appliedParams . ldmParams . enableLdm ) {
2018-02-24 02:17:44 +00:00
ZSTD_window_update ( & cctx - > ldmState . window , src , srcSize ) ;
2018-09-27 01:06:53 +00:00
}
if ( ! frame ) {
/* overflow check and correction for block mode */
2019-09-11 15:40:57 +00:00
ZSTD_overflowCorrectIfNeeded (
ms , & cctx - > workspace , & cctx - > appliedParams ,
src , ( BYTE const * ) src + srcSize ) ;
2018-09-27 01:06:53 +00:00
}
2015-11-13 10:27:46 +00:00
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 5 , " ZSTD_compressContinue_internal (blockSize=%u) " , ( unsigned ) cctx - > blockSize ) ;
2017-11-17 20:55:37 +00:00
{ size_t const cSize = frame ?
2017-05-12 20:46:49 +00:00
ZSTD_compress_frameChunk ( cctx , dst , dstCapacity , src , srcSize , lastFrameChunk ) :
2019-08-26 21:54:29 +00:00
ZSTD_compressBlock_internal ( cctx , dst , dstCapacity , src , srcSize , 0 /* frame */ ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( cSize ) ;
2017-04-12 01:34:02 +00:00
cctx - > consumedSrcSize + = srcSize ;
2018-01-18 00:39:02 +00:00
cctx - > producedCSize + = ( cSize + fhSize ) ;
2018-04-12 23:02:03 +00:00
assert ( ! ( cctx - > appliedParams . fParams . contentSizeFlag & & cctx - > pledgedSrcSizePlusOne = = 0 ) ) ;
if ( cctx - > pledgedSrcSizePlusOne ! = 0 ) { /* control src size */
ZSTD_STATIC_ASSERT ( ZSTD_CONTENTSIZE_UNKNOWN = = ( unsigned long long ) - 1 ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF (
cctx - > consumedSrcSize + 1 > cctx - > pledgedSrcSizePlusOne ,
srcSize_wrong ,
" error : pledgedSrcSize = %u, while realSrcSize >= %u " ,
( unsigned ) cctx - > pledgedSrcSizePlusOne - 1 ,
( unsigned ) cctx - > consumedSrcSize ) ;
2018-02-01 20:04:05 +00:00
}
2016-04-12 13:52:33 +00:00
return cSize + fhSize ;
2017-11-17 20:55:37 +00:00
}
2015-10-22 14:31:46 +00:00
}
2016-07-27 23:17:22 +00:00
size_t ZSTD_compressContinue ( ZSTD_CCtx * cctx ,
2016-03-23 21:31:57 +00:00
void * dst , size_t dstCapacity ,
2016-01-09 00:08:23 +00:00
const void * src , size_t srcSize )
{
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 5 , " ZSTD_compressContinue (srcSize=%u) " , ( unsigned ) srcSize ) ;
2017-04-12 01:34:02 +00:00
return ZSTD_compressContinue_internal ( cctx , dst , dstCapacity , src , srcSize , 1 /* frame mode */ , 0 /* last chunk */ ) ;
2016-07-27 23:17:22 +00:00
}
2017-05-19 17:51:30 +00:00
size_t ZSTD_getBlockSize ( const ZSTD_CCtx * cctx )
2016-01-09 00:08:23 +00:00
{
2018-03-20 23:35:14 +00:00
ZSTD_compressionParameters const cParams = cctx - > appliedParams . cParams ;
assert ( ! ZSTD_checkCParams ( cParams ) ) ;
2017-09-22 21:04:39 +00:00
return MIN ( ZSTD_BLOCKSIZE_MAX , ( U32 ) 1 < < cParams . windowLog ) ;
2016-07-18 14:52:10 +00:00
}
size_t ZSTD_compressBlock ( ZSTD_CCtx * cctx , void * dst , size_t dstCapacity , const void * src , size_t srcSize )
{
2019-08-03 14:43:34 +00:00
DEBUGLOG ( 5 , " ZSTD_compressBlock: srcSize = %u " , ( unsigned ) srcSize ) ;
{ size_t const blockSizeMax = ZSTD_getBlockSize ( cctx ) ;
RETURN_ERROR_IF ( srcSize > blockSizeMax , srcSize_wrong ) ; }
2018-09-26 22:35:38 +00:00
2017-04-12 01:34:02 +00:00
return ZSTD_compressContinue_internal ( cctx , dst , dstCapacity , src , srcSize , 0 /* frame mode */ , 0 /* last chunk */ ) ;
2016-01-09 00:08:23 +00:00
}
2017-03-24 19:46:46 +00:00
/*! ZSTD_loadDictionaryContent() :
* @ return : 0 , or an error code
*/
2018-04-02 21:41:30 +00:00
static size_t ZSTD_loadDictionaryContent ( ZSTD_matchState_t * ms ,
2019-09-11 15:40:57 +00:00
ZSTD_cwksp * ws ,
2018-04-02 21:41:30 +00:00
ZSTD_CCtx_params const * params ,
const void * src , size_t srcSize ,
ZSTD_dictTableLoadMethod_e dtlm )
2015-12-04 16:16:37 +00:00
{
2019-06-21 22:39:43 +00:00
const BYTE * ip = ( const BYTE * ) src ;
2015-12-04 16:16:37 +00:00
const BYTE * const iend = ip + srcSize ;
2018-02-24 00:48:18 +00:00
ZSTD_window_update ( & ms - > window , src , srcSize ) ;
2018-03-16 01:52:38 +00:00
ms - > loadedDictEnd = params - > forceWindow ? 0 : ( U32 ) ( iend - ms - > window . base ) ;
2017-12-13 00:51:00 +00:00
2018-08-23 18:57:54 +00:00
/* Assert that we the ms params match the params we're being given */
2018-08-23 21:09:18 +00:00
ZSTD_assertEqualCParams ( params - > cParams , ms - > cParams ) ;
2018-08-23 18:57:54 +00:00
2016-07-27 19:05:12 +00:00
if ( srcSize < = HASH_READ_SIZE ) return 0 ;
2015-12-04 16:16:37 +00:00
2019-06-21 22:39:43 +00:00
while ( iend - ip > HASH_READ_SIZE ) {
2019-08-03 14:43:34 +00:00
size_t const remaining = ( size_t ) ( iend - ip ) ;
2019-06-21 22:39:43 +00:00
size_t const chunk = MIN ( remaining , ZSTD_CHUNKSIZE_MAX ) ;
const BYTE * const ichunk = ip + chunk ;
2016-07-12 07:47:31 +00:00
2019-09-11 15:40:57 +00:00
ZSTD_overflowCorrectIfNeeded ( ms , ws , params , ip , ichunk ) ;
2015-12-04 16:16:37 +00:00
2019-06-21 22:39:43 +00:00
switch ( params - > cParams . strategy )
{
case ZSTD_fast :
ZSTD_fillHashTable ( ms , ichunk , dtlm ) ;
break ;
case ZSTD_dfast :
ZSTD_fillDoubleHashTable ( ms , ichunk , dtlm ) ;
break ;
2015-12-04 16:16:37 +00:00
2019-06-21 22:39:43 +00:00
case ZSTD_greedy :
case ZSTD_lazy :
case ZSTD_lazy2 :
if ( chunk > = HASH_READ_SIZE )
ZSTD_insertAndFindFirstIndex ( ms , ichunk - HASH_READ_SIZE ) ;
break ;
case ZSTD_btlazy2 : /* we want the dictionary table fully sorted */
case ZSTD_btopt :
case ZSTD_btultra :
case ZSTD_btultra2 :
if ( chunk > = HASH_READ_SIZE )
ZSTD_updateTree ( ms , ichunk - HASH_READ_SIZE , ichunk ) ;
break ;
default :
assert ( 0 ) ; /* not possible : not a valid strategy id */
}
ip = ichunk ;
2015-12-04 16:16:37 +00:00
}
2018-02-24 00:48:18 +00:00
ms - > nextToUpdate = ( U32 ) ( iend - ms - > window . base ) ;
2015-12-04 16:16:37 +00:00
return 0 ;
}
2015-10-22 14:31:46 +00:00
2016-10-20 00:22:08 +00:00
/* Dictionaries that assign zero probability to symbols that show up causes problems
when FSE encoding . Refuse dictionaries that assign zero probability to symbols
that we may encounter during compression .
NOTE : This behavior is not standard and could be improved in the future . */
static size_t ZSTD_checkDictNCount ( short * normalizedCounter , unsigned dictMaxSymbolValue , unsigned maxSymbolValue ) {
U32 s ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( dictMaxSymbolValue < maxSymbolValue , dictionary_corrupted ) ;
2016-10-20 00:22:08 +00:00
for ( s = 0 ; s < = maxSymbolValue ; + + s ) {
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( normalizedCounter [ s ] = = 0 , dictionary_corrupted ) ;
2016-10-20 00:22:08 +00:00
}
return 0 ;
}
2016-01-26 02:14:20 +00:00
/* Dictionary format :
2017-03-23 01:09:11 +00:00
* See :
* https : //github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md#dictionary-format
*/
2017-03-24 19:46:46 +00:00
/*! ZSTD_loadZstdDictionary() :
2017-12-13 00:51:00 +00:00
* @ return : dictID , or an error code
2017-03-24 19:46:46 +00:00
* assumptions : magic number supposed already checked
* dictSize supposed > 8
2017-03-23 01:09:11 +00:00
*/
2018-04-02 21:41:30 +00:00
static size_t ZSTD_loadZstdDictionary ( ZSTD_compressedBlockState_t * bs ,
ZSTD_matchState_t * ms ,
2019-09-11 15:40:57 +00:00
ZSTD_cwksp * ws ,
2018-04-02 21:41:30 +00:00
ZSTD_CCtx_params const * params ,
const void * dict , size_t dictSize ,
ZSTD_dictTableLoadMethod_e dtlm ,
void * workspace )
2016-01-26 02:14:20 +00:00
{
2016-06-15 11:53:34 +00:00
const BYTE * dictPtr = ( const BYTE * ) dict ;
const BYTE * const dictEnd = dictPtr + dictSize ;
2016-10-20 00:22:08 +00:00
short offcodeNCount [ MaxOff + 1 ] ;
unsigned offcodeMaxValue = MaxOff ;
2017-12-13 00:51:00 +00:00
size_t dictID ;
2017-07-13 02:08:24 +00:00
2017-12-13 00:51:00 +00:00
ZSTD_STATIC_ASSERT ( HUF_WORKSPACE_SIZE > = ( 1 < < MAX ( MLFSELog , LLFSELog ) ) ) ;
2018-05-08 19:32:16 +00:00
assert ( dictSize > 8 ) ;
assert ( MEM_readLE32 ( dictPtr ) = = ZSTD_MAGIC_DICTIONARY ) ;
2016-05-31 16:13:56 +00:00
2017-03-23 01:09:11 +00:00
dictPtr + = 4 ; /* skip magic number */
2017-12-13 00:51:00 +00:00
dictID = params - > fParams . noDictIDFlag ? 0 : MEM_readLE32 ( dictPtr ) ;
2017-03-23 01:09:11 +00:00
dictPtr + = 4 ;
2017-10-03 20:22:13 +00:00
{ unsigned maxSymbolValue = 255 ;
2018-05-22 23:06:33 +00:00
size_t const hufHeaderSize = HUF_readCTable ( ( HUF_CElt * ) bs - > entropy . huf . CTable , & maxSymbolValue , dictPtr , dictEnd - dictPtr ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( HUF_isError ( hufHeaderSize ) , dictionary_corrupted ) ;
RETURN_ERROR_IF ( maxSymbolValue < 255 , dictionary_corrupted ) ;
2016-06-15 11:53:34 +00:00
dictPtr + = hufHeaderSize ;
2016-05-31 16:13:56 +00:00
}
2016-10-20 00:22:08 +00:00
{ unsigned offcodeLog ;
2016-06-15 11:53:34 +00:00
size_t const offcodeHeaderSize = FSE_readNCount ( offcodeNCount , & offcodeMaxValue , & offcodeLog , dictPtr , dictEnd - dictPtr ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( FSE_isError ( offcodeHeaderSize ) , dictionary_corrupted ) ;
RETURN_ERROR_IF ( offcodeLog > OffFSELog , dictionary_corrupted ) ;
2016-10-20 00:22:08 +00:00
/* Defer checking offcodeMaxValue because we need to know the size of the dictionary content */
2018-05-11 00:59:12 +00:00
/* fill all offset symbols to avoid garbage at end of table */
2019-01-28 22:27:29 +00:00
RETURN_ERROR_IF ( FSE_isError ( FSE_buildCTable_wksp (
bs - > entropy . fse . offcodeCTable ,
offcodeNCount , MaxOff , offcodeLog ,
workspace , HUF_WORKSPACE_SIZE ) ) ,
dictionary_corrupted ) ;
2016-06-15 11:53:34 +00:00
dictPtr + = offcodeHeaderSize ;
2016-05-31 16:13:56 +00:00
}
{ short matchlengthNCount [ MaxML + 1 ] ;
Fix buffer overrun in ZSTD_loadDictEntropyStats()
The table log set by `FSE_readNCount()` was not checked in
`ZSTD_loadDictEntropyStats()`. This caused `FSE_buildCTable()`
to stack/heap overflow in a few places.
The benchmarks look good, there is no obvious compression performance regression:
> ./zstds/zstd.opt.0 -i10 -b1 -e10 ~/bench/silesia.tar
1#silesia.tar : 211988480 -> 73656930 (2.878), 271.6 MB/s , 716.8 MB/s
2#silesia.tar : 211988480 -> 70162842 (3.021), 204.8 MB/s , 671.1 MB/s
3#silesia.tar : 211988480 -> 66997986 (3.164), 156.8 MB/s , 658.6 MB/s
4#silesia.tar : 211988480 -> 66002591 (3.212), 136.4 MB/s , 665.3 MB/s
5#silesia.tar : 211988480 -> 65008480 (3.261), 98.9 MB/s , 647.0 MB/s
6#silesia.tar : 211988480 -> 62979643 (3.366), 65.2 MB/s , 670.4 MB/s
7#silesia.tar : 211988480 -> 61974560 (3.421), 44.9 MB/s , 688.2 MB/s
8#silesia.tar : 211988480 -> 61028308 (3.474), 32.4 MB/s , 711.9 MB/s
9#silesia.tar : 211988480 -> 60416751 (3.509), 21.1 MB/s , 718.1 MB/s
10#silesia.tar : 211988480 -> 60174239 (3.523), 22.2 MB/s , 721.8 MB/s
> ./compress_zstds/zstd.opt.1 -i10 -b1 -e10 ~/bench/silesia.tar
1#silesia.tar : 211988480 -> 73656930 (2.878), 273.8 MB/s , 722.0 MB/s
2#silesia.tar : 211988480 -> 70162842 (3.021), 203.2 MB/s , 666.6 MB/s
3#silesia.tar : 211988480 -> 66997986 (3.164), 157.4 MB/s , 666.5 MB/s
4#silesia.tar : 211988480 -> 66002591 (3.212), 132.1 MB/s , 661.9 MB/s
5#silesia.tar : 211988480 -> 65008480 (3.261), 96.8 MB/s , 641.6 MB/s
6#silesia.tar : 211988480 -> 62979643 (3.366), 63.1 MB/s , 677.0 MB/s
7#silesia.tar : 211988480 -> 61974560 (3.421), 44.3 MB/s , 678.2 MB/s
8#silesia.tar : 211988480 -> 61028308 (3.474), 33.1 MB/s , 708.9 MB/s
9#silesia.tar : 211988480 -> 60416751 (3.509), 21.5 MB/s , 710.1 MB/s
10#silesia.tar : 211988480 -> 60174239 (3.523), 21.9 MB/s , 723.9 MB/s
2016-10-17 23:55:52 +00:00
unsigned matchlengthMaxValue = MaxML , matchlengthLog ;
2016-06-15 11:53:34 +00:00
size_t const matchlengthHeaderSize = FSE_readNCount ( matchlengthNCount , & matchlengthMaxValue , & matchlengthLog , dictPtr , dictEnd - dictPtr ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( FSE_isError ( matchlengthHeaderSize ) , dictionary_corrupted ) ;
RETURN_ERROR_IF ( matchlengthLog > MLFSELog , dictionary_corrupted ) ;
2016-10-20 00:22:08 +00:00
/* Every match length code must have non-zero probability */
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_checkDictNCount ( matchlengthNCount , matchlengthMaxValue , MaxML ) ) ;
2019-01-28 22:27:29 +00:00
RETURN_ERROR_IF ( FSE_isError ( FSE_buildCTable_wksp (
bs - > entropy . fse . matchlengthCTable ,
matchlengthNCount , matchlengthMaxValue , matchlengthLog ,
workspace , HUF_WORKSPACE_SIZE ) ) ,
dictionary_corrupted ) ;
2016-06-15 11:53:34 +00:00
dictPtr + = matchlengthHeaderSize ;
2016-05-31 16:13:56 +00:00
}
{ short litlengthNCount [ MaxLL + 1 ] ;
Fix buffer overrun in ZSTD_loadDictEntropyStats()
The table log set by `FSE_readNCount()` was not checked in
`ZSTD_loadDictEntropyStats()`. This caused `FSE_buildCTable()`
to stack/heap overflow in a few places.
The benchmarks look good, there is no obvious compression performance regression:
> ./zstds/zstd.opt.0 -i10 -b1 -e10 ~/bench/silesia.tar
1#silesia.tar : 211988480 -> 73656930 (2.878), 271.6 MB/s , 716.8 MB/s
2#silesia.tar : 211988480 -> 70162842 (3.021), 204.8 MB/s , 671.1 MB/s
3#silesia.tar : 211988480 -> 66997986 (3.164), 156.8 MB/s , 658.6 MB/s
4#silesia.tar : 211988480 -> 66002591 (3.212), 136.4 MB/s , 665.3 MB/s
5#silesia.tar : 211988480 -> 65008480 (3.261), 98.9 MB/s , 647.0 MB/s
6#silesia.tar : 211988480 -> 62979643 (3.366), 65.2 MB/s , 670.4 MB/s
7#silesia.tar : 211988480 -> 61974560 (3.421), 44.9 MB/s , 688.2 MB/s
8#silesia.tar : 211988480 -> 61028308 (3.474), 32.4 MB/s , 711.9 MB/s
9#silesia.tar : 211988480 -> 60416751 (3.509), 21.1 MB/s , 718.1 MB/s
10#silesia.tar : 211988480 -> 60174239 (3.523), 22.2 MB/s , 721.8 MB/s
> ./compress_zstds/zstd.opt.1 -i10 -b1 -e10 ~/bench/silesia.tar
1#silesia.tar : 211988480 -> 73656930 (2.878), 273.8 MB/s , 722.0 MB/s
2#silesia.tar : 211988480 -> 70162842 (3.021), 203.2 MB/s , 666.6 MB/s
3#silesia.tar : 211988480 -> 66997986 (3.164), 157.4 MB/s , 666.5 MB/s
4#silesia.tar : 211988480 -> 66002591 (3.212), 132.1 MB/s , 661.9 MB/s
5#silesia.tar : 211988480 -> 65008480 (3.261), 96.8 MB/s , 641.6 MB/s
6#silesia.tar : 211988480 -> 62979643 (3.366), 63.1 MB/s , 677.0 MB/s
7#silesia.tar : 211988480 -> 61974560 (3.421), 44.3 MB/s , 678.2 MB/s
8#silesia.tar : 211988480 -> 61028308 (3.474), 33.1 MB/s , 708.9 MB/s
9#silesia.tar : 211988480 -> 60416751 (3.509), 21.5 MB/s , 710.1 MB/s
10#silesia.tar : 211988480 -> 60174239 (3.523), 21.9 MB/s , 723.9 MB/s
2016-10-17 23:55:52 +00:00
unsigned litlengthMaxValue = MaxLL , litlengthLog ;
2016-06-15 11:53:34 +00:00
size_t const litlengthHeaderSize = FSE_readNCount ( litlengthNCount , & litlengthMaxValue , & litlengthLog , dictPtr , dictEnd - dictPtr ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( FSE_isError ( litlengthHeaderSize ) , dictionary_corrupted ) ;
RETURN_ERROR_IF ( litlengthLog > LLFSELog , dictionary_corrupted ) ;
2016-10-20 00:22:08 +00:00
/* Every literal length code must have non-zero probability */
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_checkDictNCount ( litlengthNCount , litlengthMaxValue , MaxLL ) ) ;
2019-01-28 22:27:29 +00:00
RETURN_ERROR_IF ( FSE_isError ( FSE_buildCTable_wksp (
bs - > entropy . fse . litlengthCTable ,
litlengthNCount , litlengthMaxValue , litlengthLog ,
workspace , HUF_WORKSPACE_SIZE ) ) ,
dictionary_corrupted ) ;
2016-06-15 11:53:34 +00:00
dictPtr + = litlengthHeaderSize ;
2016-05-31 16:13:56 +00:00
}
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( dictPtr + 12 > dictEnd , dictionary_corrupted ) ;
2017-12-13 00:51:00 +00:00
bs - > rep [ 0 ] = MEM_readLE32 ( dictPtr + 0 ) ;
bs - > rep [ 1 ] = MEM_readLE32 ( dictPtr + 4 ) ;
bs - > rep [ 2 ] = MEM_readLE32 ( dictPtr + 8 ) ;
2016-06-15 11:53:34 +00:00
dictPtr + = 12 ;
2017-03-23 01:09:11 +00:00
{ size_t const dictContentSize = ( size_t ) ( dictEnd - dictPtr ) ;
U32 offcodeMax = MaxOff ;
if ( dictContentSize < = ( ( U32 ) - 1 ) - 128 KB ) {
U32 const maxOffset = ( U32 ) dictContentSize + 128 KB ; /* The maximum offset that must be supported */
offcodeMax = ZSTD_highbit32 ( maxOffset ) ; /* Calculate minimum offset code required to represent maxOffset */
2016-10-24 21:11:27 +00:00
}
2017-03-23 01:09:11 +00:00
/* All offset values <= dictContentSize + 128 KB must be representable */
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_checkDictNCount ( offcodeNCount , offcodeMaxValue , MIN ( offcodeMax , MaxOff ) ) ) ;
2017-03-23 01:09:11 +00:00
/* All repCodes must be <= dictContentSize and != 0*/
{ U32 u ;
for ( u = 0 ; u < 3 ; u + + ) {
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( bs - > rep [ u ] = = 0 , dictionary_corrupted ) ;
RETURN_ERROR_IF ( bs - > rep [ u ] > dictContentSize , dictionary_corrupted ) ;
2017-03-24 19:46:46 +00:00
} }
2016-10-20 00:22:08 +00:00
2018-05-22 23:06:33 +00:00
bs - > entropy . huf . repeatMode = HUF_repeat_valid ;
bs - > entropy . fse . offcode_repeatMode = FSE_repeat_valid ;
bs - > entropy . fse . matchlength_repeatMode = FSE_repeat_valid ;
bs - > entropy . fse . litlength_repeatMode = FSE_repeat_valid ;
2019-09-11 15:40:57 +00:00
FORWARD_IF_ERROR ( ZSTD_loadDictionaryContent (
ms , ws , params , dictPtr , dictContentSize , dtlm ) ) ;
2017-12-13 00:51:00 +00:00
return dictID ;
2017-03-24 19:46:46 +00:00
}
2016-01-26 02:14:20 +00:00
}
2016-03-15 00:24:33 +00:00
/** ZSTD_compress_insertDictionary() :
2018-01-16 23:23:39 +00:00
* @ return : dictID , or an error code */
2018-05-08 19:32:16 +00:00
static size_t
ZSTD_compress_insertDictionary ( ZSTD_compressedBlockState_t * bs ,
ZSTD_matchState_t * ms ,
2019-09-11 15:40:57 +00:00
ZSTD_cwksp * ws ,
2018-05-08 19:32:16 +00:00
const ZSTD_CCtx_params * params ,
const void * dict , size_t dictSize ,
ZSTD_dictContentType_e dictContentType ,
ZSTD_dictTableLoadMethod_e dtlm ,
void * workspace )
2016-01-26 02:14:20 +00:00
{
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
DEBUGLOG ( 4 , " ZSTD_compress_insertDictionary (dictSize=%u) " , ( U32 ) dictSize ) ;
2016-05-29 03:01:04 +00:00
if ( ( dict = = NULL ) | | ( dictSize < = 8 ) ) return 0 ;
2016-01-26 14:58:49 +00:00
2018-01-16 23:23:39 +00:00
ZSTD_reset_compressedBlockState ( bs ) ;
2017-06-21 18:50:33 +00:00
/* dict restricted modes */
2018-03-20 22:13:14 +00:00
if ( dictContentType = = ZSTD_dct_rawContent )
2019-09-11 15:40:57 +00:00
return ZSTD_loadDictionaryContent ( ms , ws , params , dict , dictSize , dtlm ) ;
2016-03-15 00:24:33 +00:00
2017-06-27 20:50:34 +00:00
if ( MEM_readLE32 ( dict ) ! = ZSTD_MAGIC_DICTIONARY ) {
2018-03-20 22:13:14 +00:00
if ( dictContentType = = ZSTD_dct_auto ) {
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
DEBUGLOG ( 4 , " raw content dictionary detected " ) ;
2019-09-11 15:40:57 +00:00
return ZSTD_loadDictionaryContent (
ms , ws , params , dict , dictSize , dtlm ) ;
2017-06-21 22:13:00 +00:00
}
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( dictContentType = = ZSTD_dct_fullDict , dictionary_wrong ) ;
2017-06-21 18:50:33 +00:00
assert ( 0 ) ; /* impossible */
}
/* dict as full zstd dictionary */
2019-09-11 15:40:57 +00:00
return ZSTD_loadZstdDictionary (
bs , ms , ws , params , dict , dictSize , dtlm , workspace ) ;
2016-01-07 14:35:18 +00:00
}
2019-10-15 16:28:23 +00:00
# define ZSTD_USE_CDICT_PARAMS_CUTOFF (1 MB)
2016-04-01 13:48:48 +00:00
/*! ZSTD_compressBegin_internal() :
2017-06-20 23:09:11 +00:00
* @ return : 0 , or an error code */
2018-09-27 22:13:43 +00:00
static size_t ZSTD_compressBegin_internal ( ZSTD_CCtx * cctx ,
const void * dict , size_t dictSize ,
ZSTD_dictContentType_e dictContentType ,
ZSTD_dictTableLoadMethod_e dtlm ,
const ZSTD_CDict * cdict ,
2019-09-05 09:58:30 +00:00
const ZSTD_CCtx_params * params , U64 pledgedSrcSize ,
2018-09-27 22:13:43 +00:00
ZSTD_buffered_policy_e zbuff )
2015-10-22 14:31:46 +00:00
{
2019-09-05 09:58:30 +00:00
DEBUGLOG ( 4 , " ZSTD_compressBegin_internal: wlog=%u " , params - > cParams . windowLog ) ;
2017-05-23 18:18:24 +00:00
/* params are supposed to be fully validated at this point */
2019-09-05 10:17:17 +00:00
assert ( ! ZSTD_isError ( ZSTD_checkCParams ( params - > cParams ) ) ) ;
2017-05-23 01:21:51 +00:00
assert ( ! ( ( dict ) & & ( cdict ) ) ) ; /* either dict or cdict, not both */
2019-10-15 16:28:23 +00:00
if ( ( cdict )
& & ( cdict - > dictContentSize > 0 )
& & ( pledgedSrcSize < ZSTD_USE_CDICT_PARAMS_CUTOFF | | cdict - > compressionLevel = = 0 ) ) {
2018-04-25 23:32:29 +00:00
return ZSTD_resetCCtx_usingCDict ( cctx , cdict , params , pledgedSrcSize , zbuff ) ;
2017-06-21 22:13:00 +00:00
}
2019-10-16 14:31:27 +00:00
2019-09-05 09:58:30 +00:00
FORWARD_IF_ERROR ( ZSTD_resetCCtx_internal ( cctx , * params , pledgedSrcSize ,
2019-09-10 21:38:32 +00:00
ZSTDcrp_makeClean , zbuff ) ) ;
2019-10-15 16:28:23 +00:00
{ size_t const dictID = cdict ?
ZSTD_compress_insertDictionary (
cctx - > blockState . prevCBlock , & cctx - > blockState . matchState ,
2019-10-15 17:10:05 +00:00
& cctx - > workspace , params , cdict - > dictContent , cdict - > dictContentSize ,
2019-10-15 16:28:23 +00:00
dictContentType , dtlm , cctx - > entropyWorkspace )
: ZSTD_compress_insertDictionary (
cctx - > blockState . prevCBlock , & cctx - > blockState . matchState ,
2019-10-15 16:58:50 +00:00
& cctx - > workspace , params , dict , dictSize , dictContentType , dtlm ,
cctx - > entropyWorkspace ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( dictID ) ;
2019-06-01 00:27:07 +00:00
assert ( dictID < = UINT_MAX ) ;
2018-01-16 23:23:39 +00:00
cctx - > dictID = ( U32 ) dictID ;
}
return 0 ;
2015-10-22 14:31:46 +00:00
}
2017-12-13 00:20:51 +00:00
size_t ZSTD_compressBegin_advanced_internal ( ZSTD_CCtx * cctx ,
2017-08-18 23:17:24 +00:00
const void * dict , size_t dictSize ,
2018-03-20 22:13:14 +00:00
ZSTD_dictContentType_e dictContentType ,
2018-04-02 21:41:30 +00:00
ZSTD_dictTableLoadMethod_e dtlm ,
2017-12-13 00:20:51 +00:00
const ZSTD_CDict * cdict ,
2019-09-05 09:58:30 +00:00
const ZSTD_CCtx_params * params ,
2017-08-18 23:17:24 +00:00
unsigned long long pledgedSrcSize )
{
2019-09-05 09:58:30 +00:00
DEBUGLOG ( 4 , " ZSTD_compressBegin_advanced_internal: wlog=%u " , params - > cParams . windowLog ) ;
2017-08-18 23:17:24 +00:00
/* compression parameters verification and optimization */
2019-09-05 09:58:30 +00:00
FORWARD_IF_ERROR ( ZSTD_checkCParams ( params - > cParams ) ) ;
2017-12-13 00:20:51 +00:00
return ZSTD_compressBegin_internal ( cctx ,
2018-04-02 21:41:30 +00:00
dict , dictSize , dictContentType , dtlm ,
2017-12-13 00:20:51 +00:00
cdict ,
2017-08-18 23:17:24 +00:00
params , pledgedSrcSize ,
ZSTDb_not_buffered ) ;
}
2015-10-25 13:06:35 +00:00
2016-04-01 13:48:48 +00:00
/*! ZSTD_compressBegin_advanced() :
* @ return : 0 , or an error code */
2016-06-06 22:51:51 +00:00
size_t ZSTD_compressBegin_advanced ( ZSTD_CCtx * cctx ,
2016-04-01 13:48:48 +00:00
const void * dict , size_t dictSize ,
2016-07-07 09:53:18 +00:00
ZSTD_parameters params , unsigned long long pledgedSrcSize )
2016-04-01 13:48:48 +00:00
{
2017-08-30 21:36:54 +00:00
ZSTD_CCtx_params const cctxParams =
2019-09-05 09:58:30 +00:00
ZSTD_assignParamsToCCtxParams ( & cctx - > requestedParams , params ) ;
2017-12-13 00:20:51 +00:00
return ZSTD_compressBegin_advanced_internal ( cctx ,
2018-04-02 21:41:30 +00:00
dict , dictSize , ZSTD_dct_auto , ZSTD_dtlm_fast ,
2017-12-13 00:20:51 +00:00
NULL /*cdict*/ ,
2019-09-05 09:58:30 +00:00
& cctxParams , pledgedSrcSize ) ;
2016-04-01 13:48:48 +00:00
}
2016-06-06 22:51:51 +00:00
size_t ZSTD_compressBegin_usingDict ( ZSTD_CCtx * cctx , const void * dict , size_t dictSize , int compressionLevel )
2016-01-26 02:14:20 +00:00
{
2017-12-29 16:04:37 +00:00
ZSTD_parameters const params = ZSTD_getParams ( compressionLevel , ZSTD_CONTENTSIZE_UNKNOWN , dictSize ) ;
2017-08-30 21:36:54 +00:00
ZSTD_CCtx_params const cctxParams =
2019-09-05 09:58:30 +00:00
ZSTD_assignParamsToCCtxParams ( & cctx - > requestedParams , params ) ;
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 4 , " ZSTD_compressBegin_usingDict (dictSize=%u) " , ( unsigned ) dictSize ) ;
2018-04-02 21:41:30 +00:00
return ZSTD_compressBegin_internal ( cctx , dict , dictSize , ZSTD_dct_auto , ZSTD_dtlm_fast , NULL ,
2019-09-05 09:58:30 +00:00
& cctxParams , ZSTD_CONTENTSIZE_UNKNOWN , ZSTDb_not_buffered ) ;
2016-01-26 15:31:22 +00:00
}
2015-11-25 13:42:45 +00:00
2017-01-12 01:01:28 +00:00
size_t ZSTD_compressBegin ( ZSTD_CCtx * cctx , int compressionLevel )
2015-11-25 13:42:45 +00:00
{
2017-01-12 01:01:28 +00:00
return ZSTD_compressBegin_usingDict ( cctx , NULL , 0 , compressionLevel ) ;
2015-10-25 13:06:35 +00:00
}
2016-07-28 13:29:08 +00:00
/*! ZSTD_writeEpilogue() :
* Ends a frame .
2015-11-25 13:42:45 +00:00
* @ return : nb of bytes written into dst ( or an error code ) */
2016-07-28 13:29:08 +00:00
static size_t ZSTD_writeEpilogue ( ZSTD_CCtx * cctx , void * dst , size_t dstCapacity )
2015-10-29 15:49:43 +00:00
{
2016-07-27 22:55:43 +00:00
BYTE * const ostart = ( BYTE * ) dst ;
BYTE * op = ostart ;
2016-04-12 13:52:33 +00:00
size_t fhSize = 0 ;
2015-10-29 15:49:43 +00:00
2018-01-19 00:20:26 +00:00
DEBUGLOG ( 4 , " ZSTD_writeEpilogue " ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > stage = = ZSTDcs_created , stage_wrong , " init missing " ) ;
2016-04-11 18:12:27 +00:00
/* special case : empty frame */
2016-07-27 22:55:43 +00:00
if ( cctx - > stage = = ZSTDcs_init ) {
2019-09-05 09:58:30 +00:00
fhSize = ZSTD_writeFrameHeader ( dst , dstCapacity , & cctx - > appliedParams , 0 , 0 ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( fhSize ) ;
2016-04-12 13:52:33 +00:00
dstCapacity - = fhSize ;
op + = fhSize ;
2016-07-27 19:05:12 +00:00
cctx - > stage = ZSTDcs_ongoing ;
2016-01-07 14:35:18 +00:00
}
2015-10-29 15:49:43 +00:00
2016-07-27 22:55:43 +00:00
if ( cctx - > stage ! = ZSTDcs_ending ) {
/* write one last empty block, make it the "last" block */
U32 const cBlockHeader24 = 1 /* last block */ + ( ( ( U32 ) bt_raw ) < < 1 ) + 0 ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( dstCapacity < 4 , dstSize_tooSmall ) ;
2016-07-27 22:55:43 +00:00
MEM_writeLE32 ( op , cBlockHeader24 ) ;
op + = ZSTD_blockHeaderSize ;
dstCapacity - = ZSTD_blockHeaderSize ;
}
2017-05-23 00:06:04 +00:00
if ( cctx - > appliedParams . fParams . checksumFlag ) {
2016-07-27 22:55:43 +00:00
U32 const checksum = ( U32 ) XXH64_digest ( & cctx - > xxhState ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( dstCapacity < 4 , dstSize_tooSmall ) ;
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 4 , " ZSTD_writeEpilogue: write checksum : %08X " , ( unsigned ) checksum ) ;
2016-07-27 22:55:43 +00:00
MEM_writeLE32 ( op , checksum ) ;
op + = 4 ;
2016-05-31 16:13:56 +00:00
}
2015-10-29 15:49:43 +00:00
2016-07-27 19:05:12 +00:00
cctx - > stage = ZSTDcs_created ; /* return to "created but no init" status */
2016-07-27 22:55:43 +00:00
return op - ostart ;
2015-10-29 15:49:43 +00:00
}
2016-07-28 13:29:08 +00:00
size_t ZSTD_compressEnd ( ZSTD_CCtx * cctx ,
void * dst , size_t dstCapacity ,
const void * src , size_t srcSize )
{
size_t endResult ;
2017-05-19 17:17:59 +00:00
size_t const cSize = ZSTD_compressContinue_internal ( cctx ,
dst , dstCapacity , src , srcSize ,
1 /* frame mode */ , 1 /* last chunk */ ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( cSize ) ;
2016-07-28 13:29:08 +00:00
endResult = ZSTD_writeEpilogue ( cctx , ( char * ) dst + cSize , dstCapacity - cSize ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( endResult ) ;
2018-04-12 23:02:03 +00:00
assert ( ! ( cctx - > appliedParams . fParams . contentSizeFlag & & cctx - > pledgedSrcSizePlusOne = = 0 ) ) ;
if ( cctx - > pledgedSrcSizePlusOne ! = 0 ) { /* control src size */
ZSTD_STATIC_ASSERT ( ZSTD_CONTENTSIZE_UNKNOWN = = ( unsigned long long ) - 1 ) ;
2017-09-30 02:40:27 +00:00
DEBUGLOG ( 4 , " end of frame : controlling src size " ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF (
cctx - > pledgedSrcSizePlusOne ! = cctx - > consumedSrcSize + 1 ,
srcSize_wrong ,
" error : pledgedSrcSize = %u, while realSrcSize = %u " ,
( unsigned ) cctx - > pledgedSrcSizePlusOne - 1 ,
( unsigned ) cctx - > consumedSrcSize ) ;
}
2016-07-28 13:29:08 +00:00
return cSize + endResult ;
}
2016-07-27 23:25:46 +00:00
static size_t ZSTD_compress_internal ( ZSTD_CCtx * cctx ,
2018-06-07 22:12:13 +00:00
void * dst , size_t dstCapacity ,
const void * src , size_t srcSize ,
const void * dict , size_t dictSize ,
ZSTD_parameters params )
2015-10-22 14:31:46 +00:00
{
2017-08-30 21:36:54 +00:00
ZSTD_CCtx_params const cctxParams =
2019-09-05 09:58:30 +00:00
ZSTD_assignParamsToCCtxParams ( & cctx - > requestedParams , params ) ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
DEBUGLOG ( 4 , " ZSTD_compress_internal " ) ;
2017-08-22 21:24:47 +00:00
return ZSTD_compress_advanced_internal ( cctx ,
2018-06-07 22:12:13 +00:00
dst , dstCapacity ,
src , srcSize ,
dict , dictSize ,
2019-09-05 09:58:30 +00:00
& cctxParams ) ;
2015-10-22 14:31:46 +00:00
}
2018-06-07 22:12:13 +00:00
size_t ZSTD_compress_advanced ( ZSTD_CCtx * cctx ,
2016-03-30 14:50:44 +00:00
void * dst , size_t dstCapacity ,
const void * src , size_t srcSize ,
const void * dict , size_t dictSize ,
ZSTD_parameters params )
{
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
DEBUGLOG ( 4 , " ZSTD_compress_advanced " ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_checkCParams ( params . cParams ) ) ;
2018-06-07 22:12:13 +00:00
return ZSTD_compress_internal ( cctx ,
dst , dstCapacity ,
src , srcSize ,
dict , dictSize ,
params ) ;
2016-03-30 14:50:44 +00:00
}
2017-08-18 23:17:24 +00:00
/* Internal */
2017-08-22 21:24:47 +00:00
size_t ZSTD_compress_advanced_internal (
2017-08-21 05:55:07 +00:00
ZSTD_CCtx * cctx ,
void * dst , size_t dstCapacity ,
const void * src , size_t srcSize ,
const void * dict , size_t dictSize ,
2019-09-05 09:58:30 +00:00
const ZSTD_CCtx_params * params )
2017-08-18 23:17:24 +00:00
{
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 4 , " ZSTD_compress_advanced_internal (srcSize:%u) " , ( unsigned ) srcSize ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_compressBegin_internal ( cctx ,
2018-06-07 22:12:13 +00:00
dict , dictSize , ZSTD_dct_auto , ZSTD_dtlm_fast , NULL ,
params , srcSize , ZSTDb_not_buffered ) ) ;
2017-08-18 23:17:24 +00:00
return ZSTD_compressEnd ( cctx , dst , dstCapacity , src , srcSize ) ;
}
2018-06-07 22:12:13 +00:00
size_t ZSTD_compress_usingDict ( ZSTD_CCtx * cctx ,
void * dst , size_t dstCapacity ,
const void * src , size_t srcSize ,
const void * dict , size_t dictSize ,
int compressionLevel )
2015-12-18 00:26:48 +00:00
{
2018-06-07 22:24:12 +00:00
ZSTD_parameters const params = ZSTD_getParams ( compressionLevel , srcSize + ( ! srcSize ) , dict ? dictSize : 0 ) ;
2019-09-05 09:58:30 +00:00
ZSTD_CCtx_params cctxParams = ZSTD_assignParamsToCCtxParams ( & cctx - > requestedParams , params ) ;
2018-03-11 12:21:53 +00:00
assert ( params . fParams . contentSizeFlag = = 1 ) ;
2019-09-05 09:58:30 +00:00
return ZSTD_compress_advanced_internal ( cctx , dst , dstCapacity , src , srcSize , dict , dictSize , & cctxParams ) ;
2015-12-18 00:26:48 +00:00
}
2018-06-07 22:12:13 +00:00
size_t ZSTD_compressCCtx ( ZSTD_CCtx * cctx ,
void * dst , size_t dstCapacity ,
const void * src , size_t srcSize ,
int compressionLevel )
2015-10-25 13:06:35 +00:00
{
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 4 , " ZSTD_compressCCtx (srcSize=%u) " , ( unsigned ) srcSize ) ;
2018-06-07 22:12:13 +00:00
assert ( cctx ! = NULL ) ;
2018-03-11 12:21:53 +00:00
return ZSTD_compress_usingDict ( cctx , dst , dstCapacity , src , srcSize , NULL , 0 , compressionLevel ) ;
2015-10-25 13:06:35 +00:00
}
2018-06-07 22:12:13 +00:00
size_t ZSTD_compress ( void * dst , size_t dstCapacity ,
const void * src , size_t srcSize ,
int compressionLevel )
2015-10-22 14:31:46 +00:00
{
2015-10-29 21:02:40 +00:00
size_t result ;
2015-11-11 12:43:58 +00:00
ZSTD_CCtx ctxBody ;
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
ZSTD_initCCtx ( & ctxBody , ZSTD_defaultCMem ) ;
2016-03-15 00:24:33 +00:00
result = ZSTD_compressCCtx ( & ctxBody , dst , dstCapacity , src , srcSize , compressionLevel ) ;
clean ZSTD_compress() initialization
The (pretty old) code inside ZSTD_compress()
was making some pretty bold assumptions
on what's inside a CCtx and how to init it.
This is pretty fragile by design.
CCtx content evolve.
Knowledge of how to handle that should be concentrate in one place.
A side effect of this strategy
is that ZSTD_compress() wouldn't check for BMI2 capability,
and is therefore missing out some potential speed opportunity.
This patch makes ZSTD_compress() use
the same initialization and release functions
as the normal creator / destructor ones.
Measured on my laptop, with a custom version of bench
manually modified to use ZSTD_compress() (instead of the advanced API) :
This patch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 312.2 MB/s , 723.8 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 226.2 MB/s , 649.8 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 169.4 MB/s , 636.7 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 136.7 MB/s , 619.2 MB/s
dev branch :
1#silesia.tar : 211984896 -> 73651053 (2.878), 291.7 MB/s , 727.5 MB/s
2#silesia.tar : 211984896 -> 70163650 (3.021), 216.2 MB/s , 655.7 MB/s
3#silesia.tar : 211984896 -> 66996749 (3.164), 162.2 MB/s , 633.1 MB/s
4#silesia.tar : 211984896 -> 65998319 (3.212), 130.6 MB/s , 618.6 MB/s
2018-06-07 20:53:30 +00:00
ZSTD_freeCCtxContent ( & ctxBody ) ; /* can't free ctxBody itself, as it's on stack; free only heap content */
2015-10-29 21:02:40 +00:00
return result ;
2015-10-22 14:31:46 +00:00
}
2015-12-17 22:50:15 +00:00
2016-01-30 02:14:15 +00:00
2016-06-06 22:51:51 +00:00
/* ===== Dictionary API ===== */
2017-06-26 23:47:32 +00:00
/*! ZSTD_estimateCDictSize_advanced() :
2017-05-09 00:51:49 +00:00
* Estimate amount of memory that will be needed to create a dictionary with following arguments */
2017-08-29 18:55:02 +00:00
size_t ZSTD_estimateCDictSize_advanced (
size_t dictSize , ZSTD_compressionParameters cParams ,
ZSTD_dictLoadMethod_e dictLoadMethod )
2017-05-09 00:51:49 +00:00
{
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 5 , " sizeof(ZSTD_CDict) : %u " , ( unsigned ) sizeof ( ZSTD_CDict ) ) ;
2018-01-30 21:30:30 +00:00
return sizeof ( ZSTD_CDict ) + HUF_WORKSPACE_SIZE + ZSTD_sizeof_matchState ( & cParams , /* forCCtx */ 0 )
2019-08-15 16:51:24 +00:00
+ ( dictLoadMethod = = ZSTD_dlm_byRef ? 0 : ZSTD_cwksp_align ( dictSize , sizeof ( void * ) ) ) ;
2017-05-09 00:51:49 +00:00
}
2017-06-26 23:47:32 +00:00
size_t ZSTD_estimateCDictSize ( size_t dictSize , int compressionLevel )
{
ZSTD_compressionParameters const cParams = ZSTD_getCParams ( compressionLevel , 0 , dictSize ) ;
2017-08-30 03:27:35 +00:00
return ZSTD_estimateCDictSize_advanced ( dictSize , cParams , ZSTD_dlm_byCopy ) ;
2017-06-26 23:47:32 +00:00
}
2016-09-15 00:50:27 +00:00
size_t ZSTD_sizeof_CDict ( const ZSTD_CDict * cdict )
{
if ( cdict = = NULL ) return 0 ; /* support sizeof on NULL */
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 5 , " sizeof(*cdict) : %u " , ( unsigned ) sizeof ( * cdict ) ) ;
2019-09-09 20:45:17 +00:00
/* cdict may be in the workspace */
return ( cdict - > workspace . workspace = = cdict ? 0 : sizeof ( * cdict ) )
+ ZSTD_cwksp_sizeof ( & cdict - > workspace ) ;
2016-09-15 00:50:27 +00:00
}
2017-05-26 01:05:49 +00:00
static size_t ZSTD_initCDict_internal (
ZSTD_CDict * cdict ,
2017-06-21 18:50:33 +00:00
const void * dictBuffer , size_t dictSize ,
2017-08-29 18:55:02 +00:00
ZSTD_dictLoadMethod_e dictLoadMethod ,
2018-03-20 22:13:14 +00:00
ZSTD_dictContentType_e dictContentType ,
2017-05-26 01:05:49 +00:00
ZSTD_compressionParameters cParams )
{
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 3 , " ZSTD_initCDict_internal (dictContentType:%u) " , ( unsigned ) dictContentType ) ;
2018-03-19 21:41:23 +00:00
assert ( ! ZSTD_checkCParams ( cParams ) ) ;
2018-08-23 18:33:08 +00:00
cdict - > matchState . cParams = cParams ;
2017-08-29 18:55:02 +00:00
if ( ( dictLoadMethod = = ZSTD_dlm_byRef ) | | ( ! dictBuffer ) | | ( ! dictSize ) ) {
2017-05-26 01:05:49 +00:00
cdict - > dictContent = dictBuffer ;
} else {
2019-08-15 16:51:24 +00:00
void * internalBuffer = ZSTD_cwksp_reserve_object ( & cdict - > workspace , ZSTD_cwksp_align ( dictSize , sizeof ( void * ) ) ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( ! internalBuffer , memory_allocation ) ;
2019-08-12 23:24:24 +00:00
cdict - > dictContent = internalBuffer ;
2017-06-20 23:09:11 +00:00
memcpy ( internalBuffer , dictBuffer , dictSize ) ;
2017-05-26 01:05:49 +00:00
}
cdict - > dictContentSize = dictSize ;
2019-08-15 16:51:24 +00:00
cdict - > entropyWorkspace = ( U32 * ) ZSTD_cwksp_reserve_object ( & cdict - > workspace , HUF_WORKSPACE_SIZE ) ;
2019-07-15 19:08:49 +00:00
2018-01-18 21:28:30 +00:00
/* Reset the state to no dictionary */
ZSTD_reset_compressedBlockState ( & cdict - > cBlockState ) ;
2019-07-15 19:08:49 +00:00
FORWARD_IF_ERROR ( ZSTD_reset_matchState (
& cdict - > matchState ,
& cdict - > workspace ,
& cParams ,
2019-09-10 21:38:32 +00:00
ZSTDcrp_makeClean ,
2019-09-10 21:28:52 +00:00
ZSTDirp_reset ,
ZSTD_resetTarget_CDict ) ) ;
2018-01-18 21:28:30 +00:00
/* (Maybe) load the dictionary
* Skips loading the dictionary if it is < = 8 bytes .
*/
2018-03-19 21:41:23 +00:00
{ ZSTD_CCtx_params params ;
2018-01-16 23:23:39 +00:00
memset ( & params , 0 , sizeof ( params ) ) ;
params . compressionLevel = ZSTD_CLEVEL_DEFAULT ;
params . fParams . contentSizeFlag = 1 ;
params . cParams = cParams ;
2018-03-19 21:41:23 +00:00
{ size_t const dictID = ZSTD_compress_insertDictionary (
2019-09-11 15:40:57 +00:00
& cdict - > cBlockState , & cdict - > matchState , & cdict - > workspace ,
& params , cdict - > dictContent , cdict - > dictContentSize ,
2019-07-15 19:08:49 +00:00
dictContentType , ZSTD_dtlm_full , cdict - > entropyWorkspace ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( dictID ) ;
2018-01-16 23:23:39 +00:00
assert ( dictID < = ( size_t ) ( U32 ) - 1 ) ;
cdict - > dictID = ( U32 ) dictID ;
}
2017-05-26 01:05:49 +00:00
}
return 0 ;
}
2017-06-21 18:50:33 +00:00
ZSTD_CDict * ZSTD_createCDict_advanced ( const void * dictBuffer , size_t dictSize ,
2017-08-29 18:55:02 +00:00
ZSTD_dictLoadMethod_e dictLoadMethod ,
2018-03-20 22:13:14 +00:00
ZSTD_dictContentType_e dictContentType ,
2017-04-27 07:29:04 +00:00
ZSTD_compressionParameters cParams , ZSTD_customMem customMem )
2016-06-06 22:51:51 +00:00
{
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 3 , " ZSTD_createCDict_advanced, mode %u " , ( unsigned ) dictContentType ) ;
2017-05-31 00:11:39 +00:00
if ( ! customMem . customAlloc ^ ! customMem . customFree ) return NULL ;
2016-06-06 22:51:51 +00:00
2019-08-14 20:48:01 +00:00
{ size_t const workspaceSize =
sizeof ( ZSTD_CDict ) +
HUF_WORKSPACE_SIZE +
ZSTD_sizeof_matchState ( & cParams , /* forCCtx */ 0 ) +
( dictLoadMethod = = ZSTD_dlm_byRef ? 0
2019-08-15 16:51:24 +00:00
: ZSTD_cwksp_align ( dictSize , sizeof ( void * ) ) ) ;
2018-01-16 23:23:39 +00:00
void * const workspace = ZSTD_malloc ( workspaceSize , customMem ) ;
2019-08-15 16:51:24 +00:00
ZSTD_cwksp ws ;
2019-08-14 20:48:01 +00:00
ZSTD_CDict * cdict ;
2016-06-06 22:51:51 +00:00
2019-08-14 20:48:01 +00:00
if ( ! workspace ) {
2018-01-16 23:23:39 +00:00
ZSTD_free ( workspace , customMem ) ;
2016-06-06 22:51:51 +00:00
return NULL ;
}
2019-08-14 20:48:01 +00:00
2019-08-15 16:51:24 +00:00
ZSTD_cwksp_init ( & ws , workspace , workspaceSize ) ;
2019-08-14 20:48:01 +00:00
2019-08-15 16:51:24 +00:00
cdict = ( ZSTD_CDict * ) ZSTD_cwksp_reserve_object ( & ws , sizeof ( ZSTD_CDict ) ) ;
2019-08-14 20:48:01 +00:00
assert ( cdict ! = NULL ) ;
2019-09-03 16:48:45 +00:00
ZSTD_cwksp_move ( & cdict - > workspace , & ws ) ;
2018-01-16 23:23:39 +00:00
cdict - > customMem = customMem ;
2019-10-15 16:28:23 +00:00
cdict - > compressionLevel = 0 ; /* signals advanced API usage */
2017-05-26 01:05:49 +00:00
if ( ZSTD_isError ( ZSTD_initCDict_internal ( cdict ,
2017-06-21 18:50:33 +00:00
dictBuffer , dictSize ,
2018-03-20 22:13:14 +00:00
dictLoadMethod , dictContentType ,
2017-05-26 01:05:49 +00:00
cParams ) ) ) {
ZSTD_freeCDict ( cdict ) ;
return NULL ;
2016-10-13 03:54:42 +00:00
}
2016-12-21 15:20:11 +00:00
2016-06-06 22:51:51 +00:00
return cdict ;
}
}
ZSTD_CDict * ZSTD_createCDict ( const void * dict , size_t dictSize , int compressionLevel )
{
2017-04-27 07:29:04 +00:00
ZSTD_compressionParameters cParams = ZSTD_getCParams ( compressionLevel , 0 , dictSize ) ;
2019-10-15 16:28:23 +00:00
ZSTD_CDict * cdict = ZSTD_createCDict_advanced ( dict , dictSize ,
2019-10-15 16:44:48 +00:00
ZSTD_dlm_byCopy , ZSTD_dct_auto ,
cParams , ZSTD_defaultCMem ) ;
2019-10-16 14:29:31 +00:00
if ( cdict )
cdict - > compressionLevel = compressionLevel = = 0 ? ( BYTE ) ZSTD_CLEVEL_DEFAULT : ( BYTE ) compressionLevel ;
2019-10-15 16:28:23 +00:00
return cdict ;
2016-12-21 15:20:11 +00:00
}
ZSTD_CDict * ZSTD_createCDict_byReference ( const void * dict , size_t dictSize , int compressionLevel )
{
2017-04-27 07:29:04 +00:00
ZSTD_compressionParameters cParams = ZSTD_getCParams ( compressionLevel , 0 , dictSize ) ;
2017-06-21 18:50:33 +00:00
return ZSTD_createCDict_advanced ( dict , dictSize ,
2018-03-20 22:13:14 +00:00
ZSTD_dlm_byRef , ZSTD_dct_auto ,
2017-06-21 18:50:33 +00:00
cParams , ZSTD_defaultCMem ) ;
2016-06-06 22:51:51 +00:00
}
size_t ZSTD_freeCDict ( ZSTD_CDict * cdict )
{
2016-08-29 04:05:43 +00:00
if ( cdict = = NULL ) return 0 ; /* support free on NULL */
2018-01-16 23:23:39 +00:00
{ ZSTD_customMem const cMem = cdict - > customMem ;
2019-08-14 20:48:01 +00:00
/* Only free workspace if cdict not in workspace, otherwise the
* workspace will be freed when the cdict itself is freed . */
if ( ( void * ) cdict - > workspace . workspace ! = ( void * ) cdict ) {
2019-08-15 16:51:24 +00:00
ZSTD_cwksp_free ( & cdict - > workspace , cMem ) ;
2019-08-14 20:48:01 +00:00
}
2016-08-29 04:05:43 +00:00
ZSTD_free ( cdict , cMem ) ;
return 0 ;
}
2016-06-06 22:51:51 +00:00
}
2017-05-26 01:05:49 +00:00
/*! ZSTD_initStaticCDict_advanced() :
* Generate a digested dictionary in provided memory area .
* workspace : The memory area to emplace the dictionary into .
* Provided pointer must 8 - bytes aligned .
* It must outlive dictionary usage .
* workspaceSize : Use ZSTD_estimateCDictSize ( )
* to determine how large workspace must be .
* cParams : use ZSTD_getCParams ( ) to transform a compression level
* into its relevants cParams .
* @ return : pointer to ZSTD_CDict * , or NULL if error ( size too small )
* Note : there is no corresponding " free " function .
* Since workspace was allocated externally , it must be freed externally .
*/
changed initStatic?Dict() return type to const ZSTD_?Dict*
ZSTD_create?Dict() is required to produce a ?Dict* return type
because `free()` does not accept a `const type*` argument.
If it wasn't for this restriction, I would have preferred to create a `const ?Dict*` object
to emphasize the fact that, once created, a dictionary never changes
(hence can be shared concurrently until the end of its lifetime).
There is no such limitation with initStatic?Dict() :
as stated in the doc, there is no corresponding free() function,
since `workspace` is provided, hence allocated, externally,
it can only be free() externally.
Which means, ZSTD_initStatic?Dict() can return a `const ZSTD_?Dict*` pointer.
Tested with `make all`, to catch initStatic's users,
which, incidentally, also updated zstd.h documentation.
2018-01-17 22:08:48 +00:00
const ZSTD_CDict * ZSTD_initStaticCDict (
void * workspace , size_t workspaceSize ,
2017-06-21 18:50:33 +00:00
const void * dict , size_t dictSize ,
2017-08-29 18:55:02 +00:00
ZSTD_dictLoadMethod_e dictLoadMethod ,
2018-03-20 22:13:14 +00:00
ZSTD_dictContentType_e dictContentType ,
2017-05-26 01:05:49 +00:00
ZSTD_compressionParameters cParams )
{
2018-01-30 21:30:30 +00:00
size_t const matchStateSize = ZSTD_sizeof_matchState ( & cParams , /* forCCtx */ 0 ) ;
2019-08-15 16:51:24 +00:00
size_t const neededSize = sizeof ( ZSTD_CDict ) + ( dictLoadMethod = = ZSTD_dlm_byRef ? 0 : ZSTD_cwksp_align ( dictSize , sizeof ( void * ) ) )
2018-01-16 23:23:39 +00:00
+ HUF_WORKSPACE_SIZE + matchStateSize ;
2019-07-15 19:08:49 +00:00
ZSTD_CDict * cdict ;
2017-05-26 01:05:49 +00:00
if ( ( size_t ) workspace & 7 ) return NULL ; /* 8-aligned */
2019-07-15 19:08:49 +00:00
{
2019-08-15 16:51:24 +00:00
ZSTD_cwksp ws ;
ZSTD_cwksp_init ( & ws , workspace , workspaceSize ) ;
cdict = ( ZSTD_CDict * ) ZSTD_cwksp_reserve_object ( & ws , sizeof ( ZSTD_CDict ) ) ;
2019-07-15 19:08:49 +00:00
if ( cdict = = NULL ) return NULL ;
2019-09-03 16:48:45 +00:00
ZSTD_cwksp_move ( & cdict - > workspace , & ws ) ;
2019-07-15 19:08:49 +00:00
}
2017-10-14 01:32:06 +00:00
DEBUGLOG ( 4 , " (workspaceSize < neededSize) : (%u < %u) => %u " ,
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
( unsigned ) workspaceSize , ( unsigned ) neededSize , ( unsigned ) ( workspaceSize < neededSize ) ) ;
2017-05-26 01:05:49 +00:00
if ( workspaceSize < neededSize ) return NULL ;
if ( ZSTD_isError ( ZSTD_initCDict_internal ( cdict ,
2017-06-21 18:50:33 +00:00
dict , dictSize ,
2019-08-12 23:24:24 +00:00
dictLoadMethod , dictContentType ,
2017-06-21 18:50:33 +00:00
cParams ) ) )
2017-05-26 01:05:49 +00:00
return NULL ;
return cdict ;
}
2018-01-17 21:51:03 +00:00
ZSTD_compressionParameters ZSTD_getCParamsFromCDict ( const ZSTD_CDict * cdict )
{
2018-01-17 19:39:07 +00:00
assert ( cdict ! = NULL ) ;
2018-08-23 18:33:08 +00:00
return cdict - > matchState . cParams ;
2016-10-25 23:19:52 +00:00
}
2017-04-18 20:55:53 +00:00
/* ZSTD_compressBegin_usingCDict_advanced() :
2017-04-18 00:57:35 +00:00
* cdict must be ! = NULL */
2017-04-18 20:55:53 +00:00
size_t ZSTD_compressBegin_usingCDict_advanced (
2017-04-18 00:57:35 +00:00
ZSTD_CCtx * const cctx , const ZSTD_CDict * const cdict ,
ZSTD_frameParameters const fParams , unsigned long long const pledgedSrcSize )
2016-09-15 12:54:07 +00:00
{
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
DEBUGLOG ( 4 , " ZSTD_compressBegin_usingCDict_advanced " ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cdict = = NULL , dictionary_wrong ) ;
2017-08-26 00:58:28 +00:00
{ ZSTD_CCtx_params params = cctx - > requestedParams ;
2019-10-15 16:28:23 +00:00
params . cParams = ( pledgedSrcSize < ZSTD_USE_CDICT_PARAMS_CUTOFF ) | | ( cdict - > compressionLevel = = 0 ) ?
ZSTD_getCParamsFromCDict ( cdict )
: ZSTD_getCParams ( cdict - > compressionLevel ,
2019-10-15 16:44:48 +00:00
pledgedSrcSize ,
cdict - > dictContentSize ) ;
2018-01-11 22:35:04 +00:00
/* Increase window log to fit the entire dictionary and source if the
* source size is known . Limit the increase to 19 , which is the
* window log for compression level 1 with the largest source size .
*/
if ( pledgedSrcSize ! = ZSTD_CONTENTSIZE_UNKNOWN ) {
U32 const limitedSrcSize = ( U32 ) MIN ( pledgedSrcSize , 1U < < 19 ) ;
U32 const limitedSrcLog = limitedSrcSize > 1 ? ZSTD_highbit32 ( limitedSrcSize - 1 ) + 1 : 1 ;
params . cParams . windowLog = MAX ( params . cParams . windowLog , limitedSrcLog ) ;
}
2017-04-18 00:57:35 +00:00
params . fParams = fParams ;
2017-06-21 18:50:33 +00:00
return ZSTD_compressBegin_internal ( cctx ,
2018-04-02 21:41:30 +00:00
NULL , 0 , ZSTD_dct_auto , ZSTD_dtlm_fast ,
2017-06-21 18:50:33 +00:00
cdict ,
2019-09-05 09:58:30 +00:00
& params , pledgedSrcSize ,
2017-06-21 18:50:33 +00:00
ZSTDb_not_buffered ) ;
2017-02-09 18:50:43 +00:00
}
2016-09-15 12:54:07 +00:00
}
2017-04-18 00:57:35 +00:00
/* ZSTD_compressBegin_usingCDict() :
* pledgedSrcSize = 0 means " unknown "
* if pledgedSrcSize > 0 , it will enable contentSizeFlag */
2017-04-26 22:42:10 +00:00
size_t ZSTD_compressBegin_usingCDict ( ZSTD_CCtx * cctx , const ZSTD_CDict * cdict )
2017-04-18 00:57:35 +00:00
{
2017-04-26 22:42:10 +00:00
ZSTD_frameParameters const fParams = { 0 /*content*/ , 0 /*checksum*/ , 0 /*noDictID*/ } ;
2017-10-14 01:32:06 +00:00
DEBUGLOG ( 4 , " ZSTD_compressBegin_usingCDict : dictIDFlag == %u " , ! fParams . noDictIDFlag ) ;
2018-05-07 19:54:13 +00:00
return ZSTD_compressBegin_usingCDict_advanced ( cctx , cdict , fParams , ZSTD_CONTENTSIZE_UNKNOWN ) ;
2017-04-18 00:57:35 +00:00
}
2017-04-27 18:31:55 +00:00
size_t ZSTD_compress_usingCDict_advanced ( ZSTD_CCtx * cctx ,
void * dst , size_t dstCapacity ,
const void * src , size_t srcSize ,
const ZSTD_CDict * cdict , ZSTD_frameParameters fParams )
{
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_compressBegin_usingCDict_advanced ( cctx , cdict , fParams , srcSize ) ) ; /* will check if cdict != NULL */
2017-04-27 18:31:55 +00:00
return ZSTD_compressEnd ( cctx , dst , dstCapacity , src , srcSize ) ;
2017-04-18 00:57:35 +00:00
}
2016-08-02 23:57:57 +00:00
/*! ZSTD_compress_usingCDict() :
2017-04-18 00:57:35 +00:00
* Compression using a digested Dictionary .
* Faster startup than ZSTD_compress_usingDict ( ) , recommended when same dictionary is used multiple times .
* Note that compression parameters are decided at CDict creation time
* while frame parameters are hardcoded */
2016-09-15 12:54:07 +00:00
size_t ZSTD_compress_usingCDict ( ZSTD_CCtx * cctx ,
void * dst , size_t dstCapacity ,
const void * src , size_t srcSize ,
const ZSTD_CDict * cdict )
2016-06-06 22:51:51 +00:00
{
2017-04-18 00:57:35 +00:00
ZSTD_frameParameters const fParams = { 1 /*content*/ , 0 /*checksum*/ , 0 /*noDictID*/ } ;
2017-04-27 18:31:55 +00:00
return ZSTD_compress_usingCDict_advanced ( cctx , dst , dstCapacity , src , srcSize , cdict , fParams ) ;
2016-06-06 22:51:51 +00:00
}
2016-08-12 11:04:27 +00:00
/* ******************************************************************
* Streaming
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2016-08-11 23:20:36 +00:00
ZSTD_CStream * ZSTD_createCStream ( void )
{
2017-12-07 07:52:50 +00:00
DEBUGLOG ( 3 , " ZSTD_createCStream " ) ;
2017-05-31 00:11:39 +00:00
return ZSTD_createCStream_advanced ( ZSTD_defaultCMem ) ;
2016-08-11 23:20:36 +00:00
}
2017-06-27 00:44:26 +00:00
ZSTD_CStream * ZSTD_initStaticCStream ( void * workspace , size_t workspaceSize )
{
return ZSTD_initStaticCCtx ( workspace , workspaceSize ) ;
}
2016-08-11 23:20:36 +00:00
ZSTD_CStream * ZSTD_createCStream_advanced ( ZSTD_customMem customMem )
2017-05-31 00:11:39 +00:00
{ /* CStream and CCtx are now same object */
2017-05-10 18:06:06 +00:00
return ZSTD_createCCtx_advanced ( customMem ) ;
2016-08-11 23:20:36 +00:00
}
size_t ZSTD_freeCStream ( ZSTD_CStream * zcs )
{
2017-05-09 00:15:00 +00:00
return ZSTD_freeCCtx ( zcs ) ; /* same object */
2016-08-11 23:20:36 +00:00
}
2016-08-12 11:04:27 +00:00
/*====== Initialization ======*/
2017-05-19 17:51:30 +00:00
size_t ZSTD_CStreamInSize ( void ) { return ZSTD_BLOCKSIZE_MAX ; }
2016-08-11 23:20:36 +00:00
2017-04-20 19:50:02 +00:00
size_t ZSTD_CStreamOutSize ( void )
{
2017-05-19 17:51:30 +00:00
return ZSTD_compressBound ( ZSTD_BLOCKSIZE_MAX ) + ZSTD_blockHeaderSize + 4 /* 32-bits hash */ ;
2017-04-20 19:50:02 +00:00
}
2016-08-11 23:20:36 +00:00
2018-03-12 02:56:48 +00:00
static size_t ZSTD_resetCStream_internal ( ZSTD_CStream * cctx ,
2018-03-20 22:13:14 +00:00
const void * const dict , size_t const dictSize , ZSTD_dictContentType_e const dictContentType ,
2017-11-16 23:02:28 +00:00
const ZSTD_CDict * const cdict ,
2018-07-13 00:56:58 +00:00
ZSTD_CCtx_params params , unsigned long long const pledgedSrcSize )
2016-09-15 12:54:07 +00:00
{
2018-06-07 22:24:12 +00:00
DEBUGLOG ( 4 , " ZSTD_resetCStream_internal " ) ;
2018-07-13 00:56:58 +00:00
/* Finalize the compression parameters */
params . cParams = ZSTD_getCParamsFromCCtxParams ( & params , pledgedSrcSize , dictSize ) ;
2017-06-27 22:49:12 +00:00
/* params are supposed to be fully validated at this point */
assert ( ! ZSTD_isError ( ZSTD_checkCParams ( params . cParams ) ) ) ;
assert ( ! ( ( dict ) & & ( cdict ) ) ) ; /* either dict or cdict, not both */
2017-04-27 07:29:04 +00:00
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_compressBegin_internal ( cctx ,
2018-04-02 21:41:30 +00:00
dict , dictSize , dictContentType , ZSTD_dtlm_fast ,
2017-12-13 00:20:51 +00:00
cdict ,
2019-09-05 09:58:30 +00:00
& params , pledgedSrcSize ,
2017-12-13 00:20:51 +00:00
ZSTDb_buffered ) ) ;
2016-09-15 12:54:07 +00:00
2018-03-12 02:56:48 +00:00
cctx - > inToCompress = 0 ;
cctx - > inBuffPos = 0 ;
cctx - > inBuffTarget = cctx - > blockSize
+ ( cctx - > blockSize = = pledgedSrcSize ) ; /* for small input: avoid automatic flush on reaching end of block, since it would require to add a 3-bytes null block to end frame */
cctx - > outBuffContentSize = cctx - > outBuffFlushedSize = 0 ;
cctx - > streamStage = zcss_load ;
cctx - > frameEnded = 0 ;
2016-09-15 12:54:07 +00:00
return 0 ; /* ready to go */
}
2017-10-14 02:01:58 +00:00
/* ZSTD_resetCStream():
* pledgedSrcSize = = 0 means " unknown " */
2019-03-13 21:05:18 +00:00
size_t ZSTD_resetCStream ( ZSTD_CStream * zcs , unsigned long long pss )
2017-02-09 18:50:43 +00:00
{
2019-03-13 21:05:18 +00:00
/* temporary : 0 interpreted as "unknown" during transition period.
* Users willing to specify " unknown " * * must * * use ZSTD_CONTENTSIZE_UNKNOWN .
* 0 will be interpreted as " empty " in the future .
*/
U64 const pledgedSrcSize = ( pss = = 0 ) ? ZSTD_CONTENTSIZE_UNKNOWN : pss ;
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 4 , " ZSTD_resetCStream: pledgedSrcSize = %u " , ( unsigned ) pledgedSrcSize ) ;
2019-03-13 21:05:18 +00:00
FORWARD_IF_ERROR ( ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_setPledgedSrcSize ( zcs , pledgedSrcSize ) ) ;
return 0 ;
2017-02-09 18:50:43 +00:00
}
2017-06-21 22:13:00 +00:00
/*! ZSTD_initCStream_internal() :
2017-12-13 00:20:51 +00:00
* Note : for lib / compress only . Used by zstdmt_compress . c .
2017-06-21 22:13:00 +00:00
* Assumption 1 : params are valid
* Assumption 2 : either dict , or cdict , is defined , not both */
2017-06-03 08:15:02 +00:00
size_t ZSTD_initCStream_internal ( ZSTD_CStream * zcs ,
const void * dict , size_t dictSize , const ZSTD_CDict * cdict ,
2019-07-15 21:14:51 +00:00
const ZSTD_CCtx_params * params ,
unsigned long long pledgedSrcSize )
2016-08-11 23:20:36 +00:00
{
2017-09-30 01:05:18 +00:00
DEBUGLOG ( 4 , " ZSTD_initCStream_internal " ) ;
2019-03-13 21:05:18 +00:00
FORWARD_IF_ERROR ( ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_setPledgedSrcSize ( zcs , pledgedSrcSize ) ) ;
2019-09-05 09:58:30 +00:00
assert ( ! ZSTD_isError ( ZSTD_checkCParams ( params - > cParams ) ) ) ;
zcs - > requestedParams = * params ;
2017-06-03 08:15:02 +00:00
assert ( ! ( ( dict ) & & ( cdict ) ) ) ; /* either dict or cdict, not both */
2019-03-13 21:05:18 +00:00
if ( dict ) {
FORWARD_IF_ERROR ( ZSTD_CCtx_loadDictionary ( zcs , dict , dictSize ) ) ;
2017-06-03 08:15:02 +00:00
} else {
2019-03-13 21:05:18 +00:00
/* Dictionary is cleared if !cdict */
FORWARD_IF_ERROR ( ZSTD_CCtx_refCDict ( zcs , cdict ) ) ;
2016-08-11 23:20:36 +00:00
}
2019-03-13 21:05:18 +00:00
return 0 ;
2017-04-11 05:24:02 +00:00
}
2017-04-27 18:43:04 +00:00
/* ZSTD_initCStream_usingCDict_advanced() :
* same as ZSTD_initCStream_usingCDict ( ) , with control over frame parameters */
2017-06-03 08:15:02 +00:00
size_t ZSTD_initCStream_usingCDict_advanced ( ZSTD_CStream * zcs ,
const ZSTD_CDict * cdict ,
ZSTD_frameParameters fParams ,
unsigned long long pledgedSrcSize )
2017-11-16 23:02:28 +00:00
{
DEBUGLOG ( 4 , " ZSTD_initCStream_usingCDict_advanced " ) ;
2019-03-13 21:05:18 +00:00
FORWARD_IF_ERROR ( ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_setPledgedSrcSize ( zcs , pledgedSrcSize ) ) ;
zcs - > requestedParams . fParams = fParams ;
FORWARD_IF_ERROR ( ZSTD_CCtx_refCDict ( zcs , cdict ) ) ;
return 0 ;
2017-04-11 05:24:02 +00:00
}
2017-04-27 18:43:04 +00:00
/* note : cdict must outlive compression session */
size_t ZSTD_initCStream_usingCDict ( ZSTD_CStream * zcs , const ZSTD_CDict * cdict )
{
2017-11-16 23:02:28 +00:00
DEBUGLOG ( 4 , " ZSTD_initCStream_usingCDict " ) ;
2019-03-13 21:05:18 +00:00
FORWARD_IF_ERROR ( ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_refCDict ( zcs , cdict ) ) ;
return 0 ;
2016-08-11 23:20:36 +00:00
}
2018-03-19 21:41:23 +00:00
2017-10-14 02:01:58 +00:00
/* ZSTD_initCStream_advanced() :
2018-03-19 21:41:23 +00:00
* pledgedSrcSize must be exact .
2017-12-08 17:16:49 +00:00
* if srcSize is not known at init time , use value ZSTD_CONTENTSIZE_UNKNOWN .
2017-10-16 21:06:22 +00:00
* dict is loaded with default parameters ZSTD_dm_auto and ZSTD_dlm_byCopy . */
2017-04-11 00:50:44 +00:00
size_t ZSTD_initCStream_advanced ( ZSTD_CStream * zcs ,
const void * dict , size_t dictSize ,
2019-03-13 21:05:18 +00:00
ZSTD_parameters params , unsigned long long pss )
2016-10-25 23:19:52 +00:00
{
2019-03-13 21:05:18 +00:00
/* for compatibility with older programs relying on this behavior.
* Users should now specify ZSTD_CONTENTSIZE_UNKNOWN .
* This line will be removed in the future .
*/
U64 const pledgedSrcSize = ( pss = = 0 & & params . fParams . contentSizeFlag = = 0 ) ? ZSTD_CONTENTSIZE_UNKNOWN : pss ;
DEBUGLOG ( 4 , " ZSTD_initCStream_advanced " ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_setPledgedSrcSize ( zcs , pledgedSrcSize ) ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_checkCParams ( params . cParams ) ) ;
2019-09-05 09:58:30 +00:00
zcs - > requestedParams = ZSTD_assignParamsToCCtxParams ( & zcs - > requestedParams , params ) ;
2019-03-13 21:05:18 +00:00
FORWARD_IF_ERROR ( ZSTD_CCtx_loadDictionary ( zcs , dict , dictSize ) ) ;
return 0 ;
2016-10-25 23:19:52 +00:00
}
2016-08-11 23:20:36 +00:00
size_t ZSTD_initCStream_usingDict ( ZSTD_CStream * zcs , const void * dict , size_t dictSize , int compressionLevel )
{
2019-03-13 21:05:18 +00:00
DEBUGLOG ( 4 , " ZSTD_initCStream_usingDict " ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_setParameter ( zcs , ZSTD_c_compressionLevel , compressionLevel ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_loadDictionary ( zcs , dict , dictSize ) ) ;
return 0 ;
2016-08-11 23:20:36 +00:00
}
2017-12-07 22:13:10 +00:00
size_t ZSTD_initCStream_srcSize ( ZSTD_CStream * zcs , int compressionLevel , unsigned long long pss )
2016-12-13 15:39:36 +00:00
{
2019-03-13 21:05:18 +00:00
/* temporary : 0 interpreted as "unknown" during transition period.
* Users willing to specify " unknown " * * must * * use ZSTD_CONTENTSIZE_UNKNOWN .
* 0 will be interpreted as " empty " in the future .
*/
U64 const pledgedSrcSize = ( pss = = 0 ) ? ZSTD_CONTENTSIZE_UNKNOWN : pss ;
DEBUGLOG ( 4 , " ZSTD_initCStream_srcSize " ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_refCDict ( zcs , NULL ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_setParameter ( zcs , ZSTD_c_compressionLevel , compressionLevel ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_setPledgedSrcSize ( zcs , pledgedSrcSize ) ) ;
return 0 ;
2016-12-13 15:39:36 +00:00
}
2016-08-11 23:20:36 +00:00
size_t ZSTD_initCStream ( ZSTD_CStream * zcs , int compressionLevel )
{
2017-12-07 07:52:50 +00:00
DEBUGLOG ( 4 , " ZSTD_initCStream " ) ;
2019-03-13 21:05:18 +00:00
FORWARD_IF_ERROR ( ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_refCDict ( zcs , NULL ) ) ;
FORWARD_IF_ERROR ( ZSTD_CCtx_setParameter ( zcs , ZSTD_c_compressionLevel , compressionLevel ) ) ;
return 0 ;
2016-08-22 22:30:31 +00:00
}
2016-08-11 23:20:36 +00:00
2016-08-12 11:04:27 +00:00
/*====== Compression ======*/
2016-08-11 23:20:36 +00:00
2018-12-03 22:22:38 +00:00
static size_t ZSTD_nextInputSizeHint ( const ZSTD_CCtx * cctx )
{
size_t hintInSize = cctx - > inBuffTarget - cctx - > inBuffPos ;
if ( hintInSize = = 0 ) hintInSize = cctx - > blockSize ;
return hintInSize ;
}
static size_t ZSTD_limitCopy ( void * dst , size_t dstCapacity ,
const void * src , size_t srcSize )
2016-08-11 23:20:36 +00:00
{
size_t const length = MIN ( dstCapacity , srcSize ) ;
2017-05-31 16:59:22 +00:00
if ( length ) memcpy ( dst , src , length ) ;
2016-08-11 23:20:36 +00:00
return length ;
}
2017-06-29 21:44:49 +00:00
/** ZSTD_compressStream_generic():
2018-12-03 22:22:38 +00:00
* internal function for all * compressStream * ( ) variants
2018-02-03 00:31:20 +00:00
* non - static , because can be called from zstdmt_compress . c
2017-06-29 21:44:49 +00:00
* @ return : hint size for next input */
2019-03-13 21:05:18 +00:00
static size_t ZSTD_compressStream_generic ( ZSTD_CStream * zcs ,
ZSTD_outBuffer * output ,
ZSTD_inBuffer * input ,
ZSTD_EndDirective const flushMode )
2016-08-11 23:20:36 +00:00
{
2017-05-31 01:10:26 +00:00
const char * const istart = ( const char * ) input - > src ;
const char * const iend = istart + input - > size ;
const char * ip = istart + input - > pos ;
char * const ostart = ( char * ) output - > dst ;
char * const oend = ostart + output - > size ;
char * op = ostart + output - > pos ;
2016-08-11 23:20:36 +00:00
U32 someMoreWork = 1 ;
2017-05-31 01:10:26 +00:00
2017-06-03 01:20:48 +00:00
/* check expectations */
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 5 , " ZSTD_compressStream_generic, flush=%u " , ( unsigned ) flushMode ) ;
2017-05-18 01:36:15 +00:00
assert ( zcs - > inBuff ! = NULL ) ;
saves 3-bytes on small input with streaming API
zstd streaming API was adding a null-block at end of frame for small input.
Reason is : on small input, a single block is enough.
ZSTD_CStream would size its input buffer to expect a single block of this size,
automatically triggering a flush on reaching this size.
Unfortunately, that last byte was generally received before the "end" directive (at least in `fileio`).
The later "end" directive would force the creation of a 3-bytes last block to indicate end of frame.
The solution is to not flush automatically, which is btw the expected behavior.
It happens in this case because blocksize is defined with exactly the same size as input.
Just adding one-byte is enough to stop triggering the automatic flush.
I initially looked at another solution, solving the problem directly in the compression context.
But it felt awkward.
Now, the underlying compression API `ZSTD_compressContinue()` would take the decision the close a frame
on reaching its expected end (`pledgedSrcSize`).
This feels awkward, a responsability over-reach, beyond the definition of this API.
ZSTD_compressContinue() is clearly documented as a guaranteed flush,
with ZSTD_compressEnd() generating a guaranteed end.
I faced similar issue when trying to port a similar mechanism at the higher streaming layer.
Having ZSTD_CStream end a frame automatically on reaching `pledgedSrcSize` can surprise the caller,
since it did not explicitly requested an end of frame.
The only sensible action remaining after that is to end the frame with no additional input.
This adds additional logic in the ZSTD_CStream state to check this condition.
Plus some potential confusion on the meaning of ZSTD_endStream() with no additional input (ending confirmation ? new 0-size frame ?)
In the end, just enlarging input buffer by 1 byte feels the least intrusive change.
It's also a contract remaining inside the streaming layer, so the logic is contained in this part of the code.
The patch also introduces a new test checking that size of small frame is as expected, without additional 3-bytes null block.
2017-12-14 19:47:02 +00:00
assert ( zcs - > inBuffSize > 0 ) ;
assert ( zcs - > outBuff ! = NULL ) ;
assert ( zcs - > outBuffSize > 0 ) ;
2017-06-03 01:20:48 +00:00
assert ( output - > pos < = output - > size ) ;
assert ( input - > pos < = input - > size ) ;
2017-05-19 17:17:59 +00:00
2016-08-11 23:20:36 +00:00
while ( someMoreWork ) {
2017-05-08 23:08:01 +00:00
switch ( zcs - > streamStage )
2016-08-11 23:20:36 +00:00
{
2017-05-23 00:06:04 +00:00
case zcss_init :
2019-01-28 22:05:18 +00:00
RETURN_ERROR ( init_missing , " call ZSTD_initCStream() first! " ) ;
2016-08-11 23:20:36 +00:00
case zcss_load :
2017-06-29 21:44:49 +00:00
if ( ( flushMode = = ZSTD_e_end )
2017-07-03 22:52:19 +00:00
& & ( ( size_t ) ( oend - op ) > = ZSTD_compressBound ( iend - ip ) ) /* enough dstCapacity */
2017-06-29 21:44:49 +00:00
& & ( zcs - > inBuffPos = = 0 ) ) {
/* shortcut to compression pass directly into output buffer */
size_t const cSize = ZSTD_compressEnd ( zcs ,
op , oend - op , ip , iend - ip ) ;
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 4 , " ZSTD_compressEnd : cSize=%u " , ( unsigned ) cSize ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( cSize ) ;
2017-06-29 21:44:49 +00:00
ip = iend ;
op + = cSize ;
zcs - > frameEnded = 1 ;
2018-11-16 00:12:39 +00:00
ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ;
2017-06-29 21:44:49 +00:00
someMoreWork = 0 ; break ;
2017-07-03 22:52:19 +00:00
}
/* complete loading into inBuffer */
2016-08-11 23:20:36 +00:00
{ size_t const toLoad = zcs - > inBuffTarget - zcs - > inBuffPos ;
2017-05-31 17:03:20 +00:00
size_t const loaded = ZSTD_limitCopy (
zcs - > inBuff + zcs - > inBuffPos , toLoad ,
ip , iend - ip ) ;
2016-08-11 23:20:36 +00:00
zcs - > inBuffPos + = loaded ;
ip + = loaded ;
2017-05-19 17:17:59 +00:00
if ( ( flushMode = = ZSTD_e_continue )
& & ( zcs - > inBuffPos < zcs - > inBuffTarget ) ) {
/* not enough input to fill full block : stop here */
someMoreWork = 0 ; break ;
}
if ( ( flushMode = = ZSTD_e_flush )
& & ( zcs - > inBuffPos = = zcs - > inToCompress ) ) {
/* empty */
someMoreWork = 0 ; break ;
2017-06-16 18:58:21 +00:00
}
}
2016-08-11 23:20:36 +00:00
/* compress current block (note : this stage cannot be stopped in the middle) */
2017-05-19 17:17:59 +00:00
DEBUGLOG ( 5 , " stream compression stage (flushMode==%u) " , flushMode ) ;
2016-08-11 23:20:36 +00:00
{ void * cDst ;
size_t cSize ;
size_t const iSize = zcs - > inBuffPos - zcs - > inToCompress ;
size_t oSize = oend - op ;
2017-05-19 17:17:59 +00:00
unsigned const lastBlock = ( flushMode = = ZSTD_e_end ) & & ( ip = = iend ) ;
2016-08-11 23:20:36 +00:00
if ( oSize > = ZSTD_compressBound ( iSize ) )
2017-06-16 18:58:21 +00:00
cDst = op ; /* compress into output buffer, to skip flush stage */
2016-08-11 23:20:36 +00:00
else
cDst = zcs - > outBuff , oSize = zcs - > outBuffSize ;
2017-05-19 17:17:59 +00:00
cSize = lastBlock ?
ZSTD_compressEnd ( zcs , cDst , oSize ,
zcs - > inBuff + zcs - > inToCompress , iSize ) :
ZSTD_compressContinue ( zcs , cDst , oSize ,
zcs - > inBuff + zcs - > inToCompress , iSize ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( cSize ) ;
2017-05-19 17:17:59 +00:00
zcs - > frameEnded = lastBlock ;
2016-08-11 23:20:36 +00:00
/* prepare next block */
zcs - > inBuffTarget = zcs - > inBuffPos + zcs - > blockSize ;
if ( zcs - > inBuffTarget > zcs - > inBuffSize )
2017-05-19 17:17:59 +00:00
zcs - > inBuffPos = 0 , zcs - > inBuffTarget = zcs - > blockSize ;
2017-05-20 02:46:15 +00:00
DEBUGLOG ( 5 , " inBuffTarget:%u / inBuffSize:%u " ,
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
( unsigned ) zcs - > inBuffTarget , ( unsigned ) zcs - > inBuffSize ) ;
2017-05-20 02:46:15 +00:00
if ( ! lastBlock )
assert ( zcs - > inBuffTarget < = zcs - > inBuffSize ) ;
2016-08-11 23:20:36 +00:00
zcs - > inToCompress = zcs - > inBuffPos ;
2017-05-19 17:17:59 +00:00
if ( cDst = = op ) { /* no need to flush */
op + = cSize ;
if ( zcs - > frameEnded ) {
2017-06-16 18:58:21 +00:00
DEBUGLOG ( 5 , " Frame completed directly in outBuffer " ) ;
2017-05-19 17:17:59 +00:00
someMoreWork = 0 ;
2018-11-16 00:12:39 +00:00
ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ;
2017-05-19 17:17:59 +00:00
}
break ;
}
2016-08-11 23:20:36 +00:00
zcs - > outBuffContentSize = cSize ;
zcs - > outBuffFlushedSize = 0 ;
2017-05-19 17:17:59 +00:00
zcs - > streamStage = zcss_flush ; /* pass-through to flush stage */
2016-08-11 23:20:36 +00:00
}
2017-05-11 07:47:20 +00:00
/* fall-through */
2016-08-11 23:20:36 +00:00
case zcss_flush :
2017-05-19 17:17:59 +00:00
DEBUGLOG ( 5 , " flush stage " ) ;
2016-08-11 23:20:36 +00:00
{ size_t const toFlush = zcs - > outBuffContentSize - zcs - > outBuffFlushedSize ;
2019-06-24 21:39:29 +00:00
size_t const flushed = ZSTD_limitCopy ( op , ( size_t ) ( oend - op ) ,
2017-05-31 01:10:26 +00:00
zcs - > outBuff + zcs - > outBuffFlushedSize , toFlush ) ;
2017-07-04 19:39:26 +00:00
DEBUGLOG ( 5 , " toFlush: %u into %u ==> flushed: %u " ,
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
( unsigned ) toFlush , ( unsigned ) ( oend - op ) , ( unsigned ) flushed ) ;
2016-08-11 23:20:36 +00:00
op + = flushed ;
zcs - > outBuffFlushedSize + = flushed ;
2017-05-31 01:10:26 +00:00
if ( toFlush ! = flushed ) {
2017-07-04 19:39:26 +00:00
/* flush not fully completed, presumably because dst is too small */
assert ( op = = oend ) ;
2017-05-31 01:10:26 +00:00
someMoreWork = 0 ;
break ;
}
2016-08-11 23:20:36 +00:00
zcs - > outBuffContentSize = zcs - > outBuffFlushedSize = 0 ;
2017-05-19 17:17:59 +00:00
if ( zcs - > frameEnded ) {
2017-06-16 18:58:21 +00:00
DEBUGLOG ( 5 , " Frame completed on flush " ) ;
2017-05-19 17:17:59 +00:00
someMoreWork = 0 ;
2018-11-16 00:12:39 +00:00
ZSTD_CCtx_reset ( zcs , ZSTD_reset_session_only ) ;
2017-05-19 17:17:59 +00:00
break ;
}
2017-05-08 23:08:01 +00:00
zcs - > streamStage = zcss_load ;
2016-08-11 23:20:36 +00:00
break ;
}
2017-06-01 16:44:54 +00:00
default : /* impossible */
assert ( 0 ) ;
2016-08-11 23:20:36 +00:00
}
}
2017-05-31 01:10:26 +00:00
input - > pos = ip - istart ;
output - > pos = op - ostart ;
2016-08-11 23:20:36 +00:00
if ( zcs - > frameEnded ) return 0 ;
2018-12-03 22:22:38 +00:00
return ZSTD_nextInputSizeHint ( zcs ) ;
}
static size_t ZSTD_nextInputSizeHint_MTorST ( const ZSTD_CCtx * cctx )
{
# ifdef ZSTD_MULTITHREAD
if ( cctx - > appliedParams . nbWorkers > = 1 ) {
assert ( cctx - > mtctx ! = NULL ) ;
return ZSTDMT_nextInputSizeHint ( cctx - > mtctx ) ;
2016-08-11 23:20:36 +00:00
}
2018-12-03 22:22:38 +00:00
# endif
return ZSTD_nextInputSizeHint ( cctx ) ;
2016-08-11 23:20:36 +00:00
}
2016-08-16 23:39:22 +00:00
size_t ZSTD_compressStream ( ZSTD_CStream * zcs , ZSTD_outBuffer * output , ZSTD_inBuffer * input )
{
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_compressStream2 ( zcs , output , input , ZSTD_e_continue ) ) ;
2018-12-03 22:22:38 +00:00
return ZSTD_nextInputSizeHint_MTorST ( zcs ) ;
2016-08-11 23:20:36 +00:00
}
2017-06-06 01:32:48 +00:00
2018-11-30 19:16:26 +00:00
size_t ZSTD_compressStream2 ( ZSTD_CCtx * cctx ,
ZSTD_outBuffer * output ,
ZSTD_inBuffer * input ,
ZSTD_EndDirective endOp )
2017-05-18 01:36:15 +00:00
{
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 5 , " ZSTD_compressStream2, endOp=%u " , ( unsigned ) endOp ) ;
2017-05-18 01:36:15 +00:00
/* check conditions */
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( output - > pos > output - > size , GENERIC ) ;
RETURN_ERROR_IF ( input - > pos > input - > size , GENERIC ) ;
2017-05-18 01:36:15 +00:00
assert ( cctx ! = NULL ) ;
2017-05-31 01:10:26 +00:00
2017-06-29 21:44:49 +00:00
/* transparent initialization stage */
2017-05-18 01:36:15 +00:00
if ( cctx - > streamStage = = zcss_init ) {
2017-08-19 00:37:58 +00:00
ZSTD_CCtx_params params = cctx - > requestedParams ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
ZSTD_prefixDict const prefixDict = cctx - > prefixDict ;
2019-03-21 22:17:41 +00:00
FORWARD_IF_ERROR ( ZSTD_initLocalDict ( cctx ) ) ; /* Init the local dict if present. */
2018-12-12 00:55:33 +00:00
memset ( & cctx - > prefixDict , 0 , sizeof ( cctx - > prefixDict ) ) ; /* single usage */
assert ( prefixDict . dict = = NULL | | cctx - > cdict = = NULL ) ; /* only one can be set */
2018-11-30 19:16:26 +00:00
DEBUGLOG ( 4 , " ZSTD_compressStream2 : transparent init stage " ) ;
Fixed Btree update
ZSTD_updateTree() expected to be followed by a Bt match finder, which would update zc->nextToUpdate.
With the new optimal match finder, it's not necessarily the case : a match might be found during repcode or hash3, and stops there because it reaches sufficient_len, without even entering the binary tree.
Previous policy was to nonetheless update zc->nextToUpdate, but the current position would not be inserted, creating "holes" in the btree, aka positions that will no longer be searched.
Now, when current position is not inserted, zc->nextToUpdate is not update, expecting ZSTD_updateTree() to fill the tree later on.
Solution selected is that ZSTD_updateTree() takes care of properly setting zc->nextToUpdate,
so that it no longer depends on a future function to do this job.
It took time to get there, as the issue started with a memory sanitizer error.
The pb would have been easier to spot with a proper `assert()`.
So this patch add a few of them.
Additionnally, I discovered that `make test` does not enable `assert()` during CLI tests.
This patch enables them.
Unfortunately, these `assert()` triggered other (unrelated) bugs during CLI tests, mostly within zstdmt.
So this patch also fixes them.
- Changed packed structure for gcc memory access : memory sanitizer would complain that a read "might" reach out-of-bound position on the ground that the `union` is larger than the type accessed.
Now, to avoid this issue, each type is independent.
- ZSTD_CCtxParams_setParameter() : @return provides the value of parameter, clamped/fixed appropriately.
- ZSTDMT : changed constant name to ZSTDMT_JOBSIZE_MIN
- ZSTDMT : multithreading is automatically disabled when srcSize <= ZSTDMT_JOBSIZE_MIN, since only one thread will be used in this case (saves memory and runtime).
- ZSTDMT : nbThreads is automatically clamped on setting the value.
2017-11-16 20:18:56 +00:00
if ( endOp = = ZSTD_e_end ) cctx - > pledgedSrcSizePlusOne = input - > size + 1 ; /* auto-fix pledgedSrcSize */
params . cParams = ZSTD_getCParamsFromCCtxParams (
2018-03-19 21:41:23 +00:00
& cctx - > requestedParams , cctx - > pledgedSrcSizePlusOne - 1 , 0 /*dictSize*/ ) ;
2017-06-12 01:46:09 +00:00
2018-06-14 23:24:18 +00:00
2017-06-12 01:46:09 +00:00
# ifdef ZSTD_MULTITHREAD
2018-01-17 00:15:47 +00:00
if ( ( cctx - > pledgedSrcSizePlusOne - 1 ) < = ZSTDMT_JOBSIZE_MIN ) {
2018-02-02 03:29:30 +00:00
params . nbWorkers = 0 ; /* do not invoke multi-threading when src size is too small */
2018-01-17 00:15:47 +00:00
}
2018-02-02 03:29:30 +00:00
if ( params . nbWorkers > 0 ) {
2018-02-03 00:31:20 +00:00
/* mt context creation */
2018-06-20 00:28:56 +00:00
if ( cctx - > mtctx = = NULL ) {
2018-11-30 19:16:26 +00:00
DEBUGLOG ( 4 , " ZSTD_compressStream2: creating new mtctx for nbWorkers=%u " ,
2018-02-02 03:29:30 +00:00
params . nbWorkers ) ;
cctx - > mtctx = ZSTDMT_createCCtx_advanced ( params . nbWorkers , cctx - > customMem ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR_IF ( cctx - > mtctx = = NULL , memory_allocation ) ;
2017-08-29 23:18:21 +00:00
}
2018-02-03 00:31:20 +00:00
/* mt compression */
2018-02-02 03:29:30 +00:00
DEBUGLOG ( 4 , " call ZSTDMT_initCStream_internal as nbWorkers=%u " , params . nbWorkers ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTDMT_initCStream_internal (
2017-10-14 00:39:13 +00:00
cctx - > mtctx ,
2018-03-20 22:13:14 +00:00
prefixDict . dict , prefixDict . dictSize , ZSTD_dct_rawContent ,
2017-10-14 00:39:13 +00:00
cctx - > cdict , params , cctx - > pledgedSrcSizePlusOne - 1 ) ) ;
2017-06-12 01:32:36 +00:00
cctx - > streamStage = zcss_load ;
2018-02-02 03:29:30 +00:00
cctx - > appliedParams . nbWorkers = params . nbWorkers ;
2017-06-12 01:46:09 +00:00
} else
# endif
2019-01-29 17:56:07 +00:00
{ FORWARD_IF_ERROR ( ZSTD_resetCStream_internal ( cctx ,
2018-03-20 22:13:14 +00:00
prefixDict . dict , prefixDict . dictSize , prefixDict . dictContentType ,
2018-03-12 02:56:48 +00:00
cctx - > cdict ,
params , cctx - > pledgedSrcSizePlusOne - 1 ) ) ;
2017-10-14 00:39:13 +00:00
assert ( cctx - > streamStage = = zcss_load ) ;
2018-02-02 03:29:30 +00:00
assert ( cctx - > appliedParams . nbWorkers = = 0 ) ;
2017-06-06 01:32:48 +00:00
} }
2018-12-03 22:22:38 +00:00
/* end of transparent initialization stage */
2017-06-06 01:32:48 +00:00
2017-06-29 21:44:49 +00:00
/* compression stage */
2017-06-12 01:46:09 +00:00
# ifdef ZSTD_MULTITHREAD
2018-02-02 03:29:30 +00:00
if ( cctx - > appliedParams . nbWorkers > 0 ) {
2019-04-09 23:24:17 +00:00
int const forceMaxProgress = ( endOp = = ZSTD_e_flush | | endOp = = ZSTD_e_end ) ;
size_t flushMin ;
assert ( forceMaxProgress | | endOp = = ZSTD_e_continue /* Protection for a new flush type */ ) ;
2018-02-02 23:58:13 +00:00
if ( cctx - > cParamsChanged ) {
2018-03-19 21:41:23 +00:00
ZSTDMT_updateCParams_whileCompressing ( cctx - > mtctx , & cctx - > requestedParams ) ;
2018-02-02 23:58:13 +00:00
cctx - > cParamsChanged = 0 ;
2017-06-16 19:24:01 +00:00
}
2019-04-09 23:24:17 +00:00
do {
flushMin = ZSTDMT_compressStream_generic ( cctx - > mtctx , output , input , endOp ) ;
2018-02-02 23:58:13 +00:00
if ( ZSTD_isError ( flushMin )
| | ( endOp = = ZSTD_e_end & & flushMin = = 0 ) ) { /* compression completed */
2018-11-16 00:12:39 +00:00
ZSTD_CCtx_reset ( cctx , ZSTD_reset_session_only ) ;
2018-02-02 23:58:13 +00:00
}
2019-04-09 23:24:17 +00:00
FORWARD_IF_ERROR ( flushMin ) ;
} while ( forceMaxProgress & & flushMin ! = 0 & & output - > pos < output - > size ) ;
DEBUGLOG ( 5 , " completed ZSTD_compressStream2 delegating to ZSTDMT_compressStream_generic " ) ;
/* Either we don't require maximum forward progress, we've finished the
* flush , or we are out of output space .
*/
assert ( ! forceMaxProgress | | flushMin = = 0 | | output - > pos = = output - > size ) ;
return flushMin ;
}
2017-06-12 01:46:09 +00:00
# endif
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( ZSTD_compressStream_generic ( cctx , output , input , endOp ) ) ;
2018-11-30 19:16:26 +00:00
DEBUGLOG ( 5 , " completed ZSTD_compressStream2 " ) ;
2017-05-31 00:42:00 +00:00
return cctx - > outBuffContentSize - cctx - > outBuffFlushedSize ; /* remaining to flush */
2017-05-18 01:36:15 +00:00
}
2018-11-30 19:16:26 +00:00
size_t ZSTD_compressStream2_simpleArgs (
2017-05-31 00:42:00 +00:00
ZSTD_CCtx * cctx ,
void * dst , size_t dstCapacity , size_t * dstPos ,
const void * src , size_t srcSize , size_t * srcPos ,
ZSTD_EndDirective endOp )
2017-05-18 01:36:15 +00:00
{
2017-05-31 00:42:00 +00:00
ZSTD_outBuffer output = { dst , dstCapacity , * dstPos } ;
ZSTD_inBuffer input = { src , srcSize , * srcPos } ;
2018-11-30 19:16:26 +00:00
/* ZSTD_compressStream2() will check validity of dstPos and srcPos */
size_t const cErr = ZSTD_compressStream2 ( cctx , & output , & input , endOp ) ;
2017-05-31 00:42:00 +00:00
* dstPos = output . pos ;
* srcPos = input . pos ;
2017-06-03 01:20:48 +00:00
return cErr ;
2016-08-11 23:20:36 +00:00
}
2018-11-30 19:16:26 +00:00
size_t ZSTD_compress2 ( ZSTD_CCtx * cctx ,
void * dst , size_t dstCapacity ,
const void * src , size_t srcSize )
{
2018-12-11 01:33:49 +00:00
ZSTD_CCtx_reset ( cctx , ZSTD_reset_session_only ) ;
{ size_t oPos = 0 ;
size_t iPos = 0 ;
size_t const result = ZSTD_compressStream2_simpleArgs ( cctx ,
dst , dstCapacity , & oPos ,
src , srcSize , & iPos ,
ZSTD_e_end ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( result ) ;
2018-12-11 01:33:49 +00:00
if ( result ! = 0 ) { /* compression not completed, due to lack of output space */
assert ( oPos = = dstCapacity ) ;
2019-01-28 22:05:18 +00:00
RETURN_ERROR ( dstSize_tooSmall ) ;
2018-12-11 01:33:49 +00:00
}
2018-12-11 01:42:35 +00:00
assert ( iPos = = srcSize ) ; /* all input is expected consumed */
2018-12-11 01:33:49 +00:00
return oPos ;
2018-12-03 22:22:38 +00:00
}
2018-11-30 19:16:26 +00:00
}
2016-08-11 23:20:36 +00:00
2016-08-12 11:04:27 +00:00
/*====== Finalize ======*/
2016-08-11 23:20:36 +00:00
/*! ZSTD_flushStream() :
2018-02-03 00:31:20 +00:00
* @ return : amount of data remaining to flush */
2016-08-16 23:39:22 +00:00
size_t ZSTD_flushStream ( ZSTD_CStream * zcs , ZSTD_outBuffer * output )
2016-08-11 23:20:36 +00:00
{
2017-05-31 16:59:22 +00:00
ZSTD_inBuffer input = { NULL , 0 , 0 } ;
2018-12-03 22:22:38 +00:00
return ZSTD_compressStream2 ( zcs , output , & input , ZSTD_e_flush ) ;
2016-08-11 23:20:36 +00:00
}
2016-08-16 23:39:22 +00:00
size_t ZSTD_endStream ( ZSTD_CStream * zcs , ZSTD_outBuffer * output )
2016-08-11 23:20:36 +00:00
{
2017-05-31 16:59:22 +00:00
ZSTD_inBuffer input = { NULL , 0 , 0 } ;
2018-12-03 22:22:38 +00:00
size_t const remainingToFlush = ZSTD_compressStream2 ( zcs , output , & input , ZSTD_e_end ) ;
2019-01-29 17:56:07 +00:00
FORWARD_IF_ERROR ( remainingToFlush ) ;
2018-12-03 22:22:38 +00:00
if ( zcs - > appliedParams . nbWorkers > 0 ) return remainingToFlush ; /* minimal estimation */
/* single thread mode : attempt to calculate remaining to flush more precisely */
2017-07-04 19:39:26 +00:00
{ size_t const lastBlockSize = zcs - > frameEnded ? 0 : ZSTD_BLOCKHEADERSIZE ;
2019-06-24 21:39:29 +00:00
size_t const checksumSize = ( size_t ) ( zcs - > frameEnded ? 0 : zcs - > appliedParams . fParams . checksumFlag * 4 ) ;
2018-12-03 22:22:38 +00:00
size_t const toFlush = remainingToFlush + lastBlockSize + checksumSize ;
fix confusion between unsigned <-> U32
as suggested in #1441.
generally U32 and unsigned are the same thing,
except when they are not ...
case : 32-bit compilation for MIPS (uint32_t == unsigned long)
A vast majority of transformation consists in transforming U32 into unsigned.
In rare cases, it's the other way around (typically for internal code, such as seeds).
Among a few issues this patches solves :
- some parameters were declared with type `unsigned` in *.h,
but with type `U32` in their implementation *.c .
- some parameters have type unsigned*,
but the caller user a pointer to U32 instead.
These fixes are useful.
However, the bulk of changes is about %u formating,
which requires unsigned type,
but generally receives U32 values instead,
often just for brevity (U32 is shorter than unsigned).
These changes are generally minor, or even annoying.
As a consequence, the amount of code changed is larger than I would expect for such a patch.
Testing is also a pain :
it requires manually modifying `mem.h`,
in order to lie about `U32`
and force it to be an `unsigned long` typically.
On a 64-bit system, this will break the equivalence unsigned == U32.
Unfortunately, it will also break a few static_assert(), controlling structure sizes.
So it also requires modifying `debug.h` to make `static_assert()` a noop.
And then reverting these changes.
So it's inconvenient, and as a consequence,
this property is currently not checked during CI tests.
Therefore, these problems can emerge again in the future.
I wonder if it is worth ensuring proper distinction of U32 != unsigned in CI tests.
It's another restriction for coding, adding more frustration during merge tests,
since most platforms don't need this distinction (hence contributor will not see it),
and while this can matter in theory, the number of platforms impacted seems minimal.
Thoughts ?
2018-12-22 00:19:44 +00:00
DEBUGLOG ( 4 , " ZSTD_endStream : remaining to flush : %u " , ( unsigned ) toFlush ) ;
2017-07-04 19:39:26 +00:00
return toFlush ;
}
2016-08-11 23:20:36 +00:00
}
2016-02-10 12:37:52 +00:00
/*-===== Pre-defined compression levels =====-*/
2016-01-30 02:14:15 +00:00
2016-04-15 11:44:46 +00:00
# define ZSTD_MAX_CLEVEL 22
2016-07-27 13:09:11 +00:00
int ZSTD_maxCLevel ( void ) { return ZSTD_MAX_CLEVEL ; }
2018-09-20 23:17:49 +00:00
int ZSTD_minCLevel ( void ) { return ( int ) - ZSTD_TARGETLENGTH_MAX ; }
2016-02-03 01:11:32 +00:00
2016-03-30 17:48:05 +00:00
static const ZSTD_compressionParameters ZSTD_defaultCParameters [ 4 ] [ ZSTD_MAX_CLEVEL + 1 ] = {
2019-01-02 20:14:36 +00:00
{ /* "default" - for any srcSize > 256 KB */
2016-04-09 18:32:00 +00:00
/* W, C, H, S, L, TL, strat */
2018-03-11 12:21:53 +00:00
{ 19 , 12 , 13 , 1 , 6 , 1 , ZSTD_fast } , /* base for negative levels */
2018-06-07 22:49:01 +00:00
{ 19 , 13 , 14 , 1 , 7 , 0 , ZSTD_fast } , /* level 1 */
2018-12-10 06:38:05 +00:00
{ 20 , 15 , 16 , 1 , 6 , 0 , ZSTD_fast } , /* level 2 */
{ 21 , 16 , 17 , 1 , 5 , 1 , ZSTD_dfast } , /* level 3 */
{ 21 , 18 , 18 , 1 , 5 , 1 , ZSTD_dfast } , /* level 4 */
{ 21 , 18 , 19 , 2 , 5 , 2 , ZSTD_greedy } , /* level 5 */
{ 21 , 19 , 19 , 3 , 5 , 4 , ZSTD_greedy } , /* level 6 */
{ 21 , 19 , 19 , 3 , 5 , 8 , ZSTD_lazy } , /* level 7 */
2018-05-13 08:53:38 +00:00
{ 21 , 19 , 19 , 3 , 5 , 16 , ZSTD_lazy2 } , /* level 8 */
{ 21 , 19 , 20 , 4 , 5 , 16 , ZSTD_lazy2 } , /* level 9 */
2018-12-10 06:38:05 +00:00
{ 22 , 20 , 21 , 4 , 5 , 16 , ZSTD_lazy2 } , /* level 10 */
{ 22 , 21 , 22 , 4 , 5 , 16 , ZSTD_lazy2 } , /* level 11 */
{ 22 , 21 , 22 , 5 , 5 , 16 , ZSTD_lazy2 } , /* level 12 */
{ 22 , 21 , 22 , 5 , 5 , 32 , ZSTD_btlazy2 } , /* level 13 */
{ 22 , 22 , 23 , 5 , 5 , 32 , ZSTD_btlazy2 } , /* level 14 */
{ 22 , 23 , 23 , 6 , 5 , 32 , ZSTD_btlazy2 } , /* level 15 */
{ 22 , 22 , 22 , 5 , 5 , 48 , ZSTD_btopt } , /* level 16 */
{ 23 , 23 , 22 , 5 , 4 , 64 , ZSTD_btopt } , /* level 17 */
{ 23 , 23 , 22 , 6 , 3 , 64 , ZSTD_btultra } , /* level 18 */
{ 23 , 24 , 22 , 7 , 3 , 256 , ZSTD_btultra2 } , /* level 19 */
{ 25 , 25 , 23 , 7 , 3 , 256 , ZSTD_btultra2 } , /* level 20 */
{ 26 , 26 , 24 , 7 , 3 , 512 , ZSTD_btultra2 } , /* level 21 */
{ 27 , 27 , 25 , 9 , 3 , 999 , ZSTD_btultra2 } , /* level 22 */
2016-01-30 02:14:15 +00:00
} ,
{ /* for srcSize <= 256 KB */
2016-03-30 17:48:05 +00:00
/* W, C, H, S, L, T, strat */
2018-03-11 12:21:53 +00:00
{ 18 , 12 , 13 , 1 , 5 , 1 , ZSTD_fast } , /* base for negative levels */
2018-06-07 22:49:01 +00:00
{ 18 , 13 , 14 , 1 , 6 , 0 , ZSTD_fast } , /* level 1 */
2018-05-19 00:17:12 +00:00
{ 18 , 14 , 14 , 1 , 5 , 1 , ZSTD_dfast } , /* level 2 */
{ 18 , 16 , 16 , 1 , 4 , 1 , ZSTD_dfast } , /* level 3 */
{ 18 , 16 , 17 , 2 , 5 , 2 , ZSTD_greedy } , /* level 4.*/
{ 18 , 18 , 18 , 3 , 5 , 2 , ZSTD_greedy } , /* level 5.*/
{ 18 , 18 , 19 , 3 , 5 , 4 , ZSTD_lazy } , /* level 6.*/
{ 18 , 18 , 19 , 4 , 4 , 4 , ZSTD_lazy } , /* level 7 */
{ 18 , 18 , 19 , 4 , 4 , 8 , ZSTD_lazy2 } , /* level 8 */
{ 18 , 18 , 19 , 5 , 4 , 8 , ZSTD_lazy2 } , /* level 9 */
{ 18 , 18 , 19 , 6 , 4 , 8 , ZSTD_lazy2 } , /* level 10 */
2018-12-09 05:40:08 +00:00
{ 18 , 18 , 19 , 5 , 4 , 12 , ZSTD_btlazy2 } , /* level 11.*/
{ 18 , 19 , 19 , 7 , 4 , 12 , ZSTD_btlazy2 } , /* level 12.*/
{ 18 , 18 , 19 , 4 , 4 , 16 , ZSTD_btopt } , /* level 13 */
{ 18 , 18 , 19 , 4 , 3 , 32 , ZSTD_btopt } , /* level 14.*/
{ 18 , 18 , 19 , 6 , 3 , 128 , ZSTD_btopt } , /* level 15.*/
{ 18 , 19 , 19 , 6 , 3 , 128 , ZSTD_btultra } , /* level 16.*/
{ 18 , 19 , 19 , 8 , 3 , 256 , ZSTD_btultra } , /* level 17.*/
{ 18 , 19 , 19 , 6 , 3 , 128 , ZSTD_btultra2 } , /* level 18.*/
{ 18 , 19 , 19 , 8 , 3 , 256 , ZSTD_btultra2 } , /* level 19.*/
{ 18 , 19 , 19 , 10 , 3 , 512 , ZSTD_btultra2 } , /* level 20.*/
{ 18 , 19 , 19 , 12 , 3 , 512 , ZSTD_btultra2 } , /* level 21.*/
{ 18 , 19 , 19 , 13 , 3 , 999 , ZSTD_btultra2 } , /* level 22.*/
2016-01-30 02:14:15 +00:00
} ,
{ /* for srcSize <= 128 KB */
2016-03-30 17:48:05 +00:00
/* W, C, H, S, L, T, strat */
2018-05-14 00:15:07 +00:00
{ 17 , 12 , 12 , 1 , 5 , 1 , ZSTD_fast } , /* base for negative levels */
2018-06-07 22:49:01 +00:00
{ 17 , 12 , 13 , 1 , 6 , 0 , ZSTD_fast } , /* level 1 */
{ 17 , 13 , 15 , 1 , 5 , 0 , ZSTD_fast } , /* level 2 */
2018-05-16 23:13:37 +00:00
{ 17 , 15 , 16 , 2 , 5 , 1 , ZSTD_dfast } , /* level 3 */
{ 17 , 17 , 17 , 2 , 4 , 1 , ZSTD_dfast } , /* level 4 */
{ 17 , 16 , 17 , 3 , 4 , 2 , ZSTD_greedy } , /* level 5 */
{ 17 , 17 , 17 , 3 , 4 , 4 , ZSTD_lazy } , /* level 6 */
2018-05-14 00:15:07 +00:00
{ 17 , 17 , 17 , 3 , 4 , 8 , ZSTD_lazy2 } , /* level 7 */
2016-07-22 12:36:46 +00:00
{ 17 , 17 , 17 , 4 , 4 , 8 , ZSTD_lazy2 } , /* level 8 */
{ 17 , 17 , 17 , 5 , 4 , 8 , ZSTD_lazy2 } , /* level 9 */
{ 17 , 17 , 17 , 6 , 4 , 8 , ZSTD_lazy2 } , /* level 10 */
2018-12-08 18:42:55 +00:00
{ 17 , 17 , 17 , 5 , 4 , 8 , ZSTD_btlazy2 } , /* level 11 */
{ 17 , 18 , 17 , 7 , 4 , 12 , ZSTD_btlazy2 } , /* level 12 */
{ 17 , 18 , 17 , 3 , 4 , 12 , ZSTD_btopt } , /* level 13.*/
{ 17 , 18 , 17 , 4 , 3 , 32 , ZSTD_btopt } , /* level 14.*/
{ 17 , 18 , 17 , 6 , 3 , 256 , ZSTD_btopt } , /* level 15.*/
{ 17 , 18 , 17 , 6 , 3 , 128 , ZSTD_btultra } , /* level 16.*/
{ 17 , 18 , 17 , 8 , 3 , 256 , ZSTD_btultra } , /* level 17.*/
{ 17 , 18 , 17 , 10 , 3 , 512 , ZSTD_btultra } , /* level 18.*/
{ 17 , 18 , 17 , 5 , 3 , 256 , ZSTD_btultra2 } , /* level 19.*/
{ 17 , 18 , 17 , 7 , 3 , 512 , ZSTD_btultra2 } , /* level 20.*/
{ 17 , 18 , 17 , 9 , 3 , 512 , ZSTD_btultra2 } , /* level 21.*/
{ 17 , 18 , 17 , 11 , 3 , 999 , ZSTD_btultra2 } , /* level 22.*/
2016-01-30 02:14:15 +00:00
} ,
{ /* for srcSize <= 16 KB */
2016-03-30 17:48:05 +00:00
/* W, C, H, S, L, T, strat */
2018-03-11 12:21:53 +00:00
{ 14 , 12 , 13 , 1 , 5 , 1 , ZSTD_fast } , /* base for negative levels */
2018-06-07 22:49:01 +00:00
{ 14 , 14 , 15 , 1 , 5 , 0 , ZSTD_fast } , /* level 1 */
{ 14 , 14 , 15 , 1 , 4 , 0 , ZSTD_fast } , /* level 2 */
2018-12-08 04:12:43 +00:00
{ 14 , 14 , 15 , 2 , 4 , 1 , ZSTD_dfast } , /* level 3 */
{ 14 , 14 , 14 , 4 , 4 , 2 , ZSTD_greedy } , /* level 4 */
2018-05-16 23:13:37 +00:00
{ 14 , 14 , 14 , 3 , 4 , 4 , ZSTD_lazy } , /* level 5.*/
{ 14 , 14 , 14 , 4 , 4 , 8 , ZSTD_lazy2 } , /* level 6 */
{ 14 , 14 , 14 , 6 , 4 , 8 , ZSTD_lazy2 } , /* level 7 */
{ 14 , 14 , 14 , 8 , 4 , 8 , ZSTD_lazy2 } , /* level 8.*/
{ 14 , 15 , 14 , 5 , 4 , 8 , ZSTD_btlazy2 } , /* level 9.*/
{ 14 , 15 , 14 , 9 , 4 , 8 , ZSTD_btlazy2 } , /* level 10.*/
{ 14 , 15 , 14 , 3 , 4 , 12 , ZSTD_btopt } , /* level 11.*/
2018-12-08 04:12:43 +00:00
{ 14 , 15 , 14 , 4 , 3 , 24 , ZSTD_btopt } , /* level 12.*/
{ 14 , 15 , 14 , 5 , 3 , 32 , ZSTD_btultra } , /* level 13.*/
{ 14 , 15 , 15 , 6 , 3 , 64 , ZSTD_btultra } , /* level 14.*/
{ 14 , 15 , 15 , 7 , 3 , 256 , ZSTD_btultra } , /* level 15.*/
{ 14 , 15 , 15 , 5 , 3 , 48 , ZSTD_btultra2 } , /* level 16.*/
{ 14 , 15 , 15 , 6 , 3 , 128 , ZSTD_btultra2 } , /* level 17.*/
{ 14 , 15 , 15 , 7 , 3 , 256 , ZSTD_btultra2 } , /* level 18.*/
{ 14 , 15 , 15 , 8 , 3 , 256 , ZSTD_btultra2 } , /* level 19.*/
{ 14 , 15 , 15 , 8 , 3 , 512 , ZSTD_btultra2 } , /* level 20.*/
{ 14 , 15 , 15 , 9 , 3 , 512 , ZSTD_btultra2 } , /* level 21.*/
{ 14 , 15 , 15 , 10 , 3 , 999 , ZSTD_btultra2 } , /* level 22.*/
2016-01-30 02:14:15 +00:00
} ,
} ;
2016-05-18 10:06:33 +00:00
/*! ZSTD_getCParams() :
2019-01-02 20:14:36 +00:00
* @ return ZSTD_compressionParameters structure for a selected compression level , srcSize and dictSize .
* Size values are optional , provide 0 if not known or unused */
2017-05-19 17:17:59 +00:00
ZSTD_compressionParameters ZSTD_getCParams ( int compressionLevel , unsigned long long srcSizeHint , size_t dictSize )
2016-01-30 02:14:15 +00:00
{
2017-05-19 17:17:59 +00:00
size_t const addedSize = srcSizeHint ? 0 : 500 ;
2019-01-02 20:14:36 +00:00
U64 const rSize = srcSizeHint + dictSize ? srcSizeHint + dictSize + addedSize : ZSTD_CONTENTSIZE_UNKNOWN ; /* intentional overflow for srcSizeHint == ZSTD_CONTENTSIZE_UNKNOWN */
U32 const tableID = ( rSize < = 256 KB ) + ( rSize < = 128 KB ) + ( rSize < = 16 KB ) ;
2018-03-12 02:56:48 +00:00
int row = compressionLevel ;
2018-03-13 21:23:14 +00:00
DEBUGLOG ( 5 , " ZSTD_getCParams (cLevel=%i) " , compressionLevel ) ;
2018-03-12 02:56:48 +00:00
if ( compressionLevel = = 0 ) row = ZSTD_CLEVEL_DEFAULT ; /* 0 == default */
if ( compressionLevel < 0 ) row = 0 ; /* entry 0 is baseline for fast mode */
if ( compressionLevel > ZSTD_MAX_CLEVEL ) row = ZSTD_MAX_CLEVEL ;
{ ZSTD_compressionParameters cp = ZSTD_defaultCParameters [ tableID ] [ row ] ;
2018-03-11 12:21:53 +00:00
if ( compressionLevel < 0 ) cp . targetLength = ( unsigned ) ( - compressionLevel ) ; /* acceleration factor */
2019-01-02 20:14:36 +00:00
return ZSTD_adjustCParams_internal ( cp , srcSizeHint , dictSize ) ; /* refine parameters based on srcSize & dictSize */
2018-12-08 04:12:43 +00:00
}
2016-01-30 02:14:15 +00:00
}
2016-06-27 13:12:26 +00:00
/*! ZSTD_getParams() :
2019-01-02 20:14:36 +00:00
* same idea as ZSTD_getCParams ( )
* @ return a ` ZSTD_parameters ` structure ( instead of ` ZSTD_compressionParameters ` ) .
* Fields of ` ZSTD_frameParameters ` are set to default values */
2017-05-19 17:17:59 +00:00
ZSTD_parameters ZSTD_getParams ( int compressionLevel , unsigned long long srcSizeHint , size_t dictSize ) {
2016-06-27 13:12:26 +00:00
ZSTD_parameters params ;
2017-05-19 17:17:59 +00:00
ZSTD_compressionParameters const cParams = ZSTD_getCParams ( compressionLevel , srcSizeHint , dictSize ) ;
2018-03-13 21:23:14 +00:00
DEBUGLOG ( 5 , " ZSTD_getParams (cLevel=%i) " , compressionLevel ) ;
2016-06-27 13:12:26 +00:00
memset ( & params , 0 , sizeof ( params ) ) ;
params . cParams = cParams ;
2017-10-14 00:39:13 +00:00
params . fParams . contentSizeFlag = 1 ;
2016-06-27 13:12:26 +00:00
return params ;
}