1
0
mirror of synced 2024-11-15 19:43:23 +01:00
ImHex/lib/libimhex/include/hex/helpers/encoding_file.hpp

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;
};
}