metaforce/Runtime/CDvdFile.hpp

61 lines
2.2 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2015-08-22 23:42:29 -07:00
#include "RetroTypes.hpp"
#include "athena/FileReader.hpp"
2015-08-22 23:42:29 -07:00
2016-03-06 19:12:32 -08:00
#include <thread>
#include <mutex>
#include <condition_variable>
2018-12-07 21:30:43 -08:00
namespace urde {
2015-08-22 23:42:29 -07:00
2018-12-07 21:30:43 -08:00
enum class ESeekOrigin { Begin = 0, Cur = 1, End = 2 };
2015-08-22 23:42:29 -07:00
struct DVDFileInfo;
class IDvdRequest;
2015-08-22 23:42:29 -07:00
2018-12-07 21:30:43 -08:00
class CDvdFile {
friend class CResLoader;
friend class CFileDvdRequest;
static hecl::ProjectPath m_DvdRoot;
2019-03-09 00:58:27 -08:00
static std::unordered_map<std::string, std::string> m_caseInsensitiveMap;
2018-12-07 21:30:43 -08:00
static std::thread m_WorkerThread;
static std::mutex m_WorkerMutex;
static std::condition_variable m_WorkerCV;
static std::mutex m_WaitMutex;
static std::atomic_bool m_WorkerRun;
static std::vector<std::shared_ptr<IDvdRequest>> m_RequestQueue;
static void WorkerProc();
std::string x18_path;
std::shared_ptr<athena::io::FileReader> m_reader;
2016-03-06 19:12:32 -08:00
2019-03-09 00:58:27 -08:00
static hecl::ProjectPath ResolvePath(std::string_view path);
static void RecursiveBuildCaseInsensitiveMap(const hecl::ProjectPath& path, std::string::size_type prefixLen);
2015-08-22 23:42:29 -07:00
public:
2018-12-07 21:30:43 -08:00
static void Initialize(const hecl::ProjectPath& path);
static void Shutdown();
CDvdFile(std::string_view path)
: x18_path(path)
2019-03-09 00:58:27 -08:00
, m_reader(std::make_shared<athena::io::FileReader>(ResolvePath(path).getAbsolutePath())) {}
2018-12-07 21:30:43 -08:00
operator bool() const { return m_reader->isOpen(); }
void UpdateFilePos(int pos) { m_reader->seek(pos, athena::SeekOrigin::Begin); }
2019-03-09 00:58:27 -08:00
static bool FileExists(std::string_view path) { return ResolvePath(path).isFile(); }
2018-12-07 21:30:43 -08:00
void CloseFile() { m_reader->close(); }
std::shared_ptr<IDvdRequest> AsyncSeekRead(void* buf, u32 len, ESeekOrigin whence, int off,
std::function<void(u32)>&& cb = {});
u32 SyncSeekRead(void* buf, u32 len, ESeekOrigin whence, int offset) {
m_reader->seek(offset, athena::SeekOrigin(whence));
return m_reader->readBytesToBuf(buf, len);
}
std::shared_ptr<IDvdRequest> AsyncRead(void* buf, u32 len, std::function<void(u32)>&& cb = {}) {
return AsyncSeekRead(buf, len, ESeekOrigin::Cur, 0, std::move(cb));
}
u32 SyncRead(void* buf, u32 len) { return m_reader->readBytesToBuf(buf, len); }
u64 Length() { return m_reader->length(); }
std::string_view GetPath() const { return x18_path; }
2015-08-22 23:42:29 -07:00
};
2018-12-07 21:30:43 -08:00
} // namespace urde