Read STFS headers for unpackaged files from [path].headers

This commit is contained in:
emoose 2019-07-23 08:40:37 +01:00 committed by illusion
parent 3423198de3
commit aca251d382
1 changed files with 17 additions and 6 deletions

View File

@ -133,14 +133,25 @@ std::vector<XCONTENT_DATA> ContentManager::ListContent(uint32_t device_id,
content_data.display_name = xe::path_to_utf16(file_info.name);
content_data.file_name = xe::path_to_utf8(file_info.name);
auto headers_path = file_info.path / file_info.name;
if (file_info.type == xe::filesystem::FileInfo::Type::kDirectory) {
headers_path = headers_path / L".headers";
}
filesystem::FileInfo entry;
bool doesEntryExist = filesystem::GetInfo(headers_path, &entry);
if (doesEntryExist) {
// File is either package or directory that has .headers file
if (file_info.type != xe::filesystem::FileInfo::Type::kDirectory) {
// Not a directory so must be a package, verify size to make sure
if (file_info.total_size <= vfs::StfsHeader::kHeaderLength) {
continue; // Invalid package (maybe .headers file)
}
}
auto map = MappedMemory::Open(file_info.path / file_info.name,
MappedMemory::Mode::kRead, 0,
auto map = MappedMemory::Open(headers_path, MappedMemory::Mode::kRead, 0,
vfs::StfsHeader::kHeaderLength);
if (map) {
vfs::StfsHeader header;