2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-12-07 04:15:51 +00:00
|
|
|
#include <memory>
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2014-02-21 00:47:53 +00:00
|
|
|
class IVolume;
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
// file info of an FST entry
|
|
|
|
struct SFileInfo
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
u64 m_NameOffset = 0u;
|
|
|
|
u64 m_Offset = 0u;
|
|
|
|
u64 m_FileSize = 0u;
|
|
|
|
std::string m_FullPath;
|
|
|
|
|
|
|
|
bool IsDirectory() const { return (m_NameOffset & 0xFF000000) != 0; }
|
|
|
|
SFileInfo(u64 name_offset, u64 offset, u64 filesize)
|
|
|
|
: m_NameOffset(name_offset), m_Offset(offset), m_FileSize(filesize)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SFileInfo(SFileInfo const&) = default;
|
|
|
|
SFileInfo() = default;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IFileSystem
|
|
|
|
{
|
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
IFileSystem(const IVolume* _rVolume);
|
|
|
|
|
|
|
|
virtual ~IFileSystem();
|
|
|
|
virtual bool IsValid() const = 0;
|
|
|
|
virtual const std::vector<SFileInfo>& GetFileList() = 0;
|
|
|
|
virtual u64 GetFileSize(const std::string& _rFullPath) = 0;
|
|
|
|
virtual u64 ReadFile(const std::string& _rFullPath, u8* _pBuffer, u64 _MaxBufferSize,
|
|
|
|
u64 _OffsetInFile = 0) = 0;
|
|
|
|
virtual bool ExportFile(const std::string& _rFullPath, const std::string& _rExportFilename) = 0;
|
|
|
|
virtual bool ExportApploader(const std::string& _rExportFolder) const = 0;
|
|
|
|
virtual bool ExportDOL(const std::string& _rExportFolder) const = 0;
|
2016-09-18 16:31:40 +00:00
|
|
|
virtual std::string GetFileName(u64 _Address) = 0;
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual u64 GetBootDOLOffset() const = 0;
|
|
|
|
virtual u32 GetBootDOLSize(u64 dol_offset) const = 0;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
protected:
|
2016-06-24 08:43:46 +00:00
|
|
|
const IVolume* m_rVolume;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2015-12-07 04:15:51 +00:00
|
|
|
std::unique_ptr<IFileSystem> CreateFileSystem(const IVolume* volume);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
} // namespace
|