-
Notifications
You must be signed in to change notification settings - Fork 5
/
09_wait.go
85 lines (74 loc) · 1.48 KB
/
09_wait.go
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
package main
import (
"fmt"
"math/rand"
"time"
)
//////////////////////////////////////////////
/// aliases
//////////////////////////////////////////////
var println = fmt.Println
var sprintf = fmt.Sprintf
var printf = fmt.Printf
//////////////////////////////////////////////
/// init
//////////////////////////////////////////////
func init() {
rand.Seed(time.Now().UTC().UnixNano())
}
//////////////////////////////////////////////
/// functions
//////////////////////////////////////////////
type Message struct {
str string
wait chan bool
}
func boringWait(msg string) <-chan Message {
c := make(chan Message)
go func() {
waitForIt := make(chan bool)
for i := 0; ; i++ {
s := sprintf("%s %d", msg, i)
m := Message{s, waitForIt}
c <- m
ms := time.Duration(rand.Intn(1e3))
time.Sleep(ms * time.Millisecond)
<-waitForIt
}
}()
return c
}
func sliceFanIn(channels []<-chan Message) <-chan Message {
broadcast := make(chan Message)
for i := range channels {
// copy rather than use loop variable
c := channels[i]
go func() {
for {
broadcast <- <-c
}
}()
}
return broadcast
}
func main() {
// prep
names := []string{
"Joe",
"Ann",
"Bob",
"Liz",
}
channels := []<-chan Message{}
for _, s := range names {
channels = append(channels, boringWait(s))
}
broadcast := sliceFanIn(channels)
// execution
for i := 0; i < 15; i++ {
msg := <-broadcast
println(msg.str)
msg.wait <- true
}
println("You're all boring; I'm leaving")
}