summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/SplitFileBlob.h
blob: 4c1fe96380a2c4ad95c9c2e533438d7ed395c5e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2023 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <memory>
#include <optional>
#include <string>
#include <string_view>
#include <vector>

#include "Common/CommonTypes.h"
#include "Common/DirectIOFile.h"
#include "DiscIO/Blob.h"

namespace DiscIO
{
class SplitPlainFileReader final : public BlobReader
{
public:
  static std::unique_ptr<SplitPlainFileReader> Create(std::string_view first_file_path);

  BlobType GetBlobType() const override { return BlobType::SPLIT_PLAIN; }
  std::unique_ptr<BlobReader> CopyReader() const override;

  u64 GetRawSize() const override { return m_size; }
  u64 GetDataSize() const override { return m_size; }
  DataSizeType GetDataSizeType() const override { return DataSizeType::Accurate; }

  u64 GetBlockSize() const override { return 0; }
  bool HasFastRandomAccessInBlock() const override { return true; }
  std::string GetCompressionMethod() const override { return {}; }
  std::optional<int> GetCompressionLevel() const override { return std::nullopt; }

  bool Read(u64 offset, u64 nbytes, u8* out_ptr) override;

private:
  struct SingleFile
  {
    File::DirectIOFile file;
    u64 offset;
    u64 size;
  };

  SplitPlainFileReader(std::vector<SingleFile> m_files);

  std::vector<SingleFile> m_files;
  u64 m_size;
};

}  // namespace DiscIO