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"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "DiscIO/Blob.h"
|
2011-01-01 21:09:56 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2014-03-12 19:33:41 +00:00
|
|
|
bool IsCISOBlob(const std::string& filename);
|
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
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// "CISO"
|
|
|
|
char magic[4];
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// little endian
|
|
|
|
u32 block_size;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +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
|
|
|
|
|
|
|
class CISOFileReader : public IBlobReader
|
|
|
|
{
|
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
static std::unique_ptr<CISOFileReader> Create(const std::string& filename);
|
2015-09-17 08:58:38 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
BlobType GetBlobType() const override { return BlobType::CISO; }
|
|
|
|
// The CISO format does not save the original file size.
|
|
|
|
// This function returns an upper bound.
|
|
|
|
u64 GetDataSize() const override;
|
2015-09-17 08:58:38 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
u64 GetRawSize() const override;
|
|
|
|
bool Read(u64 offset, u64 nbytes, u8* out_ptr) override;
|
2011-01-01 21:09:56 +00:00
|
|
|
|
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
CISOFileReader(std::FILE* file);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
typedef u16 MapType;
|
|
|
|
static const MapType UNUSED_BLOCK_ID = -1;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +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
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|