2018-08-10 00:46:41 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string_view>
|
|
|
|
#include <boost/container/flat_map.hpp>
|
|
|
|
#include "core/file_sys/vfs.h"
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
|
|
|
// Wrapper function to allow for more efficient handling of files.size() == 0, 1 cases.
|
2018-08-10 03:10:32 +00:00
|
|
|
VirtualFile ConcatenateFiles(std::vector<VirtualFile> files, std::string name = "");
|
2018-08-10 00:46:41 +00:00
|
|
|
|
|
|
|
// Class that wraps multiple vfs files and concatenates them, making reads seamless. Currently
|
|
|
|
// read-only.
|
|
|
|
class ConcatenatedVfsFile : public VfsFile {
|
2018-08-10 03:10:32 +00:00
|
|
|
friend VirtualFile ConcatenateFiles(std::vector<VirtualFile> files, std::string name);
|
2018-08-10 00:46:41 +00:00
|
|
|
|
2018-08-10 03:10:32 +00:00
|
|
|
ConcatenatedVfsFile(std::vector<VirtualFile> files, std::string name);
|
2018-08-10 00:46:41 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
std::string GetName() const override;
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t GetSize() const override;
|
|
|
|
bool Resize(std::size_t new_size) override;
|
2018-08-10 00:46:41 +00:00
|
|
|
std::shared_ptr<VfsDirectory> GetContainingDirectory() const override;
|
|
|
|
bool IsWritable() const override;
|
|
|
|
bool IsReadable() const override;
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t Read(u8* data, std::size_t length, std::size_t offset) const override;
|
|
|
|
std::size_t Write(const u8* data, std::size_t length, std::size_t offset) override;
|
2018-08-10 00:46:41 +00:00
|
|
|
bool Rename(std::string_view name) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Maps starting offset to file -- more efficient.
|
|
|
|
boost::container::flat_map<u64, VirtualFile> files;
|
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|