36 lines
817 B
C++
36 lines
817 B
C++
#pragma once
|
|
|
|
#include <hex.hpp>
|
|
|
|
#include <map>
|
|
#include <string_view>
|
|
#include <vector>
|
|
|
|
#include <hex/helpers/paths.hpp>
|
|
|
|
namespace hex {
|
|
|
|
class EncodingFile {
|
|
public:
|
|
enum class Type {
|
|
Thingy
|
|
};
|
|
|
|
EncodingFile() = default;
|
|
EncodingFile(Type type, const fs::path &path);
|
|
|
|
[[nodiscard]] std::pair<std::string_view, size_t> getEncodingFor(const std::vector<u8> &buffer) const;
|
|
[[nodiscard]] size_t getLongestSequence() const { return this->m_longestSequence; }
|
|
|
|
[[nodiscard]] bool valid() const { return this->m_valid; }
|
|
|
|
private:
|
|
void parseThingyFile(std::ifstream &content);
|
|
|
|
bool m_valid = false;
|
|
|
|
std::map<u32, std::map<std::vector<u8>, std::string>> m_mapping;
|
|
size_t m_longestSequence = 0;
|
|
};
|
|
|
|
} |