8ArchiveHandle::ArchiveHandle(
void *archiveStart) : m_startAddress(archiveStart) {
9 RawArchive *rawArchive =
reinterpret_cast<RawArchive *
>(archiveStart);
10 ASSERT(rawArchive->isValidSignature());
12 m_nodesAddress =
static_cast<u8 *
>(archiveStart) + parse<u32>(rawArchive->nodesOffset);
13 m_filesAddress =
static_cast<u8 *
>(archiveStart) + parse<u32>(rawArchive->filesOffset);
16 m_count = parse<u32>(node(0)->m_directory.next);
18 m_strings =
reinterpret_cast<const char *
>(
reinterpret_cast<Node *
>(m_nodesAddress) + m_count);
23s32 ArchiveHandle::convertPathToEntryId(
const char *path)
const {
24 u32 entryId = m_currentNode;
28 if (path[0] ==
'\0') {
43 entryId = node(entryId)->m_directory.parent;
46 }
else if (path[2] ==
'\0') {
47 return node(entryId)->m_directory.parent;
52 }
else if (path[1] ==
'/') {
55 }
else if (path[1] ==
'\0') {
61 const char *nameEnd = path;
62 for (; nameEnd[0] !=
'\0' && nameEnd[0] !=
'/'; nameEnd++) {}
64 bool endOfPath = nameEnd[0] ==
'\0';
65 s32 nameLength = nameEnd - path;
68 const u32 anchor = entryId++;
69 while (entryId < parse<u32>(node(anchor)->m_directory.next)) {
70 if (!node(anchor)->isDirectory() && endOfPath) {
75 const char *entryName = m_strings + node(entryId)->stringOffset();
77 if (entryName[0] ==
'.' && entryName[1] ==
'\0') {
82 if (strncmp(path, entryName, nameLength) == 0) {
98 path += nameLength + 1;
103bool ArchiveHandle::open(s32 entryId, FileInfo &info)
const {
104 if (entryId < 0 ||
static_cast<u32
>(entryId) >= m_count) {
108 auto *node_ = node(entryId);
109 if (node_->isDirectory()) {
113 info.startOffset = parse<u32>(node_->file.startAddress);
114 info.length = parse<u32>(node_->file.length);