2017-08-18 23:20:22 +02:00
|
|
|
diff --git a/thirdparty/minizip/ioapi.c b/thirdparty/minizip/ioapi.c
|
2023-08-29 11:02:34 +02:00
|
|
|
index 782d32469a..2e89f5f41a 100644
|
2017-08-18 23:20:22 +02:00
|
|
|
--- a/thirdparty/minizip/ioapi.c
|
|
|
|
+++ b/thirdparty/minizip/ioapi.c
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -75,8 +75,15 @@ void fill_zlib_filefunc64_32_def_from_filefunc32(zlib_filefunc64_32_def* p_filef
|
2017-08-18 23:20:22 +02:00
|
|
|
p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
|
|
|
|
p_filefunc64_32->zseek32_file = p_filefunc32->zseek_file;
|
|
|
|
p_filefunc64_32->ztell32_file = p_filefunc32->ztell_file;
|
|
|
|
+ /* GODOT start */
|
|
|
|
+ p_filefunc64_32->zfile_func64.alloc_mem = p_filefunc32->alloc_mem;
|
|
|
|
+ p_filefunc64_32->zfile_func64.free_mem = p_filefunc32->free_mem;
|
|
|
|
+ /* GODOT end */
|
|
|
|
}
|
|
|
|
|
|
|
|
+/* GODOT start */
|
|
|
|
+/*
|
|
|
|
+// GODOT end
|
|
|
|
|
|
|
|
|
2023-08-29 11:02:34 +02:00
|
|
|
static voidpf ZCALLBACK fopen_file_func(voidpf opaque, const char* filename, int mode) {
|
|
|
|
@@ -229,3 +236,6 @@ void fill_fopen64_filefunc(zlib_filefunc64_def* pzlib_filefunc_def) {
|
2017-08-18 23:20:22 +02:00
|
|
|
pzlib_filefunc_def->zerror_file = ferror_file_func;
|
|
|
|
pzlib_filefunc_def->opaque = NULL;
|
|
|
|
}
|
|
|
|
+// GODOT start
|
|
|
|
+*/
|
|
|
|
+/* GODOT end */
|
|
|
|
diff --git a/thirdparty/minizip/ioapi.h b/thirdparty/minizip/ioapi.h
|
2024-01-24 11:32:38 +01:00
|
|
|
index a2d2e6e60d..509b52da8a 100644
|
2017-08-18 23:20:22 +02:00
|
|
|
--- a/thirdparty/minizip/ioapi.h
|
|
|
|
+++ b/thirdparty/minizip/ioapi.h
|
2022-03-31 14:14:05 +02:00
|
|
|
@@ -155,6 +155,10 @@ typedef struct zlib_filefunc_def_s
|
2017-08-18 23:20:22 +02:00
|
|
|
close_file_func zclose_file;
|
|
|
|
testerror_file_func zerror_file;
|
|
|
|
voidpf opaque;
|
|
|
|
+ /* GODOT start */
|
|
|
|
+ alloc_func alloc_mem;
|
|
|
|
+ free_func free_mem;
|
|
|
|
+ /* GODOT end */
|
|
|
|
} zlib_filefunc_def;
|
|
|
|
|
2023-08-29 11:02:34 +02:00
|
|
|
typedef ZPOS64_T (ZCALLBACK *tell64_file_func) (voidpf opaque, voidpf stream);
|
2022-03-31 14:14:05 +02:00
|
|
|
@@ -171,6 +175,10 @@ typedef struct zlib_filefunc64_def_s
|
2017-08-18 23:20:22 +02:00
|
|
|
close_file_func zclose_file;
|
|
|
|
testerror_file_func zerror_file;
|
|
|
|
voidpf opaque;
|
|
|
|
+ /* GODOT start */
|
|
|
|
+ alloc_func alloc_mem;
|
|
|
|
+ free_func free_mem;
|
|
|
|
+ /* GODOT end */
|
|
|
|
} zlib_filefunc64_def;
|
|
|
|
|
2023-08-29 11:02:34 +02:00
|
|
|
void fill_fopen64_filefunc(zlib_filefunc64_def* pzlib_filefunc_def);
|
2017-08-18 23:20:22 +02:00
|
|
|
diff --git a/thirdparty/minizip/unzip.c b/thirdparty/minizip/unzip.c
|
2024-01-24 11:32:38 +01:00
|
|
|
index ea05b7d62a..981ba3c0cb 100644
|
2017-08-18 23:20:22 +02:00
|
|
|
--- a/thirdparty/minizip/unzip.c
|
|
|
|
+++ b/thirdparty/minizip/unzip.c
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -152,6 +152,9 @@ typedef struct
|
2017-08-18 23:20:22 +02:00
|
|
|
uLong compression_method; /* compression method (0==store) */
|
|
|
|
ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
|
|
|
|
int raw;
|
|
|
|
+ /* GODOT start */
|
|
|
|
+ int extra_size;
|
|
|
|
+ /* GODOT end */
|
|
|
|
} file_in_zip64_read_info_s;
|
|
|
|
|
|
|
|
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -513,9 +516,10 @@ local unzFile unzOpenInternal(const void *path,
|
2017-08-18 23:20:22 +02:00
|
|
|
us.z_filefunc.zseek32_file = NULL;
|
|
|
|
us.z_filefunc.ztell32_file = NULL;
|
|
|
|
if (pzlib_filefunc64_32_def==NULL)
|
|
|
|
- fill_fopen64_filefunc(&us.z_filefunc.zfile_func64);
|
|
|
|
- else
|
|
|
|
- us.z_filefunc = *pzlib_filefunc64_32_def;
|
|
|
|
+ /* GODOT start */
|
|
|
|
+ return NULL; // standard i/o not supported
|
|
|
|
+ us.z_filefunc = *pzlib_filefunc64_32_def;
|
|
|
|
+ /* GODOT end */
|
|
|
|
us.is64bitOpenFunction = is64bitOpenFunction;
|
|
|
|
|
|
|
|
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -703,6 +707,18 @@ extern unzFile ZEXPORT unzOpen64(const void *path) {
|
2017-08-18 23:20:22 +02:00
|
|
|
return unzOpenInternal(path, NULL, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
+/* GODOT start */
|
|
|
|
+extern void* unzGetOpaque(unzFile file) {
|
|
|
|
+
|
|
|
|
+ unz64_s* s;
|
|
|
|
+ if (file==NULL)
|
|
|
|
+ return NULL;
|
|
|
|
+ s=(unz64_s*)file;
|
|
|
|
+
|
|
|
|
+ return s->z_filefunc.zfile_func64.opaque;
|
|
|
|
+};
|
|
|
|
+/* GODOT end */
|
|
|
|
+
|
|
|
|
/*
|
2018-05-15 18:58:34 +02:00
|
|
|
Close a ZipFile opened with unzOpen.
|
|
|
|
If there is files inside the .Zip opened with unzOpenCurrentFile (see later),
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -905,10 +921,23 @@ local int unz64local_GetCurrentFileInfoInternal(unzFile file,
|
2017-08-18 23:20:22 +02:00
|
|
|
|
|
|
|
if (lSeek!=0)
|
|
|
|
{
|
|
|
|
+ /* GODOT start */
|
|
|
|
+ if (lSeek<0) {
|
|
|
|
+ // WORKAROUND for backwards seeking
|
2022-03-31 14:14:05 +02:00
|
|
|
+ ZPOS64_T pos = ZTELL64(s->z_filefunc, s->filestream);
|
|
|
|
+ if (ZSEEK64(s->z_filefunc, s->filestream,pos+(ZPOS64_T)lSeek,ZLIB_FILEFUNC_SEEK_SET)==0)
|
2017-08-18 23:20:22 +02:00
|
|
|
+ lSeek=0;
|
|
|
|
+ else
|
|
|
|
+ err=UNZ_ERRNO;
|
|
|
|
+ } else {
|
2022-03-31 14:14:05 +02:00
|
|
|
+ /* GODOT end */
|
|
|
|
if (ZSEEK64(s->z_filefunc, s->filestream,(ZPOS64_T)lSeek,ZLIB_FILEFUNC_SEEK_CUR)==0)
|
|
|
|
lSeek=0;
|
|
|
|
else
|
|
|
|
err=UNZ_ERRNO;
|
|
|
|
+ /* GODOT start */
|
2017-08-18 23:20:22 +02:00
|
|
|
+ }
|
2022-03-31 14:14:05 +02:00
|
|
|
+ /* GODOT end */
|
2017-08-18 23:20:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
while(acc < file_info.size_file_extra)
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -1446,8 +1475,10 @@ extern int ZEXPORT unzOpenCurrentFile3(unzFile file, int* method,
|
2017-08-18 23:20:22 +02:00
|
|
|
}
|
|
|
|
else if ((s->cur_file_info.compression_method==Z_DEFLATED) && (!raw))
|
|
|
|
{
|
|
|
|
- pfile_in_zip_read_info->stream.zalloc = (alloc_func)0;
|
|
|
|
- pfile_in_zip_read_info->stream.zfree = (free_func)0;
|
|
|
|
+ /* GODOT start */
|
|
|
|
+ pfile_in_zip_read_info->stream.zalloc = s->z_filefunc.zfile_func64.alloc_mem;
|
|
|
|
+ pfile_in_zip_read_info->stream.zfree = s->z_filefunc.zfile_func64.free_mem;
|
|
|
|
+ /* GODOT end */
|
|
|
|
pfile_in_zip_read_info->stream.opaque = (voidpf)0;
|
|
|
|
pfile_in_zip_read_info->stream.next_in = 0;
|
|
|
|
pfile_in_zip_read_info->stream.avail_in = 0;
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -1480,6 +1511,9 @@ extern int ZEXPORT unzOpenCurrentFile3(unzFile file, int* method,
|
2017-08-18 23:20:22 +02:00
|
|
|
iSizeVar;
|
|
|
|
|
|
|
|
pfile_in_zip_read_info->stream.avail_in = (uInt)0;
|
|
|
|
+ /* GODOT start */
|
|
|
|
+ pfile_in_zip_read_info->extra_size = iSizeVar;
|
|
|
|
+ /* GODOT end */
|
|
|
|
|
|
|
|
s->pfile_in_zip_read = pfile_in_zip_read_info;
|
|
|
|
s->encrypted = 0;
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -1510,6 +1544,85 @@ extern int ZEXPORT unzOpenCurrentFile3(unzFile file, int* method,
|
2017-08-18 23:20:22 +02:00
|
|
|
return UNZ_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
+/* GODOT start */
|
|
|
|
+extern int ZEXPORT unzSeekCurrentFile(unzFile file, int pos) {
|
|
|
|
+
|
|
|
|
+ unz64_s* s;
|
|
|
|
+ file_in_zip64_read_info_s* pfile_in_zip_read_info;
|
|
|
|
+ if (file==NULL)
|
|
|
|
+ return UNZ_PARAMERROR;
|
|
|
|
+ s=(unz64_s*)file;
|
|
|
|
+ pfile_in_zip_read_info=s->pfile_in_zip_read;
|
|
|
|
+
|
|
|
|
+ if (pfile_in_zip_read_info==NULL)
|
|
|
|
+ return UNZ_PARAMERROR;
|
|
|
|
+
|
|
|
|
+ if (pfile_in_zip_read_info->compression_method==Z_BZIP2ED) { // don't know how to support bzip
|
|
|
|
+ return UNZ_INTERNALERROR;
|
2022-03-31 14:14:05 +02:00
|
|
|
+ }
|
2017-08-18 23:20:22 +02:00
|
|
|
+
|
|
|
|
+ if ((pfile_in_zip_read_info->compression_method==0) || (pfile_in_zip_read_info->raw)) {
|
|
|
|
+
|
|
|
|
+ pfile_in_zip_read_info->rest_read_compressed =
|
|
|
|
+ s->cur_file_info.compressed_size - pos;
|
|
|
|
+ pfile_in_zip_read_info->rest_read_uncompressed =
|
|
|
|
+ s->cur_file_info.uncompressed_size - pos;
|
|
|
|
+
|
|
|
|
+ pfile_in_zip_read_info->pos_in_zipfile =
|
|
|
|
+ s->cur_file_info_internal.offset_curfile + SIZEZIPLOCALHEADER +
|
|
|
|
+ pfile_in_zip_read_info->extra_size + pos;
|
|
|
|
+
|
|
|
|
+ pfile_in_zip_read_info->stream.avail_in = (uInt)0;
|
|
|
|
+ pfile_in_zip_read_info->stream.total_out = pos;
|
|
|
|
+
|
|
|
|
+ return ZSEEK64(pfile_in_zip_read_info->z_filefunc,
|
|
|
|
+ pfile_in_zip_read_info->filestream,
|
|
|
|
+ pfile_in_zip_read_info->byte_before_the_zipfile + pfile_in_zip_read_info->pos_in_zipfile,
|
|
|
|
+ ZLIB_FILEFUNC_SEEK_SET);
|
|
|
|
+
|
|
|
|
+ } else { // gzip
|
|
|
|
+
|
|
|
|
+ if (pos < pfile_in_zip_read_info->stream.total_out) { // negative seek, rewind
|
|
|
|
+
|
|
|
|
+ pfile_in_zip_read_info->rest_read_compressed =
|
|
|
|
+ s->cur_file_info.compressed_size ;
|
|
|
|
+ pfile_in_zip_read_info->rest_read_uncompressed =
|
|
|
|
+ s->cur_file_info.uncompressed_size ;
|
|
|
|
+
|
|
|
|
+ pfile_in_zip_read_info->pos_in_zipfile =
|
|
|
|
+ s->cur_file_info_internal.offset_curfile + SIZEZIPLOCALHEADER +
|
|
|
|
+ pfile_in_zip_read_info->extra_size;
|
|
|
|
+
|
|
|
|
+ (void)inflateReset(&pfile_in_zip_read_info->stream);
|
|
|
|
+
|
|
|
|
+ pfile_in_zip_read_info->stream.avail_in = (uInt)0;
|
|
|
|
+ pfile_in_zip_read_info->stream.total_out = 0;
|
|
|
|
+ pfile_in_zip_read_info->stream.next_in = 0;
|
2022-03-31 14:14:05 +02:00
|
|
|
+ }
|
2017-08-18 23:20:22 +02:00
|
|
|
+
|
|
|
|
+ // not sure where to read, so read on the stack
|
|
|
|
+ {
|
|
|
|
+ char buf[512];
|
|
|
|
+ int to_read = pos - pfile_in_zip_read_info->stream.total_out;
|
|
|
|
+ while (to_read) {
|
|
|
|
+
|
|
|
|
+ int len = to_read > sizeof(buf)?sizeof(buf):to_read;
|
|
|
|
+ int read = unzReadCurrentFile(file, buf, len);
|
|
|
|
+ if (read < 0) {
|
|
|
|
+ return read;
|
2022-03-31 14:14:05 +02:00
|
|
|
+ }
|
2017-08-18 23:20:22 +02:00
|
|
|
+ to_read -= read;
|
|
|
|
+ if (read == UNZ_EOF) {
|
|
|
|
+ return pos;
|
2022-03-31 14:14:05 +02:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
2017-08-18 23:20:22 +02:00
|
|
|
+
|
|
|
|
+ return pos;
|
2022-03-31 14:14:05 +02:00
|
|
|
+}
|
2017-08-18 23:20:22 +02:00
|
|
|
+/* GODOT end */
|
|
|
|
+
|
2023-08-29 11:02:34 +02:00
|
|
|
extern int ZEXPORT unzOpenCurrentFile(unzFile file) {
|
2017-08-18 23:20:22 +02:00
|
|
|
return unzOpenCurrentFile3(file, NULL, NULL, 0, NULL);
|
2023-08-29 11:02:34 +02:00
|
|
|
}
|
2017-08-18 23:20:22 +02:00
|
|
|
diff --git a/thirdparty/minizip/unzip.h b/thirdparty/minizip/unzip.h
|
2024-01-24 11:32:38 +01:00
|
|
|
index 5cfc9c6274..0639674574 100644
|
2017-08-18 23:20:22 +02:00
|
|
|
--- a/thirdparty/minizip/unzip.h
|
|
|
|
+++ b/thirdparty/minizip/unzip.h
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -202,6 +202,10 @@ extern int ZEXPORT unzClose(unzFile file);
|
2018-05-15 18:58:34 +02:00
|
|
|
these files MUST be closed with unzCloseCurrentFile before call unzClose.
|
2017-08-18 23:20:22 +02:00
|
|
|
return UNZ_OK if there is no problem. */
|
|
|
|
|
|
|
|
+/* GODOT start */
|
|
|
|
+extern void* unzGetOpaque(unzFile file);
|
|
|
|
+/* GODOT end */
|
|
|
|
+
|
2023-08-29 11:02:34 +02:00
|
|
|
extern int ZEXPORT unzGetGlobalInfo(unzFile file,
|
|
|
|
unz_global_info *pglobal_info);
|
2017-08-18 23:20:22 +02:00
|
|
|
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -390,6 +394,13 @@ extern int ZEXPORT unzReadCurrentFile(unzFile file,
|
2017-08-18 23:20:22 +02:00
|
|
|
(UNZ_ERRNO for IO error, or zLib error for uncompress error)
|
|
|
|
*/
|
|
|
|
|
|
|
|
+/* GODOT start */
|
|
|
|
+extern int ZEXPORT unzSeekCurrentFile(unzFile file, int pos);
|
|
|
|
+/*
|
|
|
|
+ Seek to position in uncompressed data
|
|
|
|
+*/
|
|
|
|
+/* GODOT end */
|
|
|
|
+
|
2023-08-29 11:02:34 +02:00
|
|
|
extern z_off_t ZEXPORT unztell(unzFile file);
|
2017-08-18 23:20:22 +02:00
|
|
|
|
2023-08-29 11:02:34 +02:00
|
|
|
extern ZPOS64_T ZEXPORT unztell64(unzFile file);
|
2017-08-18 23:20:22 +02:00
|
|
|
diff --git a/thirdparty/minizip/zip.c b/thirdparty/minizip/zip.c
|
2024-01-24 11:32:38 +01:00
|
|
|
index 60bdffac34..1d2d918e72 100644
|
2017-08-18 23:20:22 +02:00
|
|
|
--- a/thirdparty/minizip/zip.c
|
|
|
|
+++ b/thirdparty/minizip/zip.c
|
2023-08-29 11:02:34 +02:00
|
|
|
@@ -820,9 +820,11 @@ extern zipFile ZEXPORT zipOpen3(const void *pathname, int append, zipcharpc* glo
|
2017-08-18 23:20:22 +02:00
|
|
|
|
|
|
|
ziinit.z_filefunc.zseek32_file = NULL;
|
|
|
|
ziinit.z_filefunc.ztell32_file = NULL;
|
|
|
|
- if (pzlib_filefunc64_32_def==NULL)
|
|
|
|
- fill_fopen64_filefunc(&ziinit.z_filefunc.zfile_func64);
|
|
|
|
- else
|
|
|
|
+ /* GODOT start */
|
|
|
|
+ if (pzlib_filefunc64_32_def==NULL) {
|
|
|
|
+ //fill_fopen64_filefunc(&ziinit.z_filefunc.zfile_func64);
|
|
|
|
+ } else
|
|
|
|
+ /* GODOT end */
|
|
|
|
ziinit.z_filefunc = *pzlib_filefunc64_32_def;
|
|
|
|
|
|
|
|
ziinit.filestream = ZOPEN64(ziinit.z_filefunc,
|
2024-01-24 11:32:38 +01:00
|
|
|
@@ -1182,8 +1184,10 @@ extern int ZEXPORT zipOpenNewFileInZip4_64(zipFile file, const char* filename, c
|
2017-08-18 23:20:22 +02:00
|
|
|
{
|
|
|
|
if(zi->ci.method == Z_DEFLATED)
|
|
|
|
{
|
|
|
|
- zi->ci.stream.zalloc = (alloc_func)0;
|
|
|
|
- zi->ci.stream.zfree = (free_func)0;
|
|
|
|
+ /* GODOT start */
|
|
|
|
+ zi->ci.stream.zalloc = zi->z_filefunc.zfile_func64.alloc_mem;
|
|
|
|
+ zi->ci.stream.zfree = zi->z_filefunc.zfile_func64.free_mem;
|
|
|
|
+ /* GODOT end */
|
|
|
|
zi->ci.stream.opaque = (voidpf)0;
|
|
|
|
|
|
|
|
if (windowBits>0)
|