| 
									
										
										
										
											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 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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 10:43:46 +02: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 12:31:40 -04:00
										 |  |  |   virtual std::string GetFileName(u64 _Address) = 0; | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02: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 10:43:46 +02:00
										 |  |  |   const IVolume* m_rVolume; | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-06 23:15:51 -05:00
										 |  |  | std::unique_ptr<IFileSystem> CreateFileSystem(const IVolume* volume); | 
					
						
							| 
									
										
										
										
											2008-12-08 04:46:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | }  // namespace
 |