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