2017-08-29 09:24:11 -07:00
|
|
|
/*
|
2020-03-26 15:19:05 -07:00
|
|
|
* Copyright (c) 2016-2020, Yann Collet, Facebook, Inc.
|
2016-08-30 10:04:33 -07:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2017-08-29 09:24:11 -07: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 00:09:23 -07:00
|
|
|
* You may select, at your option, one of the above-listed licenses.
|
2016-08-30 10:04:33 -07:00
|
|
|
*/
|
2016-07-09 09:25:10 -07:00
|
|
|
|
|
|
|
#include <stdio.h> // printf
|
2019-04-05 18:11:17 -07:00
|
|
|
#include <stdlib.h> // free
|
2016-07-09 09:25:10 -07:00
|
|
|
#include <zstd.h> // presumes zstd library is installed
|
2019-04-05 18:11:17 -07:00
|
|
|
#include "common.h" // Helper functions, CHECK(), and CHECK_ZSTD()
|
2016-07-09 09:25:10 -07:00
|
|
|
|
|
|
|
static void decompress(const char* fname)
|
|
|
|
{
|
|
|
|
size_t cSize;
|
2018-12-17 16:54:55 -08:00
|
|
|
void* const cBuff = mallocAndLoadFile_orDie(fname, &cSize);
|
2019-04-05 18:11:17 -07:00
|
|
|
/* Read the content size from the frame header. For simplicity we require
|
|
|
|
* that it is always present. By default, zstd will write the content size
|
|
|
|
* in the header when it is known. If you can't guarantee that the frame
|
|
|
|
* content size is always written into the header, either use streaming
|
|
|
|
* decompression, or ZSTD_decompressBound().
|
|
|
|
*/
|
|
|
|
unsigned long long const rSize = ZSTD_getFrameContentSize(cBuff, cSize);
|
|
|
|
CHECK(rSize != ZSTD_CONTENTSIZE_ERROR, "%s: not compressed by zstd!", fname);
|
|
|
|
CHECK(rSize != ZSTD_CONTENTSIZE_UNKNOWN, "%s: original size unknown!", fname);
|
2017-02-21 23:04:48 -08:00
|
|
|
|
2017-02-15 12:00:03 -08:00
|
|
|
void* const rBuff = malloc_orDie((size_t)rSize);
|
2016-07-09 09:25:10 -07:00
|
|
|
|
2019-04-05 18:11:17 -07:00
|
|
|
/* Decompress.
|
|
|
|
* If you are doing many decompressions, you may want to reuse the context
|
|
|
|
* and use ZSTD_decompressDCtx(). If you want to set advanced parameters,
|
|
|
|
* use ZSTD_DCtx_setParameter().
|
|
|
|
*/
|
2016-07-09 09:25:10 -07:00
|
|
|
size_t const dSize = ZSTD_decompress(rBuff, rSize, cBuff, cSize);
|
2019-04-05 18:11:17 -07:00
|
|
|
CHECK_ZSTD(dSize);
|
|
|
|
/* When zstd knows the content size, it will error if it doesn't match. */
|
|
|
|
CHECK(dSize == rSize, "Impossible because zstd will check this condition!");
|
2016-07-09 09:25:10 -07:00
|
|
|
|
|
|
|
/* success */
|
|
|
|
printf("%25s : %6u -> %7u \n", fname, (unsigned)cSize, (unsigned)rSize);
|
|
|
|
|
|
|
|
free(rBuff);
|
|
|
|
free(cBuff);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, const char** argv)
|
|
|
|
{
|
|
|
|
const char* const exeName = argv[0];
|
|
|
|
|
|
|
|
if (argc!=2) {
|
|
|
|
printf("wrong arguments\n");
|
|
|
|
printf("usage:\n");
|
|
|
|
printf("%s FILE\n", exeName);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
decompress(argv[1]);
|
|
|
|
|
2016-07-10 05:23:30 -07:00
|
|
|
printf("%s correctly decoded (in memory). \n", argv[1]);
|
|
|
|
|
|
|
|
return 0;
|
2016-07-09 09:25:10 -07:00
|
|
|
}
|