minizip-ng/minizip.c

298 lines
8.2 KiB
C
Raw Normal View History

/* minizip.c
Version 1.3.0, September 16th, 2017
sample part of the MiniZip project
2012-01-21 14:53:44 -07:00
2017-09-16 13:25:02 +08:00
Copyright (C) 2012-2017 Nathan Moinvaziri
https://github.com/nmoinvaz/minizip
Copyright (C) 2009-2010 Mathias Svensson
Modifications for Zip64 support
http://result42.com
Copyright (C) 2007-2008 Even Rouault
Modifications of Unzip for Zip64
Copyright (C) 1998-2010 Gilles Vollant
http://www.winimage.com/zLibDll/minizip.html
2012-01-21 14:53:44 -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.
2012-01-21 14:53:44 -07:00
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include "zip.h"
#include "mzstrm.h"
/***************************************************************************/
2012-01-21 14:53:44 -07:00
2017-03-18 16:16:06 -07:00
void minizip_banner()
2012-01-21 14:53:44 -07:00
{
printf("MiniZip 1.3.0, demo of zLib + MiniZip64 package\n");
2017-07-25 12:37:14 +08:00
printf("more info on MiniZip at https://github.com/nmoinvaz/minizip\n\n");
2012-10-25 00:21:50 -07:00
}
2012-01-21 14:53:44 -07:00
2017-03-18 16:16:06 -07:00
void minizip_help()
2012-10-25 00:21:50 -07:00
{
printf("Usage : minizip [-o] [-a] [-0 to -9] [-p password] [-j] file.zip [files_to_add]\n\n" \
" -o Overwrite existing file.zip\n" \
" -a Append to existing file.zip\n" \
" -0 Store only\n" \
" -1 Compress faster\n" \
" -9 Compress better\n\n" \
" -j exclude path. store only the file name.\n\n");
2012-01-21 14:53:44 -07:00
}
/***************************************************************************/
int32_t minizip_addfile(void *handle, const char *path, const char *filenameinzip, int level, const char *password)
{
mz_zip_file file_info = { 0 };
mz_zip_compress compress_info = { 0 };
mz_zip_crypt crypt_info = { 0 };
int32_t read = 0;
int16_t err = MZ_OK;
int16_t err_close = MZ_OK;
void *stream = NULL;
char buf[UINT16_MAX];
// Get information about the file on disk so we can store it in zip
file_info.filename = filenameinzip;
if (mz_os_file_get_size(path) >= UINT32_MAX)
file_info.zip64 = 1;
mz_os_get_file_date(path, &file_info.dos_date);
compress_info.level = level;
if (level > 0)
compress_info.method = MZ_METHOD_DEFLATE;
else
compress_info.method = MZ_METHOD_RAW;
crypt_info.password = password;
// Add to zip file
err = mz_zip_entry_open(handle, &file_info, &compress_info, &crypt_info);
mz_stream_os_create(&stream);
if (err != MZ_OK)
{
printf("Error in opening %s in zip file (%d)\n", filenameinzip, err);
}
else
{
err = mz_stream_os_open(stream, path, MZ_STREAM_MODE_READ);
if (err != MZ_OK)
printf("Error in opening %s for reading\n", path);
}
if (err == MZ_OK)
{
// Read contents of file and write it to zip
do
{
read = mz_stream_os_read(stream, buf, sizeof(buf));
if (read < 0)
{
err = mz_stream_os_error(stream);
printf("Error %d in reading %s\n", err, filenameinzip);
break;
}
if (read == 0)
break;
err = mz_zip_entry_write(handle, buf, read);
if (err < 0)
printf("Error in writing %s in the zip file (%d)\n", filenameinzip, err);
2017-09-29 21:02:09 -07:00
}
while (err == MZ_OK);
}
if (mz_stream_os_is_open(stream))
mz_stream_os_close(stream);
2017-09-29 21:02:09 -07:00
mz_stream_os_delete(&stream);
err_close = mz_zip_entry_close(handle);
if (err_close != MZ_OK)
printf("Error in closing %s in the zip file (%d)\n", filenameinzip, err_close);
return err;
}
2017-03-18 16:32:30 -07:00
#ifndef NOMAIN
2012-10-25 00:29:35 -07:00
int main(int argc, char *argv[])
2012-01-21 14:53:44 -07:00
{
void *handle = NULL;
void *stream = NULL;
char *path = NULL;
const char *password = NULL;
int32_t path_arg = 0;
uint8_t opt_openmode = MZ_OPENMODE_CREATE;
uint8_t opt_compress_level = MZ_COMPRESS_LEVEL_DEFAULT;
uint8_t opt_exclude_path = 0;
int16_t err_close = 0;
int16_t err = 0;
int16_t i = 0;
2017-03-18 16:16:06 -07:00
minizip_banner();
2012-10-25 00:21:50 -07:00
if (argc == 1)
2012-01-21 14:53:44 -07:00
{
2017-03-18 16:16:06 -07:00
minizip_help();
2012-01-21 14:53:44 -07:00
return 0;
}
2012-10-25 00:21:50 -07:00
// Parse command line options
2012-10-25 00:21:50 -07:00
for (i = 1; i < argc; i++)
2012-01-21 14:53:44 -07:00
{
2012-10-25 00:21:50 -07:00
if ((*argv[i]) == '-')
2012-01-21 14:53:44 -07:00
{
2012-10-25 00:21:50 -07:00
const char *p = argv[i]+1;
2012-01-21 14:53:44 -07:00
2012-10-25 00:21:50 -07:00
while ((*p) != '\0')
2012-01-21 14:53:44 -07:00
{
2012-10-25 00:21:50 -07:00
char c = *(p++);;
if ((c == 'o') || (c == 'O'))
opt_openmode = MZ_OPENMODE_CREATEAFTER;
2012-10-25 00:21:50 -07:00
if ((c == 'a') || (c == 'A'))
opt_openmode = MZ_OPENMODE_ADDINZIP;
2012-10-25 00:21:50 -07:00
if ((c >= '0') && (c <= '9'))
opt_compress_level = (c - '0');
if ((c == 'j') || (c == 'J'))
opt_exclude_path = 1;
if (((c == 'p') || (c == 'P')) && (i+1 < argc))
2012-01-21 14:53:44 -07:00
{
2012-10-25 00:21:50 -07:00
password=argv[i+1];
i++;
2012-01-21 14:53:44 -07:00
}
}
continue;
2012-01-21 14:53:44 -07:00
}
if (path_arg == 0)
path_arg = i;
2012-10-25 00:21:50 -07:00
}
if (path_arg == 0)
2012-10-25 00:21:50 -07:00
{
2017-03-18 16:16:06 -07:00
minizip_help();
2012-10-25 00:21:50 -07:00
return 0;
2012-01-21 14:53:44 -07:00
}
path = argv[path_arg];
2012-01-21 14:53:44 -07:00
if (opt_openmode == 2)
2012-01-21 14:53:44 -07:00
{
// If the file don't exist, we not append file
if (mz_os_file_exists(path) == 0)
opt_openmode = 1;
2012-01-21 14:53:44 -07:00
}
else if (opt_openmode == 0)
2012-01-21 14:53:44 -07:00
{
// If ask the user what to do because append and overwrite args not set
if (mz_os_file_exists(path) != 0)
2012-10-25 00:21:50 -07:00
{
char rep = 0;
do
{
char answer[128];
printf("The file %s exists. Overwrite ? [y]es, [n]o, [a]ppend : ", path);
2012-10-25 00:29:35 -07:00
if (scanf("%1s", answer) != 1)
exit(EXIT_FAILURE);
2012-10-25 00:21:50 -07:00
rep = answer[0];
2012-01-21 14:53:44 -07:00
2012-10-25 00:29:35 -07:00
if ((rep >= 'a') && (rep <= 'z'))
2012-10-25 00:21:50 -07:00
rep -= 0x20;
}
2012-10-25 00:29:35 -07:00
while ((rep != 'Y') && (rep != 'N') && (rep != 'A'));
2012-01-21 14:53:44 -07:00
2012-10-25 00:21:50 -07:00
if (rep == 'A')
{
opt_openmode = MZ_OPENMODE_ADDINZIP;
}
2012-10-25 00:29:35 -07:00
else if (rep == 'N')
{
2017-03-18 16:16:06 -07:00
minizip_help();
2012-10-25 00:29:35 -07:00
return 0;
}
2012-01-21 14:53:44 -07:00
}
}
2017-10-02 00:44:51 -07:00
mz_stream_os_create(&stream);
2017-09-29 21:02:09 -07:00
if (mz_stream_open(stream, path, opt_openmode) != MZ_OK)
{
mz_stream_os_delete(&stream);
printf("Error opening file %s\n", path);
return 1;
}
handle = mz_zip_open(path, opt_openmode, 0, stream);
2012-10-25 00:21:50 -07:00
if (handle == NULL)
2012-01-21 14:53:44 -07:00
{
mz_stream_os_delete(&stream);
printf("Error opening zip %s\n", path);
return 1;
2012-10-25 00:21:50 -07:00
}
printf("Creating %s\n", path);
// Go through command line args looking for files to add to zip
for (i = path_arg + 1; (i < argc) && (err == MZ_OK); i++)
2012-10-25 00:21:50 -07:00
{
const char *filename = argv[i];
const char *filenameinzip;
2012-10-25 00:21:50 -07:00
// Skip command line options
if ((((*(argv[i])) == '-') || ((*(argv[i])) == '/')) && (strlen(argv[i]) == 2) &&
((argv[i][1] == 'o') || (argv[i][1] == 'O') || (argv[i][1] == 'a') || (argv[i][1] == 'A') ||
(argv[i][1] == 'p') || (argv[i][1] == 'P') || ((argv[i][1] >= '0') && (argv[i][1] <= '9'))))
2012-10-25 00:21:50 -07:00
continue;
// Construct the filename that our file will be stored in the zip as.
// The path name saved, should not include a leading slash.
// If it did, windows/xp and dynazip couldn't read the zip file.
2012-10-25 00:21:50 -07:00
filenameinzip = filename;
while (filenameinzip[0] == '\\' || filenameinzip[0] == '/')
filenameinzip += 1;
2012-10-25 00:21:50 -07:00
// Should the file be stored with any path info at all?
2012-10-25 00:21:50 -07:00
if (opt_exclude_path)
2012-01-21 14:53:44 -07:00
{
const char *match = NULL;
const char *last_slash = NULL;
2012-10-25 00:21:50 -07:00
for (match = filenameinzip; *match; match += 1)
2012-10-25 00:21:50 -07:00
{
if (*match == '\\' || *match == '/')
last_slash = match;
2012-10-25 00:21:50 -07:00
}
if (last_slash != NULL)
filenameinzip = last_slash + 1; // base filename follows last slash
2012-01-21 14:53:44 -07:00
}
2012-10-25 00:21:50 -07:00
err = minizip_addfile(handle, filename, filenameinzip, opt_compress_level, password);
2012-01-21 14:53:44 -07:00
}
err_close = mz_zip_close(handle, NULL, 0);
if (err_close != MZ_OK)
printf("Error in closing %s (%d)\n", path, err_close);
2012-10-25 00:21:50 -07:00
mz_stream_os_close(stream);
2017-10-02 00:44:51 -07:00
mz_stream_os_delete(&stream);
2017-09-29 21:02:09 -07:00
return err;
2012-01-21 14:53:44 -07:00
}
#endif