2012-04-03 15:39:20 +02:00
|
|
|
#include "option_manager.hh"
|
2012-06-14 15:16:44 +02:00
|
|
|
#include "assert.hh"
|
2012-04-03 15:39:20 +02:00
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-03-03 17:25:40 +01:00
|
|
|
template<typename T>
|
|
|
|
class TypedOption : public Option
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TypedOption(OptionManager& manager, String name, const T& value)
|
|
|
|
: Option(manager, std::move(name)), m_value(value) {}
|
|
|
|
|
|
|
|
void set(const T& value)
|
|
|
|
{
|
|
|
|
if (m_value != value)
|
|
|
|
{
|
|
|
|
m_value = value;
|
|
|
|
m_manager.on_option_changed(*this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const T& get() const { return m_value; }
|
|
|
|
|
|
|
|
String get_as_string() const override;
|
|
|
|
void set_from_string(const String& str) override;
|
|
|
|
|
|
|
|
Option* clone(OptionManager& manager) const override
|
|
|
|
{
|
|
|
|
return new TypedOption{manager, name(), m_value};
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
T m_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
Option::Option(OptionManager& manager, String name)
|
|
|
|
: m_manager(manager), m_name(std::move(name)) {}
|
|
|
|
|
|
|
|
template<typename T> const T& Option::get() const { return dynamic_cast<const TypedOption<T>*>(this)->get(); }
|
|
|
|
template<typename T> void Option::set(const T& val) { return dynamic_cast<TypedOption<T>*>(this)->set(val); }
|
|
|
|
|
|
|
|
// TypedOption<String> specializations;
|
|
|
|
template<> String TypedOption<String>::get_as_string() const { return m_value; }
|
|
|
|
template<> void TypedOption<String>::set_from_string(const String& str) { set(str); }
|
|
|
|
template class TypedOption<String>;
|
|
|
|
template const String& Option::get<String>() const;
|
|
|
|
template void Option::set<String>(const String&);
|
|
|
|
|
|
|
|
// TypedOption<int> specializations;
|
|
|
|
template<> String TypedOption<int>::get_as_string() const { return int_to_str(m_value); }
|
|
|
|
template<> void TypedOption<int>::set_from_string(const String& str) { set(str_to_int(str)); }
|
|
|
|
template class TypedOption<int>;
|
|
|
|
template const int& Option::get<int>() const;
|
|
|
|
template void Option::set<int>(const int&);
|
|
|
|
|
2012-06-14 15:16:44 +02:00
|
|
|
OptionManager::OptionManager(OptionManager& parent)
|
|
|
|
: m_parent(&parent)
|
2012-04-03 20:25:27 +02:00
|
|
|
{
|
2012-06-14 15:16:44 +02:00
|
|
|
parent.register_watcher(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
OptionManager::~OptionManager()
|
|
|
|
{
|
|
|
|
if (m_parent)
|
|
|
|
m_parent->unregister_watcher(*this);
|
|
|
|
|
|
|
|
assert(m_watchers.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionManager::register_watcher(OptionManagerWatcher& watcher)
|
|
|
|
{
|
|
|
|
assert(not contains(m_watchers, &watcher));
|
|
|
|
m_watchers.push_back(&watcher);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionManager::unregister_watcher(OptionManagerWatcher& watcher)
|
|
|
|
{
|
|
|
|
auto it = find(m_watchers.begin(), m_watchers.end(), &watcher);
|
|
|
|
assert(it != m_watchers.end());
|
|
|
|
m_watchers.erase(it);
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:25:40 +01:00
|
|
|
template<typename T>
|
|
|
|
auto find_option(T& container, const String& name) -> decltype(container.begin())
|
2012-06-14 15:16:44 +02:00
|
|
|
{
|
2013-03-03 17:25:40 +01:00
|
|
|
using ptr_type = decltype(*container.begin());
|
|
|
|
return find_if(container, [&name](const ptr_type& opt) { return opt->name() == name; });
|
|
|
|
}
|
2012-06-14 15:16:44 +02:00
|
|
|
|
2013-03-03 17:25:40 +01:00
|
|
|
Option& OptionManager::get_local_option(const String& name)
|
|
|
|
{
|
|
|
|
auto it = find_option(m_options, name);
|
|
|
|
if (it != m_options.end())
|
|
|
|
return **it;
|
|
|
|
else if (m_parent)
|
2012-06-12 20:28:25 +02:00
|
|
|
{
|
2013-03-03 17:25:40 +01:00
|
|
|
m_options.emplace_back((*m_parent)[name].clone(*this));
|
|
|
|
return *m_options.back();
|
2012-06-12 20:28:25 +02:00
|
|
|
}
|
2013-03-03 17:25:40 +01:00
|
|
|
else
|
|
|
|
throw option_not_found(name);
|
|
|
|
|
2012-04-03 20:25:27 +02:00
|
|
|
}
|
|
|
|
|
2012-06-14 15:16:44 +02:00
|
|
|
const Option& OptionManager::operator[](const String& name) const
|
2012-04-03 20:25:27 +02:00
|
|
|
{
|
2013-03-03 17:25:40 +01:00
|
|
|
auto it = find_option(m_options, name);
|
2012-04-03 20:25:27 +02:00
|
|
|
if (it != m_options.end())
|
2013-03-03 17:25:40 +01:00
|
|
|
return **it;
|
2012-04-03 20:25:27 +02:00
|
|
|
else if (m_parent)
|
|
|
|
return (*m_parent)[name];
|
|
|
|
else
|
|
|
|
throw option_not_found(name);
|
|
|
|
}
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
CandidateList OptionManager::complete_option_name(const String& prefix,
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount cursor_pos)
|
2012-04-03 20:25:27 +02:00
|
|
|
{
|
2012-04-14 03:17:09 +02:00
|
|
|
String real_prefix = prefix.substr(0, cursor_pos);
|
2012-04-03 20:25:27 +02:00
|
|
|
CandidateList result;
|
|
|
|
if (m_parent)
|
|
|
|
result = m_parent->complete_option_name(prefix, cursor_pos);
|
|
|
|
for (auto& option : m_options)
|
|
|
|
{
|
2013-03-03 17:25:40 +01:00
|
|
|
const auto& name = option->name();
|
|
|
|
if (name.substr(0, real_prefix.length()) == real_prefix and
|
|
|
|
not contains(result, name))
|
|
|
|
result.push_back(name);
|
2012-04-03 20:25:27 +02:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:25:40 +01:00
|
|
|
OptionManager::OptionList OptionManager::flatten_options() const
|
2012-06-14 15:16:44 +02:00
|
|
|
{
|
2013-03-03 17:25:40 +01:00
|
|
|
OptionList res = m_parent ? m_parent->flatten_options() : OptionList{};
|
2012-06-14 15:16:44 +02:00
|
|
|
for (auto& option : m_options)
|
2013-03-03 17:25:40 +01:00
|
|
|
{
|
|
|
|
auto it = find_option(res, option->name());
|
|
|
|
if (it != res.end())
|
|
|
|
*it = option.get();
|
|
|
|
else
|
|
|
|
res.emplace_back(option.get());
|
|
|
|
}
|
2012-06-14 15:16:44 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2013-03-03 17:25:40 +01:00
|
|
|
void OptionManager::on_option_changed(const Option& option)
|
2012-06-14 15:16:44 +02:00
|
|
|
{
|
|
|
|
// if parent option changed, but we overrided it, it's like nothing happened
|
2013-03-03 17:25:40 +01:00
|
|
|
if (&option.manager() != this and
|
|
|
|
find_option(m_options, option.name()) != m_options.end())
|
2012-06-14 15:16:44 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
for (auto watcher : m_watchers)
|
2013-03-03 17:25:40 +01:00
|
|
|
watcher->on_option_changed(option);
|
2012-06-14 15:16:44 +02:00
|
|
|
}
|
|
|
|
|
2012-11-22 13:50:29 +01:00
|
|
|
GlobalOptions::GlobalOptions()
|
2012-04-03 15:39:20 +02:00
|
|
|
: OptionManager()
|
|
|
|
{
|
2013-03-03 17:25:40 +01:00
|
|
|
declare_option<int>("tabstop", 8);
|
|
|
|
declare_option<int>("indentwidth", 4);
|
|
|
|
declare_option<String>("eolformat", "lf");
|
|
|
|
declare_option<String>("BOM", "no");
|
|
|
|
declare_option<String>("shell", "sh");
|
|
|
|
declare_option<int>("complete_prefix", 1);
|
|
|
|
declare_option<int>("incsearch", 1);
|
|
|
|
declare_option<String>("ignored_files", R"(^(\..*|.*\.(o|so|a)))$)");
|
|
|
|
declare_option<String>("filetype", "");
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
Option& GlobalOptions::declare_option(const String& name, const T& value)
|
|
|
|
{
|
|
|
|
if (find_option(m_options, name) != m_options.end())
|
|
|
|
throw runtime_error("option " + name + " already declared");
|
|
|
|
m_options.emplace_back(new TypedOption<T>{*this, name, value});
|
|
|
|
return *m_options.back();
|
2012-04-03 15:39:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|