#ifndef option_types_hh_INCLUDED #define option_types_hh_INCLUDED #include "array_view.hh" #include "coord.hh" #include "exception.hh" #include "flags.hh" #include "hash_map.hh" #include "option.hh" #include "ranges.hh" #include "string.hh" #include "string_utils.hh" #include "units.hh" #include #include namespace Kakoune { template std::enable_if_t())), String>::value, String> option_to_string(const T& value, Quoting) { return option_to_string(value); } template constexpr bool option_needs_quoting(Meta::Type type, Meta::Type... rest) { return option_needs_quoting(type) or option_needs_quoting(rest...); } template String quote_ifn(String str, Quoting quoting) { if (option_needs_quoting(Meta::Type{}...)) return quoter(quoting)(std::move(str)); return str; } template constexpr decltype(T::option_type_name) option_type_name(Meta::Type) { return T::option_type_name; } template std::enable_if_t::value, String> option_type_name(Meta::Type) { return format("{}({})", with_bit_ops(Meta::Type{}) ? "flags" : "enum", join(enum_desc(Meta::Type{}) | transform(&EnumDesc::name), '|')); } inline String option_to_string(int opt) { return to_string(opt); } inline int option_from_string(Meta::Type, StringView str) { return str_to_int(str); } inline bool option_add(int& opt, StringView str) { auto val = str_to_int(str); opt += val; return val != 0; } constexpr StringView option_type_name(Meta::Type) { return "int"; } inline String option_to_string(size_t opt) { return to_string(opt); } inline size_t option_from_string(Meta::Type, StringView str) { return str_to_int(str); } inline String option_to_string(bool opt) { return opt ? "true" : "false"; } inline bool option_from_string(Meta::Type, StringView str) { if (str == "true" or str == "yes") return true; else if (str == "false" or str == "no") return false; else throw runtime_error("boolean values are either true, yes, false or no"); } constexpr StringView option_type_name(Meta::Type) { return "bool"; } inline String option_to_string(Codepoint opt) { return to_string(opt); } inline Codepoint option_from_string(Meta::Type, StringView str) { if (str.char_length() != 1) throw runtime_error{format("'{}' is not a single codepoint", str)}; return str[0_char]; } constexpr StringView option_type_name(Meta::Type) { return "codepoint"; } constexpr bool option_needs_quoting(Meta::Type) { return true; } template Vector option_to_strings(const Vector& opt) { return opt | transform([](const T& t) { return option_to_string(t); }) | gather>(); } template String option_to_string(const Vector& opt, Quoting quoting) { return join(opt | transform([=](const T& t) { return quote_ifn(option_to_string(t), quoting); }), ' ', false); } template void option_list_postprocess(Vector& opt) {} template Vector option_from_strings(Meta::Type>, ConstArrayView strs) { auto res = strs | transform([](auto&& s) { return option_from_string(Meta::Type{}, s); }) | gather>(); option_list_postprocess(res); return res; } template bool option_add_from_strings(Vector& opt, ConstArrayView strs) { auto vec = option_from_strings(Meta::Type>{}, strs); opt.insert(opt.end(), std::make_move_iterator(vec.begin()), std::make_move_iterator(vec.end())); option_list_postprocess(opt); return not vec.empty(); } template String option_type_name(Meta::Type>) { return option_type_name(Meta::Type{}) + "-list"_sv; } template Vector option_to_strings(const HashMap& opt) { return opt | transform([](auto&& item) { return format("{}={}", escape(option_to_string(item.key), '=', '\\'), escape(option_to_string(item.value), '=', '\\')); }) | gather>(); } template String option_to_string(const HashMap& opt, Quoting quoting) { return join(opt | transform([=](auto&& item) { return quote_ifn( format("{}={}", escape(option_to_string(item.key), '=', '\\'), escape(option_to_string(item.value), '=', '\\')), quoting); }), ' ', false); } template bool option_add_from_strings(HashMap& opt, ConstArrayView strs) { bool changed = false; for (auto&& str : strs) { struct error : runtime_error { error(size_t) : runtime_error{"map option expects key=value"} {} }; auto key_value = str | split('=', '\\') | transform(unescape<'=', '\\'>) | static_gather(); opt[option_from_string(Meta::Type{}, key_value[0])] = option_from_string(Meta::Type{}, key_value[1]); changed = true; } return changed; } template HashMap option_from_strings(Meta::Type>, ConstArrayView str) { HashMap res; option_add_from_strings(res, str); return res; } template String option_type_name(Meta::Type>) { return format("{}-to-{}-map", option_type_name(Meta::Type{}), option_type_name(Meta::Type{})); } constexpr char tuple_separator = '|'; template String option_to_string_impl(const std::tuple& opt, std::index_sequence) { return join(make_array({option_to_string(std::get(opt))...}), tuple_separator); } template String option_to_string(const std::tuple& opt) { return option_to_string_impl(opt, std::make_index_sequence()); } template std::tuple option_from_string_impl(Meta::Type>, StringView str, std::index_sequence) { struct error : runtime_error { error(size_t i) : runtime_error{i < sizeof...(Types) ? "not enough elements in tuple" : "too many elements in tuple"} {} }; auto elems = str | split(tuple_separator, '\\') | transform(unescape) | static_gather(); return std::tuple{option_from_string(Meta::Type{}, elems[I])...}; } template std::tuple option_from_string(Meta::Type>, StringView str) { return option_from_string_impl(Meta::Type>{}, str, std::make_index_sequence()); } template inline String option_to_string(const StronglyTypedNumber& opt) { return to_string(opt); } template std::enable_if_t, Number>::value, Number> option_from_string(Meta::Type, StringView str) { return Number{str_to_int(str)}; } template inline bool option_add(StronglyTypedNumber& opt, StringView str) { int val = str_to_int(str); opt += val; return val != 0; } struct WorstMatch { template WorstMatch(T&&) {} }; inline bool option_add(WorstMatch, StringView) { throw runtime_error("no add operation supported for this option type"); } class Context; inline void option_update(WorstMatch, const Context&) { throw runtime_error("no update operation supported for this option type"); } template std::enable_if_t, Coord>::value, Coord> option_from_string(Meta::Type, StringView str) { struct error : runtime_error { error(size_t) : runtime_error{"expected ,"} {} }; auto vals = str | split(',') | static_gather(); return {str_to_int(vals[0]), str_to_int(vals[1])}; } template inline String option_to_string(const LineAndColumn& opt) { return format("{},{}", opt.line, opt.column); } template{}))> EnableIfWithBitOps option_to_string(Flags flags) { constexpr auto desc = enum_desc(Meta::Type{}); 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(Meta::Type{}); auto it = find_if(desc, [e](const EnumDesc& d) { return d.value == e; }); if (it != desc.end()) return it->name.str(); kak_assert(false); return {}; } template{}))> EnableIfWithBitOps option_from_string(Meta::Type, StringView str) { constexpr auto desc = enum_desc(Meta::Type{}); Flags flags{}; for (auto s : str | split('|')) { 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; } return flags; } template{}))> EnableIfWithoutBitOps option_from_string(Meta::Type, StringView str) { constexpr auto desc = enum_desc(Meta::Type{}); 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)); return it->value; } template{}))> EnableIfWithBitOps option_add(Flags& opt, StringView str) { const Flags res = option_from_string(Meta::Type{}, str); opt |= res; return res != (Flags)0; } template inline Vector option_to_strings(const PrefixedList& opt) { Vector res{option_to_string(opt.prefix)}; auto list = option_to_strings(opt.list); res.insert(res.end(), std::make_move_iterator(list.begin()), std::make_move_iterator(list.end())); return res; } template inline String option_to_string(const PrefixedList& opt, Quoting quoting) { return option_to_string(opt.prefix, quoting) + " " + option_to_string(opt.list, quoting); } template inline PrefixedList option_from_strings(Meta::Type>, ConstArrayView strs) { return {option_from_string(Meta::Type

{}, strs[0]), option_from_strings(Meta::Type>{}, strs.subrange(1))}; } template inline bool option_add_from_strings(PrefixedList& opt, ConstArrayView str) { return option_add_from_strings(opt.list, str); } } #endif // option_types_hh_INCLUDED