2012-04-03 14:01:01 +02:00
|
|
|
#include "hook_manager.hh"
|
|
|
|
|
2013-04-11 13:58:09 +02:00
|
|
|
#include "debug.hh"
|
|
|
|
|
2012-04-03 14:01:01 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2014-06-16 21:42:12 +02:00
|
|
|
void HookManager::add_hook(const String& hook_name, String group, HookFunc hook)
|
2012-04-03 14:01:01 +02:00
|
|
|
{
|
2013-04-11 14:29:10 +02:00
|
|
|
auto& hooks = m_hook[hook_name];
|
2014-06-16 21:42:12 +02:00
|
|
|
hooks.append({std::move(group), std::move(hook)});
|
2013-04-11 14:29:10 +02:00
|
|
|
}
|
|
|
|
|
2014-06-16 21:42:12 +02:00
|
|
|
void HookManager::remove_hooks(StringView group)
|
2013-04-11 14:29:10 +02:00
|
|
|
{
|
2014-06-16 21:42:12 +02:00
|
|
|
if (group.empty())
|
2013-04-11 14:29:10 +02:00
|
|
|
throw runtime_error("invalid id");
|
|
|
|
for (auto& hooks : m_hook)
|
2014-06-16 21:42:12 +02:00
|
|
|
hooks.second.remove_all(group);
|
2012-04-03 14:01:01 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
void HookManager::run_hook(const String& hook_name,
|
|
|
|
const String& param,
|
2013-01-17 13:44:14 +01:00
|
|
|
Context& context) const
|
2012-04-03 14:01:01 +02:00
|
|
|
{
|
2014-03-20 09:29:41 +01:00
|
|
|
if (GlobalHooks::instance().are_hooks_disabled())
|
|
|
|
return;
|
|
|
|
|
2012-06-07 15:29:44 +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;
|
|
|
|
|
|
|
|
for (auto& hook : hook_list_it->second)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2013-04-11 14:29:10 +02:00
|
|
|
hook.second(param, context);
|
2012-04-03 14:01:01 +02:00
|
|
|
}
|
2013-04-11 13:58:09 +02:00
|
|
|
catch (runtime_error& err)
|
|
|
|
{
|
2013-04-11 14:29:10 +02:00
|
|
|
write_debug("error running hook " + hook_name + "/" +
|
|
|
|
hook.first + ": " + err.what());
|
2013-04-11 13:58:09 +02:00
|
|
|
}
|
2012-04-03 14:01:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-20 09:29:41 +01:00
|
|
|
bool GlobalHooks::are_hooks_disabled() const
|
|
|
|
{
|
|
|
|
kak_assert(m_disabled >= 0);
|
|
|
|
return m_disabled > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-03 14:01:01 +02:00
|
|
|
}
|