kakoune/src/hook_manager.cc

70 lines
1.7 KiB
C++
Raw Normal View History

2012-04-03 14:01:01 +02:00
#include "hook_manager.hh"
#include "containers.hh"
#include "context.hh"
#include "debug.hh"
#include "regex.hh"
2012-04-03 14:01:01 +02:00
namespace Kakoune
{
void HookManager::add_hook(const String& hook_name, String group, HookFunc hook)
2012-04-03 14:01:01 +02:00
{
auto& hooks = m_hook[hook_name];
hooks.append({std::move(group), std::move(hook)});
}
void HookManager::remove_hooks(StringView group)
{
if (group.empty())
throw runtime_error("invalid id");
for (auto& hooks : m_hook)
hooks.second.remove_all(group);
2012-04-03 14:01:01 +02:00
}
2014-07-21 22:14:32 +02:00
CandidateList HookManager::complete_hook_group(StringView prefix, ByteCount pos_in_token)
{
CandidateList res;
for (auto& list : m_hook)
{
2014-12-23 23:51:00 +01:00
auto container = transformed(list.second, IdMap<HookFunc>::get_id);
for (auto& c : complete(prefix, pos_in_token, container))
2014-07-21 22:14:32 +02:00
{
if (!contains(res, c))
res.push_back(c);
}
}
return res;
}
void HookManager::run_hook(const String& hook_name,
StringView param, Context& context) const
2012-04-03 14:01:01 +02:00
{
if (m_parent)
m_parent->run_hook(hook_name, param, context);
2012-04-03 14:01:01 +02:00
auto hook_list_it = m_hook.find(hook_name);
if (hook_list_it == m_hook.end())
return;
auto& disabled_hooks = context.options()["disabled_hooks"].get<Regex>();
2012-04-03 14:01:01 +02:00
for (auto& hook : hook_list_it->second)
{
if (not hook.first.empty() and not disabled_hooks.empty() and
regex_match(hook.first, disabled_hooks))
continue;
2012-04-03 14:01:01 +02:00
try
{
hook.second(param, context);
2012-04-03 14:01:01 +02:00
}
catch (runtime_error& err)
{
write_debug("error running hook " + hook_name + "/" +
hook.first + ": " + err.what());
}
2012-04-03 14:01:01 +02:00
}
}
}