WiiUPluginLoaderBackend/source/plugin/PluginInformation.h

100 lines
3.2 KiB
C
Raw Normal View History

/****************************************************************************
* 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/>.
****************************************************************************/
#pragma once
2022-02-04 16:25:44 +01:00
#include "FunctionData.h"
#include "FunctionSymbolData.h"
#include "HookData.h"
#include "PluginMetaInformation.h"
#include "RelocationData.h"
#include "SectionInfo.h"
#include "utils/HeapMemoryFixedSize.h"
#include "utils/utils.h"
#include <map>
2022-02-04 16:25:44 +01:00
#include <memory>
#include <optional>
#include <ranges>
2022-02-04 16:25:44 +01:00
#include <set>
#include <string>
#include <vector>
2021-12-15 17:09:30 +01:00
struct FunctionSymbolDataComparator {
bool operator()(const FunctionSymbolData &lhs,
const FunctionSymbolData &rhs) const {
return lhs < rhs;
2021-12-15 17:09:30 +01:00
}
};
class PluginInformation {
public:
PluginInformation(const PluginInformation &) = delete;
PluginInformation(PluginInformation &&src);
PluginInformation &operator=(PluginInformation &&src);
void addHookData(HookData hook_data);
[[nodiscard]] const std::vector<HookData> &getHookDataList() const;
void addFunctionData(FunctionData function_data);
[[nodiscard]] const std::vector<FunctionData> &getFunctionDataList() const;
[[nodiscard]] std::vector<FunctionData> &getFunctionDataList();
void addRelocationData(RelocationData relocation_data);
[[nodiscard]] const std::vector<RelocationData> &getRelocationDataList() const;
void addFunctionSymbolData(const FunctionSymbolData &symbol_data);
void addSectionInfo(const SectionInfo &sectionInfo);
[[nodiscard]] const std::map<std::string, SectionInfo> &getSectionInfoList() const;
[[nodiscard]] std::optional<SectionInfo> getSectionInfo(const std::string &sectionName) const;
void setTrampolineId(uint8_t trampolineId);
[[nodiscard]] uint8_t getTrampolineId() const;
[[nodiscard]] const FunctionSymbolData *getNearestFunctionSymbolData(uint32_t address) const;
[[nodiscard]] const HeapMemoryFixedSize &getTextMemory() const;
[[nodiscard]] const HeapMemoryFixedSize &getDataMemory() const;
private:
PluginInformation() = default;
std::vector<HookData> mHookDataList;
std::vector<FunctionData> mFunctionDataList;
std::vector<RelocationData> mRelocationDataList;
std::set<FunctionSymbolData, FunctionSymbolDataComparator> mSymbolDataList;
std::map<std::string, SectionInfo> mSectionInfoList;
uint8_t mTrampolineId = 0;
HeapMemoryFixedSize mAllocatedTextMemoryAddress;
HeapMemoryFixedSize mAllocatedDataMemoryAddress;
friend class PluginInformationFactory;
};