103 lines
2.7 KiB
C
103 lines
2.7 KiB
C
|
// Copyright 2018 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2+
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <array>
|
||
|
#include <memory>
|
||
|
|
||
|
#include "Common/CommonTypes.h"
|
||
|
#include "Common/File.h"
|
||
|
#include "Common/Swap.h"
|
||
|
#include "DiscIO/Blob.h"
|
||
|
|
||
|
namespace DiscIO
|
||
|
{
|
||
|
constexpr u32 WIA_MAGIC = 0x01414957; // "WIA\x1" (byteswapped to little endian)
|
||
|
|
||
|
class WIAFileReader : public BlobReader
|
||
|
{
|
||
|
public:
|
||
|
~WIAFileReader();
|
||
|
|
||
|
static std::unique_ptr<WIAFileReader> Create(File::IOFile file, const std::string& path);
|
||
|
|
||
|
BlobType GetBlobType() const override { return BlobType::WIA; }
|
||
|
|
||
|
u64 GetRawSize() const override { return Common::swap64(m_header_1.wia_file_size); }
|
||
|
u64 GetDataSize() const override { return Common::swap64(m_header_1.iso_file_size); }
|
||
|
bool IsDataSizeAccurate() const override { return true; }
|
||
|
|
||
|
u64 GetBlockSize() const override { return Common::swap32(m_header_2.chunk_size); }
|
||
|
bool HasFastRandomAccessInBlock() const override { return false; }
|
||
|
|
||
|
bool Read(u64 offset, u64 size, u8* out_ptr) override;
|
||
|
|
||
|
private:
|
||
|
explicit WIAFileReader(File::IOFile file, const std::string& path);
|
||
|
bool Initialize(const std::string& path);
|
||
|
|
||
|
static std::string VersionToString(u32 version);
|
||
|
|
||
|
using SHA1 = std::array<u8, 20>;
|
||
|
|
||
|
#pragma pack(push, 1)
|
||
|
struct WIAHeader1
|
||
|
{
|
||
|
u32 magic;
|
||
|
u32 version;
|
||
|
u32 version_compatible;
|
||
|
u32 header_2_size;
|
||
|
SHA1 header_2_hash;
|
||
|
u64 iso_file_size;
|
||
|
u64 wia_file_size;
|
||
|
SHA1 header_1_hash;
|
||
|
};
|
||
|
#pragma pack(pop)
|
||
|
static_assert(sizeof(WIAHeader1) == 0x48, "Wrong size for WIA header 1");
|
||
|
|
||
|
#pragma pack(push, 1)
|
||
|
struct WIAHeader2
|
||
|
{
|
||
|
u32 disc_type;
|
||
|
u32 compression_type;
|
||
|
u32 compression_level; // Informative only
|
||
|
u32 chunk_size;
|
||
|
|
||
|
std::array<u8, 0x80> disc_header;
|
||
|
|
||
|
u32 number_of_partitions_entries;
|
||
|
u32 partition_entry_size;
|
||
|
u64 partition_entries_offset;
|
||
|
SHA1 partition_entries_hash;
|
||
|
|
||
|
u32 number_of_raw_data_entries;
|
||
|
u64 raw_data_entries_offset;
|
||
|
u32 raw_data_entries_size;
|
||
|
|
||
|
u32 number_of_group_entries;
|
||
|
u64 group_entries_offset;
|
||
|
u32 group_entries_size;
|
||
|
};
|
||
|
#pragma pack(pop)
|
||
|
static_assert(sizeof(WIAHeader2) == 0xd4, "Wrong size for WIA header 2");
|
||
|
|
||
|
bool m_valid;
|
||
|
|
||
|
File::IOFile m_file;
|
||
|
|
||
|
WIAHeader1 m_header_1;
|
||
|
WIAHeader2 m_header_2;
|
||
|
|
||
|
static constexpr u32 WIA_VERSION = 0x01000000;
|
||
|
static constexpr u32 WIA_VERSION_WRITE_COMPATIBLE = 0x01000000;
|
||
|
static constexpr u32 WIA_VERSION_READ_COMPATIBLE = 0x00080000;
|
||
|
|
||
|
// Perhaps we could set WIA_VERSION_WRITE_COMPATIBLE to 0.9, but WIA version 0.9 was never in
|
||
|
// any official release of wit, and interim versions (either source or binaries) are hard to find.
|
||
|
// Since we've been unable to check if we're write compatible with 0.9, we set it 1.0 to be safe.
|
||
|
};
|
||
|
|
||
|
} // namespace DiscIO
|