WUMSLoader/wumsloader/src/module/RelocationData.h

70 lines
2.0 KiB
C
Raw Normal View History

2020-04-28 14:43:07 +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/>.
****************************************************************************/
#pragma once
2022-02-04 21:44:03 +01:00
#include "ImportRPLInformation.h"
2021-12-07 18:23:18 +01:00
#include <memory>
2022-02-04 21:44:03 +01:00
#include <string>
2021-12-07 18:23:18 +01:00
#include <utility>
2020-04-28 14:43:07 +02:00
class RelocationData {
public:
2021-12-07 18:23:18 +01:00
RelocationData(char type, size_t offset, int32_t addend, void *destination, std::string name, std::shared_ptr<ImportRPLInformation> rplInfo) : rplInfo(std::move(rplInfo)) {
2022-02-04 21:44:03 +01:00
this->type = type;
this->offset = offset;
this->addend = addend;
2020-04-28 14:43:07 +02:00
this->destination = destination;
2022-02-04 21:44:03 +01:00
this->name = std::move(name);
2020-04-28 14:43:07 +02:00
}
2021-09-18 11:55:01 +02:00
~RelocationData() = default;
2020-04-28 14:43:07 +02:00
2021-09-18 11:55:01 +02:00
[[nodiscard]] char getType() const {
2020-04-28 14:43:07 +02:00
return type;
}
2021-09-18 11:55:01 +02:00
[[nodiscard]] size_t getOffset() const {
2020-04-28 14:43:07 +02:00
return offset;
}
2021-09-18 11:55:01 +02:00
[[nodiscard]] int32_t getAddend() const {
2020-04-28 14:43:07 +02:00
return addend;
}
2021-09-18 11:55:01 +02:00
[[nodiscard]] void *getDestination() const {
2020-04-28 14:43:07 +02:00
return destination;
}
[[nodiscard]] const std::string &getName() const {
2020-04-28 14:43:07 +02:00
return name;
}
[[nodiscard]] const std::shared_ptr<ImportRPLInformation> &getImportRPLInformation() const {
2020-04-28 14:43:07 +02:00
return rplInfo;
}
private:
char type;
size_t offset;
int32_t addend;
void *destination;
std::string name;
2021-12-07 18:23:18 +01:00
const std::shared_ptr<ImportRPLInformation> rplInfo;
2020-04-28 14:43:07 +02:00
};