1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
/* LZ4file API example : compress a file
* Modified from an example code by anjiahao
*
* This example will demonstrate how
* to manipulate lz4 compressed files like
* normal files */
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <lz4file.h>
#define CHUNK_SIZE (16*1024)
static size_t get_file_size(char *filename)
{
struct stat statbuf;
if (filename == NULL) {
return 0;
}
if(stat(filename,&statbuf)) {
return 0;
}
return statbuf.st_size;
}
static int compress_file(FILE* f_in, FILE* f_out)
{
assert(f_in != NULL); assert(f_out != NULL);
LZ4F_errorCode_t ret = LZ4F_OK_NoError;
size_t len;
LZ4_writeFile_t* lz4fWrite;
void* const buf = malloc(CHUNK_SIZE);
if (!buf) {
printf("error: memory allocation failed \n");
return 1;
}
/* Of course, you can also use prefsPtr to
* set the parameters of the compressed file
* NULL is use default
*/
ret = LZ4F_writeOpen(&lz4fWrite, f_out, NULL);
if (LZ4F_isError(ret)) {
printf("LZ4F_writeOpen error: %s\n", LZ4F_getErrorName(ret));
free(buf);
return 1;
}
while (1) {
len = fread(buf, 1, CHUNK_SIZE, f_in);
if (ferror(f_in)) {
printf("fread error\n");
goto out;
}
/* nothing to read */
if (len == 0) {
break;
}
ret = LZ4F_write(lz4fWrite, buf, len);
if (LZ4F_isError(ret)) {
printf("LZ4F_write: %s\n", LZ4F_getErrorName(ret));
goto out;
}
}
out:
free(buf);
if (LZ4F_isError(LZ4F_writeClose(lz4fWrite))) {
printf("LZ4F_writeClose: %s\n", LZ4F_getErrorName(ret));
return 1;
}
return 0;
}
static int decompress_file(FILE* f_in, FILE* f_out)
{
assert(f_in != NULL); assert(f_out != NULL);
LZ4F_errorCode_t ret = LZ4F_OK_NoError;
LZ4_readFile_t* lz4fRead;
void* const buf= malloc(CHUNK_SIZE);
if (!buf) {
printf("error: memory allocation failed \n");
}
ret = LZ4F_readOpen(&lz4fRead, f_in);
if (LZ4F_isError(ret)) {
printf("LZ4F_readOpen error: %s\n", LZ4F_getErrorName(ret));
free(buf);
return 1;
}
while (1) {
ret = LZ4F_read(lz4fRead, buf, CHUNK_SIZE);
if (LZ4F_isError(ret)) {
printf("LZ4F_read error: %s\n", LZ4F_getErrorName(ret));
goto out;
}
/* nothing to read */
if (ret == 0) {
break;
}
if(fwrite(buf, 1, ret, f_out) != ret) {
printf("write error!\n");
goto out;
}
}
out:
free(buf);
if (LZ4F_isError(LZ4F_readClose(lz4fRead))) {
printf("LZ4F_readClose: %s\n", LZ4F_getErrorName(ret));
return 1;
}
if (ret) {
return 1;
}
return 0;
}
int compareFiles(FILE* fp0, FILE* fp1)
{
int result = 0;
while (result==0) {
char b0[1024];
char b1[1024];
size_t const r0 = fread(b0, 1, sizeof(b0), fp0);
size_t const r1 = fread(b1, 1, sizeof(b1), fp1);
result = (r0 != r1);
if (!r0 || !r1) break;
if (!result) result = memcmp(b0, b1, r0);
}
return result;
}
int main(int argc, const char **argv) {
char inpFilename[256] = { 0 };
char lz4Filename[256] = { 0 };
char decFilename[256] = { 0 };
if (argc < 2) {
printf("Please specify input filename\n");
return 0;
}
snprintf(inpFilename, 256, "%s", argv[1]);
snprintf(lz4Filename, 256, "%s.lz4", argv[1]);
snprintf(decFilename, 256, "%s.lz4.dec", argv[1]);
printf("inp = [%s]\n", inpFilename);
printf("lz4 = [%s]\n", lz4Filename);
printf("dec = [%s]\n", decFilename);
/* compress */
{ FILE* const inpFp = fopen(inpFilename, "rb");
FILE* const outFp = fopen(lz4Filename, "wb");
printf("compress : %s -> %s\n", inpFilename, lz4Filename);
LZ4F_errorCode_t ret = compress_file(inpFp, outFp);
fclose(inpFp);
fclose(outFp);
if (ret) {
printf("compression error: %s\n", LZ4F_getErrorName(ret));
return 1;
}
printf("%s: %zu → %zu bytes, %.1f%%\n",
inpFilename,
get_file_size(inpFilename),
get_file_size(lz4Filename), /* might overflow is size_t is 32 bits and size_{in,out} > 4 GB */
(double)get_file_size(lz4Filename) / get_file_size(inpFilename) * 100);
printf("compress : done\n");
}
/* decompress */
{
FILE* const inpFp = fopen(lz4Filename, "rb");
FILE* const outFp = fopen(decFilename, "wb");
printf("decompress : %s -> %s\n", lz4Filename, decFilename);
LZ4F_errorCode_t ret = decompress_file(inpFp, outFp);
fclose(outFp);
fclose(inpFp);
if (ret) {
printf("compression error: %s\n", LZ4F_getErrorName(ret));
return 1;
}
printf("decompress : done\n");
}
/* verify */
{ FILE* const inpFp = fopen(inpFilename, "rb");
FILE* const decFp = fopen(decFilename, "rb");
printf("verify : %s <-> %s\n", inpFilename, decFilename);
int const cmp = compareFiles(inpFp, decFp);
fclose(decFp);
fclose(inpFp);
if (cmp) {
printf("corruption detected : decompressed file differs from original\n");
return cmp;
}
printf("verify : OK\n");
}
}
|