blob: 1cf688e2f7bfc13f167843a34b0c796c0e5d9a7d (
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 (client *Client) startCommander() {
if client.commander != nil {
return
}
pipe := make(chan execution, maxPipeDepth)
done := make(chan struct{})
client.commander = &commander{client, pipe, done}
for _, conn := range client.connections {
if conn != nil {
go executioner(conn, pipe, done)
}
}
}
func (client *Client) stopCommander() {
if client.commander == nil {
return
}
close(client.commander.done)
client.commander = nil
}
|