1
0
mirror of synced 2024-11-30 18:34:29 +01:00
ImHex/tests/algorithms/include/test_provider.hpp

60 lines
1.8 KiB
C++
Raw Normal View History

2021-09-11 14:41:18 +02:00
#include <hex/providers/provider.hpp>
2021-09-11 14:41:18 +02:00
#include <hex/helpers/file.hpp>
#include <hex/helpers/logger.hpp>
#include <stdexcept>
2021-09-11 14:41:18 +02:00
namespace hex::test {
using namespace hex::prv;
class TestProvider : public prv::Provider {
public:
TestProvider(std::vector<u8> data) : Provider(){
this->setData(data);
2021-09-11 14:41:18 +02:00
}
~TestProvider() override = default;
2021-09-21 02:48:41 +02:00
[[nodiscard]] bool isAvailable() const override { return true; }
[[nodiscard]] bool isReadable() const override { return true; }
[[nodiscard]] bool isWritable() const override { return false; }
[[nodiscard]] bool isResizable() const override { return false; }
[[nodiscard]] bool isSavable() const override { return false; }
void setData(const std::vector<u8> &data) {
if (data.empty()) {
hex::log::fatal("No data provided");
throw std::runtime_error("");
}
this->m_data = data;
}
2021-09-21 02:48:41 +02:00
[[nodiscard]] std::string getName() const override {
return "";
}
2021-09-11 14:41:18 +02:00
2021-09-21 02:48:41 +02:00
[[nodiscard]] std::vector<std::pair<std::string, std::string>> getDataInformation() const override {
2021-09-11 14:41:18 +02:00
return { };
}
void readRaw(u64 offset, void *buffer, size_t size) override {
if (offset + size >= this->m_data.size()) return;
std::memcpy(buffer, &this->m_data[offset], size);
2021-09-11 14:41:18 +02:00
}
void writeRaw(u64 offset, const void *buffer, size_t size) override {
if (offset + size >= this->m_data.size()) return;
std::memcpy(&this->m_data[offset], buffer, size);
2021-09-11 14:41:18 +02:00
}
2021-09-21 02:48:41 +02:00
size_t getActualSize() const override {
return this->m_data.size();
2021-09-11 14:41:18 +02:00
}
private:
std::vector<u8> m_data;
2021-09-11 14:41:18 +02:00
};
}