2021-10-09 00:58:55 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2016-2021 Maschell
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
#include "FST.h"
|
2021-10-11 22:02:35 +02:00
|
|
|
#include <algorithm>
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
std::shared_ptr<RootEntry> FST::getRootEntry() const {
|
|
|
|
return nodeEntries->getRootEntry();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<std::shared_ptr<FST>> FST::make_shared(const std::vector<uint8_t> &data, uint32_t offset, const VolumeBlockSize &blockSize) {
|
2021-10-09 00:58:55 +02:00
|
|
|
uint32_t curOffset = offset;
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
if (curOffset + FSTHeader::LENGTH > data.size()) {
|
2022-07-26 09:24:06 +02:00
|
|
|
DEBUG_FUNCTION_LINE_ERR("Not enough data to parse the FSTHeader");
|
2021-10-11 22:02:35 +02:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::array<uint8_t, FSTHeader::LENGTH> fstData{};
|
|
|
|
std::copy_n(data.begin() + (int) curOffset, FSTHeader::LENGTH, fstData.begin());
|
|
|
|
|
|
|
|
auto headerOpt = FSTHeader::make_unique(fstData);
|
|
|
|
if (!headerOpt.has_value()) {
|
2022-07-26 09:24:06 +02:00
|
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to parse FSTHeader");
|
2021-10-11 22:02:35 +02:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
curOffset += FSTHeader::LENGTH;
|
|
|
|
|
|
|
|
uint32_t sectionEntriesDataSize = headerOpt.value()->numberOfSections * SectionEntry::LENGTH;
|
|
|
|
if (curOffset + sectionEntriesDataSize > data.size()) {
|
2022-07-26 09:24:06 +02:00
|
|
|
DEBUG_FUNCTION_LINE_ERR("Not enough data to parse the SectionEntries");
|
2021-10-11 22:02:35 +02:00
|
|
|
return {};
|
|
|
|
}
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
std::vector<uint8_t> sectionEntriesData;
|
|
|
|
sectionEntriesData.resize(sectionEntriesDataSize);
|
|
|
|
std::copy_n(data.begin() + (int) curOffset, sectionEntriesDataSize, sectionEntriesData.begin());
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
auto sectionEntriesOpt = SectionEntries::make_shared(sectionEntriesData, headerOpt.value()->numberOfSections, blockSize);
|
|
|
|
if (!sectionEntriesOpt.has_value()) {
|
2022-07-26 09:24:06 +02:00
|
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to parse FSTHeader");
|
2021-10-11 22:02:35 +02:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
curOffset += sectionEntriesOpt.value()->getSizeInBytes();
|
|
|
|
|
|
|
|
std::array<uint8_t, NodeEntry::LENGTH> rootEntry{};
|
|
|
|
std::copy_n(data.begin() + (int) curOffset, NodeEntry::LENGTH, rootEntry.begin());
|
|
|
|
|
|
|
|
uint32_t lastEntryNumber = RootEntry::parseLastEntryNumber(rootEntry);
|
2021-10-09 00:58:55 +02:00
|
|
|
|
|
|
|
auto stringTableOffset = curOffset + (lastEntryNumber * 16);
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
auto stringTableOpt = StringTable::make_shared(data, stringTableOffset, lastEntryNumber);
|
|
|
|
if (!stringTableOpt.has_value()) {
|
2022-07-26 09:24:06 +02:00
|
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to parse StringTable");
|
2021-10-11 22:02:35 +02:00
|
|
|
return {};
|
|
|
|
}
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
auto nodeEntriesOpt = NodeEntries::make_unique(data, curOffset, sectionEntriesOpt.value(), stringTableOpt.value(), headerOpt.value()->blockSize);
|
|
|
|
if (!nodeEntriesOpt.has_value()) {
|
2022-07-26 09:24:06 +02:00
|
|
|
DEBUG_FUNCTION_LINE_ERR("Failed to parse NodeEntries");
|
2021-10-11 22:02:35 +02:00
|
|
|
return {};
|
|
|
|
}
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
return std::shared_ptr<FST>(new FST(
|
|
|
|
std::move(headerOpt.value()),
|
|
|
|
std::move(sectionEntriesOpt.value()),
|
|
|
|
std::move(stringTableOpt.value()),
|
|
|
|
std::move(nodeEntriesOpt.value())));
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
|
2021-10-11 22:02:35 +02:00
|
|
|
FST::FST(std::unique_ptr<FSTHeader> pHeader,
|
|
|
|
std::shared_ptr<SectionEntries> pSectionEntries,
|
|
|
|
std::shared_ptr<StringTable> pStringTable,
|
2022-07-26 08:16:27 +02:00
|
|
|
std::unique_ptr<NodeEntries> pNodeEntries) : sectionEntries(std::move(pSectionEntries)),
|
|
|
|
stringTable(std::move(pStringTable)),
|
|
|
|
nodeEntries(std::move(pNodeEntries)),
|
|
|
|
header(std::move(pHeader)) {
|
2021-10-11 22:02:35 +02:00
|
|
|
}
|