2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 05:09:55 +02:00
|
|
|
// Refer to the license.txt file included.
|
2011-01-01 22:09:56 +01:00
|
|
|
|
2013-03-05 07:28:41 +01:00
|
|
|
#include <algorithm>
|
2014-02-21 01:47:53 +01:00
|
|
|
#include <cstdio>
|
2015-12-07 05:15:51 +01:00
|
|
|
#include <memory>
|
2016-12-21 12:50:15 +01:00
|
|
|
#include <utility>
|
2013-03-05 07:28:41 +01:00
|
|
|
|
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 11:18:15 +01:00
|
|
|
#include "DiscIO/CISOBlob.h"
|
2011-01-01 22:09:56 +01:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2016-12-21 12:50:15 +01:00
|
|
|
CISOFileReader::CISOFileReader(File::IOFile file) : m_file(std::move(file))
|
2011-01-01 22:09:56 +01:00
|
|
|
{
|
2011-03-11 11:21:46 +01:00
|
|
|
m_size = m_file.GetSize();
|
2013-10-29 06:23:17 +01:00
|
|
|
|
2013-03-05 07:28:41 +01:00
|
|
|
CISOHeader header;
|
2016-12-21 12:50:15 +01:00
|
|
|
m_file.Seek(0, SEEK_SET);
|
2011-03-11 11:21:46 +01:00
|
|
|
m_file.ReadArray(&header, 1);
|
2013-10-29 06:23:17 +01:00
|
|
|
|
2013-03-05 07:28:41 +01:00
|
|
|
m_block_size = header.block_size;
|
2011-01-01 22:09:56 +01:00
|
|
|
|
2013-03-05 07:28:41 +01:00
|
|
|
MapType count = 0;
|
2014-02-13 22:47:42 +01:00
|
|
|
for (u32 idx = 0; idx < CISO_MAP_SIZE; ++idx)
|
2013-03-05 07:28:41 +01:00
|
|
|
m_ciso_map[idx] = (1 == header.map[idx]) ? count++ : UNUSED_BLOCK_ID;
|
2011-01-01 22:09:56 +01:00
|
|
|
}
|
|
|
|
|
2016-12-21 12:50:15 +01:00
|
|
|
std::unique_ptr<CISOFileReader> CISOFileReader::Create(File::IOFile file)
|
2011-01-01 22:09:56 +01:00
|
|
|
{
|
2016-12-21 11:30:12 +01:00
|
|
|
CISOHeader header;
|
2016-12-21 12:50:15 +01:00
|
|
|
if (file.Seek(0, SEEK_SET) && file.ReadArray(&header, 1) && header.magic == CISO_MAGIC)
|
|
|
|
return std::unique_ptr<CISOFileReader>(new CISOFileReader(std::move(file)));
|
2015-12-07 05:15:51 +01:00
|
|
|
|
|
|
|
return nullptr;
|
2011-01-01 22:09:56 +01:00
|
|
|
}
|
|
|
|
|
2013-03-05 07:28:41 +01:00
|
|
|
u64 CISOFileReader::GetDataSize() const
|
|
|
|
{
|
2015-09-17 10:58:38 +02:00
|
|
|
return CISO_MAP_SIZE * m_block_size;
|
2013-03-05 07:28:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
u64 CISOFileReader::GetRawSize() const
|
|
|
|
{
|
|
|
|
return m_size;
|
|
|
|
}
|
|
|
|
|
2011-01-01 22:09:56 +01:00
|
|
|
bool CISOFileReader::Read(u64 offset, u64 nbytes, u8* out_ptr)
|
|
|
|
{
|
2013-03-05 07:28:41 +01:00
|
|
|
while (nbytes != 0)
|
2011-01-01 22:09:56 +01:00
|
|
|
{
|
2014-02-13 23:09:58 +01:00
|
|
|
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);
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2013-03-05 07:28:41 +01:00
|
|
|
if (block < CISO_MAP_SIZE && UNUSED_BLOCK_ID != m_ciso_map[block])
|
2011-01-01 22:09:56 +01:00
|
|
|
{
|
2013-04-19 15:21:45 +02:00
|
|
|
// calculate the base address
|
2014-02-13 23:09:58 +01:00
|
|
|
u64 const file_off = CISO_HEADER_SIZE + m_ciso_map[block] * (u64)m_block_size + data_offset;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2013-03-05 07:28:41 +01:00
|
|
|
if (!(m_file.Seek(file_off, SEEK_SET) && m_file.ReadArray(out_ptr, bytes_to_read)))
|
2014-12-14 13:16:21 +01:00
|
|
|
{
|
|
|
|
m_file.Clear();
|
2013-03-05 07:28:41 +01:00
|
|
|
return false;
|
2014-12-14 13:16:21 +01:00
|
|
|
}
|
2011-01-01 22:09:56 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-03-05 07:28:41 +01:00
|
|
|
std::fill_n(out_ptr, bytes_to_read, 0);
|
2011-01-01 22:09:56 +01:00
|
|
|
}
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2014-02-13 22:47:42 +01:00
|
|
|
out_ptr += bytes_to_read;
|
2015-02-28 23:24:02 +01:00
|
|
|
offset += bytes_to_read;
|
|
|
|
nbytes -= bytes_to_read;
|
2011-01-01 22:09:56 +01:00
|
|
|
}
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2011-01-01 22:09:56 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-05-06 01:48:12 +02:00
|
|
|
} // namespace DiscIO
|