163 lines
5.5 KiB
C++
163 lines
5.5 KiB
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2013 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#include "xenia/kernel/fs/devices/host_path_entry.h"
|
|
|
|
#include "xenia/base/mapped_memory.h"
|
|
#include "xenia/base/string.h"
|
|
#include "xenia/kernel/fs/devices/host_path_file.h"
|
|
|
|
namespace xe {
|
|
namespace kernel {
|
|
namespace fs {
|
|
|
|
class HostPathMemoryMapping : public MemoryMapping {
|
|
public:
|
|
HostPathMemoryMapping(std::unique_ptr<MappedMemory> mmap)
|
|
: MemoryMapping(mmap->data(), mmap->size()), mmap_(std::move(mmap)) {}
|
|
|
|
private:
|
|
std::unique_ptr<MappedMemory> mmap_;
|
|
};
|
|
|
|
HostPathEntry::HostPathEntry(Device* device, const char* path,
|
|
const std::wstring& local_path)
|
|
: Entry(device, path),
|
|
local_path_(local_path),
|
|
find_file_(INVALID_HANDLE_VALUE) {}
|
|
|
|
HostPathEntry::~HostPathEntry() {
|
|
if (find_file_ != INVALID_HANDLE_VALUE) {
|
|
FindClose(find_file_);
|
|
}
|
|
}
|
|
|
|
#define COMBINE_TIME(t) (((uint64_t)t.dwHighDateTime << 32) | t.dwLowDateTime)
|
|
|
|
X_STATUS HostPathEntry::QueryInfo(XFileInfo* out_info) {
|
|
assert_not_null(out_info);
|
|
|
|
WIN32_FILE_ATTRIBUTE_DATA data;
|
|
if (!GetFileAttributesEx(local_path_.c_str(), GetFileExInfoStandard, &data)) {
|
|
return X_STATUS_ACCESS_DENIED;
|
|
}
|
|
|
|
out_info->creation_time = COMBINE_TIME(data.ftCreationTime);
|
|
out_info->last_access_time = COMBINE_TIME(data.ftLastAccessTime);
|
|
out_info->last_write_time = COMBINE_TIME(data.ftLastWriteTime);
|
|
out_info->change_time = COMBINE_TIME(data.ftLastWriteTime);
|
|
out_info->allocation_size = 4096;
|
|
out_info->file_length =
|
|
((uint64_t)data.nFileSizeHigh << 32) | data.nFileSizeLow;
|
|
out_info->attributes = (X_FILE_ATTRIBUTES)data.dwFileAttributes;
|
|
return X_STATUS_SUCCESS;
|
|
}
|
|
|
|
X_STATUS HostPathEntry::QueryDirectory(XDirectoryInfo* out_info, size_t length,
|
|
const char* file_name, bool restart) {
|
|
assert_not_null(out_info);
|
|
|
|
WIN32_FIND_DATA ffd;
|
|
|
|
HANDLE handle = find_file_;
|
|
|
|
if (restart == true && handle != INVALID_HANDLE_VALUE) {
|
|
FindClose(find_file_);
|
|
handle = find_file_ = INVALID_HANDLE_VALUE;
|
|
}
|
|
|
|
if (handle == INVALID_HANDLE_VALUE) {
|
|
std::wstring target_path = local_path_;
|
|
if (!file_name) {
|
|
target_path = xe::join_paths(target_path, L"*");
|
|
} else {
|
|
target_path = xe::join_paths(target_path, xe::to_wstring(file_name));
|
|
}
|
|
handle = find_file_ = FindFirstFile(target_path.c_str(), &ffd);
|
|
if (handle == INVALID_HANDLE_VALUE) {
|
|
if (GetLastError() == ERROR_FILE_NOT_FOUND) {
|
|
return X_STATUS_NO_MORE_FILES;
|
|
}
|
|
return X_STATUS_UNSUCCESSFUL;
|
|
}
|
|
} else {
|
|
if (FindNextFile(handle, &ffd) == FALSE) {
|
|
FindClose(handle);
|
|
find_file_ = INVALID_HANDLE_VALUE;
|
|
return X_STATUS_NO_MORE_FILES;
|
|
}
|
|
}
|
|
|
|
auto end = (uint8_t*)out_info + length;
|
|
size_t entry_name_length = wcslen(ffd.cFileName);
|
|
if (((uint8_t*)&out_info->file_name[0]) + entry_name_length > end) {
|
|
FindClose(handle);
|
|
find_file_ = INVALID_HANDLE_VALUE;
|
|
return X_STATUS_BUFFER_OVERFLOW;
|
|
}
|
|
|
|
out_info->next_entry_offset = 0;
|
|
out_info->file_index = 0xCDCDCDCD;
|
|
out_info->creation_time = COMBINE_TIME(ffd.ftCreationTime);
|
|
out_info->last_access_time = COMBINE_TIME(ffd.ftLastAccessTime);
|
|
out_info->last_write_time = COMBINE_TIME(ffd.ftLastWriteTime);
|
|
out_info->change_time = COMBINE_TIME(ffd.ftLastWriteTime);
|
|
out_info->end_of_file =
|
|
((uint64_t)ffd.nFileSizeHigh << 32) | ffd.nFileSizeLow;
|
|
out_info->allocation_size = 4096;
|
|
out_info->attributes = (X_FILE_ATTRIBUTES)ffd.dwFileAttributes;
|
|
|
|
out_info->file_name_length = (uint32_t)entry_name_length;
|
|
for (size_t i = 0; i < entry_name_length; ++i) {
|
|
out_info->file_name[i] =
|
|
ffd.cFileName[i] < 256 ? (char)ffd.cFileName[i] : '?';
|
|
}
|
|
|
|
return X_STATUS_SUCCESS;
|
|
}
|
|
|
|
std::unique_ptr<MemoryMapping> HostPathEntry::CreateMemoryMapping(
|
|
Mode map_mode, const size_t offset, const size_t length) {
|
|
auto mmap = MappedMemory::Open(
|
|
local_path_, map_mode == Mode::READ ? MappedMemory::Mode::kRead
|
|
: MappedMemory::Mode::kReadWrite,
|
|
offset, length);
|
|
if (!mmap) {
|
|
return nullptr;
|
|
}
|
|
|
|
return std::make_unique<HostPathMemoryMapping>(std::move(mmap));
|
|
}
|
|
|
|
X_STATUS HostPathEntry::Open(KernelState* kernel_state, Mode mode, bool async,
|
|
XFile** out_file) {
|
|
// TODO(benvanik): plumb through proper disposition/access mode.
|
|
DWORD desired_access =
|
|
is_read_only() ? GENERIC_READ : (GENERIC_READ | GENERIC_WRITE);
|
|
// mode == Mode::READ ? GENERIC_READ : (GENERIC_READ | GENERIC_WRITE);
|
|
DWORD share_mode = FILE_SHARE_READ;
|
|
DWORD creation_disposition = mode == Mode::READ ? OPEN_EXISTING : OPEN_ALWAYS;
|
|
DWORD flags_and_attributes = async ? FILE_FLAG_OVERLAPPED : 0;
|
|
HANDLE file =
|
|
CreateFile(local_path_.c_str(), desired_access, share_mode, NULL,
|
|
creation_disposition,
|
|
flags_and_attributes | FILE_FLAG_BACKUP_SEMANTICS, NULL);
|
|
if (file == INVALID_HANDLE_VALUE) {
|
|
// TODO(benvanik): pick correct response.
|
|
return X_STATUS_NO_SUCH_FILE;
|
|
}
|
|
|
|
*out_file = new HostPathFile(kernel_state, mode, this, file);
|
|
return X_STATUS_SUCCESS;
|
|
}
|
|
|
|
} // namespace fs
|
|
} // namespace kernel
|
|
} // namespace xe
|