CustomRPXLoader/src/module/RelocationData.h

70 lines
2.0 KiB
C
Raw Normal View History

2020-04-27 13:32:37 +02:00
/****************************************************************************
2020-08-23 12:59:52 +02:00
* Copyright (C) 2018-2020 Maschell
2020-04-27 13:32:37 +02:00
*
* 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 "ImportRPLInformation.h"
2022-02-02 19:42:35 +01:00
#include <string>
2020-04-27 13:32:37 +02:00
class RelocationData {
public:
RelocationData(char type, size_t offset, int32_t addend, void *destination, const std::string &name, const ImportRPLInformation &rplInfo) : rplInfo(rplInfo) {
this->type = type;
this->offset = offset;
this->addend = addend;
2020-04-27 13:32:37 +02:00
this->destination = destination;
this->name = name;
2020-04-27 13:32:37 +02:00
}
2021-09-18 12:10:58 +02:00
~RelocationData() = default;
2020-04-27 13:32:37 +02:00
2021-09-18 12:10:58 +02:00
[[nodiscard]] char getType() const {
2020-04-27 13:32:37 +02:00
return type;
}
2021-09-18 12:10:58 +02:00
[[nodiscard]] size_t getOffset() const {
2020-04-27 13:32:37 +02:00
return offset;
}
2021-09-18 12:10:58 +02:00
[[nodiscard]] int32_t getAddend() const {
2020-04-27 13:32:37 +02:00
return addend;
}
2021-09-18 12:10:58 +02:00
[[nodiscard]] void *getDestination() const {
2020-04-27 13:32:37 +02:00
return destination;
}
2021-09-18 12:10:58 +02:00
[[nodiscard]] std::string getName() const {
2020-04-27 13:32:37 +02:00
return name;
}
2021-09-18 12:10:58 +02:00
[[nodiscard]] ImportRPLInformation getImportRPLInformation() const {
2020-04-27 13:32:37 +02:00
return rplInfo;
}
2021-09-18 12:10:58 +02:00
[[nodiscard]] std::string toString() const;
2020-08-23 10:44:14 +02:00
2020-04-27 13:32:37 +02:00
private:
char type;
size_t offset;
int32_t addend;
void *destination;
std::string name;
const ImportRPLInformation rplInfo;
2020-04-27 13:32:37 +02:00
};