2023-11-25 09:22:55 -08:00
|
|
|
#include "irc_parse_thread.hpp"
|
|
|
|
|
|
|
|
#include "connection.hpp"
|
|
|
|
|
2023-11-26 15:08:55 -08:00
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
#include "irc_commands.inc"
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2023-11-27 14:12:20 -08:00
|
|
|
auto IrcParseThread::start(Connection& connection) -> void
|
2023-11-25 09:22:55 -08:00
|
|
|
{
|
2023-11-26 15:40:40 -08:00
|
|
|
connection.add_listener<LineEvent>([&connection](LineEvent const& event)
|
2023-11-25 09:22:55 -08:00
|
|
|
{
|
2023-11-26 15:08:55 -08:00
|
|
|
auto const msg = parse_irc_message(event.line);
|
|
|
|
auto const recognized = IrcCommandHash::in_word_set(msg.command.data(), msg.command.size());
|
|
|
|
auto const command
|
|
|
|
= recognized
|
|
|
|
&& recognized->min_args <= msg.args.size()
|
|
|
|
&& recognized->max_args >= msg.args.size()
|
|
|
|
? recognized->command : IrcCommand::UNKNOWN;
|
2023-11-27 14:12:20 -08:00
|
|
|
|
|
|
|
if (IrcCommand::UNKNOWN == command)
|
|
|
|
{
|
|
|
|
std::cout << "Unrecognized command: " << msg.command << " " << msg.args.size() << std::endl;
|
|
|
|
}
|
2023-11-26 15:40:40 -08:00
|
|
|
connection.make_event<IrcMsgEvent>(command, msg);
|
2023-11-25 20:09:20 -08:00
|
|
|
});
|
2023-11-26 15:40:40 -08:00
|
|
|
}
|