2014-06-26 00:15:35 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-06-26 00:15:35 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2014-12-15 05:51:38 +01:00
|
|
|
#include "core/file_sys/archive_backend.h"
|
2014-10-23 05:20:01 +02:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2015-02-07 19:06:48 +01:00
|
|
|
#include "core/hle/kernel/session.h"
|
2014-10-23 05:20:01 +02:00
|
|
|
#include "core/hle/result.h"
|
2014-06-26 00:15:35 +02:00
|
|
|
|
2015-01-04 02:46:05 +01:00
|
|
|
/// The unique system identifier hash, also known as ID0
|
2015-01-04 15:10:27 +01:00
|
|
|
extern const std::string SYSTEM_ID;
|
2015-01-04 02:46:05 +01:00
|
|
|
/// The scrambled SD card CID, also known as ID1
|
2015-01-04 15:10:27 +01:00
|
|
|
extern const std::string SDCARD_ID;
|
2015-01-04 02:46:05 +01:00
|
|
|
|
2015-01-30 15:32:46 +01:00
|
|
|
namespace Kernel {
|
|
|
|
class Session;
|
|
|
|
}
|
|
|
|
|
2014-12-14 08:55:11 +01:00
|
|
|
namespace Service {
|
|
|
|
namespace FS {
|
2014-06-26 00:15:35 +02:00
|
|
|
|
2014-12-15 05:44:04 +01:00
|
|
|
/// Supported archive types
|
|
|
|
enum class ArchiveIdCode : u32 {
|
|
|
|
RomFS = 0x00000003,
|
|
|
|
SaveData = 0x00000004,
|
|
|
|
ExtSaveData = 0x00000006,
|
|
|
|
SharedExtSaveData = 0x00000007,
|
|
|
|
SystemSaveData = 0x00000008,
|
|
|
|
SDMC = 0x00000009,
|
|
|
|
SDMCWriteOnly = 0x0000000A,
|
2015-01-01 01:36:50 +01:00
|
|
|
SaveDataCheck = 0x2345678A,
|
2014-12-15 05:44:04 +01:00
|
|
|
};
|
|
|
|
|
2014-12-15 09:41:02 +01:00
|
|
|
typedef u64 ArchiveHandle;
|
|
|
|
|
2015-02-07 19:06:48 +01:00
|
|
|
class File : public Kernel::Session {
|
|
|
|
public:
|
|
|
|
File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path)
|
|
|
|
: path(path), priority(0), backend(std::move(backend)) {
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string GetName() const override { return "Path: " + path.DebugStr(); }
|
|
|
|
|
|
|
|
FileSys::Path path; ///< Path of the file
|
|
|
|
u32 priority; ///< Priority of the file. TODO(Subv): Find out what this means
|
|
|
|
std::unique_ptr<FileSys::FileBackend> backend; ///< File backend interface
|
|
|
|
|
|
|
|
ResultVal<bool> SyncRequest() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Directory : public Kernel::Session {
|
|
|
|
public:
|
|
|
|
Directory(std::unique_ptr<FileSys::DirectoryBackend>&& backend, const FileSys::Path& path)
|
|
|
|
: path(path), backend(std::move(backend)) {
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string GetName() const override { return "Directory: " + path.DebugStr(); }
|
|
|
|
|
|
|
|
FileSys::Path path; ///< Path of the directory
|
|
|
|
std::unique_ptr<FileSys::DirectoryBackend> backend; ///< File backend interface
|
|
|
|
|
|
|
|
ResultVal<bool> SyncRequest() override;
|
|
|
|
};
|
|
|
|
|
2014-06-26 00:15:35 +02:00
|
|
|
/**
|
2014-06-27 22:18:56 +02:00
|
|
|
* Opens an archive
|
|
|
|
* @param id_code IdCode of the archive to open
|
2014-12-29 19:04:37 +01:00
|
|
|
* @param archive_path Path to the archive, used with Binary paths
|
2014-10-23 05:20:01 +02:00
|
|
|
* @return Handle to the opened archive
|
2014-06-26 00:15:35 +02:00
|
|
|
*/
|
2014-12-29 19:04:37 +01:00
|
|
|
ResultVal<ArchiveHandle> OpenArchive(ArchiveIdCode id_code, FileSys::Path& archive_path);
|
2014-06-27 22:18:56 +02:00
|
|
|
|
2014-09-14 13:52:52 +02:00
|
|
|
/**
|
|
|
|
* Closes an archive
|
2015-01-20 19:52:44 +01:00
|
|
|
* @param handle Handle to the archive to close
|
2014-09-14 13:52:52 +02:00
|
|
|
*/
|
2014-12-15 09:41:02 +01:00
|
|
|
ResultCode CloseArchive(ArchiveHandle handle);
|
2014-09-14 13:52:52 +02:00
|
|
|
|
2014-06-27 22:18:56 +02:00
|
|
|
/**
|
2015-02-06 14:53:14 +01:00
|
|
|
* Registers an Archive type, instances of which can later be opened using its IdCode.
|
2014-06-27 22:18:56 +02:00
|
|
|
* @param backend File system backend interface to the archive
|
2014-12-15 05:44:04 +01:00
|
|
|
* @param id_code Id code used to access this type of archive
|
2014-06-27 22:18:56 +02:00
|
|
|
*/
|
2015-02-06 14:53:14 +01:00
|
|
|
ResultCode RegisterArchiveType(std::unique_ptr<FileSys::ArchiveFactory>&& factory, ArchiveIdCode id_code);
|
2014-06-26 00:15:35 +02:00
|
|
|
|
2014-09-12 00:45:40 +02:00
|
|
|
/**
|
|
|
|
* Open a File from an Archive
|
|
|
|
* @param archive_handle Handle to an open Archive object
|
|
|
|
* @param path Path to the File inside of the Archive
|
|
|
|
* @param mode Mode under which to open the File
|
2015-01-30 15:32:46 +01:00
|
|
|
* @return The opened File object as a Session
|
2014-09-12 00:45:40 +02:00
|
|
|
*/
|
2015-02-07 19:06:48 +01:00
|
|
|
ResultVal<Kernel::SharedPtr<File>> OpenFileFromArchive(ArchiveHandle archive_handle,
|
2015-01-30 15:32:46 +01:00
|
|
|
const FileSys::Path& path, const FileSys::Mode mode);
|
2014-10-29 06:52:56 +01:00
|
|
|
|
2014-11-11 19:37:26 +01:00
|
|
|
/**
|
|
|
|
* Delete a File from an Archive
|
|
|
|
* @param archive_handle Handle to an open Archive object
|
|
|
|
* @param path Path to the File inside of the Archive
|
|
|
|
* @return Whether deletion succeeded
|
|
|
|
*/
|
2014-12-15 09:41:02 +01:00
|
|
|
ResultCode DeleteFileFromArchive(ArchiveHandle archive_handle, const FileSys::Path& path);
|
2014-11-11 19:37:26 +01:00
|
|
|
|
2014-11-24 08:20:04 +01:00
|
|
|
/**
|
|
|
|
* Rename a File between two Archives
|
|
|
|
* @param src_archive_handle Handle to the source Archive object
|
|
|
|
* @param src_path Path to the File inside of the source Archive
|
|
|
|
* @param dest_archive_handle Handle to the destination Archive object
|
|
|
|
* @param dest_path Path to the File inside of the destination Archive
|
|
|
|
* @return Whether rename succeeded
|
|
|
|
*/
|
2014-12-15 09:41:02 +01:00
|
|
|
ResultCode RenameFileBetweenArchives(ArchiveHandle src_archive_handle, const FileSys::Path& src_path,
|
|
|
|
ArchiveHandle dest_archive_handle, const FileSys::Path& dest_path);
|
2014-11-24 08:20:04 +01:00
|
|
|
|
2014-11-11 19:37:26 +01:00
|
|
|
/**
|
|
|
|
* Delete a Directory from an Archive
|
|
|
|
* @param archive_handle Handle to an open Archive object
|
|
|
|
* @param path Path to the Directory inside of the Archive
|
|
|
|
* @return Whether deletion succeeded
|
|
|
|
*/
|
2014-12-15 09:41:02 +01:00
|
|
|
ResultCode DeleteDirectoryFromArchive(ArchiveHandle archive_handle, const FileSys::Path& path);
|
2014-11-11 19:37:26 +01:00
|
|
|
|
2014-12-20 16:43:50 +01:00
|
|
|
/**
|
|
|
|
* Create a File in an Archive
|
|
|
|
* @param archive_handle Handle to an open Archive object
|
|
|
|
* @param path Path to the File inside of the Archive
|
|
|
|
* @param file_size The size of the new file, filled with zeroes
|
|
|
|
* @return File creation result code
|
|
|
|
*/
|
2015-01-01 18:39:27 +01:00
|
|
|
ResultCode CreateFileInArchive(ArchiveHandle archive_handle, const FileSys::Path& path, u32 file_size);
|
2014-12-20 16:43:50 +01:00
|
|
|
|
2014-10-29 06:52:56 +01:00
|
|
|
/**
|
|
|
|
* Create a Directory from an Archive
|
|
|
|
* @param archive_handle Handle to an open Archive object
|
|
|
|
* @param path Path to the Directory inside of the Archive
|
|
|
|
* @return Whether creation of directory succeeded
|
|
|
|
*/
|
2014-12-15 09:41:02 +01:00
|
|
|
ResultCode CreateDirectoryFromArchive(ArchiveHandle archive_handle, const FileSys::Path& path);
|
2014-09-12 00:45:40 +02:00
|
|
|
|
2014-11-24 10:12:58 +01:00
|
|
|
/**
|
|
|
|
* Rename a Directory between two Archives
|
|
|
|
* @param src_archive_handle Handle to the source Archive object
|
|
|
|
* @param src_path Path to the Directory inside of the source Archive
|
|
|
|
* @param dest_archive_handle Handle to the destination Archive object
|
|
|
|
* @param dest_path Path to the Directory inside of the destination Archive
|
|
|
|
* @return Whether rename succeeded
|
|
|
|
*/
|
2014-12-15 09:41:02 +01:00
|
|
|
ResultCode RenameDirectoryBetweenArchives(ArchiveHandle src_archive_handle, const FileSys::Path& src_path,
|
|
|
|
ArchiveHandle dest_archive_handle, const FileSys::Path& dest_path);
|
2014-11-24 10:12:58 +01:00
|
|
|
|
2014-09-12 00:48:04 +02:00
|
|
|
/**
|
|
|
|
* Open a Directory from an Archive
|
|
|
|
* @param archive_handle Handle to an open Archive object
|
|
|
|
* @param path Path to the Directory inside of the Archive
|
2015-01-30 15:32:46 +01:00
|
|
|
* @return The opened Directory object as a Session
|
2014-09-12 00:48:04 +02:00
|
|
|
*/
|
2015-02-07 19:06:48 +01:00
|
|
|
ResultVal<Kernel::SharedPtr<Directory>> OpenDirectoryFromArchive(ArchiveHandle archive_handle,
|
2015-01-30 15:32:46 +01:00
|
|
|
const FileSys::Path& path);
|
2014-09-12 00:48:04 +02:00
|
|
|
|
2014-12-16 06:33:41 +01:00
|
|
|
/**
|
|
|
|
* Creates a blank SaveData archive.
|
|
|
|
* @return ResultCode 0 on success or the corresponding code on error
|
|
|
|
*/
|
|
|
|
ResultCode FormatSaveData();
|
|
|
|
|
2015-01-14 05:56:00 +01:00
|
|
|
/**
|
|
|
|
* Creates a blank SharedExtSaveData archive for the specified extdata ID
|
|
|
|
* @param high The high word of the extdata id to create
|
|
|
|
* @param low The low word of the extdata id to create
|
|
|
|
* @return ResultCode 0 on success or the corresponding code on error
|
|
|
|
*/
|
|
|
|
ResultCode CreateExtSaveData(u32 high, u32 low);
|
|
|
|
|
2014-07-04 19:38:12 +02:00
|
|
|
/// Initialize archives
|
|
|
|
void ArchiveInit();
|
|
|
|
|
|
|
|
/// Shutdown archives
|
|
|
|
void ArchiveShutdown();
|
|
|
|
|
2014-12-14 08:55:11 +01:00
|
|
|
} // namespace FS
|
|
|
|
} // namespace Service
|