#ifndef enum_hh_INCLUDED #define enum_hh_INCLUDED #include "flags.hh" #include "string.hh" #include "exception.hh" #include "containers.hh" namespace Kakoune { template struct Array { constexpr size_t size() const { return N; } constexpr const T& operator[](int i) const { return m_data[i]; } constexpr const T* begin() const { return m_data; } constexpr const T* end() const { return m_data+N; } T m_data[N]; }; template struct EnumDesc { T value; StringView name; }; template EnableIfWithBitOps option_to_string(Flags flags) { constexpr auto desc = enum_desc(Flags{}); String res; for (int i = 0; i < desc.size(); ++i) { if (not (flags & desc[i].value)) continue; if (not res.empty()) res += "|"; res += desc[i].name; } return res; } template EnableIfWithoutBitOps option_to_string(Enum e) { constexpr auto desc = enum_desc(Enum{}); auto it = find_if(desc, [e](const EnumDesc& d) { return d.value == e; }); kak_assert(it != desc.end()); return it->name.str(); } template EnableIfWithBitOps option_from_string(StringView str, Flags& flags) { constexpr auto desc = enum_desc(Flags{}); flags = Flags{}; for (auto s : split(str, '|')) { auto it = find_if(desc, [s](const EnumDesc& d) { return d.name == s; }); if (it == desc.end()) throw runtime_error(format("invalid flag value '{}'", s)); flags |= it->value; } } template EnableIfWithoutBitOps option_from_string(StringView str, Enum& e) { constexpr auto desc = enum_desc(Enum{}); auto it = find_if(desc, [str](const EnumDesc& d) { return d.name == str; }); if (it == desc.end()) throw runtime_error(format("invalid enum value '{}'", str)); e = it->value; } } #endif // enum_hh_INCLUDED