2012-11-23 13:40:20 +01:00
|
|
|
#ifndef function_registry_h_INCLUDED
|
|
|
|
#define function_registry_h_INCLUDED
|
|
|
|
|
|
|
|
#include "completion.hh"
|
2013-11-18 23:17:50 +01:00
|
|
|
#include "idvaluemap.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
#include "string.hh"
|
2012-11-23 13:40:20 +01:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
struct function_not_found : runtime_error
|
|
|
|
{
|
|
|
|
function_not_found(const String& name)
|
|
|
|
: runtime_error("'" + name + "' not found") {}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename FunctionType>
|
|
|
|
class FunctionRegistry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void register_func(const String& name, const FunctionType& function)
|
|
|
|
{
|
2013-11-18 23:17:50 +01:00
|
|
|
kak_assert(not m_functions.contains(name));
|
|
|
|
m_functions.append(std::make_pair(name, function));
|
2012-11-23 13:40:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const FunctionType& operator[](const String& name) const
|
|
|
|
{
|
|
|
|
auto it = m_functions.find(name);
|
|
|
|
if (it == m_functions.end())
|
|
|
|
throw function_not_found(name);
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
CandidateList complete_name(const String& prefix, ByteCount cursor_pos)
|
|
|
|
{
|
2013-11-18 23:17:50 +01:00
|
|
|
return m_functions.complete_id(prefix, cursor_pos);
|
2012-11-23 13:40:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-11-18 23:17:50 +01:00
|
|
|
idvaluemap<String, FunctionType> m_functions;
|
2012-11-23 13:40:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // function_registry_h_INCLUDED
|