85 lines
2.5 KiB
C++
85 lines
2.5 KiB
C++
#include "helpers/project_file_handler.hpp"
|
|
|
|
#include <fstream>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
namespace hex {
|
|
|
|
void to_json(json& j, const hex::Bookmark& b) {
|
|
j = json{ { "address", b.region.address }, { "size", b.region.size }, { "name", b.name.data() }, { "comment", b.comment.data() } };
|
|
}
|
|
|
|
void from_json(const json& j, hex::Bookmark& b) {
|
|
std::string name, comment;
|
|
|
|
j.at("address").get_to(b.region.address);
|
|
j.at("size").get_to(b.region.size);
|
|
j.at("name").get_to(name);
|
|
j.at("comment").get_to(comment);
|
|
|
|
std::copy(name.begin(), name.end(), std::back_inserter(b.name));
|
|
std::copy(comment.begin(), comment.end(), std::back_inserter(b.comment));
|
|
}
|
|
|
|
|
|
bool ProjectFile::load(std::string_view filePath) {
|
|
ProjectFile::s_hasUnsavedChanged = false;
|
|
|
|
json projectFileData;
|
|
|
|
try {
|
|
std::ifstream projectFile(filePath.data());
|
|
projectFile >> projectFileData;
|
|
|
|
ProjectFile::s_filePath = projectFileData["filePath"];
|
|
ProjectFile::s_pattern = projectFileData["pattern"];
|
|
ProjectFile::s_patches = projectFileData["patches"].get<Patches>();
|
|
|
|
for (auto &element : projectFileData["bookmarks"].items()) {
|
|
ProjectFile::s_bookmarks.push_back(element.value().get<Bookmark>());
|
|
}
|
|
|
|
} catch (json::exception &e) {
|
|
return false;
|
|
} catch (std::ofstream::failure &e) {
|
|
return false;
|
|
}
|
|
|
|
ProjectFile::s_currProjectFilePath = filePath;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool ProjectFile::store(std::string_view filePath) {
|
|
ProjectFile::s_hasUnsavedChanged = false;
|
|
|
|
json projectFileData;
|
|
|
|
if (filePath.empty())
|
|
filePath = ProjectFile::s_currProjectFilePath;
|
|
|
|
try {
|
|
projectFileData["filePath"] = ProjectFile::s_filePath;
|
|
projectFileData["pattern"] = ProjectFile::s_pattern;
|
|
projectFileData["patches"] = ProjectFile::s_patches;
|
|
|
|
for (auto &bookmark : ProjectFile::s_bookmarks) {
|
|
projectFileData["bookmarks"].push_back(bookmark);
|
|
}
|
|
|
|
std::ofstream projectFile(filePath.data(), std::fstream::trunc);
|
|
projectFile << projectFileData;
|
|
} catch (json::exception &e) {
|
|
return false;
|
|
} catch (std::ifstream::failure &e) {
|
|
return false;
|
|
}
|
|
|
|
ProjectFile::s_currProjectFilePath = filePath;
|
|
|
|
return true;
|
|
}
|
|
|
|
} |