2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2010 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
|
|
|
|
2013-03-05 06:28:41 +00:00
|
|
|
#include <algorithm>
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <cstdio>
|
2015-12-07 04:15:51 +00:00
|
|
|
#include <memory>
|
2013-03-05 06:28:41 +00:00
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "Common/FileUtil.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/CISOBlob.h"
|
2011-01-01 21:09:56 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2013-03-05 06:28:41 +00:00
|
|
|
static const char CISO_MAGIC[] = "CISO";
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
CISOFileReader::CISOFileReader(std::FILE* file) : m_file(file)
|
2011-01-01 21:09:56 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
m_size = m_file.GetSize();
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
CISOHeader header;
|
|
|
|
m_file.ReadArray(&header, 1);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
m_block_size = header.block_size;
|
2011-01-01 21:09:56 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
MapType count = 0;
|
|
|
|
for (u32 idx = 0; idx < CISO_MAP_SIZE; ++idx)
|
|
|
|
m_ciso_map[idx] = (1 == header.map[idx]) ? count++ : UNUSED_BLOCK_ID;
|
2011-01-01 21:09:56 +00:00
|
|
|
}
|
|
|
|
|
2015-12-07 04:15:51 +00:00
|
|
|
std::unique_ptr<CISOFileReader> CISOFileReader::Create(const std::string& filename)
|
2011-01-01 21:09:56 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
if (IsCISOBlob(filename))
|
|
|
|
{
|
|
|
|
File::IOFile f(filename, "rb");
|
|
|
|
return std::unique_ptr<CISOFileReader>(new CISOFileReader(f.ReleaseHandle()));
|
|
|
|
}
|
2015-12-07 04:15:51 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
return nullptr;
|
2011-01-01 21:09:56 +00:00
|
|
|
}
|
|
|
|
|
2013-03-05 06:28:41 +00:00
|
|
|
u64 CISOFileReader::GetDataSize() const
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return CISO_MAP_SIZE * m_block_size;
|
2013-03-05 06:28:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u64 CISOFileReader::GetRawSize() const
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return m_size;
|
2013-03-05 06:28:41 +00:00
|
|
|
}
|
|
|
|
|
2011-01-01 21:09:56 +00:00
|
|
|
bool CISOFileReader::Read(u64 offset, u64 nbytes, u8* out_ptr)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
while (nbytes != 0)
|
|
|
|
{
|
|
|
|
u64 const block = offset / m_block_size;
|
|
|
|
u64 const data_offset = offset % m_block_size;
|
|
|
|
u64 const bytes_to_read = std::min(m_block_size - data_offset, nbytes);
|
|
|
|
|
|
|
|
if (block < CISO_MAP_SIZE && UNUSED_BLOCK_ID != m_ciso_map[block])
|
|
|
|
{
|
|
|
|
// calculate the base address
|
|
|
|
u64 const file_off = CISO_HEADER_SIZE + m_ciso_map[block] * (u64)m_block_size + data_offset;
|
|
|
|
|
|
|
|
if (!(m_file.Seek(file_off, SEEK_SET) && m_file.ReadArray(out_ptr, bytes_to_read)))
|
|
|
|
{
|
|
|
|
m_file.Clear();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::fill_n(out_ptr, bytes_to_read, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
out_ptr += bytes_to_read;
|
|
|
|
offset += bytes_to_read;
|
|
|
|
nbytes -= bytes_to_read;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2011-01-01 21:09:56 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
bool IsCISOBlob(const std::string& filename)
|
2011-01-01 21:09:56 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
File::IOFile f(filename, "rb");
|
2011-01-01 21:09:56 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
CISOHeader header;
|
|
|
|
return (f.ReadArray(&header, 1) &&
|
|
|
|
std::equal(header.magic, header.magic + sizeof(header.magic), CISO_MAGIC));
|
2011-01-01 21:09:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|