2013-04-17 21:09:55 -06:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-20 17:47:53 -07:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstring>
|
2014-03-12 13:33:41 -06:00
|
|
|
#include <string>
|
2014-02-20 17:47:53 -07:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2008-12-07 21:46:09 -07:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
|
2014-02-20 17:47:53 -07:00
|
|
|
class IVolume;
|
|
|
|
|
2008-12-07 21:46:09 -07:00
|
|
|
// file info of an FST entry
|
|
|
|
struct SFileInfo
|
|
|
|
{
|
2015-01-11 13:46:22 -07:00
|
|
|
u64 m_NameOffset = 0u;
|
|
|
|
u64 m_Offset = 0u;
|
|
|
|
u64 m_FileSize = 0u;
|
2014-03-14 21:38:14 -06:00
|
|
|
std::string m_FullPath;
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-03-14 21:38:14 -06:00
|
|
|
bool IsDirectory() const { return (m_NameOffset & 0xFF000000) != 0; }
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2015-01-11 13:46:22 -07:00
|
|
|
SFileInfo(u64 name_offset, u64 offset, u64 filesize) :
|
|
|
|
m_NameOffset(name_offset),
|
|
|
|
m_Offset(offset),
|
|
|
|
m_FileSize(filesize)
|
|
|
|
{ }
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2015-01-11 16:59:50 -07:00
|
|
|
SFileInfo (SFileInfo const&) = default;
|
2015-01-11 13:46:22 -07:00
|
|
|
SFileInfo () = default;
|
2008-12-07 21:46:09 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class IFileSystem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
IFileSystem(const IVolume *_rVolume);
|
|
|
|
|
|
|
|
virtual ~IFileSystem();
|
2010-06-03 14:37:32 -06:00
|
|
|
virtual bool IsValid() const = 0;
|
|
|
|
virtual size_t GetFileList(std::vector<const SFileInfo *> &_rFilenames) = 0;
|
2014-03-12 13:33:41 -06:00
|
|
|
virtual u64 GetFileSize(const std::string& _rFullPath) = 0;
|
|
|
|
virtual u64 ReadFile(const std::string& _rFullPath, u8* _pBuffer, size_t _MaxBufferSize) = 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;
|
2014-03-14 21:38:14 -06:00
|
|
|
virtual const std::string GetFileName(u64 _Address) = 0;
|
2012-05-05 02:38:00 -06:00
|
|
|
virtual bool GetBootDOL(u8* &buffer, u32 DolSize) const = 0;
|
|
|
|
virtual u32 GetBootDOLSize() const = 0;
|
2008-12-07 21:46:09 -07:00
|
|
|
|
|
|
|
virtual const IVolume *GetVolume() const { return m_rVolume; }
|
|
|
|
protected:
|
|
|
|
const IVolume *m_rVolume;
|
|
|
|
};
|
|
|
|
|
|
|
|
IFileSystem* CreateFileSystem(const IVolume *_rVolume);
|
|
|
|
|
|
|
|
} // namespace
|