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.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstring>
|
|
|
|
#include <string>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CDUtils.h"
|
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"
|
|
|
|
#include "DiscIO/CISOBlob.h"
|
|
|
|
#include "DiscIO/CompressedBlob.h"
|
|
|
|
#include "DiscIO/DriveBlob.h"
|
|
|
|
#include "DiscIO/FileBlob.h"
|
|
|
|
#include "DiscIO/WbfsBlob.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
|
|
|
|
// Provides caching and split-operation-to-block-operations facilities.
|
|
|
|
// Used for compressed blob reading and direct drive reading.
|
|
|
|
|
|
|
|
void SectorReader::SetSectorSize(int blocksize)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < CACHE_SIZE; i++)
|
|
|
|
{
|
2014-09-01 19:48:02 +00:00
|
|
|
m_cache[i] = new u8[blocksize];
|
|
|
|
m_cache_tags[i] = (u64)(s64) - 1;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
m_blocksize = blocksize;
|
|
|
|
}
|
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
SectorReader::~SectorReader()
|
|
|
|
{
|
2014-09-01 19:48:02 +00:00
|
|
|
for (u8*& block : m_cache)
|
2014-03-03 05:25:15 +00:00
|
|
|
{
|
|
|
|
delete [] block;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const u8 *SectorReader::GetBlockData(u64 block_num)
|
|
|
|
{
|
2009-02-22 16:48:54 +00:00
|
|
|
// TODO : Expand usage of the cache to more than one block :P
|
2014-09-01 19:48:02 +00:00
|
|
|
if (m_cache_tags[0] == block_num)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-09-01 19:48:02 +00:00
|
|
|
return m_cache[0];
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
else
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-09-01 19:48:02 +00:00
|
|
|
GetBlock(block_num, m_cache[0]);
|
|
|
|
m_cache_tags[0] = block_num;
|
|
|
|
return m_cache[0];
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SectorReader::Read(u64 offset, u64 size, u8* out_ptr)
|
|
|
|
{
|
|
|
|
u64 startingBlock = offset / m_blocksize;
|
|
|
|
u64 remain = size;
|
|
|
|
|
|
|
|
int positionInBlock = (int)(offset % m_blocksize);
|
|
|
|
u64 block = startingBlock;
|
|
|
|
|
|
|
|
while (remain > 0)
|
|
|
|
{
|
2009-02-22 16:48:54 +00:00
|
|
|
// Check if we are ready to do a large block read. > instead of >= so we don't bother if remain is only one block.
|
2009-03-07 08:07:11 +00:00
|
|
|
if (positionInBlock == 0 && remain > (u64)m_blocksize)
|
2009-02-22 16:48:54 +00:00
|
|
|
{
|
|
|
|
u64 num_blocks = remain / m_blocksize;
|
|
|
|
ReadMultipleAlignedBlocks(block, num_blocks, out_ptr);
|
|
|
|
block += num_blocks;
|
|
|
|
out_ptr += num_blocks * m_blocksize;
|
|
|
|
remain -= num_blocks * m_blocksize;
|
2009-02-22 16:59:22 +00:00
|
|
|
continue;
|
2009-02-22 16:48:54 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
u32 toCopy = m_blocksize - positionInBlock;
|
|
|
|
if (toCopy >= remain)
|
|
|
|
{
|
2009-02-22 16:48:54 +00:00
|
|
|
const u8* data = GetBlockData(block);
|
|
|
|
if (!data)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Yay, we are done!
|
2008-12-08 05:30:24 +00:00
|
|
|
memcpy(out_ptr, data + positionInBlock, (size_t)remain);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-02-22 16:48:54 +00:00
|
|
|
const u8* data = GetBlockData(block);
|
|
|
|
if (!data)
|
|
|
|
return false;
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
memcpy(out_ptr, data + positionInBlock, toCopy);
|
|
|
|
out_ptr += toCopy;
|
|
|
|
remain -= toCopy;
|
|
|
|
positionInBlock = 0;
|
|
|
|
block++;
|
|
|
|
}
|
|
|
|
}
|
2014-03-12 19:33:41 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-22 16:48:54 +00:00
|
|
|
bool SectorReader::ReadMultipleAlignedBlocks(u64 block_num, u64 num_blocks, u8 *out_ptr)
|
|
|
|
{
|
2009-03-07 08:07:11 +00:00
|
|
|
for (u64 i = 0; i < num_blocks; i++)
|
2009-02-22 16:48:54 +00:00
|
|
|
{
|
|
|
|
const u8 *data = GetBlockData(block_num + i);
|
|
|
|
if (!data)
|
|
|
|
return false;
|
2009-02-22 16:59:22 +00:00
|
|
|
memcpy(out_ptr + i * m_blocksize, data, m_blocksize);
|
2009-02-22 16:48:54 +00:00
|
|
|
}
|
2014-03-12 19:33:41 +00:00
|
|
|
|
2009-02-22 16:48:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
IBlobReader* CreateBlobReader(const std::string& filename)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-03-12 19:33:41 +00:00
|
|
|
if (cdio_is_cdrom(filename))
|
2009-02-21 23:44:40 +00:00
|
|
|
return DriveReader::Create(filename);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (!File::Exists(filename))
|
2014-03-09 20:14:26 +00:00
|
|
|
return nullptr;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2012-05-03 14:09:01 +00:00
|
|
|
if (IsWbfsBlob(filename))
|
|
|
|
return WbfsFileReader::Create(filename);
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
if (IsCompressedBlob(filename))
|
|
|
|
return CompressedBlobReader::Create(filename);
|
|
|
|
|
2010-12-29 14:42:20 +00:00
|
|
|
if (IsCISOBlob(filename))
|
|
|
|
return CISOFileReader::Create(filename);
|
|
|
|
|
2009-02-24 19:57:29 +00:00
|
|
|
// Still here? Assume plain file - since we know it exists due to the File::Exists check above.
|
2008-12-08 05:30:24 +00:00
|
|
|
return PlainFileReader::Create(filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|