2012-04-03 14:01:01 +02:00
|
|
|
#include "hook_manager.hh"
|
|
|
|
|
2017-08-29 10:23:03 +02:00
|
|
|
#include "buffer_utils.hh"
|
2016-07-20 09:49:04 +02:00
|
|
|
#include "clock.hh"
|
2017-08-29 10:23:03 +02:00
|
|
|
#include "command_manager.hh"
|
2014-08-21 14:37:59 +02:00
|
|
|
#include "context.hh"
|
2015-07-08 15:00:50 +02:00
|
|
|
#include "display_buffer.hh"
|
|
|
|
#include "face_registry.hh"
|
2017-03-16 10:57:39 +01:00
|
|
|
#include "option.hh"
|
2018-05-26 02:01:26 +02:00
|
|
|
#include "option_types.hh"
|
2017-08-29 10:23:03 +02:00
|
|
|
#include "ranges.hh"
|
|
|
|
#include "regex.hh"
|
2013-04-11 13:58:09 +02:00
|
|
|
|
2012-04-03 14:01:01 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2017-10-02 08:20:36 +02:00
|
|
|
struct HookManager::Hook
|
|
|
|
{
|
|
|
|
String group;
|
2018-04-17 00:27:09 +02:00
|
|
|
HookFlags flags;
|
2017-10-02 08:20:36 +02:00
|
|
|
Regex filter;
|
|
|
|
String commands;
|
|
|
|
};
|
|
|
|
|
|
|
|
HookManager::HookManager() : m_parent(nullptr) {}
|
|
|
|
HookManager::HookManager(HookManager& parent) : SafeCountable{}, m_parent(&parent) {}
|
|
|
|
HookManager::~HookManager() = default;
|
|
|
|
|
2018-04-17 00:27:09 +02:00
|
|
|
void HookManager::add_hook(StringView hook_name, String group, HookFlags flags, Regex filter, String commands)
|
2012-04-03 14:01:01 +02:00
|
|
|
{
|
2017-02-19 12:52:31 +01:00
|
|
|
auto& hooks = m_hooks[hook_name];
|
2018-04-17 00:27:09 +02:00
|
|
|
hooks.emplace_back(new Hook{std::move(group), flags, std::move(filter), std::move(commands)});
|
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");
|
2017-06-07 10:34:07 +02:00
|
|
|
for (auto& list : m_hooks)
|
2017-06-07 13:15:16 +02:00
|
|
|
{
|
|
|
|
auto it = std::remove_if(list.value.begin(), list.value.end(),
|
|
|
|
[&](const std::unique_ptr<Hook>& h)
|
|
|
|
{ return h->group == group; });
|
|
|
|
if (not m_running_hooks.empty()) // we are running some hooks, defer deletion
|
|
|
|
m_hooks_trash.insert(m_hooks_trash.end(), std::make_move_iterator(it),
|
|
|
|
std::make_move_iterator(list.value.end()));
|
|
|
|
list.value.erase(it, list.value.end());
|
|
|
|
}
|
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;
|
2017-02-19 12:52:31 +01:00
|
|
|
for (auto& list : m_hooks)
|
2014-07-21 22:14:32 +02:00
|
|
|
{
|
2017-06-07 13:15:16 +02:00
|
|
|
auto container = list.value | transform([](const std::unique_ptr<Hook>& h) -> const String& { return h->group; });
|
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;
|
|
|
|
}
|
|
|
|
|
2018-08-02 11:52:48 +02:00
|
|
|
void HookManager::run_hook(StringView hook_name, StringView param, Context& context)
|
2012-04-03 14:01:01 +02:00
|
|
|
{
|
2018-04-17 00:27:09 +02:00
|
|
|
const bool only_always = context.hooks_disabled();
|
2016-09-27 00:43:05 +02:00
|
|
|
|
2012-06-07 15:29:44 +02:00
|
|
|
if (m_parent)
|
|
|
|
m_parent->run_hook(hook_name, param, context);
|
|
|
|
|
2017-06-07 13:15:16 +02:00
|
|
|
auto hook_list = m_hooks.find(hook_name);
|
|
|
|
if (hook_list == m_hooks.end())
|
2012-04-03 14:01:01 +02:00
|
|
|
return;
|
|
|
|
|
2016-06-27 21:55:07 +02:00
|
|
|
if (contains(m_running_hooks, std::make_pair(hook_name, param)))
|
|
|
|
{
|
2016-07-11 20:40:22 +02:00
|
|
|
auto error = format("recursive call of hook {}/{}, not executing", hook_name, param);
|
2016-06-27 21:55:07 +02:00
|
|
|
write_to_debug_buffer(error);
|
2016-07-11 20:40:22 +02:00
|
|
|
return;
|
2016-06-27 21:55:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
m_running_hooks.emplace_back(hook_name, param);
|
2017-06-07 13:15:16 +02:00
|
|
|
auto pop_running_hook = on_scope_end([this]{
|
|
|
|
m_running_hooks.pop_back();
|
|
|
|
if (m_running_hooks.empty())
|
|
|
|
m_hooks_trash.clear();
|
|
|
|
});
|
2016-06-27 21:55:07 +02:00
|
|
|
|
2015-11-21 13:11:19 +01:00
|
|
|
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>();
|
2017-06-07 20:18:15 +02:00
|
|
|
|
|
|
|
struct ToRun { Hook* hook; MatchResults<const char*> captures; };
|
|
|
|
Vector<ToRun> hooks_to_run; // The m_hooks_trash vector ensure hooks wont die during this method
|
2017-06-07 13:15:16 +02:00
|
|
|
for (auto& hook : hook_list->value)
|
2012-04-03 14:01:01 +02:00
|
|
|
{
|
2017-06-07 20:18:15 +02:00
|
|
|
MatchResults<const char*> captures;
|
2018-08-02 11:52:48 +02:00
|
|
|
if ((not only_always or (hook->flags & HookFlags::Always)) and
|
2018-04-17 00:27:09 +02:00
|
|
|
(hook->group.empty() or disabled_hooks.empty() or
|
2017-06-07 13:33:39 +02:00
|
|
|
not regex_match(hook->group.begin(), hook->group.end(), disabled_hooks))
|
2017-06-07 20:18:15 +02:00
|
|
|
and regex_match(param.begin(), param.end(), captures, hook->filter))
|
|
|
|
hooks_to_run.push_back({ hook.get(), std::move(captures) });
|
2017-02-19 13:08:13 +01:00
|
|
|
}
|
2014-08-21 14:37:59 +02:00
|
|
|
|
2017-02-19 13:08:13 +01:00
|
|
|
bool hook_error = false;
|
2017-06-07 20:18:15 +02:00
|
|
|
for (auto& to_run : hooks_to_run)
|
2017-02-19 13:08:13 +01:00
|
|
|
{
|
2012-04-03 14:01:01 +02:00
|
|
|
try
|
|
|
|
{
|
2015-11-21 13:11:19 +01:00
|
|
|
if (debug_flags & DebugFlags::Hooks)
|
2017-06-07 20:18:15 +02:00
|
|
|
write_to_debug_buffer(format("hook {}({})/{}", hook_name, param, to_run.hook->group));
|
2017-06-07 13:33:39 +02:00
|
|
|
|
|
|
|
ScopedSetBool disable_history{context.history_disabled()};
|
|
|
|
|
|
|
|
EnvVarMap env_vars{ {"hook_param", param.str()} };
|
2017-06-07 20:18:15 +02:00
|
|
|
for (size_t i = 0; i < to_run.captures.size(); ++i)
|
2017-06-07 13:33:39 +02:00
|
|
|
env_vars.insert({format("hook_param_capture_{}", i),
|
2017-06-07 20:18:15 +02:00
|
|
|
{to_run.captures[i].first, to_run.captures[i].second}});
|
2017-06-07 13:33:39 +02:00
|
|
|
|
2017-06-07 20:18:15 +02:00
|
|
|
CommandManager::instance().execute(to_run.hook->commands, context,
|
2017-06-07 13:33:39 +02:00
|
|
|
{ {}, std::move(env_vars) });
|
2018-08-02 11:52:48 +02:00
|
|
|
|
|
|
|
if (to_run.hook->flags & HookFlags::Once)
|
|
|
|
{
|
|
|
|
auto it = std::find_if(hook_list->value.begin(), hook_list->value.end(),
|
|
|
|
[&](const std::unique_ptr<Hook>& h)
|
|
|
|
{ return h.get() == to_run.hook; });
|
|
|
|
|
|
|
|
m_hooks_trash.push_back(std::move(*it));
|
|
|
|
hook_list->value.erase(it);
|
|
|
|
}
|
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 {}({})/{}: {}",
|
2017-06-07 20:18:15 +02:00
|
|
|
hook_name, param, to_run.hook->group, 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",
|
2018-04-07 07:36:39 +02:00
|
|
|
hook_name, param), context.faces()["Error"] });
|
2015-11-21 13:11:19 +01:00
|
|
|
|
|
|
|
if (profile)
|
|
|
|
{
|
|
|
|
auto end_time = Clock::now();
|
2017-06-07 21:06:47 +02:00
|
|
|
auto full = std::chrono::duration_cast<std::chrono::microseconds>(end_time - start_time);
|
|
|
|
write_to_debug_buffer(format("hook '{}({})' took {} us", hook_name, param, (size_t)full.count()));
|
2015-11-21 13:11:19 +01:00
|
|
|
}
|
2012-04-03 14:01:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|