minizip-ng/minigzip.c

180 lines
5.5 KiB
C
Raw Normal View History

2019-04-28 09:23:56 -07:00
/* minigzip.c
2021-01-23 16:18:11 -08:00
part of the minizip-ng project
2019-04-28 09:23:56 -07:00
2023-02-16 13:14:21 -08:00
Copyright (C) Nathan Moinvaziri
2021-01-23 16:18:11 -08:00
https://github.com/zlib-ng/minizip-ng
2019-04-28 09:23:56 -07:00
This program is distributed under the terms of the same license as zlib.
See the accompanying LICENSE file for the full text of the license.
*/
#include "mz.h"
#include "mz_os.h"
#include "mz_strm.h"
#include "mz_strm_os.h"
#include "mz_strm_zlib.h"
#include <stdio.h> /* printf */
2019-04-28 09:23:56 -07:00
/***************************************************************************/
#define MZ_GZIP_COMPRESS (1)
#define MZ_GZIP_DECOMPRESS (2)
2019-04-28 09:23:56 -07:00
int32_t minigzip_banner(void);
int32_t minigzip_help(void);
/***************************************************************************/
2020-06-14 15:19:14 -07:00
int32_t minigzip_banner(void) {
2021-01-23 16:18:11 -08:00
printf("Minigzip %s - https://github.com/zlib-ng/minizip-ng\n", MZ_VERSION);
2019-04-28 09:23:56 -07:00
printf("---------------------------------------------------\n");
return MZ_OK;
}
2020-06-14 15:19:14 -07:00
int32_t minigzip_help(void) {
2019-05-05 20:18:19 -07:00
printf("Usage: minigzip [-x] [-d] [-0 to -9] [files]\n\n" \
2019-04-28 09:23:56 -07:00
" -x Extract file\n" \
" -d Destination directory\n" \
" -0 Store only\n" \
" -1 Compress faster\n" \
" -9 Compress better\n\n");
return MZ_OK;
}
/***************************************************************************/
2020-06-14 15:19:14 -07:00
int32_t minigzip_copy(const char *path, const char *destination, int16_t operation, int16_t level) {
2019-04-28 09:23:56 -07:00
void *target_stream = NULL;
void *source_stream = NULL;
void *zlib_stream = NULL;
const char *filename = NULL;
2019-04-28 10:05:29 -07:00
char target_path[1024];
2019-04-28 09:23:56 -07:00
int32_t err = 0;
2019-04-28 10:05:29 -07:00
memset(target_path, 0, sizeof(target_path));
2023-02-19 11:17:54 -08:00
if (destination) {
2019-04-28 09:23:56 -07:00
if (mz_os_file_exists(destination) != MZ_OK)
mz_dir_make(destination);
}
2020-06-14 15:19:14 -07:00
if (operation == MZ_GZIP_COMPRESS) {
mz_path_combine(target_path, path, sizeof(target_path));
2019-04-28 09:23:56 -07:00
strncat(target_path, ".gz", sizeof(target_path) - strlen(target_path) - 1);
printf("Compressing to %s\n", target_path);
2020-06-14 15:19:14 -07:00
} else if (operation == MZ_GZIP_DECOMPRESS) {
2023-02-19 11:17:54 -08:00
if (destination)
mz_path_combine(target_path, destination, sizeof(target_path));
if (mz_path_get_filename(path, &filename) != MZ_OK)
filename = path;
mz_path_combine(target_path, filename, sizeof(target_path));
2019-04-28 09:23:56 -07:00
mz_path_remove_extension(target_path);
printf("Decompressing to %s\n", target_path);
}
zlib_stream = mz_stream_zlib_create();
2019-04-28 09:23:56 -07:00
mz_stream_zlib_set_prop_int64(zlib_stream, MZ_STREAM_PROP_COMPRESS_WINDOW, 15 + 16);
source_stream = mz_stream_os_create();
2019-04-28 09:23:56 -07:00
err = mz_stream_os_open(source_stream, path, MZ_OPEN_MODE_READ);
2020-06-14 15:19:14 -07:00
if (err == MZ_OK) {
target_stream = mz_stream_os_create();
2019-04-28 09:23:56 -07:00
err = mz_stream_os_open(target_stream, target_path, MZ_OPEN_MODE_CREATE | MZ_OPEN_MODE_WRITE);
2020-06-14 15:19:14 -07:00
if (err == MZ_OK) {
if (operation == MZ_GZIP_COMPRESS) {
mz_stream_zlib_set_prop_int64(zlib_stream, MZ_STREAM_PROP_COMPRESS_LEVEL, level);
2019-04-28 09:23:56 -07:00
mz_stream_zlib_open(zlib_stream, target_path, MZ_OPEN_MODE_WRITE);
mz_stream_set_base(zlib_stream, target_stream);
err = mz_stream_copy_to_end(zlib_stream, source_stream);
2020-06-14 15:19:14 -07:00
} else if (operation == MZ_GZIP_DECOMPRESS) {
2019-04-28 09:23:56 -07:00
mz_stream_zlib_open(zlib_stream, path, MZ_OPEN_MODE_READ);
mz_stream_set_base(zlib_stream, source_stream);
err = mz_stream_copy_to_end(target_stream, zlib_stream);
}
if (err != MZ_OK)
printf("Error %d in zlib stream (%d)\n", err, mz_stream_zlib_error(zlib_stream));
else
printf("Operation completed successfully\n");
mz_stream_zlib_close(zlib_stream);
2020-06-14 15:19:14 -07:00
} else {
2019-04-28 09:23:56 -07:00
printf("Error %d opening target path %s\n", err, target_path);
}
mz_stream_os_close(target_stream);
mz_stream_os_delete(&target_stream);
2020-06-14 15:19:14 -07:00
} else {
2019-04-28 09:23:56 -07:00
printf("Error %d opening source path %s\n", err, path);
}
mz_stream_os_close(source_stream);
mz_stream_os_delete(&source_stream);
mz_stream_zlib_delete(&zlib_stream);
return err;
}
/***************************************************************************/
#if !defined(MZ_ZIP_NO_MAIN)
2020-06-14 15:19:14 -07:00
int main(int argc, const char *argv[]) {
2019-04-28 09:23:56 -07:00
int16_t operation_level = MZ_COMPRESS_LEVEL_DEFAULT;
int32_t path_arg = 0;
int32_t err = 0;
int32_t i = 0;
uint8_t operation = MZ_GZIP_COMPRESS;
const char *path = NULL;
const char *destination = NULL;
minigzip_banner();
2020-06-14 15:19:14 -07:00
if (argc == 1) {
2019-04-28 09:23:56 -07:00
minigzip_help();
return 0;
}
/* Parse command line options */
2020-06-14 15:19:14 -07:00
for (i = 1; i < argc; i += 1) {
2019-04-28 09:23:56 -07:00
printf("%s ", argv[i]);
2020-06-14 15:19:14 -07:00
if (argv[i][0] == '-') {
2019-04-28 09:23:56 -07:00
char c = argv[i][1];
if ((c == 'x') || (c == 'X'))
operation = MZ_GZIP_DECOMPRESS;
else if ((c >= '0') && (c <= '9'))
operation_level = (c - '0');
2020-06-14 15:19:14 -07:00
else if (((c == 'd') || (c == 'D')) && (i + 1 < argc)) {
2019-04-28 09:23:56 -07:00
destination = argv[i + 1];
printf("%s ", argv[i + 1]);
i += 1;
2020-06-14 15:19:14 -07:00
} else {
2019-04-28 09:23:56 -07:00
err = MZ_SUPPORT_ERROR;
}
2020-06-14 15:19:14 -07:00
} else if (path_arg == 0) {
2019-04-28 09:23:56 -07:00
path_arg = i;
break;
}
}
printf("\n");
2020-06-14 15:19:14 -07:00
if (err == MZ_SUPPORT_ERROR) {
2019-04-28 09:23:56 -07:00
printf("Feature not supported\n");
return err;
}
2020-06-14 15:19:14 -07:00
if (path_arg == 0) {
2019-04-28 09:23:56 -07:00
minigzip_help();
return 0;
}
path = argv[path_arg];
err = minigzip_copy(path, destination, operation, operation_level);
return err;
}
#endif