2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 23:09:55 -04:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-12-06 23:15:51 -05:00
|
|
|
#include <memory>
|
2014-03-12 15:33:41 -04:00
|
|
|
#include <string>
|
2014-02-21 01:47:53 +01:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
|
2014-02-21 01:47:53 +01:00
|
|
|
class IVolume;
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
// file info of an FST entry
|
|
|
|
struct SFileInfo
|
|
|
|
{
|
2015-01-11 12:46:22 -08:00
|
|
|
u64 m_NameOffset = 0u;
|
|
|
|
u64 m_Offset = 0u;
|
|
|
|
u64 m_FileSize = 0u;
|
2014-03-14 23:38:14 -04:00
|
|
|
std::string m_FullPath;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-03-14 23:38:14 -04:00
|
|
|
bool IsDirectory() const { return (m_NameOffset & 0xFF000000) != 0; }
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-01-11 12:46:22 -08: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 15:59:50 -08:00
|
|
|
SFileInfo (SFileInfo const&) = default;
|
2015-01-11 12:46:22 -08: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 12:48:05 +02:00
|
|
|
virtual const std::vector<SFileInfo>& GetFileList() = 0;
|
2014-03-12 15:33:41 -04:00
|
|
|
virtual u64 GetFileSize(const std::string& _rFullPath) = 0;
|
2015-04-28 16:47:03 +02:00
|
|
|
virtual u64 ReadFile(const std::string& _rFullPath, u8* _pBuffer, u64 _MaxBufferSize, u64 _OffsetInFile = 0) = 0;
|
2014-03-12 15:33:41 -04: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-14 23:38:14 -04:00
|
|
|
virtual const std::string GetFileName(u64 _Address) = 0;
|
2015-10-03 13:24:13 +02:00
|
|
|
virtual u64 GetBootDOLOffset() const = 0;
|
2015-10-17 20:52:26 +02:00
|
|
|
virtual u32 GetBootDOLSize(u64 dol_offset) const = 0;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
const IVolume *m_rVolume;
|
|
|
|
};
|
|
|
|
|
2015-12-06 23:15:51 -05:00
|
|
|
std::unique_ptr<IFileSystem> CreateFileSystem(const IVolume* volume);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
} // namespace
|