kakoune/src/function_group.hh

70 lines
1.8 KiB
C++
Raw Normal View History

#ifndef function_group_hh_INCLUDED
#define function_group_hh_INCLUDED
#include "exception.hh"
2013-04-09 20:05:40 +02:00
#include "string.hh"
#include "completion.hh"
#include <unordered_map>
namespace Kakoune
{
template<typename... Args>
class FunctionGroup
{
public:
using Function = std::function<void (Args...)>;
using FunctionAndId = std::pair<String, std::function<void (Args...)>>;
void operator()(Args&&... args)
{
for (auto& func : m_functions)
func.second(std::forward<Args>(args)...);
}
void append(FunctionAndId&& function)
{
if (m_functions.find(function.first) != m_functions.end())
throw runtime_error("duplicate id: " + function.first);
m_functions.insert(std::forward<FunctionAndId>(function));
}
void remove(const String& id)
{
m_functions.erase(id);
}
FunctionGroup& get_group(const String& id)
{
auto it = m_functions.find(id);
if (it == m_functions.end())
throw runtime_error("no such id: " + id);
FunctionGroup* group = it->second.template target<FunctionGroup>();
if (not group)
throw runtime_error("not a group: " + id);
return *group;
}
CandidateList complete_id(const String& prefix, ByteCount cursor_pos) const
{
return complete_key(m_functions, prefix, cursor_pos);
}
CandidateList complete_group_id(const String& prefix, ByteCount cursor_pos) const
{
return complete_key_if(
m_functions, prefix, cursor_pos,
[](const FunctionAndId& func) {
return func.second.template target<FunctionGroup>() != nullptr;
});
}
private:
std::unordered_map<String, Function> m_functions;
};
}
#endif // function_group_hh_INCLUDED