aboutsummaryrefslogtreecommitdiffstats
path: root/lib/extract.c
diff options
context:
space:
mode:
authorYunchih Chen <yunchih.cat@gmail.com>2018-03-18 19:57:44 +0800
committerYunchih Chen <yunchih.cat@gmail.com>2018-03-18 19:57:44 +0800
commit7f43f3ee5075b784ce458427c44ae1c78e0019f2 (patch)
tree87ade8f838709ea53a7e411a4e6e669cec03f60b /lib/extract.c
parent20cf5af5efee4685271b083de23b6e66ba48d3f1 (diff)
downloadnfcollect-7f43f3ee5075b784ce458427c44ae1c78e0019f2.tar
nfcollect-7f43f3ee5075b784ce458427c44ae1c78e0019f2.tar.gz
nfcollect-7f43f3ee5075b784ce458427c44ae1c78e0019f2.tar.bz2
nfcollect-7f43f3ee5075b784ce458427c44ae1c78e0019f2.tar.lz
nfcollect-7f43f3ee5075b784ce458427c44ae1c78e0019f2.tar.xz
nfcollect-7f43f3ee5075b784ce458427c44ae1c78e0019f2.tar.zst
nfcollect-7f43f3ee5075b784ce458427c44ae1c78e0019f2.zip
Consistent variable / type naming
Diffstat (limited to 'lib/extract.c')
-rw-r--r--lib/extract.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/extract.c b/lib/extract.c
index be8dbc4..61bf340 100644
--- a/lib/extract.c
+++ b/lib/extract.c
@@ -6,11 +6,11 @@
#define ZSTD_STATIC_LINKING_ONLY // ZSTD_findDecompressedSize
#include <zstd.h>
-static int nfl_extract_default(FILE *f, nflog_state_t *state);
-static int nfl_extract_zstd(FILE *f, nflog_state_t *state);
-static int nfl_extract_lz4(FILE *f, nflog_state_t *state);
+static int nfl_extract_default(FILE *f, nfl_state_t *state);
+static int nfl_extract_zstd(FILE *f, nfl_state_t *state);
+static int nfl_extract_lz4(FILE *f, nfl_state_t *state);
-static int nfl_verify_header(nflog_header_t *header) {
+static int nfl_verify_header(nfl_header_t *header) {
if(header->cksum != nfl_header_cksum(header))
return -1;
@@ -28,16 +28,16 @@ static int nfl_verify_header(nflog_header_t *header) {
return 0;
}
-static int nfl_extract_default(FILE *f, nflog_state_t *state) {
- fread(state->store, state->header->n_entries, sizeof(nflog_entry_t), f);
+static int nfl_extract_default(FILE *f, nfl_state_t *state) {
+ fread(state->store, state->header->n_entries, sizeof(nfl_entry_t), f);
WARN_RETURN(ferror(f), "%s", strerror(errno));
return 0;
}
-static int nfl_extract_zstd(FILE *f, nflog_state_t *state) {
+static int nfl_extract_zstd(FILE *f, nfl_state_t *state) {
char *buf;
- size_t const compressed_size = nfl_get_filesize(f) - sizeof(nflog_header_t),
- expected_decom_size = state->header->n_entries * sizeof(nflog_entry_t);
+ size_t const compressed_size = nfl_get_filesize(f) - sizeof(nfl_header_t),
+ expected_decom_size = state->header->n_entries * sizeof(nfl_entry_t);
ERR(!(buf = malloc(compressed_size)), "zstd: cannot malloc");
fread(buf, compressed_size, 1, f);
@@ -60,23 +60,23 @@ static int nfl_extract_zstd(FILE *f, nflog_state_t *state) {
return 0;
}
-static int nfl_extract_lz4(FILE *f, nflog_state_t *state) {
+static int nfl_extract_lz4(FILE *f, nfl_state_t *state) {
/* TODO */
return 0;
}
-int nfl_extract_worker(const char *filename, nflog_state_t *state) {
+int nfl_extract_worker(const char *filename, nfl_state_t *state) {
FILE *f;
int got = 0, ret = 0;
- nflog_header_t *h;
+ nfl_header_t *h;
debug("Extracting from file %s", filename);
ERR((f = fopen(filename, "rb")) == NULL, "extract worker");
/* ERR(nfl_check_file(f) < 0, "extract worker"); */
// Read header
- ERR(!(state->header = malloc(sizeof(nflog_header_t))), "extract malloc header");
- got = fread(state->header, sizeof(nflog_header_t), 1, f);
+ ERR(!(state->header = malloc(sizeof(nfl_header_t))), "extract malloc header");
+ got = fread(state->header, sizeof(nfl_header_t), 1, f);
h = state->header;
// Check header validity
@@ -84,7 +84,7 @@ int nfl_extract_worker(const char *filename, nflog_state_t *state) {
WARN_RETURN(!got || nfl_verify_header(h) < 0, "File %s has corrupted header.", filename);
// Read body
- ERR(!(state->store = malloc(sizeof(nflog_entry_t) * h->n_entries)), "extract malloc store");
+ ERR(!(state->store = malloc(sizeof(nfl_entry_t) * h->n_entries)), "extract malloc store");
switch(h->compression_opt) {
case COMPRESS_NONE:
debug("Extract worker #%u: extract without compression\n", h->id)