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
|
|
|
|
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"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "DiscIO/Blob.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
2009-02-21 23:44:40 +00:00
|
|
|
#include <winioctl.h>
|
2008-12-08 04:46:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
|
|
|
|
class DriveReader : public SectorReader
|
|
|
|
{
|
2014-09-01 19:48:02 +00:00
|
|
|
public:
|
2015-12-07 04:15:51 +00:00
|
|
|
static std::unique_ptr<DriveReader> Create(const std::string& drive);
|
2014-09-01 19:48:02 +00:00
|
|
|
~DriveReader();
|
2015-09-27 12:01:12 +00:00
|
|
|
BlobType GetBlobType() const override { return BlobType::DRIVE; }
|
2014-09-01 19:48:02 +00:00
|
|
|
u64 GetDataSize() const override { return m_size; }
|
|
|
|
u64 GetRawSize() const override { return m_size; }
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
private:
|
2014-03-12 19:33:41 +00:00
|
|
|
DriveReader(const std::string& drive);
|
2014-03-08 00:54:44 +00:00
|
|
|
void GetBlock(u64 block_num, u8 *out_ptr) override;
|
2015-12-08 00:53:42 +00:00
|
|
|
bool ReadMultipleAlignedBlocks(u64 block_num, u64 num_blocks, u8* out_ptr) override;
|
2009-02-22 07:52:02 +00:00
|
|
|
|
2009-02-21 23:44:40 +00:00
|
|
|
#ifdef _WIN32
|
2014-09-01 19:48:02 +00:00
|
|
|
HANDLE m_disc_handle;
|
|
|
|
PREVENT_MEDIA_REMOVAL m_lock_cdrom;
|
|
|
|
bool IsOK() { return m_disc_handle != INVALID_HANDLE_VALUE; }
|
2009-02-21 23:44:40 +00:00
|
|
|
#else
|
2014-09-01 19:48:02 +00:00
|
|
|
File::IOFile m_file;
|
|
|
|
bool IsOK() { return m_file != nullptr; }
|
2009-02-21 23:44:40 +00:00
|
|
|
#endif
|
2014-09-01 19:48:02 +00:00
|
|
|
s64 m_size;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|