2020-04-29 18:02:36 +02:00
|
|
|
/****************************************************************************
|
2022-05-14 14:00:20 +02:00
|
|
|
* Copyright (C) 2020 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/>.
|
|
|
|
****************************************************************************/
|
2020-04-29 18:02:36 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "PluginData.h"
|
|
|
|
#include "PluginInformation.h"
|
2022-02-04 16:25:44 +01:00
|
|
|
#include "PluginMetaInformation.h"
|
|
|
|
#include <memory>
|
2022-05-14 14:00:20 +02:00
|
|
|
#include <utility>
|
2020-04-29 18:02:36 +02:00
|
|
|
|
|
|
|
class PluginContainer {
|
|
|
|
public:
|
2022-05-14 14:00:20 +02:00
|
|
|
PluginContainer(std::unique_ptr<PluginMetaInformation> metaInformation, std::unique_ptr<PluginInformation> pluginInformation, std::shared_ptr<PluginData> pluginData)
|
2023-11-04 15:32:45 +01:00
|
|
|
: mMetaInformation(std::move(metaInformation)),
|
|
|
|
mPluginInformation(std::move(pluginInformation)),
|
|
|
|
mPluginData(std::move(pluginData)) {
|
2020-05-17 20:43:04 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
[[nodiscard]] const PluginMetaInformation &getMetaInformation() const {
|
|
|
|
return *this->mMetaInformation;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
[[nodiscard]] const PluginInformation &getPluginInformation() const {
|
|
|
|
return *this->mPluginInformation;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
[[nodiscard]] std::shared_ptr<PluginData> getPluginDataCopy() const {
|
|
|
|
return mPluginData;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
uint32_t getHandle() {
|
|
|
|
return (uint32_t) this;
|
2020-04-29 18:02:36 +02:00
|
|
|
}
|
|
|
|
|
2023-11-04 15:32:45 +01:00
|
|
|
private:
|
|
|
|
const std::unique_ptr<PluginMetaInformation> mMetaInformation;
|
|
|
|
const std::unique_ptr<PluginInformation> mPluginInformation;
|
|
|
|
const std::shared_ptr<PluginData> mPluginData;
|
2020-04-29 18:02:36 +02:00
|
|
|
};
|