2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-05-21 19:19:15 +00:00
|
|
|
|
2020-04-10 13:53:14 +00:00
|
|
|
// DiscScrubber removes the pseudorandom padding data from discs
|
2009-05-21 19:19:15 +00:00
|
|
|
|
|
|
|
// Note: the technique is inspired by Wiiscrubber, but much simpler - intentionally :)
|
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-05-21 19:19:15 +00:00
|
|
|
|
2017-01-04 19:31:38 +00:00
|
|
|
#include <array>
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2017-01-04 19:31:38 +00:00
|
|
|
#include <vector>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2009-05-21 19:19:15 +00:00
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
namespace File
|
|
|
|
{
|
|
|
|
class IOFile;
|
|
|
|
}
|
2009-05-21 19:19:15 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2015-08-08 17:59:33 +00:00
|
|
|
class FileInfo;
|
2017-06-06 09:49:01 +00:00
|
|
|
class Volume;
|
2015-06-13 10:51:24 +00:00
|
|
|
struct Partition;
|
2017-01-04 19:31:38 +00:00
|
|
|
|
|
|
|
class DiscScrubber final
|
2009-05-21 19:19:15 +00:00
|
|
|
{
|
2017-01-04 19:31:38 +00:00
|
|
|
public:
|
|
|
|
DiscScrubber();
|
|
|
|
~DiscScrubber();
|
|
|
|
|
2020-04-04 18:56:20 +00:00
|
|
|
bool SetupScrub(const Volume* disc);
|
|
|
|
|
|
|
|
// Returns true if the specified 32 KiB block only contains unused data
|
2019-03-30 15:20:45 +00:00
|
|
|
bool CanBlockBeScrubbed(u64 offset) const;
|
2017-01-04 19:31:38 +00:00
|
|
|
|
2020-04-10 15:40:07 +00:00
|
|
|
static constexpr size_t CLUSTER_SIZE = 0x8000;
|
|
|
|
|
2017-01-04 19:31:38 +00:00
|
|
|
private:
|
|
|
|
void MarkAsUsed(u64 offset, u64 size);
|
|
|
|
void MarkAsUsedE(u64 partition_data_offset, u64 offset, u64 size);
|
2018-09-20 17:32:52 +00:00
|
|
|
u64 ToClusterOffset(u64 offset) const;
|
2015-06-13 10:51:24 +00:00
|
|
|
bool ReadFromVolume(u64 offset, u32& buffer, const Partition& partition);
|
|
|
|
bool ReadFromVolume(u64 offset, u64& buffer, const Partition& partition);
|
2017-01-04 19:31:38 +00:00
|
|
|
bool ParseDisc();
|
2020-04-10 13:53:14 +00:00
|
|
|
bool ParsePartitionData(const Partition& partition);
|
2015-08-08 17:59:33 +00:00
|
|
|
void ParseFileSystemData(u64 partition_data_offset, const FileInfo& directory);
|
2017-01-04 19:31:38 +00:00
|
|
|
|
2021-09-04 04:43:19 +00:00
|
|
|
const Volume* m_disc = nullptr;
|
2017-01-04 19:31:38 +00:00
|
|
|
|
2017-01-04 20:39:27 +00:00
|
|
|
std::vector<u8> m_free_table;
|
|
|
|
u64 m_file_size = 0;
|
|
|
|
bool m_is_scrubbing = false;
|
2017-01-04 19:31:38 +00:00
|
|
|
};
|
2009-05-21 19:19:15 +00:00
|
|
|
|
|
|
|
} // namespace DiscIO
|