2022-08-08 21:23:52 +02:00
|
|
|
#include <hex/api/project_file_manager.hpp>
|
|
|
|
|
|
|
|
#include <hex/helpers/tar.hpp>
|
|
|
|
#include <hex/helpers/fmt.hpp>
|
|
|
|
#include <hex/helpers/logger.hpp>
|
|
|
|
|
|
|
|
#include <hex/providers/provider.hpp>
|
|
|
|
|
2023-03-12 18:27:29 +01:00
|
|
|
#include <wolv/utils/guards.hpp>
|
|
|
|
#include <wolv/io/fs.hpp>
|
|
|
|
|
2022-08-08 21:23:52 +02:00
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
std::vector<ProjectFile::Handler> ProjectFile::s_handlers;
|
|
|
|
std::vector<ProjectFile::ProviderHandler> ProjectFile::s_providerHandlers;
|
|
|
|
|
|
|
|
std::fs::path ProjectFile::s_currProjectPath;
|
|
|
|
|
2023-06-21 20:07:36 +02:00
|
|
|
std::function<bool(const std::fs::path&)> ProjectFile::s_loadProjectFunction;
|
2023-07-01 12:32:28 +02:00
|
|
|
std::function<bool(std::optional<std::fs::path>, bool)> ProjectFile::s_storeProjectFunction;
|
2022-09-20 15:33:36 +02:00
|
|
|
|
2023-06-21 20:07:36 +02:00
|
|
|
void ProjectFile::setProjectFunctions(
|
|
|
|
const std::function<bool(const std::fs::path&)> &loadFun,
|
2023-07-01 12:32:28 +02:00
|
|
|
const std::function<bool(std::optional<std::fs::path>, bool)> &storeFun
|
2023-06-21 20:07:36 +02:00
|
|
|
) {
|
|
|
|
ProjectFile::s_loadProjectFunction = loadFun;
|
|
|
|
ProjectFile::s_storeProjectFunction = storeFun;
|
|
|
|
}
|
2023-01-11 23:31:25 +01:00
|
|
|
|
2023-06-21 20:07:36 +02:00
|
|
|
bool ProjectFile::load(const std::fs::path &filePath) {
|
|
|
|
return s_loadProjectFunction(filePath);
|
2022-08-08 21:23:52 +02:00
|
|
|
}
|
|
|
|
|
2023-07-01 12:32:28 +02:00
|
|
|
bool ProjectFile::store(std::optional<std::fs::path> filePath, bool updateLocation) {
|
|
|
|
return s_storeProjectFunction(filePath, updateLocation);
|
2022-08-08 21:23:52 +02:00
|
|
|
}
|
|
|
|
|
2022-11-25 10:47:11 +01:00
|
|
|
bool ProjectFile::hasPath() {
|
|
|
|
return !ProjectFile::s_currProjectPath.empty();
|
|
|
|
}
|
|
|
|
|
2023-01-07 17:31:22 +01:00
|
|
|
void ProjectFile::clearPath() {
|
|
|
|
ProjectFile::s_currProjectPath.clear();
|
|
|
|
}
|
2023-02-12 17:52:09 +01:00
|
|
|
|
2023-01-07 17:31:22 +01:00
|
|
|
std::fs::path ProjectFile::getPath() {
|
|
|
|
return ProjectFile::s_currProjectPath;
|
|
|
|
}
|
|
|
|
|
2023-02-12 17:52:09 +01:00
|
|
|
void ProjectFile::setPath(const std::fs::path &path) {
|
|
|
|
ProjectFile::s_currProjectPath = path;
|
|
|
|
}
|
|
|
|
|
2022-08-08 21:23:52 +02:00
|
|
|
}
|