2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#include "FileBlob.h"
|
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
|
2011-03-11 10:21:46 +00:00
|
|
|
PlainFileReader::PlainFileReader(std::FILE* file)
|
|
|
|
: m_file(file)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-03-11 10:21:46 +00:00
|
|
|
m_size = m_file.GetSize();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PlainFileReader* PlainFileReader::Create(const char* filename)
|
|
|
|
{
|
2011-03-11 10:21:46 +00:00
|
|
|
File::IOFile f(filename, "rb");
|
2011-01-27 05:01:00 +00:00
|
|
|
if (f)
|
2011-03-11 10:21:46 +00:00
|
|
|
return new PlainFileReader(f.ReleaseHandle());
|
2008-12-08 05:30:24 +00:00
|
|
|
else
|
2010-02-08 22:22:20 +00:00
|
|
|
return NULL;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool PlainFileReader::Read(u64 offset, u64 nbytes, u8* out_ptr)
|
|
|
|
{
|
2011-03-11 10:21:46 +00:00
|
|
|
m_file.Seek(offset, SEEK_SET);
|
|
|
|
return m_file.ReadBytes(out_ptr, nbytes);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|