2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 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.
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-02-21 01:47:53 +01:00
|
|
|
#include <cstdio>
|
2015-12-07 05:15:51 +01:00
|
|
|
#include <memory>
|
2014-03-12 20:33:41 +01:00
|
|
|
#include <string>
|
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/Blob.h"
|
2008-12-08 05:46:09 +01:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
2017-06-06 11:49:01 +02:00
|
|
|
class PlainFileReader : public BlobReader
|
2008-12-08 05:46:09 +01:00
|
|
|
{
|
|
|
|
public:
|
2016-12-21 12:50:15 +01:00
|
|
|
static std::unique_ptr<PlainFileReader> Create(File::IOFile file);
|
2011-03-11 11:21:46 +01:00
|
|
|
|
2015-09-27 14:01:12 +02:00
|
|
|
BlobType GetBlobType() const override { return BlobType::PLAIN; }
|
2014-03-08 01:54:44 +01:00
|
|
|
u64 GetRawSize() const override { return m_size; }
|
2019-03-21 22:20:23 +01:00
|
|
|
u64 GetDataSize() const override { return m_size; }
|
|
|
|
bool IsDataSizeAccurate() const override { return true; }
|
2014-03-08 01:54:44 +01:00
|
|
|
bool Read(u64 offset, u64 nbytes, u8* out_ptr) override;
|
2014-09-01 21:48:02 +02:00
|
|
|
|
|
|
|
private:
|
2016-12-21 12:50:15 +01:00
|
|
|
PlainFileReader(File::IOFile file);
|
2014-09-01 21:48:02 +02:00
|
|
|
|
|
|
|
File::IOFile m_file;
|
|
|
|
s64 m_size;
|
2008-12-08 05:46:09 +01:00
|
|
|
};
|
|
|
|
|
2019-05-06 01:48:12 +02:00
|
|
|
} // namespace DiscIO
|