aboutsummaryrefslogtreecommitdiff
path: root/internal/imap/commando.go
blob: 1ba4ed32e9551dd5d761d2a852456e885b279add (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}

	for _, conn := range cl.connections {
		if conn != nil {
			go executioner(conn, pipe, done)
		}
	}
}

func (cl *Client) stopCommander() {
	if cl.commander == nil {
		return
	}

	close(cl.commander.done)

	cl.commander = nil
}
ss='insertions'>+22 2011-08-11Better inconsolata thingsRené Neumann4-4/+13 2011-08-10Moved some functions to their own filesRené Neumann3-124/+120 2011-08-10More advanced IE scriptRené Neumann2-1/+74 2011-08-10Inconsolata also in emacsRené Neumann1-1/+1 2011-08-10Better vim fontsRené 'Necoro' Neumann1-1/+1 2011-08-09ooffice aliasRené Neumann1-0/+2 2011-08-09Update the needed hg-extensions.René Neumann1-1/+2 2011-06-08gtkrc stuff for Qt-Gtk-StyleRené 'Necoro' Neumann2-0/+8 2011-06-08Updated fonts.conf to work better on lcdsRené 'Necoro' Neumann1-17/+6