mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-11-03 23:28:48 +00:00 
			
		
		
		
	fs: implement DeleteDirectoryRecursively
This commit is contained in:
		
							parent
							
								
									4b14e17b18
								
							
						
					
					
						commit
						96b0e9476b
					
				
					 8 changed files with 70 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -362,6 +362,18 @@ ResultCode DeleteDirectoryFromArchive(ArchiveHandle archive_handle, const FileSy
 | 
			
		|||
                      ErrorSummary::Canceled, ErrorLevel::Status);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
ResultCode DeleteDirectoryRecursivelyFromArchive(ArchiveHandle archive_handle,
 | 
			
		||||
                                                 const FileSys::Path& path) {
 | 
			
		||||
    ArchiveBackend* archive = GetArchive(archive_handle);
 | 
			
		||||
    if (archive == nullptr)
 | 
			
		||||
        return ERR_INVALID_ARCHIVE_HANDLE;
 | 
			
		||||
 | 
			
		||||
    if (archive->DeleteDirectoryRecursively(path))
 | 
			
		||||
        return RESULT_SUCCESS;
 | 
			
		||||
    return ResultCode(ErrorDescription::NoData, ErrorModule::FS, // TODO: verify description
 | 
			
		||||
                      ErrorSummary::Canceled, ErrorLevel::Status);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
ResultCode CreateFileInArchive(ArchiveHandle archive_handle, const FileSys::Path& path,
 | 
			
		||||
                               u64 file_size) {
 | 
			
		||||
    ArchiveBackend* archive = GetArchive(archive_handle);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -132,6 +132,15 @@ ResultCode RenameFileBetweenArchives(ArchiveHandle src_archive_handle,
 | 
			
		|||
 */
 | 
			
		||||
ResultCode DeleteDirectoryFromArchive(ArchiveHandle archive_handle, const FileSys::Path& path);
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Delete a Directory and anything under it 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
 | 
			
		||||
 */
 | 
			
		||||
ResultCode DeleteDirectoryRecursivelyFromArchive(ArchiveHandle archive_handle,
 | 
			
		||||
                                                 const FileSys::Path& path);
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Create a File in an Archive
 | 
			
		||||
 * @param archive_handle Handle to an open Archive object
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -234,6 +234,35 @@ static void DeleteDirectory(Service::Interface* self) {
 | 
			
		|||
    cmd_buff[1] = DeleteDirectoryFromArchive(archive_handle, dir_path).raw;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * FS_User::DeleteDirectoryRecursively service function
 | 
			
		||||
 *  Inputs:
 | 
			
		||||
 *      0 : Command header 0x08070142
 | 
			
		||||
 *      1 : Transaction
 | 
			
		||||
 *      2 : Archive handle lower word
 | 
			
		||||
 *      3 : Archive handle upper word
 | 
			
		||||
 *      4 : Directory path string type
 | 
			
		||||
 *      5 : Directory path string size
 | 
			
		||||
 *      7 : Directory path string data
 | 
			
		||||
 *  Outputs:
 | 
			
		||||
 *      1 : Result of function, 0 on success, otherwise error code
 | 
			
		||||
 */
 | 
			
		||||
static void DeleteDirectoryRecursively(Service::Interface* self) {
 | 
			
		||||
    u32* cmd_buff = Kernel::GetCommandBuffer();
 | 
			
		||||
 | 
			
		||||
    ArchiveHandle archive_handle = MakeArchiveHandle(cmd_buff[2], cmd_buff[3]);
 | 
			
		||||
    auto dirname_type = static_cast<FileSys::LowPathType>(cmd_buff[4]);
 | 
			
		||||
    u32 dirname_size = cmd_buff[5];
 | 
			
		||||
    u32 dirname_ptr = cmd_buff[7];
 | 
			
		||||
 | 
			
		||||
    FileSys::Path dir_path(dirname_type, dirname_size, dirname_ptr);
 | 
			
		||||
 | 
			
		||||
    LOG_DEBUG(Service_FS, "type=%d size=%d data=%s", dirname_type, dirname_size,
 | 
			
		||||
              dir_path.DebugStr().c_str());
 | 
			
		||||
 | 
			
		||||
    cmd_buff[1] = DeleteDirectoryRecursivelyFromArchive(archive_handle, dir_path).raw;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * FS_User::CreateFile service function
 | 
			
		||||
 *  Inputs:
 | 
			
		||||
| 
						 | 
				
			
			@ -868,7 +897,7 @@ const Interface::FunctionInfo FunctionTable[] = {
 | 
			
		|||
    {0x08040142, DeleteFile, "DeleteFile"},
 | 
			
		||||
    {0x08050244, RenameFile, "RenameFile"},
 | 
			
		||||
    {0x08060142, DeleteDirectory, "DeleteDirectory"},
 | 
			
		||||
    {0x08070142, nullptr, "DeleteDirectoryRecursively"},
 | 
			
		||||
    {0x08070142, DeleteDirectoryRecursively, "DeleteDirectoryRecursively"},
 | 
			
		||||
    {0x08080202, CreateFile, "CreateFile"},
 | 
			
		||||
    {0x08090182, CreateDirectory, "CreateDirectory"},
 | 
			
		||||
    {0x080A0244, RenameDirectory, "RenameDirectory"},
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue