blob: 2edbc58326b56cd256668adfc14263b2502f04e1 (
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
59
60
61
62
63
64
65
66
67
68
|
package imap
const maxPipeDepth = 10
type commander struct {
client *Client
pipe chan<- execution
done chan<- struct{}
}
type command interface {
execute(*connection) error
}
type execution struct {
cmd command
done chan<- error
}
func (commander *commander) execute(command command) error {
done := make(chan error)
commander.pipe <- execution{command, done}
return <-done
}
func executioner(conn *connection, pipe <-chan execution, done <-chan struct{}) {
for {
select {
case <-done:
return
case execution := <-pipe:
select { // break as soon as done is there
case <-done:
return
default:
}
err := execution.cmd.execute(conn)
execution.done <- err
}
}
}
func (cl *Client) startCommander() {
if cl.commander != nil {
return
}
pipe := make(chan execution, maxPipeDepth)
done := make(chan struct{})
cl.commander = &commander{cl, pipe, done}
go func() {
for conn := range cl.connChannel {
go executioner(conn, pipe, done)
}
}()
}
func (cl *Client) stopCommander() {
if cl.commander == nil {
return
}
close(cl.commander.done)
cl.commander = nil
}
|