mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
56 lines
1.8 KiB
C++
56 lines
1.8 KiB
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2020 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef XENIA_VFS_DEVICES_HOST_PATH_DEVICE_H_
|
|
#define XENIA_VFS_DEVICES_HOST_PATH_DEVICE_H_
|
|
|
|
#include <string>
|
|
|
|
#include "xenia/vfs/device.h"
|
|
|
|
namespace xe {
|
|
namespace vfs {
|
|
|
|
class HostPathEntry;
|
|
|
|
class HostPathDevice : public Device {
|
|
public:
|
|
HostPathDevice(const std::string_view mount_path,
|
|
const std::filesystem::path& host_path, bool read_only);
|
|
~HostPathDevice() override;
|
|
|
|
bool Initialize() override;
|
|
void Dump(StringBuffer* string_buffer) override;
|
|
Entry* ResolvePath(const std::string_view path) override;
|
|
|
|
bool is_read_only() const override { return read_only_; }
|
|
|
|
const std::string& name() const override { return name_; }
|
|
uint32_t attributes() const override { return 0; }
|
|
uint32_t component_name_max_length() const override { return 255; }
|
|
|
|
uint32_t total_allocation_units() const override { return 128 * 1024; }
|
|
uint32_t available_allocation_units() const override { return 128 * 1024; }
|
|
uint32_t sectors_per_allocation_unit() const override { return 1; }
|
|
uint32_t bytes_per_sector() const override { return 0x200; }
|
|
|
|
private:
|
|
void PopulateEntry(HostPathEntry* parent_entry);
|
|
|
|
std::string name_;
|
|
std::filesystem::path host_path_;
|
|
std::unique_ptr<Entry> root_entry_;
|
|
bool read_only_;
|
|
};
|
|
|
|
} // namespace vfs
|
|
} // namespace xe
|
|
|
|
#endif // XENIA_VFS_DEVICES_HOST_PATH_DEVICE_H_
|