mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-14 06:49:09 -04:00
New test program: checksum
This commit is contained in:
parent
1190be5a68
commit
c37a251655
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,6 +10,7 @@
|
|||||||
/.prog-cflags
|
/.prog-cflags
|
||||||
/programs/config.h
|
/programs/config.h
|
||||||
/benchmark
|
/benchmark
|
||||||
|
/checksum
|
||||||
/gzip
|
/gzip
|
||||||
/gunzip
|
/gunzip
|
||||||
/run_tests.log
|
/run_tests.log
|
||||||
|
3
Makefile
3
Makefile
@ -149,7 +149,8 @@ PROG_CFLAGS += $(CFLAGS) \
|
|||||||
PROG_COMMON_HEADERS := programs/prog_util.h programs/config.h
|
PROG_COMMON_HEADERS := programs/prog_util.h programs/config.h
|
||||||
PROG_COMMON_SRC := programs/prog_util.c programs/tgetopt.c
|
PROG_COMMON_SRC := programs/prog_util.c programs/tgetopt.c
|
||||||
NONTEST_PROGRAM_SRC := programs/gzip.c
|
NONTEST_PROGRAM_SRC := programs/gzip.c
|
||||||
TEST_PROGRAM_SRC := programs/benchmark.c programs/test_checksums.c
|
TEST_PROGRAM_SRC := programs/benchmark.c programs/test_checksums.c \
|
||||||
|
programs/checksum.c
|
||||||
|
|
||||||
NONTEST_PROGRAMS := $(NONTEST_PROGRAM_SRC:programs/%.c=%$(PROG_SUFFIX))
|
NONTEST_PROGRAMS := $(NONTEST_PROGRAM_SRC:programs/%.c=%$(PROG_SUFFIX))
|
||||||
DEFAULT_TARGETS += $(NONTEST_PROGRAMS)
|
DEFAULT_TARGETS += $(NONTEST_PROGRAMS)
|
||||||
|
197
programs/checksum.c
Normal file
197
programs/checksum.c
Normal file
@ -0,0 +1,197 @@
|
|||||||
|
/*
|
||||||
|
* checksum.c - Adler-32 and CRC-32 checksumming program
|
||||||
|
*
|
||||||
|
* Copyright 2016 Eric Biggers
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person
|
||||||
|
* obtaining a copy of this software and associated documentation
|
||||||
|
* files (the "Software"), to deal in the Software without
|
||||||
|
* restriction, including without limitation the rights to use,
|
||||||
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the
|
||||||
|
* Software is furnished to do so, subject to the following
|
||||||
|
* conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||||
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||||
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
* OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <zlib.h>
|
||||||
|
|
||||||
|
#include "prog_util.h"
|
||||||
|
|
||||||
|
static const tchar *const optstring = T("Ahs:tZ");
|
||||||
|
|
||||||
|
static void
|
||||||
|
show_usage(FILE *fp)
|
||||||
|
{
|
||||||
|
fprintf(fp,
|
||||||
|
"Usage: %"TS" [-A] [-h] [-s SIZE] [-t] [-Z] [FILE]...\n"
|
||||||
|
"Calculate Adler-32 or CRC-32 checksums of the specified FILEs.\n"
|
||||||
|
"\n"
|
||||||
|
"Options:\n"
|
||||||
|
" -A use Adler-32 (default is CRC-32)\n"
|
||||||
|
" -h print this help\n"
|
||||||
|
" -s SIZE chunk size\n"
|
||||||
|
" -t show checksum speed, excluding I/O\n"
|
||||||
|
" -Z use zlib implementation instead of libdeflate\n",
|
||||||
|
program_invocation_name);
|
||||||
|
}
|
||||||
|
|
||||||
|
static u32
|
||||||
|
zlib_adler32(u32 adler, const void *buf, size_t len)
|
||||||
|
{
|
||||||
|
return adler32(adler, buf, len);
|
||||||
|
}
|
||||||
|
|
||||||
|
static u32
|
||||||
|
zlib_crc32(u32 crc, const void *buf, size_t len)
|
||||||
|
{
|
||||||
|
return crc32(crc, buf, len);
|
||||||
|
}
|
||||||
|
|
||||||
|
typedef u32 (*cksum_fn_t)(u32, const void *, size_t);
|
||||||
|
|
||||||
|
static int
|
||||||
|
checksum_stream(struct file_stream *in, cksum_fn_t cksum, u32 *sum,
|
||||||
|
void *buf, size_t bufsize, u64 *size_ret, u64 *elapsed_ret)
|
||||||
|
{
|
||||||
|
u64 size = 0;
|
||||||
|
u64 elapsed = 0;
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
ssize_t ret;
|
||||||
|
u64 start_time;
|
||||||
|
|
||||||
|
ret = xread(in, buf, bufsize);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
if (ret == 0)
|
||||||
|
break;
|
||||||
|
|
||||||
|
size += ret;
|
||||||
|
start_time = current_time();
|
||||||
|
*sum = cksum(*sum, buf, ret);
|
||||||
|
elapsed += current_time() - start_time;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (elapsed == 0)
|
||||||
|
elapsed = 1;
|
||||||
|
*size_ret = size;
|
||||||
|
*elapsed_ret = elapsed;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
tmain(int argc, tchar *argv[])
|
||||||
|
{
|
||||||
|
bool use_adler32 = false;
|
||||||
|
bool use_zlib_impl = false;
|
||||||
|
bool do_timing = false;
|
||||||
|
void *buf;
|
||||||
|
size_t bufsize = 131072;
|
||||||
|
tchar *default_file_list[] = { NULL };
|
||||||
|
cksum_fn_t cksum;
|
||||||
|
int opt_char;
|
||||||
|
int i;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
program_invocation_name = get_filename(argv[0]);
|
||||||
|
|
||||||
|
while ((opt_char = tgetopt(argc, argv, optstring)) != -1) {
|
||||||
|
switch (opt_char) {
|
||||||
|
case 'A':
|
||||||
|
use_adler32 = true;
|
||||||
|
break;
|
||||||
|
case 'h':
|
||||||
|
show_usage(stdout);
|
||||||
|
return 0;
|
||||||
|
case 's':
|
||||||
|
bufsize = tstrtoul(toptarg, NULL, 10);
|
||||||
|
if (bufsize == 0) {
|
||||||
|
msg("invalid chunk size: \"%"TS"\"", toptarg);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 't':
|
||||||
|
do_timing = true;
|
||||||
|
break;
|
||||||
|
case 'Z':
|
||||||
|
use_zlib_impl = true;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
show_usage(stderr);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
argc -= toptind;
|
||||||
|
argv += toptind;
|
||||||
|
|
||||||
|
if (use_adler32) {
|
||||||
|
if (use_zlib_impl)
|
||||||
|
cksum = zlib_adler32;
|
||||||
|
else
|
||||||
|
cksum = libdeflate_adler32;
|
||||||
|
} else {
|
||||||
|
if (use_zlib_impl)
|
||||||
|
cksum = zlib_crc32;
|
||||||
|
else
|
||||||
|
cksum = libdeflate_crc32;
|
||||||
|
}
|
||||||
|
|
||||||
|
buf = xmalloc(bufsize);
|
||||||
|
if (buf == NULL)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
if (argc == 0) {
|
||||||
|
argv = default_file_list;
|
||||||
|
argc = ARRAY_LEN(default_file_list);
|
||||||
|
} else {
|
||||||
|
for (i = 0; i < argc; i++)
|
||||||
|
if (argv[i][0] == '-' && argv[i][1] == '\0')
|
||||||
|
argv[i] = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < argc; i++) {
|
||||||
|
struct file_stream in;
|
||||||
|
u32 sum = cksum(0, NULL, 0);
|
||||||
|
u64 size = 0;
|
||||||
|
u64 elapsed = 0;
|
||||||
|
|
||||||
|
ret = xopen_for_read(argv[i], &in);
|
||||||
|
if (ret != 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
ret = checksum_stream(&in, cksum, &sum, buf, bufsize,
|
||||||
|
&size, &elapsed);
|
||||||
|
if (ret == 0) {
|
||||||
|
if (do_timing) {
|
||||||
|
printf("%08"PRIx32"\t%"TS"\t"
|
||||||
|
"%"PRIu64" ms\t%"PRIu64" MB/s\n",
|
||||||
|
sum, in.name, elapsed / 1000000,
|
||||||
|
1000 * size / elapsed);
|
||||||
|
} else {
|
||||||
|
printf("%08"PRIx32"\t%"TS"\t\n", sum, in.name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
xclose(&in);
|
||||||
|
|
||||||
|
if (ret != 0)
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
ret = 0;
|
||||||
|
out:
|
||||||
|
free(buf);
|
||||||
|
return ret;
|
||||||
|
}
|
@ -4,7 +4,8 @@ set -eu
|
|||||||
|
|
||||||
for arch in 'i686' 'x86_64'; do
|
for arch in 'i686' 'x86_64'; do
|
||||||
make clean
|
make clean
|
||||||
make -j CC=${arch}-w64-mingw32-gcc CFLAGS="-Werror" all benchmark.exe
|
make -j CC=${arch}-w64-mingw32-gcc CFLAGS="-Werror" all \
|
||||||
|
benchmark.exe checksum.exe
|
||||||
dir=libdeflate-$(git describe --tags | tr -d v)-windows-${arch}-bin
|
dir=libdeflate-$(git describe --tags | tr -d v)-windows-${arch}-bin
|
||||||
rm -rf $dir ${dir}.zip
|
rm -rf $dir ${dir}.zip
|
||||||
mkdir $dir
|
mkdir $dir
|
||||||
|
Loading…
x
Reference in New Issue
Block a user