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>
|
2017-06-04 08:33:14 +00:00
|
|
|
#include <optional>
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2015-06-13 10:51:24 +00:00
|
|
|
#include "DiscIO/Volume.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2015-07-28 14:56:25 +00:00
|
|
|
// TODO: eww
|
|
|
|
class FileInfoGCWii;
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
// file info of an FST entry
|
2015-07-28 14:56:25 +00:00
|
|
|
class FileInfo
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
2015-07-28 14:56:25 +00:00
|
|
|
public:
|
|
|
|
virtual ~FileInfo();
|
|
|
|
|
|
|
|
// Not guaranteed to return a meaningful value for directories
|
|
|
|
virtual u64 GetOffset() const = 0;
|
|
|
|
// Not guaranteed to return a meaningful value for directories
|
|
|
|
virtual u64 GetSize() const = 0;
|
|
|
|
virtual bool IsDirectory() const = 0;
|
2015-07-29 14:42:29 +00:00
|
|
|
virtual const std::string& GetName() const = 0;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
class FileSystem
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-06-06 09:49:01 +00:00
|
|
|
FileSystem(const Volume* _rVolume, const Partition& partition);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
virtual ~FileSystem();
|
2016-06-24 08:43:46 +00:00
|
|
|
virtual bool IsValid() const = 0;
|
2015-07-28 14:56:25 +00:00
|
|
|
// TODO: Should only return FileInfo, not FileInfoGCWii
|
|
|
|
virtual const std::vector<FileInfoGCWii>& GetFileList() = 0;
|
2016-06-24 08:43:46 +00:00
|
|
|
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;
|
2015-07-29 14:42:29 +00:00
|
|
|
virtual std::string GetPath(u64 _Address) = 0;
|
|
|
|
virtual std::string GetPathFromFSTOffset(size_t file_info_offset) = 0;
|
2017-06-04 08:33:14 +00:00
|
|
|
virtual std::optional<u64> GetBootDOLOffset() const = 0;
|
|
|
|
virtual std::optional<u32> GetBootDOLSize(u64 dol_offset) const = 0;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-06-13 10:51:24 +00:00
|
|
|
virtual const Partition GetPartition() const { return m_partition; }
|
2008-12-08 04:46:09 +00:00
|
|
|
protected:
|
2017-06-06 09:49:01 +00:00
|
|
|
const Volume* const m_rVolume;
|
2015-06-13 10:51:24 +00:00
|
|
|
const Partition m_partition;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
std::unique_ptr<FileSystem> CreateFileSystem(const Volume* volume, const Partition& partition);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
} // namespace
|