mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
82 lines
No EOL
1.9 KiB
C++
82 lines
No EOL
1.9 KiB
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
#include <filesystem>
|
|
#include <utility>
|
|
|
|
#ifdef _MSC_VER
|
|
// 64 bit offsets for MSVC
|
|
#define fseeko _fseeki64
|
|
#define ftello _ftelli64
|
|
#define fileno _fileno
|
|
#endif
|
|
|
|
#ifdef _CRT_SECURE_NO_WARNINGS
|
|
#undef _CRT_SECURE_NO_WARNINGS
|
|
#endif
|
|
|
|
class IOFile {
|
|
FILE* handle = nullptr;
|
|
|
|
public:
|
|
bool isOpen() {
|
|
return handle != nullptr;
|
|
}
|
|
|
|
bool open(const std::filesystem::path& path, const char* permissions = "rb") {
|
|
const auto str = path.string(); // For some reason converting paths directly with c_str() doesn't work
|
|
return open(str.c_str(), permissions);
|
|
}
|
|
|
|
bool open(const char* filename, const char* permissions = "rb") {
|
|
handle = std::fopen(filename, permissions);
|
|
return isOpen();
|
|
}
|
|
|
|
void close() {
|
|
if (isOpen()) {
|
|
fclose(handle);
|
|
handle = nullptr;
|
|
}
|
|
}
|
|
|
|
std::pair<bool, std::size_t> read(void* data, std::size_t length, std::size_t dataSize) {
|
|
if (!isOpen()) {
|
|
return { false, std::numeric_limits<std::size_t>::max() };
|
|
}
|
|
|
|
if (length == 0) return { true, 0 };
|
|
return { true, std::fread(data, dataSize, length, handle) };
|
|
}
|
|
|
|
auto readBytes(void* data, std::size_t count) {
|
|
return read(data, count, sizeof(std::uint8_t));
|
|
}
|
|
|
|
std::uint64_t size() {
|
|
if (!isOpen()) return 0;
|
|
|
|
std::uint64_t pos = ftello(handle);
|
|
if (fseeko(handle, 0, SEEK_END) != 0) {
|
|
return 0;
|
|
}
|
|
|
|
std::uint64_t size = ftello(handle);
|
|
if ((size != pos) && (fseeko(handle, pos, SEEK_SET) != 0)) {
|
|
return 0;
|
|
}
|
|
|
|
return size;
|
|
}
|
|
|
|
bool seek(std::int64_t offset, int origin = 0) {
|
|
if (!isOpen() || fseeko(handle, offset, origin) != 0)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool rewind() {
|
|
return seek(0, 0);
|
|
}
|
|
}; |