blob: c1818a95c84c64f4e771f3ed2f9bf0e855774d3a [file] [log] [blame]
Yann Collet394bdd72017-08-29 09:24:11 -07001/*
2 * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
Yann Collet4ded9e52016-08-30 10:04:33 -07003 * All rights reserved.
4 *
Yann Collet394bdd72017-08-29 09:24:11 -07005 * This source code is licensed under both the BSD-style license (found in the
6 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
7 * in the COPYING file in the root directory of this source tree).
Yann Collet3128e032017-09-08 00:09:23 -07008 * You may select, at your option, one of the above-listed licenses.
Yann Collet4ded9e52016-08-30 10:04:33 -07009 */
Yann Collet0809a882016-07-09 18:25:10 +020010
Yann Collet0809a882016-07-09 18:25:10 +020011#include <stdlib.h> // malloc, exit
12#include <stdio.h> // printf
13#include <string.h> // strerror
14#include <errno.h> // errno
15#include <sys/stat.h> // stat
Yann Collet45960372017-02-15 12:00:03 -080016#define ZSTD_STATIC_LINKING_ONLY // ZSTD_findDecompressedSize
Yann Collet0809a882016-07-09 18:25:10 +020017#include <zstd.h> // presumes zstd library is installed
18
19
Yann Collet45960372017-02-15 12:00:03 -080020static off_t fsize_orDie(const char *filename)
Yann Collet0809a882016-07-09 18:25:10 +020021{
22 struct stat st;
23 if (stat(filename, &st) == 0) return st.st_size;
24 /* error */
Soojin Nam971c1612017-02-22 16:04:48 +090025 fprintf(stderr, "stat: %s : %s \n", filename, strerror(errno));
Yann Collet0809a882016-07-09 18:25:10 +020026 exit(1);
27}
28
Yann Collet45960372017-02-15 12:00:03 -080029static FILE* fopen_orDie(const char *filename, const char *instruction)
Yann Collet0809a882016-07-09 18:25:10 +020030{
31 FILE* const inFile = fopen(filename, instruction);
32 if (inFile) return inFile;
33 /* error */
Soojin Nam971c1612017-02-22 16:04:48 +090034 fprintf(stderr, "fopen: %s : %s \n", filename, strerror(errno));
Yann Collet0809a882016-07-09 18:25:10 +020035 exit(2);
36}
37
Yann Collet45960372017-02-15 12:00:03 -080038static void* malloc_orDie(size_t size)
Yann Collet0809a882016-07-09 18:25:10 +020039{
Yann Collet1f3d54d2017-02-22 11:08:00 -080040 void* const buff = malloc(size + !size); /* avoid allocating size of 0 : may return NULL (implementation dependent) */
Yann Collet0809a882016-07-09 18:25:10 +020041 if (buff) return buff;
42 /* error */
Soojin Nam971c1612017-02-22 16:04:48 +090043 fprintf(stderr, "malloc: %s \n", strerror(errno));
Yann Collet0809a882016-07-09 18:25:10 +020044 exit(3);
45}
46
Yann Collet45960372017-02-15 12:00:03 -080047static void* loadFile_orDie(const char* fileName, size_t* size)
Yann Collet0809a882016-07-09 18:25:10 +020048{
Yann Collet45960372017-02-15 12:00:03 -080049 off_t const buffSize = fsize_orDie(fileName);
50 FILE* const inFile = fopen_orDie(fileName, "rb");
51 void* const buffer = malloc_orDie(buffSize);
Yann Collet0809a882016-07-09 18:25:10 +020052 size_t const readSize = fread(buffer, 1, buffSize, inFile);
53 if (readSize != (size_t)buffSize) {
Soojin Nam971c1612017-02-22 16:04:48 +090054 fprintf(stderr, "fread: %s : %s \n", fileName, strerror(errno));
Yann Collet0809a882016-07-09 18:25:10 +020055 exit(4);
56 }
Yann Colleta2664642016-09-09 19:33:56 +020057 fclose(inFile); /* can't fail (read only) */
Yann Collet0809a882016-07-09 18:25:10 +020058 *size = buffSize;
59 return buffer;
60}
61
62
Yann Collet0809a882016-07-09 18:25:10 +020063static void decompress(const char* fname)
64{
65 size_t cSize;
Yann Collet45960372017-02-15 12:00:03 -080066 void* const cBuff = loadFile_orDie(fname, &cSize);
Sean Purcell4e709712017-02-07 13:50:09 -080067 unsigned long long const rSize = ZSTD_findDecompressedSize(cBuff, cSize);
Soojin Nam971c1612017-02-22 16:04:48 +090068 if (rSize==ZSTD_CONTENTSIZE_ERROR) {
69 fprintf(stderr, "%s : it was not compressed by zstd.\n", fname);
Yann Collet0809a882016-07-09 18:25:10 +020070 exit(5);
Soojin Nam971c1612017-02-22 16:04:48 +090071 } else if (rSize==ZSTD_CONTENTSIZE_UNKNOWN) {
72 fprintf(stderr,
73 "%s : original size unknown. Use streaming decompression instead.\n", fname);
74 exit(6);
Yann Collet0809a882016-07-09 18:25:10 +020075 }
Soojin Nam971c1612017-02-22 16:04:48 +090076
Yann Collet45960372017-02-15 12:00:03 -080077 void* const rBuff = malloc_orDie((size_t)rSize);
Yann Collet0809a882016-07-09 18:25:10 +020078
79 size_t const dSize = ZSTD_decompress(rBuff, rSize, cBuff, cSize);
80
81 if (dSize != rSize) {
Soojin Nam971c1612017-02-22 16:04:48 +090082 fprintf(stderr, "error decoding %s : %s \n", fname, ZSTD_getErrorName(dSize));
Yann Collet0809a882016-07-09 18:25:10 +020083 exit(7);
84 }
85
86 /* success */
87 printf("%25s : %6u -> %7u \n", fname, (unsigned)cSize, (unsigned)rSize);
88
89 free(rBuff);
90 free(cBuff);
91}
92
93
94int main(int argc, const char** argv)
95{
96 const char* const exeName = argv[0];
97
98 if (argc!=2) {
99 printf("wrong arguments\n");
100 printf("usage:\n");
101 printf("%s FILE\n", exeName);
102 return 1;
103 }
104
105 decompress(argv[1]);
106
Yann Collet677ed262016-07-10 14:23:30 +0200107 printf("%s correctly decoded (in memory). \n", argv[1]);
108
109 return 0;
Yann Collet0809a882016-07-09 18:25:10 +0200110}