2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2011-01-01 21:09:56 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2011-01-01 21:09:56 +00:00
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <cstdio>
|
2015-12-07 04:15:51 +00:00
|
|
|
#include <memory>
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2014-02-21 00:47:53 +00:00
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2017-01-15 20:46:32 +00:00
|
|
|
#include "Common/File.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/Blob.h"
|
2011-01-01 21:09:56 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2016-12-21 10:30:12 +00:00
|
|
|
static constexpr u32 CISO_MAGIC = 0x4F534943; // "CISO" (byteswapped to little endian)
|
2011-01-01 21:09:56 +00:00
|
|
|
|
2013-03-05 06:28:41 +00:00
|
|
|
static const u32 CISO_HEADER_SIZE = 0x8000;
|
|
|
|
static const u32 CISO_MAP_SIZE = CISO_HEADER_SIZE - sizeof(u32) - sizeof(char) * 4;
|
|
|
|
|
|
|
|
struct CISOHeader
|
2011-01-01 21:09:56 +00:00
|
|
|
{
|
2013-03-05 06:28:41 +00:00
|
|
|
// "CISO"
|
2016-12-21 10:30:12 +00:00
|
|
|
u32 magic;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-03-05 06:28:41 +00:00
|
|
|
// little endian
|
|
|
|
u32 block_size;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-03-05 06:28:41 +00:00
|
|
|
// 0=unused, 1=used, others=invalid
|
|
|
|
u8 map[CISO_MAP_SIZE];
|
2011-03-11 10:21:46 +00:00
|
|
|
};
|
2011-01-01 21:09:56 +00:00
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
class CISOFileReader : public BlobReader
|
2011-01-01 21:09:56 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-12-21 11:50:15 +00:00
|
|
|
static std::unique_ptr<CISOFileReader> Create(File::IOFile file);
|
2015-09-17 08:58:38 +00:00
|
|
|
|
2015-09-27 12:01:12 +00:00
|
|
|
BlobType GetBlobType() const override { return BlobType::CISO; }
|
2020-04-04 18:56:20 +00:00
|
|
|
|
|
|
|
u64 GetRawSize() const override;
|
2015-09-17 08:58:38 +00:00
|
|
|
// The CISO format does not save the original file size.
|
|
|
|
// This function returns an upper bound.
|
2014-03-08 00:54:44 +00:00
|
|
|
u64 GetDataSize() const override;
|
2019-03-21 21:20:23 +00:00
|
|
|
bool IsDataSizeAccurate() const override { return false; }
|
2015-09-17 08:58:38 +00:00
|
|
|
|
2020-04-04 18:56:20 +00:00
|
|
|
u64 GetBlockSize() const override { return m_block_size; }
|
2020-06-07 12:11:00 +00:00
|
|
|
bool HasFastRandomAccessInBlock() const override { return true; }
|
2020-06-21 18:41:50 +00:00
|
|
|
std::string GetCompressionMethod() const override { return {}; }
|
2020-04-04 18:56:20 +00:00
|
|
|
|
2014-03-08 00:54:44 +00:00
|
|
|
bool Read(u64 offset, u64 nbytes, u8* out_ptr) override;
|
2011-01-01 21:09:56 +00:00
|
|
|
|
|
|
|
private:
|
2016-12-21 11:50:15 +00:00
|
|
|
CISOFileReader(File::IOFile file);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-03-05 06:28:41 +00:00
|
|
|
typedef u16 MapType;
|
2017-06-07 11:16:02 +00:00
|
|
|
static const MapType UNUSED_BLOCK_ID = UINT16_MAX;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-03-05 06:28:41 +00:00
|
|
|
File::IOFile m_file;
|
|
|
|
u64 m_size;
|
|
|
|
u32 m_block_size;
|
|
|
|
MapType m_ciso_map[CISO_MAP_SIZE];
|
2011-01-01 21:09:56 +00:00
|
|
|
};
|
|
|
|
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace DiscIO
|