2021-04-20 21:46:48 +02:00
|
|
|
#include "init/tasks.hpp"
|
|
|
|
|
|
|
|
#include <hex/helpers/net.hpp>
|
|
|
|
#include <hex/helpers/utils.hpp>
|
|
|
|
#include <hex/api/content_registry.hpp>
|
|
|
|
|
|
|
|
#include "views/view_hexeditor.hpp"
|
2021-08-28 21:51:33 +02:00
|
|
|
#include "views/view_pattern_editor.hpp"
|
2021-04-20 21:46:48 +02:00
|
|
|
#include "views/view_pattern_data.hpp"
|
|
|
|
#include "views/view_hashes.hpp"
|
|
|
|
#include "views/view_information.hpp"
|
|
|
|
#include "views/view_help.hpp"
|
|
|
|
#include "views/view_tools.hpp"
|
|
|
|
#include "views/view_strings.hpp"
|
|
|
|
#include "views/view_data_inspector.hpp"
|
|
|
|
#include "views/view_disassembler.hpp"
|
|
|
|
#include "views/view_bookmarks.hpp"
|
|
|
|
#include "views/view_patches.hpp"
|
|
|
|
#include "views/view_command_palette.hpp"
|
|
|
|
#include "views/view_settings.hpp"
|
|
|
|
#include "views/view_data_processor.hpp"
|
|
|
|
#include "views/view_yara.hpp"
|
2021-06-26 01:18:33 +02:00
|
|
|
#include "views/view_constants.hpp"
|
2021-04-20 21:46:48 +02:00
|
|
|
|
|
|
|
#include "helpers/plugin_manager.hpp"
|
|
|
|
|
|
|
|
#include <filesystem>
|
|
|
|
|
|
|
|
namespace hex::init {
|
|
|
|
|
|
|
|
static bool checkForUpdates() {
|
|
|
|
hex::Net net;
|
|
|
|
|
2021-08-28 00:45:59 +02:00
|
|
|
auto releases = net.getJson("https://api.github.com/repos/WerWolv/ImHex/releases/latest").get();
|
2021-04-20 21:46:48 +02:00
|
|
|
if (releases.code != 200)
|
2021-05-24 23:34:17 +02:00
|
|
|
return false;
|
2021-04-20 21:46:48 +02:00
|
|
|
|
2021-08-28 00:45:59 +02:00
|
|
|
if (!releases.body.contains("tag_name") || !releases.body["tag_name"].is_string())
|
2021-04-20 21:46:48 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
auto currVersion = "v" + std::string(IMHEX_VERSION).substr(0, 5);
|
2021-08-28 00:45:59 +02:00
|
|
|
auto latestVersion = releases.body["tag_name"].get<std::string_view>();
|
2021-04-20 21:46:48 +02:00
|
|
|
|
|
|
|
if (latestVersion != currVersion)
|
|
|
|
getInitArguments().push_back({ "update-available", latestVersion.data() });
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-08-22 21:11:01 +02:00
|
|
|
static bool downloadInformation() {
|
|
|
|
hex::Net net;
|
|
|
|
|
2021-08-28 00:45:59 +02:00
|
|
|
auto tip = net.getString("https://api.werwolv.net/imhex/tip").get();
|
2021-08-22 21:11:01 +02:00
|
|
|
if (tip.code != 200)
|
|
|
|
return false;
|
|
|
|
|
2021-08-28 00:45:59 +02:00
|
|
|
getInitArguments().push_back({ "tip-of-the-day", tip.body });
|
2021-08-22 21:11:01 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-20 21:46:48 +02:00
|
|
|
bool createDirectories() {
|
2021-05-21 23:46:36 +02:00
|
|
|
bool result = true;
|
|
|
|
|
|
|
|
std::array paths = {
|
2021-08-28 16:29:15 +02:00
|
|
|
ImHexPath::Patterns,
|
|
|
|
ImHexPath::PatternsInclude,
|
|
|
|
ImHexPath::Magic,
|
|
|
|
ImHexPath::Plugins,
|
|
|
|
ImHexPath::Resources,
|
|
|
|
ImHexPath::Config,
|
|
|
|
ImHexPath::Constants,
|
|
|
|
ImHexPath::Yara,
|
|
|
|
ImHexPath::Python
|
2021-05-21 23:46:36 +02:00
|
|
|
};
|
2021-04-20 21:46:48 +02:00
|
|
|
|
2021-05-21 23:46:36 +02:00
|
|
|
for (auto path : paths) {
|
|
|
|
for (auto &folder : hex::getPath(path)) {
|
|
|
|
try {
|
|
|
|
std::filesystem::create_directories(folder);
|
|
|
|
} catch (...) {
|
|
|
|
result = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-20 21:46:48 +02:00
|
|
|
|
2021-05-21 23:46:36 +02:00
|
|
|
if (!result)
|
|
|
|
getInitArguments().push_back({ "folder-creation-error", { } });
|
|
|
|
|
|
|
|
return result;
|
2021-04-20 21:46:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool loadDefaultViews() {
|
|
|
|
|
|
|
|
ContentRegistry::Views::add<ViewHexEditor>();
|
2021-08-28 21:51:33 +02:00
|
|
|
ContentRegistry::Views::add<ViewPatternEditor>();
|
2021-04-20 21:46:48 +02:00
|
|
|
ContentRegistry::Views::add<ViewPatternData>();
|
|
|
|
ContentRegistry::Views::add<ViewDataInspector>();
|
|
|
|
ContentRegistry::Views::add<ViewHashes>();
|
|
|
|
ContentRegistry::Views::add<ViewInformation>();
|
|
|
|
ContentRegistry::Views::add<ViewStrings>();
|
|
|
|
ContentRegistry::Views::add<ViewDisassembler>();
|
|
|
|
ContentRegistry::Views::add<ViewBookmarks>();
|
|
|
|
ContentRegistry::Views::add<ViewPatches>();
|
|
|
|
ContentRegistry::Views::add<ViewTools>();
|
|
|
|
ContentRegistry::Views::add<ViewCommandPalette>();
|
|
|
|
ContentRegistry::Views::add<ViewHelp>();
|
|
|
|
ContentRegistry::Views::add<ViewSettings>();
|
|
|
|
ContentRegistry::Views::add<ViewDataProcessor>();
|
|
|
|
ContentRegistry::Views::add<ViewYara>();
|
2021-06-26 01:18:33 +02:00
|
|
|
ContentRegistry::Views::add<ViewConstants>();
|
2021-04-20 21:46:48 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-07-31 17:11:10 +02:00
|
|
|
bool deleteSharedData() {
|
|
|
|
SharedData::deferredCalls.clear();
|
|
|
|
|
|
|
|
delete SharedData::currentProvider;
|
|
|
|
SharedData::currentProvider = nullptr;
|
|
|
|
|
|
|
|
SharedData::settingsEntries.clear();
|
|
|
|
SharedData::settingsJson.clear();
|
|
|
|
|
|
|
|
SharedData::commandPaletteCommands.clear();
|
|
|
|
SharedData::patternLanguageFunctions.clear();
|
|
|
|
|
2021-04-20 21:46:48 +02:00
|
|
|
for (auto &view : SharedData::views)
|
|
|
|
delete view;
|
|
|
|
SharedData::views.clear();
|
|
|
|
|
2021-07-31 17:11:10 +02:00
|
|
|
SharedData::toolsEntries.clear();
|
|
|
|
|
|
|
|
SharedData::dataInspectorEntries.clear();
|
|
|
|
|
|
|
|
SharedData::bookmarkEntries.clear();
|
|
|
|
|
|
|
|
for (auto &pattern : SharedData::patternData)
|
|
|
|
delete pattern;
|
|
|
|
SharedData::patternData.clear();
|
|
|
|
|
|
|
|
SharedData::languageNames.clear();
|
|
|
|
SharedData::languageDefinitions.clear();
|
|
|
|
SharedData::loadedLanguageStrings.clear();
|
|
|
|
|
|
|
|
SharedData::welcomeScreenEntries.clear();
|
|
|
|
SharedData::footerItems.clear();
|
|
|
|
|
|
|
|
SharedData::dataProcessorNodes.clear();
|
|
|
|
|
|
|
|
SharedData::recentFilePaths.clear();
|
|
|
|
|
|
|
|
SharedData::clearVariables();
|
|
|
|
|
2021-04-20 21:46:48 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool loadPlugins() {
|
|
|
|
for (const auto &dir : hex::getPath(ImHexPath::Plugins)) {
|
|
|
|
PluginManager::load(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PluginManager::getPlugins().empty()) {
|
|
|
|
getInitArguments().push_back({ "no-plugins", { } });
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto &plugin : PluginManager::getPlugins()) {
|
|
|
|
plugin.initializePlugin();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool unloadPlugins() {
|
|
|
|
PluginManager::unload();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool loadSettings() {
|
2021-05-21 23:46:36 +02:00
|
|
|
try {
|
|
|
|
ContentRegistry::Settings::load();
|
|
|
|
} catch (...) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-20 21:46:48 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool storeSettings() {
|
2021-05-21 23:46:36 +02:00
|
|
|
try {
|
|
|
|
ContentRegistry::Settings::store();
|
|
|
|
} catch (...) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-20 21:46:48 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Task> getInitTasks() {
|
|
|
|
return {
|
|
|
|
{ "Checking for updates...", checkForUpdates },
|
2021-08-22 21:11:01 +02:00
|
|
|
{ "Downloading information...", downloadInformation },
|
2021-04-20 21:46:48 +02:00
|
|
|
{ "Creating directories...", createDirectories },
|
|
|
|
{ "Loading default views...", loadDefaultViews },
|
|
|
|
{ "Loading plugins...", loadPlugins },
|
2021-05-29 21:51:00 +02:00
|
|
|
{ "Loading settings...", loadSettings },
|
2021-04-20 21:46:48 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Task> getExitTasks() {
|
|
|
|
return {
|
|
|
|
{ "Saving settings...", storeSettings },
|
2021-07-31 17:11:10 +02:00
|
|
|
{ "Cleaning up shared data...", deleteSharedData },
|
2021-05-29 21:51:00 +02:00
|
|
|
{ "Unloading plugins...", unloadPlugins },
|
2021-04-20 21:46:48 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Argument>& getInitArguments() {
|
|
|
|
static std::vector<Argument> initArguments;
|
|
|
|
|
|
|
|
return initArguments;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|