#pragma once #include #include #include #include #include #include namespace hex { class EncodingFile { public: enum class Type { Thingy }; EncodingFile(); EncodingFile(const EncodingFile &other); EncodingFile(EncodingFile &&other) noexcept; EncodingFile(Type type, const std::fs::path &path); EncodingFile(Type type, const std::string &content); EncodingFile& operator=(const EncodingFile &other); EncodingFile& operator=(EncodingFile &&other) noexcept; [[nodiscard]] std::pair getEncodingFor(std::span buffer) const; [[nodiscard]] size_t getEncodingLengthFor(std::span buffer) const; [[nodiscard]] size_t getLongestSequence() const { return this->m_longestSequence; } [[nodiscard]] bool valid() const { return this->m_valid; } [[nodiscard]] const std::string& getTableContent() const { return this->m_tableContent; } [[nodiscard]] const std::string& getName() const { return this->m_name; } private: void parse(const std::string &content); bool m_valid = false; std::string m_name; std::string m_tableContent; std::unique_ptr, std::string>>> m_mapping; size_t m_longestSequence = 0; }; }