Skip to content

Commit 6224607

Browse files
committed
Move read loop into separate goroutine
1 parent 474236e commit 6224607

File tree

1 file changed

+30
-19
lines changed

1 file changed

+30
-19
lines changed

client.go

+30-19
Original file line numberDiff line numberDiff line change
@@ -280,9 +280,9 @@ func (c *Client) handlePing(timestamp int64, pongChan chan struct{}, wg *sync.Wa
280280

281281
// maybeStartCapHandshake will run a CAP LS and all the relevant CAP REQ
282282
// commands if there are any CAPs requested.
283-
func (c *Client) maybeStartCapHandshake() error {
283+
func (c *Client) maybeStartCapHandshake() {
284284
if len(c.caps) <= 0 {
285-
return nil
285+
return
286286
}
287287

288288
c.Write("CAP LS")
@@ -293,8 +293,6 @@ func (c *Client) maybeStartCapHandshake() error {
293293
c.remainingCapResponses++
294294
}
295295
}
296-
297-
return nil
298296
}
299297

300298
// CapRequest allows you to request IRCv3 capabilities from the server during
@@ -330,6 +328,31 @@ func (c *Client) sendError(err error) {
330328
}
331329
}
332330

331+
func (c *Client) startReadLoop(wg *sync.WaitGroup) {
332+
wg.Add(1)
333+
334+
go func() {
335+
defer wg.Done()
336+
337+
for {
338+
m, err := c.ReadMessage()
339+
if err != nil {
340+
c.sendError(err)
341+
break
342+
}
343+
344+
if f, ok := clientFilters[m.Command]; ok {
345+
f(c, m)
346+
}
347+
348+
if c.config.Handler != nil {
349+
c.config.Handler.Handle(c, m)
350+
}
351+
}
352+
353+
}()
354+
}
355+
333356
// Run starts the main loop for this IRC connection. Note that it may break in
334357
// strange and unexpected ways if it is called again before the first connection
335358
// exits.
@@ -355,21 +378,9 @@ func (c *Client) Run() error {
355378
c.Writef("NICK :%s", c.config.Nick)
356379
c.Writef("USER %s 0.0.0.0 0.0.0.0 :%s", c.config.User, c.config.Name)
357380

358-
for {
359-
m, err := c.ReadMessage()
360-
if err != nil {
361-
c.sendError(err)
362-
break
363-
}
364-
365-
if f, ok := clientFilters[m.Command]; ok {
366-
f(c, m)
367-
}
368-
369-
if c.config.Handler != nil {
370-
c.config.Handler.Handle(c, m)
371-
}
372-
}
381+
// Now that the handshake is pretty much done, we can start listening for
382+
// messages.
383+
c.startReadLoop(&wg)
373384

374385
// Wait for an error from any goroutine, then signal we're exiting and wait
375386
// for the goroutines to exit.

0 commit comments

Comments
 (0)