2012-04-03 14:01:01 +02:00
|
|
|
#include "hook_manager.hh"
|
|
|
|
|
2014-12-23 14:54:09 +01:00
|
|
|
#include "containers.hh"
|
2014-08-21 14:37:59 +02:00
|
|
|
#include "context.hh"
|
2015-06-06 12:54:48 +02:00
|
|
|
#include "buffer_utils.hh"
|
2015-07-08 15:00:50 +02:00
|
|
|
#include "display_buffer.hh"
|
|
|
|
#include "face_registry.hh"
|
2014-10-13 14:12:33 +02:00
|
|
|
#include "regex.hh"
|
2013-04-11 13:58:09 +02:00
|
|
|
|
2015-11-21 13:11:19 +01:00
|
|
|
#include <chrono>
|
|
|
|
|
2012-04-03 14:01:01 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2015-03-05 15:59:27 +01:00
|
|
|
void HookManager::add_hook(StringView 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)
|
2015-09-16 20:57:57 +02:00
|
|
|
hooks.value.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)
|
|
|
|
{
|
2016-03-08 22:35:56 +01:00
|
|
|
auto container = list.value | transform(decltype(list.value)::get_id);
|
2014-12-23 14:54:09 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-03-05 15:59:27 +01:00
|
|
|
void HookManager::run_hook(StringView hook_name,
|
2014-10-20 20:18:38 +02:00
|
|
|
StringView param, Context& context) const
|
2012-04-03 14:01:01 +02:00
|
|
|
{
|
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;
|
|
|
|
|
2016-06-27 21:55:07 +02:00
|
|
|
if (contains(m_running_hooks, std::make_pair(hook_name, param)))
|
|
|
|
{
|
|
|
|
auto error = format("recursive call of hook {}/{}, aborting", hook_name, param);
|
|
|
|
write_to_debug_buffer(error);
|
|
|
|
throw runtime_error(std::move(error));
|
|
|
|
}
|
|
|
|
|
|
|
|
m_running_hooks.emplace_back(hook_name, param);
|
|
|
|
auto pop_running_hook = on_scope_end([this]{ m_running_hooks.pop_back(); });
|
|
|
|
|
2015-11-21 13:11:19 +01:00
|
|
|
using Clock = std::chrono::steady_clock;
|
|
|
|
using TimePoint = Clock::time_point;
|
|
|
|
|
|
|
|
const DebugFlags debug_flags = context.options()["debug"].get<DebugFlags>();
|
|
|
|
const bool profile = debug_flags & DebugFlags::Profile;
|
|
|
|
auto start_time = profile ? Clock::now() : TimePoint{};
|
2015-11-19 22:58:26 +01:00
|
|
|
|
2014-08-21 14:37:59 +02:00
|
|
|
auto& disabled_hooks = context.options()["disabled_hooks"].get<Regex>();
|
2015-07-08 15:00:50 +02:00
|
|
|
bool hook_error = false;
|
2015-09-16 20:57:57 +02:00
|
|
|
for (auto& hook : hook_list_it->value)
|
2012-04-03 14:01:01 +02:00
|
|
|
{
|
2015-09-16 20:57:57 +02:00
|
|
|
if (not hook.key.empty() and not disabled_hooks.empty() and
|
|
|
|
regex_match(hook.key.begin(), hook.key.end(), disabled_hooks))
|
2014-08-21 14:37:59 +02:00
|
|
|
continue;
|
|
|
|
|
2012-04-03 14:01:01 +02:00
|
|
|
try
|
|
|
|
{
|
2015-11-21 13:11:19 +01:00
|
|
|
if (debug_flags & DebugFlags::Hooks)
|
2015-11-19 22:58:26 +01:00
|
|
|
write_to_debug_buffer(format("hook {}/{}", hook_name, hook.key));
|
|
|
|
|
2015-09-16 20:57:57 +02:00
|
|
|
hook.value(param, context);
|
2012-04-03 14:01:01 +02:00
|
|
|
}
|
2013-04-11 13:58:09 +02:00
|
|
|
catch (runtime_error& err)
|
|
|
|
{
|
2015-07-08 15:00:50 +02:00
|
|
|
hook_error = true;
|
2016-03-17 12:45:22 +01:00
|
|
|
write_to_debug_buffer(format("error running hook {}({})/{}: {}",
|
|
|
|
hook_name, param, hook.key, err.what()));
|
2013-04-11 13:58:09 +02:00
|
|
|
}
|
2012-04-03 14:01:01 +02:00
|
|
|
}
|
2015-07-08 15:00:50 +02:00
|
|
|
|
|
|
|
if (hook_error)
|
|
|
|
context.print_status({
|
|
|
|
format("Error running hooks for '{}' '{}', see *debug* buffer",
|
|
|
|
hook_name, param), get_face("Error") });
|
2015-11-21 13:11:19 +01:00
|
|
|
|
|
|
|
if (profile)
|
|
|
|
{
|
|
|
|
auto end_time = Clock::now();
|
|
|
|
auto full = std::chrono::duration_cast<std::chrono::milliseconds>(end_time - start_time);
|
|
|
|
write_to_debug_buffer(format("hook '{}({})' took {} ms", hook_name, param, (size_t)full.count()));
|
|
|
|
}
|
2012-04-03 14:01:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|