089eaa52e0
Fixes #709
108 lines
3.1 KiB
C++
108 lines
3.1 KiB
C++
#include "hook_manager.hh"
|
|
|
|
#include "containers.hh"
|
|
#include "context.hh"
|
|
#include "buffer_utils.hh"
|
|
#include "display_buffer.hh"
|
|
#include "face_registry.hh"
|
|
#include "regex.hh"
|
|
|
|
#include <chrono>
|
|
|
|
namespace Kakoune
|
|
{
|
|
|
|
void HookManager::add_hook(StringView hook_name, String group, HookFunc hook)
|
|
{
|
|
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.value.remove_all(group);
|
|
}
|
|
|
|
CandidateList HookManager::complete_hook_group(StringView prefix, ByteCount pos_in_token)
|
|
{
|
|
CandidateList res;
|
|
for (auto& list : m_hook)
|
|
{
|
|
auto container = list.value | transform(decltype(list.value)::get_id);
|
|
for (auto& c : complete(prefix, pos_in_token, container))
|
|
{
|
|
if (!contains(res, c))
|
|
res.push_back(c);
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
|
|
void HookManager::run_hook(StringView hook_name,
|
|
StringView param, Context& context) const
|
|
{
|
|
if (m_parent)
|
|
m_parent->run_hook(hook_name, param, context);
|
|
|
|
auto hook_list_it = m_hook.find(hook_name);
|
|
if (hook_list_it == m_hook.end())
|
|
return;
|
|
|
|
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(); });
|
|
|
|
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{};
|
|
|
|
auto& disabled_hooks = context.options()["disabled_hooks"].get<Regex>();
|
|
bool hook_error = false;
|
|
for (auto& hook : hook_list_it->value)
|
|
{
|
|
if (not hook.key.empty() and not disabled_hooks.empty() and
|
|
regex_match(hook.key.begin(), hook.key.end(), disabled_hooks))
|
|
continue;
|
|
|
|
try
|
|
{
|
|
if (debug_flags & DebugFlags::Hooks)
|
|
write_to_debug_buffer(format("hook {}/{}", hook_name, hook.key));
|
|
|
|
hook.value(param, context);
|
|
}
|
|
catch (runtime_error& err)
|
|
{
|
|
hook_error = true;
|
|
write_to_debug_buffer(format("error running hook {}({})/{}: {}",
|
|
hook_name, param, hook.key, err.what()));
|
|
}
|
|
}
|
|
|
|
if (hook_error)
|
|
context.print_status({
|
|
format("Error running hooks for '{}' '{}', see *debug* buffer",
|
|
hook_name, param), get_face("Error") });
|
|
|
|
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()));
|
|
}
|
|
}
|
|
|
|
}
|