summary refs log tree commit diff
path: root/www/text.causal.agency/008-how-irc.7
blob: aba1bbf9c8f90e9e6b13075ecf581bb398fd0486 (plain) (blame)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
.Dd March  8, 2020
.Dt HOW-IRC 7
.Os "Causal Agency"
.
.Sh NAME
.Nm How I Relay Chat
.Nd in code
.
.Sh DESCRIPTION
I've been writing a lot of IRC software lately
.Pq Sx SEE ALSO ,
and developed some nice code patterns
that I've been reusing.
Here they are.
.
.Ss Parsing
I use fixed size buffers almost everywhere,
so it's necessary to know IRC's size limits.
A traditional IRC message is a maximum of 512 bytes,
but the IRCv3 message-tags spec adds
(unreasonably, in my opinion)
8191 bytes for tags.
IRC messages also have a maximum of 15 command parameters.
.Bd -literal -offset indent
enum { MessageCap = 8191 + 512 };
enum { ParamCap = 15 };
.Ed
.
.Pp
If I'm using tags,
I'll use X macros
to declare the set I care about.
X macros are a way of maintaining parallel arrays,
or in this case an enum and an array.
.Bd -literal -offset indent
#define ENUM_TAG \e
	X("msgid", TagMsgid) \e
	X("time", TagTime)

enum Tag {
#define X(name, id) id,
	ENUM_TAG
#undef X
	TagCap,
};

static const char *TagNames[TagCap] = {
#define X(name, id) [id] = name,
	ENUM_TAG
#undef X
};
.Ed
.
.Pp
The TagNames array is used by the parsing function
to assign tag values into the message structure,
which looks like this:
.Bd -literal -offset indent
struct Message {
	char *tags[TagCap];
	char *nick;
	char *user;
	char *host;
	char *cmd;
	char *params[ParamCap];
};
.Ed
.
.Pp
I'm a fan of using
.Xr strsep 3
for simple parsing.
Although it modifies its input
(replacing delimiters with NUL terminators),
since the raw message is in a static buffer,
it is ideal for so-called zero-copy parsing.
I'm not going to include the whole parsing function here,
but I will at least include the part that many get wrong,
which is dealing with the colon-prefixed trailing parameter:
.Bd -literal -offset indent
msg.cmd = strsep(&line, " ");
for (int i = 0; line && i < ParamCap; ++i) {
	if (line[0] == ':') {
		msg.params[i] = &line[1];
		break;
	}
	msg.params[i] = strsep(&line, " ");
}
.Ed
.
.Ss Handling
To handle IRC commands and replies
I add handler functions to a big array.
I usually have some form of helper as well
to check the number of expected parameters.
.Bd -literal -offset indent
typedef void HandlerFn(struct Message *msg);

static const struct Handler {
	const char *cmd;
	HandlerFn *fn;
} Handlers[] = {
	{ "001", handleReplyWelcome },
	{ "PING", handlePing },
	{ "PRIVMSG", handlePrivmsg },
};
.Ed
.
.Pp
Since I keep these arrays sorted anyway,
I started using the standard
.Xr bsearch 3
function,
but a basic for loop probably works just as well.
I do wish I could compile-time assert
that the array really is sorted, though.
.Bd -literal -offset indent
static int compar(const void *cmd, const void *_handler) {
	const struct Handler *handler = _handler;
	return strcmp(cmd, handler->cmd);
}

void handle(struct Message msg) {
	if (!msg.cmd) return;
	const struct Handler *handler = bsearch(
		msg.cmd,
		Handlers, ARRAY_LEN(Handlers),
		sizeof(*handler), compar
	);
	if (handler) handler->fn(&msg);
}
.Ed
.
.Ss Capabilities
For IRCv3 capabilties
I use X macros again,
this time with another handy macro
for declaring bit flag enums.
.Bd -literal -offset indent
#define BIT(x) x##Bit, x = 1 << x##Bit, x##Bit_ = x##Bit

#define ENUM_CAP \e
	X("message-tags", CapMessageTags) \e
	X("sasl", CapSASL) \e
	X("server-time", CapServerTime)

enum Cap {
#define X(name, id) BIT(id),
	ENUM_CAP
#undef X
};

static const char *CapNames[] = {
#define X(name, id) [id##Bit] = name,
	ENUM_CAP
#undef X
};
.Ed
.
.Pp
The
.Fn BIT
macro declares, for example,
.Dv CapSASL
as the bit flag and
.Dv CapSASLBit
as the corresponding index.
The
.Vt "enum Cap"
is used as a set,
for example checking if SASL is enabled with
.Ql caps & CapSASL .
.
.Pp
These patterns are serving my IRC software well,
and my IRC projects are serving me well.
It is immensely satisfying
to be (near) constantly using software
that I wrote myself and am happy with,
regardless of how niche it may be.
.
.Sh SEE ALSO
.Bl -item -compact
.It
.Lk https://git.causal.agency/pounce/about "IRC bouncer"
.It
.Lk https://git.causal.agency/litterbox/about "IRC logger"
.It
.Lk https://git.causal.agency/catgirl/about "IRC client"
.El
.
.Sh AUTHORS
.An June Bug Aq Mt june@causal.agency
21-09-14Sort by title if authors matchJune McEnroe There are probably better things to sort by but title definitely always exists. 2021-09-13Swap-remove tags as they're foundJune McEnroe This makes it even faster. From ~1s on a sqlite3.c amalgamation to ~0.85s. 2021-09-12Replace htagml regex with strncmpJune McEnroe Since ctags only ever produces regular expressions of the form /^re$/ or /^re/ with no other special characters, instead unescape the pattern and simply use strncmp. Running on a sqlite3.c amalgamation, the regex version takes ~37s while the strncmp version takes ~1s, producing identical output. Big win! 2021-09-11Also defer printing comment for lone close-parensJune McEnroe 2021-09-10Publish "git-comment"June McEnroe 2021-09-10Add git comment --pretty optionJune McEnroe 2021-09-08Defer printing comment if line is blank or closing braceJune McEnroe This fixes badly indented comments. 2021-09-08Up default min-repeat to 30 linesJune McEnroe 2021-09-08Handle dirty lines in git-commentJune McEnroe 2021-09-08Document and install git-commentJune McEnroe 2021-09-08Add repeat and all options to git-commentJune McEnroe 2021-09-08Add group threshold to git-commentJune McEnroe