WUMSLoader/source/module/RelocationData.h

70 lines
1.9 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
#include <string>
#include "ImportRPLInformation.h"
class RelocationData {
public:
2020-05-17 19:05:51 +02:00
RelocationData(char type, size_t offset, int32_t addend, void *destination, std::string name, const ImportRPLInformation &rplInfo) : rplInfo(rplInfo) {
2020-04-28 14:43:07 +02:00
this->type = type;
this->offset = offset;
this->addend = addend;
this->destination = destination;
this->name = name;
}
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;
}
2021-09-18 11:55:01 +02:00
[[nodiscard]] std::string getName() const {
2020-04-28 14:43:07 +02:00
return name;
}
2021-09-18 11:55:01 +02:00
[[nodiscard]] ImportRPLInformation getImportRPLInformation() const {
2020-04-28 14:43:07 +02:00
return rplInfo;
}
2021-09-18 11:55:01 +02:00
[[nodiscard]] std::string toString() const;
2020-05-17 19:05:51 +02:00
2020-04-28 14:43:07 +02:00
private:
char type;
size_t offset;
int32_t addend;
void *destination;
std::string name;
const ImportRPLInformation rplInfo;
2020-04-28 14:43:07 +02:00
};