feat: updated engine
This commit is contained in:
parent
cbe99774ff
commit
f4cf6b3999
6607 changed files with 910135 additions and 430025 deletions
|
|
@ -29,9 +29,11 @@
|
|||
/**************************************************************************/
|
||||
|
||||
#include "zip_packer.h"
|
||||
#include "zip_packer.compat.inc"
|
||||
|
||||
#include "core/io/zip_io.h"
|
||||
#include "core/os/os.h"
|
||||
#include "core/object/class_db.h"
|
||||
#include "core/os/time.h"
|
||||
|
||||
Error ZIPPacker::open(const String &p_path, ZipAppend p_append) {
|
||||
if (fa.is_valid()) {
|
||||
|
|
@ -49,6 +51,7 @@ Error ZIPPacker::close() {
|
|||
Error err = zipClose(zf, nullptr) == ZIP_OK ? OK : FAILED;
|
||||
if (err == OK) {
|
||||
DEV_ASSERT(fa.is_null());
|
||||
directories.clear();
|
||||
zf = nullptr;
|
||||
}
|
||||
|
||||
|
|
@ -64,22 +67,40 @@ int ZIPPacker::get_compression_level() const {
|
|||
return compression_level;
|
||||
}
|
||||
|
||||
Error ZIPPacker::start_file(const String &p_path) {
|
||||
Error ZIPPacker::start_file(const String &p_path, BitField<FileAccess::UnixPermissionFlags> p_permissions, uint64_t p_modified_time) {
|
||||
ERR_FAIL_COND_V_MSG(fa.is_null(), FAILED, "ZIPPacker must be opened before use.");
|
||||
|
||||
if (!p_path.get_base_dir().is_empty() && !directories.has(p_path.get_base_dir() + "/")) {
|
||||
add_directory(p_path.get_base_dir(), 0755, p_modified_time);
|
||||
}
|
||||
|
||||
uint64_t time = p_modified_time;
|
||||
if (time == 0) {
|
||||
time = Time::get_singleton()->get_unix_time_from_system();
|
||||
}
|
||||
Dictionary tz = Time::get_singleton()->get_time_zone_from_system();
|
||||
time += tz["bias"].operator int() * 60;
|
||||
Dictionary dt = Time::get_singleton()->get_datetime_dict_from_unix_time(time);
|
||||
|
||||
zip_fileinfo zipfi;
|
||||
|
||||
OS::DateTime time = OS::get_singleton()->get_datetime();
|
||||
|
||||
zipfi.tmz_date.tm_sec = time.second;
|
||||
zipfi.tmz_date.tm_min = time.minute;
|
||||
zipfi.tmz_date.tm_hour = time.hour;
|
||||
zipfi.tmz_date.tm_mday = time.day;
|
||||
zipfi.tmz_date.tm_mon = time.month - 1;
|
||||
zipfi.tmz_date.tm_year = time.year;
|
||||
zipfi.tmz_date.tm_year = dt["year"];
|
||||
zipfi.tmz_date.tm_mon = dt["month"].operator int() - 1; // Note: "tm" month range - 0..11, Godot month range - 1..12, https://www.cplusplus.com/reference/ctime/tm/
|
||||
zipfi.tmz_date.tm_mday = dt["day"];
|
||||
zipfi.tmz_date.tm_hour = dt["hour"];
|
||||
zipfi.tmz_date.tm_min = dt["minute"];
|
||||
zipfi.tmz_date.tm_sec = dt["second"];
|
||||
zipfi.dosDate = 0;
|
||||
|
||||
// 0100000: regular file type
|
||||
// 0000644: permissions rw-r--r--
|
||||
uint32_t _mode = p_permissions;
|
||||
if (_mode == 0) {
|
||||
_mode = 0100644;
|
||||
} else {
|
||||
_mode |= 0100000;
|
||||
}
|
||||
zipfi.external_fa = (_mode << 16L) | ((_mode & 0200) ? 0 : 1); // UUUUUUUU UUUUUUUU 00000000 00ADVSHR: Unix permissions (U) + DOS read-only flag (R).
|
||||
zipfi.internal_fa = 0;
|
||||
zipfi.external_fa = 0;
|
||||
|
||||
int err = zipOpenNewFileInZip4(zf,
|
||||
p_path.utf8().get_data(),
|
||||
|
|
@ -97,7 +118,7 @@ Error ZIPPacker::start_file(const String &p_path) {
|
|||
Z_DEFAULT_STRATEGY,
|
||||
nullptr,
|
||||
0,
|
||||
0, // "version made by", indicates the compatibility of the file attribute information (the `external_fa` field above).
|
||||
0x0314, // "version made by", 0x03 - Unix, 0x14 - ZIP specification version 2.0, required to store Unix file permissions
|
||||
1 << 11); // Bit 11 is the language encoding flag. When set, filename and comment fields must be encoded using UTF-8.
|
||||
return err == ZIP_OK ? OK : FAILED;
|
||||
}
|
||||
|
|
@ -114,12 +135,73 @@ Error ZIPPacker::close_file() {
|
|||
return zipCloseFileInZip(zf) == ZIP_OK ? OK : FAILED;
|
||||
}
|
||||
|
||||
Error ZIPPacker::add_directory(const String &p_path, BitField<FileAccess::UnixPermissionFlags> p_permissions, uint64_t p_modified_time) {
|
||||
String path = p_path.ends_with("/") ? p_path : p_path + "/";
|
||||
ERR_FAIL_COND_V_MSG(fa.is_null(), FAILED, "ZIPPacker must be opened before use.");
|
||||
ERR_FAIL_COND_V_MSG(directories.has(path), ERR_CANT_CREATE, vformat("Directory '%s' already exists.", path));
|
||||
|
||||
uint64_t time = p_modified_time;
|
||||
if (time == 0) {
|
||||
time = Time::get_singleton()->get_unix_time_from_system();
|
||||
}
|
||||
Dictionary tz = Time::get_singleton()->get_time_zone_from_system();
|
||||
time += tz["bias"].operator int() * 60;
|
||||
Dictionary dt = Time::get_singleton()->get_datetime_dict_from_unix_time(time);
|
||||
|
||||
zip_fileinfo zipfi;
|
||||
zipfi.tmz_date.tm_year = dt["year"];
|
||||
zipfi.tmz_date.tm_mon = dt["month"].operator int() - 1; // Note: "tm" month range - 0..11, Godot month range - 1..12, https://www.cplusplus.com/reference/ctime/tm/
|
||||
zipfi.tmz_date.tm_mday = dt["day"];
|
||||
zipfi.tmz_date.tm_hour = dt["hour"];
|
||||
zipfi.tmz_date.tm_min = dt["minute"];
|
||||
zipfi.tmz_date.tm_sec = dt["second"];
|
||||
zipfi.dosDate = 0;
|
||||
|
||||
// 0040000: directory file type
|
||||
// 0000755: permissions rwxr-xr-x
|
||||
uint32_t _mode = p_permissions;
|
||||
if (_mode == 0) {
|
||||
_mode = 0040755;
|
||||
} else {
|
||||
_mode |= 0040000;
|
||||
}
|
||||
zipfi.external_fa = (_mode << 16L) | 0x10 | ((_mode & 0200) ? 0 : 1); // UUUUUUUU UUUUUUUU 00000000 00ADVSHR: Unix permissions (U) + DOS directory flag (D) + DOS read-only flag (R).
|
||||
zipfi.internal_fa = 0;
|
||||
|
||||
int err = zipOpenNewFileInZip4(zf,
|
||||
path.utf8().get_data(),
|
||||
&zipfi,
|
||||
nullptr,
|
||||
0,
|
||||
nullptr,
|
||||
0,
|
||||
nullptr,
|
||||
Z_DEFLATED,
|
||||
compression_level,
|
||||
0,
|
||||
-MAX_WBITS,
|
||||
DEF_MEM_LEVEL,
|
||||
Z_DEFAULT_STRATEGY,
|
||||
nullptr,
|
||||
0,
|
||||
0x0314, // "version made by", 0x03 - Unix, 0x14 - ZIP specification version 2.0, required to store Unix file permissions
|
||||
1 << 11); // Bit 11 is the language encoding flag. When set, filename and comment fields must be encoded using UTF-8.
|
||||
zipCloseFileInZip(zf);
|
||||
if (err != ZIP_OK) {
|
||||
return FAILED;
|
||||
}
|
||||
|
||||
directories.insert(path);
|
||||
return OK;
|
||||
}
|
||||
|
||||
void ZIPPacker::_bind_methods() {
|
||||
ClassDB::bind_method(D_METHOD("open", "path", "append"), &ZIPPacker::open, DEFVAL(Variant(APPEND_CREATE)));
|
||||
ClassDB::bind_method(D_METHOD("set_compression_level", "compression_level"), &ZIPPacker::set_compression_level);
|
||||
ClassDB::bind_method(D_METHOD("get_compression_level"), &ZIPPacker::get_compression_level);
|
||||
ADD_PROPERTY(PropertyInfo(Variant::INT, "compression_level"), "set_compression_level", "get_compression_level");
|
||||
ClassDB::bind_method(D_METHOD("start_file", "path"), &ZIPPacker::start_file);
|
||||
ClassDB::bind_method(D_METHOD("add_directory", "path", "permissions", "modified_time"), &ZIPPacker::add_directory, DEFVAL(0755), DEFVAL(0));
|
||||
ClassDB::bind_method(D_METHOD("start_file", "path", "permissions", "modified_time"), &ZIPPacker::start_file, DEFVAL(0644), DEFVAL(0));
|
||||
ClassDB::bind_method(D_METHOD("write_file", "data"), &ZIPPacker::write_file);
|
||||
ClassDB::bind_method(D_METHOD("close_file"), &ZIPPacker::close_file);
|
||||
ClassDB::bind_method(D_METHOD("close"), &ZIPPacker::close);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue