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 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +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"
|
2017-01-15 20:46:32 +00:00
|
|
|
#include "Common/File.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/Blob.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2017-06-06 09:49:01 +00:00
|
|
|
class PlainFileReader : public BlobReader
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-12-21 11:50:15 +00:00
|
|
|
static std::unique_ptr<PlainFileReader> Create(File::IOFile file);
|
2011-03-11 10:21:46 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
BlobType GetBlobType() const override { return BlobType::PLAIN; }
|
|
|
|
u64 GetDataSize() const override { return m_size; }
|
|
|
|
u64 GetRawSize() const override { return m_size; }
|
|
|
|
bool Read(u64 offset, u64 nbytes, u8* out_ptr) override;
|
2014-09-01 19:48:02 +00:00
|
|
|
|
|
|
|
private:
|
2016-12-21 11:50:15 +00:00
|
|
|
PlainFileReader(File::IOFile file);
|
2014-09-01 19:48:02 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
File::IOFile m_file;
|
|
|
|
s64 m_size;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|