2014-06-25 22:15:35 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-06-25 22:15:35 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2014-12-15 04:51:38 +00:00
|
|
|
#include "core/file_sys/archive_backend.h"
|
2014-10-23 03:20:01 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
#include "core/hle/result.h"
|
2014-06-25 22:15:35 +00:00
|
|
|
|
2014-12-14 07:55:11 +00:00
|
|
|
namespace Service {
|
|
|
|
namespace FS {
|
2014-06-25 22:15:35 +00:00
|
|
|
|
2014-12-15 04:44:04 +00:00
|
|
|
/// Supported archive types
|
|
|
|
enum class ArchiveIdCode : u32 {
|
|
|
|
RomFS = 0x00000003,
|
|
|
|
SaveData = 0x00000004,
|
|
|
|
ExtSaveData = 0x00000006,
|
|
|
|
SharedExtSaveData = 0x00000007,
|
|
|
|
SystemSaveData = 0x00000008,
|
|
|
|
SDMC = 0x00000009,
|
|
|
|
SDMCWriteOnly = 0x0000000A,
|
|
|
|
};
|
|
|
|
|
2014-12-15 08:41:02 +00:00
|
|
|
typedef u64 ArchiveHandle;
|
|
|
|
|
2014-06-25 22:15:35 +00:00
|
|
|
/**
|
2014-06-27 20:18:56 +00:00
|
|
|
* Opens an archive
|
|
|
|
* @param id_code IdCode of the archive to open
|
2014-10-23 03:20:01 +00:00
|
|
|
* @return Handle to the opened archive
|
2014-06-25 22:15:35 +00:00
|
|
|
*/
|
2014-12-15 08:41:02 +00:00
|
|
|
ResultVal<ArchiveHandle> OpenArchive(ArchiveIdCode id_code);
|
2014-06-27 20:18:56 +00:00
|
|
|
|
2014-09-14 11:52:52 +00:00
|
|
|
/**
|
|
|
|
* Closes an archive
|
|
|
|
* @param id_code IdCode of the archive to open
|
|
|
|
*/
|
2014-12-15 08:41:02 +00:00
|
|
|
ResultCode CloseArchive(ArchiveHandle handle);
|
2014-09-14 11:52:52 +00:00
|
|
|
|
2014-06-27 20:18:56 +00:00
|
|
|
/**
|
|
|
|
* Creates an Archive
|
|
|
|
* @param backend File system backend interface to the archive
|
2014-12-15 04:44:04 +00:00
|
|
|
* @param id_code Id code used to access this type of archive
|
2014-06-27 20:18:56 +00:00
|
|
|
*/
|
2014-12-15 08:41:02 +00:00
|
|
|
ResultCode CreateArchive(std::unique_ptr<FileSys::ArchiveBackend>&& backend, ArchiveIdCode id_code);
|
2014-06-25 22:15:35 +00:00
|
|
|
|
2014-09-11 22:45:40 +00: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
|
2014-10-23 03:20:01 +00:00
|
|
|
* @return Handle to the opened File object
|
2014-09-11 22:45:40 +00:00
|
|
|
*/
|
2014-12-15 08:41:02 +00:00
|
|
|
ResultVal<Handle> OpenFileFromArchive(ArchiveHandle archive_handle, const FileSys::Path& path, const FileSys::Mode mode);
|
2014-10-29 05:52:56 +00:00
|
|
|
|
2014-11-11 18:37:26 +00: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 08:41:02 +00:00
|
|
|
ResultCode DeleteFileFromArchive(ArchiveHandle archive_handle, const FileSys::Path& path);
|
2014-11-11 18:37:26 +00:00
|
|
|
|
2014-11-24 07:20:04 +00: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 08:41:02 +00:00
|
|
|
ResultCode RenameFileBetweenArchives(ArchiveHandle src_archive_handle, const FileSys::Path& src_path,
|
|
|
|
ArchiveHandle dest_archive_handle, const FileSys::Path& dest_path);
|
2014-11-24 07:20:04 +00:00
|
|
|
|
2014-11-11 18:37:26 +00: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 08:41:02 +00:00
|
|
|
ResultCode DeleteDirectoryFromArchive(ArchiveHandle archive_handle, const FileSys::Path& path);
|
2014-11-11 18:37:26 +00:00
|
|
|
|
2014-12-20 15:43:50 +00: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
|
|
|
|
*/
|
|
|
|
ResultCode CreateFileInArchive(Handle archive_handle, const FileSys::Path& path, u32 file_size);
|
|
|
|
|
2014-10-29 05:52:56 +00: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 08:41:02 +00:00
|
|
|
ResultCode CreateDirectoryFromArchive(ArchiveHandle archive_handle, const FileSys::Path& path);
|
2014-09-11 22:45:40 +00:00
|
|
|
|
2014-11-24 09:12:58 +00: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 08:41:02 +00:00
|
|
|
ResultCode RenameDirectoryBetweenArchives(ArchiveHandle src_archive_handle, const FileSys::Path& src_path,
|
|
|
|
ArchiveHandle dest_archive_handle, const FileSys::Path& dest_path);
|
2014-11-24 09:12:58 +00:00
|
|
|
|
2014-09-11 22:48:04 +00: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
|
2014-10-23 03:20:01 +00:00
|
|
|
* @return Handle to the opened File object
|
2014-09-11 22:48:04 +00:00
|
|
|
*/
|
2014-12-15 08:41:02 +00:00
|
|
|
ResultVal<Handle> OpenDirectoryFromArchive(ArchiveHandle archive_handle, const FileSys::Path& path);
|
2014-09-11 22:48:04 +00:00
|
|
|
|
2014-12-16 05:33:41 +00:00
|
|
|
/**
|
|
|
|
* Creates a blank SaveData archive.
|
|
|
|
* @return ResultCode 0 on success or the corresponding code on error
|
|
|
|
*/
|
|
|
|
ResultCode FormatSaveData();
|
|
|
|
|
2014-07-04 17:38:12 +00:00
|
|
|
/// Initialize archives
|
|
|
|
void ArchiveInit();
|
|
|
|
|
|
|
|
/// Shutdown archives
|
|
|
|
void ArchiveShutdown();
|
|
|
|
|
2014-12-14 07:55:11 +00:00
|
|
|
} // namespace FS
|
|
|
|
} // namespace Service
|