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
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstring>
|
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
|
|
|
|
{
|
2015-01-11 20:46:22 +00:00
|
|
|
u64 m_NameOffset = 0u;
|
|
|
|
u64 m_Offset = 0u;
|
|
|
|
u64 m_FileSize = 0u;
|
2014-03-15 03:38:14 +00:00
|
|
|
std::string m_FullPath;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-03-15 03:38:14 +00:00
|
|
|
bool IsDirectory() const { return (m_NameOffset & 0xFF000000) != 0; }
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-01-11 20:46:22 +00:00
|
|
|
SFileInfo(u64 name_offset, u64 offset, u64 filesize) :
|
|
|
|
m_NameOffset(name_offset),
|
|
|
|
m_Offset(offset),
|
|
|
|
m_FileSize(filesize)
|
|
|
|
{ }
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-01-11 23:59:50 +00:00
|
|
|
SFileInfo (SFileInfo const&) = default;
|
2015-01-11 20:46:22 +00:00
|
|
|
SFileInfo () = default;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IFileSystem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
IFileSystem(const IVolume *_rVolume);
|
|
|
|
|
|
|
|
virtual ~IFileSystem();
|
2010-06-03 20:37:32 +00:00
|
|
|
virtual bool IsValid() const = 0;
|
2015-04-28 10:48:05 +00:00
|
|
|
virtual const std::vector<SFileInfo>& GetFileList() = 0;
|
2014-03-12 19:33:41 +00:00
|
|
|
virtual u64 GetFileSize(const std::string& _rFullPath) = 0;
|
2015-04-28 14:47:03 +00:00
|
|
|
virtual u64 ReadFile(const std::string& _rFullPath, u8* _pBuffer, u64 _MaxBufferSize, u64 _OffsetInFile = 0) = 0;
|
2014-03-12 19:33:41 +00:00
|
|
|
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;
|
2014-03-15 03:38:14 +00:00
|
|
|
virtual const std::string GetFileName(u64 _Address) = 0;
|
2012-05-05 08:38:00 +00:00
|
|
|
virtual u32 GetBootDOLSize() const = 0;
|
2015-10-17 18:52:26 +00:00
|
|
|
virtual u32 GetBootDOLSize(u64 dol_offset) const = 0;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
const IVolume *m_rVolume;
|
|
|
|
};
|
|
|
|
|
|
|
|
IFileSystem* CreateFileSystem(const IVolume *_rVolume);
|
|
|
|
|
|
|
|
} // namespace
|