blob: 62fe9a78f8019b9769b0cf6d24ba302227cefe5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#include <irc/irc_message.hpp>
#include <iostream>
IrcMessage::IrcMessage(std::stringstream ss)
{
if (ss.peek() == ':')
{
ss.ignore();
ss >> this->prefix;
}
ss >> this->command;
while (ss >> std::ws)
{
std::string arg;
if (ss.peek() == ':')
{
ss.ignore();
std::getline(ss, arg);
}
else
{
ss >> arg;
if (arg.empty())
break;
}
this->arguments.push_back(std::move(arg));
}
}
IrcMessage::IrcMessage(std::string&& prefix,
std::string&& command,
std::vector<std::string>&& args):
prefix(std::move(prefix)),
command(std::move(command)),
arguments(std::move(args))
{
}
IrcMessage::IrcMessage(std::string&& command,
std::vector<std::string>&& args):
prefix(),
command(std::move(command)),
arguments(std::move(args))
{
}
std::ostream& operator<<(std::ostream& os, const IrcMessage& message)
{
os << "IrcMessage";
os << "[" << message.command << "]";
for (const std::string& arg: message.arguments)
{
os << "{" << arg << "}";
}
if (!message.prefix.empty())
os << "(from: " << message.prefix << ")";
return os;
}
|