2011-09-07 20:16:56 +02:00
|
|
|
#ifndef command_manager_hh_INCLUDED
|
|
|
|
#define command_manager_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <functional>
|
|
|
|
|
2011-09-09 20:40:59 +02:00
|
|
|
#include "exception.hh"
|
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2011-09-09 20:40:59 +02:00
|
|
|
struct wrong_argument_count : runtime_error
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2011-09-09 20:40:59 +02:00
|
|
|
wrong_argument_count() : runtime_error("wrong argument count") {}
|
2011-09-07 20:16:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<std::string> CommandParameters;
|
|
|
|
typedef std::function<void (const CommandParameters&)> Command;
|
|
|
|
|
|
|
|
class CommandManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void execute(const std::string& command_line);
|
|
|
|
|
|
|
|
void register_command(const std::string& command_name, Command command);
|
|
|
|
void register_command(const std::vector<std::string>& command_names, Command command);
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::unordered_map<std::string, Command> m_commands;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // command_manager_hh_INCLUDED
|