1
0
mirror of synced 2024-12-03 11:47:20 +01:00
ImHex/plugins/libimhex/include/hex/helpers/file.hpp

54 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
#include <hex.hpp>
#include <cstdio>
#include <string>
#include <vector>
#if defined(OS_MACOS)
#define off64_t off_t
#define fopen64 fopen
#define fseeko64 fseek
#define ftello64 ftell
#endif
namespace hex {
class File {
public:
enum class Mode {
Read,
Write,
Create
};
explicit File(const std::string &path, Mode mode);
2021-09-11 14:41:18 +02:00
File();
2021-09-12 20:26:39 +02:00
File(const File&) = delete;
File(File &&other) noexcept;
~File();
2021-09-21 02:48:41 +02:00
bool isValid() const { return this->m_file != nullptr; }
void seek(u64 offset);
2021-09-11 14:41:18 +02:00
size_t readBuffer(u8 *buffer, size_t size);
std::vector<u8> readBytes(size_t numBytes = 0);
std::string readString(size_t numBytes = 0);
2021-09-11 14:41:18 +02:00
void write(const u8 *buffer, size_t size);
void write(const std::vector<u8> &bytes);
void write(const std::string &string);
2021-09-21 02:48:41 +02:00
size_t getSize() const;
void setSize(u64 size);
auto getHandle() { return this->m_file; }
private:
FILE *m_file;
};
}