added error detection for pthread initialization, added compression completion measurement, fixed const values
This commit is contained in:
parent
1ab3f06f00
commit
50ce4eaeb6
@ -25,6 +25,7 @@
|
|||||||
#define DEFAULT_DISPLAY_LEVEL 1
|
#define DEFAULT_DISPLAY_LEVEL 1
|
||||||
#define DEFAULT_COMPRESSION_LEVEL 6
|
#define DEFAULT_COMPRESSION_LEVEL 6
|
||||||
#define DEFAULT_ADAPT_PARAM 1
|
#define DEFAULT_ADAPT_PARAM 1
|
||||||
|
#define MAX_COMPRESSION_LEVEL_CHANGE 10
|
||||||
|
|
||||||
static int g_displayLevel = DEFAULT_DISPLAY_LEVEL;
|
static int g_displayLevel = DEFAULT_DISPLAY_LEVEL;
|
||||||
static unsigned g_compressionLevel = DEFAULT_COMPRESSION_LEVEL;
|
static unsigned g_compressionLevel = DEFAULT_COMPRESSION_LEVEL;
|
||||||
@ -65,6 +66,16 @@ typedef struct {
|
|||||||
size_t dictSize;
|
size_t dictSize;
|
||||||
} jobDescription;
|
} jobDescription;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
pthread_mutex_t pMutex;
|
||||||
|
int noError;
|
||||||
|
} mutex_t;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
pthread_cond_t pCond;
|
||||||
|
int noError;
|
||||||
|
} cond_t;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
unsigned compressionLevel;
|
unsigned compressionLevel;
|
||||||
unsigned numActiveThreads;
|
unsigned numActiveThreads;
|
||||||
@ -76,14 +87,16 @@ typedef struct {
|
|||||||
unsigned jobWriteID;
|
unsigned jobWriteID;
|
||||||
unsigned allJobsCompleted;
|
unsigned allJobsCompleted;
|
||||||
unsigned adaptParam;
|
unsigned adaptParam;
|
||||||
pthread_mutex_t jobCompressed_mutex;
|
unsigned completionMeasured;
|
||||||
pthread_cond_t jobCompressed_cond;
|
double completion;
|
||||||
pthread_mutex_t jobReady_mutex;
|
mutex_t jobCompressed_mutex;
|
||||||
pthread_cond_t jobReady_cond;
|
cond_t jobCompressed_cond;
|
||||||
pthread_mutex_t allJobsCompleted_mutex;
|
mutex_t jobReady_mutex;
|
||||||
pthread_cond_t allJobsCompleted_cond;
|
cond_t jobReady_cond;
|
||||||
pthread_mutex_t jobWrite_mutex;
|
mutex_t allJobsCompleted_mutex;
|
||||||
pthread_cond_t jobWrite_cond;
|
cond_t allJobsCompleted_cond;
|
||||||
|
mutex_t jobWrite_mutex;
|
||||||
|
cond_t jobWrite_cond;
|
||||||
size_t lastDictSize;
|
size_t lastDictSize;
|
||||||
inBuff_t input;
|
inBuff_t input;
|
||||||
cStat_t stats;
|
cStat_t stats;
|
||||||
@ -107,20 +120,38 @@ static void freeCompressionJobs(adaptCCtx* ctx)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int destroyMutex(mutex_t* mutex)
|
||||||
|
{
|
||||||
|
if (mutex->noError) {
|
||||||
|
int const ret = pthread_mutex_destroy(&mutex->pMutex);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int destroyCond(cond_t* cond)
|
||||||
|
{
|
||||||
|
if (cond->noError) {
|
||||||
|
int const ret = pthread_cond_destroy(&cond->pCond);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int freeCCtx(adaptCCtx* ctx)
|
static int freeCCtx(adaptCCtx* ctx)
|
||||||
{
|
{
|
||||||
if (!ctx) return 0;
|
if (!ctx) return 0;
|
||||||
{
|
{
|
||||||
int error = 0;
|
int error = 0;
|
||||||
error |= pthread_mutex_destroy(&ctx->jobCompressed_mutex);
|
error |= destroyMutex(&ctx->jobCompressed_mutex);
|
||||||
error |= pthread_cond_destroy(&ctx->jobCompressed_cond);
|
error |= destroyCond(&ctx->jobCompressed_cond);
|
||||||
error |= pthread_mutex_destroy(&ctx->jobReady_mutex);
|
error |= destroyMutex(&ctx->jobReady_mutex);
|
||||||
error |= pthread_cond_destroy(&ctx->jobReady_cond);
|
error |= destroyCond(&ctx->jobReady_cond);
|
||||||
error |= pthread_mutex_destroy(&ctx->allJobsCompleted_mutex);
|
error |= destroyMutex(&ctx->allJobsCompleted_mutex);
|
||||||
error |= pthread_cond_destroy(&ctx->allJobsCompleted_cond);
|
error |= destroyCond(&ctx->allJobsCompleted_cond);
|
||||||
error |= pthread_mutex_destroy(&ctx->jobWrite_mutex);
|
error |= destroyMutex(&ctx->jobWrite_mutex);
|
||||||
error |= pthread_cond_destroy(&ctx->jobWrite_cond);
|
error |= destroyCond(&ctx->jobWrite_cond);
|
||||||
error |= (ctx->dstFile != NULL && ctx->dstFile != stdout) ? fclose(ctx->dstFile) : 0;
|
error |= (ctx->dstFile != NULL && ctx->dstFile != stdout) ? fclose(ctx->dstFile) : 0;
|
||||||
error |= ZSTD_isError(ZSTD_freeCCtx(ctx->cctx));
|
error |= ZSTD_isError(ZSTD_freeCCtx(ctx->cctx));
|
||||||
free(ctx->input.buffer.start);
|
free(ctx->input.buffer.start);
|
||||||
if (ctx->jobs){
|
if (ctx->jobs){
|
||||||
@ -132,23 +163,41 @@ static int freeCCtx(adaptCCtx* ctx)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int initMutex(mutex_t* mutex)
|
||||||
|
{
|
||||||
|
int const ret = pthread_mutex_init(&mutex->pMutex, NULL);
|
||||||
|
mutex->noError = !ret;
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int initCond(cond_t* cond)
|
||||||
|
{
|
||||||
|
int const ret = pthread_cond_init(&cond->pCond, NULL);
|
||||||
|
cond->noError = !ret;
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static adaptCCtx* createCCtx(unsigned numJobs, const char* const outFilename)
|
static adaptCCtx* createCCtx(unsigned numJobs, const char* const outFilename)
|
||||||
{
|
{
|
||||||
|
|
||||||
adaptCCtx* ctx = calloc(1, sizeof(adaptCCtx));
|
adaptCCtx* const ctx = calloc(1, sizeof(adaptCCtx));
|
||||||
if (ctx == NULL) {
|
if (ctx == NULL) {
|
||||||
DISPLAY("Error: could not allocate space for context\n");
|
DISPLAY("Error: could not allocate space for context\n");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
ctx->compressionLevel = g_compressionLevel;
|
ctx->compressionLevel = g_compressionLevel;
|
||||||
pthread_mutex_init(&ctx->jobCompressed_mutex, NULL);
|
{
|
||||||
pthread_cond_init(&ctx->jobCompressed_cond, NULL);
|
int pthreadError = 0;
|
||||||
pthread_mutex_init(&ctx->jobReady_mutex, NULL);
|
pthreadError |= initMutex(&ctx->jobCompressed_mutex);
|
||||||
pthread_cond_init(&ctx->jobReady_cond, NULL);
|
pthreadError |= initCond(&ctx->jobCompressed_cond);
|
||||||
pthread_mutex_init(&ctx->allJobsCompleted_mutex, NULL);
|
pthreadError |= initMutex(&ctx->jobReady_mutex);
|
||||||
pthread_cond_init(&ctx->allJobsCompleted_cond, NULL);
|
pthreadError |= initCond(&ctx->jobReady_cond);
|
||||||
pthread_mutex_init(&ctx->jobWrite_mutex, NULL);
|
pthreadError |= initMutex(&ctx->allJobsCompleted_mutex);
|
||||||
pthread_cond_init(&ctx->jobWrite_cond, NULL);
|
pthreadError |= initCond(&ctx->allJobsCompleted_cond);
|
||||||
|
pthreadError |= initMutex(&ctx->jobWrite_mutex);
|
||||||
|
pthreadError |= initCond(&ctx->jobWrite_cond);
|
||||||
|
if (pthreadError) return NULL;
|
||||||
|
}
|
||||||
ctx->numJobs = numJobs;
|
ctx->numJobs = numJobs;
|
||||||
ctx->jobReadyID = 0;
|
ctx->jobReadyID = 0;
|
||||||
ctx->jobCompressedID = 0;
|
ctx->jobCompressedID = 0;
|
||||||
@ -213,11 +262,11 @@ static adaptCCtx* createCCtx(unsigned numJobs, const char* const outFilename)
|
|||||||
static void waitUntilAllJobsCompleted(adaptCCtx* ctx)
|
static void waitUntilAllJobsCompleted(adaptCCtx* ctx)
|
||||||
{
|
{
|
||||||
if (!ctx) return;
|
if (!ctx) return;
|
||||||
pthread_mutex_lock(&ctx->allJobsCompleted_mutex);
|
pthread_mutex_lock(&ctx->allJobsCompleted_mutex.pMutex);
|
||||||
while (ctx->allJobsCompleted == 0) {
|
while (ctx->allJobsCompleted == 0) {
|
||||||
pthread_cond_wait(&ctx->allJobsCompleted_cond, &ctx->allJobsCompleted_mutex);
|
pthread_cond_wait(&ctx->allJobsCompleted_cond.pCond, &ctx->allJobsCompleted_mutex.pMutex);
|
||||||
}
|
}
|
||||||
pthread_mutex_unlock(&ctx->allJobsCompleted_mutex);
|
pthread_mutex_unlock(&ctx->allJobsCompleted_mutex.pMutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -252,14 +301,20 @@ static unsigned adaptCompressionLevel(adaptCCtx* ctx)
|
|||||||
reset = 1;
|
reset = 1;
|
||||||
}
|
}
|
||||||
else if (compressSlow && ctx->compressionLevel > 1) {
|
else if (compressSlow && ctx->compressionLevel > 1) {
|
||||||
|
double const completion = ctx->completion;
|
||||||
|
unsigned const maxChange = (unsigned)((1-completion) * MAX_COMPRESSION_LEVEL_CHANGE);
|
||||||
|
unsigned const change = MIN(maxChange, ctx->compressionLevel - 1);
|
||||||
DEBUG(3, "decreasing compression level %u\n", ctx->compressionLevel);
|
DEBUG(3, "decreasing compression level %u\n", ctx->compressionLevel);
|
||||||
ctx->compressionLevel--;
|
DEBUG(2, "completion: %f\n", completion);
|
||||||
|
ctx->compressionLevel -= change;
|
||||||
reset = 1;
|
reset = 1;
|
||||||
}
|
}
|
||||||
if (reset) {
|
if (reset) {
|
||||||
ctx->stats.readyCounter = 0;
|
ctx->stats.readyCounter = 0;
|
||||||
ctx->stats.writeCounter = 0;
|
ctx->stats.writeCounter = 0;
|
||||||
ctx->stats.compressedCounter = 0;
|
ctx->stats.compressedCounter = 0;
|
||||||
|
ctx->completion = 1;
|
||||||
|
ctx->completionMeasured = 0;
|
||||||
}
|
}
|
||||||
return ctx->compressionLevel;
|
return ctx->compressionLevel;
|
||||||
}
|
}
|
||||||
@ -281,14 +336,14 @@ static void* compressionThread(void* arg)
|
|||||||
unsigned const currJobIndex = currJob % ctx->numJobs;
|
unsigned const currJobIndex = currJob % ctx->numJobs;
|
||||||
jobDescription* job = &ctx->jobs[currJobIndex];
|
jobDescription* job = &ctx->jobs[currJobIndex];
|
||||||
DEBUG(3, "compressionThread(): waiting on job ready\n");
|
DEBUG(3, "compressionThread(): waiting on job ready\n");
|
||||||
pthread_mutex_lock(&ctx->jobReady_mutex);
|
pthread_mutex_lock(&ctx->jobReady_mutex.pMutex);
|
||||||
while(currJob + 1 > ctx->jobReadyID) {
|
while(currJob + 1 > ctx->jobReadyID) {
|
||||||
ctx->stats.waitReady++;
|
ctx->stats.waitReady++;
|
||||||
ctx->stats.readyCounter++;
|
ctx->stats.readyCounter++;
|
||||||
DEBUG(3, "waiting on job ready, nextJob: %u\n", currJob);
|
DEBUG(3, "waiting on job ready, nextJob: %u\n", currJob);
|
||||||
pthread_cond_wait(&ctx->jobReady_cond, &ctx->jobReady_mutex);
|
pthread_cond_wait(&ctx->jobReady_cond.pCond, &ctx->jobReady_mutex.pMutex);
|
||||||
}
|
}
|
||||||
pthread_mutex_unlock(&ctx->jobReady_mutex);
|
pthread_mutex_unlock(&ctx->jobReady_mutex.pMutex);
|
||||||
DEBUG(3, "compressionThread(): continuing after job ready\n");
|
DEBUG(3, "compressionThread(): continuing after job ready\n");
|
||||||
DEBUG(3, "DICTIONARY ENDED\n");
|
DEBUG(3, "DICTIONARY ENDED\n");
|
||||||
DEBUG(3, "%.*s", (int)job->src.size, (char*)job->src.start);
|
DEBUG(3, "%.*s", (int)job->src.size, (char*)job->src.start);
|
||||||
@ -299,7 +354,7 @@ static void* compressionThread(void* arg)
|
|||||||
DEBUG(3, "compression level used: %u\n", cLevel);
|
DEBUG(3, "compression level used: %u\n", cLevel);
|
||||||
/* begin compression */
|
/* begin compression */
|
||||||
{
|
{
|
||||||
size_t useDictSize = MIN(getUseableDictSize(cLevel), job->dictSize);
|
size_t const useDictSize = MIN(getUseableDictSize(cLevel), job->dictSize);
|
||||||
DEBUG(2, "useDictSize: %zu, job->dictSize: %zu\n", useDictSize, job->dictSize);
|
DEBUG(2, "useDictSize: %zu, job->dictSize: %zu\n", useDictSize, job->dictSize);
|
||||||
size_t const dictModeError = ZSTD_setCCtxParameter(ctx->cctx, ZSTD_p_forceRawDict, 1);
|
size_t const dictModeError = ZSTD_setCCtxParameter(ctx->cctx, ZSTD_p_forceRawDict, 1);
|
||||||
size_t const initError = ZSTD_compressBegin_usingDict(ctx->cctx, job->src.start + job->dictSize - useDictSize, useDictSize, cLevel);
|
size_t const initError = ZSTD_compressBegin_usingDict(ctx->cctx, job->src.start + job->dictSize - useDictSize, useDictSize, cLevel);
|
||||||
@ -332,11 +387,11 @@ static void* compressionThread(void* arg)
|
|||||||
}
|
}
|
||||||
job->dst.size = job->compressedSize;
|
job->dst.size = job->compressedSize;
|
||||||
}
|
}
|
||||||
pthread_mutex_lock(&ctx->jobCompressed_mutex);
|
pthread_mutex_lock(&ctx->jobCompressed_mutex.pMutex);
|
||||||
ctx->jobCompressedID++;
|
ctx->jobCompressedID++;
|
||||||
DEBUG(3, "signaling for job %u\n", currJob);
|
DEBUG(3, "signaling for job %u\n", currJob);
|
||||||
pthread_cond_signal(&ctx->jobCompressed_cond);
|
pthread_cond_signal(&ctx->jobCompressed_cond.pCond);
|
||||||
pthread_mutex_unlock(&ctx->jobCompressed_mutex);
|
pthread_mutex_unlock(&ctx->jobCompressed_mutex.pMutex);
|
||||||
DEBUG(3, "finished job compression %u\n", currJob);
|
DEBUG(3, "finished job compression %u\n", currJob);
|
||||||
currJob++;
|
currJob++;
|
||||||
if (job->lastJob || ctx->threadError) {
|
if (job->lastJob || ctx->threadError) {
|
||||||
@ -374,14 +429,19 @@ static void* outputThread(void* arg)
|
|||||||
unsigned const currJobIndex = currJob % ctx->numJobs;
|
unsigned const currJobIndex = currJob % ctx->numJobs;
|
||||||
jobDescription* job = &ctx->jobs[currJobIndex];
|
jobDescription* job = &ctx->jobs[currJobIndex];
|
||||||
DEBUG(3, "outputThread(): waiting on job compressed\n");
|
DEBUG(3, "outputThread(): waiting on job compressed\n");
|
||||||
pthread_mutex_lock(&ctx->jobCompressed_mutex);
|
pthread_mutex_lock(&ctx->jobCompressed_mutex.pMutex);
|
||||||
while (currJob + 1 > ctx->jobCompressedID) {
|
while (currJob + 1 > ctx->jobCompressedID) {
|
||||||
ctx->stats.waitCompressed++;
|
ctx->stats.waitCompressed++;
|
||||||
ctx->stats.compressedCounter++;
|
ctx->stats.compressedCounter++;
|
||||||
|
if (!ctx->completionMeasured) {
|
||||||
|
ctx->completion = ZSTD_getCompletion(ctx->cctx);
|
||||||
|
ctx->completionMeasured = 1;
|
||||||
|
}
|
||||||
|
DEBUG(2, "output detected completion: %f\n", ctx->completion);
|
||||||
DEBUG(3, "waiting on job compressed, nextJob: %u\n", currJob);
|
DEBUG(3, "waiting on job compressed, nextJob: %u\n", currJob);
|
||||||
pthread_cond_wait(&ctx->jobCompressed_cond, &ctx->jobCompressed_mutex);
|
pthread_cond_wait(&ctx->jobCompressed_cond.pCond, &ctx->jobCompressed_mutex.pMutex);
|
||||||
}
|
}
|
||||||
pthread_mutex_unlock(&ctx->jobCompressed_mutex);
|
pthread_mutex_unlock(&ctx->jobCompressed_mutex.pMutex);
|
||||||
DEBUG(3, "outputThread(): continuing after job compressed\n");
|
DEBUG(3, "outputThread(): continuing after job compressed\n");
|
||||||
{
|
{
|
||||||
size_t const compressedSize = job->compressedSize;
|
size_t const compressedSize = job->compressedSize;
|
||||||
@ -403,19 +463,19 @@ static void* outputThread(void* arg)
|
|||||||
currJob++;
|
currJob++;
|
||||||
displayProgress(currJob, ctx->compressionLevel, job->lastJob);
|
displayProgress(currJob, ctx->compressionLevel, job->lastJob);
|
||||||
DEBUG(3, "locking job write mutex\n");
|
DEBUG(3, "locking job write mutex\n");
|
||||||
pthread_mutex_lock(&ctx->jobWrite_mutex);
|
pthread_mutex_lock(&ctx->jobWrite_mutex.pMutex);
|
||||||
ctx->jobWriteID++;
|
ctx->jobWriteID++;
|
||||||
pthread_cond_signal(&ctx->jobWrite_cond);
|
pthread_cond_signal(&ctx->jobWrite_cond.pCond);
|
||||||
pthread_mutex_unlock(&ctx->jobWrite_mutex);
|
pthread_mutex_unlock(&ctx->jobWrite_mutex.pMutex);
|
||||||
DEBUG(3, "unlocking job write mutex\n");
|
DEBUG(3, "unlocking job write mutex\n");
|
||||||
|
|
||||||
if (job->lastJob || ctx->threadError) {
|
if (job->lastJob || ctx->threadError) {
|
||||||
/* finished with all jobs */
|
/* finished with all jobs */
|
||||||
DEBUG(3, "all jobs finished writing\n");
|
DEBUG(3, "all jobs finished writing\n");
|
||||||
pthread_mutex_lock(&ctx->allJobsCompleted_mutex);
|
pthread_mutex_lock(&ctx->allJobsCompleted_mutex.pMutex);
|
||||||
ctx->allJobsCompleted = 1;
|
ctx->allJobsCompleted = 1;
|
||||||
pthread_cond_signal(&ctx->allJobsCompleted_cond);
|
pthread_cond_signal(&ctx->allJobsCompleted_cond.pCond);
|
||||||
pthread_mutex_unlock(&ctx->allJobsCompleted_mutex);
|
pthread_mutex_unlock(&ctx->allJobsCompleted_mutex.pMutex);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -428,15 +488,20 @@ static int createCompressionJob(adaptCCtx* ctx, size_t srcSize, int last)
|
|||||||
unsigned const nextJobIndex = nextJob % ctx->numJobs;
|
unsigned const nextJobIndex = nextJob % ctx->numJobs;
|
||||||
jobDescription* job = &ctx->jobs[nextJobIndex];
|
jobDescription* job = &ctx->jobs[nextJobIndex];
|
||||||
DEBUG(3, "createCompressionJob(): wait for job write\n");
|
DEBUG(3, "createCompressionJob(): wait for job write\n");
|
||||||
pthread_mutex_lock(&ctx->jobWrite_mutex);
|
pthread_mutex_lock(&ctx->jobWrite_mutex.pMutex);
|
||||||
DEBUG(3, "Creating new compression job -- nextJob: %u, jobCompressedID: %u, jobWriteID: %u, numJObs: %u\n", nextJob,ctx->jobCompressedID, ctx->jobWriteID, ctx->numJobs);
|
DEBUG(3, "Creating new compression job -- nextJob: %u, jobCompressedID: %u, jobWriteID: %u, numJObs: %u\n", nextJob,ctx->jobCompressedID, ctx->jobWriteID, ctx->numJobs);
|
||||||
while (nextJob - ctx->jobWriteID >= ctx->numJobs) {
|
while (nextJob - ctx->jobWriteID >= ctx->numJobs) {
|
||||||
ctx->stats.waitWrite++;
|
ctx->stats.waitWrite++;
|
||||||
ctx->stats.writeCounter++;
|
ctx->stats.writeCounter++;
|
||||||
|
if (!ctx->completionMeasured) {
|
||||||
|
ctx->completion = ZSTD_getCompletion(ctx->cctx);
|
||||||
|
ctx->completionMeasured = 1;
|
||||||
|
}
|
||||||
|
DEBUG(2, "job creation detected completion %f\n", ctx->completion);
|
||||||
DEBUG(3, "waiting on job Write, nextJob: %u\n", nextJob);
|
DEBUG(3, "waiting on job Write, nextJob: %u\n", nextJob);
|
||||||
pthread_cond_wait(&ctx->jobWrite_cond, &ctx->jobWrite_mutex);
|
pthread_cond_wait(&ctx->jobWrite_cond.pCond, &ctx->jobWrite_mutex.pMutex);
|
||||||
}
|
}
|
||||||
pthread_mutex_unlock(&ctx->jobWrite_mutex);
|
pthread_mutex_unlock(&ctx->jobWrite_mutex.pMutex);
|
||||||
DEBUG(3, "createCompressionJob(): continuing after job write\n");
|
DEBUG(3, "createCompressionJob(): continuing after job write\n");
|
||||||
|
|
||||||
DEBUG(3, "filled: %zu, srcSize: %zu\n", ctx->input.filled, srcSize);
|
DEBUG(3, "filled: %zu, srcSize: %zu\n", ctx->input.filled, srcSize);
|
||||||
@ -446,10 +511,10 @@ static int createCompressionJob(adaptCCtx* ctx, size_t srcSize, int last)
|
|||||||
job->lastJob = last;
|
job->lastJob = last;
|
||||||
memcpy(job->src.start, ctx->input.buffer.start, ctx->lastDictSize + srcSize);
|
memcpy(job->src.start, ctx->input.buffer.start, ctx->lastDictSize + srcSize);
|
||||||
job->dictSize = ctx->lastDictSize;
|
job->dictSize = ctx->lastDictSize;
|
||||||
pthread_mutex_lock(&ctx->jobReady_mutex);
|
pthread_mutex_lock(&ctx->jobReady_mutex.pMutex);
|
||||||
ctx->jobReadyID++;
|
ctx->jobReadyID++;
|
||||||
pthread_cond_signal(&ctx->jobReady_cond);
|
pthread_cond_signal(&ctx->jobReady_cond.pCond);
|
||||||
pthread_mutex_unlock(&ctx->jobReady_mutex);
|
pthread_mutex_unlock(&ctx->jobReady_mutex.pMutex);
|
||||||
DEBUG(3, "finished job creation %u\n", nextJob);
|
DEBUG(3, "finished job creation %u\n", nextJob);
|
||||||
ctx->nextJobID++;
|
ctx->nextJobID++;
|
||||||
DEBUG(3, "filled: %zu, srcSize: %zu\n", ctx->input.filled, srcSize);
|
DEBUG(3, "filled: %zu, srcSize: %zu\n", ctx->input.filled, srcSize);
|
||||||
|
@ -140,6 +140,9 @@ struct ZSTD_CCtx_s {
|
|||||||
/* Multi-threading */
|
/* Multi-threading */
|
||||||
U32 nbThreads;
|
U32 nbThreads;
|
||||||
ZSTDMT_CCtx* mtctx;
|
ZSTDMT_CCtx* mtctx;
|
||||||
|
|
||||||
|
/* adaptive compression */
|
||||||
|
double completion;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -2845,6 +2848,7 @@ static size_t ZSTD_compress_frameChunk (ZSTD_CCtx* cctx,
|
|||||||
BYTE* op = ostart;
|
BYTE* op = ostart;
|
||||||
U32 const maxDist = 1 << cctx->appliedParams.cParams.windowLog;
|
U32 const maxDist = 1 << cctx->appliedParams.cParams.windowLog;
|
||||||
|
|
||||||
|
cctx->completion = 0;
|
||||||
if (cctx->appliedParams.fParams.checksumFlag && srcSize)
|
if (cctx->appliedParams.fParams.checksumFlag && srcSize)
|
||||||
XXH64_update(&cctx->xxhState, src, srcSize);
|
XXH64_update(&cctx->xxhState, src, srcSize);
|
||||||
|
|
||||||
@ -2895,6 +2899,7 @@ static size_t ZSTD_compress_frameChunk (ZSTD_CCtx* cctx,
|
|||||||
}
|
}
|
||||||
|
|
||||||
remaining -= blockSize;
|
remaining -= blockSize;
|
||||||
|
cctx->completion = 1 - (double)remaining/srcSize;
|
||||||
dstCapacity -= cSize;
|
dstCapacity -= cSize;
|
||||||
ip += blockSize;
|
ip += blockSize;
|
||||||
op += cSize;
|
op += cSize;
|
||||||
@ -2997,6 +3002,10 @@ static size_t ZSTD_compressContinue_internal (ZSTD_CCtx* cctx,
|
|||||||
return fhSize;
|
return fhSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ZSTDLIB_API double ZSTD_getCompletion(ZSTD_CCtx* cctx)
|
||||||
|
{
|
||||||
|
return cctx->completion;
|
||||||
|
}
|
||||||
|
|
||||||
size_t ZSTD_compressContinue (ZSTD_CCtx* cctx,
|
size_t ZSTD_compressContinue (ZSTD_CCtx* cctx,
|
||||||
void* dst, size_t dstCapacity,
|
void* dst, size_t dstCapacity,
|
||||||
|
@ -808,7 +808,11 @@ ZSTDLIB_API size_t ZSTD_copyCCtx(ZSTD_CCtx* cctx, const ZSTD_CCtx* preparedCCtx,
|
|||||||
ZSTDLIB_API size_t ZSTD_compressContinue(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
|
ZSTDLIB_API size_t ZSTD_compressContinue(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
|
||||||
ZSTDLIB_API size_t ZSTD_compressEnd(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
|
ZSTDLIB_API size_t ZSTD_compressEnd(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
|
||||||
|
|
||||||
|
/*! ZSTD_getCompletion: get a double representing how much of a file/buffer has been compressed
|
||||||
|
* using ZSTD_compressContinue()
|
||||||
|
* return: a double value in the range of 0 to 1 representing how much a compression job has finished
|
||||||
|
*/
|
||||||
|
ZSTDLIB_API double ZSTD_getCompletion(ZSTD_CCtx* cctx);
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
Buffer-less streaming decompression (synchronous mode)
|
Buffer-less streaming decompression (synchronous mode)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user