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"
|
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
|
|
|
|
|
|
|
#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();
|
2020-04-04 18:56:20 +00:00
|
|
|
|
2015-09-27 12:01:12 +00:00
|
|
|
BlobType GetBlobType() const override { return BlobType::DRIVE; }
|
2020-04-04 18:56:20 +00:00
|
|
|
|
2014-09-01 19:48:02 +00:00
|
|
|
u64 GetRawSize() const override { return m_size; }
|
2019-03-21 21:20:23 +00:00
|
|
|
u64 GetDataSize() const override { return m_size; }
|
|
|
|
bool IsDataSizeAccurate() const override { return true; }
|
2018-04-12 12:18:04 +00:00
|
|
|
|
2020-04-04 18:56:20 +00:00
|
|
|
u64 GetBlockSize() const override { return ECC_BLOCK_SIZE; }
|
2020-06-07 12:11:00 +00:00
|
|
|
bool HasFastRandomAccessInBlock() const override { return false; }
|
2020-06-21 18:41:50 +00:00
|
|
|
std::string GetCompressionMethod() const override { return {}; }
|
2020-04-04 18:56:20 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
private:
|
2014-03-12 19:33:41 +00:00
|
|
|
DriveReader(const std::string& drive);
|
2016-04-26 11:24:08 +00:00
|
|
|
bool 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
|
2016-04-26 11:24:08 +00:00
|
|
|
HANDLE m_disc_handle = INVALID_HANDLE_VALUE;
|
2014-09-01 19:48:02 +00:00
|
|
|
PREVENT_MEDIA_REMOVAL m_lock_cdrom;
|
2016-04-26 11:24:08 +00:00
|
|
|
bool IsOK() const { 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;
|
2016-04-26 11:24:08 +00:00
|
|
|
bool IsOK() const { return m_file.IsOpen() && m_file.IsGood(); }
|
2009-02-21 23:44:40 +00:00
|
|
|
#endif
|
2020-04-04 18:56:20 +00:00
|
|
|
static constexpr u64 ECC_BLOCK_SIZE = 0x8000;
|
2016-04-26 11:24:08 +00:00
|
|
|
u64 m_size = 0;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace DiscIO
|