1
0
mirror of synced 2024-11-14 11:07:43 +01:00
ImHex/plugins/builtin/include/content/providers/disk_provider.hpp

84 lines
2.4 KiB
C++
Raw Normal View History

2021-12-12 00:42:12 +01:00
#pragma once
#if !defined(OS_WEB)
2021-12-12 00:42:12 +01:00
#include <hex/providers/provider.hpp>
#include <set>
#include <string>
#include <vector>
namespace hex::plugin::builtin {
2021-12-12 00:42:12 +01:00
class DiskProvider : public hex::prv::Provider {
public:
2023-11-10 20:47:08 +01:00
DiskProvider() = default;
~DiskProvider() override = default;
2021-12-12 00:42:12 +01:00
[[nodiscard]] bool isAvailable() const override;
[[nodiscard]] bool isReadable() const override;
[[nodiscard]] bool isWritable() const override;
[[nodiscard]] bool isResizable() const override;
[[nodiscard]] bool isSavable() const override;
void readRaw(u64 offset, void *buffer, size_t size) override;
void writeRaw(u64 offset, const void *buffer, size_t size) override;
[[nodiscard]] u64 getActualSize() const override;
2021-12-12 00:42:12 +01:00
void setPath(const std::fs::path &path);
2021-12-12 00:42:12 +01:00
[[nodiscard]] bool open() override;
void close() override;
[[nodiscard]] std::string getName() const override;
[[nodiscard]] std::vector<Description> getDataDescription() const override;
2021-12-12 00:42:12 +01:00
[[nodiscard]] bool hasLoadInterface() const override { return true; }
bool drawLoadInterface() override;
void loadSettings(const nlohmann::json &settings) override;
2023-11-30 14:40:07 +01:00
[[nodiscard]] nlohmann::json storeSettings(nlohmann::json settings) const override;
[[nodiscard]] std::string getTypeName() const override {
return "hex.builtin.provider.disk";
}
[[nodiscard]] std::pair<Region, bool> getRegionValidity(u64 address) const override;
std::variant<std::string, i128> queryInformation(const std::string &category, const std::string &argument) override;
2022-08-14 14:45:18 +02:00
2021-12-12 00:42:12 +01:00
protected:
void reloadDrives();
struct DriveInfo {
std::string path;
std::string friendlyName;
auto operator<=>(const DriveInfo &other) const {
return this->path <=> other.path;
}
};
std::set<DriveInfo> m_availableDrives;
std::fs::path m_path;
std::string m_friendlyName;
bool m_elevated = false;
2021-12-12 00:42:12 +01:00
#if defined(OS_WINDOWS)
2023-11-30 10:22:15 +01:00
void *m_diskHandle = reinterpret_cast<void*>(-1);
#else
std::string m_pathBuffer;
int m_diskHandle = -1;
#endif
2021-12-12 00:42:12 +01:00
size_t m_diskSize = 0;
size_t m_sectorSize = 0;
2021-12-12 00:42:12 +01:00
u64 m_sectorBufferAddress = 0;
2021-12-12 00:42:12 +01:00
std::vector<u8> m_sectorBuffer;
bool m_readable = false;
bool m_writable = false;
};
}
#endif