2020-04-29 18:02:36 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2018 Maschell
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
2024-11-27 20:44:36 +01:00
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
#include "PluginDataFactory.h"
|
2023-08-16 10:08:44 +02:00
|
|
|
#include "NotificationsUtils.h"
|
2024-08-04 16:42:24 +02:00
|
|
|
#include "PluginLoadWrapper.h"
|
2022-05-14 14:00:20 +02:00
|
|
|
#include "fs/FSUtils.h"
|
|
|
|
#include "utils/StringTools.h"
|
|
|
|
#include "utils/logger.h"
|
2024-11-27 20:44:36 +01:00
|
|
|
|
2022-02-04 16:25:44 +01:00
|
|
|
#include <memory>
|
2024-11-27 20:44:36 +01:00
|
|
|
#include <set>
|
|
|
|
#include <sys/dirent.h>
|
2020-04-29 18:02:36 +02:00
|
|
|
|
2024-08-09 16:41:29 +02:00
|
|
|
std::vector<PluginLoadWrapper> PluginDataFactory::loadDir(const std::string_view path, const std::set<std::string> &inactivePluginsFilenames) {
|
2024-08-04 16:42:24 +02:00
|
|
|
std::vector<PluginLoadWrapper> result;
|
2020-04-29 18:02:36 +02:00
|
|
|
|
2024-08-09 16:41:29 +02:00
|
|
|
for (const auto &full_file_path : getPluginFilePaths(path)) {
|
|
|
|
std::string fileName = StringTools::FullpathToFilename(full_file_path.c_str());
|
2020-04-29 18:02:36 +02:00
|
|
|
|
2022-09-24 12:59:00 +02:00
|
|
|
DEBUG_FUNCTION_LINE("Loading plugin: %s", full_file_path.c_str());
|
2024-08-04 16:42:24 +02:00
|
|
|
|
2024-11-27 20:44:36 +01:00
|
|
|
if (auto pluginData = load(full_file_path)) {
|
2024-08-04 20:59:07 +02:00
|
|
|
bool shouldBeLoadedAndLinked = true;
|
2024-08-09 16:41:29 +02:00
|
|
|
|
|
|
|
if (inactivePluginsFilenames.contains(fileName)) {
|
2024-08-04 20:59:07 +02:00
|
|
|
shouldBeLoadedAndLinked = false;
|
2024-08-04 16:42:24 +02:00
|
|
|
}
|
|
|
|
result.emplace_back(std::move(pluginData), shouldBeLoadedAndLinked);
|
2020-04-29 18:02:36 +02:00
|
|
|
} else {
|
2023-08-16 10:08:44 +02:00
|
|
|
auto errMsg = string_format("Failed to load plugin: %s", full_file_path.c_str());
|
|
|
|
DEBUG_FUNCTION_LINE_ERR("%s", errMsg.c_str());
|
|
|
|
DisplayErrorNotificationMessage(errMsg, 15.0f);
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
}
|
2022-05-14 14:00:20 +02:00
|
|
|
|
2020-04-29 18:02:36 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2024-11-27 20:44:36 +01:00
|
|
|
std::unique_ptr<PluginData> PluginDataFactory::load(const std::string_view path) {
|
2023-11-04 15:32:45 +01:00
|
|
|
std::vector<uint8_t> buffer;
|
2024-11-27 20:44:36 +01:00
|
|
|
if (FSUtils::LoadFileToMem(path, buffer) < 0) {
|
|
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to load %s into memory", path.data());
|
2023-11-04 15:32:45 +01:00
|
|
|
return nullptr;
|
2020-12-28 14:46:30 +01:00
|
|
|
}
|
2020-04-29 18:02:36 +02:00
|
|
|
|
2021-02-19 19:41:04 +01:00
|
|
|
DEBUG_FUNCTION_LINE_VERBOSE("Loaded file!");
|
2024-11-27 20:44:36 +01:00
|
|
|
return load(std::move(buffer), path);
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
std::unique_ptr<PluginData> PluginDataFactory::load(std::vector<uint8_t> &&buffer, std::string_view source) {
|
2020-05-03 12:30:15 +02:00
|
|
|
if (buffer.empty()) {
|
2023-11-04 15:32:45 +01:00
|
|
|
return nullptr;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
return make_unique_nothrow<PluginData>(std::move(buffer), source);
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|