2018-01-20 03:34:48 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-11 22:46:42 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-09-27 19:41:21 +00:00
|
|
|
#include <cstddef>
|
2018-08-08 21:49:57 +00:00
|
|
|
#include <iterator>
|
|
|
|
#include <string_view>
|
2018-03-20 03:58:55 +00:00
|
|
|
#include "common/common_funcs.h"
|
2014-09-11 22:46:42 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
2019-11-27 10:07:08 +00:00
|
|
|
enum class EntryType : u8 {
|
2018-07-19 01:07:11 +00:00
|
|
|
Directory = 0,
|
|
|
|
File = 1,
|
|
|
|
};
|
|
|
|
|
2018-03-20 03:58:55 +00:00
|
|
|
// Structure of a directory entry, from
|
|
|
|
// http://switchbrew.org/index.php?title=Filesystem_services#DirectoryEntry
|
2014-09-11 22:46:42 +00:00
|
|
|
struct Entry {
|
2018-08-08 21:49:57 +00:00
|
|
|
Entry(std::string_view view, EntryType entry_type, u64 entry_size)
|
|
|
|
: type{entry_type}, file_size{entry_size} {
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t copy_size = view.copy(filename, std::size(filename) - 1);
|
2018-08-08 21:49:57 +00:00
|
|
|
filename[copy_size] = '\0';
|
|
|
|
}
|
|
|
|
|
2018-12-03 04:15:55 +00:00
|
|
|
char filename[0x301];
|
|
|
|
INSERT_PADDING_BYTES(3);
|
2018-03-20 03:58:55 +00:00
|
|
|
EntryType type;
|
|
|
|
INSERT_PADDING_BYTES(3);
|
|
|
|
u64 file_size;
|
2014-09-11 22:46:42 +00:00
|
|
|
};
|
2018-03-20 03:58:55 +00:00
|
|
|
static_assert(sizeof(Entry) == 0x310, "Directory Entry struct isn't exactly 0x310 bytes long!");
|
|
|
|
static_assert(offsetof(Entry, type) == 0x304, "Wrong offset for type in Entry.");
|
|
|
|
static_assert(offsetof(Entry, file_size) == 0x308, "Wrong offset for file_size in Entry.");
|
2014-09-11 22:46:42 +00:00
|
|
|
|
|
|
|
} // namespace FileSys
|