/**************************************************************************** * 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 . ****************************************************************************/ #include "StringTable.h" #include #include #include std::optional> StringTable::make_shared(const std::vector &data, uint32_t offset, uint32_t stringCount) { if (offset >= data.size()) { DEBUG_FUNCTION_LINE("Invalid offset for reading StringTable"); return {}; } auto stringTable = std::shared_ptr(new StringTable()); uint32_t curOffset = 0; uint32_t i; for (i = 0; curOffset < data.size() && i < stringCount; ++curOffset) { if (data[offset + curOffset] == (uint8_t) 0) { ++i; } } if (i < stringCount) { DEBUG_FUNCTION_LINE("stringtable is broken"); return {}; } uint32_t curLength = 0; for (i = 0; i < stringCount; ++i) { curOffset = offset + curLength; stringTable->stringMap[curLength] = std::make_shared(stringTable, curLength); stringTable->strings[curLength] = (char *) &data[curOffset]; curLength += strlen((char *) &data[curOffset]) + 1; } return stringTable; } std::optional StringTable::getByAddress(uint32_t address) { if (strings.count(address) > 0) { return strings[address]; } return {}; } std::optional> StringTable::getStringEntry(uint32_t address) { if (stringMap.count(address) > 0) { return stringMap[address]; } return {}; } uint32_t StringTable::getSize() { uint32_t capacity = 1; // root entry for (auto &cur : strings) { capacity += cur.second.length() + 1; } return capacity; } std::optional> StringTable::getEntry(std::string &str) { for (auto &cur : strings) { if (cur.second == str) { return stringMap[cur.first]; } } return {}; }