mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 10:03:45 +01:00
Make fs::extractZipFile thread-safe
This commit is contained in:
parent
9fab5d594c
commit
2d5b7b5fb4
@ -28,11 +28,18 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "porting.h"
|
#include "porting.h"
|
||||||
|
#ifndef SERVER
|
||||||
|
#include "irr_ptr.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace fs
|
namespace fs
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifdef _WIN32 // WINDOWS
|
#ifdef _WIN32
|
||||||
|
|
||||||
|
/***********
|
||||||
|
* Windows *
|
||||||
|
***********/
|
||||||
|
|
||||||
#define _WIN32_WINNT 0x0501
|
#define _WIN32_WINNT 0x0501
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
@ -201,7 +208,11 @@ std::string CreateTempFile()
|
|||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
#else // POSIX
|
#else
|
||||||
|
|
||||||
|
/*********
|
||||||
|
* POSIX *
|
||||||
|
*********/
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
@ -392,6 +403,10 @@ std::string CreateTempFile()
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/****************************
|
||||||
|
* portable implementations *
|
||||||
|
****************************/
|
||||||
|
|
||||||
void GetRecursiveDirs(std::vector<std::string> &dirs, const std::string &dir)
|
void GetRecursiveDirs(std::vector<std::string> &dirs, const std::string &dir)
|
||||||
{
|
{
|
||||||
static const std::set<char> chars_to_ignore = { '_', '.' };
|
static const std::set<char> chars_to_ignore = { '_', '.' };
|
||||||
@ -753,69 +768,66 @@ bool safeWriteToFile(const std::string &path, const std::string &content)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef SERVER
|
||||||
bool extractZipFile(io::IFileSystem *fs, const char *filename, const std::string &destination)
|
bool extractZipFile(io::IFileSystem *fs, const char *filename, const std::string &destination)
|
||||||
{
|
{
|
||||||
if (!fs->addFileArchive(filename, false, false, io::EFAT_ZIP)) {
|
// Be careful here not to touch the global file hierarchy in Irrlicht
|
||||||
|
// since this function needs to be thread-safe!
|
||||||
|
|
||||||
|
io::IArchiveLoader *zip_loader = nullptr;
|
||||||
|
for (u32 i = 0; i < fs->getArchiveLoaderCount(); i++) {
|
||||||
|
if (fs->getArchiveLoader(i)->isALoadableFileFormat(io::EFAT_ZIP)) {
|
||||||
|
zip_loader = fs->getArchiveLoader(i);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!zip_loader) {
|
||||||
|
warningstream << "fs::extractZipFile(): Irrlicht said it doesn't support ZIPs." << std::endl;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
sanity_check(fs->getFileArchiveCount() > 0);
|
irr_ptr<io::IFileArchive> opened_zip(zip_loader->createArchive(filename, false, false));
|
||||||
|
|
||||||
/**********************************************************************/
|
|
||||||
/* WARNING this is not threadsafe!! */
|
|
||||||
/**********************************************************************/
|
|
||||||
io::IFileArchive* opened_zip = fs->getFileArchive(fs->getFileArchiveCount() - 1);
|
|
||||||
|
|
||||||
const io::IFileList* files_in_zip = opened_zip->getFileList();
|
const io::IFileList* files_in_zip = opened_zip->getFileList();
|
||||||
|
|
||||||
unsigned int number_of_files = files_in_zip->getFileCount();
|
for (u32 i = 0; i < files_in_zip->getFileCount(); i++) {
|
||||||
|
std::string fullpath = destination + DIR_DELIM;
|
||||||
for (unsigned int i=0; i < number_of_files; i++) {
|
|
||||||
std::string fullpath = destination;
|
|
||||||
fullpath += DIR_DELIM;
|
|
||||||
fullpath += files_in_zip->getFullFileName(i).c_str();
|
fullpath += files_in_zip->getFullFileName(i).c_str();
|
||||||
std::string fullpath_dir = fs::RemoveLastPathComponent(fullpath);
|
std::string fullpath_dir = fs::RemoveLastPathComponent(fullpath);
|
||||||
|
|
||||||
if (!files_in_zip->isDirectory(i)) {
|
if (files_in_zip->isDirectory(i))
|
||||||
if (!fs::PathExists(fullpath_dir) && !fs::CreateAllDirs(fullpath_dir)) {
|
continue; // ignore, we create dirs as necessary
|
||||||
fs->removeFileArchive(fs->getFileArchiveCount()-1);
|
|
||||||
|
if (!fs::PathExists(fullpath_dir) && !fs::CreateAllDirs(fullpath_dir))
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
|
|
||||||
io::IReadFile* toread = opened_zip->createAndOpenFile(i);
|
irr_ptr<io::IReadFile> toread(opened_zip->createAndOpenFile(i));
|
||||||
|
|
||||||
FILE *targetfile = fopen(fullpath.c_str(),"wb");
|
std::ofstream os(fullpath.c_str(), std::ios::binary);
|
||||||
|
if (!os.good())
|
||||||
if (targetfile == NULL) {
|
|
||||||
fs->removeFileArchive(fs->getFileArchiveCount()-1);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
|
|
||||||
char read_buffer[1024];
|
char buffer[4096];
|
||||||
long total_read = 0;
|
long total_read = 0;
|
||||||
|
|
||||||
while (total_read < toread->getSize()) {
|
while (total_read < toread->getSize()) {
|
||||||
|
long bytes_read = toread->read(buffer, sizeof(buffer));
|
||||||
unsigned int bytes_read =
|
bool error = true;
|
||||||
toread->read(read_buffer,sizeof(read_buffer));
|
if (bytes_read != 0) {
|
||||||
if ((bytes_read == 0 ) ||
|
os.write(buffer, bytes_read);
|
||||||
(fwrite(read_buffer, 1, bytes_read, targetfile) != bytes_read))
|
error = os.fail();
|
||||||
{
|
}
|
||||||
fclose(targetfile);
|
if (error) {
|
||||||
fs->removeFileArchive(fs->getFileArchiveCount() - 1);
|
os.close();
|
||||||
|
remove(fullpath.c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
total_read += bytes_read;
|
total_read += bytes_read;
|
||||||
}
|
}
|
||||||
|
|
||||||
fclose(targetfile);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
fs->removeFileArchive(fs->getFileArchiveCount() - 1);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
bool ReadFile(const std::string &path, std::string &out)
|
bool ReadFile(const std::string &path, std::string &out)
|
||||||
{
|
{
|
||||||
@ -829,7 +841,7 @@ bool ReadFile(const std::string &path, std::string &out)
|
|||||||
is.seekg(0);
|
is.seekg(0);
|
||||||
is.read(&out[0], size);
|
is.read(&out[0], size);
|
||||||
|
|
||||||
return true;
|
return !is.fail();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Rename(const std::string &from, const std::string &to)
|
bool Rename(const std::string &from, const std::string &to)
|
||||||
|
@ -24,12 +24,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include "exceptions.h"
|
#include "exceptions.h"
|
||||||
|
|
||||||
#ifdef _WIN32 // WINDOWS
|
#ifdef _WIN32
|
||||||
#define DIR_DELIM "\\"
|
#define DIR_DELIM "\\"
|
||||||
#define DIR_DELIM_CHAR '\\'
|
#define DIR_DELIM_CHAR '\\'
|
||||||
#define FILESYS_CASE_INSENSITIVE true
|
#define FILESYS_CASE_INSENSITIVE true
|
||||||
#define PATH_DELIM ";"
|
#define PATH_DELIM ";"
|
||||||
#else // POSIX
|
#else
|
||||||
#define DIR_DELIM "/"
|
#define DIR_DELIM "/"
|
||||||
#define DIR_DELIM_CHAR '/'
|
#define DIR_DELIM_CHAR '/'
|
||||||
#define FILESYS_CASE_INSENSITIVE false
|
#define FILESYS_CASE_INSENSITIVE false
|
||||||
@ -133,7 +133,9 @@ const char *GetFilenameFromPath(const char *path);
|
|||||||
|
|
||||||
bool safeWriteToFile(const std::string &path, const std::string &content);
|
bool safeWriteToFile(const std::string &path, const std::string &content);
|
||||||
|
|
||||||
|
#ifndef SERVER
|
||||||
bool extractZipFile(irr::io::IFileSystem *fs, const char *filename, const std::string &destination);
|
bool extractZipFile(irr::io::IFileSystem *fs, const char *filename, const std::string &destination);
|
||||||
|
#endif
|
||||||
|
|
||||||
bool ReadFile(const std::string &path, std::string &out);
|
bool ReadFile(const std::string &path, std::string &out);
|
||||||
|
|
||||||
|
@ -644,9 +644,9 @@ int ModApiMainMenu::l_extract_zip(lua_State *L)
|
|||||||
std::string absolute_destination = fs::RemoveRelativePathComponents(destination);
|
std::string absolute_destination = fs::RemoveRelativePathComponents(destination);
|
||||||
|
|
||||||
if (ModApiMainMenu::mayModifyPath(absolute_destination)) {
|
if (ModApiMainMenu::mayModifyPath(absolute_destination)) {
|
||||||
auto rendering_engine = getGuiEngine(L)->m_rendering_engine;
|
auto fs = RenderingEngine::get_raw_device()->getFileSystem();
|
||||||
fs::CreateAllDirs(absolute_destination);
|
bool ok = fs::extractZipFile(fs, zipfile, destination);
|
||||||
lua_pushboolean(L, fs::extractZipFile(rendering_engine->get_filesystem(), zipfile, destination));
|
lua_pushboolean(L, ok);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -916,7 +916,7 @@ void ModApiMainMenu::InitializeAsync(lua_State *L, int top)
|
|||||||
API_FCT(delete_dir);
|
API_FCT(delete_dir);
|
||||||
API_FCT(copy_dir);
|
API_FCT(copy_dir);
|
||||||
API_FCT(is_dir);
|
API_FCT(is_dir);
|
||||||
//API_FCT(extract_zip); //TODO remove dependency to GuiEngine
|
API_FCT(extract_zip);
|
||||||
API_FCT(may_modify_path);
|
API_FCT(may_modify_path);
|
||||||
API_FCT(download_file);
|
API_FCT(download_file);
|
||||||
API_FCT(get_min_supp_proto);
|
API_FCT(get_min_supp_proto);
|
||||||
|
Loading…
Reference in New Issue
Block a user