/** * Copyright (C) 2021 Saturneric * * This file is part of GpgFrontend. * * GpgFrontend 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. * * GpgFrontend 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 GpgFrontend. If not, see . * * The initial version of the source code is inherited from * the gpg4usb project, which is under GPL-3.0-or-later. * * All the source code of GpgFrontend was modified and released by * Saturneric starting on May 12, 2021. * * SPDX-License-Identifier: GPL-3.0-or-later * */ #pragma once #include #include "core/module/Event.h" namespace GpgFrontend::Thread { class TaskRunner; } namespace GpgFrontend::Module { using TaskRunnerPtr = std::shared_ptr; class Event; class Module; class GlobalModuleContext; class ModuleManager; using EventRefrernce = std::shared_ptr; using ModuleIdentifier = std::string; using ModulePtr = std::shared_ptr; using ModuleMangerPtr = std::shared_ptr; using GMCPtr = std::shared_ptr; using Namespace = std::string; using Key = std::string; using LPCallback = std::function; class GPGFRONTEND_CORE_EXPORT ModuleManager : public QObject { Q_OBJECT public: ~ModuleManager() override; static auto GetInstance() -> ModuleMangerPtr; void RegisterModule(ModulePtr); auto IsModuleActivated(ModuleIdentifier) -> bool; void TriggerEvent(EventRefrernce); void ActiveModule(ModuleIdentifier); void DeactiveModule(ModuleIdentifier); auto GetTaskRunner(ModuleIdentifier) -> std::optional; auto UpsertRTValue(Namespace, Key, std::any) -> bool; auto RetrieveRTValue(Namespace, Key) -> std::optional; auto ListenRTPublish(QObject*, Namespace, Key, LPCallback) -> bool; auto ListRTChildKeys(const std::string&, const std::string&) -> std::vector; private: class Impl; std::unique_ptr p_; static ModuleMangerPtr g_; ModuleManager(); }; template void RegisterModule(Args&&... args) { ModuleManager::GetInstance()->RegisterModule( GpgFrontend::SecureCreateSharedObject(std::forward(args)...)); } template void RegisterAndActivateModule(Args&&... args) { auto manager = ModuleManager::GetInstance(); auto module = GpgFrontend::SecureCreateSharedObject(std::forward(args)...); manager->RegisterModule(module); manager->ActiveModule(module->GetModuleIdentifier()); } template void TriggerEvent(const EventIdentifier& event_id, Args&&... args, Event::EventCallback e_cb = nullptr) { ModuleManager::GetInstance()->TriggerEvent( std::move(MakeEvent(event_id, std::forward(args)..., e_cb))); } /** * @brief * * @return true * @return false */ auto GPGFRONTEND_CORE_EXPORT IsModuleAcivate(ModuleIdentifier) -> bool; /** * @brief * * @param namespace_ * @param key * @param value * @return true * @return false */ auto GPGFRONTEND_CORE_EXPORT UpsertRTValue(const std::string& namespace_, const std::string& key, const std::any& value) -> bool; /** * @brief * * @return true * @return false */ auto GPGFRONTEND_CORE_EXPORT ListenRTPublishEvent(QObject*, Namespace, Key, LPCallback) -> bool; /** * @brief * * @param namespace_ * @param key * @return std::vector */ auto GPGFRONTEND_CORE_EXPORT ListRTChildKeys(const std::string& namespace_, const std::string& key) -> std::vector; template auto RetrieveRTValueTyped(const std::string& namespace_, const std::string& key) -> std::optional { auto any_value = ModuleManager::GetInstance()->RetrieveRTValue(namespace_, key); if (any_value && any_value->type() == typeid(T)) { return std::any_cast(*any_value); } return std::nullopt; } template auto RetrieveRTValueTypedOrDefault(const std::string& namespace_, const std::string& key, const T& defaultValue) -> T { auto any_value = ModuleManager::GetInstance()->RetrieveRTValue(namespace_, key); if (any_value && any_value->type() == typeid(T)) { return std::any_cast(*any_value); } return defaultValue; } } // namespace GpgFrontend::Module