|
|
@@ -159,7 +159,49 @@ void DeleteFile(Service::Interface* self) {
|
|
|
DEBUG_LOG(KERNEL, "type=%d size=%d data=%s",
|
|
|
filename_type, filename_size, file_path.DebugStr().c_str());
|
|
|
|
|
|
- cmd_buff[1] = Kernel::DeleteFileFromArchive(archive_handle, file_path);
|
|
|
+ cmd_buff[1] = Kernel::DeleteFileFromArchive(archive_handle, file_path).raw;
|
|
|
+
|
|
|
+ DEBUG_LOG(KERNEL, "called");
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * FS_User::RenameFile service function
|
|
|
+ * Inputs:
|
|
|
+ * 2 : Source archive handle lower word
|
|
|
+ * 3 : Source archive handle upper word
|
|
|
+ * 4 : Source file path type
|
|
|
+ * 5 : Source file path size
|
|
|
+ * 6 : Dest archive handle lower word
|
|
|
+ * 7 : Dest archive handle upper word
|
|
|
+ * 8 : Dest file path type
|
|
|
+ * 9 : Dest file path size
|
|
|
+ * 11: Source file path string data
|
|
|
+ * 13: Dest file path string
|
|
|
+ * Outputs:
|
|
|
+ * 1 : Result of function, 0 on success, otherwise error code
|
|
|
+ */
|
|
|
+void RenameFile(Service::Interface* self) {
|
|
|
+ u32* cmd_buff = Service::GetCommandBuffer();
|
|
|
+
|
|
|
+ // TODO(Link Mauve): cmd_buff[2] and cmd_buff[6], aka archive handle lower word, aren't used according to
|
|
|
+ // 3dmoo's or ctrulib's implementations. Triple check if it's really the case.
|
|
|
+ Handle src_archive_handle = static_cast<Handle>(cmd_buff[3]);
|
|
|
+ auto src_filename_type = static_cast<FileSys::LowPathType>(cmd_buff[4]);
|
|
|
+ u32 src_filename_size = cmd_buff[5];
|
|
|
+ Handle dest_archive_handle = static_cast<Handle>(cmd_buff[7]);
|
|
|
+ auto dest_filename_type = static_cast<FileSys::LowPathType>(cmd_buff[8]);
|
|
|
+ u32 dest_filename_size = cmd_buff[9];
|
|
|
+ u32 src_filename_ptr = cmd_buff[11];
|
|
|
+ u32 dest_filename_ptr = cmd_buff[13];
|
|
|
+
|
|
|
+ FileSys::Path src_file_path(src_filename_type, src_filename_size, src_filename_ptr);
|
|
|
+ FileSys::Path dest_file_path(dest_filename_type, dest_filename_size, dest_filename_ptr);
|
|
|
+
|
|
|
+ DEBUG_LOG(KERNEL, "src_type=%d src_size=%d src_data=%s dest_type=%d dest_size=%d dest_data=%s",
|
|
|
+ src_filename_type, src_filename_size, src_file_path.DebugStr().c_str(),
|
|
|
+ dest_filename_type, dest_filename_size, dest_file_path.DebugStr().c_str());
|
|
|
+
|
|
|
+ cmd_buff[1] = Kernel::RenameFileBetweenArchives(src_archive_handle, src_file_path, dest_archive_handle, dest_file_path).raw;
|
|
|
|
|
|
DEBUG_LOG(KERNEL, "called");
|
|
|
}
|
|
|
@@ -190,7 +232,7 @@ void DeleteDirectory(Service::Interface* self) {
|
|
|
DEBUG_LOG(KERNEL, "type=%d size=%d data=%s",
|
|
|
dirname_type, dirname_size, dir_path.DebugStr().c_str());
|
|
|
|
|
|
- cmd_buff[1] = Kernel::DeleteDirectoryFromArchive(archive_handle, dir_path);
|
|
|
+ cmd_buff[1] = Kernel::DeleteDirectoryFromArchive(archive_handle, dir_path).raw;
|
|
|
|
|
|
DEBUG_LOG(KERNEL, "called");
|
|
|
}
|
|
|
@@ -220,11 +262,53 @@ static void CreateDirectory(Service::Interface* self) {
|
|
|
|
|
|
DEBUG_LOG(KERNEL, "type=%d size=%d data=%s", dirname_type, dirname_size, dir_path.DebugStr().c_str());
|
|
|
|
|
|
- cmd_buff[1] = Kernel::CreateDirectoryFromArchive(archive_handle, dir_path);
|
|
|
+ cmd_buff[1] = Kernel::CreateDirectoryFromArchive(archive_handle, dir_path).raw;
|
|
|
|
|
|
DEBUG_LOG(KERNEL, "called");
|
|
|
}
|
|
|
|
|
|
+/*
|
|
|
+ * FS_User::RenameDirectory service function
|
|
|
+ * Inputs:
|
|
|
+ * 2 : Source archive handle lower word
|
|
|
+ * 3 : Source archive handle upper word
|
|
|
+ * 4 : Source dir path type
|
|
|
+ * 5 : Source dir path size
|
|
|
+ * 6 : Dest archive handle lower word
|
|
|
+ * 7 : Dest archive handle upper word
|
|
|
+ * 8 : Dest dir path type
|
|
|
+ * 9 : Dest dir path size
|
|
|
+ * 11: Source dir path string data
|
|
|
+ * 13: Dest dir path string
|
|
|
+ * Outputs:
|
|
|
+ * 1 : Result of function, 0 on success, otherwise error code
|
|
|
+ */
|
|
|
+void RenameDirectory(Service::Interface* self) {
|
|
|
+ u32* cmd_buff = Service::GetCommandBuffer();
|
|
|
+
|
|
|
+ // TODO(Link Mauve): cmd_buff[2] and cmd_buff[6], aka archive handle lower word, aren't used according to
|
|
|
+ // 3dmoo's or ctrulib's implementations. Triple check if it's really the case.
|
|
|
+ Handle src_archive_handle = static_cast<Handle>(cmd_buff[3]);
|
|
|
+ auto src_dirname_type = static_cast<FileSys::LowPathType>(cmd_buff[4]);
|
|
|
+ u32 src_dirname_size = cmd_buff[5];
|
|
|
+ Handle dest_archive_handle = static_cast<Handle>(cmd_buff[7]);
|
|
|
+ auto dest_dirname_type = static_cast<FileSys::LowPathType>(cmd_buff[8]);
|
|
|
+ u32 dest_dirname_size = cmd_buff[9];
|
|
|
+ u32 src_dirname_ptr = cmd_buff[11];
|
|
|
+ u32 dest_dirname_ptr = cmd_buff[13];
|
|
|
+
|
|
|
+ FileSys::Path src_dir_path(src_dirname_type, src_dirname_size, src_dirname_ptr);
|
|
|
+ FileSys::Path dest_dir_path(dest_dirname_type, dest_dirname_size, dest_dirname_ptr);
|
|
|
+
|
|
|
+ DEBUG_LOG(KERNEL, "src_type=%d src_size=%d src_data=%s dest_type=%d dest_size=%d dest_data=%s",
|
|
|
+ src_dirname_type, src_dirname_size, src_dir_path.DebugStr().c_str(),
|
|
|
+ dest_dirname_type, dest_dirname_size, dest_dir_path.DebugStr().c_str());
|
|
|
+
|
|
|
+ cmd_buff[1] = Kernel::RenameDirectoryBetweenArchives(src_archive_handle, src_dir_path, dest_archive_handle, dest_dir_path).raw;
|
|
|
+
|
|
|
+ DEBUG_LOG(KERNEL, "called");
|
|
|
+}
|
|
|
+
|
|
|
static void OpenDirectory(Service::Interface* self) {
|
|
|
u32* cmd_buff = Service::GetCommandBuffer();
|
|
|
|
|
|
@@ -314,12 +398,12 @@ const Interface::FunctionInfo FunctionTable[] = {
|
|
|
{0x080201C2, OpenFile, "OpenFile"},
|
|
|
{0x08030204, OpenFileDirectly, "OpenFileDirectly"},
|
|
|
{0x08040142, DeleteFile, "DeleteFile"},
|
|
|
- {0x08050244, nullptr, "RenameFile"},
|
|
|
+ {0x08050244, RenameFile, "RenameFile"},
|
|
|
{0x08060142, DeleteDirectory, "DeleteDirectory"},
|
|
|
{0x08070142, nullptr, "DeleteDirectoryRecursively"},
|
|
|
{0x08080202, nullptr, "CreateFile"},
|
|
|
{0x08090182, CreateDirectory, "CreateDirectory"},
|
|
|
- {0x080A0244, nullptr, "RenameDirectory"},
|
|
|
+ {0x080A0244, RenameDirectory, "RenameDirectory"},
|
|
|
{0x080B0102, OpenDirectory, "OpenDirectory"},
|
|
|
{0x080C00C2, OpenArchive, "OpenArchive"},
|
|
|
{0x080D0144, nullptr, "ControlArchive"},
|